Skip to content
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
3 changes: 2 additions & 1 deletion cterasdk/common/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 8 additions & 1 deletion docs/source/UserGuides/Miscellaneous/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/ctera/ctera-python-sdk/pull/306>`_,
`#307 <https://github.com/ctera/ctera-python-sdk/pull/307>`_
`#307 <https://github.com/ctera/ctera-python-sdk/pull/307>`_,
`#308 <https://github.com/ctera/ctera-python-sdk/pull/308>`_


2.20.14
Expand Down