Do not automatically connect to local compute.

This commit is contained in:
grossmj
2020-10-22 16:47:11 +10:30
parent a92c47b310
commit 13da8aa8f5
3 changed files with 7 additions and 6 deletions

View File

@ -501,7 +501,8 @@ class Compute:
async def _run_http_query(self, method, path, data=None, timeout=20, raw=False):
with async_timeout.timeout(timeout):
url = self._getUrl(path)
headers = {'content-type': 'application/json'}
headers = {}
headers['content-type'] = 'application/json'
chunked = None
if data == {}:
data = None