-
-
Notifications
You must be signed in to change notification settings - Fork 881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upstream members are never collected #1274
Labels
Comments
ghost
pushed a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 12, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
ghost
pushed a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 12, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
ghost
pushed a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 13, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
ghost
pushed a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 13, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
ghost
pushed a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 13, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
crispygoth
pushed a commit
to crispygoth/puppet-nginx
that referenced
this issue
Nov 14, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274 (cherry picked from commit 30bd2a7 on syseleven/1274_fix_upstream_member_condition)
SaschaDoering
added a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 19, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
SaschaDoering
added a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 19, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
SaschaDoering
added a commit
to syseleven/puppet-nginx
that referenced
this issue
Nov 28, 2018
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
ceonizm
pushed a commit
to ceonizm/puppet-nginx
that referenced
this issue
Jan 23, 2019
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
ceonizm
pushed a commit
to ceonizm/puppet-nginx
that referenced
this issue
Jan 23, 2019
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
cegeka-jenkins
pushed a commit
to cegeka/puppet-nginx
that referenced
this issue
Sep 13, 2019
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
Rubueno
pushed a commit
to Rubueno/puppet-nginx
that referenced
this issue
Oct 19, 2020
The condition which decides if we have upstream members configurred or if we import from PuppetDB was wrong. Even if no upstream members are defined the condition was true. Fixes voxpupuliGH-1274
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
node1.example.com
node2.example.com
What are you seeing
Deployment fails on
node2
due to the upstream having no members specified.What behaviour did you expect instead
The upstream should collect all exported members when
members
is not set explicitly.Output log
Any additional information you'd like to impart
The issue appears to be that the
members
parameter on theupstream
resource is set to a default of an emptyHash
butpuppet-nginx/manifests/resource/upstream.pp
Line 137 in ae2af80
undef
, which the value can never be as settingmembers
toundef
in a resource declaration results in it using the default value.The text was updated successfully, but these errors were encountered: