mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Removed commented out code for /ping
This commit is contained in:
parent
6800b3f176
commit
a4d903db8c
1 changed files with 0 additions and 7 deletions
|
@ -7,15 +7,8 @@ export const handleMosaic = async (
|
||||||
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
||||||
let selectedDomain: string | null = null;
|
let selectedDomain: string | null = null;
|
||||||
while (selectedDomain === null && mosaicDomains.length > 0) {
|
while (selectedDomain === null && mosaicDomains.length > 0) {
|
||||||
// fetch /ping on a random domain
|
|
||||||
const domain = mosaicDomains[Math.floor(Math.random() * mosaicDomains.length)];
|
const domain = mosaicDomains[Math.floor(Math.random() * mosaicDomains.length)];
|
||||||
// let response = await fetch(`https://${domain}/ping`);
|
|
||||||
// if (response.status === 200) {
|
|
||||||
selectedDomain = domain;
|
selectedDomain = domain;
|
||||||
// } else {
|
|
||||||
// mosaicDomains = mosaicDomains.filter(d => d !== domain);
|
|
||||||
// console.log(`${domain} is not available, removing from list`);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fallback if all Mosaic servers are down
|
// Fallback if all Mosaic servers are down
|
||||||
|
|
Loading…
Add table
Reference in a new issue