Skip to content

Commit

Permalink
fixed conectivity issue on cache app; closes #74
Browse files Browse the repository at this point in the history
  • Loading branch information
Parth Kapil authored and Parth Kapil committed Mar 30, 2022
1 parent f361329 commit a9f3cb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified cache/cache-0.0.1-SNAPSHOT.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public ResponseEntity<String> isWorking() {
}

@PostMapping("/getplot")
@CrossOrigin(origins = "http://localhost:3000")
@CrossOrigin(origins = "http://localhost:30500")
public ResponseEntity<GetPlotResponse> getPlot(@RequestBody GetPlotRequest req) {

try {
Expand Down Expand Up @@ -119,7 +119,7 @@ public ResponseEntity<GetPlotResponse> getPlot(@RequestBody GetPlotRequest req)
}

@PostMapping("/getvideo")
@CrossOrigin(origins = "http://localhost:3000")
@CrossOrigin(origins = "http://localhost:30500")
public ResponseEntity<GetPlotResponse> getVidoe(@RequestBody GetPlotRequest req) {

try {
Expand Down

0 comments on commit a9f3cb0

Please sign in to comment.