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
Like say, I have below task defined, you can see there has "async" added.
this is because the ".run.sh" will takes very long time, usually about 3 minutes, it is for start our app server. after added async option, it works good from cli.
How can I do the same with Suitable API? could you advise me?
Having never used async I had a look at this and it turns out that Suitable doesn't support this at the moment. I'm not sure I'll implement this any time soon, so for now I see three options:
Increase your SSH timeout, if you are hitting it the limit.
Start the app in a separate thread, if you want concurrency.
Turn your app into a systemd service and start it using --no-block, then check on it later.
But Suitable doesn't have an integrated answer for you yet. I'll keep this issue open until Suitable itself supports it, but this won't be anytime soon.,
Hello Sir @href
Like say, I have below task defined, you can see there has "async" added.
this is because the ".run.sh" will takes very long time, usually about 3 minutes, it is for start our app server. after added async option, it works good from cli.
How can I do the same with Suitable API? could you advise me?
Thanks a lot!
The text was updated successfully, but these errors were encountered: