You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to be calling clock->storeRequest() after each Artisan::call(), However what seems to be happening is that each $request->databaseQueries is not reset and is appended to with the previous databaseQueries added on top leading to duplicate queries being shown in clockwork that weren't actually executed.
Any guidance on how to handle situations like this where im tracking individual commands within the context of a global request?
i realize this is a difficult example for a reproducible, if we are completely stuck I will try to create a sample repo
The text was updated successfully, but these errors were encountered:
I have the following pseudo code:
This seems to be calling
clock->storeRequest()
after eachArtisan::call()
, However what seems to be happening is that each$request->databaseQueries
is not reset and is appended to with the previous databaseQueries added on top leading to duplicate queries being shown in clockwork that weren't actually executed.Any guidance on how to handle situations like this where im tracking individual commands within the context of a global request?
i realize this is a difficult example for a reproducible, if we are completely stuck I will try to create a sample repo
The text was updated successfully, but these errors were encountered: