Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hpos-service-crates: latest #37

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ holochain_websocket = "0.4.0-dev.11"
holofuel_types = "0.5.11"
mr_bundle = "0.4.0-dev.4"

hpos_hc_connect = { git = "https://github.com/holo-host/hpos-service-crates.git", rev = "83b5bba4839f141a02ce5123ee7c915763f145e7" }
holochain_env_setup = { git = "https://github.com/holo-host/hpos-service-crates.git", rev = "83b5bba4839f141a02ce5123ee7c915763f145e7" }
hpos_hc_connect = { git = "https://github.com/holo-host/hpos-service-crates.git", rev = "81485983b949884e7a574cae519818b628f57865" }
holochain_env_setup = { git = "https://github.com/holo-host/hpos-service-crates.git", rev = "81485983b949884e7a574cae519818b628f57865" }
hpos-config-core = { git = "https://github.com/holo-host/hpos-config.git", rev = "a36f862869cc162c843ac27ed617910d68f480cc" }
hpos-config-seed-bundle-explorer = { git = "https://github.com/holo-host/hpos-config.git", rev = "a36f862869cc162c843ac27ed617910d68f480cc" }

Expand Down
4 changes: 2 additions & 2 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use hpos_api_rust::common::types::{
use hpos_api_rust::handlers::install;
use hpos_api_rust::handlers::install::helpers::handle_install_sl_clone;
use hpos_hc_connect::app_connection::CoreAppRoleName;
use hpos_hc_connect::hha_agent::HHAAgent;
use hpos_hc_connect::hha_agent::CoreAppAgent;
use hpos_hc_connect::sl_utils::{
sl_clone_name, sl_get_current_time_bucket, SlCloneSpec, SL_BUCKET_SIZE_DAYS,
};
Expand Down Expand Up @@ -46,7 +46,7 @@ async fn install_components() {
let _ = test.install_app(Happ::HHA, None).await;

// Connect to hha
let mut hha = HHAAgent::spawn(None).await.unwrap();
let mut hha = CoreAppAgent::spawn(None).await.unwrap();

let hha_app_id = hha.app.id();

Expand Down
4 changes: 2 additions & 2 deletions tests/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use hpos_api_rust::handlers::install::helpers::{build_sl_props, FixedDataForSlCl
use hpos_config_core::*;
use hpos_config_seed_bundle_explorer::unlock;
use hpos_hc_connect::app_connection::CoreAppRoleName;
use hpos_hc_connect::hha_agent::HHAAgent;
use hpos_hc_connect::hha_agent::CoreAppAgent;
use hpos_hc_connect::AdminWebsocket;
use hpos_hc_connect::AppConnection;
use log::{debug, info, trace};
Expand Down Expand Up @@ -270,7 +270,7 @@ async fn from_config(config_path: PathBuf, password: String) -> Result<(String,
}

pub async fn publish_and_enable_hosted_happ(
hha: &mut HHAAgent,
hha: &mut CoreAppAgent,
payload: HappInput,
) -> Result<ActionHashB64> {
// howto: https://github.com/Holo-Host/holo-hosting-app-rsm/blob/develop/tests/unit-test/provider-init.ts#L52
Expand Down
Loading