File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
acceptance/scripts/generic
src/ruby/puppetserver-lib/puppet/server Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ do_init()
8
8
exit -1;
9
9
fi
10
10
11
- bundle exec beaker-hostgenerator $GENCONFIG_LAYOUT > $BEAKER_CONFIG
11
+ bundle exec beaker-hostgenerator --hypervisor abs $GENCONFIG_LAYOUT > $BEAKER_CONFIG
12
12
13
13
BEAKER_INIT=" bundle exec beaker init --debug"
14
14
BEAKER_INIT=" $BEAKER_INIT --type aio"
Original file line number Diff line number Diff line change @@ -208,8 +208,10 @@ def extract_trusted_facts(request_data, facts)
208
208
end
209
209
210
210
def get_facts_from_terminus ( nodename , environment )
211
+ # Ignore the cache terminus, which is not guaranteed to store trusted facts
211
212
facts = Puppet ::Node ::Facts . indirection . find ( nodename ,
212
- { environment : environment } )
213
+ { environment : environment ,
214
+ ignore_cache : true } )
213
215
214
216
# If no facts have been stored for the node, the terminus will return nil
215
217
if facts . nil?
You can’t perform that action at this time.
0 commit comments