Removed commented out code for /ping

This commit is contained in:
dangered wolf 2022-08-15 17:42:10 -04:00
parent 6800b3f176
commit a4d903db8c
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -7,15 +7,8 @@ export const handleMosaic = async (
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
let selectedDomain: string | null = null;
while (selectedDomain === null && mosaicDomains.length > 0) {
// fetch /ping on a random domain
const domain = mosaicDomains[Math.floor(Math.random() * mosaicDomains.length)];
// let response = await fetch(`https://${domain}/ping`);
// if (response.status === 200) {
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