-
Notifications
You must be signed in to change notification settings - Fork 1.8k
test(NODE-3713): skip/fix failing evergreen tests #3069
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
Changes from all commits
63f378c
51f8d1c
03f5eae
5c30d1c
b20cae8
b886e15
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ describe('Kerberos', function () { | |
client.connect(function (err) { | ||
expect(err).to.exist; | ||
expect(err.message).to.match( | ||
/(Error from KDC: LOOKING_UP_SERVER)|(not found in Kerberos database)/ | ||
/(Error from KDC: LOOKING_UP_SERVER)|(not found in Kerberos database)|(UNKNOWN_SERVER)/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is interesting - just curious how/when/why this manifested? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It started happening last week and only on MacOS. I'm trying to pin down the root cause at the moment but Kerberos knowledge is obviously not one of my strengths. |
||
); | ||
done(); | ||
}); | ||
|
@@ -85,7 +85,7 @@ describe('Kerberos', function () { | |
client.connect(function (err) { | ||
expect(err).to.exist; | ||
expect(err.message).to.match( | ||
/(Error from KDC: LOOKING_UP_SERVER)|(not found in Kerberos database)/ | ||
/(Error from KDC: LOOKING_UP_SERVER)|(not found in Kerberos database)|(UNKNOWN_SERVER)/ | ||
); | ||
done(); | ||
}); | ||
|
Uh oh!
There was an error while loading. Please reload this page.