We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f87e19 commit 5584928Copy full SHA for 5584928
core/src/services/sqlite/backend.rs
@@ -137,11 +137,12 @@ impl Builder for SqliteBuilder {
137
}
138
};
139
140
- let config: SqliteConnectOptions = SqliteConnectOptions::from_str(&conn).map_err(|err| {
141
- Error::new(ErrorKind::ConfigInvalid, "connection_string is invalid")
142
- .with_context("service", Scheme::Sqlite)
143
- .set_source(err)
144
- })?;
+ let config: SqliteConnectOptions =
+ SqliteConnectOptions::from_str(&conn).map_err(|err| {
+ Error::new(ErrorKind::ConfigInvalid, "connection_string is invalid")
+ .with_context("service", Scheme::Sqlite)
+ .set_source(err)
145
+ })?;
146
147
let table = match self.config.table {
148
Some(v) => v,
0 commit comments