We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07367ca commit 5a927b2Copy full SHA for 5a927b2
dvc_http/tests/cloud.py
@@ -17,7 +17,7 @@ def mkdir(self, mode=0o777, parents=False, exist_ok=False):
17
18
def write_bytes(self, contents):
19
assert isinstance(contents, bytes)
20
- response = requests.post(self.url, data=contents)
+ response = requests.post(self.url, data=contents, timeout=300)
21
assert response.status_code == 200
22
23
@property
0 commit comments