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 86da344 commit 26f71beCopy full SHA for 26f71be
packages/core/src/awsService/ec2/explorer/ec2ParentNode.ts
@@ -47,6 +47,13 @@ export class Ec2ParentNode extends AWSTreeNodeBase {
47
}
48
this.pollingSet.start(instanceId)
49
50
+ // Temporary inserted copy
51
+ public trackPendingNode2(instanceId: string) {
52
+ if (!this.ec2InstanceNodes.has(instanceId)) {
53
+ throw new Error(`Attempt to track ec2 node ${instanceId} that isn't a child`)
54
+ }
55
+ this.pollingSet.start(instanceId)
56
57
58
public async updateChildren(): Promise<void> {
59
const ec2Instances = await (await this.ec2Client.getInstances()).toMap((instance) => instance.InstanceId)
0 commit comments