diff --git a/server/src/main/java/au/org/aodn/ogcapi/server/common/TempApi.java b/server/src/main/java/au/org/aodn/ogcapi/server/common/TempApi.java deleted file mode 100644 index 1f84a0ce..00000000 --- a/server/src/main/java/au/org/aodn/ogcapi/server/common/TempApi.java +++ /dev/null @@ -1,16 +0,0 @@ -package au.org.aodn.ogcapi.server.common; - -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -// This is only for safely swapping the health check. Will be removed when swapping is done. -@RestController -@RequestMapping(value="") -public class TempApi { - - @GetMapping("/manage/health") - public String health() { - return "Healthy from TempApi"; - } -}