Skip to content

Commit

Permalink
Update nomad/resource_quota_specification.go
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Gross <tgross@hashicorp.com>
  • Loading branch information
pkazmierczak and tgross authored Jul 31, 2024
1 parent 65c0e7e commit 86dc451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nomad/resource_quota_specification.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ func resourceQuotaSpecificationDelete(d *schema.ResourceData, meta interface{})
_, err := client.Namespaces().Register(ns, nil)
if err != nil {
return fmt.Errorf(
"error disassociating quota spec %q with namespace %s: %s",
name, ns.Name, err.Error(),
"error disassociating quota spec %q with namespace %s: %w",
name, ns.Name, err,
)
}
}
Expand Down

0 comments on commit 86dc451

Please sign in to comment.