Skip to content

Commit

Permalink
fix: connection key group format (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulkr authored Sep 10, 2024
1 parent 9146ef4 commit cf95031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrationos-api/src/logic/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ pub async fn create_connection(
"{}::{}::{}",
access.environment,
connection_config.platform,
payload.group.to_case(Case::Kebab)
payload.group.replace([':', ' '], "_")
);

let event_access = generate_event_access(
Expand Down

0 comments on commit cf95031

Please sign in to comment.