rflow-components-amqp 1.0.0 → 1.0.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
  SHA1:
3
- metadata.gz: a8c91bb5e3385558e9e91afdc0c07963ca1d332b
4
- data.tar.gz: 8507c9300fdd49f0cb7e2dd498b9268611a6fbaa
3
+ metadata.gz: f4205628f5286b692cf8fd1fe5bddf5a7d946a61
4
+ data.tar.gz: f7fff9bf0d0e968fdb3d59837c836665653d94de
5
5
  SHA512:
6
- metadata.gz: b271180bbb7fa3d1226bc284f21ecc8258073e7bfe48f8f2a45de256dabb812105a181119d3b692872f41c5acbe29536c1db909390cba877e1989d0de0187c9b
7
- data.tar.gz: 235662cd485a6330a359893677f60e4d1d43cd092058edbb69a3dca7ffc3f7a6b91b8521278a7af9145370fcf67a0aba19848f53334563796fc534e86ee1daef
6
+ metadata.gz: 65c53ef866da9fea9966472983954e8a693c222be451e33917d6212cda61f6de8895dfb3331f7a888e8229ae750cef4c75c5018c81a71717d58fad3da5f7df43
7
+ data.tar.gz: dc54307bc5c83b029df8f64f0661a917e021aad6a7d7f963360ae51166d2447b7d3aa4d40f719cebaf20320816805763547da80e4e5f8b1ed1bf2ba8552cf807
@@ -58,7 +58,7 @@ class RFlow
58
58
  ::AMQP::Queue.new(@amqp_channel, @config['queue_name'], @queue_config) do |queue|
59
59
  @amqp_queue = queue
60
60
  @amqp_queue.bind(@amqp_exchange, :routing_key => @config['binding_pattern']).subscribe(:ack => true) do |header, payload|
61
- RFlow.logger.debug "AMQP message received"
61
+ RFlow.logger.debug { "#{name}: AMQP message received" }
62
62
  processing_event = RFlow::Message::ProcessingEvent.new(instance_uuid, Time.now.utc).tap do |e|
63
63
  e.completed_at = Time.now.utc
64
64
  end
@@ -1,7 +1,7 @@
1
1
  class RFlow
2
2
  module Components
3
3
  module AMQP
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rflow-components-amqp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael L. Artz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-30 00:00:00.000000000 Z
11
+ date: 2014-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rflow