File tree 3 files changed +3
-3
lines changed 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):
81
81
for r in v :
82
82
# trailing dot is removed and avoid case sensitivity
83
83
if i == 4 or i == 6 :
84
- r = r [:- 1 ]
85
- r = r .lower ()
84
+ r = r .lower ().strip ('.' )
86
85
# timestamp is just epoch - second precision is only required
87
86
if i == 0 :
88
87
r = r .split ('.' )[0 ]
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ dbfilename dump.rdb
260
260
# The Append Only File will also be created inside this directory.
261
261
#
262
262
# Note that you must specify a directory here, not a file name.
263
- dir .. /db
263
+ dir ./db
264
264
265
265
################################# REPLICATION #################################
266
266
Original file line number Diff line number Diff line change 14
14
python3 -m pip install -r requirements
15
15
16
16
# REDIS #
17
+ mkdir -p db
17
18
test ! -d redis/ && git clone https://github.com/antirez/redis.git
18
19
pushd redis/
19
20
git checkout 5.0
You can’t perform that action at this time.
0 commit comments