Skip to content

Commit

Permalink
Merge pull request #112 from veraison/comid-fixes
Browse files Browse the repository at this point in the history
Minor corrections to GetUEID()
  • Loading branch information
yogeshbdeshpande authored Apr 18, 2024
2 parents e6e47e5 + 2335846 commit 822962c
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 822962c

Please sign in to comment.