summary refs log tree commit diff
path: root/ingest.c
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-22 16:37:21 -0500
committerJune McEnroe <programble@gmail.com>2018-02-22 16:37:21 -0500
commit8488efece559b07597085b9ce5a0d59842eb5d34 (patch)
tree134103b505f69688fd1c1510dbc0f7bebfe3a2bd /ingest.c
parentList streams if none given (diff)
downloadstream-8488efece559b07597085b9ce5a0d59842eb5d34.tar.gz
stream-8488efece559b07597085b9ce5a0d59842eb5d34.zip
Sleep before truncation
To give viewers a chance to catch up. I wonder how bad this will be.
Diffstat (limited to 'ingest.c')
-rw-r--r--ingest.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ingest.c b/ingest.c
index 6ba387b..79b0e38 100644
--- a/ingest.c
+++ b/ingest.c
@@ -62,5 +62,6 @@ int main(int argc, char *argv[]) {
 
             totalSize += readSize;
         }
+        sleep(1);
     }
 }