1
0
Fork 0
mirror of synced 2024-09-30 09:18:14 +13:00

feat: fix retry build

This commit is contained in:
Christy Jacob 2022-02-17 00:11:05 +04:00
parent 75f4061698
commit 40afec223c

View file

@ -483,7 +483,7 @@ App::post('/v1/execution')
$runtime = $activeRuntimes->get($container);
$secret = $runtime['key'];
if (empty($secret)) {
throw new Exception('Runtime secret not found. Please create the runtime.', 500);
throw new Exception('Runtime secret not found. Please re-create the runtime.', 500);
}
Console::info('Executing Runtime: ' . $runtimeId);