We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On a fresh startup with no previously existing database, upon a GET, this match case gets matched and prints a warning even though nothing is wrong.
I think it should actually be
(Ok(Some(_)), Ok(None)) => {
Ok(Some(_)) instead of Ok(_)
Ok(Some(_))
Ok(_)
warning
create_db
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
On a fresh startup with no previously existing database, upon a GET, this match case gets matched and prints a warning even though nothing is wrong.
I think it should actually be
Ok(Some(_))
instead ofOk(_)
To reproduce
warning
or more verbose.create_db
key present in the configSystem info
The text was updated successfully, but these errors were encountered: