OpenVIDU(non-pro) not limiting bandwidth max=500 min=150

Hello! I am testing the call application with the docker deployment method.
My .env file specifies MAX as 500 and MIN as 150 (half the default values)

Using a two person call and using iftop to measure bandwidth:
TX is 552Kb
RX is 615Kb

OPENVIDU_STREAMS_VIDEO_MAX_RECV_BANDWIDTH=500

# Minimum video bandwidth sent from clients to OpenVidu Server, in kbps.
# 0 means unconstrained
OPENVIDU_STREAMS_VIDEO_MIN_RECV_BANDWIDTH=150

# Maximum video bandwidth sent from OpenVidu Server to clients, in kbps.
# 0 means unconstrained
OPENVIDU_STREAMS_VIDEO_MAX_SEND_BANDWIDTH=500

# Minimum video bandwidth sent from OpenVidu Server to clients, in kbps.
# 0 means unconstrained
OPENVIDU_STREAMS_VIDEO_MIN_SEND_BANDWIDTH=150

# All sessions of OpenVidu will try to force this codec. If OPENVIDU_STREAMS_ALLOW_TRANSCODING=true
# when a codec can not be forced, transcoding will be allowed
# Default value is VP8
OPENVIDU_STREAMS_FORCED_VIDEO_CODEC=VP8

# Allow transcoding if codec specified in OPENVIDU_STREAMS_FORCED_VIDEO_CODEC can not be applied
# Default value is false
# OPENVIDU_STREAMS_ALLOW_TRANSCODING=false

These values are per stream, not global values. I you have 5 incoming streams and a good network, you will be probably receiving 5 * 500 = 2.5MB per second.