Certain server tasks that use the data channel still display
in progress after the expire time for the task is reached. The problem only occurs if the data channel action is unsuccessful in contacting one or more clients.
Example tasks include the following:
- Any task that does a push agent install.
- A task that performs an Agent wake-up call.
To confirm the problem, run the following SQL query:
select count (AutoID) as CountExpiredTasks
from EPOAgentHandlerDataChannelWQMT with (nolock)
where ExpireTime < DateAdd (DD, -2, GetDate())
NOTES:
- The query returns a count of all rows in the data channel work queue table, where the expiry time is two or more days in the past.
- On an ePO server functioning properly, the query returns zero results.