Skip to content

Commit ff7edf1

Browse files
committed
fixing mastercfg merge
1 parent 09903d6 commit ff7edf1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

netmaster/mastercfg/providerState.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ type Provider struct {
4848

4949
// Write the state
5050
func (s *SvcProvider) Write() error {
51-
id := s.ServiceName
52-
key := fmt.Sprintf(svcProviderPath, id)
51+
key := fmt.Sprintf(svcProviderPath, s.ID)
5352
return s.StateDriver.WriteState(key, s, json.Marshal)
5453
}
5554

@@ -66,8 +65,7 @@ func (s *SvcProvider) ReadAll() ([]core.State, error) {
6665

6766
// Clear removes the configuration from the state store.
6867
func (s *SvcProvider) Clear() error {
69-
id := s.ServiceName
70-
key := fmt.Sprintf(svcProviderPath, id)
68+
key := fmt.Sprintf(svcProviderPath, s.ID)
7169
return s.StateDriver.ClearState(key)
7270
}
7371

0 commit comments

Comments
 (0)