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 82f3db6 commit 2cc1453Copy full SHA for 2cc1453
packages/core/src/v3/workers/taskExecutor.ts
@@ -354,13 +354,9 @@ export class TaskExecutor {
354
...(execution.attempt.number === 1
355
? runTimelineMetrics.convertMetricsToSpanAttributes()
356
: {}),
357
- ...(typeof this._isWarmStart === "boolean"
358
- ? {
359
- [SemanticInternalAttributes.STYLE_VARIANT]: this._isWarmStart
360
- ? WARM_VARIANT
361
- : COLD_VARIANT,
362
- }
363
- : {}),
+ [SemanticInternalAttributes.STYLE_VARIANT]: this._isWarmStart
+ ? WARM_VARIANT
+ : COLD_VARIANT,
364
...(typeof this._executionCount === "number"
365
? {
366
[SemanticInternalAttributes.ATTEMPT_EXECUTION_COUNT]: this._executionCount,
0 commit comments