change(refresh): set ping refresh to 2min
This commit is contained in:
parent
92a0c257ca
commit
6cd66ba407
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ class Monitoring(commands.Cog):
|
||||||
def cog_unload(self):
|
def cog_unload(self):
|
||||||
self.ping_clusters.stop()
|
self.ping_clusters.stop()
|
||||||
|
|
||||||
@tasks.loop(seconds=20.0)
|
@tasks.loop(minutes=2.0)
|
||||||
async def ping_clusters(self):
|
async def ping_clusters(self):
|
||||||
for cluster in self.bot.clusters:
|
for cluster in self.bot.clusters:
|
||||||
if cluster == 'DEFAULT':
|
if cluster == 'DEFAULT':
|
||||||
|
|
Loading…
Reference in a new issue