From 9027acac22882ff379ed2d77db5a3e78e56fb939 Mon Sep 17 00:00:00 2001 From: derailed Date: Sun, 29 Dec 2019 23:44:14 -0700 Subject: [PATCH] checkpoint --- internal/model/table.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/model/table.go b/internal/model/table.go index 2de7c32b..48d86405 100644 --- a/internal/model/table.go +++ b/internal/model/table.go @@ -3,7 +3,6 @@ package model import ( "context" "fmt" - "runtime" "sync/atomic" "time" @@ -147,8 +146,6 @@ func (t *Table) reconcile(ctx context.Context) error { t.data.Mutex.Lock() defer t.data.Mutex.Unlock() - log.Debug().Msgf("GOROUTINE %d", runtime.NumGoroutine()) - factory, ok := ctx.Value(internal.KeyFactory).(Factory) if !ok { return fmt.Errorf("expected Factory in context but got %T", ctx.Value(internal.KeyFactory))