[docker-database] Fix Python3 issue#7700
Merged
qiluo-msft merged 2 commits intosonic-net:masterfrom May 31, 2021
Merged
Conversation
Contributor
Author
|
@qiluo-msft I have missed one more fix in the previous PR #7658. Check it, please. |
0f574e7 to
2fa5f96
Compare
qiluo-msft
reviewed
May 26, 2021
| @@ -6,7 +6,7 @@ import time | |||
|
|
|||
| while(True): | |||
| output = subprocess.Popen(['sonic-db-cli', 'PING'], stdout=subprocess.PIPE).communicate()[0] | |||
Collaborator
Contributor
Author
There was a problem hiding this comment.
Done. Description updated
51589ee to
b2be269
Compare
akokhan
approved these changes
May 31, 2021
qiluo-msft
approved these changes
May 31, 2021
qiluo-msft
pushed a commit
that referenced
this pull request
Jun 2, 2021
#### Why I did it
To avoid the following error
```
Traceback (most recent call last):
File "/usr/local/bin/flush_unused_database", line 10, in <module>
if 'PONG' in output:
TypeError: a bytes-like object is required, not 'str'
```
`communicate` method returns the strings if streams were opened in text mode; otherwise, bytes.
In our case text arg in Popen is not true and that means that `communicate` return the bytes
#### How I did it
Set `text=True` to get strings instead of bytes
#### How to verify it
run `/usr/local/bin/flush_unused_database` inside database container
carl-nokia
pushed a commit
to carl-nokia/sonic-buildimage
that referenced
this pull request
Aug 7, 2021
#### Why I did it
To avoid the following error
```
Traceback (most recent call last):
File "/usr/local/bin/flush_unused_database", line 10, in <module>
if 'PONG' in output:
TypeError: a bytes-like object is required, not 'str'
```
`communicate` method returns the strings if streams were opened in text mode; otherwise, bytes.
In our case text arg in Popen is not true and that means that `communicate` return the bytes
#### How I did it
Set `text=True` to get strings instead of bytes
#### How to verify it
run `/usr/local/bin/flush_unused_database` inside database container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why I did it
To avoid the following error
communicatemethod returns the strings if streams were opened in text mode; otherwise, bytes.In our case text arg in Popen is not true and that means that
communicatereturn the bytesHow I did it
Set
text=Trueto get strings instead of bytesHow to verify it
run
/usr/local/bin/flush_unused_databaseinside database containerWhich release branch to backport (provide reason below if selected)
Description for the changelog
A picture of a cute animal (not mandatory but encouraged)