Skip to content

Commit 6cfa4dd

Browse files
committed
Fixed incorrect function name.
1 parent d1e83df commit 6cfa4dd

File tree

1 file changed

+1
-1
lines changed
  • server/swimos_server_app/src/server/builder

1 file changed

+1
-1
lines changed

server/swimos_server_app/src/server/builder/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ where
218218
match store_config {
219219
#[cfg(feature = "rocks_store")]
220220
StoreConfig::RockStore { path, options } => {
221-
let store = swimos_rocks_store::create_rocks_store(path, options)?;
221+
let store = swimos_rocks_store::open_rocks_store(path, options)?;
222222
Ok(with_websockets(bind_to, routes, networking, config, store))
223223
}
224224
StoreConfig::InMemory => Ok(with_websockets(

0 commit comments

Comments
 (0)