Open-EO / Open-EO/openeo-python-client
allow inspection of job manager thread state
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 217
- Forks
- 56
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 2
Description
Users can only start a job manager thread, and stop it, but they also might want to inspect the state: is it still running? and do something with that.
e.g. @mbuchhorn was playing with something like this:
while not manager._stop_thread:
if not manager._stop_thread:
visualize_something()
time.sleep(15)
it should be possible to do that without using private _stop_thread
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start at the job manager implementation that starts and stops the manager thread, and inspect how the private _stop_thread flag is used. Define a public way to inspect whether the thread is still running, then verify that callers can use it without accessing _stop_thread.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- api
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 48/100