fluent-plugin-storage-mongo 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fluent-plugin-storage-mongo.gemspec +1 -1
- data/lib/fluent/plugin/storage_mongo.rb +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d61a645ed7ed4a892bb5ac2822da094582636b2
|
4
|
+
data.tar.gz: f048bf25e7cd46fadfcf788f7907a93fb6b49711
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c7a7bae61b9c6bfff65e0258ccd191bd9bd171e2676b748ed323609f3089b84816605afe1a9721870bd81c09cc8cd23869f74e62fbd1564648ff887d68febda
|
7
|
+
data.tar.gz: 8c658c5bf70a7e0d4e3d2c4964e83ed16db671c57f0f98788429eaef18c081f2e9b80060d4da3a9c8539a8ee391d5ea229c5e96d241af0300cf9ede0cb5fe6af
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "fluent-plugin-storage-mongo"
|
7
|
-
spec.version = "0.0.
|
7
|
+
spec.version = "0.0.4"
|
8
8
|
spec.authors = ["Hiroshi Hatake"]
|
9
9
|
spec.email = ["cosmo0920.oucc@gmail.com"]
|
10
10
|
|
@@ -41,6 +41,12 @@ module Fluent
|
|
41
41
|
config_param :ssl_key_pass_phrase, :string, default: nil, secret: true
|
42
42
|
config_param :ssl_verify, :bool, default: false
|
43
43
|
config_param :ssl_ca_cert, :string, default: nil
|
44
|
+
# Set persistent true by default
|
45
|
+
config_set_default :persistent, true
|
46
|
+
|
47
|
+
def persistent_always?
|
48
|
+
true
|
49
|
+
end
|
44
50
|
|
45
51
|
attr_reader :client_options, :collection_options
|
46
52
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-storage-mongo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroshi Hatake
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|