Skip to content
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

Add create_service to AsyncClient #1202

Closed
wants to merge 3 commits into from
Closed

Add create_service to AsyncClient #1202

wants to merge 3 commits into from

Conversation

jan-23
Copy link

@jan-23 jan-23 commented Mar 23, 2021

Fixes: #1168
create_service needs to be overridden to be supported for the AsyncClient.

Copy link

@lxop lxop left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A more elegant solution might be to add a class variable ServiceProxyClass, which on the Client class is set to ServiceProxy and on the AsyncClient class is set to AsyncServiceProxy. Then both of these methods (bind and create_service) can be updated to have return self.ServiceProxyClass(...) and the AsyncClient class can be reduced to simply

class AsyncClient(Client):
    ServiceProxyClass = AsyncServiceProxy

@jan-23 jan-23 closed this by deleting the head repository Dec 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

create_service for AsyncClient
3 participants