File tree Expand file tree Collapse file tree 3 files changed +1
-8
lines changed
amazonqTest/chat/controller Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,6 @@ export class TestController {
254
254
session . startTestGenerationRequestId ,
255
255
performance . now ( ) - session . testGenerationStartTime ,
256
256
telemetryErrorMessage ,
257
- data . error . statusCode . toString ( ) ?? '0' ,
258
257
session . isCodeBlockSelected ,
259
258
session . artifactsUploadDuration ,
260
259
session . srcPayloadSize ,
@@ -735,7 +734,6 @@ export class TestController {
735
734
session . startTestGenerationRequestId ,
736
735
session . latencyOfTestGeneration ,
737
736
undefined ,
738
- '200' ,
739
737
session . isCodeBlockSelected ,
740
738
session . artifactsUploadDuration ,
741
739
session . srcPayloadSize ,
@@ -856,7 +854,6 @@ export class TestController {
856
854
session . startTestGenerationRequestId ,
857
855
session . latencyOfTestGeneration ,
858
856
undefined ,
859
- '200' ,
860
857
session . isCodeBlockSelected ,
861
858
session . artifactsUploadDuration ,
862
859
session . srcPayloadSize ,
Original file line number Diff line number Diff line change @@ -283,7 +283,6 @@ export class Messenger {
283
283
getTelemetryReasonDesc (
284
284
`TestGenCancelled: ${ CodeWhispererConstants . unitTestGenerationCancelMessage } `
285
285
) ,
286
- '400' ,
287
286
undefined ,
288
287
undefined ,
289
288
undefined ,
@@ -307,8 +306,7 @@ export class Messenger {
307
306
'Succeeded' ,
308
307
messageId ,
309
308
performance . now ( ) - session . testGenerationStartTime ,
310
- undefined ,
311
- '200'
309
+ undefined
312
310
)
313
311
this . dispatcher . sendUpdatePromptProgress (
314
312
new UpdatePromptProgressMessage ( tabID , testGenCompletedField )
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ export class TelemetryHelper {
65
65
requestId ?: string ,
66
66
perfClientLatency ?: number ,
67
67
reasonDesc ?: string ,
68
- httpStatusCode ?: string ,
69
68
isCodeBlockSelected ?: boolean ,
70
69
artifactsUploadDuration ?: number ,
71
70
buildPayloadBytes ?: number ,
@@ -100,7 +99,6 @@ export class TelemetryHelper {
100
99
requestId : requestId ,
101
100
reasonDesc : reasonDesc ,
102
101
reason : reason ,
103
- httpStatusCode : httpStatusCode ,
104
102
} )
105
103
}
106
104
You can’t perform that action at this time.
0 commit comments