Skip to content

Commit

Permalink
[DDING-000] CI 에러 수정 (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
KoSeonJe authored Nov 27, 2024
1 parent 8fdd631 commit 92aa824
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-server-integrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: chmod +x gradlew

- name: CI Test
run: ./gradlew clean test
run: ./gradlew clean test --no-build-cache

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
1 change: 1 addition & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
org.gradle.annotation.processing=true
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,6 @@ private List<String> getNewIds(List<String> ids) {
.toList();
}

private List<String> getNewIds(List<String> ids) {
List<FileMetaData> fileMetaDatas = fileMetaDataRepository.findByIdIn(toUUIDs(ids));
return fileMetaDatas.stream()
.filter(FileMetaData::isPending)
.map(fileMetaData -> String.valueOf(fileMetaData.getId()))
.toList();
}

private boolean isCoupled(String id) {
if (id == null) {
return false;
Expand Down

0 comments on commit 92aa824

Please sign in to comment.