Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 34d8fe6

Browse files
committedMar 27, 2024·
fix pytest
1 parent 7c25a8b commit 34d8fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎manage_arkime/commands/cluster_create.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def _get_next_user_config(cluster_name: str, expected_traffic: float, spi_days:
189189
return UserConfig(MINIMUM_TRAFFIC, DEFAULT_SPI_DAYS, DEFAULT_HISTORY_DAYS, DEFAULT_REPLICAS, DEFAULT_S3_STORAGE_DAYS, None)
190190
# All of the parameters defined
191191
else:
192-
return UserConfig(expected_traffic, spi_days, history_days, replicas, pcap_days)
192+
return UserConfig(expected_traffic, spi_days, history_days, replicas, pcap_days, viewer_prefix_list)
193193

194194
def _get_previous_capacity_plan(cluster_name: str, aws_provider: AwsClientProvider) -> ClusterPlan:
195195
# Pull the existing plan, if possible

0 commit comments

Comments
 (0)
Please sign in to comment.