Merge branch 'dev' into Fix-Failure-and-Success-Templates

pull/859/head
britannic 3 years ago committed by GitHub
commit 51ec7276e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,3 +1,6 @@
# 0.90.72 (10-28-2020)
- Fixed issue with graphs becoming stuck on reload
# 0.90.71 (10-13-2020)
- Reverted Docker user in Dockerfile

@ -89,10 +89,8 @@ func (s Storage) List() map[string]Item {
//Get a cached content by key
func (s Storage) Get(key string) []byte {
s.mu.Lock()
defer s.mu.Unlock()
item := s.items[key]
if item.Expired() {
if s.items[key].Expired() {
CacheStorage.Delete(key)
return nil
}

@ -1 +1 @@
0.90.71
0.90.72

Loading…
Cancel
Save