File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/DIRAC/Resources/Storage Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- """ Base Storage Class provides the base interface for all storage plug-ins
1
+ """Base Storage Class provides the base interface for all storage plug-ins
2
2
3
3
exists()
4
4
33
33
getOccupancy()
34
34
35
35
"""
36
+
36
37
import errno
37
38
import json
38
39
import os
@@ -113,7 +114,8 @@ def __updateParameters(self, parameterDict):
113
114
114
115
def getParameters (self ):
115
116
"""Get the parameters with which the storage was instantiated"""
116
- parameterDict = dict (self .protocolParameters )
117
+ parameterDict = dict (self ._allProtocolParameters )
118
+ parameterDict .update (self .protocolParameters )
117
119
parameterDict ["StorageName" ] = self .name
118
120
parameterDict ["PluginName" ] = self .pluginName
119
121
parameterDict ["URLBase" ] = self .getURLBase ().get ("Value" , "" )
You can’t perform that action at this time.
0 commit comments