In our project we found that if you are calling the couchdb.create method with exists_ok set to True, then it could happen, that you still get the following error:
raise exception_type(message.format(**message_input)) from exception
aiocouch.exception.PreconditionFailedError: Database already exists
This should not happen, as we are already ok with the database existing.
I've will open a PR to address this and link it HERE
Please give feedback, if that solution follows the packages approach and works for you.
In our project we found that if you are calling the
couchdb.create
method withexists_ok
set toTrue
, then it could happen, that you still get the following error:This should not happen, as we are already ok with the database existing.
I've will open a PR to address this and link it HERE Please give feedback, if that solution follows the packages approach and works for you.