We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adc4129 commit 754d0fcCopy full SHA for 754d0fc
src/ec2/explorer/ec2InstanceNode.ts
@@ -45,7 +45,7 @@ export class Ec2InstanceNode extends AWSTreeNodeBase implements AWSResourceNode
45
}
46
47
public isPending(): boolean {
48
- return this.getStatus() == 'pending'
+ return this.getStatus() != 'running' && this.getStatus() != 'stopped'
49
50
51
public async updateStatus() {
0 commit comments