Skip to content

Commit

Permalink
fix: allow 1024 concurrent API sync processes
Browse files Browse the repository at this point in the history
This fixes an issue where the sync process would fail if there were more than 10 pending processes.
  • Loading branch information
jaredhendrickson13 committed Oct 19, 2024
1 parent 39d017b commit fd4471a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ use RESTAPI\Models\RESTAPISettingsSync;
*/
class RESTAPISettingsSyncDispatcher extends Dispatcher {
public int $timeout = 60;
public int $max_queue = 1024;

/**
* Starts the REST API settings sync to HA peers.
Expand Down

0 comments on commit fd4471a

Please sign in to comment.