From 7050ea83ad2d5173efe3067c260135a3e05cc600 Mon Sep 17 00:00:00 2001 From: davebshow <davebshow@gmail.com> Date: Sat, 24 Sep 2016 12:23:10 -0400 Subject: [PATCH] added cluster readonly to app class --- goblin/app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/goblin/app.py b/goblin/app.py index c8c56a3..89d05ca 100644 --- a/goblin/app.py +++ b/goblin/app.py @@ -66,9 +66,13 @@ class Goblin: await app.supports_transactions() return app + @property + def cluster(self): + return self._cluster + @property def config(self): - return self._cluster.config + return self.cluster.config @property def vertices(self): -- GitLab