Skip to content

Commit

Permalink
feat: change transport value in template
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeWang1127 committed Feb 5, 2024
1 parent d7828c0 commit 0458c52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synthtool/gcp/templates/java_library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ To get help, follow the instructions in the [shared Troubleshooting document][tr

{% if metadata['repo']['transport'] == 'grpc' -%}
{{metadata['repo']['name_pretty']}} uses gRPC for the transport layer.
{% elif metadata['repo']['transport'] == 'http' -%}
{% elif metadata['repo']['transport'] == 'rest' -%}
{{metadata['repo']['name_pretty']}} uses HTTP/JSON for the transport layer.
{% elif metadata['repo']['transport'] == 'both' -%}
{% elif metadata['repo']['transport'] == 'grpc+rest' -%}
{{metadata['repo']['name_pretty']}} uses both gRPC and HTTP/JSON for the transport layer.
{% endif %}
{% endif -%}
Expand Down

0 comments on commit 0458c52

Please sign in to comment.