From 018f53105e9ad6c29dd82e324f2405ef9c75eb54 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Wed, 12 Jan 2022 11:16:39 -0500 Subject: [PATCH] Pass correct arguments. --- src/allmydata/storage/http_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/storage/http_client.py b/src/allmydata/storage/http_client.py index 002ffc928..e38525583 100644 --- a/src/allmydata/storage/http_client.py +++ b/src/allmydata/storage/http_client.py @@ -115,7 +115,7 @@ class StorageClient(object): Return the version metadata for the server. """ url = self._url("/v1/version") - response = yield self._request("GET", url, {}) + response = yield self._request("GET", url) decoded_response = yield _decode_cbor(response) returnValue(decoded_response)