fluent-plugin-azure-storage-append-blob-lts 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d55d827bbb8aa8906536f7593257e42abf9c6b24e5aa485176cd5aa15284732
4
- data.tar.gz: ff055bb2b5585ee3a38b2ed18b75ac1aa8ba6a20654be97b13a920a6566472e5
3
+ metadata.gz: 4e224cc01a84295ff72380078ec3e8d4ae0e136b21f4e436715ad370fc8b6dd6
4
+ data.tar.gz: 361eb4c128494c8945bff5f6c6f13d251ca3095c7b069dd4443e6924e48521dc
5
5
  SHA512:
6
- metadata.gz: ea451b6605f9126c9af9e697cacccac03145631926684ac7d001eb6c18ca22755ec13cd647eb3b016cbed48678b890a61ff829644cfd041ef4c88a7495cf215c
7
- data.tar.gz: e50e9381970ce666d3bc6337526be2e5620d6eced418b9df02a26d6f80f13ce0fb31a45e0cdef3a55090afc6276c328a660b66137005d17b1756948d77ac7491
6
+ metadata.gz: 93d6dbe5d10c0b9c2f7f1bb7de18349398f1586185bcc38e8dc0794a047e3964fc03a54df7f3f6cd58fe251d2575ea318b14a748d33402aa9f5c7823bfd94b5c
7
+ data.tar.gz: c47277844a0721a7e823fb10a80e64ad53d7c647469f890e045bf658d43a5e1b22511bf753e3ba90216c1aea82e97525b8c95c8b06b042b3a3667111de7c72cd
data/README.md CHANGED
@@ -37,7 +37,7 @@ And then execute:
37
37
  path logs/
38
38
  azure_object_key_format %{path}%{time_slice}_%{index}.log
39
39
  time_slice_format %Y%m%d-%H
40
- calculate_checksums true
40
+ compute_checksums true
41
41
  # if you want to use %{tag} or %Y/%m/%d/ like syntax in path / azure_blob_name_format,
42
42
  # need to specify tag for %{tag} and time for %Y/%m/%d in <buffer> argument.
43
43
  <buffer tag,time>
@@ -136,11 +136,11 @@ The [fluent-mixin-config-placeholders](https://github.com/tagomoris/fluent-mixin
136
136
 
137
137
  Format of the time used in the file name. Default is '%Y%m%d'. Use '%Y%m%d%H' to split files hourly.
138
138
 
139
- ### `calculate_checksums`
139
+ ### `compute_checksums`
140
140
 
141
141
  Default: `true`
142
142
 
143
- Whether to calculate MD5 checksum of the blob contents during append operation and provide it in a header for the blob service.
143
+ Whether to compute MD5 checksum of the blob contents during append operation and provide it in a header for the blob service.
144
144
 
145
145
  You want to set it to `false` in FIPS-enabled environments.
146
146
 
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = 'fluent-plugin-azure-storage-append-blob-lts'
6
- spec.version = '0.6.0'
6
+ spec.version = '0.6.1'
7
7
  spec.authors = ['Jonas-Taha El Sesiy']
8
8
  spec.email = ['github@elsesiy.com']
9
9
 
@@ -44,7 +44,7 @@ module Fluent
44
44
  config_param :azure_token_refresh_interval, :integer, default: 60
45
45
  config_param :azure_object_key_format, :string, default: '%{path}%{time_slice}-%{index}.log'
46
46
  config_param :auto_create_container, :bool, default: true
47
- config_param :calculate_checksums, :bool, default: true
47
+ config_param :compute_checksums, :bool, default: true
48
48
  config_param :format, :string, default: DEFAULT_FORMAT_TYPE
49
49
  config_param :time_slice_format, :string, default: '%Y%m%d'
50
50
  config_param :localtime, :bool, default: false
@@ -92,7 +92,7 @@ module Fluent
92
92
 
93
93
  @blob_options = {}
94
94
 
95
- if !@calculate_checksums
95
+ if !@compute_checksums
96
96
  @blob_options[:content_md5] = ''
97
97
  end
98
98
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-azure-storage-append-blob-lts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas-Taha El Sesiy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler