fix(#975): use hyperhive.local email domain to pass Forgejo validation
`@hyperhive` (no dot) is rejected by Forgejo's PATCH /admin/users API with 422 Unprocessable Entity. Switch to `@hyperhive.local` across all four files that construct hive-c0re/agent git emails and Forgejo account emails, so both stay in sync and pass RFC-valid domain validation.
This commit is contained in:
parent
b83edc40c6
commit
286a7c8fd3
4 changed files with 7 additions and 7 deletions
|
|
@ -38,7 +38,7 @@ pub fn container_claude_mount(name: &str) -> String {
|
|||
pub const CONTAINER_SHARED_MOUNT: &str = "/shared";
|
||||
|
||||
const GIT_NAME: &str = "c0re";
|
||||
const GIT_EMAIL: &str = "c0re@hyperhive";
|
||||
const GIT_EMAIL: &str = "c0re@hyperhive.local";
|
||||
|
||||
/// Sub-agent web UI port range. Deterministic from the agent's name (FNV-1a
|
||||
/// hash mod range size), so the dashboard can compute the same port without
|
||||
|
|
|
|||
Loading…
Reference in a new issue