Skip to content

Commit

Permalink
notify_repeat is int not bool
Browse files Browse the repository at this point in the history
  • Loading branch information
pburrows-ns1 committed Aug 22, 2023
1 parent eb943b2 commit b125055
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 b125055

Please sign in to comment.