Skip to content

Commit 4a034f0

Browse files
hasezoeynodkz
authored andcommittedSep 10, 2020
fix(MongoBinaryDownload): extend 404 error
- extend 404 error to include basic "how to fix"
1 parent d00a96e commit 4a034f0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎packages/mongodb-memory-server-core/src/util/MongoBinaryDownload.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,12 @@ export default class MongoBinaryDownload {
326326
new Error(
327327
"Status Code is 403 (MongoDB's 404)\n" +
328328
"This means that the requested version-platform combination doesn't exist\n" +
329-
`Used Url: "https://${httpOptions.hostname}${httpOptions.path}"`
329+
` 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'
330335
)
331336
);
332337
return;

0 commit comments

Comments
 (0)
Please sign in to comment.