diff --git a/platypush/backend/http/__init__.py b/platypush/backend/http/__init__.py
index 5e5bdae61..1ee09e0f5 100644
--- a/platypush/backend/http/__init__.py
+++ b/platypush/backend/http/__init__.py
@@ -61,7 +61,7 @@ class HttpBackend(Backend):
         logging.info('Initialized HTTP backend on port {}'.format(self.port))
 
         self.server_proc = Process(target=app.run, kwargs={
-            'debug':True, 'host':'0.0.0.0', 'port':self.port
+            'debug':True, 'host':'0.0.0.0', 'port':self.port, 'use_reloader':False
         })
 
         time.sleep(1)