-
Type:
Bug
-
Status: Closed
-
Priority:
Normal
-
Resolution: Fixed
-
Affects Version/s: PUP 3.4.2, PUP 3.7.0
-
Fix Version/s: PUP 3.7.1
-
Component/s: None
-
Labels:None
-
Environment:
Ruby 2.1.0
Ruby 2.0.0
Puppet-3.4.2
-
Template:customfield_10700 26269
-
Story Points:1
-
Sprint:Platform 2014-09-17
I haven't found anything out there so far, so I thought I'd just document it while I'm at it.
We ran into some other problem with the changes in net/http Ruby 2.1.0 introduced around the handling of gzip/deflate encoded content. This MIGHT be related.
So far we haven't been able to fix it.
Error: incorrect header check
|
Error: /Stage[main]/Nginx::Nginx/File[nginx-default-50x]/content: change from {md5}d74f9cdd604653c22c6752c46fffd587 to {md5}d45793c5a781c31eca1af96e394bfb84 failed: incorrect header check
|
The code in question (probably not very relevant):
file { "nginx-default-50x":
|
require => [ Package["nginx"], Exec["nginx-default-dir"], ],
|
path => "/usr/share/nginx/html/50x.html",
|
source => "puppet:///modules/nginx/50x-plain.html",
|
mode => 444,
|
}
|