Skip to content

Commit cc37335

Browse files
committed
Merge pull request #6 from lbarulski/fix/invalidate
Fix varnish 4.x
2 parents 167c5ad + add2f3c commit cc37335

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CacheTagsBundle/Invalidator/Proxy/Varnish.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function invalidate($tag)
6363
}
6464

6565
$out = sprintf("BAN %s HTTP/1.1\r\n", $this->path);
66-
$out .= sprintf("Host %s\r\n", $this->host);
66+
$out .= sprintf("Host: %s\r\n", $this->host);
6767
$out .= sprintf("%s: %s\r\n", $this->invalidationHeaderName, $tag);
6868
$out .= "Connection: Close\r\n\r\n";
6969

0 commit comments

Comments
 (0)