Open shreyb opened 2 months ago
In fake_ifdh.py, we have operations like getToken and getProxy. These really should be in creds.py or something similar, so that what's left in fake_ifdh.py is actually ifdh-simulating operations.
fake_ifdh.py
getToken
getProxy
creds.py
Well, technically ifdh does have getToken and getProxy calls, but I see the argument for putting all the credentials stuff in creds.py.
In
fake_ifdh.py
, we have operations likegetToken
andgetProxy
. These really should be increds.py
or something similar, so that what's left infake_ifdh.py
is actually ifdh-simulating operations.