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 c48c163 commit 158990bCopy full SHA for 158990b
server/src/handlers/event.rs
@@ -33,7 +33,7 @@ use crate::utils::{self, merge};
33
34
const PREFIX_TAGS: &str = "x-p-tags-";
35
const PREFIX_META: &str = "x-p-meta-";
36
-const SEPARATOR: char = ',';
+const SEPARATOR: char = '^';
37
38
pub async fn query(_req: HttpRequest, json: web::Json<Value>) -> HttpResponse {
39
let json = json.into_inner();
server/src/utils.rs
@@ -90,7 +90,7 @@ pub mod header_parsing {
90
return Err(ParseHeaderError::MaxHeadersLimitExceeded);
91
}
92
93
- Ok(labels.join(","))
+ Ok(labels.join(&kv_separator.to_string()))
94
95
96
#[derive(Debug, thiserror::Error)]
0 commit comments