mirror of https://github.com/caronc/apprise
fix: Throttling is broken in Matrix plugin
parent
cf12873be2
commit
901583a038
|
@ -1279,6 +1279,9 @@ class NotifyMatrix(NotifyBase):
|
||||||
fn = requests.post if method == 'POST' else (
|
fn = requests.post if method == 'POST' else (
|
||||||
requests.put if method == 'PUT' else requests.get)
|
requests.put if method == 'PUT' else requests.get)
|
||||||
|
|
||||||
|
# Always call throttle before any remote server i/o is made
|
||||||
|
self.throttle()
|
||||||
|
|
||||||
# Define how many attempts we'll make if we get caught in a throttle
|
# Define how many attempts we'll make if we get caught in a throttle
|
||||||
# event
|
# event
|
||||||
retries = self.default_retries if self.default_retries > 0 else 1
|
retries = self.default_retries if self.default_retries > 0 else 1
|
||||||
|
|
Loading…
Reference in New Issue