Skip to content

Commit

Permalink
Merge pull request #738 from RemiDesgrange/fix-timeout-bug
Browse files Browse the repository at this point in the history
Fix bug with timeout not assigned
  • Loading branch information
cehbrecht authored Feb 1, 2021
2 parents c8a948c + 0e2c5b8 commit 5ee26d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions owslib/coverage/wcs110.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def __init__(self, url, xml, cookies, auth=None, timeout=30):

self.url = url
self.cookies = cookies
self.timeout = timeout
# initialize from saved capability document or access the server
reader = WCSCapabilitiesReader(self.version, self.cookies, self.auth)
if xml:
Expand Down
1 change: 1 addition & 0 deletions owslib/coverage/wcs200.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def __init__(self, url, xml, cookies, auth=None, timeout=30):
self.version = "2.0.0"
self.url = url
self.cookies = cookies
self.timeout = timeout
self.ows_common = OwsCommon(version="2.0.0")
# initialize from saved capability document or access the server
reader = WCSCapabilitiesReader(self.version, self.cookies, self.auth)
Expand Down
1 change: 1 addition & 0 deletions owslib/coverage/wcs201.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def __init__(self, url, xml, cookies, auth=None, timeout=30):
self.version = "2.0.1"
self.url = url
self.cookies = cookies
self.timeout = timeout
self.ows_common = OwsCommon(version="2.0.1")
# initialize from saved capability document or access the server
reader = WCSCapabilitiesReader(self.version, self.cookies, self.auth)
Expand Down

0 comments on commit 5ee26d0

Please sign in to comment.