1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/container
Brian Goff eaad3ee3cf Make sure timers are stopped after use.
`time.After` keeps a timer running until the specified duration is
completed. It also allocates a new timer on each call. This can wind up
leaving lots of uneccessary timers running in the background that are
not needed and consume resources.

Instead of `time.After`, use `time.NewTimer` so the timer can actually
be stopped.
In some of these cases it's not a big deal since the duraiton is really
short, but in others it is much worse.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
2019-01-16 14:32:53 -08:00
..
stream Fix fd leak on attach 2018-05-31 10:11:18 -04:00
archive.go container.BaseFS: check for nil before deref 2018-03-13 21:24:48 -07:00
container.go Merge pull request #37092 from cpuguy83/local_logger 2018-08-20 07:01:41 +01:00
container_unit_test.go Update tests to use gotest.tools 👼 2018-06-13 09:04:30 +02:00
container_unix.go Fix missing import 2018-12-12 17:48:48 +01:00
container_windows.go UnmountIpcMount: simplify 2018-12-10 20:06:10 -08:00
env.go Add canonical import comment 2018-02-05 16:51:57 -05:00
env_test.go Add canonical import comment 2018-02-05 16:51:57 -05:00
health.go Add canonical import comment 2018-02-05 16:51:57 -05:00
history.go Add canonical import comment 2018-02-05 16:51:57 -05:00
memory_store.go Add canonical import comment 2018-02-05 16:51:57 -05:00
memory_store_test.go Add canonical import comment 2018-02-05 16:51:57 -05:00
monitor.go Make sure timers are stopped after use. 2019-01-16 14:32:53 -08:00
mounts_unix.go mount: add BindOptions.NonRecursive (API v1.40) 2018-11-06 17:51:58 +09:00
mounts_windows.go Add canonical import comment 2018-02-05 16:51:57 -05:00
state.go Switch from x/net/context -> context 2018-04-23 13:52:44 -07:00
state_test.go Add canonical import comment 2018-02-05 16:51:57 -05:00
store.go Add canonical import comment 2018-02-05 16:51:57 -05:00
view.go Various code-cleanup 2018-05-23 17:50:54 +02:00
view_test.go Update tests to use gotest.tools 👼 2018-06-13 09:04:30 +02:00