Skip to content
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

Warn when -j used unnecessarily #27

Closed
wants to merge 2 commits into from
Closed

Warn when -j used unnecessarily #27

wants to merge 2 commits into from

Conversation

creatorcary
Copy link
Contributor

Sometimes the user mistakenly passes the -j flag to call a job when the method does not represent a job. We should handle this cleanly by recognizing the result is not a job ID and handling the call as if -j had not been passed while warning the user.

@creatorcary creatorcary requested a review from themylogin March 3, 2025 15:49
if job == 'RETURN':
return jobobj
return jobobj.result()
if c.result in self._jobs:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be a race condition. How can we know that we've already received and handled a core.get_jobs ADDED event by the time we receive method return value?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we raise an exception in Job.__init__ instead?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How will this change anything?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With current architecture, there is no way to synchronize these events.

We also plan to get rid of jobs in 25.10

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Feel free to close this PR if you determine that it wouldn't be helpful.

@themylogin
Copy link
Contributor

Closing this as it is difficult to implement properly, and we're dropping jobs in 25.10 anyway.

@themylogin themylogin closed this Mar 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants