aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2024-05-05 17:24:14 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2024-05-05 17:24:14 +0300
commit2e752ce186fc34f5530841bdac7537ee775ed3f6 (patch)
treeab4fad972fac8f8fc530b233f567ef33453f36a9 /Software/Visual_Studio/FSE/Tango.FSE.Common
parent5ebb5e6092a74190654bf6d9e5d7d46f9db775a6 (diff)
downloadTango-2e752ce186fc34f5530841bdac7537ee775ed3f6.tar.gz
Tango-2e752ce186fc34f5530841bdac7537ee775ed3f6.zip
Job uploader from FSE/RSM.
User password reset from FSE. Connectivity check method set to Windows by default.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs7
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/RemoteJobUpload/IRemoteJobUploadProvider.cs3
2 files changed, 8 insertions, 2 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs
index f518ef2d2..ce14fa684 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs
@@ -195,6 +195,11 @@ namespace Tango.FSE.Common
public int LastConnectedMachineType { get; set; }
/// <summary>
+ /// Gets or sets the last job upload thread unique identifier.
+ /// </summary>
+ public String LastJobUploadThreadGuid { get; set; }
+
+ /// <summary>
/// Initializes a new instance of the <see cref="FSESettings"/> class.
/// </summary>
public FSESettings()
@@ -212,7 +217,7 @@ namespace Tango.FSE.Common
EnableAdaptiveScaling = true;
TerminatedExpectedly = true;
FileAssociationServicePort = 1800;
- ConnectivityVerificationMethod = ConnectivityVerificationMethod.Default;
+ ConnectivityVerificationMethod = ConnectivityVerificationMethod.Windows;
ForceExternalBridgeProtocolConfiguration = true;
EnableHotFolder = true;
StatisticsStreamingConfig = new StatisticsStreamingConfiguration();
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/RemoteJobUpload/IRemoteJobUploadProvider.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/RemoteJobUpload/IRemoteJobUploadProvider.cs
index a38feed53..b27694f19 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Common/RemoteJobUpload/IRemoteJobUploadProvider.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/RemoteJobUpload/IRemoteJobUploadProvider.cs
@@ -18,7 +18,8 @@ namespace Tango.FSE.Common.RemoteJobUpload
/// </summary>
/// <param name="filePath">The job file path.</param>
/// <param name="jobType">Remote job type.</param>
+ /// <param name="name">Optional job name</param>
/// <returns></returns>
- Task UploadJob(String filePath, RemoteJobUploadType jobType);
+ Task UploadJob(String filePath, RemoteJobUploadType jobType, String name = null);
}
}