Skip to content

Commit

Permalink
fix pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
awick committed Mar 27, 2024
1 parent 7c25a8b commit 34d8fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_arkime/commands/cluster_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def _get_next_user_config(cluster_name: str, expected_traffic: float, spi_days:
return UserConfig(MINIMUM_TRAFFIC, DEFAULT_SPI_DAYS, DEFAULT_HISTORY_DAYS, DEFAULT_REPLICAS, DEFAULT_S3_STORAGE_DAYS, None)
# All of the parameters defined
else:
return UserConfig(expected_traffic, spi_days, history_days, replicas, pcap_days)
return UserConfig(expected_traffic, spi_days, history_days, replicas, pcap_days, viewer_prefix_list)

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

0 comments on commit 34d8fe6

Please sign in to comment.