Skip to content

Commit

Permalink
Merge pull request #547 from aaronhuisinga/3.0
Browse files Browse the repository at this point in the history
[3.0] Fix URL for retrying jobs
  • Loading branch information
driesvints authored Mar 11, 2019
2 parents 5ad8c5d + 2f6db48 commit 0b8d872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/screens/failedJobs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
this.retryingJobs.push(id);
this.$http.post('/horizon/api/jobs/retry/' + id)
this.$http.post('/' + Horizon.path + '/api/jobs/retry/' + id)
.then(() => {
setTimeout(() => {
this.retryingJobs = _.reject(this.retryingJobs, job => job == id);
Expand Down

0 comments on commit 0b8d872

Please sign in to comment.