We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent d00a96e commit 4a034f0Copy full SHA for 4a034f0
packages/mongodb-memory-server-core/src/util/MongoBinaryDownload.ts
@@ -326,7 +326,12 @@ export default class MongoBinaryDownload {
326
new Error(
327
"Status Code is 403 (MongoDB's 404)\n" +
328
"This means that the requested version-platform combination doesn't exist\n" +
329
- `Used Url: "https://${httpOptions.hostname}${httpOptions.path}"`
+ ` Used Url: "https://${httpOptions.hostname}${httpOptions.path}"\n` +
330
+ "Try to use different version 'new MongoMemoryServer({ binary: { version: 'X.Y.Z' } })'\n" +
331
+ 'List of available versions can be found here:\n' +
332
+ ' https://www.mongodb.org/dl/linux for Linux\n' +
333
+ ' https://www.mongodb.org/dl/osx for OSX\n' +
334
+ ' https://www.mongodb.org/dl/win32 for Windows'
335
)
336
);
337
return;
0 commit comments