unbound-cli 1.6.2 → 1.6.3
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/package.json +1 -1
- package/src/commands/discover.js +1 -1
package/package.json
CHANGED
package/src/commands/discover.js
CHANGED
|
@@ -16,7 +16,7 @@ const DISCOVERY_EXIT_UNSUPPORTED_OS = 3;
|
|
|
16
16
|
// indefinitely. Discovery enforces this itself — on expiry it releases its lock,
|
|
17
17
|
// reports the run as failed, and exits non-zero. Kept in sync with
|
|
18
18
|
// setup/mdm/onboard.py's DISCOVERY_TIMEOUT_SECONDS.
|
|
19
|
-
const DISCOVERY_TIMEOUT_SECONDS =
|
|
19
|
+
const DISCOVERY_TIMEOUT_SECONDS = 9000;
|
|
20
20
|
|
|
21
21
|
// Classifies a discovery subprocess exit code:
|
|
22
22
|
// 'success' (scan ran), 'unsupported' (skipped on this OS), or 'failure'.
|