Skip to content

Commit

Permalink
Increase polling interval to 1min
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Maziere committed Feb 12, 2016
1 parent ba47009 commit 8c3f4e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bus.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class Bus {
this._mozaik.logger.info(`Setting timer for "${ requestId }"`);
this.subscriptions[requestId].timer = setInterval(() => {
this.processApiCall(requestId, callFn, request.params);
}, 10000);
}, 60000);
}

// avoid adding a client for the same API call twice
Expand Down

1 comment on commit 8c3f4e3

@plouc
Copy link

@plouc plouc commented on 8c3f4e3 Apr 6, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now configurable, see plouc#75 and plouc#72, you must use mozaik@1.2.1

Please sign in to comment.