From 5ca326af83b90531d4d0c502bb1beabbe1b48c55 Mon Sep 17 00:00:00 2001 From: Amine Hilaly Date: Tue, 13 Aug 2019 19:51:14 +0200 Subject: bridge/core: add context.Context to ImportAll and ExportAll signatures bridge/core: add ImportResult objects to stream import events bridge/core: launchpad support asynchronous import bridge/github: cancellable export and import functions bridge/gitlab: cancellable export and import functions commands: bridge pull/push gracefull kill bridge/github: fix github import bridge/github: use simple context for imports bridge/core: name parameters in interfaces github/core: Add EventError to export and import events types bridge/gitlab: add context support in gitlab requests functions bridge/gitlab: remove imported events count from importer logic bridge/github: remove imported events count from importer logic bridge/github: add context support in query and muration requets bridge/github: fix bug duplicate editions after multiple calls bridge/core: import import and export events String methods bridge/gitlab: fix error handling in note import events commands/bridge: Add statistics about imports and exports bridge/gitlab: properly handle context cancellation bridge/github: improve error handling bridge: break iterators on context cancel or timeout bridge: add context timeout support bridge: improve event formating and error handling commands: handle interrupt and switch cases bridge/github: add export mutation timeouts bridge: fix race condition bug in the github and gitlab importers bridge/github: improve context error handling --- cache/repo_cache.go | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'cache') diff --git a/cache/repo_cache.go b/cache/repo_cache.go index d6e8857d..107a4876 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -172,18 +172,10 @@ func (c *RepoCache) lock() error { } func (c *RepoCache) Close() error { - for id := range c.identities { - delete(c.identities, id) - } - for id := range c.identitiesExcerpts { - delete(c.identitiesExcerpts, id) - } - for id := range c.bugs { - delete(c.bugs, id) - } - for id := range c.bugExcerpts { - delete(c.bugExcerpts, id) - } + c.identities = make(map[entity.Id]*IdentityCache) + c.identitiesExcerpts = nil + c.bugs = make(map[entity.Id]*BugCache) + c.bugExcerpts = nil lockPath := repoLockFilePath(c.repo) return os.Remove(lockPath) -- cgit