Skip to content

Commit

Permalink
Merge branch 'devel' into fix/dragon
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky authored Mar 19, 2024
2 parents 0ff9dea + 8c3f6c9 commit 4ae8966
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/radical/utils/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,13 @@ def get_exception_trace(msg=None):

# ------------------------------------------------------------------------------
#
def print_exception_trace(msg=None):
def print_exception_trace(msg=None, exc=None):

print_stacktrace(msg=msg, _stack=get_exception_trace())
if not exc:
print_stacktrace(msg=msg, _stack=get_exception_trace())
else:
print_stacktrace(msg=msg,
_stack=traceback.extract_tb(exc.__traceback__))


# ------------------------------------------------------------------------------
Expand Down
21 changes: 21 additions & 0 deletions src/radical/utils/flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# pylint: disable=cell-var-from-loop

import os
import sys
import time
import json

Expand Down Expand Up @@ -49,6 +50,16 @@ def __init__(self, uid : str,
self._watcher = None

try:
cmd = 'flux python -c "import flux; print(flux.__file__)"'
out, err, ret = sh_callout(cmd)

if ret:
raise RuntimeError('flux not found: %s' % err)

flux_path = os.path.dirname(out.strip())
mod_path = os.path.dirname(flux_path)
sys.path.append(mod_path)

self._flux = import_module('flux')
self._flux_job = import_module('flux.job')

Expand Down Expand Up @@ -297,6 +308,16 @@ def __init__(self) -> None:
self._executors = list() # TODO

try:
cmd = 'flux python -c "import flux; print(flux.__file__)"'
out, err, ret = sh_callout(cmd)

if ret:
raise RuntimeError('flux not found: %s' % err)

flux_path = os.path.dirname(out.strip())
mod_path = os.path.dirname(flux_path)
sys.path.append(mod_path)

self._flux = import_module('flux')
self._flux_job = import_module('flux.job')

Expand Down

0 comments on commit 4ae8966

Please sign in to comment.