/home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src/DynamoDb
Edit: /home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src/DynamoDb/LockingSessionConnection.php (1932B)
$this->getTableName(),
'Key' => $this->formatKey($id),
'Expected' => ['lock' => ['Exists' => false]],
'AttributeUpdates' => ['lock' => ['Value' => ['N' => '1']]],
'ReturnValues' => 'ALL_NEW',
];
// Acquire the lock and fetch the item data.
$timeout = time() + $this->getMaxLockWaitTime();
while (true) {
try {
$item = [];
$result = $this->client->updateItem($params);
if (isset($result['Attributes'])) {
foreach ($result['Attributes'] as $key => $value) {
$item[$key] = current($value);
}
}
return $item;
} catch (DynamoDbException $e) {
if ($e->getAwsErrorCode() === 'ConditionalCheckFailedException'
&& time() < $timeout
) {
usleep(rand(
$this->getMinLockRetryMicrotime(),
$this->getMaxLockRetryMicrotime()
));
} else {
break;
}
}
}
}
}