Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
1 change: 1 addition & 0 deletions .config/dictionaries/project.dic
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ reentrancy
removedir
renameat
reqwest
reusage
rfind
Rmax
Rmin
Expand Down
143 changes: 126 additions & 17 deletions hermes/Cargo.lock

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

3 changes: 2 additions & 1 deletion hermes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ members = [
"bin/tests/integration/components/failed_init",
"bin/tests/integration/components/sleep_component",
"bin/tests/integration/components/cron_callback",
"bin/tests/integration/components/staked_ada_indexer_mock"
"bin/tests/integration/components/staked_ada_indexer_mock",
"bin/tests/integration/components/ipfs_subscribe",
]
default-members = [
"bin",
Expand Down
2 changes: 1 addition & 1 deletion hermes/bin/src/ipfs/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ pub(crate) fn hermes_ipfs_subscribe(
} else {
let handle = ipfs.pubsub_subscribe(&topic)?;
ipfs.apps.added_topic_stream(topic.clone(), handle);
tracing::debug!(app_name = %app_name, pubsub_topic = %topic, "added subscription topic stream");
tracing::info!(app_name = %app_name, pubsub_topic = %topic, "added subscription topic stream");
}
ipfs.apps
.added_app_topic_subscription(app_name.clone(), topic);
Expand Down
Loading