From: kwolekr Date: Tue, 17 Mar 2015 01:17:27 +0000 (-0400) Subject: Revert "Server::step throw is never catched. Replace it with an errorstream + assert" X-Git-Tag: 0.4.13~475 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=699d42efc64cb1e317efbdf21dd55fdbef4c108c;p=oweals%2Fminetest.git Revert "Server::step throw is never catched. Replace it with an errorstream + assert" This reverts commit 5f8e48c63baf12930430d5d8fc07495021599e61. --- diff --git a/src/server.cpp b/src/server.cpp index 4e955e40a..35405851f 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -479,13 +479,10 @@ void Server::step(float dtime) JMutexAutoLock lock(m_step_dtime_mutex); m_step_dtime += dtime; } - // Assert if fatal error occurred in thread + // Throw if fatal error occurred in thread std::string async_err = m_async_fatal_error.get(); - if(async_err != "") { - errorstream << "UNRECOVERABLE error occurred. Stopping server. " - << "Please fix the following error:" << std::endl - << async_err << std::endl; - assert(false); + if(async_err != ""){ + throw ServerError(async_err); } }