Moved tlsutil into helpers

This commit is contained in:
Diptanu Choudhury 2016-10-25 16:05:37 -07:00
parent 353e7fc7f1
commit 7c61e115bd
23 changed files with 7 additions and 7 deletions

View File

@ -27,9 +27,9 @@ import (
"github.com/hashicorp/nomad/client/stats"
"github.com/hashicorp/nomad/client/vaultclient"
"github.com/hashicorp/nomad/command/agent/consul"
"github.com/hashicorp/nomad/helper/tlsutil"
"github.com/hashicorp/nomad/nomad"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/tlsutil"
vaultapi "github.com/hashicorp/vault/api"
"github.com/mitchellh/hashstructure"
)

View File

@ -8,9 +8,9 @@ import (
"strings"
"time"
"github.com/hashicorp/nomad/helper/tlsutil"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/nomad/structs/config"
"github.com/hashicorp/nomad/tlsutil"
)
var (

View File

@ -14,8 +14,8 @@ import (
"time"
"github.com/NYTimes/gziphandler"
"github.com/hashicorp/nomad/helper/tlsutil"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/tlsutil"
"github.com/ugorji/go/codec"
)

View File

@ -9,10 +9,10 @@ import (
"time"
"github.com/hashicorp/memberlist"
"github.com/hashicorp/nomad/helper/tlsutil"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/nomad/structs/config"
"github.com/hashicorp/nomad/scheduler"
"github.com/hashicorp/nomad/tlsutil"
"github.com/hashicorp/raft"
"github.com/hashicorp/serf/serf"
)

View File

@ -11,7 +11,7 @@ import (
"time"
"github.com/hashicorp/net-rpc-msgpackrpc"
"github.com/hashicorp/nomad/tlsutil"
"github.com/hashicorp/nomad/helper/tlsutil"
"github.com/hashicorp/yamux"
)

View File

@ -6,7 +6,7 @@ import (
"sync"
"time"
"github.com/hashicorp/nomad/tlsutil"
"github.com/hashicorp/nomad/helper/tlsutil"
)
// RaftLayer implements the raft.StreamLayer interface,

View File

@ -20,9 +20,9 @@ import (
"github.com/hashicorp/consul/lib"
"github.com/hashicorp/go-multierror"
"github.com/hashicorp/nomad/command/agent/consul"
"github.com/hashicorp/nomad/helper/tlsutil"
"github.com/hashicorp/nomad/nomad/state"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/tlsutil"
"github.com/hashicorp/raft"
"github.com/hashicorp/raft-boltdb"
"github.com/hashicorp/serf/serf"