On such platforms the select() interface limits the number of file
descriptors to FD_SETSIZE, which is usually 1024. Since D8605 the
default value for -maxconnections is 4096, which cannot be reached.
Therefore the software will output a warning to tell the user that the
max connections is being reduced due to system limitation. This used to
be a special case before D8605 and required manually setting
-maxconnections, but this is no longer the case. As a consequence this
warning causes the functional tests to fail, because they expect stderr
to be empty.
Since this is a normal behavior, this diff downgrades the warning to a
standard log line. The documentation is updated to inform the user that
this value might not be reachable if set manually.