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

Manual upmerge from v1.2.x #10598

Merged
merged 20 commits into from
Apr 12, 2017
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
753b054
Properly unref some slices in Node glue code
murgatroid99 Apr 3, 2017
130568e
Fix call destruction bug
murgatroid99 Apr 4, 2017
512b637
Unref the tail, not the original slice
yang-g Apr 6, 2017
77e06b2
Node: fix leak of sent metadata
murgatroid99 Apr 6, 2017
a568088
Merge pull request #10495 from yang-g/missing_tail
yang-g Apr 6, 2017
2a4ea2d
Node: consolidate call destruction logic
murgatroid99 Apr 6, 2017
3ac309e
Node: fix hang after DNS resolution failure
murgatroid99 Apr 6, 2017
a075688
Merge pull request #10503 from murgatroid99/node_memory_leak_2
murgatroid99 Apr 7, 2017
bbf4e5b
Merge pull request #10468 from murgatroid99/node_call_destruction_bug
murgatroid99 Apr 7, 2017
9c9e009
Add newest dotnet SDK to C# dockerfile
jtattermusch Mar 9, 2017
d3a5635
Add global.json file to pick dotnet core SDK version
jtattermusch Mar 9, 2017
6ed454e
make C# docker image in sync with GCE performance workers
jtattermusch Apr 6, 2017
87b2112
also fix global.json in helloworld
jtattermusch Apr 7, 2017
06ea7d3
Merge pull request #10508 from murgatroid99/node_offline_hang
murgatroid99 Apr 7, 2017
7cfa1bf
Bump version to 1.2.3
murgatroid99 Apr 7, 2017
dc607c4
Merge pull request #10520 from murgatroid99/bump_1.2.3
murgatroid99 Apr 7, 2017
d587d33
Merge pull request #10515 from jtattermusch/backport_global_json
jtattermusch Apr 8, 2017
1abba9d
Fix lower bound on max message size channel arguments
murgatroid99 Apr 11, 2017
ca70b1c
Merge pull request #10579 from murgatroid99/max_message_size_arg_chec…
murgatroid99 Apr 12, 2017
43713e6
Merge remote-tracking branch 'upstream/v1.2.x' into HEAD
jtattermusch Apr 12, 2017
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
3 changes: 2 additions & 1 deletion src/core/lib/iomgr/resolve_address_uv.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ static int retry_named_port_failure(int status, request *r,
int retry_status;
uv_getaddrinfo_t *req = gpr_malloc(sizeof(uv_getaddrinfo_t));
req->data = r;
r->port = svc[i][1];
retry_status = uv_getaddrinfo(uv_default_loop(), req, getaddrinfo_cb,
r->host, svc[i][1], r->hints);
r->host, r->port, r->hints);
if (retry_status < 0 || getaddrinfo_cb == NULL) {
// The callback will not be called
gpr_free(req);
Expand Down