Skip to content

Commit

Permalink
t: avoid using "huge" to limit tmpfs usage
Browse files Browse the repository at this point in the history
Otherwise tests might fail on limited nodes
  • Loading branch information
steveschnepp committed Jul 11, 2019
1 parent 3622d02 commit 55c8d99
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contrib/munin-node-debug
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,8 @@ sub service
my $graph_data_size;
$graph_data_size = "debug" if $plugin_number % 5 == 0;
$graph_data_size = "normal" if $plugin_number % 5 == 1;
$graph_data_size = "huge" if $plugin_number % 5 == 2;
$graph_data_size = "custom 10,5 10,10 10" if $plugin_number % 5 == 3;
$graph_data_size = "custom 10,5 for 10, 5m for 10d" if $plugin_number % 5 == 4;
$graph_data_size = "custom 10,10 5,10 10" if $plugin_number % 5 == 3;
$graph_data_size = "custom 10,10 for 5, 5m for 1d" if $plugin_number % 5 == 4;
for (my $i = 0; $i < $fields_per_plugin; $i ++) {
my $ds = get_ds($plugin_number, $i);
my $ds_info = get_ds_info($plugin_number, $i);
Expand Down

0 comments on commit 55c8d99

Please sign in to comment.