Correctly handle null data in HttpPusher

pull/4716/head
Erik Johnston 2019-02-22 14:47:48 +00:00
parent e07384c4e1
commit 1d9df51ff1
1 changed files with 5 additions and 0 deletions

View File

@ -97,6 +97,11 @@ class HttpPusher(object):
pusherdict['pushkey'],
)
if self.data is None:
raise PusherConfigException(
"data can not be null for HTTP pusher"
)
if 'url' not in self.data:
raise PusherConfigException(
"'url' required in data for HTTP pusher"