Skip to content

Commit

Permalink
holochain: v0.4.0-dev.18
Browse files Browse the repository at this point in the history
  • Loading branch information
zo-el committed Aug 15, 2024
1 parent 0c5e81e commit ca3bde7
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 61 deletions.
105 changes: 53 additions & 52 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holo-auto-installer"
version = "0.4.0"
version = "0.4.1"
authors = ["Joel U <[email protected]>"]
edition = "2021"

Expand All @@ -22,16 +22,17 @@ rmp-serde = "0.15"
url = "2.5.0"
observability = "0.1.3"
reqwest = { version = "0.12", features = ["json"]}
holofuel_types = "0.5.9"
getrandom = "0.2.7"
url2 = "0.0.6"

sodoken = "0.0.11"
holochain_types = {version = "0.4.0-dev.11", features = ["chc"]}
holochain_conductor_api = { version = "0.4.0-dev.11", features = ["chc"]}
holochain_keystore = { version = "0.4.0-dev.11" }
holochain_websocket = { version = "0.4.0-dev.2"}
mr_bundle = { version = "0.4.0-dev.4" }
holofuel_types = "0.5.12"
holochain_types = {version = "0.4.0-dev.18", features = ["chc"]}
holochain_conductor_api = { version = "0.4.0-dev.18", features = ["chc"]}
holochain_keystore = { version = "0.4.0-dev.16" }
holochain_websocket = { version = "0.4.0-dev.18"}
mr_bundle = { version = "0.4.0-dev.5" }
hpos-config-core = { git = "https://github.com/Holo-Host/hpos-config", rev = "a36f862869cc162c843ac27ed617910d68f480cc" }
hpos-config-seed-bundle-explorer ={ git = "https://github.com/Holo-Host/hpos-config", rev = "a36f862869cc162c843ac27ed617910d68f480cc" }
chrono = "0.4.33"
hpos_hc_connect = { git = "https://github.com/holo-host/hpos-service-crates.git", rev = "ae7e5dbe3880b0bb03d94c767c7e15a1b3cc989e" }
hpos_hc_connect = { git = "https://github.com/holo-host/hpos-service-crates.git", rev = "b86a56a87bdc53d9b42e1f690462d2c557375908" }
4 changes: 3 additions & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,9 @@ pub async fn handle_ineligible_happs(
admin_websocket.disable_app(&enabled_happ_id).await?;
} else {
info!("Uninstalling {} from Holochain Conductor", enabled_happ_id);
admin_websocket.uninstall_app(&enabled_happ_id).await?;
admin_websocket
.uninstall_app(&enabled_happ_id, false)
.await?;
}
}
}
Expand Down

0 comments on commit ca3bde7

Please sign in to comment.