Page 1 of 1

ERROR::[misc:813] Failed making...

Posted: March 1st, 2016, 11:49 pm
by theone85ca
Hi all,


Version: 0.7.20
OS: (Ex: CentOS7)
Install-type: python source
Firewall Software: Firewalld
Are you using IPV6? No
Is the issue reproducible? Yes


I have Sonarr passing nzb's to SABnzbd but its all of a sudden erring out. Has anyone ever seen this or can they point me in the right direction to fixing it?

I thought it was permission even though I've changed none but everything looks okay.


Code: Select all

ERROR::[misc:813] Failed making

Thanks in advance,
Nick

Re: ERROR::[misc:813] Failed making...

Posted: March 2nd, 2016, 12:51 am
by sander
This is the code in sabnzbd/misc.py:

Code: Select all

        if not create_all_dirs(dirpath, True):
            logging.error(T('Failed making (%s)'), clip_path(dirpath))
So: the create_all_dirs() fails, and you get the ERROR line.

Additional information: why is there no directory in your error line? Maybe no directory was specificied by you or sonarr, and thus it could not be created?

HTH