@nsshunt/ststestrunner 1.1.71 → 1.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ststestrunner.cjs
CHANGED
|
@@ -155,10 +155,7 @@ var TestCaseFhirBase = class {
|
|
|
155
155
|
try {
|
|
156
156
|
this.#clientSocketFetchCount++;
|
|
157
157
|
let fhirClient = this.runnerExecutionWorker.GetFhirClient();
|
|
158
|
-
if (fhirClient)
|
|
159
|
-
this.Debug(chalk.default.green(`[${this.runnerExecutionWorker.id}] Getting existing fhir client`));
|
|
160
|
-
return fhirClient;
|
|
161
|
-
}
|
|
158
|
+
if (fhirClient) return fhirClient;
|
|
162
159
|
if (this.runnerExecutionWorker.GetOnHold("fhirclient") === true) {
|
|
163
160
|
this.Debug(chalk.default.magenta(`[${this.runnerExecutionWorker.id}] fhir client does not exist - some other client setting up the new client (on hold/lock) - waiting ...`));
|
|
164
161
|
try {
|