Skip to content

Commit

Permalink
doc/typing updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mishaschwartz committed Aug 29, 2023
1 parent 0265941 commit 386028d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ CHANGES
------------------------------------------------------------------------------------

* Separate the application, cron job, and proxy (nginx) into separate containers so that they can be run independently.
* Add option to independently enable/disable the `parse_logs` cron job by setting the `PARSE_LOGS` configuration option
to `True`.
* Add option to independently enable/disable the ``parse_logs`` cron job by setting the ``PARSE_LOGS`` configuration
option to ``True``.
* Do not handle log rotation for nginx anymore. Nginx should handle this on its own.
* Made default port 2000 everywhere (not just in docker).
* Replace Docker image reference ``nginx:bullseye`` by ``nginx:stable-bullseye`` which gets updated more often,
Expand Down
2 changes: 1 addition & 1 deletion canarieapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
get_db()

CronAccessStats = TypedDict("CronAccessStats", {
"invocations": Optional[int], # count | Not monitored
"invocations": int, # count | Not monitored
"last_access": str, # ISO datetime | Never
"last_log_update": str, # ISO datetime | Never
"last_status_update": str, # ISO datetime | Never
Expand Down

0 comments on commit 386028d

Please sign in to comment.