Skip to content

Commit 3ad8cc2

Browse files
committed
linting
1 parent efabae5 commit 3ad8cc2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/opentelemetry/src/spanExporter.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ export class SentrySpanExporter {
126126

127127
/** Try to flush any pending spans immediately. */
128128
public flush(): void {
129-
const finishedSpans: ReadableSpan[] = [];
130-
for (const bucket of this._finishedSpanBuckets) {
131-
if (bucket) {
132-
for (const span of bucket.spans) {
133-
finishedSpans.push(span);
129+
const finishedSpans: ReadableSpan[] = [];
130+
for (const bucket of this._finishedSpanBuckets) {
131+
if (bucket) {
132+
for (const span of bucket.spans) {
133+
finishedSpans.push(span);
134+
}
135+
}
134136
}
135-
}
136-
}
137137

138138
this._flushSentSpanCache();
139139
const sentSpans = this._maybeSend(finishedSpans);

0 commit comments

Comments
 (0)