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:
William Fleurant 2019-11-14 14:51:38 -05:00 committed by GitHub
parent d0e785aff3
commit 102ae19b73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -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

View 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') {