While sending answers lazily as Strings has reduced memory footprint by over an order of magnitude, it seems that answer times have gotten slower. Accept this trade off treating time for space and increase all timeouts accordingly.
Signed-off-by: Klaus Aehlig <[email protected]> --- src/Ganeti/Constants.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ganeti/Constants.hs b/src/Ganeti/Constants.hs index f063a50..db5e565 100644 --- a/src/Ganeti/Constants.hs +++ b/src/Ganeti/Constants.hs @@ -5159,10 +5159,10 @@ luxiReqAll = ] luxiDefCtmo :: Int -luxiDefCtmo = 10 +luxiDefCtmo = 30 luxiDefRwto :: Int -luxiDefRwto = 60 +luxiDefRwto = 180 -- | 'WaitForJobChange' timeout luxiWfjcTimeout :: Int -- 2.7.0.rc3.207.g0ac5344
