Procházet zdrojové kódy

Call _refresh to ensure index is refreshed before getting the status

tags/v1.0.0
Paul Bonser před 9 roky
rodič
revize
7a434d562f
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      goes_test.go

+ 4
- 1
goes_test.go Zobrazit soubor

@@ -5,13 +5,14 @@
package goes

import (
. "gopkg.in/check.v1"
"net/http"
"net/url"
"os"
"strings"
"testing"
"time"

. "gopkg.in/check.v1"
)

var (
@@ -787,6 +788,8 @@ func (s *GoesTestSuite) TestIndexStatus(c *C) {

// gives ES some time to do its job
time.Sleep(1 * time.Second)
_, err = conn.RefreshIndex(indexName)
c.Assert(err, IsNil)

response, err := conn.IndexStatus([]string{"testindexstatus"})
c.Assert(err, IsNil)


Načítá se…
Zrušit
Uložit