puma --workers 1
[98939] Puma starting in single mode...
[98939] Puma starting in cluster mode...
Ruby version: 2.4.1p111
Is this intended behaviour?
Is there a difference between single mode and cluster moder with workers = 1?
Yes. Single mode is --worker 0.
In single mode, there is only one process. In cluster mode, you'll see a worker and master process.
Most helpful comment
Yes. Single mode is
--worker 0.In single mode, there is only one process. In cluster mode, you'll see a worker and master process.