mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { action } from '@ember/object';
|
|
import Component from '@glimmer/component';
|
|
|
|
export default class Periodic extends Component {
|
|
@action
|
|
forceLaunch(setError) {
|
|
this.args.job.forcePeriodic().catch((err) => {
|
|
setError(err);
|
|
});
|
|
}
|
|
}
|