Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #76 from falvarez/FixStatisticsReport
Browse files Browse the repository at this point in the history
Fix statistics shown running memcache:statistics command
  • Loading branch information
mevdschee authored Jun 24, 2016
2 parents 736b09c + 620e4d8 commit e695603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command/StatisticsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$pool = $input->getArgument('pool');
try {
$memcache = $this->getContainer()->get('memcache.'.$pool);
$output->writeln($this->formatStats($memcache->getStats()));
$output->writeln($this->formatStats($memcache->getExtendedStats()));
} catch (ServiceNotFoundException $e) {
$output->writeln("<error>pool '$pool' is not found</error>");
}
Expand Down

0 comments on commit e695603

Please sign in to comment.