We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23e47f2 commit 5ca4844Copy full SHA for 5ca4844
src/ParseServer.js
@@ -143,7 +143,7 @@ class ParseServer {
143
Parse.initialize(appId, javascriptKey || 'unused', masterKey);
144
Parse.serverURL = serverURL;
145
if ((databaseOptions || (databaseURI && databaseURI != defaults.DefaultMongoURI) || collectionPrefix !== '') && databaseAdapter) {
146
- throw 'You cannot specify both a databaseAdapter and a databaseURI/databaseOptions/connectionPrefix.';
+ throw 'You cannot specify both a databaseAdapter and a databaseURI/databaseOptions/collectionPrefix.';
147
} else if (!databaseAdapter) {
148
databaseAdapter = new MongoStorageAdapter({
149
uri: databaseURI,
0 commit comments