cortexapps-cli 0.26.4__tar.gz → 0.26.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cortexapps-cli
3
- Version: 0.26.4
3
+ Version: 0.26.5
4
4
  Summary: Command Line Interface for cortexapps
5
5
  License: MIT
6
6
  Author: Cortex Apps
@@ -809,6 +809,9 @@ def export(args):
809
809
  f1 = open(catalog_directory + "/" + output_tag + ".yaml", 'w')
810
810
  f1.write(str(descriptor) + "\n")
811
811
 
812
+ # Remove page from args so we don't paginate subsequent calls.
813
+ delattr(args, 'page')
814
+
812
815
  if any(export_type == "ALL" or export_type == "ip-allowlist" for export_type in args.types.split()):
813
816
  print("Getting IP Allowlist definitions")
814
817
  ip_allowlist_json=json_directory + "/ip-allowlist.json"
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "cortexapps-cli"
3
3
  # version will be incremented via command line as part of github actions build
4
- version = "0.26.4"
4
+ version = "0.26.5"
5
5
  description = "Command Line Interface for cortexapps"
6
6
  license = "MIT"
7
7
  authors = [
File without changes