Skip to content

Commit 2694005

Browse files
authored
Merge pull request #2226 from mihaibuzgau/main
(FACT-2898) resolve facts sequential by default
2 parents 10be76a + cc43407 commit 2694005

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/facter/framework/core/options/option_store.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class OptionStore
2626
@config_file_external_dir = []
2727
@default_external_dir = []
2828
@fact_groups = {}
29-
@sequential = false
29+
@sequential = true
3030
@ttls = []
3131
@block_list = []
3232
@color = true
@@ -192,7 +192,7 @@ def reset_config
192192
@fact_groups = {}
193193
@block_list = {}
194194
@color = true
195-
@sequential = false
195+
@sequential = true
196196
@ttls = []
197197
@trace = false
198198
@timing = false

spec/framework/core/options/option_store_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
config_file_external_dir: [],
3737
default_external_dir: [],
3838
fact_groups: {},
39-
sequential: false,
39+
sequential: true,
4040
block_list: {},
4141
color: true,
4242
trace: false,

0 commit comments

Comments
 (0)