cjdns: patch: allows buildbot(s) 3 extra minutes to finish async routines (#531)
Signed-off-by: William Fleurant <meshnet@protonmail.com>
This commit is contained in:
parent
d0e785aff3
commit
102ae19b73
2 changed files with 14 additions and 1 deletions
|
@ -18,7 +18,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=cjdns
|
||||
PKG_VERSION:=v20.4
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_SOURCE_VERSION:=$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE_PROTO:=git
|
||||
|
|
13
cjdns/patches/001-five-mins-builder-zonk.patch
Normal file
13
cjdns/patches/001-five-mins-builder-zonk.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- 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') {
|
Loading…
Reference in a new issue