Merge branch 'dillon/34.6-jenkins-vapor' into vapor/production

This commit is contained in:
Dillon Ngo
2024-09-14 01:29:52 +08:00
2 changed files with 10 additions and 6 deletions
@@ -72,6 +72,10 @@ class ProcessYDPortalDataV2Command extends Command
$count = 0;
for ($x = $from; $x <= $to; $x++) {
if ($count >= 2) {
break;
}
$startDate = Carbon::today()->subDays($x);
$startLimit = Carbon::parse('01-12-2021');
+6 -6
View File
@@ -73,7 +73,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 3, //cief todo: retention to be updated
'retention' => env('APP_ENV') === 'production' ? 90 : 3,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -144,7 +144,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 3, //cief todo: retention to be updated
'retention' => env('APP_ENV') === 'production' ? 90 : 3,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -168,7 +168,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 3, //cief todo: retention to be updated
'retention' => env('APP_ENV') === 'production' ? 90 : 3,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -192,7 +192,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 3, //cief todo: retention to be updated
'retention' => env('APP_ENV') === 'production' ? 90 : 3,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -217,7 +217,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 3, //cief todo: retention to be updated
'retention' => env('APP_ENV') === 'production' ? 90 : 3,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -241,7 +241,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 3, //cief todo: retention to be updated
'retention' => env('APP_ENV') === 'production' ? 90 : 3,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],