Skip to content

Commit 65881b1

Browse files
committed
fix: add space to avoid lint issue
1 parent 49ba773 commit 65881b1

File tree

1 file changed

+1
-2
lines changed
  • packages/core/src/awsService/ec2

1 file changed

+1
-2
lines changed

packages/core/src/awsService/ec2/model.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,7 @@ export class Ec2Connecter implements vscode.Disposable {
215215
remoteUser.name
216216
)
217217
} catch (err) {
218-
const message =
219-
err instanceof SshError ? `Testing SSM connection to instance failed: ${err.message}` : ''
218+
const message = err instanceof SshError ? `Testing SSM connection to instance failed: ${err.message}` : ''
220219
this.throwConnectionError(message, selection, { ...(err as Error), code: 'EC2SSMTestConnect' })
221220
} finally {
222221
await this.ssmClient.terminateSession(testSession)

0 commit comments

Comments
 (0)