From 0eee8c4a00e4f0eab8b0023956535aad440161be Mon Sep 17 00:00:00 2001 From: dib0 Date: Wed, 17 Dec 2014 19:46:07 +0100 Subject: [PATCH] Fixed bug in reading the routing rules configuration --- .../Configuration/HL7RoutingRulesConfigurationHandler.cs | 1 + HL7Fuse.Hub/Properties/AssemblyInfo.cs | 4 ++-- HL7Fuse.Logging/Properties/AssemblyInfo.cs | 4 ++-- HL7Fuse/Properties/AssemblyInfo.cs | 4 ++-- Solution Items/Release notes.txt | 3 +++ 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/HL7Fuse.Hub/Configuration/HL7RoutingRulesConfigurationHandler.cs b/HL7Fuse.Hub/Configuration/HL7RoutingRulesConfigurationHandler.cs index 26ea790..57cbca1 100644 --- a/HL7Fuse.Hub/Configuration/HL7RoutingRulesConfigurationHandler.cs +++ b/HL7Fuse.Hub/Configuration/HL7RoutingRulesConfigurationHandler.cs @@ -36,6 +36,7 @@ private RoutingRuleSet GetRoutingRule(XmlNode node) { RoutingRuleSet rule = new RoutingRuleSet(node.ChildNodes); rule.EndPoint = node.Attributes["endpoint"].Value; + rule.RouteOnValidRules = node.Attributes["routeOnValidRules"].Value; return rule; } diff --git a/HL7Fuse.Hub/Properties/AssemblyInfo.cs b/HL7Fuse.Hub/Properties/AssemblyInfo.cs index 27b710b..2ee8492 100644 --- a/HL7Fuse.Hub/Properties/AssemblyInfo.cs +++ b/HL7Fuse.Hub/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.1.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyVersion("1.1.0.1")] +[assembly: AssemblyFileVersion("1.1.0.1")] diff --git a/HL7Fuse.Logging/Properties/AssemblyInfo.cs b/HL7Fuse.Logging/Properties/AssemblyInfo.cs index 00f5d83..9021139 100644 --- a/HL7Fuse.Logging/Properties/AssemblyInfo.cs +++ b/HL7Fuse.Logging/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.1.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyVersion("1.1.0.1")] +[assembly: AssemblyFileVersion("1.1.0.1")] diff --git a/HL7Fuse/Properties/AssemblyInfo.cs b/HL7Fuse/Properties/AssemblyInfo.cs index 0c2c953..f0bf984 100644 --- a/HL7Fuse/Properties/AssemblyInfo.cs +++ b/HL7Fuse/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.1.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyVersion("1.1.0.1")] +[assembly: AssemblyFileVersion("1.1.0.1")] diff --git a/Solution Items/Release notes.txt b/Solution Items/Release notes.txt index cb0ec1f..a1e09b4 100644 --- a/Solution Items/Release notes.txt +++ b/Solution Items/Release notes.txt @@ -22,6 +22,9 @@ HL7Fuse is using the following projects: - NHapiTools 1.4 4. Changelog +- V1.1.0.1 + Fixed bug in reading the routing rules configuration. + - V1.1 Release (December 2014) Added support for more HL7 version. Fixed multiple bigs, with thanks for finding, reporting and testing to James Bateman.