We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bce0001 + e5a78c6 commit 98b7e2eCopy full SHA for 98b7e2e
crates/redis/src/lib.rs
@@ -85,10 +85,12 @@ impl TriggerExecutor for RedisTrigger {
85
.with_context(|| anyhow!("Redis trigger failed to connect to {}", address))?
86
.into_pubsub();
87
88
+ println!("Active Channels on {address}:");
89
// Subscribe to channels
90
for (channel, component) in self.channel_components.iter() {
91
tracing::info!("Subscribing component {component:?} to channel {channel:?}");
92
pubsub.subscribe(channel).await?;
93
+ println!("\t{channel}: [{}]", component.join(","));
94
}
95
96
let mut stream = pubsub.on_message();
0 commit comments