Skip to content

Commit 788c12d

Browse files
hasezoeynodkz
authored andcommittedSep 9, 2020
fix(MongoBinaryDownload): print used URL in 404 Error
- print the used URL in the Error as well, because issues mostly get reported without debug enabled
1 parent da44380 commit 788c12d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ export default class MongoBinaryDownload {
325325
reject(
326326
new Error(
327327
"Status Code is 403 (MongoDB's 404)\n" +
328-
"This means that the requested version-platform combination doesn't exist"
328+
"This means that the requested version-platform combination doesn't exist\n" +
329+
`Used Url: "https://${httpOptions.hostname}${httpOptions.path}"`
329330
)
330331
);
331332
return;

0 commit comments

Comments
 (0)
Please sign in to comment.