We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c030a8 commit 90c57a5Copy full SHA for 90c57a5
coderd/telemetry/telemetry.go
@@ -233,8 +233,8 @@ func (r *remoteReporter) deployment() error {
233
234
// Tracks where Coder was installed from!
235
installSource := os.Getenv("CODER_TELEMETRY_INSTALL_SOURCE")
236
- if installSource != "" && installSource != "aws_marketplace" && installSource != "fly.io" {
237
- return xerrors.Errorf("invalid installce source: %s", installSource)
+ if len(installSource) > 64 {
+ return xerrors.Errorf("install source must be <=64 chars: %s", installSource)
238
}
239
240
data, err := json.Marshal(&Deployment{
0 commit comments