diff options
author | Julien Dessaux | 2024-04-30 08:34:26 +0200 |
---|---|---|
committer | Julien Dessaux | 2024-04-30 08:34:26 +0200 |
commit | 72be13c3e986aaee110b8f9abc78f5afcef22727 (patch) | |
tree | 45f4b0ca60657cd2beccf639b9e7fe6db99ac0bd /pkg/custom.go | |
parent | chore(gonf): factorise hostflag management (diff) | |
download | gonf-72be13c3e986aaee110b8f9abc78f5afcef22727.tar.gz gonf-72be13c3e986aaee110b8f9abc78f5afcef22727.tar.bz2 gonf-72be13c3e986aaee110b8f9abc78f5afcef22727.zip |
chore(gonf): fix go vet and staticcheck errors
Diffstat (limited to 'pkg/custom.go')
-rw-r--r-- | pkg/custom.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/custom.go b/pkg/custom.go index acca226..9b4ca3d 100644 --- a/pkg/custom.go +++ b/pkg/custom.go @@ -31,7 +31,7 @@ func (c *CustomPromise) Resolve() { } func (c CustomPromise) Status() Status { - return c.Status() + return c.promise.Status() } func resolveCustomPromises() (status Status) { |