-
-
Notifications
You must be signed in to change notification settings - Fork 746
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 bytes -> str handling in linux.dig action #4993
Conversation
…to fix-dig-action
5ded004
to
df6ae6a
Compare
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.
Only thing i think you could improve upon is to add a test case where a byte string is actually returned from subprocess.
Co-authored-by: Eugen C. <[email protected]>
…to fix-dig-action
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.
Love it! This is something we've needed for a while
For the Same story for the I’m a little confused why the For the service action, it’s a
Set the For If you need help standing up a test environment to begin with, I would dig through the Travis config and rerun the same commands in a VM. |
The
linux.dig
action Python script didn't work on Python 3 due to bytes/string encoding issues. This PR fixes that.TODO: