unlock mutex

This commit is contained in:
Abhishek Kondur
2023-06-27 21:31:04 +05:30
parent 50e093b456
commit 845bb33c68

View File

@@ -21,6 +21,7 @@ func getAllExtClientsFromCache() (extClients []models.ExtClient) {
for _, extclient := range extClientCacheMap { for _, extclient := range extClientCacheMap {
extClients = append(extClients, extclient) extClients = append(extClients, extclient)
} }
extClientCacheMutex.RUnlock()
return return
} }