changelog

This commit is contained in:
Tobias Sprodowski 2021-04-13 14:23:58 +02:00
parent 123b6f058f
commit fd116c9682
2 changed files with 5 additions and 4 deletions

View File

@ -5,6 +5,7 @@
- FIXED: `valid` type in documentation examples [#5990](https://github.com/Project-OSRM/osrm-backend/issues/5990) - FIXED: `valid` type in documentation examples [#5990](https://github.com/Project-OSRM/osrm-backend/issues/5990)
- Profile: - Profile:
- FIXED: Add kerb barrier exception to default car profile. [#5999](https://github.com/Project-OSRM/osrm-backend/pull/5999) - FIXED: Add kerb barrier exception to default car profile. [#5999](https://github.com/Project-OSRM/osrm-backend/pull/5999)
- ADDED: output messages for shared memory block creation of Boost - catch exceptions and give reasonable error messages
# 5.24.0 # 5.24.0
- Changes from 5.23.0 - Changes from 5.23.0

View File

@ -48,8 +48,8 @@ template <typename Data> struct SharedMonitor
} }
catch (const bi::interprocess_exception &exception) catch (const bi::interprocess_exception &exception)
{ {
auto message = boost::format("could not create directory or file '%1%' \n") % auto message =
exception.what(); boost::format("could not create directory or file '%1%' \n") % exception.what();
throw util::exception(message.str() + SOURCE_REF); throw util::exception(message.str() + SOURCE_REF);
} }
@ -135,8 +135,8 @@ template <typename Data> struct SharedMonitor
} }
catch (const bi::interprocess_exception &exception) catch (const bi::interprocess_exception &exception)
{ {
auto message = boost::format("could not create directory or file '%1%' \n") % auto message =
exception.what(); boost::format("could not create directory or file '%1%' \n") % exception.what();
throw util::exception(message.str() + SOURCE_REF); throw util::exception(message.str() + SOURCE_REF);
} }
return true; return true;