0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-18 09:58:43 +00:00

Flock: fixed hypervisor log name

This commit is contained in:
Maria Matejka 2024-07-22 10:19:46 +02:00
parent 5eea993f60
commit ab96defd20

View File

@ -197,7 +197,7 @@ class Test:
else: else:
self._starting = True self._starting = True
await self.hypervisor.prepare() await self.hypervisor.prepare()
os.symlink(pathlib.Path("bgp-secondary.log").absolute(), self.hypervisor.basedir / "flock.log") os.symlink(pathlib.Path(f"{self.name}.log").absolute(), self.hypervisor.basedir / "flock.log")
await self.hypervisor.start() await self.hypervisor.start()
self._started.set_result(True) self._started.set_result(True)