Reducing line size. in some files and shadowing in some test cases.
This commit is contained in:
parent
fc574490f8
commit
0e916ebd76
2 changed files with 12 additions and 10 deletions
|
@ -21,8 +21,10 @@ import (
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Monitor is a wrapper for the Realis client which allows us to have functions with the same name for Monitoring purposes.
|
// Monitor is a wrapper for the Realis client which allows us to have functions
|
||||||
// TODO(rdelvalle): Deprecate monitors and instead add prefix Monitor to all functions in this file like it is done in V2.
|
// with the same name for Monitoring purposes.
|
||||||
|
// TODO(rdelvalle): Deprecate monitors and instead add prefix Monitor to
|
||||||
|
// all functions in this file like it is done in V2.
|
||||||
type Monitor struct {
|
type Monitor struct {
|
||||||
Client Realis
|
Client Realis
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,17 +77,17 @@ func TestNonExistentEndpoint(t *testing.T) {
|
||||||
|
|
||||||
t.Run("WithRetries", func(t *testing.T) {
|
t.Run("WithRetries", func(t *testing.T) {
|
||||||
// Attempt to connect to a bad endpoint
|
// Attempt to connect to a bad endpoint
|
||||||
r, err := realis.NewRealisClient(
|
badClient, err := realis.NewRealisClient(
|
||||||
realis.SchedulerUrl(badEndpoint),
|
realis.SchedulerUrl(badEndpoint),
|
||||||
realis.TimeoutMS(200000),
|
realis.TimeoutMS(200000),
|
||||||
realis.BackOff(backoff),
|
realis.BackOff(backoff),
|
||||||
)
|
)
|
||||||
|
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.NotNil(t, r)
|
require.NotNil(t, badClient)
|
||||||
defer r.Close()
|
defer badClient.Close()
|
||||||
|
|
||||||
_, err = r.GetTasksWithoutConfigs(taskQ)
|
_, err = badClient.GetTasksWithoutConfigs(taskQ)
|
||||||
|
|
||||||
// Check that we do error out of retrying
|
// Check that we do error out of retrying
|
||||||
require.Error(t, err)
|
require.Error(t, err)
|
||||||
|
@ -101,7 +101,7 @@ func TestNonExistentEndpoint(t *testing.T) {
|
||||||
|
|
||||||
t.Run("FailOnLookup", func(t *testing.T) {
|
t.Run("FailOnLookup", func(t *testing.T) {
|
||||||
// Attempt to connect to a bad endpoint
|
// Attempt to connect to a bad endpoint
|
||||||
r, err := realis.NewRealisClient(
|
badClient, err := realis.NewRealisClient(
|
||||||
realis.SchedulerUrl(badEndpoint),
|
realis.SchedulerUrl(badEndpoint),
|
||||||
realis.TimeoutMS(200000),
|
realis.TimeoutMS(200000),
|
||||||
realis.BackOff(backoff),
|
realis.BackOff(backoff),
|
||||||
|
@ -109,10 +109,10 @@ func TestNonExistentEndpoint(t *testing.T) {
|
||||||
)
|
)
|
||||||
|
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.NotNil(t, r)
|
require.NotNil(t, badClient)
|
||||||
defer r.Close()
|
defer badClient.Close()
|
||||||
|
|
||||||
_, err = r.GetTasksWithoutConfigs(taskQ)
|
_, err = badClient.GetTasksWithoutConfigs(taskQ)
|
||||||
|
|
||||||
// Check that we do error out of retrying
|
// Check that we do error out of retrying
|
||||||
require.Error(t, err)
|
require.Error(t, err)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue