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

[refactor] Remove HTTP/1.1 (gRPC-fallback) support. #114

Merged
merged 2 commits into from
Mar 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,18 @@

{% block content %}
import collections
import typing

from .base import {{ service.name }}Transport
from .http import {{ service.name }}HttpTransport
from .grpc import {{ service.name }}GrpcTransport


# Compile a registry of transports.
_transport_registry = collections.OrderedDict()

# gRPC is not guaranteed to be available, because `grpcio` may or may not
# be installed. If it is available, however, it should be the "first in"
# (default).
try:
from .grpc import {{ service.name }}GrpcTransport
_transport_registry['grpc'] = {{ service.name }}GrpcTransport
except ImportError:
pass

# Always provide an HTTP/1.1 transport.
_transport_registry['http'] = {{ service.name }}HttpTransport
_transport_registry['grpc'] = {{ service.name }}GrpcTransport


__all__ = (
'{{ service.name }}Transport',
'{{ service.name }}GrpcTransport',
)
{% endblock %}

This file was deleted.