Affected: The Contexts list
Symptoms
When trying to add, edit, or archive a context kind in the LaunchDarkly UI, the following error appears:
Failed to update a context kind. Try again later
Cause
This error typically indicates a permissions issue. The member’s account may not have the correct role-based access to manage context kinds in LaunchDarkly.
Solution
To resolve this issue, confirm that the member's role includes one of the following:
The base Admin role
A custom role that allows the
createContextKindand/orupdateContextKindactions
Here is an example policy statement that grants access to create, edit, and archive context kinds:
{
"effect": "allow",
"actions": ["*"],
"resources": ["proj/*:context-kind/*"]
}