diff options
author | 2020-04-23 21:48:53 +0000 | |
---|---|---|
committer | 2020-04-23 21:48:53 +0000 | |
commit | 7e20d29b2d82f4ebbe347b7ed39a1c5d51752314 (patch) | |
tree | ae767627445355986dc59860a9d05af287eb2be9 /src/orchestrator/pkg/infra | |
parent | 334322f5995394dfa6a948101064634eaaf5f0b5 (diff) | |
parent | 6e0b4df46f51f9793f2d88626234edaaf9992403 (diff) |
Merge "Added intentResolver"
Diffstat (limited to 'src/orchestrator/pkg/infra')
-rw-r--r-- | src/orchestrator/pkg/infra/contextdb/mock.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/orchestrator/pkg/infra/contextdb/mock.go b/src/orchestrator/pkg/infra/contextdb/mock.go index fc0f8ff7..9aaed750 100644 --- a/src/orchestrator/pkg/infra/contextdb/mock.go +++ b/src/orchestrator/pkg/infra/contextdb/mock.go @@ -47,7 +47,7 @@ func (c *MockEtcd) Delete(key string) error { func (c *MockEtcd) GetAllKeys(path string) ([]string, error) { var keys []string - for k, _ := range c.Items { + for k := range c.Items { keys = append(keys, string(k)) } return keys, nil |