Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hgiasac committed Nov 10, 2024
1 parent 16b892a commit 17dcd65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connector/internal/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (client *HTTPClient) sendParallel(ctx context.Context, requests []Retryable

// execute a request to the remote server with retries
func (client *HTTPClient) sendSingle(ctx context.Context, request *RetryableRequest, selection schema.NestedField, resultType schema.Type, serverID string, mode string) (any, http.Header, *schema.ConnectorError) {
ctx, span := client.tracer.Start(ctx, fmt.Sprintf("Send Request to Server %s", serverID))
ctx, span := client.tracer.Start(ctx, "Send Request to Server "+serverID)
defer span.End()

span.SetAttributes(attribute.String("execution.mode", mode))
Expand Down

0 comments on commit 17dcd65

Please sign in to comment.