gemini icon indicating copy to clipboard operation
gemini copied to clipboard

Tokens are getting stuck in `Inflight` state

Open dkropachev opened this issue 2 years ago • 0 comments

Current flow is such that only place where token is getting released from the inflight state is validation :

	if stmt.ValuesWithToken != nil {
		defer func() {
			g.ReleaseToken(stmt.ValuesWithToken.Token)
		}()
	}

It is needed to make it work properly

dkropachev avatar May 10 '23 09:05 dkropachev