add _beauty to subset name

This commit is contained in:
Kayla Man 2023-05-26 19:36:14 +08:00
parent e633cc7dec
commit 2d3ba2af05
3 changed files with 62 additions and 30 deletions

View file

@ -348,7 +348,7 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
self.log.info("Submitting Deadline job ...")
url = "{}/api/jobs".format(self.deadline_url)
response = requests.post(url, json=payload, timeout=10)
response = requests.post(url, json=payload, timeout=10, verify=False)
if not response.ok:
raise Exception(response.text)