Skip to content

Commit c1ce9db

Browse files
Merge pull request #161 from SpectraLogic/vail_agent_type_321
ESCP-3680: Add VAIL agent type and update version
2 parents 371b6d9 + 597c471 commit c1ce9db

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

SpectraLogic.SpectraRioBrokerClient.Test/SpectraRioBrokerClientTest.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,10 @@ public void GetJobsTest()
765765
new Guid("8f0496e2-4db8-4d12-96f4-8c9c889cae77"),
766766
new ForeignJobDetails("2b6506dc-ed65-4196-ad87-c101548dad68", ForeignJobType.DIVA)
767767
},
768+
{
769+
new Guid("8f0496e2-4db8-4d12-96f4-8c9c889cae76"),
770+
new ForeignJobDetails("2b6506dc-ed65-4196-ad87-c101548dad66", ForeignJobType.VAIL)
771+
},
768772
{
769773
new Guid("8f0496e2-4db8-4d12-96f4-8c9c889cae79"),
770774
new ForeignJobDetails("d6a22583-ace2-426a-945f-8b59fc943ec3", ForeignJobType.UNKNOWN)

SpectraLogic.SpectraRioBrokerClient.Test/TestFiles/GetJobsResponse

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
"id": "2b6506dc-ed65-4196-ad87-c101548dad68",
5353
"type": "DIVA"
5454
},
55+
"8f0496e2-4db8-4d12-96f4-8c9c889cae76": {
56+
"id": "2b6506dc-ed65-4196-ad87-c101548dad66",
57+
"type": "VAIL"
58+
},
5559
"8f0496e2-4db8-4d12-96f4-8c9c889cae79": {
5660
"id": "d6a22583-ace2-426a-945f-8b59fc943ec3",
5761
"type": "UNKNOWN"

SpectraLogic.SpectraRioBrokerClient/Model/ForeignJobDetails.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ public enum ForeignJobType
4242
/// </summary>
4343
DIVA,
4444

45+
/// <summary>
46+
/// The vail
47+
/// </summary>
48+
VAIL,
49+
4550
/// <summary>
4651
/// The unknown
4752
/// </summary>

SpectraLogic.SpectraRioBrokerClient/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
// You can specify all the values or you can default the Build and Revision Numbers
4848
// by using the '*' as shown below:
4949
// [assembly: AssemblyVersion("1.0.*")]
50-
[assembly: AssemblyVersion("3.2.0")]
51-
[assembly: AssemblyFileVersion("3.2.0")]
50+
[assembly: AssemblyVersion("3.2.1")]
51+
[assembly: AssemblyFileVersion("3.2.1")]
5252

5353
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
5454
[assembly: InternalsVisibleTo("SpectraLogic.SpectraRioBrokerClient.Test")]

0 commit comments

Comments
 (0)