Skip to content

Commit

Permalink
Merge pull request ns1#115 from ns1/notify-repeat-is-int-not-bool
Browse files Browse the repository at this point in the history
Fix previous PR - notify_repeat is int not bool
  • Loading branch information
pburrows-ns1 authored Aug 22, 2023
2 parents eb943b2 + b125055 commit 4350c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ns1/rest/monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class Monitors(resource.BaseResource):
"notify_delay",
"notify_list",
]
INT_FIELDS = ["frequency"]
BOOL_FIELDS = ["active", "rapid_recheck", "notify_regional", "notify_repeat"]
INT_FIELDS = ["frequency", "notify_repeat"]
BOOL_FIELDS = ["active", "rapid_recheck", "notify_regional"]

def list(self, callback=None, errback=None):
return self._make_request(
Expand Down

0 comments on commit 4350c3f

Please sign in to comment.