Skip to content

Commit af2126f

Browse files
committed
opendap driver: use no authentication as default
Apart from historic reasons, using ESGF as the default authentication method does not seem to be a straight forward choice. Changing the default to no authentication most likely is the more user friendly alternative. Apart from that and following intake#57, the default if no authentication method is given should be anonymous access, but currently this fall back does not work (see also intake#74).
1 parent b86dfa1 commit af2126f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intake_xarray/opendap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class OpenDapSource(DataSourceMixin):
3838
"""
3939
name = 'opendap'
4040

41-
def __init__(self, urlpath, chunks, auth="esgf", xarray_kwargs=None, metadata=None,
41+
def __init__(self, urlpath, chunks, auth=None, xarray_kwargs=None, metadata=None,
4242
**kwargs):
4343
self.urlpath = urlpath
4444
self.chunks = chunks

0 commit comments

Comments
 (0)