Skip to content

Commit

Permalink
[WIP] Corrections
Browse files Browse the repository at this point in the history
Signed-off-by: Yogesh Deshpande <[email protected]>
  • Loading branch information
yogeshbdeshpande committed Apr 18, 2024
1 parent e6e47e5 commit 75c92c1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions comid/instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ func (o Instance) GetUEID() (eat.UEID, error) {
switch t := o.Value.(type) {
case TaggedUEID:
return eat.UEID(t), nil
case *TaggedUEID:
return eat.UEID(*t), nil
default:
return eat.UEID{}, fmt.Errorf("instance-id type is: %T", t)
}
Expand Down

0 comments on commit 75c92c1

Please sign in to comment.