Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup: replace dial with newclient #7967

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7ddbe46
replace dial with newclient
janardhankrishna-sai Dec 23, 2024
71dacb1
replace dial with newclient
janardhankrishna-sai Dec 25, 2024
88c3f0f
updating error msg and replacing dial with newclient
janardhankrishna-sai Dec 26, 2024
ceb1204
updating error mdg
janardhankrishna-sai Dec 26, 2024
6be3cf0
revert TestFederation_UnknownAuthorityInDialTarget
janardhankrishna-sai Dec 26, 2024
f6cb17c
updating fatal msg
janardhankrishna-sai Dec 27, 2024
9f02ddd
replace dial with newclient
janardhankrishna-sai Dec 30, 2024
7fa6e5e
updating error msg
janardhankrishna-sai Dec 30, 2024
0486355
Merge branch 'master' of https://github.com/janardhanvissa/grpc-go
janardhankrishna-sai Jan 1, 2025
aec4527
updating error msg
janardhankrishna-sai Jan 1, 2025
8ea1edd
updating test
janardhankrishna-sai Jan 1, 2025
c7e8c3e
updating fatal msg
janardhankrishna-sai Jan 1, 2025
baec474
updating newclient target
janardhankrishna-sai Jan 5, 2025
36deff4
updating newclient target
janardhankrishna-sai Jan 5, 2025
c58db07
updating fatal msg
janardhankrishna-sai Jan 5, 2025
973d28a
updating fatal msg
janardhankrishna-sai Jan 5, 2025
c07189f
updating fatal msg
janardhankrishna-sai Jan 5, 2025
1fc9c6b
error msg updating
janardhankrishna-sai Jan 7, 2025
d520f73
updating fatal msg
janardhankrishna-sai Jan 7, 2025
53fa9cd
Merge branch 'grpc:master' into master
janardhanvissa Jan 8, 2025
506fd98
updating newclient err msg
janardhankrishna-sai Jan 9, 2025
f1ec518
Revert "updating newclient err msg"
janardhankrishna-sai Jan 9, 2025
fd2860b
Revert "Merge branch 'master' of https://github.com/janardhanvissa/gr…
janardhankrishna-sai Jan 9, 2025
56c4730
Reapply "Merge branch 'master' of https://github.com/janardhanvissa/g…
janardhankrishna-sai Jan 9, 2025
5c6eb74
Reapply "updating newclient err msg"
janardhankrishna-sai Jan 9, 2025
bf780fe
Revert "updating newclient err msg"
janardhankrishna-sai Jan 9, 2025
74ea67a
Reapply "Merge branch 'master' of https://github.com/janardhanvissa/g…
janardhankrishna-sai Jan 9, 2025
e7e95ce
Reapply "updating newclient err msg"
janardhankrishna-sai Jan 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reapply "updating newclient err msg"
This reverts commit f1ec518.
  • Loading branch information
janardhankrishna-sai committed Jan 9, 2025
commit 5c6eb7458f69826dbeb38768f2c6ebac793ce5e3
2 changes: 1 addition & 1 deletion examples/features/customloadbalancer/client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func main() {

cc, err := grpc.NewClient(mr.Scheme()+":///", grpc.WithResolvers(mr), grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
log.Fatalf("Failed to dial: %v", err)
log.Fatalf("Failed to create a client for server: %v", err)
}
defer cc.Close()
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
Expand Down