Skip to content

Commit

Permalink
Use correct server name from instance in HELP URL. Fix #4768
Browse files Browse the repository at this point in the history
  • Loading branch information
belforte authored and lecriste committed Nov 29, 2018
1 parent 7a83a98 commit 520d6e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python/CRABClient/Commands/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ def printTaskInfo(self, crabDBInfo, username):
taskname = urllib.quote(self.cachedinfo['RequestName'])

## CRAB Server UI URL for this task is always useful
crabServerUIURL = "https://cmsweb.cern.ch/crabserver/ui/task/" + taskname
#crabServerUIURL has a format like "https://cmsweb.cern.ch/crabserver/ui/task/" + taskname
crabServerUIURL = "https://" + self.serverurl + "/crabserver/ui/task/" + taskname
msg = "%sTask URL to use for HELP:\t%s%s" % (colors.GREEN, crabServerUIURL, colors.NORMAL)
self.logger.info(msg)

Expand Down

0 comments on commit 520d6e4

Please sign in to comment.