Skip to content

Commit

Permalink
Reorder structs and fix format
Browse files Browse the repository at this point in the history
Signed-off-by: Patricia Reinoso <[email protected]>
  • Loading branch information
patriciareinoso committed Jan 25, 2024
1 parent 5e18b86 commit a3dfd7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion context/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ type UDRContext struct {
PolicyDataSubscriptions map[subsId]*models.PolicyDataSubscription
UESubsCollection sync.Map // map[ueId]*UESubsData
UEGroupCollection sync.Map // map[ueGroupId]*UEGroupSubsData
mtx sync.RWMutex
SBIPort int
EeSubscriptionIDGenerator int
SdmSubscriptionIDGenerator int
PolicyDataSubscriptionIDGenerator int
SubscriptionDataSubscriptionIDGenerator int
appDataInfluDataSubscriptionIdGenerator uint64
mtx sync.RWMutex
}

type UESubsData struct {
Expand Down
4 changes: 2 additions & 2 deletions factory/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ type Sbi struct {
Tls *Tls `yaml:"tls,omitempty"`
Scheme string `yaml:"scheme"`
RegisterIPv4 string `yaml:"registerIPv4,omitempty"` // IP that is registered at NRF.
BindingIPv4 string `yaml:"bindingIPv4,omitempty"` // IP used to run the server in the node.
Port int `yaml:"port"`
BindingIPv4 string `yaml:"bindingIPv4,omitempty"` // IP used to run the server in the node.
Port int `yaml:"port"`
}

type Tls struct {
Expand Down

0 comments on commit a3dfd7d

Please sign in to comment.