summaryrefslogtreecommitdiff
path: root/indra/llcommon/workqueue.h
diff options
context:
space:
mode:
authorAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-01-09 22:14:10 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-01-09 22:16:49 +0200
commit9de30971d327a1c9bda9f8e4f8e01f1b9d49f5fe (patch)
treec52fcafd621736ac775383f3ead8abcc3d95317c /indra/llcommon/workqueue.h
parentc3b07f8f01ae2733b0fb1309af95a513878170c1 (diff)
parent31e909870b316b7b4f36396357f70e44c724e608 (diff)
Merge release/2026.01 into develop
Diffstat (limited to 'indra/llcommon/workqueue.h')
-rw-r--r--indra/llcommon/workqueue.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/llcommon/workqueue.h b/indra/llcommon/workqueue.h
index 735ad38a26..573203a5b3 100644
--- a/indra/llcommon/workqueue.h
+++ b/indra/llcommon/workqueue.h
@@ -530,7 +530,11 @@ namespace LL
reply,
// Bind the current exception to transport back to the
// originating WorkQueue. Once there, rethrow it.
- [exc = std::current_exception()](){ std::rethrow_exception(exc); });
+ [exc = std::current_exception()]()
+ {
+ LL_INFOS("LLCoros") << "Rethrowing exception from WorkQueueBase::postTo" << LL_ENDL;
+ std::rethrow_exception(exc);
+ });
}
},
// if caller passed a TimePoint, pass it along to post()