Skip to content

Commit

Permalink
Prevent historical retrieval from failing on dash in project / featur…
Browse files Browse the repository at this point in the history
…eSet name (#970)
  • Loading branch information
pyalex authored Sep 1, 2020
1 parent b7fc4a8 commit 1794357
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ public FeatureSetQueryInfo(FeatureSetQueryInfo featureSetInfo, String table) {
}

public String getProject() {
return project;
return project.replace("-", "_");
}

public String getName() {
return name;
return name.replace("-", "_");
}

public long getMaxAge() {
Expand Down

0 comments on commit 1794357

Please sign in to comment.