]> git.saurik.com Git - redis.git/blobdiff - tests/support/tmpfile.tcl
Sentinel: do not crash against slaves not publishing the runid.
[redis.git] / tests / support / tmpfile.tcl
index 287b093177098371336c2df486c9eb61a8cc1ae0..809f587306c68f6adeceba36fcbd30d90782c5a4 100644 (file)
@@ -4,13 +4,7 @@ file mkdir $::tmproot
 
 # returns a dirname unique to this process to write to
 proc tmpdir {basename} {
-    if {$::diskstore} {
-        # For diskstore we want to use the same dir again and again
-        # otherwise everything is too slow.
-        set dir [file join $::tmproot $basename.diskstore]
-    } else {
-        set dir [file join $::tmproot $basename.[pid].[incr ::tmpcounter]]
-    }
+    set dir [file join $::tmproot $basename.[pid].[incr ::tmpcounter]]
     file mkdir $dir
     set _ $dir
 }