@opentap/runner-client 2.3.0 → 2.3.1
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/lib/BaseClient.js +1 -1
- package/package.json +1 -1
package/lib/BaseClient.js
CHANGED
|
@@ -242,7 +242,7 @@ var BaseClient = /** @class */ (function () {
|
|
|
242
242
|
result = new Uint8Array(__spreadArray(__spreadArray([], Array.from(result), true), Array.from(requestResponse.data), true));
|
|
243
243
|
// Acknowledge that the final chunk was received
|
|
244
244
|
if (requestResponse.data.length < this._chunkSize) {
|
|
245
|
-
this.connection.publish(requestResponse.reply, Empty);
|
|
245
|
+
this.connection.publish(requestResponse.reply, Empty, opts);
|
|
246
246
|
return [3 /*break*/, 4];
|
|
247
247
|
}
|
|
248
248
|
return [4 /*yield*/, this.connection.request(requestResponse.reply, Empty, opts)];
|