Skip to content

Commit

Permalink
Revert "Merge branch 'skarpree-submitter-cameras' of https://github.c…
Browse files Browse the repository at this point in the history
…om/skarpree/deadline-cloud-for-maya into skarpree-submitter-cameras"

This reverts commit 86a0523, reversing
changes made to 33238c6.

Signed-off-by: Karpreet Sethi <[email protected]>
  • Loading branch information
skarpree committed Feb 26, 2025
1 parent 86a0523 commit 5c9a99d
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions src/deadline/maya_adaptor/MayaAdaptor/adaptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,22 +201,8 @@ def _get_regex_callbacks(self) -> list[RegexCallback]:
re.compile("\\[PROGRESS\\] ([0-9]+) percent"),
re.compile("([0-9]+)% done"), # arnold
re.compile("R90000\\s+([0-9]+)%"), # renderman
re.compile("V-Ray: +([0-9]+)%"), #vray
re.compile("V-Ray: +([0-9]+) %"), #vray
]
error_regexes = [
re.compile( r"Frame rendering aborted.", re.IGNORECASE),
re.compile( r"Rendering was internally aborted", re.IGNORECASE),
re.compile( r'Cannot find procedure "rsPreference"', re.IGNORECASE),
re.compile( r"\[mtoa\] Failed batch render", re.IGNORECASE),
re.compile( r"Plug-in, \"mtoa\", was not found on MAYA_PLUG_IN_PATH", re.IGNORECASE),
re.compile( r".*V-Ray error: .*", re.IGNORECASE),
re.compile( r".*The system does not support the required CUDA compute capabilities.*", re.IGNORECASE),
re.compile( r".*Failed to init the CUDA driver API.*", re.IGNORECASE),
re.compile( r".*CUDA_ERROR_UNKNOWN.*", re.IGNORECASE),
re.compile( r"Render failed", re.IGNORECASE),
re.compile( r".*Exception:.*|.*Error:.*|.*Warning.*|.*SEVERE.*"),
]
error_regexes = [re.compile(".*Exception:.*|.*Error:.*|.*Warning.*|.*SEVERE.*")]
version_regexes = [re.compile("MayaClient: Maya Version ([0-9]+)")]

callback_list.append(RegexCallback(completed_regexes, self._handle_complete))
Expand Down

0 comments on commit 5c9a99d

Please sign in to comment.