···185185 // Now, the relay will discover a gap, and have to catch up somehow
186186 socialSim(t, users2, 1, 0)
187187188188- time.Sleep(time.Second)
189189-190188 // we expect the relay to learn about posts that it did not directly see from
191189 // repos its already partially scraped, as long as its seen *something* after the missing post
192190 // this is the 'catchup' process
191191+ _ = p2posts2
192192+ /* NOTE: BGS doesn't support indexing any more
193193+ time.Sleep(time.Second)
193194 ctx := context.Background()
194195 _, err := b1.bgs.Index.GetPost(ctx, p2posts2[4].Uri)
195196 if err != nil {
196197 t.Fatal(err)
197198 }
199199+ */
198200}
199201200202func TestRelayMultiGap(t *testing.T) {
···229231 p2posts := socialSim(t, users2, 10, 0)
230232231233 users[0].Reply(t, p2posts[0], p2posts[0], "what a wonderful life")
232232- time.Sleep(time.Second * 2)
233234235235+ /* NOTE: BGS doesn't support indexing any more
236236+ time.Sleep(time.Second * 2)
234237 ctx := context.Background()
235238 _, err := b1.bgs.Index.GetPost(ctx, p2posts[3].Uri)
236239 if err != nil {
237240 t.Fatal(err)
238241 }
242242+ */
239243240244 // now if we make posts on pds 2, the relay will not hear about those new posts
241245···249253250254 // Now, the relay will discover a gap, and have to catch up somehow
251255 socialSim(t, users2, 1, 0)
252252-253253- time.Sleep(time.Second * 2)
254256255257 // we expect the relay to learn about posts that it did not directly see from
256258 // repos its already partially scraped, as long as its seen *something* after the missing post
257259 // this is the 'catchup' process
260260+ _ = p2posts2
261261+ /* NOTE: BGS doesn't support indexing any more
262262+ time.Sleep(time.Second * 2)
258263 _, err = b1.bgs.Index.GetPost(ctx, p2posts2[4].Uri)
259264 if err != nil {
260265 t.Fatal(err)
261266 }
267267+ */
262268}
263269264270func TestHandleChange(t *testing.T) {