File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/core/src/docdb/explorer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -123,18 +123,18 @@ export abstract class DBResourceNode extends AWSTreeNodeBase implements AWSResou
123
123
this . isPolling = true
124
124
await this . waitUntilStatusChanged ( true , 60000 , 1000 )
125
125
getLogger ( ) . debug ( `Tracking changes for a processing status wait is over` )
126
- this . pollingSet . start ( this . arn )
126
+ this . pollingSet . add ( this . arn )
127
127
getLogger ( ) . debug ( `Tracking changes for ARN: ${ this . arn } ; condition: ${ this . isPolling } ;` )
128
128
} else {
129
129
getLogger ( ) . debug ( `ARN: ${ this . arn } already being tracked` )
130
130
}
131
131
}
132
132
133
133
public trackChanges ( ) {
134
- getLogger ( ) . debug ( `Preparing to track immdiately for ARN: ${ this . arn } ; condition: ${ this . isPolling } ;` )
134
+ getLogger ( ) . debug ( `Preparing to track immediately for ARN: ${ this . arn } ; condition: ${ this . isPolling } ;` )
135
135
if ( ! this . isPolling ) {
136
136
this . isPolling = true
137
- this . pollingSet . start ( this . arn )
137
+ this . pollingSet . add ( this . arn )
138
138
getLogger ( ) . debug ( `Tracking changes for ARN: ${ this . arn } ; condition: ${ this . isPolling } ;` )
139
139
} else {
140
140
getLogger ( ) . debug ( `ARN: ${ this . arn } already being tracked` )
You can’t perform that action at this time.
0 commit comments