aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/command/client/daemon.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/turtle/src/command/client/daemon.rs')
-rw-r--r--crates/turtle/src/command/client/daemon.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/turtle/src/command/client/daemon.rs b/crates/turtle/src/command/client/daemon.rs
index 2fb090aa..cb5dd118 100644
--- a/crates/turtle/src/command/client/daemon.rs
+++ b/crates/turtle/src/command/client/daemon.rs
@@ -7,7 +7,7 @@ use std::process::{Command, Stdio};
use std::time::{Duration, Instant};
use crate::atuin_client::{
- database::Sqlite, history::History, record::sqlite_store::SqliteStore, settings::Settings,
+ database::ClientSqlite, history::History, record::sqlite_store::SqliteStore, settings::Settings,
};
use crate::atuin_daemon::DaemonEvent;
use crate::atuin_daemon::client::{
@@ -86,7 +86,7 @@ impl Cmd {
self,
settings: Settings,
store: SqliteStore,
- history_db: Sqlite,
+ history_db: ClientSqlite,
) -> Result<()> {
match self.subcmd {
None => {
@@ -634,7 +634,7 @@ pub(crate) fn daemonize_current_process() -> Result<()> {
async fn run(
settings: Settings,
store: SqliteStore,
- history_db: Sqlite,
+ history_db: ClientSqlite,
force: bool,
) -> Result<()> {
if force {