diff options
| author | Scott Bahling <sbahling@suse.com> | 2020-02-03 09:04:28 +0100 |
|---|---|---|
| committer | Scott Bahling <sbahling@suse.com> | 2020-02-03 09:04:28 +0100 |
| commit | 2c3f27bbc42011ba97aa3960ad54a164c638a537 (patch) | |
| tree | fc59c78c33ae29e7a474812c21e922dadc7db7ae | |
| parent | 7d82a916100a01b80a49bd60e92a5aa430e0829b (diff) | |
| download | obsapi-2c3f27bbc42011ba97aa3960ad54a164c638a537.tar.gz obsapi-2c3f27bbc42011ba97aa3960ad54a164c638a537.tar.xz obsapi-2c3f27bbc42011ba97aa3960ad54a164c638a537.zip | |
Disable retries for now
Probably should make this a configurable setting
| -rw-r--r-- | obsapi/httpapi.py | 2 | ||||
| -rw-r--r-- | setup.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/obsapi/httpapi.py b/obsapi/httpapi.py index c8ca03d..008500b 100644 --- a/obsapi/httpapi.py +++ b/obsapi/httpapi.py @@ -31,7 +31,7 @@ class ObsHttpApi(object): self.apiurl = apiurl self._auth = {} self._response = Null() - self.retries = 3 + self.retries = 0 self.verify_ssl = True @property @@ -57,6 +57,7 @@ setup( 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.7', ), # entry_points={ # 'console_scripts': [ |
