1 parent 831d481 commit 6f418d9Copy full SHA for 6f418d9
1 file changed
lambda-runtime/src/runtime.rs
@@ -256,6 +256,13 @@ where
256
) -> Result<(), BoxError> {
257
let limit = concurrency_limit as usize;
258
259
+ debug!(
260
+ event = "runtime_worker_pool_initializing",
261
+ worker_count = limit,
262
+ execution_environment_max_concurrency = limit,
263
+ "runtime worker pool initializing",
264
+ );
265
+
266
// Use FuturesUnordered so we can observe worker exits as they happen,
267
// rather than waiting for all workers to finish (join_all).
268
let mut workers: FuturesUnordered<tokio::task::JoinHandle<(tokio::task::Id, Result<(), BoxError>)>> =
0 commit comments