chore: update len limit for workspace namespace
This commit is contained in:
parent
885c1a6393
commit
00238d11c4
|
|
@ -561,7 +561,7 @@ async fn check_workspace_namespace(new_namespace: &str) -> Result<(), AppError>
|
|||
));
|
||||
}
|
||||
|
||||
if new_namespace.len() > 32 {
|
||||
if new_namespace.len() > 64 {
|
||||
return Err(AppError::InvalidRequest(
|
||||
"Namespace must be at most 32 characters long".to_string(),
|
||||
));
|
||||
|
|
|
|||
Loading…
Reference in New Issue