-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
fix: Flaky samba kerberos tests #52572
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
Signed-off-by: Marcel Müller <[email protected]>
Signed-off-by: Marcel Müller <[email protected]>
9df2c85 to
99d23a4
Compare
|
/backport to stable31 |
|
/backport to stable30 |
kesselb
left a comment
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.
Thank you 🙏
|
The backport to # Switch to the target branch and update it
git checkout stable30
git pull origin stable30
# Create the new backport branch
git checkout -b backport/52572/stable30
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts, resolve them
git cherry-pick 3cf7b8dd 99d23a43
# Push the cherry pick commit to the remote repository and open a pull request
git push origin backport/52572/stable30Error: Failed to push branch backport/52572/stable30: remote: Invalid username or password. Learn more about backports at https://docs.nextcloud.com/server/stable/go.php?to=developer-backports. |
|
/backport to stable30 |
The samba kerberos tests have become flaky "lately". After some debugging, it became clear, that samba in the dc container is not running when the tests are failing. The reason is that on start / restart of samba, the port 389 is still being used which terminates samba.
See https://github.com/nextcloud/server/actions/runs/14765943837/job/41457286732#step:6:124 for a debug run.
So there's no problem with the test itself, but with the test environment. The real fix seems to be icewind1991/samba-krb-test#8.
For now we can also ensure that samba is running to not fail the tests.