Skip to content

Commit

Permalink
Merge pull request #361 from HSF/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
wguanicedew authored Oct 21, 2024
2 parents 8ae34a8 + c528f0d commit 684958c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions doma/lib/idds/doma/workflowv2/domapandawork.py
Original file line number Diff line number Diff line change
Expand Up @@ -792,10 +792,10 @@ def submit_panda_task(self, processing):
if 'new_retries' in processing and processing['new_retries']:
new_retries = int(processing['new_retries'])
task_param['taskName'] = task_param['taskName'] + "_" + str(new_retries)
if not task_param['cloud']:
cloud = self.get_site_from_cloud(task_param['PandaSite'])
if cloud:
task_param['cloud'] = cloud
cloud = self.get_site_from_cloud(task_param['PandaSite'])
if cloud and cloud != task_param['cloud']:
self.logger.info(f"Task cloud was set to {task_param['cloud']}, which is different from {cloud}, reset it to {cloud}")
task_param['cloud'] = cloud

if self.has_dependency():
parent_tid = None
Expand Down
12 changes: 6 additions & 6 deletions monitor/data/conf.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

var appConfig = {
'iddsAPI_request': "https://lxplus984.cern.ch:443/idds/monitor_request/null/null",
'iddsAPI_transform': "https://lxplus984.cern.ch:443/idds/monitor_transform/null/null",
'iddsAPI_processing': "https://lxplus984.cern.ch:443/idds/monitor_processing/null/null",
'iddsAPI_request_detail': "https://lxplus984.cern.ch:443/idds/monitor/null/null/true/false/false",
'iddsAPI_transform_detail': "https://lxplus984.cern.ch:443/idds/monitor/null/null/false/true/false",
'iddsAPI_processing_detail': "https://lxplus984.cern.ch:443/idds/monitor/null/null/false/false/true"
'iddsAPI_request': "https://lxplus972.cern.ch:443/idds/monitor_request/null/null",
'iddsAPI_transform': "https://lxplus972.cern.ch:443/idds/monitor_transform/null/null",
'iddsAPI_processing': "https://lxplus972.cern.ch:443/idds/monitor_processing/null/null",
'iddsAPI_request_detail': "https://lxplus972.cern.ch:443/idds/monitor/null/null/true/false/false",
'iddsAPI_transform_detail': "https://lxplus972.cern.ch:443/idds/monitor/null/null/false/true/false",
'iddsAPI_processing_detail': "https://lxplus972.cern.ch:443/idds/monitor/null/null/false/false/true"
}

0 comments on commit 684958c

Please sign in to comment.