Skip to content

Commit

Permalink
Merge branch 'master' into dev-fteid
Browse files Browse the repository at this point in the history
  • Loading branch information
gruyaume authored Oct 15, 2024
2 parents 74fa88b + 80dc1b7 commit eb7fe16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- uses: actions/checkout@v4

- name: Check Spelling
uses: rojopolis/spellcheck-github-actions@0.42.0
uses: rojopolis/spellcheck-github-actions@0.43.0
with:
config_path: .spellcheck.yml
task_name: Markdown
Expand Down
2 changes: 1 addition & 1 deletion pfcpiface/bess.go
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ func (b *bess) SetUpfInfo(u *upf, conf *Conf) {

b.endMarkerChan = make(chan []byte, 1024)

b.conn, err = grpc.Dial(*bessIP, grpc.WithTransportCredentials(insecure.NewCredentials()))
b.conn, err = grpc.NewClient(*bessIP, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
logger.BessLog.Fatalln("did not connect:", err)
}
Expand Down
2 changes: 1 addition & 1 deletion pfcpiface/p4rtc.go
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ func GetConnection(host string) (conn *grpc.ClientConn, err error) {
/* get connection */
logger.P4Log.Infoln("get connection")

conn, err = grpc.Dial(host, grpc.WithTransportCredentials(insecure.NewCredentials()))
conn, err = grpc.NewClient(host, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
logger.P4Log.Errorln("grpc dial err:", err)
return nil, err
Expand Down

0 comments on commit eb7fe16

Please sign in to comment.