From 7852745c6b11dc8b74300fd924be11cbb4a98168 Mon Sep 17 00:00:00 2001 From: mattes Date: Tue, 12 Aug 2014 03:26:54 +0200 Subject: [PATCH] forgot to remove debugging time.Sleep --- driver/postgres/postgres.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/driver/postgres/postgres.go b/driver/postgres/postgres.go index 0299cff..2485476 100644 --- a/driver/postgres/postgres.go +++ b/driver/postgres/postgres.go @@ -6,7 +6,6 @@ import ( _ "github.com/lib/pq" "github.com/mattes/migrate/file" "github.com/mattes/migrate/migrate/direction" - "time" ) type Driver struct { @@ -81,7 +80,6 @@ func (driver *Driver) Migrate(files file.Files, pipe chan interface{}) { return } pipe <- fmt.Sprintf("Applied %s", f.FileName) - time.Sleep(3 * time.Second) if err := tx.Commit(); err != nil { pipe <- err