fixing typos

This commit is contained in:
Axel Kittenberger 2017-01-05 10:10:55 +01:00
parent ccae4ac142
commit 0a0fef20ac
2 changed files with 3 additions and 6 deletions

View File

@ -188,13 +188,10 @@ rsync.action = function
end
end
local pathsS = table.concat( paths, '\n' )
local paths0 = table.concat( paths, '\000' )
log(
'Normal',
'Calling rsync with filter-list of new/modified files/dirs\n',
filterS
table.concat( paths, '\n' )
)
local delete = nil
@ -208,7 +205,7 @@ rsync.action = function
spawn(
elist,
config.rsync.binary,
'<', filter0,
'<', table.concat( paths, '\000' ),
config.rsync._computed,
'-r',
delete,

View File

@ -35,7 +35,7 @@ local pid = spawn(
cwriteln( 'waiting for Lsyncd to startup' )
posix.sleep( 1 )
churn( srcdir, 50, false )
churn( srcdir, 150, false )
cwriteln( 'waiting for Lsyncd to finish its jobs.' )
posix.sleep( 10 )