[#24602] Netrender master node IP information is reset to [Default] no matter what
[#24601] Net rendering master node fails to send/retrieve files to/from slaves Both Reported by Dan McGrath The second might not actually be fixed with this, but now there is better error checking and reporting. Misc: add poll method in Panel base class, to better support mixins with different inheritance order.
This commit is contained in:
@@ -281,12 +281,12 @@ def render_slave(engine, netsettings, threads):
|
||||
# thumbnail first
|
||||
if netsettings.use_slave_thumb:
|
||||
thumbname = thumbnail(filename)
|
||||
|
||||
f = open(thumbname, 'rb')
|
||||
conn.request("PUT", "/thumb", f, headers=headers)
|
||||
f.close()
|
||||
responseStatus(conn)
|
||||
|
||||
if thumbname:
|
||||
f = open(thumbname, 'rb')
|
||||
conn.request("PUT", "/thumb", f, headers=headers)
|
||||
f.close()
|
||||
responseStatus(conn)
|
||||
|
||||
f = open(filename, 'rb')
|
||||
conn.request("PUT", "/render", f, headers=headers)
|
||||
|
Reference in New Issue
Block a user