Scheduler Service fixes
This commit is contained in:
parent
91d9ee7d99
commit
2cf0890e14
6 changed files with 37 additions and 44 deletions
|
@ -1868,11 +1868,10 @@ namespace WebsitePanel.EnterpriseServer
|
|||
new SqlParameter("@guid", guid));
|
||||
}
|
||||
|
||||
public static IDataReader GetProcessBackgroundTasks(int actorId, BackgroundTaskStatus status)
|
||||
public static IDataReader GetProcessBackgroundTasks(BackgroundTaskStatus status)
|
||||
{
|
||||
return SqlHelper.ExecuteReader(ConnectionString, CommandType.StoredProcedure,
|
||||
ObjectQualifier + "GetProcessBackgroundTasks",
|
||||
new SqlParameter("@actorId", actorId),
|
||||
ObjectQualifier + "GetProcessBackgroundTasks",
|
||||
new SqlParameter("@status", (int)status));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue