We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5abcfe6 commit ea723f7Copy full SHA for ea723f7
1 file changed
apps/frontend/src/pages/hosting/index.vue
@@ -1249,8 +1249,12 @@ const PING_COUNT = 20
1249
const PING_INTERVAL = 200
1250
const MAX_PING_TIME = 1000
1251
1252
-function runPingTest(region, index = 1) {
1253
- if (index > 10) {
+const initialIndex = {
+ 'eu-lim': 31,
1254
+}
1255
+
1256
+function runPingTest(region, index = initialIndex[region.shortcode] ?? 1) {
1257
+ if (index > (initialIndex[region.shortcode] ?? 1) + 10) {
1258
regionPings.value.push({
1259
region: region.shortcode,
1260
ping: -1,
0 commit comments