shm_open failures are now on HIGH level in stead of FAIL level.

This commit is contained in:
Thulinma 2016-05-25 16:40:08 +02:00
parent 4aa4335354
commit 1f319cc782

View file

@ -445,7 +445,7 @@ namespace IPC {
}
if (handle == -1) {
if (!master_ && autoBackoff) {
FAIL_MSG("shm_open for page %s failed: %s", name.c_str(), strerror(errno));
HIGH_MSG("shm_open for page %s failed: %s", name.c_str(), strerror(errno));
}
return;
}