We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd9456 commit bc8c2e6Copy full SHA for bc8c2e6
1 file changed
src/Google/Client.php
@@ -90,9 +90,11 @@ function_exists('date_default_timezone_set')) {
90
} else if ( !($config instanceof Google_Config)) {
91
$config = new Google_Config();
92
93
- // Automatically use Memcache if we're in AppEngine.
94
if ($this->isAppEngine()) {
+ // Automatically use Memcache if we're in AppEngine.
95
$config->setCacheClass('Google_Cache_Memcache');
96
+ // Automatically disable compress.zlib, as currently unsupported.
97
+ $config->setClassConfig('Google_Http_Request', 'disable_gzip', true);
98
}
99
100
0 commit comments