Rename shared macOS keychain access group

This commit is contained in:
Greg Harper
2026-03-16 17:10:05 -07:00
parent de57f51afb
commit fe12ea7350
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
<dict>
<key>keychain-access-groups</key>
<array>
<string>2DC432GLL2.com.openai.shared</string>
<string>2DC432GLL2.com.openai.codex.shared</string>
</array>
</dict>
</plist>

View File

@@ -42,7 +42,7 @@ impl fmt::Display for MacOsAccessGroupError {
impl std::error::Error for MacOsAccessGroupError {}
const SHARED_ACCESS_GROUP: &str = "2DC432GLL2.com.openai.shared";
const SHARED_ACCESS_GROUP: &str = "2DC432GLL2.com.openai.codex.shared";
const CODEX_KEYCHAIN_SERVICES: [&str; 3] = ["Codex Auth", "Codex MCP Credentials", "codex"];
pub(crate) fn load_password(
@@ -266,6 +266,6 @@ mod tests {
#[test]
fn shared_access_group_matches_configured_team_prefix() {
assert_eq!(SHARED_ACCESS_GROUP, "2DC432GLL2.com.openai.shared");
assert_eq!(SHARED_ACCESS_GROUP, "2DC432GLL2.com.openai.codex.shared");
}
}