Revert "frontend: temporarily add a port 8090 for healthz in mTLS"
This reverts commit 9c8b4bcad2c9cc4405a2a15b430e9823ebfd0a3e.
This commit is contained in:
parent
b486251773
commit
e53b2956a2
1 changed files with 0 additions and 2 deletions
|
@ -20,7 +20,6 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
port = "8080"
|
port = "8080"
|
||||||
secondaryPort = "8090" // TODO(ahmetb) remove this, currently used by health checks in Istio mTLS case.
|
|
||||||
defaultCurrency = "USD"
|
defaultCurrency = "USD"
|
||||||
cookieMaxAge = 60 * 60 * 48
|
cookieMaxAge = 60 * 60 * 48
|
||||||
|
|
||||||
|
@ -108,7 +107,6 @@ func main() {
|
||||||
Propagation: &b3.HTTPFormat{}}
|
Propagation: &b3.HTTPFormat{}}
|
||||||
|
|
||||||
log.Infof("starting server on " + addr + ":" + srvPort)
|
log.Infof("starting server on " + addr + ":" + srvPort)
|
||||||
go log.Fatal(http.ListenAndServe(addr+":"+secondaryPort, handler))
|
|
||||||
log.Fatal(http.ListenAndServe(addr+":"+srvPort, handler))
|
log.Fatal(http.ListenAndServe(addr+":"+srvPort, handler))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue