You are not logged in.
Pages: 1
Using latest commit from Master, 10424 the THttpServerSocketGeneric is taking longer than the timeout to start, throwing error on line 4106 which is the WaitStarted function. What should I do to fix this?
I am testing on IDE 64b on Delphi 12.3.
PS: The stable version of lts 2.3.8878 works without errors
Last edited by Mobius1 (2025-03-19 07:52:47)
Offline
There's a proposed fix for this:
instead of
endtix := mormot.core.os.GetTickCount64 + Seconds * MilliSecsPerSecSh1;
It should be
endtix := mormot.core.os.GetTickCount64 + Seconds * MilliSecsPerSec;
so it would count 1000 milis per sec instead of 10 milis per sec and the server wouldn't throw timeout on start
Offline
I have the same observation
Rad Studio 12.3 Athens
Offline
Sry i must correct me, I changed above line without effect. Make new Ticket for my problem
Rad Studio 12.3 Athens
Offline
Oups... this explains some of my errors on slow machines during regression tests.
Please check
https://github.com/synopse/mORMot2/commit/a2783bb92
Offline
Pages: 1