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

Extract column store endpoints into StudyViewControllerColumnStore #10245

Merged

Conversation

haynescd
Copy link
Collaborator

No description provided.

@haynescd haynescd self-assigned this Jun 28, 2023
Copy link
Member

@onursumer onursumer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

@@ -127,7 +128,7 @@ public class InvolvedCancerStudyExtractorInterceptor extends HandlerInterceptorA
if (!request.getMethod().equals("POST")) {
return true; // no attribute extraction needed because all user supplied filter objects are in POST requests
}
String requestPathInfo = request.getPathInfo();
String requestPathInfo = StringUtils.removeStart(request.getPathInfo(), "/column-store");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or we can just do this if we want to avoid using a 3rd party utility class.

Suggested change
String requestPathInfo = StringUtils.removeStart(request.getPathInfo(), "/column-store");
String requestPathInfo = request.getPathInfo().replaceFirst("/column-store", "");

@haynescd haynescd merged commit 047cb26 into demo-clickhouse-k8s Jun 28, 2023
10 of 12 checks passed
@haynescd haynescd deleted the feature/ch/Extract-ColumnStore-endpoints branch June 28, 2023 16:30
@sonarcloud
Copy link

sonarcloud bot commented Jun 28, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

0.0% 0.0% Coverage
0.0% 0.0% Duplication

jagnathan pushed a commit to pughlab/cbioportal that referenced this pull request Nov 8, 2023
…BioPortal#10245)

* Extract column store endpoints into StudyViewControllerColumnStore

* rename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants