In Laravel 6, the queue has already been executed, but in Laravel Telescope, the queuing job still shows unfinished: pending
1. In Laravel 6, in the terminal, you can confirm that the queue has been executed. as shown in Figure 1
PS E:\wwwroot\object> php artisan queue:work
[2023-01-13 14:12:32][GHVw90qX0L3e9k3iZaJ5N8CYcSo2RftQ] Processing: Modules\ThemeStoreDB\Jobs\ThemeDeletionJob
[2023-01-13 14:12:35][GHVw90qX0L3e9k3iZaJ5N8CYcSo2RftQ] Processed: Modules\ThemeStoreDB\Jobs\ThemeDeletionJob
[2023-01-13 14:12:35][SdsCdHiZ3Mk2D7GDMmzNdV1U2wpfa0PF] Processing: Modules\ThemeStoreDB\Jobs\ThemeDeletionJob
[2023-01-13 14:12:37][SdsCdHiZ3Mk2D7GDMmzNdV1U2wpfa0PF] Processed: Modules\ThemeStoreDB\Jobs\ThemeDeletionJob
[2023-01-13 14:12:37][wCuCurEwV8BZma2n8hty3lx4HxyRDNXy] Processing: Modules\ThemeStoreDB\Jobs\ThemeDeletionJob
[2023-01-13 14:12:41][wCuCurEwV8BZma2n8hty3lx4HxyRDNXy] Processed: Modules\ThemeStoreDB\Jobs\ThemeDeletionJob
[2023-01-13 14:14:09][pCozFDgDIQpaLtjFSGG923orPRknPSM7] Processing: Modules\ThemeStoreDB\Jobs\ThemeInstallationJob
[2023-01-13 14:14:38][pCozFDgDIQpaLtjFSGG923orPRknPSM7] Processed: Modules\ThemeStoreDB\Jobs\ThemeInstallationJob
[2023-01-13 14:14:38][3RcAOkB0IASBFY6WQHWliuZvBEG2Krfb] Processing: Modules\ThemeStoreDB\Jobs\ThemeInstallationJob
[2023-01-13 14:15:11][3RcAOkB0IASBFY6WQHWliuZvBEG2Krfb] Processed: Modules\ThemeStoreDB\Jobs\ThemeInstallationJob
[2023-01-13 14:15:11][nmzxYtN0OV6QwgH3OUXDSALbxpUf0wBD] Processing: Modules\ThemeStoreDB\Jobs\ThemeInstallationJob
[2023-01-13 14:15:48][nmzxYtN0OV6QwgH3OUXDSALbxpUf0wBD] Processed: Modules\ThemeStoreDB\Jobs\ThemeInstallationJob
2. However, in Laravel Telescope, the status of the queuing job still shows that it is not finished. as shown in Figure 2
3. It is suspected that after updating Telescope, there is no reconfiguration and loading of the Telescope instance, and the command is executed and reloaded. as shown in Figure 3
PS E:\wwwroot\object> php artisan telescope:publish
Publishing complete.
Copied Directory [\vendor\laravel\telescope\public] To [\public\vendor\telescope]
Publishing complete.
4. Execute the queue task again. In Laravel Telescope, the status of the new queuing job has been displayed as finished: Processed. as shown in Figure 4



