We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1cf6d6 commit 0d3ea9fCopy full SHA for 0d3ea9f
examples/retry.js
@@ -24,16 +24,16 @@ var SplunkLogger = require("../index").Logger;
24
/**
25
* Only the token property is required.
26
*
27
- * Here we've set maxRetries to 5,
+ * Here we've set maxRetries to 10,
28
* If there are any connection errors the request to Splunk will
29
- * be retried up to 5 times.
+ * be retried up to 10 times.
30
* The default is 0.
31
*/
32
var config = {
33
token: "your-token-here",
34
url: "https://localhost:8088",
35
level: "info",
36
- maxRetries: 5
+ maxRetries: 10
37
};
38
39
// Create a new logger
0 commit comments