Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docker/development/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,9 @@ services:
# AIRFLOW__LINEAGE__JWT_TOKEN: ...
# AIRFLOW__CORE__AUTH_MANAGER: airflow.providers.fab.auth_manager.fab_auth_manager.FabAuthManager
# AIRFLOW__CORE__SIMPLE_AUTH_MANAGER_ALL_ADMINS: true
AIRFLOW__SCHEDULER__DAG_DIR_LIST_INTERVAL: 15
AIRFLOW__DAG_PROCESSOR__MIN_FILE_PROCESS_INTERVAL: 0
AIRFLOW__DAG_PROCESSOR__REFRESH_INTERVAL: 0

entrypoint: /bin/bash
command:
- "/opt/airflow/ingestion_dependency.sh"
Expand Down
3 changes: 2 additions & 1 deletion docker/development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,8 @@ services:
# AIRFLOW__LINEAGE__JWT_TOKEN: ...
# AIRFLOW__CORE__AUTH_MANAGER: airflow.providers.fab.auth_manager.fab_auth_manager.FabAuthManager
# AIRFLOW__CORE__SIMPLE_AUTH_MANAGER_ALL_ADMINS: true
AIRFLOW__SCHEDULER__DAG_DIR_LIST_INTERVAL: 15
AIRFLOW__DAG_PROCESSOR__MIN_FILE_PROCESS_INTERVAL: 0
AIRFLOW__DAG_PROCESSOR__REFRESH_INTERVAL: 0

## Secrets Manager
# To integrate Azure Key Vault
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const triggerTestSuitePipelineAndWaitForSuccess = async (data: {
}) => {
const { page, apiContext, pipeline } = data;
// wait for 2s before the pipeline to be run
await page.waitForTimeout(2000);
await page.waitForTimeout(5000);
await apiContext
.post(`/api/v1/services/ingestionPipelines/trigger/${pipeline?.['id']}`)
.then((res) => {
Expand Down Expand Up @@ -137,7 +137,7 @@ export const triggerTestSuitePipelineAndWaitForSuccess = async (data: {
{
// Custom expect message for reporting, optional.
message: 'Wait for the pipeline to be successful',
timeout: 90_000,
timeout: 180_000,
intervals: [5_000, 10_000],
}
)
Expand Down
Loading