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.
1 parent 68ffead commit 38ce219Copy full SHA for 38ce219
2 files changed
crates/wash-runtime/src/plugin/wasmcloud_messaging/in_memory.rs
@@ -132,9 +132,7 @@ impl<'a> Host for ActiveCtx<'a> {
132
133
if !queue_full {
134
notify.notify_one();
135
- }
136
-
137
- if queue_full {
+ } else {
138
let mut req_lock = pending_requests.write().await;
139
req_lock.remove(&reply_to);
140
return Ok(Err("message queue full".to_string()));
templates/http-api-with-distributed-workloads/wit/world.wit
@@ -1,5 +1,7 @@
1
package wasmcloud:template@0.1.0;
2
3
+// wasi:http/incoming-handler is exported via wstd's #[http_server] proc macro,
4
+// so it does not appear explicitly in this world definition.
5
world http-api {
6
import wasmcloud:messaging/consumer@0.2.0;
7
}
0 commit comments