- 20 Apr, 2021 18 commits
-
-
Steven authored
-
Steven authored
-
Klemens Nanni authored
The last three commits already made configure recommend installing Python 3 packages and look for versioned executables, however with a low priority. This is a problem on systems such as OpenBSD 6.5 with a default Python version at 2.7, where 3.7 flavored Python packages get installed with a "-3" binary suffix. That is, when both rst2man and rst2man-3 are installed at configure time, the lower version will be picked unless explicitly passed through `--with-feature' arguments. Regardless of this specific case, trying more specificly versioned tool names first seems correctly in line with recent development and less error prone, so change it accordingly. Conflicts: configure.ac
-
Dridi Boukelmoune authored
For a given definition of "future" or "now".
-
Federico G. Schwindt authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
Until the naked "python" executable refers to python3 (currently it is still python2) it now takes lower precedence.
-
Simon authored
-
Dridi Boukelmoune authored
The assertion that the stale objcore of a conditional fetch cannot be failed unless it was streaming is incorrect. Between the moment when we grab the stale objcore in HSH_Lookup and the moment we try to use it after vcl_backend_response, the backend fetch may have completed or failed. Instead, we need to treat an ongoing fetch and a failed fetch as separate checks since the latter may happen with or without a boc. Conflicts: bin/varnishd/cache/cache_fetch.c
-
Nils Goroll authored
Test case by Reza, thank you Fixes #3433 Closes #3434
-
Dridi Boukelmoune authored
Once we ask the backend to close the connection after a given request there is no benefit from putting the backend connection back in the pool. It's actually a surefire way to force a subsequent backend fetch to fail its first attempt and go straight to its extra chance. Since we try to maximize connection reuse this would have to come from VCL and a user asking for the backend to close the connection should have a good reason to do so, for example when the backend is known to misbehave under certain circumstances. Closes #3400 Refs #3405
-
Dridi Boukelmoune authored
Whether the header was set by the backend or directly in VCL, it is now possible to signal that a backend connection should not be added back to the pool after a successful fetch with a Connection:close header. Pooling such a connection would be counter-productive if closing the session was requested by the backend itself, because it would then be likely that reusing the connection would result in busting the extra chance. Setting the Connection:close directly in VCL can help mitigating against a misbehaving backend. Refs #3400
-
Nils Goroll authored
When resolve requests race, we were not guaranteed to consider all backends because we updated a shared nxt variable. Fixes #3474
-
Reza Naghibi authored
We do not hold a reference, the magic can be unstable.
-
Reza Naghibi authored
-
Reza Naghibi authored
We can incorrectly reference resp.reason from other sources when jumping into vcl_synth. This also covers passing in a reason in vcl_backend_error.
-
Steven authored
The bo fields err_code and err_reason need to be reset on a retry otherwise the values are kept. Fixes #3525
-
- 13 Apr, 2021 2 commits
-
-
Guillaume Quintard authored
Conflicts: doc/sphinx/installation/install_source.rst
-
Guillaume Quintard authored
-
- 06 Nov, 2020 2 commits
-
-
Martin Blix Grydeland authored
-
Martin Blix Grydeland authored
-
- 05 Nov, 2020 1 commit
-
-
Martin Blix Grydeland authored
If given a build parameter called 'dist-url', the build script downloads a tarball from the given URL instead of doing a 'make dist' step.
-
- 04 Nov, 2020 2 commits
-
-
Pål Hermunn Johansen authored
This reverts commit 4f99d164. This was merged before review, by mistake. I am reverting this so that we can do the quality assurence before the actual merge. Sorry.
-
Pål Hermunn Johansen authored
-
- 02 Nov, 2020 1 commit
-
-
Reza Naghibi authored
Also make sure we didn't overflow before entering vcl_pipe. This would mean we have lost important connection headers.
-
- 31 Oct, 2020 1 commit
-
-
Poul-Henning Kamp authored
-
- 26 Oct, 2020 1 commit
-
-
Guillaume Quintard authored
-
- 24 Oct, 2020 1 commit
-
-
Guillaume Quintard authored
-
- 23 Oct, 2020 1 commit
-
-
Guillaume Quintard authored
-
- 07 Oct, 2020 2 commits
-
-
Reza Naghibi authored
-
BARON David authored
- Complete the missing HTTP response codes / messages from : https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml patch from master@d686166ad469cad4043ed24328f4377e0d5f71a7
-
- 14 Sep, 2020 1 commit
-
-
Reza Naghibi authored
-
- 26 Aug, 2020 1 commit
-
-
Reza Naghibi authored
-
- 20 Aug, 2020 2 commits
-
-
Reza Naghibi authored
-
Reza Naghibi authored
-
- 19 Aug, 2020 4 commits
-
-
Reza Naghibi authored
Switch the ctx and workspace to the req when resolving in pipe mode.
-
Reza Naghibi authored
Fixes #3329 Fixes #3385
-
Reza Naghibi authored
-
Nils Goroll authored
in VRT_priv_task() we asserted that only one of ctx->req and ctx->bo is set when not in vcl_pipe {}, but we also need to extend that assertion to when ctx->method == 0 after vcl_pipe as finished because VRT_priv_task() could be called from director resolution. Being at it, I also noticed that our behavior in vcl_pipe {} is inconsistent as, from the shard director perspective, it is a backend method. So now, vcl_pipe {} is handled like vcl_backend_* {}. We still need to make up our mind about #3329 / #3330 and depending on the outcome we might need to touch some places again which were changed in this commit. Fixes #3361 Conflicts: doc/changes.rst lib/libvmod_directors/vmod.vcc lib/libvmod_directors/vmod_shard.c
-