jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/347900 )

Change subject: wikitech: Enable binary memcached protocol
......................................................................


wikitech: Enable binary memcached protocol

Enable the binary memcache protocol to silence "PHP Warning:
Memcached::touch(): touch is only supported with binary protocol".

Bug: T158613
Change-Id: I2d5472cdb208f69b291ab0cd0f92304aff3e4fc1
---
M wmf-config/mc.php
1 file changed, 4 insertions(+), 1 deletion(-)

Approvals:
  Chad: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/wmf-config/mc.php b/wmf-config/mc.php
index 124ae45..7eb949a 100644
--- a/wmf-config/mc.php
+++ b/wmf-config/mc.php
@@ -14,7 +14,10 @@
        'server_failure_limit' => 1e9,
        'retry_timeout'        => -1,
        'loggroup'             => 'memcached',
-       'timeout'              => $wgMemCachedTimeout
+       'timeout'              => $wgMemCachedTimeout,
+       'use_binary_protocol'  => defined( 'HHVM_VERSION' )
+               ? false
+               : true,  # T158613: enable binary protocol for wikitech
 ];
 
 # vim: set sts=4 sw=4 et :

-- 
To view, visit https://gerrit.wikimedia.org/r/347900
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I2d5472cdb208f69b291ab0cd0f92304aff3e4fc1
Gerrit-PatchSet: 3
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: BryanDavis <[email protected]>
Gerrit-Reviewer: BryanDavis <[email protected]>
Gerrit-Reviewer: Chad <[email protected]>
Gerrit-Reviewer: Florianschmidtwelzow <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to