Skip to content

Commit

Permalink
Upgrade google-protobuf to 3.15.8. (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
qingling128 committed Apr 8, 2021
1 parent bffc5d7 commit 89d80b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion fluent-plugin-google-cloud.gemspec
Expand Up @@ -24,7 +24,7 @@ eos
gem.add_runtime_dependency 'googleauth', '0.9.0'
gem.add_runtime_dependency 'google-api-client', '0.30.8'
gem.add_runtime_dependency 'google-cloud-logging', '1.6.6'
gem.add_runtime_dependency 'google-protobuf', '3.14.0'
gem.add_runtime_dependency 'google-protobuf', '3.15.8'
gem.add_runtime_dependency 'grpc', '1.31.1'
gem.add_runtime_dependency 'json', '2.2.0'
gem.add_runtime_dependency 'opencensus', '0.5.0'
Expand Down
16 changes: 8 additions & 8 deletions test/plugin/test_out_google_cloud_grpc.rb
Expand Up @@ -271,19 +271,19 @@ def latency_conversion
{
'32 s' => '32s',
'32s' => '32s',
'0.32s' => '0.320000000s',
'0.32s' => '0.320s',
' 123 s ' => '123s',
'1.3442 s' => '1.344200000s',
'1.3442 s' => '1.344200s',

# Test whitespace.
# \t: tab. \r: carriage return. \n: line break.
# \v: vertical whitespace. \f: form feed.
"\t123.5\ts\t" => '123.500000000s',
"\r123.5\rs\r" => '123.500000000s',
"\n123.5\ns\n" => '123.500000000s',
"\v123.5\vs\v" => '123.500000000s',
"\f123.5\fs\f" => '123.500000000s',
"\r123.5\ts\f" => '123.500000000s'
"\t123.5\ts\t" => '123.500s',
"\r123.5\rs\r" => '123.500s',
"\n123.5\ns\n" => '123.500s',
"\v123.5\vs\v" => '123.500s',
"\f123.5\fs\f" => '123.500s',
"\r123.5\ts\f" => '123.500s'
}
end

Expand Down

0 comments on commit 89d80b2

Please sign in to comment.