Skip to content

Commit 3d7939f

Browse files
authored
Feature: switch to pusher v2 by default (#655)
We have been running with v2 for a long time now, and it seems like it's doing what it was designed to do. Switch the default to v2, while still keeping v1 around. We will retire v1 at some point in the future. Signed-off-by: Marcelo E. Magallon <[email protected]>
1 parent 9e9c6a1 commit 3d7939f

File tree

1 file changed

+1
-1
lines changed
  • cmd/synthetic-monitoring-agent

1 file changed

+1
-1
lines changed

cmd/synthetic-monitoring-agent/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func run(args []string, stdout io.Writer) error {
6161
httpListenAddr = flags.String("listen-address", "localhost:4050", "listen address")
6262
k6URI = flags.String("k6-uri", "k6", "how to run k6 (path or URL)")
6363
k6BlacklistedIP = flags.String("blocked-nets", "10.0.0.0/8", "IP networks to block in CIDR notation, disabled if empty")
64-
selectedPublisher = flags.String("publisher", pusherV1.Name, "publisher type (EXPERIMENTAL)")
64+
selectedPublisher = flags.String("publisher", pusherV2.Name, "publisher type")
6565
telemetryTimeSpan = flags.Int("telemetry-time-span", defTelemetryTimeSpan, "time span between telemetry push executions per tenant")
6666
)
6767

0 commit comments

Comments
 (0)