-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scheduling two tasks at the same time. #15
Comments
@mgoldenberg Were you able to solve this? I'm running into the same problem in my early testing of this library. I know this project is no longer maintained but I haven't been able to find an alternative. Thanks in advance. |
@mgcox2: I tried and tried, but to no avail. If you manage to find a solution, do let me know. |
@mgoldenberg: Try adding the priority option to your tasks. The task with the higher priority should be scheduled, the other should not. |
@mgcox2: the problem I had was not due to a priority issue as far as I can tell. It isn't that I want |
@mgoldenberg have you found a solution to this issue? |
Unfortunately, I never did. I had started digging through the source, but then I got bored... alas. |
Hi, I'm trying to schedule two tasks at the same time on the same date that both require a particular resource whose
isNotReservable
field is set totrue
. As far as I understand, these two tasks should not conflict with one another; however, I can't get something like this to work. To be more explicit, the following data results in the scheduler successfully schedulingt2
, but failing to schedulet1
:Is this expected behavior? Or, perhaps I'm doing something wrong?
The text was updated successfully, but these errors were encountered: