mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
use host name from context data
This commit is contained in:
parent
7016ca41f7
commit
d04abc3767
1 changed files with 6 additions and 6 deletions
|
|
@ -310,10 +310,10 @@ class IntegrateAsset(pyblish.api.InstancePlugin):
|
|||
# Process all file transfers of all integrations now
|
||||
self.log.debug("Integrating source files to destination ...")
|
||||
file_transactions.process()
|
||||
self.log.debug("Backed up existing files: "
|
||||
"{}".format(file_transactions.backups))
|
||||
self.log.debug("Transferred files: "
|
||||
"{}".format(file_transactions.transferred))
|
||||
self.log.debug(
|
||||
"Backed up existing files: {}".format(file_transactions.backups))
|
||||
self.log.debug(
|
||||
"Transferred files: {}".format(file_transactions.transferred))
|
||||
self.log.debug("Retrieving Representation Site Sync information ...")
|
||||
|
||||
# Get the accessible sites for Site Sync
|
||||
|
|
@ -780,8 +780,8 @@ class IntegrateAsset(pyblish.api.InstancePlugin):
|
|||
return {
|
||||
"families": anatomy_data["family"],
|
||||
"tasks": task.get("name"),
|
||||
"hosts": anatomy_data["app"],
|
||||
"task_types": task.get("type")
|
||||
"task_types": task.get("type"),
|
||||
"hosts": instance.context["hostName"],
|
||||
}
|
||||
|
||||
def get_rootless_path(self, anatomy, path):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue