repo: Add prefixes to errors for querying size/deleting
I hit these while causing errors in prune. Let's add the specific object we were looking for. Closes: #471 Approved by: jlebon
This commit is contained in:
parent
05ac14326c
commit
683e060099
|
|
@ -3136,7 +3136,7 @@ ostree_repo_delete_object (OstreeRepo *self,
|
||||||
while (G_UNLIKELY (res == -1 && errno == EINTR));
|
while (G_UNLIKELY (res == -1 && errno == EINTR));
|
||||||
if (G_UNLIKELY (res == -1))
|
if (G_UNLIKELY (res == -1))
|
||||||
{
|
{
|
||||||
glnx_set_error_from_errno (error);
|
glnx_set_prefix_error_from_errno (error, "Deleting object %s.%s", sha256, ostree_object_type_to_string (objtype));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3444,7 +3444,7 @@ ostree_repo_query_object_storage_size (OstreeRepo *self,
|
||||||
while (G_UNLIKELY (res == -1 && errno == EINTR));
|
while (G_UNLIKELY (res == -1 && errno == EINTR));
|
||||||
if (G_UNLIKELY (res == -1))
|
if (G_UNLIKELY (res == -1))
|
||||||
{
|
{
|
||||||
glnx_set_error_from_errno (error);
|
glnx_set_prefix_error_from_errno (error, "Querying object %s.%s", sha256, ostree_object_type_to_string (objtype));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue