Skip to content

Commit

Permalink
Fixed bug in reading the routing rules configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dib0 committed Dec 17, 2014
1 parent 43b1ed7 commit 0eee8c4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
4 changes: 2 additions & 2 deletions HL7Fuse.Hub/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions HL7Fuse.Logging/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions HL7Fuse/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
3 changes: 3 additions & 0 deletions Solution Items/Release notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 0eee8c4

Please sign in to comment.