Skip to content

Commit 1c246b7

Browse files
NathanFlurryjog1tMasterPtato
authored
chore(util): increase max ident len (#2911)
* chore(pegboard): consolidate to single subscriber per gateway * chore(ups): add postgres auto-reconnect * chore(ups): handle edge cases with postgres listen/unlisten/notify when disconnected/reconnecting * ci: switch to depot * chore(runner): handle async actor stop * fix(epoxy): fix Any quorum type not reaching any node * fix(engine/fe): remove addresses * feat(pegboard): outbound runners * feat(ns): implement namespace updates, global cache purge * fix: configure runner config per runner name * chore: remove port name * fix(udb): revamp udb api * chore: cleanup, move ee changes * fix(api): fix query serialization for remote req * fix(epoxy): fix sending msgs to self * fix(api): fix creating actors in other dcs * chore(util): increase max ident len --------- Co-authored-by: Kacper Wojciechowski <[email protected]> Co-authored-by: MasterPtato <[email protected]>
1 parent 43dfd64 commit 1c246b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/common/util/core/src/check.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use lazy_static::lazy_static;
22
use regex::{Regex, RegexBuilder};
33

4-
pub const MAX_IDENT_LEN: usize = 16;
4+
pub const MAX_IDENT_LEN: usize = 64;
5+
// TODO: Do we still need long idents?
56
pub const MAX_IDENT_LONG_LEN: usize = 64;
67
pub const MAX_DISPLAY_NAME_LEN: usize = 24;
78
pub const MAX_DISPLAY_NAME_LONG_LEN: usize = 128;

0 commit comments

Comments
 (0)