Skip to content

Commit 1794357

Browse files
authored
Prevent historical retrieval from failing on dash in project / featureSet name (#970)
1 parent b7fc4a8 commit 1794357

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

storage/connectors/bigquery/src/main/java/feast/storage/connectors/bigquery/retriever/FeatureSetQueryInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ public FeatureSetQueryInfo(FeatureSetQueryInfo featureSetInfo, String table) {
5454
}
5555

5656
public String getProject() {
57-
return project;
57+
return project.replace("-", "_");
5858
}
5959

6060
public String getName() {
61-
return name;
61+
return name.replace("-", "_");
6262
}
6363

6464
public long getMaxAge() {

0 commit comments

Comments
 (0)