Skip to content

Commit 9d01c30

Browse files
authored
Merge pull request #169 from caibirdme/fix-cache-key-split
fix: spliter
2 parents 60fe26b + 24a99e4 commit 9d01c30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/logquery/labels.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn series_cache_key() -> String {
7777
}
7878

7979
fn series_cache_key_with_matches(matches: &str) -> String {
80-
format!("{}-{}", series_cache_key(), matches)
80+
series_cache_key() + KEY_SPLITER + matches
8181
}
8282

8383
pub async fn query_label_values(

0 commit comments

Comments
 (0)