Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supply URLs to suite and task event handlers. #2276

Merged
merged 4 commits into from
May 11, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pep8 fix
  • Loading branch information
hjoliver committed May 11, 2017
commit fb35ae97fcead721910c4c10eb9942796f50a5ea
3 changes: 2 additions & 1 deletion lib/cylc/task_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,8 @@ def setup_custom_event_handlers(self, event, message, only_list=None):
if cmd == handler:
# Nothing substituted, assume classic interface
cmd = "%s '%s' '%s' '%s' '%s'" % (
handler, event, self.__class__.suite_name, self.identity, message)
handler, event, self.__class__.suite_name,
self.identity, message)
self.log(DEBUG, "Queueing %s handler: %s" % (event, cmd))
self.event_handler_try_timers[(key1, self.submit_num)] = (
TaskActionTimer(
Expand Down