generated from Cassiiopeia/SUH-DEVOPS-TEMPLATE
-
Notifications
You must be signed in to change notification settings - Fork 0
AI서버 장소추출 구현완료에 따른 콜백 api 개발 필요 #17
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
Merged
Cassiiopeia
merged 4 commits into
main
from
20260127_16_AI서버_장소추출_구현완료에_따른_콜백_api_개발_필요
Jan 28, 2026
The head ref may contain hidden characters: "20260127_16_AI\uC11C\uBC84_\uC7A5\uC18C\uCD94\uCD9C_\uAD6C\uD604\uC644\uB8CC\uC5D0_\uB530\uB978_\uCF5C\uBC31_api_\uAC1C\uBC1C_\uD544\uC694"
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ed8142a
AI서버 장소추출 구현완료에 따른 콜백 api 개발 필요 : feat : AI 콜백 명세에 따른 백엔드 로직 변경 https…
Cassiiopeia 0803695
AI서버 장소추출 구현완료에 따른 콜백 api 개발 필요 : feat : fetch 무제 수정 https://github.c…
Cassiiopeia ea42dd2
AI서버 장소추출 구현완료에 따른 콜백 api 개발 필요 : chore : actuator/health 엔드포인트 변경 ht…
Cassiiopeia e00478c
AI서버 장소추출 구현완료에 따른 콜백 api 개발 필요 : pull : main conflict 해결 https://git…
Cassiiopeia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
rg -n "snsInfo" --type=java -A 3 -B 1 MS-AI/src/main/javaRepository: MapSee-Lab/MapSy-BE
Length of output: 521
🏁 Script executed:
Repository: MapSee-Lab/MapSy-BE
Length of output: 138
🏁 Script executed:
Repository: MapSee-Lab/MapSy-BE
Length of output: 1018
🏁 Script executed:
Repository: MapSee-Lab/MapSy-BE
Length of output: 26976
🏁 Script executed:
Repository: MapSee-Lab/MapSy-BE
Length of output: 9671
SUCCESS 상태일 때
snsInfo필수 검증 부재snsInfo가 "(SUCCESS 시 필수)"로 문서화되었으나, 현재 구현은 null 값을 허용합니다.AiCallbackService.updateContentWithSnsInfo()에서 null 체크는 있지만 단순히 경고를 로깅하고 처리를 계속하므로 API 계약을 위반합니다.다음 중 하나를 권장합니다:
@NotNull(message = "SUCCESS 상태에서는 snsInfo가 필수입니다.")를 추가하고, 조건부 검증이 필요하면@ConditionalValidation또는 커스텀 validator 구현if ("SUCCESS".equals(request.getResultStatus()) && request.getSnsInfo() == null)체크 후 명시적으로CustomException발생🤖 Prompt for AI Agents