Skip to content

Commit

Permalink
Merge pull request #461 from anandrgitnirman/storage
Browse files Browse the repository at this point in the history
#439 Bug fix on typo during initialization of Storage
  • Loading branch information
anandrgitnirman authored Mar 5, 2020
2 parents 46de638 + 79f9431 commit 2a4cdde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snetd/cmd/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func (components *Components) FreeCallLockerStorage() *escrow.PrefixedAtomicStor
if components.freeCallLockerStorage != nil {
return components.freeCallLockerStorage
}
components.etcdLockerStorage = escrow.NewPrefixedAtomicStorage(components.AtomicStorage(), "/freecall/lock")
components.freeCallLockerStorage = escrow.NewPrefixedAtomicStorage(components.AtomicStorage(), "/freecall/lock")
return components.freeCallLockerStorage
}

Expand Down

0 comments on commit 2a4cdde

Please sign in to comment.