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 c4ef512 commit 9229593Copy full SHA for 9229593
containerd-shim-spin/src/engine.rs
@@ -266,7 +266,11 @@ impl SpinEngine {
266
info!(" >>> notifying main thread we are about to start");
267
268
// exit as soon as any of the trigger completes/exits
269
- let (result, _, rest) = future::select_all(futures_list).await;
+ let (result, index, rest) = future::select_all(futures_list).await;
270
+ info!(
271
+ " >>> trigger type '{trigger_type}' exited",
272
+ trigger_type = trigger_types[index]
273
+ );
274
275
drop(rest);
276
0 commit comments