Skip to content

Commit

Permalink
Merge pull request #193 from Accenture/191-bug-retrievetable-shows-me…
Browse files Browse the repository at this point in the history
…ssages-from-commits-running-in-parallel

#191: only print progress messages for my own jobExecution
  • Loading branch information
JoernBerkefeld committed Oct 17, 2022
2 parents e523dcf + 5ea7206 commit 365c31b
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 365c31b

Please sign in to comment.