Live query defaults reference ParseServer instead of LiverQuery server. (#4613)

* fix workding for live query defaults help

* generate the definition file.
This commit is contained in:
Arthur Cinader
2018-03-08 14:30:18 -08:00
committed by Florent Vilmart
parent f0674df424
commit d19ac077b6
2 changed files with 2 additions and 2 deletions

View File

@@ -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
},

View File

@@ -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,