Add a few items to gitignore. Change few missed dependencies to point to aurora-scheduler repository. (#3)
This commit is contained in:
parent
02710e5434
commit
406640c7a9
5 changed files with 14 additions and 9 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -37,3 +37,10 @@ _testmain.go
|
||||||
|
|
||||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
*.out
|
*.out
|
||||||
|
|
||||||
|
# Example client build
|
||||||
|
examples/client
|
||||||
|
examples/jsonClient
|
||||||
|
|
||||||
|
# Use checksum database
|
||||||
|
go.sum
|
||||||
|
|
|
@ -21,8 +21,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
realis "github.com/paypal/gorealis/v2"
|
realis "github.com/aurora-scheduler/gorealis/v2"
|
||||||
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
|
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
|
||||||
)
|
)
|
||||||
|
|
||||||
var cmd, executor, url, clustersConfig, clusterName, updateId, username, password, zkUrl, hostList, role string
|
var cmd, executor, url, clustersConfig, clusterName, updateId, username, password, zkUrl, hostList, role string
|
||||||
|
|
|
@ -23,8 +23,8 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
realis "github.com/paypal/gorealis/v2"
|
realis "github.com/aurora-scheduler/gorealis/v2"
|
||||||
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
|
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
6
go.mod
6
go.mod
|
@ -2,11 +2,9 @@ module github.com/aurora-scheduler/gorealis/v2
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/apache/thrift v0.12.0
|
github.com/apache/thrift v0.12.0
|
||||||
github.com/davecgh/go-spew v1.1.0 // indirect
|
github.com/pkg/errors v0.9.1
|
||||||
github.com/pkg/errors v0.0.0-20171216070316-e881fd58d78e
|
|
||||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
||||||
github.com/samuel/go-zookeeper v0.0.0-20171117190445-471cd4e61d7a
|
github.com/samuel/go-zookeeper v0.0.0-20171117190445-471cd4e61d7a
|
||||||
github.com/stretchr/testify v1.2.0
|
github.com/stretchr/testify v1.5.0
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/apache/thrift v0.12.0 => github.com/ridv/thrift v0.12.2
|
replace github.com/apache/thrift v0.12.0 => github.com/ridv/thrift v0.12.2
|
||||||
|
|
|
@ -18,7 +18,7 @@ package response
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
||||||
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
|
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Get key from a response created by a StartJobUpdate call
|
// Get key from a response created by a StartJobUpdate call
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue