Closed mikedig closed 7 months ago
Trying to change the timeout from the default of 30 seconds, but it doesn't seem to apply.
WebCoverageService(uri, version=WCS_VERSION, timeout=60)
this ends up calling WCSBase.__new which has the timeout value as 60 correctly, however when obj.__init is called (https://github.com/geopython/OWSLib/blob/master/owslib/coverage/wcsBase.py#L49) it doesn't pass the timeout value. In the debugger I see wcs100.py's __init__ have the default timeout of 30 seconds: https://github.com/geopython/OWSLib/blob/master/owslib/coverage/wcs100.py#L40
Is this intended behavior?
Fixed by #914
Trying to change the timeout from the default of 30 seconds, but it doesn't seem to apply.
WebCoverageService(uri, version=WCS_VERSION, timeout=60)
this ends up calling WCSBase.__new which has the timeout value as 60 correctly, however when obj.__init is called (https://github.com/geopython/OWSLib/blob/master/owslib/coverage/wcsBase.py#L49) it doesn't pass the timeout value. In the debugger I see wcs100.py's __init__ have the default timeout of 30 seconds: https://github.com/geopython/OWSLib/blob/master/owslib/coverage/wcs100.py#L40
Is this intended behavior?