Skip to content

Commit

Permalink
[fix] Timeout message should tell users to set it greater than 100000
Browse files Browse the repository at this point in the history
The default, afaik, is 200000. This will tell them to change it to
480000, or 8 minutes, as per the README example.
  • Loading branch information
Southern committed Aug 5, 2013
1 parent 5ee65b1 commit 6b41f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jitsu.js
Expand Up @@ -383,7 +383,7 @@ jitsu.showError = function (command, err, shallow, skip) {
jitsu.log.info(
'jitsu\'s client request timed out before the server ' +
'could respond. Please increase your client timeout');
jitsu.log.help('(Example: `jitsu config set timeout 100000`)');
jitsu.log.help('(Example: `jitsu config set timeout 480000`)');
jitsu.log.help('This error may be due to network connection problems');
} else {
err.stack.split('\n').forEach(function (trace) {
Expand Down

0 comments on commit 6b41f25

Please sign in to comment.