use AYON prefix in fusion env variables

This commit is contained in:
Jakub Trllo 2024-02-07 16:59:22 +01:00
parent ee018456c8
commit d13498a4e8
2 changed files with 2 additions and 2 deletions

View file

@ -308,7 +308,7 @@ class FusionEventThread(QtCore.QThread):
# getattr of UIManager.GetEvent tries to resolve the Remote Function
# through the PyRemoteObject
get_event = app.UIManager.GetEvent
delay = int(os.environ.get("OPENPYPE_FUSION_CALLBACK_INTERVAL", 1000))
delay = int(os.environ.get("AYON_FUSION_CALLBACK_INTERVAL", 1000))
while True:
if self.isInterruptionRequested():
return

View file

@ -14,7 +14,7 @@ class PulseThread(QtCore.QThread):
app = getattr(sys.modules["__main__"], "app", None)
# Interval in milliseconds
interval = os.environ.get("OPENPYPE_FUSION_PULSE_INTERVAL", 1000)
interval = os.environ.get("AYON_FUSION_PULSE_INTERVAL", 1000)
while True:
if self.isInterruptionRequested():