You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some instances the POSIX library will fail to load appropriately. One recent example is if an application using the POSIX library is run from a part of the filesystem that has the noexec flag. In this situation, and if no SLF4J implementation is available, no warnings or error will be shown in standard out or standard error.
In the case where POSIX can not be loaded at application initialization downstream callsites will encounter a NullPointerException when making POSIX calls. One such call site is found in queue - when the appender closes it calls msync.
The text was updated successfully, but these errors were encountered:
In some instances the POSIX library will fail to load appropriately. One recent example is if an application using the POSIX library is run from a part of the filesystem that has the
noexec
flag. In this situation, and if no SLF4J implementation is available, no warnings or error will be shown in standard out or standard error.In the case where POSIX can not be loaded at application initialization downstream callsites will encounter a
NullPointerException
when making POSIX calls. One such call site is found in queue - when the appender closes it callsmsync
.The text was updated successfully, but these errors were encountered: