Skip to content

Commit

Permalink
Insecure requests
Browse files Browse the repository at this point in the history
  • Loading branch information
valentyntymku committed Jan 13, 2017
1 parent 9da23e6 commit 56962f7
Show file tree
Hide file tree
Showing 20 changed files with 38 additions and 38 deletions.
26 changes: 13 additions & 13 deletions backends/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ import (
"errors"
"strings"

"github.com/bacongobbler/confd/backends/consul"
"github.com/bacongobbler/confd/backends/dynamodb"
"github.com/bacongobbler/confd/backends/env"
"github.com/bacongobbler/confd/backends/etcd"
"github.com/bacongobbler/confd/backends/etcdv3"
"github.com/bacongobbler/confd/backends/file"
"github.com/bacongobbler/confd/backends/metad"
"github.com/bacongobbler/confd/backends/rancher"
"github.com/bacongobbler/confd/backends/redis"
"github.com/bacongobbler/confd/backends/stackengine"
"github.com/bacongobbler/confd/backends/vault"
"github.com/bacongobbler/confd/backends/zookeeper"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/backends/consul"
"github.com/hashcv/confd/backends/dynamodb"
"github.com/hashcv/confd/backends/env"
"github.com/hashcv/confd/backends/etcd"
"github.com/hashcv/confd/backends/etcdv3"
"github.com/hashcv/confd/backends/file"
"github.com/hashcv/confd/backends/metad"
"github.com/hashcv/confd/backends/rancher"
"github.com/hashcv/confd/backends/redis"
"github.com/hashcv/confd/backends/stackengine"
"github.com/hashcv/confd/backends/vault"
"github.com/hashcv/confd/backends/zookeeper"
"github.com/hashcv/confd/log"
)

// The StoreClient interface is implemented by objects that can retrieve
Expand Down
2 changes: 1 addition & 1 deletion backends/dynamodb/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

// Client is a wrapper around the DynamoDB client
Expand Down
2 changes: 1 addition & 1 deletion backends/env/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

var replacer = strings.NewReplacer("/", "_")
Expand Down
2 changes: 1 addition & 1 deletion backends/etcd/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func NewEtcdClient(machines []string, cert, key, caCert string, basicAuth bool,
}

tlsConfig := &tls.Config{
InsecureSkipVerify: false,
InsecureSkipVerify: true,
}

cfg := client.Config{
Expand Down
2 changes: 1 addition & 1 deletion backends/file/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/fsnotify/fsnotify"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
"gopkg.in/yaml.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion backends/metad/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

"fmt"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

type Client struct {
Expand Down
2 changes: 1 addition & 1 deletion backends/rancher/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

log "github.com/bacongobbler/confd/log"
log "github.com/hashcv/confd/log"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion backends/redis/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"
"time"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

// Client is a wrapper around the redis client
Expand Down
2 changes: 1 addition & 1 deletion backends/vault/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"path"

vaultapi "github.com/hashicorp/vault/api"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

// Client is a wrapper around the vault client
Expand Down
2 changes: 1 addition & 1 deletion backends/zookeeper/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"time"

"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
zk "github.com/samuel/go-zookeeper/zk"
)

Expand Down
6 changes: 3 additions & 3 deletions confd.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"os/signal"
"syscall"

"github.com/bacongobbler/confd/backends"
"github.com/bacongobbler/confd/log"
"github.com/bacongobbler/confd/resource/template"
"github.com/hashcv/confd/backends"
"github.com/hashcv/confd/log"
"github.com/hashcv/confd/resource/template"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"strings"

"github.com/BurntSushi/toml"
"github.com/bacongobbler/confd/backends"
"github.com/bacongobbler/confd/log"
"github.com/bacongobbler/confd/resource/template"
"github.com/hashcv/confd/backends"
"github.com/hashcv/confd/log"
"github.com/hashcv/confd/resource/template"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

func TestInitConfigDefaultConfig(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion resource/template/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"
"time"

"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

type Processor interface {
Expand Down
4 changes: 2 additions & 2 deletions resource/template/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"text/template"

"github.com/BurntSushi/toml"
"github.com/bacongobbler/confd/backends"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/backends"
"github.com/hashcv/confd/log"
"github.com/kelseyhightower/memkv"
)

Expand Down
4 changes: 2 additions & 2 deletions resource/template/resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"testing"
"text/template"

"github.com/bacongobbler/confd/backends/env"
"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/backends/env"
"github.com/hashcv/confd/log"
)

// createTempDirs is a helper function which creates temporary directories
Expand Down
2 changes: 1 addition & 1 deletion resource/template/template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"testing"

"github.com/bacongobbler/confd/backends"
"github.com/hashcv/confd/backends"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion resource/template/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path"
"path/filepath"

"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

// fileInfo describes a configuration file and is returned by fileStat.
Expand Down
2 changes: 1 addition & 1 deletion resource/template/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sort"
"testing"

"github.com/bacongobbler/confd/log"
"github.com/hashcv/confd/log"
)

// createRecursiveDirs is a helper function which creates temporary directorie
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const Version = "0.12.1"
const Version = "0.12.1h"

0 comments on commit 56962f7

Please sign in to comment.