1
0
mirror of https://git.openwrt.org/feed/routing.git synced 2024-06-17 12:43:59 +02:00
openwrt-routing/cjdns/patches/001-five-mins-builder-zonk.patch
William Fleurant 102ae19b73
cjdns: patch: allows buildbot(s) 3 extra minutes to finish async routines (#531)
Signed-off-by: William Fleurant <meshnet@protonmail.com>
2019-11-14 14:51:38 -05:00

14 lines
465 B
Diff

--- a/node_build/builder.js
+++ b/node_build/builder.js
@@ -203,8 +203,8 @@
// # 74 "./wire/Message.h"
js = js.replace(/\n#.*\n/g, '');
var to = setTimeout(function () {
- throw new Error("Inline JS did not return after 120 seconds [" + js + "]");
- }, 120000);
+ throw new Error("Inline JS did not return after 5 minutes [" + js + "]");
+ }, 300000);
var REQUIRE = function (str) {
if (typeof(str) !== 'string') {