Strange behavior for TestGossiper_Download_Metafile_Seq

Strange behavior for TestGossiper_Download_Metafile_Seq

by Bastien Wermeille -
Number of replies: 1

Hello,

Regarding the test TestGossiper_Download_Metafile_Seq, there is the following lines:

    nA.gossiper.AddRoute(nC.id, nC.addr) // A --> C
    nC.gossiper.AddRoute(nA.id, nA.addr) // C --> A
    nC.gossiper.AddRoute(nD.id, nD.addr) // C --> D
    nD.gossiper.AddRoute(nC.id, nC.addr) // D --> C
    nD.gossiper.AddRoute(nB.id, nB.addr) // D --> B
    nB.gossiper.AddRoute(nD.id, nD.addr) // B --> D

But I think that there is a problem on the lines 3 and 4 which should be:

    nC.gossiper.AddRoute(nD.id, nC.addr) // C --> D
    nD.gossiper.AddRoute(nC.id, nD.addr) // D --> C
Best regards,

Bastien Wermeille