Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1756)

Unified Diff: juju/hooks/scheduler.py

Issue 5845061: juju/control should be aware of subordinates
Patch Set: juju/control should be aware of subordinates Created 13 years ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « juju/environment/tests/test_config.py ('k') | juju/hooks/tests/test_invoker.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: juju/hooks/scheduler.py
=== modified file 'juju/hooks/scheduler.py'
--- juju/hooks/scheduler.py 2012-03-28 02:55:12 +0000
+++ juju/hooks/scheduler.py 2012-03-30 02:46:54 +0000
@@ -172,7 +172,7 @@
class HookScheduler(object):
- def __init__(self, client, executor, unit_relation, relation_name,
+ def __init__(self, client, executor, unit_relation, relation_ident,
unit_name, state_path):
self._running = False
self._state_path = state_path
@@ -182,7 +182,8 @@
# For hook context construction.
self._client = client
self._unit_relation = unit_relation
- self._relation_name = relation_name
+ self._relation_ident = relation_ident
+ self._relation_name = relation_ident.split(":")[0]
self._unit_name = unit_name
self._current_clock = None
@@ -225,7 +226,7 @@
"""
# Assemble the change and hook execution context
rel_change = RelationChange(
- self._relation_name, change['change_type'], change['unit_name'])
+ self._relation_ident, change['change_type'], change['unit_name'])
context = RelationHookContext(
self._client, self._unit_relation, change,
change['members'], unit_name=self._unit_name)
« no previous file with comments | « juju/environment/tests/test_config.py ('k') | juju/hooks/tests/test_invoker.py » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b