Replies: 1 comment 2 replies
-
Assuming that you defined an When the app is running, it needs at least one request to build the tenant / shell and then start the bg task. There is a pending a PR #10638 that will allow to warmup the tenant / shell to not have to wait for a first request. That said, on a prod server if your app is recycled the bg task is stopped, here you may need a way to keep it alive. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My background task is working locally but when i deployed on server it not working. The job responsibility is to publish and unpublish content item.
The implementation is below:
foreach (var item in publishPostsPromotionDetails)
{
item.Published = false;
Please help.
Beta Was this translation helpful? Give feedback.
All reactions