aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2023-10-23 14:00:15 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2023-10-23 14:00:42 +0300
commit6307309baf64555601ed53527ce9f2fa6fbe09f6 (patch)
tree87e957125b5b2234c08ce0d9f9aeb4c61e2433cf /Software/Visual_Studio/Tango.Integration
parent91851a079afd4b3956753b7e393c63ae631b6df8 (diff)
downloadTango-6307309baf64555601ed53527ce9f2fa6fbe09f6.tar.gz
Tango-6307309baf64555601ed53527ce9f2fa6fbe09f6.zip
Reset dryers bug.
Related Work Items: #9175
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs
index a33ee3165..2e885e00b 100644
--- a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs
+++ b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs
@@ -4676,7 +4676,7 @@ namespace Tango.Integration.Operation
/// <returns></returns>
public Task ResetCard(int cardID)
{
- return SendRequest<ResetCardRequest, ResetCardResponse>(new ResetCardRequest() { }, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(3) });
+ return SendRequest<ResetCardRequest, ResetCardResponse>(new ResetCardRequest() { CardID = cardID }, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(3) });
}
#endregion