nickva commented on code in PR #5515:
URL: https://github.com/apache/couchdb/pull/5515#discussion_r2067872349


##########
src/fabric/src/fabric_util.erl:
##########
@@ -326,6 +326,8 @@ is_partitioned(DbName0) when is_binary(DbName0) ->
 is_partitioned(Db) ->
     couch_db:is_partitioned(Db).
 
+validate_all_docs_args(DbName, Args) when is_list(DbName) ->
+    validate_all_docs_args(list_to_binary(DbName), Args);

Review Comment:
   Add a quick test for fabric all docs. The `DbName` as a list is more of a 
remsh script kind of a affordance. But since we supported it before, I thought 
it's good to keep the compatibility. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to