func (p *PostgresSearch) GetEndpoints() []string { // TODO: deal with possible errors endpoints, err := indexer.Endpoints() return endpoints if err != nil { panic(err) } return endpoints }
// GetEndpoints gets a list from the indexer of all the endpoints available to // search, namely the defaults (node, role, client, environment) and any data // bags. func GetEndpoints() []string { endpoints := indexer.Endpoints() return endpoints }
// GetEndpoints gets a list from the indexer of all the endpoints available to // search, namely the defaults (node, role, client, environment) and any data // bags. func (t *TrieSearch) GetEndpoints() []string { // TODO: deal with possible errors endpoints, _ := indexer.Endpoints() return endpoints }