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 3481095 commit cc2e356Copy full SHA for cc2e356
src/plugin-api.js
@@ -262,7 +262,7 @@ export default class PluginAPI {
262
// Only show error when not from nodemiral
263
// since nodemiral would have already shown the error
264
if (!(e.nodemiralHistory instanceof Array)) {
265
- console.error(e);
+ console.error(e.stack || e);
266
}
267
268
if (e.solution) {
@@ -398,8 +398,8 @@ export default class PluginAPI {
398
opts.ssh = info.opts;
399
400
401
- opts.ssh.keepaliveInterval = 1000 * 30;
402
- opts.ssh.keepaliveCountMax = 4;
+ opts.ssh.keepaliveInterval = 1000 * 28;
+ opts.ssh.keepaliveCountMax = 12;
403
404
if (info.pem) {
405
try {
0 commit comments