Browse Source

Add path prefix to readiness check

Signed-off-by: Julius Volz <julius.volz@gmail.com>
pull/14872/head
Julius Volz 4 months ago
parent
commit
3905902758
  1. 3
      web/ui/mantine-ui/src/components/ReadinessWrapper.tsx

3
web/ui/mantine-ui/src/components/ReadinessWrapper.tsx

@ -7,6 +7,7 @@ import { Progress, Stack, Title } from "@mantine/core";
import { useSuspenseQuery } from "@tanstack/react-query"; import { useSuspenseQuery } from "@tanstack/react-query";
const ReadinessLoader: FC = () => { const ReadinessLoader: FC = () => {
const { pathPrefix } = useSettings();
const dispatch = useAppDispatch(); const dispatch = useAppDispatch();
// Query key is incremented every second to retrigger the status fetching. // Query key is incremented every second to retrigger the status fetching.
@ -20,7 +21,7 @@ const ReadinessLoader: FC = () => {
gcTime: 0, gcTime: 0,
queryFn: async ({ signal }: { signal: AbortSignal }) => { queryFn: async ({ signal }: { signal: AbortSignal }) => {
try { try {
const res = await fetch("/-/ready", { const res = await fetch(`${pathPrefix}/-/ready`, {
cache: "no-store", cache: "no-store",
credentials: "same-origin", credentials: "same-origin",
signal, signal,

Loading…
Cancel
Save