Skip to content

Commit bdbaa98

Browse files
authored
Merge pull request #56 from Decodeat/fix/54-user-behavior-mapping
fix:api url
2 parents 9655437 + 8145310 commit bdbaa98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/DecodEat/domain/products/client/PythonAnalysisClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public Mono<AnalysisResponseDto> analyzeProduct(AnalysisRequestDto request) {
2525
log.info("Sending analysis request to Python server: {}", pythonServerUrl);
2626

2727
return webClient.post()
28-
.uri(pythonServerUrl + "/api/v1/analyze")
28+
.uri(pythonServerUrl + "api/v1/analyze")
2929
.bodyValue(request)
3030
.retrieve()
3131
.bodyToMono(AnalysisResponseDto.class)

0 commit comments

Comments
 (0)