File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -377,7 +377,7 @@ export async function getChatAuthState(cwAuth = AuthUtil.instance): Promise<Feat
377
377
return buildFeatureAuthState ( AuthStates . disconnected )
378
378
}
379
379
if ( ! isSsoConnection ( currentConnection ) ) {
380
- throw new ToolkitError ( `Connection is not a valid type: ${ currentConnection } ` )
380
+ throw new ToolkitError ( `Connection " ${ currentConnection . id } " is not a valid type: ${ currentConnection . type } ` )
381
381
}
382
382
383
383
// The state of the connection may not have been properly validated
Original file line number Diff line number Diff line change @@ -262,9 +262,10 @@ export async function activate(context: vscode.ExtensionContext) {
262
262
263
263
await activateSchemas ( extContext )
264
264
265
- await activateCWChat ( extContext . extensionContext )
266
-
267
- await activateQGumby ( extContext )
265
+ if ( ! isCloud9 ( ) ) {
266
+ await activateCWChat ( extContext . extensionContext )
267
+ await activateQGumby ( extContext )
268
+ }
268
269
269
270
await activateStepFunctions ( context , awsContext , toolkitOutputChannel )
270
271
You can’t perform that action at this time.
0 commit comments