-
Notifications
You must be signed in to change notification settings - Fork 71
fix(deps): bump MongoCluster to fix failing test VSCODE-670 #910
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The OIDC tests have been failing on Linux so we are bumping it to the latest version of the OIDC plugin to fix this.
fa0be8e
to
4ac72e9
Compare
6019e3b
to
e92815b
Compare
We can do these dependency bumps though doesn't seem like that's the solution, it might be a bug with https://github.com/mongodb-js/devtools-shared/blob/6aa99364c615ab3525af6a1a97b6b00fc551f032/packages/mongodb-runner/src/mongoserver.ts#L220 or our Ubuntu runner where something goes wrong with spawning mongo. |
ec7123d
to
d8cbaf2
Compare
@@ -121,7 +121,7 @@ suite('OIDC Tests', function () { | |||
|
|||
cluster = await MongoCluster.start({ | |||
...defaultClusterOptions, | |||
version: '7.0.x', | |||
version: '8.0.x', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was the actual fix - ubuntu-latest was bumped to 24.04, but 7.0.x only supports up to ubuntu 22, so we have to use a newer server.
The OIDC tests have been failing on Linux so we are bumping it to the latest version of the OIDC plugin to fix this.