summaryrefslogtreecommitdiff
path: root/tests/integration/replication.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/replication.tcl')
-rw-r--r--tests/integration/replication.tcl12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/integration/replication.tcl b/tests/integration/replication.tcl
index 05f62d5e8..44915be1b 100644
--- a/tests/integration/replication.tcl
+++ b/tests/integration/replication.tcl
@@ -523,10 +523,14 @@ foreach testType {Successful Aborted} {
$replica set mykey myvalue
# Set a function value on replica to check status during loading, on failure and after swapping db
- $replica function load LUA test {redis.register_function('test', function() return 'hello1' end)}
+ $replica function load {#!lua name=test
+ redis.register_function('test', function() return 'hello1' end)
+ }
# Set a function value on master to check it reaches the replica when replication ends
- $master function load LUA test {redis.register_function('test', function() return 'hello2' end)}
+ $master function load {#!lua name=test
+ redis.register_function('test', function() return 'hello2' end)
+ }
# Force the replica to try another full sync (this time it will have matching master replid)
$master multi
@@ -659,7 +663,9 @@ test {diskless loading short read} {
set start [clock clicks -milliseconds]
# Set a function value to check short read handling on functions
- r function load LUA test {redis.register_function('test', function() return 'hello1' end)}
+ r function load {#!lua name=test
+ redis.register_function('test', function() return 'hello1' end)
+ }
for {set k 0} {$k < 3} {incr k} {
for {set i 0} {$i < 10} {incr i} {