diff --git a/src/apiClient.js b/src/apiClient.js index a8cde16..d07c326 100644 --- a/src/apiClient.js +++ b/src/apiClient.js @@ -52,6 +52,7 @@ class ApiClient { method: 'POST', headers: this.headers, body: JSON.stringify(data), + duplex: 'half', }); } @@ -110,6 +111,7 @@ class ApiClient { maxRetryDelay, method: 'PUT', body: contents, + duplex: 'half', }); if (this._gcsBucket) { @@ -123,6 +125,7 @@ class ApiClient { name: fileData.name, bucket: this._gcsBucket, }), + duplex: 'half', }); }