diff --git a/cterasdk/common/types.py b/cterasdk/common/types.py index 145d3e6f..c669a4f9 100644 --- a/cterasdk/common/types.py +++ b/cterasdk/common/types.py @@ -187,7 +187,8 @@ def from_server_object(param): def __str__(self): return str(dict(upload_kbps=self.upload, download_kbps=self.download, - start=self.schedule.start, end=self.schedule.end, days=[day_of_week(day) for day in self.schedule.days])) + start=self.schedule.start, end=self.schedule.end, + days=[day_of_week(day) for day in self.schedule.days or list(range(0, 7))])) class ThrottlingRuleBuilder: diff --git a/docs/source/UserGuides/Miscellaneous/Changelog.rst b/docs/source/UserGuides/Miscellaneous/Changelog.rst index 49e4a06e..de41e88a 100644 --- a/docs/source/UserGuides/Miscellaneous/Changelog.rst +++ b/docs/source/UserGuides/Miscellaneous/Changelog.rst @@ -4,13 +4,20 @@ Changelog 2.20.15 ------- +Improvements +^^^^^^^^^^^^ + +* Support retrieving, adding, and removing Edge Filer hosts file entries + Bug Fixes ^^^^^^^^^ * Fixed a documentation error related to deleting and undeleting Team Portal tenants. +* Fixed an error when printing Edge Filer throttling policy rules set to "Every Day". Related issues and pull requests on GitHub: `#306 `_, -`#307 `_ +`#307 `_, +`#308 `_ 2.20.14