Skip to content

Commit

Permalink
ci(mediator): ci fixes and other fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Naian <[email protected]>
  • Loading branch information
nain-F49FF806 committed Oct 19, 2023
1 parent ed87eba commit a02c1fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mediator.pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches:
- "**"
paths:
- 'mediator/**'
- 'agents/rust/mediator/**'

env:
DOCKER_BUILDKIT: 1
Expand Down
3 changes: 2 additions & 1 deletion agents/rust/mediator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = ["client_http_api"]
default = ["client"]
# default = ["client_http_api"]
client = []
client_http_api = ["client"]
client_tui = ["client", "cursive"]
Expand Down
2 changes: 1 addition & 1 deletion agents/rust/mediator/src/bin/mediator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async fn main() {
agent
.init_service(
vec![],
format!("http://{endpoint_root}/aries").parse().unwrap(),
format!("http://{endpoint_root}/didcomm").parse().unwrap(),
)
.await
.unwrap();
Expand Down

0 comments on commit a02c1fe

Please sign in to comment.