i am getting stuck at only this step my pipeline is running but it is not going for next step in my pipeline how can i run them in non interactive mode.
Hello @Siddhant Pandey and thank you for reaching out to Community!
From the screenshots you shared, it seems like your Python program is starting a service, and this service is running on a loop and not returning an exit code, which will keep the pipeline in the Running state. The way that pipelines identify when a command end is by verifying the exit code. If the command you are executing is running on a loop, it will not return an exit code and the pipeline will continue its execution.
In this case, you might want to check if the service you are starting (it seems to be Uvicorn) has an option available to run in detached mode, where the service will start and keep running in the background, while the pipeline can continue to the next commands.
I found the following thread that might be of help, which has a discussion on how to run Uvicorn in detached mode:
Thank you, @Siddhant Pandey !
Patrik S
yes you are right i have passed reload = true in my main.py file i will may that could be the issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.