From 7e1216c85dc7f22b303d5b62da74f74bccc1bc33 Mon Sep 17 00:00:00 2001 From: Marc Sanmiquel Date: Wed, 27 Nov 2024 17:12:00 +0100 Subject: [PATCH] fix: allow slashes in application name --- internal/flameql/flameql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/flameql/flameql.go b/internal/flameql/flameql.go index 94eb15c1..1d0be00d 100644 --- a/internal/flameql/flameql.go +++ b/internal/flameql/flameql.go @@ -101,7 +101,7 @@ func IsTagKeyRuneAllowed(r rune) bool { } func IsAppNameRuneAllowed(r rune) bool { - return r == '-' || r == '.' || IsTagKeyRuneAllowed(r) + return r == '-' || r == '.' || r == '/' || IsTagKeyRuneAllowed(r) } func IsTagKeyReserved(k string) bool {