diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-10-23 14:00:15 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-10-23 14:00:42 +0300 |
| commit | 6307309baf64555601ed53527ce9f2fa6fbe09f6 (patch) | |
| tree | 87e957125b5b2234c08ce0d9f9aeb4c61e2433cf /Software/Visual_Studio/Tango.Integration | |
| parent | 91851a079afd4b3956753b7e393c63ae631b6df8 (diff) | |
| download | Tango-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.cs | 2 |
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 |
