Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
a273ce95
Commit
a273ce95
authored
Oct 16, 2018
by
zhaozhao.zz
Browse files
Streams: rewrite empty streams with certain lastid
parent
b4f82683
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/aof.c
View file @
a273ce95
...
@@ -1167,7 +1167,7 @@ int rewriteStreamObject(rio *r, robj *key, robj *o) {
...
@@ -1167,7 +1167,7 @@ int rewriteStreamObject(rio *r, robj *key, robj *o) {
if
(
rioWriteBulkObject
(
r
,
key
)
==
0
)
return
0
;
if
(
rioWriteBulkObject
(
r
,
key
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"MAXLEN"
,
6
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"MAXLEN"
,
6
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"0"
,
1
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"0"
,
1
)
==
0
)
return
0
;
if
(
rioWriteBulkStr
ing
(
r
,
"*"
,
1
)
==
0
)
return
0
;
if
(
rioWriteBulkStr
eamID
(
r
,
&
s
->
last_id
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"x"
,
1
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"x"
,
1
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"y"
,
1
)
==
0
)
return
0
;
if
(
rioWriteBulkString
(
r
,
"y"
,
1
)
==
0
)
return
0
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment