Skip to content

Commit e524c1c

Browse files
authored
Merge pull request #361 from olix21/patch_guid
Fix wrong argument type
2 parents aaae22f + 1029cd9 commit e524c1c

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)