|
@@ -6,7 +6,7 @@ const SERVER_LIST_URL = API_URL + '/' + API.GET_SERVERS;
|
|
|
const TIMEOUT = 1500;
|
|
|
|
|
|
const fetchWithTimeout = (url: string, timeout = TIMEOUT) => {
|
|
|
- return axios.get(url, { timeout });
|
|
|
+ return axios.get(url, { timeout, headers: {'Cache-Control': 'no-cache'} });
|
|
|
};
|
|
|
|
|
|
const testServerSpeed = async (serverUrl: string) => {
|