Skip to content

Commit

Permalink
Keep existing string formatting of timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
Gal Topper committed Sep 20, 2023
1 parent 9844145 commit 2bca409
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions backends/kv/writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -689,10 +689,6 @@ func valueToKeyString(value interface{}) string {
switch typedVal := value.(type) {
case string:
return typedVal
case time.Time:
seconds := typedVal.Unix()
nanos := typedVal.Nanosecond()
return fmt.Sprintf("%v:%v", seconds, nanos)
case bool:
// Python/storey compatibility by capitalizing
// IG-22141
Expand Down

0 comments on commit 2bca409

Please sign in to comment.