We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 066e166 commit 71efd15Copy full SHA for 71efd15
apps/webapp/app/presenters/v3/SpanPresenter.server.ts
@@ -509,12 +509,3 @@ export class SpanPresenter extends BasePresenter {
509
}
510
511
512
-
513
-function isWarmStart(
514
- attributes: string | number | boolean | Record<string, unknown> | null | undefined
515
-): boolean | undefined {
516
- if (!attributes || typeof attributes !== "object") return undefined;
517
- const attribute = attributes[SemanticInternalAttributes.WARM_START];
518
- if (typeof attribute !== "boolean") return undefined;
519
- return attribute;
520
-}
0 commit comments