summaryrefslogtreecommitdiff
path: root/libpod/runtime.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2022-05-25 14:08:08 -0400
committerMatthew Heon <matthew.heon@pm.me>2022-05-25 14:10:02 -0400
commitbadf76e172b10548f3a77a65c04ed7aaa4a78ce9 (patch)
treed9a27b0f0a3268ce930c2c94ea2ef15d3b2ce468 /libpod/runtime.go
parent819e5bcb943c6f604fdc65be1c0387055e0a9f20 (diff)
downloadpodman-badf76e172b10548f3a77a65c04ed7aaa4a78ce9.tar.gz
podman-badf76e172b10548f3a77a65c04ed7aaa4a78ce9.tar.bz2
podman-badf76e172b10548f3a77a65c04ed7aaa4a78ce9.zip
Remove more FIXMEs
Mostly, just removing the comments. These either have been done, or are no longer a good idea. No code changes. [NO NEW TESTS NEEDED] as such. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/runtime.go')
-rw-r--r--libpod/runtime.go3
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() {