mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
Resolved merge conflicts with master
This commit is contained in:
commit
04df830e53
10
ext/call.cc
10
ext/call.cc
@ -514,12 +514,14 @@ NAN_METHOD(Call::New) {
|
||||
if (args[3]->IsString()) {
|
||||
NanUtf8String host_override(args[3]);
|
||||
wrapped_call = grpc_channel_create_call(
|
||||
wrapped_channel, CompletionQueueAsyncWorker::GetQueue(), *method,
|
||||
*host_override, MillisecondsToTimespec(deadline));
|
||||
wrapped_channel, NULL, GRPC_PROPAGATE_DEFAULTS,
|
||||
CompletionQueueAsyncWorker::GetQueue(), *method,
|
||||
*host_override, MillisecondsToTimespec(deadline));
|
||||
} else if (args[3]->IsUndefined() || args[3]->IsNull()) {
|
||||
wrapped_call = grpc_channel_create_call(
|
||||
wrapped_channel, CompletionQueueAsyncWorker::GetQueue(), *method,
|
||||
NULL, MillisecondsToTimespec(deadline));
|
||||
wrapped_channel, NULL, GRPC_PROPAGATE_DEFAULTS,
|
||||
CompletionQueueAsyncWorker::GetQueue(), *method,
|
||||
NULL, MillisecondsToTimespec(deadline));
|
||||
} else {
|
||||
return NanThrowTypeError("Call's fourth argument must be a string");
|
||||
}
|
||||
|
||||
@ -265,8 +265,8 @@ NAN_METHOD(Server::AddHttp2Port) {
|
||||
grpc_server_credentials *creds = creds_object->GetWrappedServerCredentials();
|
||||
int port;
|
||||
if (creds == NULL) {
|
||||
port = grpc_server_add_http2_port(server->wrapped_server,
|
||||
*NanUtf8String(args[0]));
|
||||
port = grpc_server_add_insecure_http2_port(server->wrapped_server,
|
||||
*NanUtf8String(args[0]));
|
||||
} else {
|
||||
port = grpc_server_add_secure_http2_port(server->wrapped_server,
|
||||
*NanUtf8String(args[0]),
|
||||
|
||||
@ -69,9 +69,6 @@ function zeroBuffer(size) {
|
||||
function emptyUnary(client, done) {
|
||||
var call = client.emptyCall({}, function(err, resp) {
|
||||
assert.ifError(err);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
@ -96,9 +93,6 @@ function largeUnary(client, done) {
|
||||
assert.ifError(err);
|
||||
assert.strictEqual(resp.payload.type, 'COMPRESSABLE');
|
||||
assert.strictEqual(resp.payload.body.length, 314159);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
@ -115,9 +109,6 @@ function clientStreaming(client, done) {
|
||||
var call = client.streamingInputCall(function(err, resp) {
|
||||
assert.ifError(err);
|
||||
assert.strictEqual(resp.aggregated_payload_size, 74922);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
@ -308,9 +299,6 @@ function authTest(expected_user, scope, client, done) {
|
||||
assert.strictEqual(resp.payload.body.length, 314159);
|
||||
assert.strictEqual(resp.username, expected_user);
|
||||
assert.strictEqual(resp.oauth_scope, AUTH_SCOPE_RESPONSE);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
@ -344,9 +332,6 @@ function oauth2Test(expected_user, scope, per_rpc, client, done) {
|
||||
assert.ifError(err);
|
||||
assert.strictEqual(resp.username, expected_user);
|
||||
assert.strictEqual(resp.oauth_scope, AUTH_SCOPE_RESPONSE);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
@ -358,7 +343,6 @@ function oauth2Test(expected_user, scope, per_rpc, client, done) {
|
||||
client.updateMetadata = updateMetadata;
|
||||
makeTestCall(null, {});
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user