Skip to content

Commit

Permalink
local feature only on realtime dag mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsitsi committed Jan 22, 2024
1 parent b2c6140 commit 1147345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tiledb/cloud/bioimg/ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def ingest_tiff_udf(
logger.debug("Building graph")
graph = dag.DAG(
name=dag_name,
mode=dag.Mode.BATCH,
mode=dag.Mode.REALTIME if local else dag.Mode.BATCH,
max_workers=max_workers,
namespace=namespace,
retry_strategy=RetryStrategy(
Expand Down

0 comments on commit 1147345

Please sign in to comment.