Skip to content

Bug fixes [5.0.20] #311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion axonius_api_client/api/assets/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def split_search(self, value: str, adapter: str = AGG_ADAPTER_NAME) -> Tuple[str

# Problem are fields containing ":" from adapters that populate dynamic fields
# PBUG: special check for 'custom attributes' coming from esx adapter.
if ":" in search and 'custom attributes' not in search:
if ":" in search and 'custom_attributes' not in search:
adapter_split, field = [x.strip() for x in search.split(":", 1)]
if not adapter_split:
adapter_split = adapter
Expand Down
1 change: 1 addition & 0 deletions axonius_api_client/api/json_api/enforcements.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ class EnforcementSchedule(BaseEnum):
monthly: str = "monthly"
daily: str = "daily"
weekly: str = "weekly"
custom: str = "custom"

@classmethod
def get_value(
Expand Down
2 changes: 1 addition & 1 deletion axonius_api_client/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""Version information for this package."""

__version__ = "5.0.19"
__version__ = "5.0.20"
VERSION: str = __version__
"""Version of package."""

Expand Down
Loading