Skip to content

Commit

Permalink
issue #1051: fixes shardingKey separator
Browse files Browse the repository at this point in the history
  • Loading branch information
mrk-vi committed Jul 31, 2024
1 parent 38a31ad commit b24c688
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

public record ShardingKey(String... elements) {

private static final char SEPARATOR = '_';
private static final char SEPARATOR = '#';

public ShardingKey {
assert elements.length >= 2 : "Must have at least 2 elements (tenantId, scheduleId)";
Expand Down

0 comments on commit b24c688

Please sign in to comment.