Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
Client refinement (#12)
Browse files Browse the repository at this point in the history
* enhance test for async api

* avoid dup file name corruption

* fmtted

* update version num

* update version num

* fix relative path

* update version num

* add log

* update version num

* fix an important typo

* update version num

* change local dir path

* update version num
  • Loading branch information
ScottLinnn authored May 2, 2024
1 parent 4efb3f5 commit 47ef36d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "istziio-client"
version = "0.1.12"
version = "0.2.0"
edition = "2018"
authors = ["Shuning Lin <86640627+ScottLinnn@users.noreply.github.com>", "J-HowHuang <howardhuang2001@gmail.com>"]
description = "Client application for ISTZIIO OLAP database I/O cache service"
Expand Down
3 changes: 1 addition & 2 deletions client/src/storage_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ impl StorageClientImpl {
}

pub fn local_cache_path() -> String {
let home = std::env::var("HOME").unwrap();
String::from(home + "/istziio_client_cache/")
String::from("./istziio_client_cache/")
}

/// Fetch all data of a table, call get_path() to get the file name that stores the table
Expand Down

0 comments on commit 47ef36d

Please sign in to comment.