Description
In vbucket.c L 1173-1175 we format an infostr for error messages, however the order of the Index & Query port placeholders are reversed.
This leads to error messages being displayed incorrectly.
For example:
[lcb,newconfig L:172 I:1582393460] Detected server host_fqdn:0(Data=0, Index=8093, Query=9101) added
|
However 8093 is the Query HTTP port, and 9101 is the Index Scan port.
The correct message would be:
[lcb,newconfig L:172 I:1582393460] Detected server host_fqdn:0(Data=0, Index=9101, Query=8093) added
|