Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dataflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
JOB_NAME="${{ env.JOB_PREFIX }}-$(date +%Y%m%d-%H%M%S)"
echo "Submitting ${{ inputs.environment }} job: $JOB_NAME"

python src/ml_pipelines_kfp/dataflow/iris_streaming_pipeline.py \
python src/dataflow/iris_streaming_pipeline.py \
--input_topic ${{ env.PUBSUB_TOPIC }} \
--output_table ${{ env.OUTPUT_TABLE }} \
--project_id ${{ env.PROJECT_ID }} \
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ def run_pipeline(argv=None):

google_cloud_options = pipeline_options.view_as(GoogleCloudOptions)
google_cloud_options.project = known_args.project_id
google_cloud_options.region = known_args.region

with beam.Pipeline(options=pipeline_options) as pipeline:

Expand Down
2 changes: 1 addition & 1 deletion test/test_pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
PUBSUB_SUBSCRIPTION,
PROJECT_ID
)
from ml_pipelines_kfp.iris_xgboost.pubsub_producer import IrisDataPubSubProducer
from scripts.pubsub_producer import IrisDataPubSubProducer


def test_pubsub_connection():
Expand Down
Loading