@certik/skynet 0.16.7 → 0.16.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -5
- package/app.js +10 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/app.js
CHANGED
|
@@ -217,8 +217,8 @@ function indexer({ name, selector, build, check, env = {}, region = "us-east-1"
|
|
|
217
217
|
bin: `${bin} check`,
|
|
218
218
|
schedule: check.schedule,
|
|
219
219
|
killTimeout: check.killTimeout,
|
|
220
|
-
cpu: check.cpu ||
|
|
221
|
-
mem: check.mem ||
|
|
220
|
+
cpu: check.cpu || 600,
|
|
221
|
+
mem: check.mem || 600,
|
|
222
222
|
},
|
|
223
223
|
});
|
|
224
224
|
|
|
@@ -337,8 +337,8 @@ function modeIndexer({ name, selector, state, build, validate, check, env = {},
|
|
|
337
337
|
bin: `${bin} check`,
|
|
338
338
|
schedule: check.schedule,
|
|
339
339
|
killTimeout: check.killTimeout,
|
|
340
|
-
cpu: check.cpu ||
|
|
341
|
-
mem: check.mem ||
|
|
340
|
+
cpu: check.cpu || 500,
|
|
341
|
+
mem: check.mem || 500,
|
|
342
342
|
},
|
|
343
343
|
});
|
|
344
344
|
|
|
@@ -449,8 +449,8 @@ function producer({ name, selector, produce, check, state, env = {}, region = "u
|
|
|
449
449
|
bin: `${bin} check`,
|
|
450
450
|
schedule: check.schedule,
|
|
451
451
|
killTimeout: check.killTimeout,
|
|
452
|
-
cpu: check.cpu ||
|
|
453
|
-
mem: check.mem ||
|
|
452
|
+
cpu: check.cpu || 500,
|
|
453
|
+
mem: check.mem || 500,
|
|
454
454
|
},
|
|
455
455
|
});
|
|
456
456
|
|
|
@@ -549,8 +549,8 @@ function consumer({ name, selector, consume, check, env = {}, region = "us-east-
|
|
|
549
549
|
bin: `${bin} check`,
|
|
550
550
|
schedule: check.schedule,
|
|
551
551
|
killTimeout: check.killTimeout,
|
|
552
|
-
cpu: check.cpu ||
|
|
553
|
-
mem: check.mem ||
|
|
552
|
+
cpu: check.cpu || 500,
|
|
553
|
+
mem: check.mem || 500,
|
|
554
554
|
},
|
|
555
555
|
});
|
|
556
556
|
|
|
@@ -709,8 +709,8 @@ function api({ name, routes, serve, beforeListen, env = {}, region = "us-east-1"
|
|
|
709
709
|
bin: `${bin} check`,
|
|
710
710
|
schedule: check.schedule,
|
|
711
711
|
killTimeout: check.killTimeout,
|
|
712
|
-
cpu: check.cpu ||
|
|
713
|
-
mem: check.mem ||
|
|
712
|
+
cpu: check.cpu || 500,
|
|
713
|
+
mem: check.mem || 500,
|
|
714
714
|
},
|
|
715
715
|
});
|
|
716
716
|
|