@rip-lang/server 0.8.1 → 0.8.2
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/README.md +1 -1
- package/package.json +1 -1
- package/server.rip +1 -1
package/README.md
CHANGED
|
@@ -426,7 +426,7 @@ Most settings are configured via CLI flags, but environment variables provide an
|
|
|
426
426
|
| `RIP_MAX_QUEUE` | `--max-queue=` | `512` | Request queue limit |
|
|
427
427
|
| `RIP_QUEUE_TIMEOUT_MS` | `--queue-timeout-ms=` | `2000` | Queue wait timeout (ms) |
|
|
428
428
|
| `RIP_CONNECT_TIMEOUT_MS` | `--connect-timeout-ms=` | `20000` | Worker request timeout (ms) |
|
|
429
|
-
| `RIP_READ_TIMEOUT_MS` | `--read-timeout-ms=` | `
|
|
429
|
+
| `RIP_READ_TIMEOUT_MS` | `--read-timeout-ms=` | `30000` | Worker read timeout (ms) |
|
|
430
430
|
|
|
431
431
|
## Dashboard
|
|
432
432
|
|
package/package.json
CHANGED
package/server.rip
CHANGED
|
@@ -342,7 +342,7 @@ parseFlags = (argv) ->
|
|
|
342
342
|
maxQueue: coerceInt(getKV('--max-queue='), coerceInt(process.env.RIP_MAX_QUEUE, 512))
|
|
343
343
|
queueTimeoutMs: coerceInt(getKV('--queue-timeout-ms='), coerceInt(process.env.RIP_QUEUE_TIMEOUT_MS, 2000))
|
|
344
344
|
connectTimeoutMs: coerceInt(getKV('--connect-timeout-ms='), coerceInt(process.env.RIP_CONNECT_TIMEOUT_MS, 20000))
|
|
345
|
-
readTimeoutMs: coerceInt(getKV('--read-timeout-ms='), coerceInt(process.env.RIP_READ_TIMEOUT_MS,
|
|
345
|
+
readTimeoutMs: coerceInt(getKV('--read-timeout-ms='), coerceInt(process.env.RIP_READ_TIMEOUT_MS, 30000))
|
|
346
346
|
jsonLogging: has('--json-logging')
|
|
347
347
|
accessLog: not has('--no-access-log')
|
|
348
348
|
watchGlob: watchGlob
|