AWS Thinkbox Discussion Forums

Big Problem:3dsMax2010-2016 all versions can not render

Hi,
Test Maya and c4dR17 render ok,Only 3dsmax all versions can’nt render . :confused:

How to solve this problem?

Many thanks for any help!

In the slave reports this is the error we recieve.

=======================================================
Error

Error: plugin script “C:\Users\Administrator\AppData\Local\Thinkbox\Deadline7\slave\A-001\plugins\571f7e9a2cde6d1490ad8f9d\3dsmax.py”: SyntaxError : (‘EOL while scanning string literal’, (‘none’, 2720, 52, ’ self.AddPopupIgnorer( "MAXScript \xeb\x94\x94\xeb\xb2\x84\xea\xb1? )\n’)) (FranticX.Scripting.PythonNetException)

At Deadline.Plugins.ScriptPlugin.InitializeLocalScope(String scopeName, String scriptName, String scriptFile)
At Deadline.Plugins.ScriptPlugin.InitializeLocalPlugin(Job job)
At Deadline.Plugins.ScriptPlugin.StartJob(Job job, String& outMessage, AbortLevel& abortLevel)

=======================================================
Type

RenderPluginException

=======================================================
Stack Trace

At Deadline.Plugins.Plugin.StartJob(Job job)
At Deadline.Slaves.SlaveRenderThread.RenderCurrentTask(TaskLogWriter tlw)

=======================================================
Log

2016-04-27 02:59:09: BEGIN - A-001\Administrator
2016-04-27 02:59:09: 0: Start Job timeout is disabled.
2016-04-27 02:59:09: 0: Task timeout is disabled.
2016-04-27 02:59:09: 0: Loaded job: Untitled (571f7e9a2cde6d1490ad8f9d)
2016-04-27 02:59:09: 0: INFO: Executing plugin script C:\Users\Administrator\AppData\Local\Thinkbox\Deadline7\slave\A-001\plugins\571f7e9a2cde6d1490ad8f9d\3dsmax.py

=======================================================
Details

Date: 04/27/2016 02:59:13
Frames: 1
Elapsed Time: 00:00:00:02
Job Submit Date: 04/26/2016 22:43:40
Job User: administrator
Average RAM Usage: 2309141760 (27%)
Peak RAM Usage: 2312450048 (27%)
Average CPU Usage: 3%
Peak CPU Usage: 11%
Used CPU Clocks: 18051
Total CPU Clocks: 601680

=======================================================
Slave Information

Slave Name: A-001
Version: v7.2.0.18 R (79a3ddcab)
Operating System: Windows 7 (SP1)
Running As Service: No
Machine User: Administrator
IP Address: 192.168.0.42
MAC Address: 48:5B:39:19:B1:80
CPU Architecture: x64
CPUs: 8
CPU Usage: 0%
Memory Usage: 2.2 GB / 8.0 GB (27%)
Free Disk Space: 155.707 GB (3.289 GB on C:, 6.791 GB on D:, 5.537 GB on E:, 15.317 GB on F:, 48.065 GB on G:, 76.709 GB on H:)
Video Card: NVIDIA GeForce 9400 GT

That’s a bug in that release. You’ll need to upgrade Deadline (the current version is 7.2.4, so no new license needed). I can’t give you the download links here, but they should have been sent with the license, or you can ask sales@thinkboxsoftware.com for the download links.

An EOL ( End of Line ) error indicates that the Python interpreter expected a particular character or set of characters to have occurred in a specific line of code, but that those characters were not found before the end of the line . This results in Python stopping the program execution and throwing a syntax error .

The SyntaxError: EOL while scanning string literal error in python occurs when while scanning a string of a program the python hit the end of the line due to the following reasons:

  • Missing quotes
  • Strings spanning multiple lines

Strings can’t normally span multiple lines. If you don’t want the string to appear on multiple lines but you want to initialize it on multiple lines (so you can read it more easily), you can “escape” the newline by putting a backslash before the newline. If you want it to appear on multiple lines, you can use triple quotes around the string.

1 Like
Privacy | Site terms | Cookie preferences