Skip to content
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

Fix netlink descriptor error retry #136

Merged
merged 1 commit into from
Feb 3, 2025
Merged

Conversation

bdice
Copy link
Contributor

@bdice bdice commented Feb 1, 2025

We added a retry for Unexpected error [0-9]+ on netlink descriptor [0-9]+ but grep's default syntax doesn't support that +. This adds the -E flag to make that work.

$ echo "Unexpected error 9 on netlink descriptor 4." | grep -q "Unexpected error [0-9]+ on netlink descriptor [0-9]+" && echo "matches!"
$ echo "Unexpected error 9 on netlink descriptor 4." | grep -qE "Unexpected error [0-9]+ on netlink descriptor [0-9]+" && echo "matches!"
matches!

@bdice bdice requested a review from a team as a code owner February 1, 2025 16:15
@bdice bdice requested review from KyleFromNVIDIA and removed request for a team February 1, 2025 16:15
@bdice bdice force-pushed the fix-netlink-error branch from 556ed16 to aefc13e Compare February 1, 2025 16:16
@bdice bdice merged commit 9a685ba into rapidsai:main Feb 3, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants