fix: increased sleep timers
This commit is contained in:
parent
02eecb31fb
commit
7234c4095e
1 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ class Pterodactyl(commands.Cog):
|
|||
await Pterodactyl.put(self, url=await Pterodactyl.get_url(self, self.passed_info['guild'], "startup/variable"), headers=self.passed_info['headers'], data=data)
|
||||
requests.post(url=await Pterodactyl.get_url(self, self.passed_info['guild'], "power"), headers=self.passed_info['headers'], json={"signal": "start"})
|
||||
await self.passed_info['interaction'].edit_original_response(content="Packwiz installer started...")
|
||||
await asyncio.sleep(1)
|
||||
await asyncio.sleep(2)
|
||||
while True:
|
||||
async with aiohttp.ClientSession() as session:
|
||||
async with session.get(await Pterodactyl.get_url(self, self.passed_info['guild'], "resources"), headers=self.passed_info['headers']) as response:
|
||||
|
@ -152,7 +152,7 @@ class Pterodactyl(commands.Cog):
|
|||
continue
|
||||
for data in self.passed_info['old_startup_vars']:
|
||||
await Pterodactyl.put(self, await Pterodactyl.get_url(self, self.passed_info['guild'], "startup/variable"), self.passed_info['headers'], data)
|
||||
await asyncio.sleep(1)
|
||||
await asyncio.sleep(2)
|
||||
requests.post(await Pterodactyl.get_url(self, self.passed_info['guild'], "power"), self.passed_info['headers'], json={"signal": "start"})
|
||||
await self.passed_info['interaction'].edit_original_response(content="Server starting...")
|
||||
while True:
|
||||
|
|
Reference in a new issue