We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9d6e1 commit 4f3fda2Copy full SHA for 4f3fda2
libsql-server/src/namespace/configurator/libsql_replica.rs
@@ -74,6 +74,7 @@ impl ConfigureNamespace for LibsqlReplicaConfigurator {
74
tracing::debug!("creating replica namespace");
75
let mut join_set = JoinSet::new();
76
let db_path = self.base.base_path.join("dbs").join(name.as_str());
77
+ tokio::fs::create_dir_all(&db_path).await?;
78
let channel = self.channel.clone();
79
let uri = self.uri.clone();
80
let rpc_client = ReplicationLogClient::with_origin(channel.clone(), uri.clone());
0 commit comments