BelaPlatform / supercollider

an environment and programming language for real time audio synthesis and algorithmic composition
GNU General Public License v3.0
14 stars 8 forks source link

Occasionally getting "too many users" #30

Closed giuliomoro closed 7 years ago

giuliomoro commented 7 years ago

What does it mean? Could it be correlated with #18 ?

sensestage commented 7 years ago

correlated to https://github.com/supercollider/supercollider/issues/1914

giuliomoro commented 7 years ago

Note that when I get "too many users", scsynth will keep working. Unlike the issue you reference, I DO NOT get WARNING: Server localhost couldn't set client id to: 'too many users'

but just too many users and the program keeps running ok

jreus commented 7 years ago

I'm also getting this problem occasionally. Even when using the start-scsynth example: s.options.maxLogins = 64; // set max number of clients The problem happens after running s.startAliveThread; remotely, getting the warning:


WARNING: Client ID exceeds maxLogins. Some buses and buffers may overlap for remote server: belaServer
WARNING: Client ID exceeds maxLogins. Some buses and buffers may overlap for remote server: belaServer```

scsynth seems to continue working thereafter
sensestage commented 7 years ago

s.options.maxLogins should be set on both sides: both on the local and on the remote sclang.

I recommend using

s.options.maxLogins = 4;