Skip to content

Commit e149cc6

Browse files
authored
Merge pull request #361 from olix21/patch_guid
Fix wrong argument type
2 parents 253f3b9 + 41d4e6e commit e149cc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/dbal/DbalConsumer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ protected function receiveMessage()
155155

156156
// remove message
157157
$affectedRows = $this->dbal->delete($this->context->getTableName(), ['id' => $dbalMessage['id']], [
158-
'id' => Type::INTEGER,
158+
'id' => Type::GUID,
159159
]);
160160

161161
if (1 !== $affectedRows) {

0 commit comments

Comments
 (0)