thelastpickle / cassandra-reaper

Automated Repair Awesomeness for Apache Cassandra
http://cassandra-reaper.io/
Apache License 2.0
481 stars 217 forks source link

Fix incorrect callback function #1443

Closed upsilon2gamma closed 6 months ago

upsilon2gamma commented 7 months ago

Fixes #1442

According to JQuery doc (https://api.jquery.com/jQuery.ajax/), complete function will be called whether the ajax request succeeds or fails. As a result, _refreshClusterStatus will set two new scheduled calls if the ajax request gets an error response (the first one by error and the second one by complete).

If _refreshClusterStatus keeps getting error responses (e.g. token has expired, the ajax request always gets 304 response), it will generate a huge number of requests in 10min (doubles every 30s)

upsilon2gamma commented 6 months ago

@adejanovski Updated