You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It idles as per the configured time in the idling service
Additional context
ValueError: invalid literal for int() with base 10: ''
DEBUG:apscheduler.scheduler:Looking for jobs to run
DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-08-16 08:26:52.817680+00:00 (in 9.999445 seconds)
INFO:apscheduler.executors.default:Running job "check_activity (trigger: interval[0:00:10], next run at: 2024-08-16 08:26:52 UTC)" (scheduled at 2024-08-16 08:26:42.817680+00:00)
ERROR:apscheduler.executors.default:Job "check_activity (trigger: interval[0:00:10], next run at: 2024-08-16 08:26:52 UTC)" raised an exception
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/apscheduler/executors/base.py", line 125, in run_job
retval = job.func(*job.args, **job.kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app.py", line 86, in check_activity
if (int(time.time()-int(MAX_IDLE_TIME)) > int(last_active.text)):
^^^^^^^^^^^^^^^^^^
ValueError: invalid literal for int() with base 10: ''
Describe the bug.
My Visual Studio Code instance isn't idling
To Reproduce
Expected Behaviour
It idles as per the configured time in the idling service
Additional context
MAX_IDLE_TIME
has no valueThe text was updated successfully, but these errors were encountered: