Orchard icon indicating copy to clipboard operation
Orchard copied to clipboard

JobsQueue has error

Open zhhbo opened this issue 7 years ago • 2 comments

when i stoped the jobs,it still in running; the bug is that public class JobsQueueSettingsPart : ContentPart {

    public JobsQueueStatus Status {
        get { return this.Retrieve(x => x.Status); }
        set { this.Store(x => x.Status, value); }
    }
}

the Status property was not used.

zhhbo avatar Apr 14 '17 07:04 zhhbo