Skip to content

Commit

Permalink
[FSTORE-1130][APPEND] Get schema from shared project (#1443)
Browse files Browse the repository at this point in the history
* [FSTORE-1130] Get schema from shared project (#1645)

* init

* new resource

* minor fix

* integrations test for getting shared schema

* fix ruby tests

* add test for data owner

* mini fix

* fix feedback

* feedback addressed

* fix getFeaturestoreForProjectWithId

* fix
  • Loading branch information
bubriks authored Jan 2, 2024
1 parent a48692f commit aead931
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ public GreatExpectationResource greatExpectationResource(
* @return the feature store kafka resource
* @throws FeaturestoreException
*/
@Logged(logLevel = LogLevel.OFF)
@Path("{featurestoreId}/kafka")
public KafkaResource kafkaResource(@PathParam("featurestoreId") Integer featurestoreId)
throws FeaturestoreException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ public void setProject(Project project) {
this.project = project;
}

@Logged(logLevel = LogLevel.OFF)
public void setFeaturestore(Integer featurestoreId) throws FeaturestoreException {
//This call verifies that the project have access to the featurestoreId provided
this.featurestore = featurestoreController.getFeaturestoreForProjectWithId(project, featurestoreId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ public class KafkaResource {
public KafkaResource() {
}

@Logged(logLevel = LogLevel.OFF)
public void setProject(Project project) {
this.project = project;
}
Expand Down

0 comments on commit aead931

Please sign in to comment.