skip to Main Content

How not to start docker container on system reboot?

I have compose.yml file: api: restart: on-failure command: uvicorn app:app ... jobs: restart: on-failure command: python job.py ... job.py: import asyncio from prometheus_client import start_http_server async def background(sio): await asyncio.gather(...) # <- there are many tasks with while True start_http_server(5000)…

VIEW QUESTION

Laravel Job error Job is incomplete class

I'm getting an error I don't know how to fix so I wondering if I could get some help. My function: dispatch(new AppJobscreateSqlJob($databaseName, $data['company_name'])); This is the error: | 2022-12-13 21:36:38 | Exception: Job is incomplete class: {"__PHP_Incomplete_Class_Name":"App\Jobs\createSqlJob","99992","99992"} in /var/www/NTTJob/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:116…

VIEW QUESTION
Back To Top
Search