1. 19 Sep, 2020 1 commit
  2. 18 Sep, 2020 1 commit
  3. 15 Sep, 2020 4 commits
  4. 14 Sep, 2020 14 commits
  5. 11 Sep, 2020 8 commits
  6. 10 Sep, 2020 4 commits
  7. 09 Sep, 2020 3 commits
  8. 08 Sep, 2020 2 commits
  9. 07 Sep, 2020 3 commits
    • Dridi Boukelmoune's avatar
      cli: Document more heredoc pitfalls · c31d071e
      Dridi Boukelmoune authored
      c31d071e
    • Dridi Boukelmoune's avatar
      vtc: Test case for #3402 · 9d8cfbee
      Dridi Boukelmoune authored
      9d8cfbee
    • delthas's avatar
      vbe: Update the poll timeout before polling-reading in backend probes · 4e7d6633
      delthas authored
      Varnish uses a global per-probe timeout for backend probes. When reading
      the backend response, Varnish tries to poll and read in a loop, until a
      poll timeouts, the streams EOFs or there is an error.
      
      The poll is supposed to timeout when the per-probe timeout ends. This is
      currently setup so that `t_end` is the deadline for the probe, set when
      the function starts, then the poll waits until `t_end`.
      
      Previously, the poll timeout was never updated, and was always set to
      `t_end - t_now` without updating `t_now`, which means that it was
      effectively a between-bytes timeout instead of a proper per-probe
      timeout.
      
      This fixes this issue by updating `t_now` before updating the
      `t_end - t_now` timeout so that the timeout passed to poll effectively
      corresponds to a deadline of `t_end`.
      
      See the issue fixed by this commit for more details.
      
      Fixes: #3402
      4e7d6633