1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-08-24 20:08:55 +02:00

Testing CI/CD update

This commit is contained in:
ebosas
2021-11-03 16:54:40 +02:00
parent afff26a9fb
commit d589c846ce
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{{define "content" -}}
<div class="container">
<h3 class="my-4 ps-2">Recent messages ({{.Data.Count}}/{{.Data.Total}})</h3>
<h3 class="my-4 ps-2">Recent messages |from cache| ({{.Data.Count}}/{{.Data.Total}})</h3>
<table class="table">
<thead>
<tr>

View File

@@ -47,7 +47,7 @@ func GetCache(c *redis.Client) (*Cache, error) {
msgsCache = append(msgsCache, Message{
Message: message,
TimeFmt: timeutil.FormatDuration(message.Time) + "^",
TimeFmt: timeutil.FormatDuration(message.Time),
})
}