Closed konstan closed 9 years ago
The files are created in the temporary directory and never removed. Example:
self.stdout = open(os.path.join(tmpdir,('stratuslab_%s.log' % dateNow)), 'a') self.stderr = open(os.path.join(tmpdir,('stratuslab_%s.err' % dateNow)), 'a')
On the heavily used systems this leads to exhaustion of the inodes on the partition the temporary folder resides.
The files are created in the temporary directory and never removed. Example:
On the heavily used systems this leads to exhaustion of the inodes on the partition the temporary folder resides.