diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 20:54:49 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 20:54:49 -0500 |
| commit | 81cac132847a4778b5c865f2afa7ec5a97a14e5d (patch) | |
| tree | 5fee3cdce5a3861b9c6735ace4dcf641e3ee162d /config.go | |
| parent | 98407ed8b773ae95c8e7ff229da5f653090e47e1 (diff) | |
start removing old code
Diffstat (limited to 'config.go')
| -rw-r--r-- | config.go | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -3,10 +3,7 @@ package forgepb import ( - "time" - "go.wit.com/log" - timestamppb "google.golang.org/protobuf/types/known/timestamppb" ) // returns err1 || err2 @@ -19,12 +16,14 @@ func (f *Forge) ConfigSave() error { } } if f.Repos != nil { - // ??? - if f.HasFullScan() { - f.Repos.HasFullScan = true - t := time.Now() - f.Repos.FullScan = timestamppb.New(t) - } + /* + // ??? + if f.HasFullScan() { + f.Repos.HasFullScan = true + t := time.Now() + f.Repos.FullScan = timestamppb.New(t) + } + */ if e := f.Repos.ConfigSave(); e != nil { log.Info("forge.Repos.ConfigSave() error", e) err = e |
