We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd2f41f commit 76e0826Copy full SHA for 76e0826
internal/install/execution/platform_link_generator.go
@@ -165,16 +165,7 @@ func (g *PlatformLinkGenerator) generateLoggingLauncherParams(entityGUID string)
165
}
166
167
func (g *PlatformLinkGenerator) generateFleetLink(_ string) string {
168
- longURL := fmt.Sprintf("https://%s/fleet)",
169
- nrPlatformHostname(),
170
- )
171
-
172
- shortURL, err := g.generateShortNewRelicURL(longURL)
173
- if err != nil {
174
- return longURL
175
- }
176
177
- return shortURL
+ return fmt.Sprintf("https://%s/fleet)", nrPlatformHostname())
178
179
180
// The shortenURL function utilizes a New Relic service to convert
0 commit comments