Skip to content

Commit 452a20e

Browse files
committed
few more removals
1 parent cef7499 commit 452a20e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

cmd/gcp/main.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var (
5757
tlsCert = flag.String("tls_certificate", "", "Path to server TLS certificate.")
5858
tlsKey = flag.String("tls_key", "", "Path to server TLS private key.")
5959
metricsEndpoint = flag.String("metrics_endpoint", "", "Endpoint for serving metrics; if left empty, metrics will be visible on --http_endpoint.")
60-
tesseraDeadline = flag.Duration("tessera_deadline", time.Second*10, "Deadline for backend RPC requests.")
60+
tesseraDeadline = flag.Duration("tessera_deadline", time.Second*10, "Deadline for Tessera requests.")
6161
maskInternalErrors = flag.Bool("mask_internal_errors", false, "Don't return error strings with Internal Server Error HTTP responses.")
6262
tracing = flag.Bool("tracing", false, "If true opencensus Stackdriver tracing will be enabled. See https://opencensus.io/.")
6363
tracingProjectID = flag.String("tracing_project_id", "", "project ID to pass to stackdriver. Can be empty for GCP, consult docs for other platforms.")
@@ -108,8 +108,7 @@ func main() {
108108
corsHandler := cors.AllowAll().Handler(corsMux)
109109
http.Handle("/", corsHandler)
110110

111-
// Register handlers for all the configured logs using the correct RPC
112-
// client.
111+
// Register handlers for all the configured logs.
113112
opts := sctfe.InstanceOptions{
114113
Validated: vCfg,
115114
Deadline: *tesseraDeadline,

0 commit comments

Comments
 (0)