You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, create, create_partitioned, create_non_partitioned and create_unlogged return Result<Boolean, Error>, and claim to return false if the queue already existed, but create, create_non_partitioned and create_unlogged return true independent from the queue existing or not.
The text was updated successfully, but these errors were encountered:
The extension-less client returns Result<(), Error>, which is simpler and probably as useful, since the inforrmation about the queue being new or not is not that relevant.
Currently,
create
,create_partitioned
,create_non_partitioned
andcreate_unlogged
returnResult<Boolean, Error>
, and claim to return false if the queue already existed, butcreate
,create_non_partitioned
andcreate_unlogged
return true independent from the queue existing or not.The text was updated successfully, but these errors were encountered: