diff options
author | June McEnroe <programble@gmail.com> | 2018-02-22 16:37:21 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-02-22 16:37:21 -0500 |
commit | 8488efece559b07597085b9ce5a0d59842eb5d34 (patch) | |
tree | 134103b505f69688fd1c1510dbc0f7bebfe3a2bd | |
parent | List streams if none given (diff) | |
download | stream-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 '')
-rw-r--r-- | ingest.c | 1 |
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); } } |