@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.mjs
CHANGED
|
@@ -132,10 +132,7 @@ var TestCaseFhirBase = class {
|
|
|
132
132
|
try {
|
|
133
133
|
this.#clientSocketFetchCount++;
|
|
134
134
|
let fhirClient = this.runnerExecutionWorker.GetFhirClient();
|
|
135
|
-
if (fhirClient)
|
|
136
|
-
this.Debug(chalk.green(`[${this.runnerExecutionWorker.id}] Getting existing fhir client`));
|
|
137
|
-
return fhirClient;
|
|
138
|
-
}
|
|
135
|
+
if (fhirClient) return fhirClient;
|
|
139
136
|
if (this.runnerExecutionWorker.GetOnHold("fhirclient") === true) {
|
|
140
137
|
this.Debug(chalk.magenta(`[${this.runnerExecutionWorker.id}] fhir client does not exist - some other client setting up the new client (on hold/lock) - waiting ...`));
|
|
141
138
|
try {
|