Compare commits
No commits in common. "183309e1ed19a6ffad58f662fa15faac33b3dd48" and "e4002492843514ffc4bdff96b76e52a48f507f36" have entirely different histories.
183309e1ed
...
e400249284
@ -4,14 +4,6 @@ Changelog
|
|||||||
|
|
||||||
(unreleased)
|
(unreleased)
|
||||||
------------
|
------------
|
||||||
|
|
||||||
Fix
|
|
||||||
~~~
|
|
||||||
- Fix build errors, refs NOISSUE. [Simon Diesenreiter]
|
|
||||||
|
|
||||||
|
|
||||||
0.3.0 (2025-05-24)
|
|
||||||
------------------
|
|
||||||
- Ci: more CI fixes, refs NOISSUE. [Simon Diesenreiter]
|
- Ci: more CI fixes, refs NOISSUE. [Simon Diesenreiter]
|
||||||
- Ci: improve commit message generation script, refs NOISSUE. [Simon
|
- Ci: improve commit message generation script, refs NOISSUE. [Simon
|
||||||
Diesenreiter]
|
Diesenreiter]
|
||||||
|
@ -18,6 +18,10 @@ LdapIntegration.Instance = new LdapIntegration(AppConfiguration.Instance.LDAPCon
|
|||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
var rand = new Random();
|
||||||
|
var num = rand.NextInt64();
|
||||||
|
var mod = num % AppConfiguration.Instance.AverageDaysBetweenRequests;
|
||||||
|
|
||||||
Console.WriteLine("Setting up user check timer");
|
Console.WriteLine("Setting up user check timer");
|
||||||
var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
|
var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
|
||||||
userCheckTimer.OnOccurence += async (s, ea) =>
|
userCheckTimer.OnOccurence += async (s, ea) =>
|
||||||
|
@ -1 +1 @@
|
|||||||
0.3.1
|
0.3.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user