Alex

Results 7 comments of Alex

Me too occurred this error. I have 3 queries. Two queries insert and update executes in the transaction. And select query will be executed after that the transaction is completed....

I'm getting a connection from getConnection only for transactions. For not transaction queries i'm used a connection got from createPool. Probably connections not comes back to the pool, because a...

@AmitMY It happened because a connection didn't come back to the pool. A connection will not released automatically without using a release method. I've added a release method to my...

@AmitMY ![Screenshot_10](https://user-images.githubusercontent.com/23384595/79008522-655edc00-7b7f-11ea-9a03-0d6aaa23ae1a.png) If a connection was got from **getConnection** in this case to call release method after each query is completed. If an example was not helpful for you. I...

> Like how do you catch the "not released"? Do you mean how i determine that a connection didn't come back to the pool? Nohow. When all connections was engaged,...

You can do it. Add this string to VerifyShopify middleware to the handle method. ``` if (!$request->session()->has('host')) { $request->session()->put('host', $request->host); } ``` It needs to replace this string `host: "{{...

I am created a pull request with my changes are described above #1261