Skip to content

Commit

Permalink
merge from devel
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky committed Nov 1, 2024
2 parents 0dc0e70 + b23c0f4 commit bcdc843
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/radical/pilot/agent/executing/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,8 @@ def _get_rp_env(self, task):
services = td.get('services') or list()
for service in services:
info = self._reg['services.%s' % service] or ''
ret += 'export RP_INFO_%s="%s"\n' % (service.upper(), str(info))
sid = service.replace('.', '_').upper()
ret += 'export RP_INFO_%s="%s"\n' % (sid, str(info))

# FIXME AM
# ret += 'export RP_LFS="%s"\n' % self.lfs
Expand Down

0 comments on commit bcdc843

Please sign in to comment.