Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

Commit

Permalink
Fix statistics shown running memcache:statistics command
Browse files Browse the repository at this point in the history
  • Loading branch information
falvarez committed Jun 23, 2016
1 parent b455870 commit 620e4d8
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 620e4d8

Please sign in to comment.