Hi there

Got a CA server running with minqlx. It can read players ELO ratings (eg "!elo nickname") but it seems that at the end of the game, it doesn't send anything back to qlstats.net

Server startup says:
[minqlx.late_init] INFO: Stats listener started on tcp://127.0.0.1:27960.
[minqlx.late_init] INFO: We're good to go!

My config has:
// Uncomment and set below to use (server.cfg will override commandline!)
// set zmq_rcon_enable "1"
// set zmq_rcon_ip ""
// set zmq_rcon_port "28960"
// set zmq_rcon_password ""

// Enable ZeroMQ stats socket. This will not be much use without a client listening.
// See zmq_stats_verbose.py for example connect and stats printing.
// If not specified, the stats socket will default to the same IP and port as the game server, but on TCP.

// Uncomment and set below to use (server.cfg will override commandline!)
set zmq_stats_enable "1"
// set zmq_stats_ip ""
// set zmq_stats_port ""
set zmq_stats_password "password"

and the server is launched without additional param that could overwrite this

Where should I look into?