We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5260a07 commit 1678da7Copy full SHA for 1678da7
arduino-ide-extension/src/node/monitor-manager.ts
@@ -169,7 +169,9 @@ export class MonitorManager extends CoreClientAware {
169
}
170
171
async startQueuedServices(): Promise<void> {
172
- const queued = this.startMonitorPendingRequests;
+ // here we remove the first item as in all likelihood it's
173
+ // probably the port we used to perform an upload
174
+ const queued = this.startMonitorPendingRequests.slice(1);
175
this.startMonitorPendingRequests = [];
176
177
for (const [[board, port], onFinish] of queued) {
0 commit comments