Skip to content

Commit

Permalink
Merge pull request #398 from radical-cybertools/feature/flux_resource…
Browse files Browse the repository at this point in the history
…_info

dump flux resources after startup
  • Loading branch information
mturilli authored Mar 1, 2024
2 parents 1b097dd + 388eab6 commit 397654d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/radical/utils/flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ def _watch(self) -> None:
for k,v in self._env.items():
os.environ[k] = v

out, err, ret = sh_callout('flux resource list')
self._log.info('flux resources [ %d %s]:\n%s', ret, err, out)

while not self._term.is_set():

time.sleep(1)
Expand Down

0 comments on commit 397654d

Please sign in to comment.