First cut of Conversation Search #518

Merged
sarah merged 5 commits from conversation_search into master 2023-07-13 19:39:41 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit 77e4e981e8 - Show all commits

View File

@ -344,7 +344,7 @@ func (e *engine) Shutdown() {
log.Infof("shutting down ephemeral service")
// work around: service.shutdown() can block for a long time if it is Open()ing a new connection, putting it in a
// goroutine means we can perform this operation and let the per service shutdown in their own time or until the app exits
conn := connection; // don't capture loop variable
conn := connection // don't capture loop variable
go func() {
conn.connectingLock.Lock()
conn.service.Shutdown()