id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release
10667,Unicode number not converted to Integer,myingling,sandinak,I tuned the cache to 0_ as mentioned on the caching page so I could try debugging something.  Then I started getting warnings about Unicode not being an Int.\r\n\r\nIn r12025_ there is the following section:\r\n\r\n{{{\r\n425 	          if last_prune + self.cache_memsize_warn > now:\r\n426 	            self.env.log.info('pruning memcache in less than %d seconds_ you might increase cache_memsize.' % int(self.cache_memsize_warn))\r\n427 	               \r\n428 	        self.env.log.debug('pruning memcache by %d: (current: %d > max: %d )' % (self.cache_memprune_ len(self._cache)_ int(self.cache_memsize)))\r\n429 	        cache_keys = self._cache.keys()\r\n}}}\r\n\r\nI believe 'self.cache_memsize_warn' needs to be wrapped in an int cast_ or 'int(self.cache_memsize_warn)' everywhere it is used.  This change appeared to fix it for me.  I'm not sure if there are other places this much be changed as well.,defect,new,normal,DirectoryAuthPlugin,normal,,,,1.0
