1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-17 04:30:03 +02:00

jsontime: skip aliases and use actual format and location

This is so weird. this works in tests but not when running the
application. I guess there is some weird global state race condition
going on because its used by antelope-go.

Should rewrite the jsontime api because I have forked it anyway.
This commit is contained in:
Henrik Hautakoski 2024-06-22 17:39:10 +02:00
parent 01054fb0bf
commit 2b3dc35393
2 changed files with 3 additions and 9 deletions

View file

@ -1,8 +1,6 @@
package json
import (
"time"
jsontime "github.com/eosswedenorg-go/jsontime/v2"
"github.com/eosswedenorg/thalos/api/message"
)
@ -17,10 +15,6 @@ func createCodec() message.Codec {
}
func init() {
// Set timeformat used by SHIP api
jsontime.AddTimeFormatAlias("ship", "2006-01-02T15:04:05.000")
jsontime.AddLocaleAlias("ship", time.UTC)
// Register the json codec.
message.RegisterCodec("json", createCodec())
}