From fa241d43f0661ac0ac95a4f43a1adfcb44d225b1 Mon Sep 17 00:00:00 2001 From: Arthur Cinader <700572+acinader@users.noreply.github.com> Date: Thu, 8 Mar 2018 10:35:03 -0800 Subject: [PATCH 1/2] fix workding for live query defaults help --- src/Options/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options/index.js b/src/Options/index.js index 5d5f4ecc8b..e4f6c24dfb 100644 --- a/src/Options/index.js +++ b/src/Options/index.js @@ -171,7 +171,7 @@ export interface LiveQueryServerOptions { cacheTimeout: ?number, /* This string defines the log level of the LiveQuery server. We support VERBOSE, INFO, ERROR, NONE. Defaults to INFO.*/ logLevel: ?string, - /* The port to run the ParseServer. defaults to 1337.*/ + /* The port to run the LiveQuery server. Defaults to 1337.*/ port: ?number, // = 1337 /* parse-server's LiveQuery redisURL */ redisURL: ?string, From b12d94401ee505e4d013b5ee1c957c137aa28240 Mon Sep 17 00:00:00 2001 From: Arthur Cinader <700572+acinader@users.noreply.github.com> Date: Thu, 8 Mar 2018 13:57:47 -0800 Subject: [PATCH 2/2] generate the definition file. --- src/Options/Definitions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options/Definitions.js b/src/Options/Definitions.js index 70ffdb76a4..8a58da95dc 100644 --- a/src/Options/Definitions.js +++ b/src/Options/Definitions.js @@ -372,7 +372,7 @@ module.exports.LiveQueryServerOptions = { }, "port": { "env": "PARSE_LIVE_QUERY_SERVER_PORT", - "help": "The port to run the ParseServer. defaults to 1337.", + "help": "The port to run the LiveQuery server. Defaults to 1337.", "action": parsers.numberParser("port"), "default": 1337 },