Skip to content

Commit 9af5b24

Browse files
abrightwellJeff McCormick
authored andcommitted
fix case-sensitive dependency issue with update to vendor directory (CrunchyData#611)
1 parent ab9c8f8 commit 9af5b24

File tree

199 files changed

+164
-164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+164
-164
lines changed

Gopkg.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apiserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"os"
2424
"strconv"
2525

26-
log "github.com/Sirupsen/logrus"
26+
log "github.com/sirupsen/logrus"
2727
"github.com/crunchydata/postgres-operator/apiserver"
2828
"github.com/crunchydata/postgres-operator/apiserver/backrestservice"
2929
"github.com/crunchydata/postgres-operator/apiserver/backupservice"

apiserver/backrestservice/backrestimpl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"strings"
2222
"time"
2323

24-
log "github.com/Sirupsen/logrus"
24+
log "github.com/sirupsen/logrus"
2525
crv1 "github.com/crunchydata/postgres-operator/apis/cr/v1"
2626
"github.com/crunchydata/postgres-operator/apiserver"
2727
msgs "github.com/crunchydata/postgres-operator/apiservermsgs"

apiserver/backrestservice/backrestservice.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717

1818
import (
1919
"encoding/json"
20-
log "github.com/Sirupsen/logrus"
20+
log "github.com/sirupsen/logrus"
2121
"github.com/crunchydata/postgres-operator/apiserver"
2222
msgs "github.com/crunchydata/postgres-operator/apiservermsgs"
2323
"github.com/crunchydata/postgres-operator/util"

apiserver/backupservice/backupimpl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616
*/
1717

1818
import (
19-
log "github.com/Sirupsen/logrus"
19+
log "github.com/sirupsen/logrus"
2020
crv1 "github.com/crunchydata/postgres-operator/apis/cr/v1"
2121
"github.com/crunchydata/postgres-operator/apiserver"
2222
msgs "github.com/crunchydata/postgres-operator/apiservermsgs"

apiserver/backupservice/backupservice.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717

1818
import (
1919
"encoding/json"
20-
log "github.com/Sirupsen/logrus"
20+
log "github.com/sirupsen/logrus"
2121
"github.com/crunchydata/postgres-operator/apiserver"
2222
msgs "github.com/crunchydata/postgres-operator/apiservermsgs"
2323
"github.com/gorilla/mux"

apiserver/clusterservice/clusterimpl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"strings"
2626
"time"
2727

28-
log "github.com/Sirupsen/logrus"
28+
log "github.com/sirupsen/logrus"
2929
crv1 "github.com/crunchydata/postgres-operator/apis/cr/v1"
3030
"github.com/crunchydata/postgres-operator/apiserver"
3131

apiserver/clusterservice/clusterservice.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"net/http"
2121
"strconv"
2222

23-
log "github.com/Sirupsen/logrus"
23+
log "github.com/sirupsen/logrus"
2424
"github.com/crunchydata/postgres-operator/apiserver"
2525
msgs "github.com/crunchydata/postgres-operator/apiservermsgs"
2626
"github.com/gorilla/mux"

apiserver/clusterservice/scaleimpl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"strconv"
2121
"strings"
2222

23-
log "github.com/Sirupsen/logrus"
23+
log "github.com/sirupsen/logrus"
2424
crv1 "github.com/crunchydata/postgres-operator/apis/cr/v1"
2525
"github.com/crunchydata/postgres-operator/apiserver"
2626
msgs "github.com/crunchydata/postgres-operator/apiservermsgs"

apiserver/clusterservice/scaleservice.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717

1818
import (
1919
"encoding/json"
20-
log "github.com/Sirupsen/logrus"
20+
log "github.com/sirupsen/logrus"
2121
"github.com/crunchydata/postgres-operator/apiserver"
2222
msgs "github.com/crunchydata/postgres-operator/apiservermsgs"
2323
"github.com/crunchydata/postgres-operator/util"

0 commit comments

Comments
 (0)