changelog
This commit is contained in:
parent
123b6f058f
commit
fd116c9682
@ -5,6 +5,7 @@
|
||||
- FIXED: `valid` type in documentation examples [#5990](https://github.com/Project-OSRM/osrm-backend/issues/5990)
|
||||
- Profile:
|
||||
- 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
|
||||
- Changes from 5.23.0
|
||||
|
||||
@ -48,8 +48,8 @@ template <typename Data> struct SharedMonitor
|
||||
}
|
||||
catch (const bi::interprocess_exception &exception)
|
||||
{
|
||||
auto message = boost::format("could not create directory or file '%1%' \n") %
|
||||
exception.what();
|
||||
auto message =
|
||||
boost::format("could not create directory or file '%1%' \n") % exception.what();
|
||||
throw util::exception(message.str() + SOURCE_REF);
|
||||
}
|
||||
|
||||
@ -135,8 +135,8 @@ template <typename Data> struct SharedMonitor
|
||||
}
|
||||
catch (const bi::interprocess_exception &exception)
|
||||
{
|
||||
auto message = boost::format("could not create directory or file '%1%' \n") %
|
||||
exception.what();
|
||||
auto message =
|
||||
boost::format("could not create directory or file '%1%' \n") % exception.what();
|
||||
throw util::exception(message.str() + SOURCE_REF);
|
||||
}
|
||||
return true;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user