From 522dcf5ed3e69845c11679332954a86f0eff1beb Mon Sep 17 00:00:00 2001 From: olia-dev Date: Wed, 10 Jul 2019 12:40:26 +0200 Subject: [PATCH] related #4274 - moved function 'create_temporary_fifo' to 'awx/main/utils/common.py' and referenced it in other plugins (fixed errors) --- awx/main/utils/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/utils/common.py b/awx/main/utils/common.py index b16b142bce..cf3a511e28 100644 --- a/awx/main/utils/common.py +++ b/awx/main/utils/common.py @@ -1016,6 +1016,7 @@ class classproperty: def __get__(self, instance, ownerclass): return self.fget(ownerclass) + def create_temporary_fifo(data): """Open fifo named pipe in a new thread using a temporary file path. The thread blocks until data is read from the pipe.