~ubuntu-branches/ubuntu/wily/phabricator/wily-proposed

« back to all changes in this revision

Viewing changes to phabricator/src/infrastructure/daemon/workers/action/PhabricatorScheduleTaskTriggerAction.php

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2015-02-11 14:13:38 UTC
  • mfrom: (0.18.1) (0.17.1) (0.13.2) (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20150211141338-7t6wkyisc5b04ww5
Tags: 0~git20150211-1
* New snapshot release
* updated german translation
* fixed daemons not starting with unprivileged user

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  public function execute($last_epoch, $this_epoch) {
39
39
    PhabricatorWorker::scheduleTask(
40
40
      $this->getProperty('class'),
41
 
      $this->getProperty('data'),
 
41
      $this->getProperty('data') + array(
 
42
        'trigger.last-epoch' => $last_epoch,
 
43
        'trigger.this-epoch' => $this_epoch,
 
44
      ),
42
45
      $this->getProperty('options'));
43
46
  }
44
47