Skip to content

Commit

Permalink
update circuit breaker names format
Browse files Browse the repository at this point in the history
  • Loading branch information
bishnuag committed Nov 15, 2022
1 parent d837a1d commit b3437da
Show file tree
Hide file tree
Showing 48 changed files with 7,274 additions and 7,290 deletions.
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

0 comments on commit b3437da

Please sign in to comment.