mirror of
https://github.com/ceph/ceph
synced 2025-01-04 02:02:36 +00:00
Merge pull request #10162 from gaurav36/bug-16444-radosgw-error-message
rgw: better error message when user has no bucket created yet Reviewed-by: Orit Wasserman <owasserm@redhat.com>
This commit is contained in:
commit
7e87eaf570
@ -4852,7 +4852,11 @@ next:
|
||||
string user_str = user_id.to_str();
|
||||
int ret = store->cls_user_get_header(user_str, &header);
|
||||
if (ret < 0) {
|
||||
cerr << "ERROR: can't read user header: " << cpp_strerror(-ret) << std::endl;
|
||||
if (ret == -ENOENT) { /* in case of ENOENT */
|
||||
cerr << "User has not been initialized or user does not exist" << std::endl;
|
||||
} else {
|
||||
cerr << "ERROR: can't read user: " << cpp_strerror(ret) << std::endl;
|
||||
}
|
||||
return -ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user