Skip to content

Commit

Permalink
refactor: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gmemcc committed Jul 24, 2020
1 parent d9ab5a1 commit e6de886
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/tke-installer/app/installer/installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func (t *TKE) initSteps() {
Func: t.writeKubeconfig,
},
{
Name: "Execute post deploy hook",
Name: "Execute post cluster ready hook",
Func: t.postClusterReadyHook,
},
{
Expand Down Expand Up @@ -387,7 +387,7 @@ func (t *TKE) initSteps() {

t.steps = append(t.steps, []types.Handler{
{
Name: "Execute post deploy hook",
Name: "Execute post install hook",
Func: t.postInstallHook,
},
}...)
Expand Down
2 changes: 1 addition & 1 deletion pkg/gateway/proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func RegisterRoute(m *mux.PathRecorderMux, cfg *gatewayconfig.GatewayConfigurati
if err != nil {
return err
}
log.Info("Registered reverse proxy of front proxy mode for backend component", log.String("pathPrefix", pathPrefix.prefix), log.Bool("protected", pathPrefix.protected), log.String("address", proxyComponent.Address))
log.Info("Registered reverse proxy of passthrough mode for backend component", log.String("pathPrefix", pathPrefix.prefix), log.Bool("protected", pathPrefix.protected), log.String("address", proxyComponent.Address))
m.HandlePrefix(pathPrefix.prefix, handler)
}
}
Expand Down

0 comments on commit e6de886

Please sign in to comment.