fluent-plugin-indicative 0.1.5 → 0.1.6

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: 2dc9076de3fc4faff42a06c42d2df7849102f6ce4bcf037be5c54e55b781fdc5
4
- data.tar.gz: 3c61179973bc9921c3615f858923b3ec1210e1e65064426ad40d1aa2a5f62313
3
+ metadata.gz: 297d26519e12331031ab2f4b9ed4a170fad5dec9611c63f5ba2e47e602ad5b37
4
+ data.tar.gz: 3a88a5d6b99cee6b470210f4d87ca9981fef6b0054a06d2261704626183dbe7b
5
5
  SHA512:
6
- metadata.gz: 40ec52fa9f4a3b7c89b5c49c1c5d0ee0d00e1be802321760d5ad83f4ad5bbbc14566bf8323d3581fc2b214fd7b9fb51587af71ecedb841246998ab84f25b4b91
7
- data.tar.gz: cdbce7b7ea57da70b7f3e20ee16eadae2048090df9f34bd6ab009054ce4221326d07d489c44e5408a45624bec289e32d03c4b8c88175f481f0cb4168441dd612
6
+ metadata.gz: d097056fd8859ad61f884e006e585cecb4638b799f663341ca6d3c06ed59a7fd01d605a80f7006a29ef1b8bc4094ba4d77fdbddc42aa46f265564fad10560f70
7
+ data.tar.gz: ca482d442059b2340f1769b9c7345772f944a842f493419e9c63723167d42c67b9ee27c4e7ac79838e216481283668a118398764c16b28cac5e352cf60dc9a2b
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-indicative"
6
- s.version = "0.1.5"
6
+ s.version = "0.1.6"
7
7
  s.authors = ["Sam Millar"]
8
8
  s.email = ["sam@millar.io"]
9
9
  s.homepage = "https://github.com/millar/fluent-plugin-indicative"
@@ -5,7 +5,7 @@ require 'uri'
5
5
 
6
6
  require 'fluent/plugin/output'
7
7
 
8
- BATCH_SIZE = 100
8
+ BATCH_SIZE = 15
9
9
 
10
10
 
11
11
  def flatten_hash(hash)
@@ -69,7 +69,7 @@ class IndicativeOutputTest < Test::Unit::TestCase
69
69
  d = create_driver(BUFFER_CONFIG)
70
70
  stub_request(:any, d.instance.api_url)
71
71
  d.run(default_tag: 'test') do
72
- 20.times do
72
+ 5.times do
73
73
  d.feed({'event_name' => 'screen_view', 'created_at' => '2015-01-01T10:00:00.000Z', 'session_id' => 'a3bd2', 'user_id' => nil, 'screen' => {'id' => 'index'}})
74
74
  end
75
75
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-indicative
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Millar