Skip to content

Commit

Permalink
changed some configuration keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Bosco van Hoi committed Mar 2, 2016
1 parent c5d7d71 commit 32f08ea
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: php

php:
- 5.4
# - 5.5
- 5.5
# - 5.6
# - 7.0
- 7.0

## Update composer and run the appropriate composer command
before_script:
Expand Down
10 changes: 9 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
#Mothership Magerun Addons

![](https://travis-ci.org/mothership-gmbh/magerun_mothership.svg?branch=develop)
![](https://travis-ci.org/mothership-gmbh/magerun_mothership.svg)


[![Dependency Status](https://www.versioneye.com/user/projects/56d70789d71695003e63118a/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56d70789d71695003e63118a)
[![Latest Stable Version](https://poser.pugx.org/mothership/mothership_magerun/v/stable)](https://packagist.org/packages/mothership/mothership_magerun)
[![Total Downloads](https://poser.pugx.org/mothership/mothership_magerun/downloads)](https://packagist.org/packages/mothership/mothership_magerun)
[![Latest Unstable Version](https://poser.pugx.org/mothership/mothership_magerun/v/unstable)](https://packagist.org/packages/mothership/mothership_magerun)
[![License](https://poser.pugx.org/mothership/mothership_magerun/license)](https://packagist.org/packages/mothership/mothership_magerun)

=========================
This repository contains a list of extensions, which might be useful for your development workflow.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->printCommand($args, $output);

// TODO: Check if queue is enabled
\Resque::setBackend(\Mage::getStoreConfig('mothership_intex/queue/host'));
\Resque::enqueue(\Mage::getStoreConfig('mothership_intex/queue/name'), '\Mothership\Magerun\Queue\Jobs\General', $args, true);
\Resque::setBackend(\Mage::getStoreConfig('mothership_magerun/queue/host'));
\Resque::enqueue(\Mage::getStoreConfig('mothership_magerun/queue/name'), '\Mothership\Magerun\Queue\Jobs\General', $args, true);
} else {
$stateMachine = new \Mothership\StateMachine\StateMachine($input_path . '/' . $filename);
$stateMachine->run($this->getArguments($input, $output));
Expand Down

0 comments on commit 32f08ea

Please sign in to comment.