@nsshunt/ststestrunner 1.1.51 → 1.1.52
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
|
@@ -136,9 +136,11 @@ var TestCaseFhirBase = class {
|
|
|
136
136
|
if (this.fhirClient) {
|
|
137
137
|
this.Debug(`GetFhirSocketClient(): clientSocketFetchCount: [${this.#clientSocketFetchCount}] resetSocketClientTrigger: [${this.#resetSocketClientTrigger}] mod: [${this.#clientSocketFetchCount % this.#resetSocketClientTrigger}]`);
|
|
138
138
|
if (this.#clientSocketFetchCount % this.#resetSocketClientTrigger === 0) {
|
|
139
|
+
this.Debug(`GetFhirSocketClient(): ... resetting ...`);
|
|
139
140
|
this.fhirClient.ResetSocket();
|
|
140
141
|
await Sleep(3500);
|
|
141
142
|
this.fhirClient = null;
|
|
143
|
+
this.Debug(`GetFhirSocketClient(): ... resetting done ...`);
|
|
142
144
|
return this.GetFhirSocketClient();
|
|
143
145
|
} else return this.fhirClient;
|
|
144
146
|
}
|