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
a2732291
Commit
a2732291
authored
Mar 23, 2020
by
hwware
Browse files
clean CLIENT_TRACKING_CACHING flag when disabled caching
parent
c1295bb9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tracking.c
View file @
a2732291
...
@@ -94,7 +94,7 @@ void disableTracking(client *c) {
...
@@ -94,7 +94,7 @@ void disableTracking(client *c) {
server
.
tracking_clients
--
;
server
.
tracking_clients
--
;
c
->
flags
&=
~
(
CLIENT_TRACKING
|
CLIENT_TRACKING_BROKEN_REDIR
|
c
->
flags
&=
~
(
CLIENT_TRACKING
|
CLIENT_TRACKING_BROKEN_REDIR
|
CLIENT_TRACKING_BCAST
|
CLIENT_TRACKING_OPTIN
|
CLIENT_TRACKING_BCAST
|
CLIENT_TRACKING_OPTIN
|
CLIENT_TRACKING_OPTOUT
);
CLIENT_TRACKING_OPTOUT
|
CLIENT_TRACKING_CACHING
);
}
}
}
}
...
...
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