Skip to content

Commit 7aa8660

Browse files
committed
fix: Backported longer sign command timeout from sign-addon 1.0.0
1 parent 20cc8c2 commit 7aa8660

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/cmd/sign.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ export default function sign(
116116
apiSecret,
117117
apiUrlPrefix,
118118
apiProxy,
119-
timeout,
119+
// Backport increased sign-addon timeout (fixed on master
120+
// by updating sign-addon dependency to 1.0.0).
121+
timeout: typeof timeout === 'number' ? timeout : 900000,
120122
verbose,
121123
id,
122124
xpiPath: buildResult.extensionPath,

0 commit comments

Comments
 (0)