-
Notifications
You must be signed in to change notification settings - Fork 2.2k
refactor: merge grpc and rest client #2565
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
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
3f61b1a
refactor: merge grpc and rest client
bwanglzu eae9f38
feat: refine client
bwanglzu 19a6d6e
feat: refine client parser
bwanglzu 365c115
feat: refine client parser
bwanglzu 9689dd5
feat: create client method
bwanglzu 24b8737
feat: finish add client method
bwanglzu 54301be
feat: add docstring for client
bwanglzu f9cc07b
feat: fix black and docstring
bwanglzu d32db32
feat: init client it
bwanglzu 5fbc09c
feat: unify parameter name
bwanglzu 0cf19f5
feat: unify parameter names
bwanglzu f6371ba
feat: fix unit tests
bwanglzu f796823
feat: fix io test
bwanglzu dbf2238
feat: fix distribute test
bwanglzu a31d81f
feat: add grpc client back to distributed test
bwanglzu e7e4630
feat: add grpc client back to distributed test
bwanglzu 5d0e386
feat: add grpc client back to distributed test
bwanglzu bec39b1
feat: add grpc client back to distributed test
bwanglzu 9bfb778
feat: update client assignment in base
8000
bwanglzu dfa4e51
feat: remove unused fixture
bwanglzu 6fd1461
feat: revert client initialise
bwanglzu 600557d
feat: revert client initialise
bwanglzu 713407c
feat: unify grpc client and grpc runtime
bwanglzu 8ae6a1f
feat: parse args using namespace
bwanglzu 6e58613
feat: parse args using namespace
bwanglzu e77f8ae
feat: add overload to Client
bwanglzu 8aba9f1
Merge remote-tracking branch 'origin' into refactor-client
bwanglzu e423d7c
feat: use overload to refactor client
bwanglzu 45c4a86
feat: remove unused imports
bwanglzu 5c4b1fe
feat: fix flake8
bwanglzu 49a4810
feat: fix inject script for method outside class
bwanglzu 68a77d0
feat: fix inject script for method outside class
bwanglzu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Oops, something went wrong.
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.
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.
wait, isn't the modification the same as
fill_overload(..., indent=' '*2)
?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.
can you revert it and simply pass
indent=' '*2
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.
yes you're right, working on it now
Uh oh!
There was an error while loading. Please reload this page.
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.
@hanxiao it's not only about
indent
, the script will also insert aself
inside the method etc..and we have different levels ofindent
such as no indent (before overload and method name), 4 indents for docstrings etc..this is what happened after i change
indent = ' ' * 2
: