Skip to content

Commit

Permalink
synchronous workflow submission
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Jan 16, 2024
1 parent a8a4936 commit 001c752
Show file tree
Hide file tree
Showing 4 changed files with 158 additions and 138 deletions.
4 changes: 2 additions & 2 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
** Release Notes

current
* utcnow() -> now(UTC)
1.5.71
* synchronous workflow submission

1.5.70
* fixed FakeAppMgr for recent changes of AthAppMgr.OutStreamType
Expand Down
6 changes: 4 additions & 2 deletions pandaclient/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -961,9 +961,9 @@ def useDevServer():
# use INTR server
def useIntrServer():
global baseURL
baseURL = "http://aipanda059.cern.ch:25080/server/panda"
baseURL = "http://aipanda123.cern.ch:25080/server/panda"
global baseURLSSL
baseURLSSL = "https://aipanda059.cern.ch:25443/server/panda"
baseURLSSL = "https://aipanda123.cern.ch:25443/server/panda"
global baseURLCSRVSSL
baseURLCSRVSSL = baseURLSSL

Expand Down Expand Up @@ -1821,6 +1821,8 @@ def send_workflow_request(params, relay_host=None, check=False, verbose=False):
data = {"data": json.dumps(params)}
if check:
data["check"] = True
else:
data["sync"] = True
status, output = curl.post(url, data, compress_body=True, is_json=True)
if status != 0:
tmp_log.error(output)
Expand Down
2 changes: 1 addition & 1 deletion pandaclient/PandaToolsPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "1.5.70"
release_version = "1.5.71"
Loading

0 comments on commit 001c752

Please sign in to comment.