rflow-components-http 1.0.0a1 → 1.0.0a2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,7 +33,7 @@ class RFlow
|
|
33
33
|
def process_message(input_port, input_port_key, connection, message)
|
34
34
|
RFlow.logger.debug { "#{self.class.name}: Received a #{message.data_type_name}" }
|
35
35
|
return unless message.data_type_name == 'RFlow::Message::Data::HTTP::Response'
|
36
|
-
my_events = message.provenance.find_all {|processing_event| processing_event.component_instance_uuid ==
|
36
|
+
my_events = message.provenance.find_all {|processing_event| processing_event.component_instance_uuid == uuid}
|
37
37
|
|
38
38
|
my_events.each do |processing_event|
|
39
39
|
connection_signature_string = processing_event.context.to_s
|
@@ -68,7 +68,7 @@ class RFlow
|
|
68
68
|
def process_http_request
|
69
69
|
RFlow.logger.debug { "#{self.class.name}: Received HTTP request from #{client_ip}:#{client_port} to #{@server_ip}:#{@server_port} for #{@http_request_uri}" }
|
70
70
|
|
71
|
-
processing_event = RFlow::Message::ProcessingEvent.new(server.
|
71
|
+
processing_event = RFlow::Message::ProcessingEvent.new(server.uuid, Time.now.utc)
|
72
72
|
|
73
73
|
request_message = RFlow::Message.new('RFlow::Message::Data::HTTP::Request')
|
74
74
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rflow-components-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.0a2
|
5
5
|
prerelease: 5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-04-
|
12
|
+
date: 2014-04-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rflow
|