-
Notifications
You must be signed in to change notification settings - Fork 64
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
Refactoring Json serialization #209
Refactoring Json serialization #209
Conversation
Closing PR to kick in chatgpt review. |
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.
@Eneuman overall looks good, I would suggest adding more UT's for Json serialize and deserialize for logging purpose both indented and non indented to cover different use case ex: like issue. seems like Live tests passed so we don't have to wait for testing team we can merge to main and they would test them in main. :)
…ub.com/Eneuman/Bridge-To-Kubernetes into feature/refactoring-json-serialization
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.
looks good, testing passed.
This PR aims to make it easier to understand what serialization function should be used and where.
Serialization used for logging
If this serialization fails it should never crash the program.
Two methods handel this:
Serialization used for running the program
If this serialization fails it should be logged by the function calling the serialization.
Four methods handel this:
Other fixes