Skip to content

Commit

Permalink
Merge pull request #18153 from mckellyln/hpcc-31027
Browse files Browse the repository at this point in the history
HPCC-31027 Incorrect assignment with newExpiryTime (correcting HPCC-30992)

Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Dec 18, 2023
2 parents 5d12b65 + 7eaa15f commit 5bf3ca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roxie/udplib/udptrs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class UdpReceiverEntry : public IUdpReceiverEntry
{
//requestExpiryTime 0 should only be used if there is no data to send. Ensure it is non zero otherwise.
if (newExpiryTime == 0)
newExpiryTime == 1;
newExpiryTime = 1;
requestExpiryTime.store(newExpiryTime);
}

Expand Down

0 comments on commit 5bf3ca8

Please sign in to comment.