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

OverflowError on BlockingScheduler on Windows #50

Closed
agronholm opened this issue May 27, 2014 · 1 comment
Closed

OverflowError on BlockingScheduler on Windows #50

agronholm opened this issue May 27, 2014 · 1 comment

Comments

@agronholm
Copy link
Owner

Originally reported by: David Hait (Bitbucket: dhait, GitHub: dhait)


Simple blocking scheduler on windows (Python 3.3):

scheduler = BlockingScheduler()
    try:
        scheduler.start()
    except (KeyboardInterrupt, SystemExit):
        pass

throws exception:

File "testme.py", line 291, in main
scheduler.start()

File "C:\Python33\lib\site-packages\apscheduler-3.0.0.pre1-py3.3.egg\apscheduler\schedulers\blocking.py", line 17, in start
self._main_loop()

File "C:\Python33\lib\site-packages\apscheduler-3.0.0.pre1-py3.3.egg\apscheduler\schedulers\blocking.py", line 26, in _main_loop
self._event.wait(wait_seconds or self.MAX_WAIT_TIME)

File "C:\Python33\lib\threading.py", line 547, in wait
signaled = self._cond.wait(timeout)

File "C:\Python33\lib\threading.py", line 288, in wait
gotit = waiter.acquire(True, timeout)

OverflowError: timeout value is too large


@agronholm
Copy link
Owner Author

Original comment by Alex Grönholm (Bitbucket: agronholm, GitHub: agronholm):


Thanks for reporting this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant