An issue introduced with the v0.0.10 to support standard context.Context
for net/http does not use an initialized context, causing the context
package to panic with cannot create context from nil parent.
This commit changes nctx so that it is initialized with the
context.Background() value.
An issue introduced with the v0.0.10 to support standard context.Context for net/http does not use an initialized context, causing the
context
package to panic withcannot create context from nil parent
.This commit changes
nctx
so that it is initialized with thecontext.Background()
value.