We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7dd2e1 commit 2d747ebCopy full SHA for 2d747eb
src/v/wasm/cache.cc
@@ -346,10 +346,8 @@ ss::future<int64_t> caching_runtime::do_gc() {
346
ss::when_all_succeed(gc_factories(), gc_engines()));
347
_gc_timer.rearm(ss::lowres_clock::now() + _gc_interval);
348
if (fut.failed()) {
349
- vlog(
350
- wasm_log.warn,
351
- "wasm caching runtime gc failed: {}",
352
- fut.get_exception());
+ auto ex = fut.get_exception();
+ vlog(wasm_log.warn, "wasm caching runtime gc failed: {}", ex);
353
co_return -1;
354
}
355
co_return std::apply(std::plus<>(), fut.get());
0 commit comments