From 622d5e3b9a09a41f4367d8e038621e3fcbf5c7c7 Mon Sep 17 00:00:00 2001 From: umohnani8 Date: Wed, 6 Dec 2017 14:09:51 -0500 Subject: Fix misleading print statement in kpod load When loading an image, kpod load would print something like "Trying to pull docker.io/library/alpine...", which is misleading and makes it sound like its pulling it form the registry. Fixed this by removing these print statements for kpod load Signed-off-by: umohnani8 --- libpod/sql_state.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'libpod/sql_state.go') diff --git a/libpod/sql_state.go b/libpod/sql_state.go index 36114e9cc..02cbd63d8 100644 --- a/libpod/sql_state.go +++ b/libpod/sql_state.go @@ -105,9 +105,6 @@ func (s *SQLState) Refresh() (err error) { Mountpoint=?, Pid=?;` - s.lock.Lock() - defer s.lock.Unlock() - if !s.valid { return ErrDBClosed } -- cgit v1.2.3-54-g00ecf