Skip to content

Commit

Permalink
changing references to refer to mschoch
Browse files Browse the repository at this point in the history
  • Loading branch information
mschoch authored and mattbaird committed Oct 31, 2012
1 parent 6e15fb1 commit 216ec46
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ package main

import (
"encoding/json"
"github.com/mattbaird/elastigo/cluster"
"github.com/mattbaird/elastigo/core"
"github.com/mattbaird/elastigo/indices"
"github.com/mschoch/elastigo/cluster"
"github.com/mschoch/elastigo/core"
"github.com/mschoch/elastigo/indices"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion cluster/clusterReroute.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The cluster health API allows to get a very simple status on the health of the cluster.
Expand Down
2 changes: 1 addition & 1 deletion cluster/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cluster
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion cluster/state.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cluster

import (
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// http://www.elasticsearch.org/guide/reference/api/admin-cluster-update-settings.html
Expand Down
2 changes: 1 addition & 1 deletion core/count.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

type CountResponse struct {
Expand Down
2 changes: 1 addition & 1 deletion core/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The delete API allows to delete a typed JSON document from a specific index based on its id.
Expand Down
2 changes: 1 addition & 1 deletion core/deleteByQuery.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion core/explain.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The explain api computes a score explanation for a query and a specific document.
Expand Down
2 changes: 1 addition & 1 deletion core/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The get API allows to get a typed JSON document from the index based on its id.
Expand Down
2 changes: 1 addition & 1 deletion core/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The index API adds or updates a typed JSON document in a specific index, making it searchable.
Expand Down
2 changes: 1 addition & 1 deletion core/mget.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// Multi GET API allows to get multiple documents based on an index, type (optional) and id (and possibly routing).
Expand Down
2 changes: 1 addition & 1 deletion core/moreLikeThis.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The more like this (mlt) API allows to get documents that are “like” a specified document.
Expand Down
2 changes: 1 addition & 1 deletion core/percolate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The percolator allows to register queries against an index, and then send percolate requests which include a doc, and
Expand Down
2 changes: 1 addition & 1 deletion core/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// Performs a very basic search on an index via the request URI API.
Expand Down
2 changes: 1 addition & 1 deletion core/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The update API allows to update a document based on a script provided. The operation gets the document
Expand Down
2 changes: 1 addition & 1 deletion core/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The validate API allows a user to validate a potentially expensive query without executing it.
Expand Down
2 changes: 1 addition & 1 deletion indices/flush.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package indices
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
)

// The flush API allows to flush one or more indices through an API. The flush process of an index basically
Expand Down
2 changes: 1 addition & 1 deletion indices/refresh.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package indices
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion indices/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package indices
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mschoch/elastigo/api"
"strings"
)

Expand Down

0 comments on commit 216ec46

Please sign in to comment.