Conversation
|
@ashikka a general consideration. I believe this task is about searching log entries by two dates (from, to). The client sends two dates as queryparams ( |
Oh alright. I did not consider that. |
… into feat/filter-log-entries-by-date
|
Now, we have changed the time type to Before: After: |
|
In container tests, now we have to wrap the |
|
After doing the comments above, tests will still fail because the expected time is not equal to actual time. |
|
Hi @ashikka . In order to use same date format through all katydid service use this code to serialize all dates: val unifiedFormat: DateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss'Z'")
fun ZonedDateTime.toUnifiedFormat(): String = this.format(unifiedFormat) |
No description provided.