Skip to content

Bishnu/update circuit breaker names #844

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 1 addition & 2 deletions codegen/templates/http_client.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ func {{$exportName}}(deps *module.Dependencies) Client {
deps.Default.Config.MustGetStruct("clients.{{$clientID}}.methodTimeoutMapping", &clientMethodTimeoutMapping)
} else {
//override the client overall-timeout with the client's method level timeout
for _, serviceMethodName := range methodNames {
methodName := strings.Split(serviceMethodName, "::")[1]
for methodName := range methodNames {
clientMethodTimeoutMapping[methodName] = int64(timeoutVal)
}
}
Expand Down
3 changes: 1 addition & 2 deletions codegen/templates/tchannel_client.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,7 @@ func {{$exportName}}(deps *module.Dependencies) Client {
if deps.Default.Config.ContainsKey("clients.{{$clientID}}.methodTimeoutMapping") {
deps.Default.Config.MustGetStruct("clients.{{$clientID}}.methodTimeoutMapping", &clientMethodTimeoutMapping)
} else {
for serviceMethodName := range methodNames {
methodName := strings.Split(serviceMethodName, "::")[1]
for _, methodName := range methodNames {
clientMethodTimeoutMapping[methodName] = int64(timeoutVal)
}
}
Expand Down
4 changes: 1 addition & 3 deletions examples/example-gateway/build/clients/bar/bar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions examples/example-gateway/build/clients/baz/baz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions examples/example-gateway/build/clients/contacts/contacts.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions examples/example-gateway/build/clients/corge/corge.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions examples/example-gateway/build/clients/multi/multi.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading