Skip to content

Commit fb9faa9

Browse files
authored
fix(codewhisperer): classifier threshold #3484
1 parent b32e388 commit fb9faa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codewhisperer/activation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export async function activate(context: ExtContext): Promise<void> {
225225
CodeWhispererConstants.isClassifierEnabledKey
226226
)
227227
if (isClassifierEnabled === undefined) {
228-
const result = Math.random() <= 0.4
228+
const result = Math.random() <= 0.5
229229
context.extensionContext.globalState.update(CodeWhispererConstants.isClassifierEnabledKey, result)
230230
}
231231
}

0 commit comments

Comments
 (0)