Skip to content

Commit

Permalink
#191: only print progress messages for my own jobExecution
Browse files Browse the repository at this point in the history
thank you @nrabe-copado
  • Loading branch information
JoernBerkefeld committed Oct 17, 2022
1 parent e523dcf commit 5ea7206
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,9 @@ export default class mcdo_RetrieveTable extends LightningElement {
try {
// show progress on screen
const stepStatus = JSON.parse(response.data.payload.copado__Payload__c);
this.progressStatus = stepStatus.data.progressStatus || this.progressStatus;
if (stepStatus.externalJobId === jobExecutionId) {
this.progressStatus = stepStatus.data.progressStatus || this.progressStatus;
}
} catch {}
}
};
Expand Down

0 comments on commit 5ea7206

Please sign in to comment.