From 6dd509851fb09d38e1e90da067595f192a6b76ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 31 Aug 2016 11:40:42 +0200 Subject: [PATCH] Removed loading of Attract server from the master branch. Development of Cloud with Attract enabled has been moved to the 'with-attract' branch, so that we can deploy onto production without Attract enabled. Once we decide it's time to deploy together with Attract, we can merge the 'with-attract' branch back to master. --- cloud.py | 4 ---- requirements.txt | 1 - 2 files changed, 5 deletions(-) diff --git a/cloud.py b/cloud.py index 1e5b66c..18722db 100755 --- a/cloud.py +++ b/cloud.py @@ -1,12 +1,8 @@ #!/usr/bin/env python from pillar import PillarServer -from attract_server import AttractExtension - -attract = AttractExtension() app = PillarServer('.') -app.load_extension(attract, '/attract') app.process_extensions() if __name__ == '__main__': diff --git a/requirements.txt b/requirements.txt index ddeb0e6..b9b0c04 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ # Primary requirements pillar -attract_server pillarsdk # Secondary requirements (i.e. pulled in from primary requirements)