Increase timeout for windows tests

This commit is contained in:
Daniel A. Wozniak 2024-10-25 16:49:47 -07:00 committed by Daniel Wozniak
parent 932ff82d70
commit 332b31e701

View file

@ -813,9 +813,9 @@ class Master(SMaster):
for _, opts in iter_transport_opts(self.opts):
chan = salt.channel.server.PubServerChannel.factory(opts)
chan.pre_fork(self.process_manager, kwargs={"secrets": SMaster.secrets})
if not chan.transport.started.wait(30):
if not chan.transport.started.wait(60):
raise salt.exceptions.SaltMasterError(
"Publish server did not start within 30 seconds. Something went wrong."
"Publish server did not start within 60 seconds. Something went wrong.",
)
pub_channels.append(chan)