File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
flyteplugins/go/tasks/pluginmachinery/catalog
flytepropeller/pkg/controller/nodes/catalog/datacatalog Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ import (
5
5
"fmt"
6
6
"time"
7
7
8
+ "google.golang.org/grpc/codes"
9
+ grpcStatus "google.golang.org/grpc/status"
8
10
"google.golang.org/protobuf/types/known/durationpb"
9
11
10
12
"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
11
13
"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
12
14
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
13
- "google.golang.org/grpc/codes"
14
- grpcStatus "google.golang.org/grpc/status"
15
15
)
16
16
17
17
//go:generate mockery --all --case=underscore --with-expecter
Original file line number Diff line number Diff line change @@ -6,6 +6,14 @@ import (
6
6
"testing"
7
7
"time"
8
8
9
+ "github.com/golang/protobuf/proto"
10
+ "github.com/golang/protobuf/ptypes"
11
+ "github.com/google/uuid"
12
+ "github.com/pkg/errors"
13
+ "github.com/stretchr/testify/assert"
14
+ "github.com/stretchr/testify/mock"
15
+ "google.golang.org/grpc/codes"
16
+ "google.golang.org/grpc/status"
9
17
"google.golang.org/protobuf/types/known/durationpb"
10
18
11
19
"github.com/flyteorg/flyte/flyteidl/clients/go/datacatalog/mocks"
@@ -16,14 +24,6 @@ import (
16
24
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
17
25
"github.com/flyteorg/flyte/flytestdlib/contextutils"
18
26
"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
19
- "github.com/golang/protobuf/proto"
20
- "github.com/golang/protobuf/ptypes"
21
- "github.com/google/uuid"
22
- "github.com/pkg/errors"
23
- "github.com/stretchr/testify/assert"
24
- "github.com/stretchr/testify/mock"
25
- "google.golang.org/grpc/codes"
26
- "google.golang.org/grpc/status"
27
27
)
28
28
29
29
func init () {
You can’t perform that action at this time.
0 commit comments