Skip to content

Commit 1957276

Browse files
committed
adjust liveQuery classes
1 parent 76a92db commit 1957276

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ x-shared_environment: &shared_environment
4141
PARSE_SERVER_RATE_LIMIT_REQUEST_COUNT: '100'
4242
PARSE_SERVER_RATE_LIMIT_INCLUDE_PRIMARY_KEY: 'false'
4343
PARSE_SERVER_RATE_LIMIT_INCLUDE_INTERNAL_REQUESTS: 'false'
44+
PARSE_SERVER_LIVEQUERY_CLASSNAMES: 'GameScore'
4445
PARSE_DASHBOARD_START: 'true'
4546
PARSE_DASHBOARD_APP_NAME: Parse HIPAA
4647
PARSE_DASHBOARD_USERNAMES: parse, parseRead

parse/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ let maintenanceKeyIps = process.env.PARSE_SERVER_MAINTENANCE_KEY_IPS || '172.16.
8585
maintenanceKeyIps = maintenanceKeyIps.split(", ");
8686
let primaryKeyIps = process.env.PARSE_SERVER_PRIMARY_KEY_IPS || '172.16.0.0/12, 192.168.0.0/16, 10.0.0.0/8, 127.0.0.1, ::1';
8787
primaryKeyIps = primaryKeyIps.split(", ");
88-
let classNames = process.env.PARSE_SERVER_LIVEQUERY_CLASSNAMES || 'Clock, RevisionRecord';
88+
let classNames = process.env.PARSE_SERVER_LIVEQUERY_CLASSNAMES || 'GameScore';
8989
classNames = classNames.split(", ");
9090
let trustServerProxy = process.env.PARSE_SERVER_TRUST_PROXY || false;
9191
if (trustServerProxy == 'true') {

0 commit comments

Comments
 (0)