Skip to content

Commit

Permalink
disabling channel close, looks like it causes a panic.
Browse files Browse the repository at this point in the history
Signed-off-by: quobix <dave@quobix.com>
  • Loading branch information
daveshanley committed Nov 25, 2023
1 parent aada30d commit 0d76e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index/rolodex_remote_loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ func (i *RemoteFS) Open(remoteURL string) (fs.File, error) {
i.logger.Info("waiting for remote file timed out, trying again", "file", remoteURL,
"remoteURL", remoteParsedURL.String())
case v := <-f:
close(f)
//close(f)
return v, nil
}
}
Expand Down

0 comments on commit 0d76e51

Please sign in to comment.