Disable ephemeral routing id for SN-to-SN connections

This was supposed to be off all along, but I think got switched to true
when the badly named oxenmq variable changed.
This commit is contained in:
Jason Rhinelander 2021-06-23 17:56:05 -03:00
parent fdd83f954f
commit 23c48ab385

View file

@ -437,7 +437,7 @@ OxenmqServer::OxenmqServer(
10 * 1024 * 1024; // 10 MB (needed by the fileserver, and swarm msg serialization)
// Be explicit about wanting per-SN unique connection IDs:
omq_.EPHEMERAL_ROUTING_ID = true;
omq_.EPHEMERAL_ROUTING_ID = false;
}
void OxenmqServer::connect_oxend(const oxenmq::address& oxend_rpc) {