panic: cannot create context from nil parent
go 项目的版本是 1.13.14
docker 服务的go 版本 1.15
版本不一致造成
代码修改 由
func SetCtXXXXX(ctx context.Context) context.Context {
ctx = context.WithValue(ctx, XXXX, XX)
ctx = context.WithValue(ctx, SS, 0)
ctx = context.WithValue(ctx, CC, 0)
return ctx
}
改为
func SetCtXXXXX(ctx context.Context) context.Context {
if ctx == nil {
ctx = context.Background()
}
ctx = context.WithValue(ctx, XXXX, XX)
ctx = context.WithValue(ctx, SS, 0)
ctx = context.WithValue(ctx, CC, 0)
return ctx
}