Skip to content

Commit

Permalink
Fix #442914 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
avelicka committed Aug 29, 2023
1 parent 1c659c0 commit 74cc63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/libmemcached-0.32/libmemcached/memcached_purge.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ memcached_return memcached_purge(memcached_server_st *ptr)
if (ptr->root->purging || /* already purging */
(memcached_server_response_count(ptr) < ptr->root->io_msg_watermark &&
ptr->io_bytes_sent < ptr->root->io_bytes_watermark) ||
(ptr->io_bytes_sent > ptr->root->io_bytes_watermark &&
(ptr->io_bytes_sent >= ptr->root->io_bytes_watermark &&
memcached_server_response_count(ptr) < 2))
{
return MEMCACHED_SUCCESS;
Expand Down

0 comments on commit 74cc63d

Please sign in to comment.