Skip to content

Commit 4c4d1f4

Browse files
authored
update schema (#1264)
Signed-off-by: shishir gowda <[email protected]>
1 parent 76e1b4e commit 4c4d1f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

observability/telephonyobs/gen_reporter.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77
)
88

9-
const Version_R8RMFD0 = true
9+
const Version_AIHSTV8 = true
1010

1111
type KeyResolver interface {
1212
Resolve(string)
@@ -35,7 +35,7 @@ type CarrierReporter interface {
3535
RegisterFunc(func(ts time.Time, tx CarrierTx) bool)
3636
Tx(func(tx CarrierTx))
3737
TxAt(time.Time, func(tx CarrierTx))
38-
WithCountry(countryCode string) CountryReporter
38+
WithCountry(code string) CountryReporter
3939
WithDeferredCountry() (CountryReporter, KeyResolver)
4040
CarrierTx
4141
}

observability/telephonyobs/gen_reporter_noop.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func NewNoopCarrierReporter() CarrierReporter {
5858
func (r *noopCarrierReporter) RegisterFunc(f func(ts time.Time, tx CarrierTx) bool) {}
5959
func (r *noopCarrierReporter) Tx(f func(CarrierTx)) {}
6060
func (r *noopCarrierReporter) TxAt(ts time.Time, f func(CarrierTx)) {}
61-
func (r *noopCarrierReporter) WithCountry(countryCode string) CountryReporter {
61+
func (r *noopCarrierReporter) WithCountry(code string) CountryReporter {
6262
return &noopCountryReporter{}
6363
}
6464
func (r *noopCarrierReporter) WithDeferredCountry() (CountryReporter, KeyResolver) {

0 commit comments

Comments
 (0)