Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions developer/error-codes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@

**Solution:** Implement `CustomActionManager` if you need actions, or don't call action endpoints.

### Action %s not found
### Action not found

**Error message:** `Action %s not found`

**Cause:** Requested an action that doesn't exist.

Expand Down Expand Up @@ -195,7 +197,9 @@
}
```

### Validate failed: %w
### Validate failed

**Error message:** `Validate failed: %w`

**Cause:** Connector validation failed (wrapped error contains details).

Expand All @@ -209,7 +213,7 @@

**Solution:** Ensure all required parameters are provided.

### Input is not a connectorserver, connectorbuilder, or connectorbuilderv2

Check warning on line 216 in developer/error-codes.mdx

View check run for this annotation

Mintlify / Mintlify Validation (conductorone) - vale-spellcheck

developer/error-codes.mdx#L216

Did you really mean 'connectorserver'?

Check warning on line 216 in developer/error-codes.mdx

View check run for this annotation

Mintlify / Mintlify Validation (conductorone) - vale-spellcheck

developer/error-codes.mdx#L216

Did you really mean 'connectorbuilder'?

**Cause:** Passed wrong type to connector initialization.

Expand All @@ -233,7 +237,7 @@

**Solution:** Set the S3 bucket and key path in configuration.

### Accesskeyid and secretaccesskey must be specified

Check warning on line 240 in developer/error-codes.mdx

View check run for this annotation

Mintlify / Mintlify Validation (conductorone) - vale-spellcheck

developer/error-codes.mdx#L240

Did you really mean 'Accesskeyid'?

Check warning on line 240 in developer/error-codes.mdx

View check run for this annotation

Mintlify / Mintlify Validation (conductorone) - vale-spellcheck

developer/error-codes.mdx#L240

Did you really mean 'secretaccesskey'?

**Cause:** AWS credentials incomplete.

Expand All @@ -246,15 +250,19 @@

## Encryption errors

### Age: failed to encrypt: %w
### Age: failed to encrypt

**Error message:** `Age: failed to encrypt: %w`

**Cause:** Encryption failed (age library error).

**Solution:** Check the wrapped error for details. Common causes:
- Invalid recipient public key
- Memory allocation failure

### Age: failed to decrypt: %w
### Age: failed to decrypt

**Error message:** `Age: failed to decrypt: %w`

**Cause:** Decryption failed.

Expand Down
2 changes: 1 addition & 1 deletion rap/cel-expressions/env-user-attribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ c1.user.v1.HasEntitlement(subject, "app-id", "admin-role")
| Profile field missing | Empty string | Use `has()` check |
| Array index out of bounds | Runtime error | Check `size()` first |
| String split with no delimiter | Single-element array | Handle single-element case |
| Wrong return type | Conversion error | Ensure string or list<string> |
| Wrong return type | Conversion error | Ensure string or `list<string>` |

## Best Practice

Expand Down