1
0
Fork 0
mirror of synced 2024-10-03 19:53:33 +13:00

Fix getting function ID

This commit is contained in:
Matej Bačo 2022-08-17 13:42:06 +00:00
parent c93b7aa452
commit 7c2fa12414

View file

@ -88,7 +88,7 @@ class FunctionsV1 extends Worker
Console::success('Triggered function: ' . $events[0]);
} catch (\Throwable $th) {
Console::error("Failed to execute " . $function->getAttribute('id') . " with error: " . $th->getMessage());
Console::error("Failed to execute " . $function->getId() . " with error: " . $th->getMessage());
}
}
}