diff --git a/app/controllers/api/functions.php b/app/controllers/api/functions.php index b53396c11f..fbccf7dd89 100644 --- a/app/controllers/api/functions.php +++ b/app/controllers/api/functions.php @@ -684,6 +684,8 @@ App::get('/v1/functions/:functionId/deployments') $deployment['buildStderr'] = $build->getAttribute('stderr', ''); } + var_dump($results); + $response->dynamic(new Document([ 'deployments' => $results, 'sum' => $sum, diff --git a/app/views/console/functions/function.phtml b/app/views/console/functions/function.phtml index 65540bb93b..929adaedf0 100644 --- a/app/views/console/functions/function.phtml +++ b/app/views/console/functions/function.phtml @@ -177,7 +177,7 @@ $usageStatsEnabled = $this->getParam('usageStatsEnabled', true);