Skip to content
Snippets Groups Projects
Commit 5fbd50c1 authored by Jake Taylor's avatar Jake Taylor :lips:
Browse files

Merge branch 'hotfix/pipeline' into 'release'

Fix go mod tidy for pipeline

See merge request elixxir/notifications-bot!34
parents ea53bd17 eb1bce03
No related branches found
No related tags found
2 merge requests!42Revert "update deps",!34Fix go mod tidy for pipeline
......@@ -69,12 +69,12 @@ require (
go.opencensus.io v0.22.3 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/mod v0.2.0 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
golang.org/x/sys v0.0.0-20220731174439-a90be440212d // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.0.0-20200318150045-ba25ddc85566 // indirect
golang.org/x/tools v0.1.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.5 // indirect
google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc // indirect
......
This diff is collapsed.
......@@ -13,7 +13,6 @@ import (
"bytes"
"fmt"
"github.com/pkg/errors"
jww "github.com/spf13/jwalterweatherman"
"gorm.io/gorm"
)
......@@ -172,8 +171,6 @@ func (m *MapImpl) GetLatestEphemeral() (*Ephemeral, error) {
// Inserts the given State into Storage if it does not exist
// Or updates the Database State if its value does not match the given State
func (m *MapImpl) UpsertState(state *State) error {
jww.TRACE.Printf("Attempting to insert State into Map: %+v", state)
m.mut.Lock()
defer m.mut.Unlock()
......@@ -188,7 +185,6 @@ func (m *MapImpl) GetStateValue(key string) (string, error) {
defer m.mut.Unlock()
if val, ok := m.states[key]; ok {
jww.TRACE.Printf("Obtained State from Map: %+v", val)
return val, nil
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment