You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm upgrading from embed.mongo 3.4.11 to 4.x. The new version downloads a different artifact and fails.
Steps to reproduce:
In de.flapdoodle.embed.mongo.canary/blob/main/embed-spring-boot-27/src/main/resources/application.properties change the MongoDB version from 4.4.0 to 3.4.15 or 3.6.22.
Run mvn verify.
For MongoDB 3.4.15, the old embed.mongo downloaded mongodb-win32-x86_64-3.4.15.zip while the new one downloads win32mongodb-win32-x86-64-2008plus-ssl-3-4-15-zip but the real problem is that it doesn't unpack the full archive: it unpacks mongod.exe only and, if I try to run it, it complains that ssleay32.dll is not available (but it is present in the zip archive).
If I execute the same steps on a CentOS 7 server, embed.mongo downloads the same archive as before and the test works.
The text was updated successfully, but these errors were encountered:
I'm upgrading from embed.mongo 3.4.11 to 4.x. The new version downloads a different artifact and fails.
Steps to reproduce:
de.flapdoodle.embed.mongo.canary/blob/main/embed-spring-boot-27/src/main/resources/application.properties
change the MongoDB version from 4.4.0 to 3.4.15 or 3.6.22.mvn verify
.For MongoDB 3.4.15, the old embed.mongo downloaded
mongodb-win32-x86_64-3.4.15.zip
while the new one downloadswin32mongodb-win32-x86-64-2008plus-ssl-3-4-15-zip
but the real problem is that it doesn't unpack the full archive: it unpacksmongod.exe
only and, if I try to run it, it complains thatssleay32.dll
is not available (but it is present in the zip archive).If I execute the same steps on a CentOS 7 server, embed.mongo downloads the same archive as before and the test works.
The text was updated successfully, but these errors were encountered: