diff options
author | Angelos Evripiotis <jevripiotis@bloomberg.net> | 2019-07-02 15:01:50 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-07-05 09:44:45 +0000 |
commit | b60fffebf563edfe258cbb893754197af1ac5a0b (patch) | |
tree | 48d7a2bee30f9b9edf6ea825bc9b22c804d38e53 /tests/artifactcache/push.py | |
parent | fe632514cb1892da1fe0c0f0c3a4fa3d33a8ec50 (diff) | |
download | buildstream-b60fffebf563edfe258cbb893754197af1ac5a0b.tar.gz |
Refactor: message handlers take 'is_silenced'
Remove the need to pass the Context object to message handlers, by
passing what is usually requested from the context instead.
This paves the way to sharing less information with some child jobs -
they won't need the whole context object, just the messenger.
Diffstat (limited to 'tests/artifactcache/push.py')
-rw-r--r-- | tests/artifactcache/push.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/artifactcache/push.py b/tests/artifactcache/push.py index 862393f35..996091fca 100644 --- a/tests/artifactcache/push.py +++ b/tests/artifactcache/push.py @@ -23,7 +23,7 @@ DATA_DIR = os.path.join( # Handle messages from the pipeline -def message_handler(message, context): +def message_handler(message, is_silenced): pass |