I am trying to increase the amount of groups Python allows for its processes. I have applied Solaris' 144501 patch to the operating system for it to allow more users, and after running getconf NGROUPS_MAX
it returns 1024
.
Unfortunately, Python is still using the Solaris default os.NGROUPS_MAX
value of 16
.
I've tried compiling Python myself, and the value continues to be 16
. I even tried to hard code a 1024
in the source but it remains 16
after that as well.
Does anyone know how to get Python to recognize the new group limit?