wgtmac opened a new issue, #887:
URL: https://github.com/apache/iceberg-cpp/issues/887

   `LogLevel::kFatal` and the fatal logging macros unconditionally call
   `std::abort()`. `FatalHandler` runs before the abort, but it is 
process-global and
   cannot prevent termination.
   
   This is unsafe for embedded and multi-tenant applications, where one failed
   Iceberg operation must not terminate the host process.
   
   Logging should not control process lifetime. Recoverable failures should 
continue
   to use `Status`/`Result`, while termination for unrecoverable internal 
invariants
   should use a separate, explicit mechanism.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to