Skip to content
Snippets Groups Projects
Commit 20b8333e authored by Nicolas "Pixel" Noble's avatar Nicolas "Pixel" Noble
Browse files

Sanitizing master.

parent 1f45b40f
No related branches found
No related tags found
No related merge requests found
...@@ -195,6 +195,7 @@ Pod::Spec.new do |s| ...@@ -195,6 +195,7 @@ Pod::Spec.new do |s|
ss.dependency "#{s.name}/Interface", version ss.dependency "#{s.name}/Interface", version
ss.dependency 'BoringSSL', '~> 4.0' ss.dependency 'BoringSSL', '~> 4.0'
# To save you from scrolling, this is the last part of the podspec.
ss.source_files = 'src/core/lib/profiling/timers.h', ss.source_files = 'src/core/lib/profiling/timers.h',
'src/core/lib/support/backoff.h', 'src/core/lib/support/backoff.h',
'src/core/lib/support/block_annotate.h', 'src/core/lib/support/block_annotate.h',
...@@ -760,7 +761,7 @@ Pod::Spec.new do |s| ...@@ -760,7 +761,7 @@ Pod::Spec.new do |s|
'src/core/ext/census/mlog.h', 'src/core/ext/census/mlog.h',
'src/core/ext/census/rpc_metric_id.h' 'src/core/ext/census/rpc_metric_id.h'
end end
s.subspec 'Cronet-Interface' do |ss| s.subspec 'Cronet-Interface' do |ss|
ss.header_mappings_dir = 'include/grpc' ss.header_mappings_dir = 'include/grpc'
ss.source_files = 'include/grpc/grpc_cronet.h' ss.source_files = 'include/grpc/grpc_cronet.h'
......
...@@ -59,7 +59,8 @@ grpc_connectivity_state grpc_channel_check_connectivity_state( ...@@ -59,7 +59,8 @@ grpc_connectivity_state grpc_channel_check_connectivity_state(
} }
gpr_log(GPR_ERROR, gpr_log(GPR_ERROR,
"grpc_channel_check_connectivity_state called on something that is " "grpc_channel_check_connectivity_state called on something that is "
"not a client channel, but '%s'", client_channel_elem->filter->name); "not a client channel, but '%s'",
client_channel_elem->filter->name);
grpc_exec_ctx_finish(&exec_ctx); grpc_exec_ctx_finish(&exec_ctx);
return GRPC_CHANNEL_SHUTDOWN; return GRPC_CHANNEL_SHUTDOWN;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment