Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change gopath to point to gojek repo #26

Merged
merged 1 commit into from
Jan 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cli/feast/cmd/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
"io/ioutil"
"path/filepath"

"github.com/gojektech/feast/cli/feast/pkg/parse"
"github.com/gojektech/feast/protos/generated/go/feast/core"
"github.com/gojek/feast/cli/feast/pkg/parse"
"github.com/gojek/feast/protos/generated/go/feast/core"

"github.com/spf13/cobra"
)
Expand Down
6 changes: 3 additions & 3 deletions cli/feast/cmd/jobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"fmt"
"io/ioutil"

"github.com/gojektech/feast/cli/feast/pkg/parse"
"github.com/gojektech/feast/cli/feast/pkg/printer"
"github.com/gojektech/feast/protos/generated/go/feast/core"
"github.com/gojek/feast/cli/feast/pkg/parse"
"github.com/gojek/feast/cli/feast/pkg/printer"
"github.com/gojek/feast/protos/generated/go/feast/core"

"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions cli/feast/cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"strings"
"text/tabwriter"

"github.com/gojektech/feast/cli/feast/pkg/util"
"github.com/gojektech/feast/protos/generated/go/feast/core"
"github.com/gojek/feast/cli/feast/pkg/util"
"github.com/gojek/feast/protos/generated/go/feast/core"

"github.com/golang/protobuf/ptypes/empty"
"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion cli/feast/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
package main

import (
"github.com/gojektech/feast/cli/feast/cmd"
"github.com/gojek/feast/cli/feast/cmd"
)

// Version is the Feast version
Expand Down
4 changes: 2 additions & 2 deletions cli/feast/pkg/parse/yaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (

"github.com/ghodss/yaml"

"github.com/gojektech/feast/protos/generated/go/feast/specs"
"github.com/gojektech/feast/protos/generated/go/feast/types"
"github.com/gojek/feast/protos/generated/go/feast/specs"
"github.com/gojek/feast/protos/generated/go/feast/types"
)

// YamlToFeatureSpec parses the given yaml and outputs the corresponding
Expand Down
4 changes: 2 additions & 2 deletions cli/feast/pkg/parse/yaml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (

"github.com/golang/protobuf/ptypes/timestamp"

"github.com/gojektech/feast/protos/generated/go/feast/specs"
"github.com/gojektech/feast/protos/generated/go/feast/types"
"github.com/gojek/feast/protos/generated/go/feast/specs"
"github.com/gojek/feast/protos/generated/go/feast/types"

"github.com/google/go-cmp/cmp"
)
Expand Down
4 changes: 2 additions & 2 deletions cli/feast/pkg/printer/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"fmt"
"strings"

"github.com/gojektech/feast/cli/feast/pkg/util"
"github.com/gojektech/feast/protos/generated/go/feast/core"
"github.com/gojek/feast/cli/feast/pkg/util"
"github.com/gojek/feast/protos/generated/go/feast/core"
)

// PrintJobDetail pretty prints the given job detail
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/core/CoreService.proto
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import "google/protobuf/empty.proto";

option java_package = "feast.core";
option java_outer_classname = "CoreServiceProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/core";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/core";

service CoreService {
/*
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/core/JobService.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import "google/protobuf/timestamp.proto";

option java_package = "feast.core";
option java_outer_classname = "JobServiceProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/core";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/core";

service JobService {
// Submit a job to feast to run. Returns the job id.
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/core/UIService.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import "google/protobuf/timestamp.proto";

option java_package = "feast.core";
option java_outer_classname = "UIServiceProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/core";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/core";

service UIService {
/*
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/serving/Serving.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import "feast/types/Value.proto";

option java_package = "feast.serving";
option java_outer_classname = "ServingAPIProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/serving";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/serving";

service ServingAPI {
// Query features from Feast
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/specs/EntitySpec.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package feast.specs;

option java_package = "feast.specs";
option java_outer_classname = "EntitySpecProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/specs";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/specs";

message EntitySpec {
string name = 1;
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/specs/FeatureGroupSpec.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package feast.specs;

option java_package = "feast.specs";
option java_outer_classname = "FeatureGroupSpecProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/specs";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/specs";

message FeatureGroupSpec {
string id = 1;
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/specs/FeatureSpec.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ package feast.specs;

option java_package = "feast.specs";
option java_outer_classname = "FeatureSpecProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/specs";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/specs";

message FeatureSpec {
string id = 1;
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/specs/ImportSpec.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package feast.specs;

option java_package = "feast.specs";
option java_outer_classname = "ImportSpecProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/specs";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/specs";

import "feast/types/Value.proto";
import "google/protobuf/timestamp.proto";
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/specs/StorageSpec.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package feast.specs;

option java_package = "feast.specs";
option java_outer_classname = "StorageSpecProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/specs";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/specs";

message StorageSpec {
// unique identifier for this instance
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/storage/BigTable.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package feast.storage;

option java_outer_classname = "BigTableProto";
option java_package = "feast.storage";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/storage";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/storage";

message BigTableRowKey {
// This should be the first 7 characters of a sha1 of the entityKey proto encoded
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/storage/Redis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package feast.storage;

option java_outer_classname = "RedisProto";
option java_package = "feast.storage";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/storage";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/storage";

message RedisBucketKey {
// Field number 1 is reserved for a future distributing hash if needed
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/types/Feature.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package feast.types;

option java_package = "feast.types";
option java_outer_classname = "FeatureProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/types";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/types";

message Feature {
string id = 1;
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/types/FeatureRow.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ package feast.types;

option java_package = "feast.types";
option java_outer_classname = "FeatureRowProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/types";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/types";

message FeatureRowKey {
string entityKey = 1;
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/types/FeatureRowExtended.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package feast.types;

option java_package = "feast.types";
option java_outer_classname = "FeatureRowExtendedProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/types";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/types";

message Error {
string cause = 1; // exception class name
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/types/Granularity.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package feast.types;

option java_package = "feast.types";
option java_outer_classname = "GranularityProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/types";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/types";

message Granularity {
enum Enum {
Expand Down
2 changes: 1 addition & 1 deletion protos/feast/types/Value.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package feast.types;

option java_package = "feast.types";
option java_outer_classname = "ValueProto";
option go_package = "github.com/gojektech/feast/protos/generated/go/feast/types";
option go_package = "github.com/gojek/feast/protos/generated/go/feast/types";

message ValueType {
enum Enum {
Expand Down
Loading