Skip to content

Commit d6b8564

Browse files
fixup! Performance improvements: Flattened binding hierarchy
Signed-off-by: Alexandros Filios <alexandros.filios@ibm.com>
1 parent 9234a7d commit d6b8564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/view/core/endpoint/binder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func (b *binder) Bind(ephemeral, longTerm view.Identity) error {
4141

4242
logger.Infof("Id [%s] has no long term binding. It will be registered as a long-term id.")
4343
if err := b.bindingKVS.PutBinding(longTerm, longTerm); err != nil {
44-
return errors.Wrapf(err, "failed to register [%s] as long term")
44+
return errors.Wrapf(err, "failed to register [%s] as long term", longTerm)
4545
}
4646
return b.bindingKVS.PutBinding(ephemeral, longTerm)
4747
}

0 commit comments

Comments
 (0)