diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-26 06:07:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 06:07:40 -0400 |
commit | 271f58f14282742e437cc810b216a7de27011ffc (patch) | |
tree | ed84f4f63f8cbc45404d035dc52e58adced09f53 /libpod/runtime.go | |
parent | acdfb4d14f15814a1178985cce7175eaa13acd6a (diff) | |
parent | badf76e172b10548f3a77a65c04ed7aaa4a78ce9 (diff) | |
download | podman-271f58f14282742e437cc810b216a7de27011ffc.tar.gz podman-271f58f14282742e437cc810b216a7de27011ffc.tar.bz2 podman-271f58f14282742e437cc810b216a7de27011ffc.zip |
Merge pull request #14369 from mheon/fixmes_2
Remove more FIXMEs
Diffstat (limited to 'libpod/runtime.go')
-rw-r--r-- | libpod/runtime.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index 00fa2fe88..e268c2d17 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -412,7 +412,6 @@ func makeRuntime(runtime *Runtime) (retErr error) { return err } runtime.eventer = eventer - // TODO: events for libimage // Set up containers/image if runtime.imageContext == nil { @@ -517,8 +516,6 @@ func makeRuntime(runtime *Runtime) (retErr error) { } // Acquire the lock and hold it until we return // This ensures that no two processes will be in runtime.refresh at once - // TODO: we can't close the FD in this lock, so we should keep it around - // and use it to lock important operations aliveLock.Lock() doRefresh := false defer func() { |