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

[fix] 기대평 필터링 기준 재조정 (#150) #151

Merged
merged 1 commit into from
Aug 23, 2024
Merged
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
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
Loading