Skip to content

Commit

Permalink
style: use single quotes instead of double
Browse files Browse the repository at this point in the history
  • Loading branch information
tapico-weyert committed Jul 24, 2021
1 parent b69096b commit 1ac0fa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/opentelemetry-exporter-jaeger/src/jaeger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export class JaegerExporter implements SpanExporter {
}

const serviceNameTag = span.tags.find(t => t.key === SemanticResourceAttributes.SERVICE_NAME)
const serviceName = serviceNameTag?.vStr || "unknown_service";
const serviceName = serviceNameTag?.vStr || 'unknown_service';

sender.setProcess({
serviceName,
Expand Down

0 comments on commit 1ac0fa6

Please sign in to comment.