Skip to content

Commit 5388c0c

Browse files
committed
Fix formatting
1 parent b957990 commit 5388c0c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crud/common/utils.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -698,9 +698,10 @@ function utils.update_storage_call_error_description(err, func_name, replicaset_
698698
if err.type == 'ClientError' and type(err.message) == 'string' then
699699
if err.message == string.format("Procedure '%s' is not defined", func_name) then
700700
if func_name:startswith('_crud.') then
701-
err = NotInitializedError:new("crud isn't initialized on replicaset: %q", replicaset_uuid or "Unknown")
701+
err = NotInitializedError:new("crud isn't initialized on replicaset: %q",
702+
replicaset_uuid or "Unknown")
702703
else
703-
err = NotInitializedError:new("Function %q is not registered", func_name)
704+
err = NotInitializedError:new("Function %s is not registered", func_name)
704705
end
705706
end
706707
end

0 commit comments

Comments
 (0)