Skip to content

1.2

Compare
Choose a tag to compare
@agarbato agarbato released this 19 Dec 18:07
· 105 commits to main since this release
9449de3
  • Fix client list page.

Replace long query with join tables clients/events.
Lastseen client info is now added on clients table.
Not often updated clients were not shown on client list.
To update start with a fresh db (deleting unicloud.db) or add the column to client table

 alter table clients add column lastseen datetime;
  • Fix apscheduler execution (bug)
    A new random jobid was created on every docker startup resulting in multiple executions not honoring sync_interval parameter.
    Added id to fix the issue on apscheduler run.
    Stop the client and delete jobs.sqlite on data root folder if you still experience the same issue.