lancedb_impl #15

Merged
maximevanhees merged 10 commits from lancedb_impl into main 2025-10-20 11:18:06 +00:00
3 changed files with 3 additions and 2 deletions
Showing only changes of commit 45d8e306fb - Show all commits

1
.gitignore vendored
View File

@@ -3,6 +3,7 @@
debug/
target/
.vscode/
test_images/
# These are backup files generated by rustfmt
**/*.rs.bk

View File

@@ -71,7 +71,7 @@ pub fn hash_key(key: &str) -> String {
}
/// RPC trait for HeroDB management
#[rpc(server, client, namespace = "herodb")]
#[rpc(server, client, namespace = "hero")]
pub trait Rpc {
/// Create a new database with specified configuration
#[method(name = "createDatabase")]

View File

@@ -116,7 +116,7 @@ async fn setup_server() -> (ServerProcessGuard, u16) {
// Give the server time to build and start (cargo run may compile first)
// Increase significantly to accommodate first-time dependency compilation in CI.
std::thread::sleep(Duration::from_millis(60000));
std::thread::sleep(Duration::from_millis(5000));
(guard, port)
}