From 6cd32e6819256b606331d81089431455b95949cc Mon Sep 17 00:00:00 2001 From: Antoine Millet Date: Thu, 24 Sep 2015 10:22:06 +0200 Subject: [PATCH] Fixed h tag to use the new background decorator API --- cloudcontrol/node/host/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudcontrol/node/host/tags.py b/cloudcontrol/node/host/tags.py index b88e5a1..e052f21 100644 --- a/cloudcontrol/node/host/tags.py +++ b/cloudcontrol/node/host/tags.py @@ -32,7 +32,7 @@ from cloudcontrol.common.client.tags import ttl, refresh, background @ttl(3600 * 24) # one day @refresh(30) -@background +@background() def h(): """Hostname tag.""" return getfqdn() -- GitLab