[Resolved] Issue Accessing IDE Debug Session

Is there a current outage as one of our app is displaying an error but another one of our apps is still running just fine?

The IDE seems to load up ok but I cannot run a debug session either as it comes up with the same error

image

I have tried restarting the browser, and also different apps.

All my sites and debugger session are running.

Could be site specific.

1 Like

Looks like this has resolved itself after a complete reboot and some disk clean up - I suspect this was something to do with a hard drive that was completely full :man_facepalming:

2 Likes

Sorry but I had to :stuck_out_tongue:

import shutil
import os


def low_disk_space_alert(threshold_percentage=10) -> bool:

    disk_usage = shutil.disk_usage(os.path.abspath(os.getcwd()))

    return (disk_usage.free / disk_usage.total) * 100 < threshold_percentage

2 Likes