summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/stages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/stages.py b/cloudinit/stages.py
index 5a00eae3..24a4d23f 100644
--- a/cloudinit/stages.py
+++ b/cloudinit/stages.py
@@ -474,7 +474,7 @@ class Transforms(object):
func_args = [name, copy.deepcopy(self.cfg),
c_cloud, transforms.LOG, args]
# This name will affect the semaphore name created
- run_name = "config-%s" % (name)
+ run_name = "transform-%s" % (name)
c_cloud.run(run_name, mod.handle, func_args, freq=freq)
except Exception as e:
util.logexc(LOG, "Running %s (%s) failed", name, mod)