File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -223,20 +223,6 @@ export class AuthUtil {
223
223
return this . secondaryAuth . useNewConnection ( conn )
224
224
}
225
225
226
- /**
227
- * HACK: Use the connection, but then mark it as expired.
228
- * We currently only need this to handle an edge case with the transition
229
- * from the old to new standalone extension. This should eventually be removed.
230
- */
231
- public async useConnectionButExpire ( conn : Connection ) {
232
- await this . secondaryAuth . useNewConnection ( conn )
233
- if ( conn . type !== 'sso' ) {
234
- return
235
- }
236
- await this . auth . expireConnection ( conn )
237
- await this . notifyReauthenticate ( )
238
- }
239
-
240
226
public static get instance ( ) {
241
227
if ( this . #instance !== undefined ) {
242
228
return this . #instance
Original file line number Diff line number Diff line change @@ -40,10 +40,6 @@ describe('tech debt', function () {
40
40
)
41
41
} )
42
42
43
- it ( 'remove missing Amazon Q scopes edge case handling' , async function ( ) {
44
- fixByDate ( '2024-07-30' , 'Remove the edge case code from the commit that this test is a part of.' )
45
- } )
46
-
47
43
it ( 'remove separate sessions login edge cases' , async function ( ) {
48
44
// src/auth/auth.ts:SessionSeparationPrompt
49
45
// forgetConnection() function and calls
You can’t perform that action at this time.
0 commit comments