aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src/register.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2026-02-04 13:26:06 -0800
committerGitHub <noreply@github.com>2026-02-04 13:26:06 -0800
commit57b542e8ed4335e5f66b5e008d9a8e90776ebffb (patch)
treeaf8512d588023c09301e0505ad81653a21fad70f /crates/atuin-client/src/register.rs
parentfeat: Add a parameter to the sync to specify the download/upload page (#2408) (diff)
downloadatuin-57b542e8ed4335e5f66b5e008d9a8e90776ebffb.zip
feat: replace several files with a sqlite db (#3128)
These files have been known to have corruption issues. SQLite will perform better across filesystems for reads/writes across threads, and will lock as expected. I've also put the session file in there, though I'm 50/50 on it - I'll be replacing it with keyring storage asap anyway. The key file is _not_ included. It should ~never be changed, and should be easy for the user to secure + manage themselves In the future, instead of creating more files, we can just use this as a kv store Resolves https://github.com/atuinsh/atuin/issues/2336, resolves https://github.com/atuinsh/atuin/issues/1650 ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing
Diffstat (limited to 'crates/atuin-client/src/register.rs')
-rw-r--r--crates/atuin-client/src/register.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/atuin-client/src/register.rs b/crates/atuin-client/src/register.rs
index dae01efd..b0c80dc4 100644
--- a/crates/atuin-client/src/register.rs
+++ b/crates/atuin-client/src/register.rs
@@ -1,6 +1,4 @@
use eyre::Result;
-use tokio::fs::File;
-use tokio::io::AsyncWriteExt;
use crate::{api_client, settings::Settings};
@@ -13,9 +11,8 @@ pub async fn register(
let session =
api_client::register(settings.sync_address.as_str(), &username, &email, &password).await?;
- let path = settings.session_path.as_str();
- let mut file = File::create(path).await?;
- file.write_all(session.session.as_bytes()).await?;
+ let meta = Settings::meta_store().await?;
+ meta.save_session(&session.session).await?;
let _key = crate::encryption::load_key(settings)?;