Skip to content

Commit

Permalink
Merge pull request #416 from mayuradesh/develop
Browse files Browse the repository at this point in the history
MOSIP-27440 CTK UI Reliability bugs
  • Loading branch information
mayuradesh committed Jun 26, 2023
2 parents 03fc517 + 10a2a7d commit 69d3ac3
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -778,8 +778,13 @@ export class ExecuteTestRunComponent implements OnInit {
}
console.log(`this.abisSentDataSource ${this.abisSentDataSource}`);
this.subscribeToABISQueue(requestId);
await new Promise(async (resolve, reject) => { });
return true;
//wait till some message arrives in active mq
const promise = new Promise((resolve, reject) => { });
if (await promise) {
return true;
} else {
return true;
}
} else {
console.log("INSERT REQUEST FAILED");
this.cbeffFileSuffix = 0;
Expand Down

0 comments on commit 69d3ac3

Please sign in to comment.