Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemka374 committed Dec 9, 2024
1 parent 0eb7676 commit 8f48976
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl GenesisArgs {
let (server_db_url, server_db_name) = if let Some(db_full_url) = database.server_url {
let db_config = DatabaseConfig::from_url(db_full_url.expose_url())
.context("Invalid server database URL")?;
s(Some(db_config.url), Some(db_config.name))
(Some(db_config.url), Some(db_config.name))
} else {
(None, None)
};
Expand Down

0 comments on commit 8f48976

Please sign in to comment.