1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #11402: Avoid LookupError exception when running scripts with commit disabled

This commit is contained in:
jeremystretch
2023-01-09 10:57:13 -05:00
parent effcdb8723
commit 8729d60c1c
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
* [#11340](https://github.com/netbox-community/netbox/issues/11340) - Avoid flagging cable termination changes erroneously
* [#11379](https://github.com/netbox-community/netbox/issues/11379) - Fix TypeError exception when bulk editing custom date fields
* [#11384](https://github.com/netbox-community/netbox/issues/11384) - Correct current time display on script & report forms
* [#11402](https://github.com/netbox-community/netbox/issues/11402) - Avoid LookupError exception when running scripts with commit disabled
* [#11403](https://github.com/netbox-community/netbox/issues/11403) - Fix exception when scheduling a job in the past
---

View File

@ -7,4 +7,4 @@ __all__ = (
current_request = ContextVar('current_request', default=None)
webhooks_queue = ContextVar('webhooks_queue')
webhooks_queue = ContextVar('webhooks_queue', default=[])