File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,8 +81,7 @@ def process_format_passivedns(line=None):
8181 for r in v :
8282 # trailing dot is removed and avoid case sensitivity
8383 if i == 4 or i == 6 :
84- r = r [:- 1 ]
85- r = r .lower ()
84+ r = r .lower ().strip ('.' )
8685 # timestamp is just epoch - second precision is only required
8786 if i == 0 :
8887 r = r .split ('.' )[0 ]
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ dbfilename dump.rdb
260260# The Append Only File will also be created inside this directory.
261261#
262262# Note that you must specify a directory here, not a file name.
263- dir .. /db
263+ dir ./db
264264
265265################################# REPLICATION #################################
266266
Original file line number Diff line number Diff line change 1414python3 -m pip install -r requirements
1515
1616# REDIS #
17+ mkdir -p db
1718test ! -d redis/ && git clone https://github.com/antirez/redis.git
1819pushd redis/
1920git checkout 5.0
You can’t perform that action at this time.
0 commit comments