Explicitly spell out cancellation in default propagation mask

pull/2750/head
Craig Tiller 9 years ago
parent 354e2127a2
commit 44912d78a0
  1. 6
      include/grpc/grpc.h

@ -369,9 +369,9 @@ typedef struct grpc_op {
propagation. Doing so gives flexibility in the future to define new propagation. Doing so gives flexibility in the future to define new
propagation types that are default inherited or not. */ propagation types that are default inherited or not. */
#define GRPC_PROPAGATE_DEFAULTS \ #define GRPC_PROPAGATE_DEFAULTS \
((gpr_uint32)((0xffff | GRPC_PROPAGATE_DEADLINE | \ ((gpr_uint32)(( \
GRPC_PROPAGATE_CENSUS_STATS_CONTEXT | \ 0xffff | GRPC_PROPAGATE_DEADLINE | GRPC_PROPAGATE_CENSUS_STATS_CONTEXT | \
GRPC_PROPAGATE_CENSUS_TRACING_CONTEXT))) GRPC_PROPAGATE_CENSUS_TRACING_CONTEXT | GRPC_PROPAGATE_CANCELLATION)))
/** Initialize the grpc library. /** Initialize the grpc library.

Loading…
Cancel
Save