Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated paths for Proxy and Session #3073

Merged
merged 12 commits into from
Oct 27, 2023
4 changes: 4 additions & 0 deletions src/radical/pilot/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,8 @@ def _init_cfg_from_scratch(self):

if not self._cfg.base:
self._cfg.base = pwd
else:
self._cfg.base = os.path.abspath(self._cfg.base)
mtitov marked this conversation as resolved.
Show resolved Hide resolved

if not self._cfg.path:
self._cfg.path = '%s/%s' % (self._cfg.base, self._cfg.sid)
Expand Down Expand Up @@ -455,6 +457,8 @@ def _init_cfg_from_dict(self):

if not self._cfg.base:
self._cfg.base = pwd
else:
self._cfg.base = os.path.abspath(self._cfg.base)

if not self._cfg.path:
self._cfg.path = '%s/%s' % (self._cfg.base, self._cfg.sid)
Expand Down
Loading