Skip to content

Commit

Permalink
last fix before 1.1.0 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
j-guyon committed Jan 4, 2016
1 parent 364c275 commit 6af76a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Controller/ListController.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function monitorAction()

$response = new JsonResponse();
$response->setContent(json_encode($jsonArray));
$response->setStatusCode(count($jsonArray) > 0 ? Response::HTTP_EXPECTATION_FAILED : Response::HTTP_OK);
$response->setStatusCode(count($jsonArray) > 0 ? 417 : 200);

return $response;
}
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CommandSchedulerBundle
This bundle will allow you to easily manage scheduling for Symfony's console commands (native or not) with cron expression.

**Version**: 1.1-dev
**Compatibility**: Symfony >= 2.3 to 2.8, Doctrine ORM
**Compatibility**: Symfony 2.3 to 2.8, Doctrine ORM

## Features

Expand All @@ -22,6 +22,7 @@ This bundle will allow you to easily manage scheduling for Symfony's console com
- A new console command `scheduler:execute [--dump] [--no-output]` which will be the single entry point to all commands
- Management of queuing and prioritization between tasks
- Locking system, to stop scheduling a command that has returned an error
- Monitoring with timeout or failed commands (Json URL and command with mailing)
- Translated in french and english

## Screenshots
Expand Down

0 comments on commit 6af76a2

Please sign in to comment.