diff --git a/hello_world.py b/hello_world.py
index a5119194..5f6776a2 100644
--- a/hello_world.py
+++ b/hello_world.py
@@ -4,7 +4,10 @@ if uwsgi.loop == 'gevent':
print uwsgi.version
print uwsgi.workers()
-uwsgi.cache_set('foo', "Hello World from cache")
+try:
+ uwsgi.cache_set('foo', "Hello World from cache")
+except:
+ pass
def application(env, start_response):
start_response('200 OK', [('Content-Type', 'text/html')])
yield "foobar
"
@@ -12,4 +15,7 @@ def application(env, start_response):
gevent.sleep(10)
yield str(env['wsgi.input'].fileno())
yield "