diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-02-18 16:05:23 +0000 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-02-18 16:05:23 +0000 |
commit | 9c902025bf40599a875e773a9b9f6ebc021a5b59 (patch) | |
tree | 5abc257a763ac3a0a180b24e874b1ca9c4bd3edc /synapse/push/httppusher.py | |
parent | Merge pull request #583 from matrix-org/daniel/roomcleanupincremental (diff) | |
parent | Remove dead code for setting device specific rules. (diff) | |
download | synapse-9c902025bf40599a875e773a9b9f6ebc021a5b59.tar.xz |
Merge pull request #579 from matrix-org/markjh/dead_code
Remove dead code for setting device specific rules. It wasn't possible to hit the code from the API because of a typo in parsing the request path. Since no-one was using the feature we might as well remove the dead code.
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r-- | synapse/push/httppusher.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index cdc4494928..9be4869360 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -23,12 +23,11 @@ logger = logging.getLogger(__name__) class HttpPusher(Pusher): - def __init__(self, _hs, profile_tag, user_id, app_id, + def __init__(self, _hs, user_id, app_id, app_display_name, device_display_name, pushkey, pushkey_ts, data, last_token, last_success, failing_since): super(HttpPusher, self).__init__( _hs, - profile_tag, user_id, app_id, app_display_name, |