Skip to content

Commit

Permalink
fix: allow slashes in application name
Browse files Browse the repository at this point in the history
  • Loading branch information
marcsanmi committed Nov 27, 2024
1 parent ca4aa7c commit 7e1216c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/flameql/flameql.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 7e1216c

Please sign in to comment.