-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Connector: Update encoding/decoding to use replace error handling
Recent Issue#10 shows that the connector does not handle decoding of some versioned data. Use replace errors rather than strict errors to allow the connector to work with this data Change-Id: I3e3e4ab58e9c160acad576a870af3dc3936f2ff0
- Loading branch information
1 parent
2c5dcee
commit a64442d
Showing
4 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
exclude = gen,build/*,*_pb2.py,*_pb2_grpc.py | ||
ignore = H301,F403,F401 | ||
ignore = H301,F403,F401,W503 | ||
per-file-ignores = | ||
# Excludes undefined variable for validators as ctx is defined at runtime | ||
actionpacks/*:F821 |
This file contains 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
This file contains 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
This file contains 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