You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'This string should match the appId in use by your Parse Server. If you deploy the LiveQuery server alongside Parse Server, the LiveQuery server will try to use the same appId.',
"Number in milliseconds. When clients provide the sessionToken to the LiveQuery server, the LiveQuery server will try to fetch its ParseUser's objectId from parse server and store it in the cache. The value defines the duration of the cache. Check the following Security section and our protocol specification for details, defaults to 5 * 1000 ms (5 seconds).",
483
483
action: parsers.numberParser('cacheTimeout'),
484
484
},
485
485
keyPairs: {
486
-
env: 'PARSE_SERVER_LIVE_QUERY_SERVER_KEY_PAIRS',
486
+
env: 'PARSE_LIVE_QUERY_SERVER_KEY_PAIRS',
487
487
help:
488
488
'A JSON object that serves as a whitelist of keys. It is used for validating clients when they try to connect to the LiveQuery server. Check the following Security section and our protocol specification for details.',
489
489
action: parsers.objectParser,
490
490
},
491
491
logLevel: {
492
-
env: 'PARSE_SERVER_LIVE_QUERY_SERVER_LOG_LEVEL',
492
+
env: 'PARSE_LIVE_QUERY_SERVER_LOG_LEVEL',
493
493
help:
494
494
'This string defines the log level of the LiveQuery server. We support VERBOSE, INFO, ERROR, NONE, defaults to INFO.',
495
495
},
496
496
masterKey: {
497
-
env: 'PARSE_SERVER_LIVE_QUERY_SERVER_MASTER_KEY',
497
+
env: 'PARSE_LIVE_QUERY_SERVER_MASTER_KEY',
498
498
help:
499
499
'This string should match the masterKey in use by your Parse Server. If you deploy the LiveQuery server alongside Parse Server, the LiveQuery server will try to use the same masterKey.',
500
500
},
501
501
port: {
502
-
env: 'PARSE_SERVER_LIVE_QUERY_SERVER_PORT',
502
+
env: 'PARSE_LIVE_QUERY_SERVER_PORT',
503
503
help: 'The port to run the LiveQuery server, defaults to 1337.',
'This string should match the serverURL in use by your Parse Server. If you deploy the LiveQuery server alongside Parse Server, the LiveQuery server will try to use the same serverURL.',
'Number of milliseconds between ping/pong frames. The WebSocket server sends ping/pong frames to the clients to keep the WebSocket alive. This value defines the interval of the ping/pong frame from the server to clients, defaults to 10 * 1000 ms (10 s).',
'An array of paths for which the feature should be enabled. The mount path must not be included, for example instead of `/parse/functions/myFunction` specifiy `functions/myFunction`. The entries are interpreted as regular expression, for example `functions/.*` matches all functions, `jobs/.*` matches all jobs, `classes/.*` matches all classes, `.*` matches all paths.',
543
543
action: parsers.arrayParser,
544
544
default: [],
545
545
},
546
546
ttl: {
547
-
env: 'PARSE_SERVER_IDEMPOTENCY_TTL',
547
+
env: 'PARSE_SERVER_EXPERIMENTAL_IDEMPOTENCY_TTL',
548
548
help:
549
549
'The duration in seconds after which a request record is discarded from the database, defaults to 300s.',
0 commit comments