bohr-agent-sdk 0.1.23__py3-none-any.whl → 0.1.24__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bohr_agent_sdk-0.1.23.dist-info → bohr_agent_sdk-0.1.24.dist-info}/METADATA +1 -1
- {bohr_agent_sdk-0.1.23.dist-info → bohr_agent_sdk-0.1.24.dist-info}/RECORD +6 -6
- dp/agent/server/executor/local_executor.py +6 -1
- {bohr_agent_sdk-0.1.23.dist-info → bohr_agent_sdk-0.1.24.dist-info}/WHEEL +0 -0
- {bohr_agent_sdk-0.1.23.dist-info → bohr_agent_sdk-0.1.24.dist-info}/entry_points.txt +0 -0
- {bohr_agent_sdk-0.1.23.dist-info → bohr_agent_sdk-0.1.24.dist-info}/top_level.txt +0 -0
|
@@ -26,15 +26,15 @@ dp/agent/server/utils.py,sha256=8jgYZEW4XBp86AF2Km6QkwHltBmrnS-soTpHov7ZEJw,4501
|
|
|
26
26
|
dp/agent/server/executor/__init__.py,sha256=s95M5qKQk39Yi9qaVJZhk_nfj54quSf7EDghR3OCFUA,248
|
|
27
27
|
dp/agent/server/executor/base_executor.py,sha256=EFJBsYVYAvuRbiLAbLOwLTw3h7ScjN025xnSP4uJHrQ,2052
|
|
28
28
|
dp/agent/server/executor/dispatcher_executor.py,sha256=urpzmKH_tBOgblBdJEa3y8eEhXqUDrdcdWCnUdJpfZk,9420
|
|
29
|
-
dp/agent/server/executor/local_executor.py,sha256=
|
|
29
|
+
dp/agent/server/executor/local_executor.py,sha256=wYCclNZFkLb3v7KpW1nCnupO8piBES-esYlDAuz86zk,6120
|
|
30
30
|
dp/agent/server/storage/__init__.py,sha256=Sgsyp5hb0_hhIGugAPfQFzBHt_854rS_MuMuE3sn8Gs,389
|
|
31
31
|
dp/agent/server/storage/base_storage.py,sha256=728-oNG6N8isV95gZVnyi4vTznJPJhSjxw9Gl5Y_y5o,2356
|
|
32
32
|
dp/agent/server/storage/bohrium_storage.py,sha256=EsKX4dWWvZTn2TEhZv4zsvihfDK0mmPFecrln-Ytk40,10488
|
|
33
33
|
dp/agent/server/storage/http_storage.py,sha256=KiySq7g9-iJr12XQCKKyJLn8wJoDnSRpQAR5_qPJ1ZU,1471
|
|
34
34
|
dp/agent/server/storage/local_storage.py,sha256=t1wfjByjXew9ws3PuUxWxmZQ0-Wt1a6t4wmj3fW62GI,1352
|
|
35
35
|
dp/agent/server/storage/oss_storage.py,sha256=pgjmi7Gir3Y5wkMDCvU4fvSls15fXT7Ax-h9MYHFPK0,3359
|
|
36
|
-
bohr_agent_sdk-0.1.
|
|
37
|
-
bohr_agent_sdk-0.1.
|
|
38
|
-
bohr_agent_sdk-0.1.
|
|
39
|
-
bohr_agent_sdk-0.1.
|
|
40
|
-
bohr_agent_sdk-0.1.
|
|
36
|
+
bohr_agent_sdk-0.1.24.dist-info/METADATA,sha256=kmGJv8gXvQUdMe_P2QOBp_gz0IeP5oe9VUjmdSsmuZo,6329
|
|
37
|
+
bohr_agent_sdk-0.1.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
38
|
+
bohr_agent_sdk-0.1.24.dist-info/entry_points.txt,sha256=5n5kneF5IbDQtoQ2WfF-QuBjDtsimJte9Rv9baSGgc0,86
|
|
39
|
+
bohr_agent_sdk-0.1.24.dist-info/top_level.txt,sha256=87xLUDhu_1nQHoGLwlhJ6XlO7OsjILh6i1nX6ljFzDo,3
|
|
40
|
+
bohr_agent_sdk-0.1.24.dist-info/RECORD,,
|
|
@@ -130,7 +130,12 @@ class LocalExecutor(BaseExecutor):
|
|
|
130
130
|
extra_info["workflow_link"] = wf_link
|
|
131
131
|
break
|
|
132
132
|
if not alive:
|
|
133
|
-
|
|
133
|
+
if os.path.isfile("err"):
|
|
134
|
+
with open("err", "r") as f:
|
|
135
|
+
err_msg = f.read()
|
|
136
|
+
else:
|
|
137
|
+
err_msg = "No workflow submitted"
|
|
138
|
+
raise RuntimeError(err_msg)
|
|
134
139
|
logger.info("Waiting workflow to be submitted")
|
|
135
140
|
time.sleep(1)
|
|
136
141
|
self.recover_env(old_env)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|