Skip to content

Commit

Permalink
Merge pull request #151 from softeerbootcamp4th/feature/150-fix-comment
Browse files Browse the repository at this point in the history
[fix] 기대평 필터링 기준 재조정 (#150)
  • Loading branch information
win-luck authored Aug 23, 2024
2 parents c6dc3c2 + b22b537 commit 868d114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/hyundai/softeer/orange/common/ErrorCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public enum ErrorCode {
// 400 Bad Request
BAD_REQUEST(HttpStatus.BAD_REQUEST, "잘못된 요청입니다."),
INVALID_COMMENT(HttpStatus.BAD_REQUEST, "부정적인 표현을 사용하였습니다."),
INVALID_COMMENT(HttpStatus.BAD_REQUEST, "긍정적인 기대평을 작성해주세요."),
INVALID_JSON(HttpStatus.BAD_REQUEST, "잘못된 JSON 형식입니다."),
INVALID_URL(HttpStatus.BAD_REQUEST, "유효하지 않은 URL입니다."),
INVALID_INPUT_EVENT_TIME(HttpStatus.BAD_REQUEST, "입력된 시간 중 일부가 조건에 맞지 않습니다."),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ConstantUtil {
public static final String DB_TO_REDIS_LOCK = "FCFS_MANAGE_DB_TO_REDIS";
public static final String REDIS_TO_DB_LOCK = "FCFS_MANAGE_REDIS_TO_DB";

public static final double LIMIT_NEGATIVE_CONFIDENCE = 99.5;
public static final double LIMIT_NEGATIVE_CONFIDENCE = 80;
public static final int COMMENTS_SIZE = 20;
public static final int SCHEDULED_TIME = 1000 * 60 * 60 * 2;
public static final int SHORT_URL_LENGTH = 10;
Expand Down

0 comments on commit 868d114

Please sign in to comment.