From e825b4dd8564b39c57c1428bcddb68c82fae94cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Tue, 30 May 2023 14:25:55 +0200 Subject: [PATCH] Update PrimaryHash3 --- scnserver/TODO.md | 10 +++++----- scnserver/db/schema/assets.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scnserver/TODO.md b/scnserver/TODO.md index 0953904..6b4d82a 100644 --- a/scnserver/TODO.md +++ b/scnserver/TODO.md @@ -6,8 +6,6 @@ #### BEFORE RELEASE - - finish tests (!) - - migration script for existing data apply local deletion in (my) app delete excessive dockerwatch messages (directly in db?) @@ -28,7 +26,7 @@ Register(ErrType) methods, errtypes then as structs log.xxx package with same interface as zerolog - - jobs to clear requests-db and logs-db after to only keep X entries... + - jobs to clear requests-db to only keep X entries... (logs-db already exists) - /send endpoint should be compatible with the [ webhook ] notifier of uptime-kuma (or add another /kuma endpoint) @@ -51,8 +49,6 @@ - TODO-comments - - why do some tests take 5 seconds (= duration of context timeout??) - #### PERSONAL - in my script: use `srvname` for sendername @@ -86,6 +82,10 @@ * needs to handle joined data * rfctime.Time... + - use job superclass (copy from isi/bnet/?), reduce duplicate code + + - golang ci + - cannot open sqlite in dbbrowsr (cannot parse schema?) -> https://github.com/sqlitebrowser/sqlitebrowser/issues/292 -> https://github.com/sqlitebrowser/sqlitebrowser/issues/29266 diff --git a/scnserver/db/schema/assets.go b/scnserver/db/schema/assets.go index ce8d563..5194b4d 100644 --- a/scnserver/db/schema/assets.go +++ b/scnserver/db/schema/assets.go @@ -15,7 +15,7 @@ const PrimaryHash2 = "07ed1449114416ed043084a30e0722a5f97bf172161338d2f7106a8dfd //go:embed primary_3.ddl var PrimarySchema3 string -const PrimaryHash3 = "a4851e7953d3423622555cde03d2d0ea2ca367fbe28aa3e363771f1d04bed90a" +const PrimaryHash3 = "65c2125ad0e12d02490cf2275f0067ef3c62a8522edf9a35ee8aa3f3c09b12e8" //go:embed requests_1.ddl var RequestsSchema1 string