Changeset 65e66c9 in mod_gnutls for test/mgstest/services.py
- Timestamp:
- Nov 28, 2020, 3:46:31 PM (3 months ago)
- Branches:
- asyncio
- Parents:
- 7eb4233
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/mgstest/services.py
r7eb4233 r65e66c9 51 51 self.process_env = None 52 52 53 # check: functionto check if the service is up and working53 # check: coroutine to check if the service is up and working 54 54 self.check = check 55 55 … … 123 123 if self.process and self.process.returncode is not None: 124 124 return self.process.returncode 125 if self.check():125 if await self.check(): 126 126 return None 127 127 else: … … 181 181 return self.config.is_file() 182 182 183 def pidfile_check(self):183 async def pidfile_check(self): 184 184 """Default check method for ApacheService, waits for the PID file to 185 185 be present."""
Note: See TracChangeset
for help on using the changeset viewer.