feat: Assign new context with span context to address gRPC closure issue
All checks were successful
Gitea Build Check / Build (pull_request) Successful in 41s
All checks were successful
Gitea Build Check / Build (pull_request) Successful in 41s
This commit is contained in:
parent
6b91b4ef09
commit
b7af573a0c
@ -60,6 +60,8 @@ func (s *server) TaskStart(ctx context.Context, creation *gRPC.PlugTaskCreation)
|
||||
// gRPC closes the context after the call ended. So the whole scrapping stopped without waiting
|
||||
// by using this method we assign a new context to each new request we get.
|
||||
// This can be used for example to close the context with the given id
|
||||
ctx = trace.ContextWithSpanContext(context.Background(), trace.NewSpanContext(trace.SpanContextConfig{TraceID: span.SpanContext().TraceID()}))
|
||||
|
||||
taskCtx, cancel := context.WithCancel(ctx)
|
||||
s.ctx[id] = cancel
|
||||
span.AddEvent("Created new context for task", trace.WithAttributes(attribute.String("task_id", id)))
|
||||
|
Loading…
Reference in New Issue
Block a user