From 2feb1e2f733556e18278097843f940ad085bbe81 Mon Sep 17 00:00:00 2001 From: Kyle Nusbaum Date: Tue, 28 Apr 2020 11:54:10 -0500 Subject: [PATCH] profiler: fix the defaultAPIURL (#645) --- internal/version/version.go | 2 +- profiler/options.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/version/version.go b/internal/version/version.go index e365564475..1b62fdea72 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -8,4 +8,4 @@ package version // Tag specifies the current release tag. It needs to be manually // updated. A test checks that the value of Tag never points to a // git tag that is older than HEAD. -const Tag = "v1.23.0" +const Tag = "v1.23.2" diff --git a/profiler/options.go b/profiler/options.go index c1e0c1f2a6..673d1a54b0 100644 --- a/profiler/options.go +++ b/profiler/options.go @@ -31,7 +31,7 @@ const ( ) const ( - defaultAPIURL = "https://beta-intake.profile.datadoghq.com/v1/input" + defaultAPIURL = "https://intake.profile.datadoghq.com/v1/input" defaultEnv = "none" )