Index: /src/django_gheat/gheat/management/commands/import_nodes.py
===================================================================
--- /src/django_gheat/gheat/management/commands/import_nodes.py	(revision 9655)
+++ /src/django_gheat/gheat/management/commands/import_nodes.py	(revision 9656)
@@ -24,4 +24,6 @@
 logger.setLevel(logging.INFO)
 
+INPUT_TIMEOUT = 10
+
 
 class Command(BaseCommand):
@@ -40,7 +42,7 @@
 
     filename = args[0]
-    timeout = 2
     if filename == '-':
-      rlist, _, _ = select([sys.stdin], [], [], timeout)
+      logger.info("Waiting %s seconds for input to arive", INPUT_TIMEOUT)
+      rlist, _, _ = select([sys.stdin], [], [], INPUT_TIMEOUT)
       if rlist:
         fh = sys.stdin
