Skip to content

Commit ce86120

Browse files
committed
fix: use flood mobile endpoints with explicit port
1 parent 738e8d6 commit ce86120

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/modules/ingest/app/sources/flood-alert.source.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { isTooOld } from './_shared/is-too-old';
88
import { normalizeText } from './_shared/normalize';
99
import { pruneTimedMap } from './_shared/prune-timed-map';
1010

11-
const FLOOD_BASE_TIME_ENDPOINT = 'https://m.flood.go.kr/cmmn/lsttm.do';
12-
const FLOOD_OBS_LIST_ENDPOINT = 'https://m.flood.go.kr/data/getFloodObsList.do';
11+
const FLOOD_BASE_TIME_ENDPOINT = 'https://m.flood.go.kr:9987/cmmn/lsttm.do';
12+
const FLOOD_OBS_LIST_ENDPOINT = 'https://m.flood.go.kr:9987/data/getFloodObsList.do';
1313
const REQUEST_TIMEOUT_MS = 15000;
1414
const STATE_TTL_MS = 1000 * 60 * 60 * 24;
1515
const EVENT_MAX_AGE_MS = STATE_TTL_MS * 0.9;

0 commit comments

Comments
 (0)