-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fix mod_auth_openidc
parameters
#2525
Conversation
A typo in the data type cause an exception with recent Puppet 8 versions: ``` Error: The key '["IDTokenEncryptedResponseAlg"]' is declared more than once (file: /etc/puppetlabs/code/environments/production/modules/apache/types/oidcsettings.pp, line: 41, column: 57) on node b4d45d8831d5.mtgrj3ika5nejlcpzgeeecg0la.cx.internal.cloudapp.net ``` According to the upstream repository configuration file, this is a copy-paste error.
It was introduced in 9f7f38f. How did we not find this before? I see we don't have a test for the type in |
Lack of tests might not help indeed. The new Puppet 8 ensuring there is no duplicate allows us to find such issues now, so I guess this is okay. The ARM builds seems currently broken (or at least not reliable as they do not start), and I think we can ignore them. I will merge this so that we can move on on other PR broken by this typo. |
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
We need 12.0.3+ for Puppet 8 support due to puppetlabs/puppetlabs-apache#2525
A typo in the data type cause an exception with recent Puppet 8
versions:
According to the upstream repository configuration file, this is a
copy-paste error.