diff --git a/CHANGELOG.md b/CHANGELOG.md index c95fb6c70..a4e8c6055 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,8 @@ IMPROVEMENTS: BUG FIXES: * core: Fixed bug in reconciler where allocs already stopped were being unnecessarily updated [[GH-4764](https://github.com/hashicorp/nomad/issues/4764)] - * core: Fix an issue where artifact checksums containing interpolated variables failed validation [[GH-4810](https://github.com/hashicorp/nomad/pull/4819)] + * core: Fixed bug where some successfully completed jobs get re-run after job garbage collection [[GH-4861](https://github.com/hashicorp/nomad/pull/4861)] + * core: Fix an issue where artifact checksums containing interpolated variables failed validation [[GH-4810](https://github.com/hashicorp/nomad/pull/4819)] * core: Fixed bug that affects garbage collection of batch jobs that are purged and resubmitted with the same id [[GH-4839](https://github.com/hashicorp/nomad/pull/4839)] * client: Fix an issue reloading the client config [[GH-4730](https://github.com/hashicorp/nomad/issues/4730)] * deployments: Fix an issue where a deployment with multiple task groups could diff --git a/nomad/state/state_store.go b/nomad/state/state_store.go index b97d55b80..26beab4d8 100644 --- a/nomad/state/state_store.go +++ b/nomad/state/state_store.go @@ -1212,7 +1212,7 @@ func (s *StateStore) JobByID(ws memdb.WatchSet, namespace, id string) (*structs. } // JobByIDTxn is used to lookup a job by its ID, like JobByID. JobByID returns the job version -// accessable through in the transaction +// accessible through in the transaction func (s *StateStore) JobByIDTxn(ws memdb.WatchSet, namespace, id string, txn Txn) (*structs.Job, error) { // COMPAT 0.7: Upgrade old objects that do not have namespaces if namespace == "" {