Skip to content
Open
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
Binary file added cf.out_20231217_1.log.gz
Binary file not shown.
Binary file added cf.out_20231218_1.log.gz
Binary file not shown.
Binary file added cf.out_20231219_1.log.gz
Binary file not shown.
Binary file added cf.out_20231220_1.log.gz
Binary file not shown.
Binary file added cf.out_20231221_1.log.gz
Binary file not shown.
Binary file added cf.out_20231222_1.log.gz
Binary file not shown.
18 changes: 12 additions & 6 deletions src/main/java/org/gitlab4j/simplecr/SimpleCrApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,19 @@ public static void main(String[] args) {

SpringApplication.run(SimpleCrApplication.class, args);
}
/**/

/**
* To allow for branch names with slashes a UrlPathHelper must be created so that the path params
* are not automatically decoded which breaks request path matching.
*
* @param configurer the PathMatchConfigurer to set the UrlPathHelper on
*/










/**/
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
UrlPathHelper urlPathHelper = new UrlPathHelper();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,18 @@ public AppResponse<?> getProjectConfig(
// Get the specified project config
ProjectConfig projectConfig;
try {

/*테스트 주석처리*/
/*테스트 주석처리*/
/*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*/
/*테스트 주석처리*/
/*테스트 주석처리*/
/*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*/
/*테스트 주석처리*/
/*테스트 주석처리*/
/*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*/
/*테스트 주석처리*/
/*테스트 주석처리*/
/*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*//*테스트 주석처리*/
projectConfig = projectConfigService.getProjectConfig(groupName, projectName);
if (projectConfig != null) {
return (AppResponse.getDataResponse(true, projectConfig));
Expand Down