diff --git a/doc/examples/workflow_template/echo.yaml b/doc/examples/workflow_template/echo.yaml index 8c506ff45..8e45af0e0 100644 --- a/doc/examples/workflow_template/echo.yaml +++ b/doc/examples/workflow_template/echo.yaml @@ -3,12 +3,12 @@ kind: Workflow # new type of k8s spec metadata: generateName: echo- # name of the workflow spec spec: - entrypoint: whalesay # invoke the whalesay template + entrypoint: echo # invoke the whalesay template templates: - - name: whalesay # name of the template + - name: echo # name of the template container: - image: docker/whalesay - command: [ cowsay ] + image: busybox + command: [ echo ] args: [ "{{ message }}" ] resources: # limit the resources limits: diff --git a/scripts/packages/tator-py b/scripts/packages/tator-py index 4291158ad..7d5d58524 160000 --- a/scripts/packages/tator-py +++ b/scripts/packages/tator-py @@ -1 +1 @@ -Subproject commit 4291158adb668f5275ff397914fd1517fe838573 +Subproject commit 7d5d58524bcc7e556eeb5e8f95b93434742870cf diff --git a/test/_common.py b/test/_common.py index 24e52d9d3..40c2192ef 100644 --- a/test/_common.py +++ b/test/_common.py @@ -5,7 +5,7 @@ import tator from tator.util._upload_file import _upload_file -from tator.transcode.determine_transcode import determine_transcode +from tator.transcode.determine_transcode import update_media from tator.transcode.make_thumbnails import make_thumbnail_image, make_thumbnail_gif from tator.transcode.transcode import make_video_definition @@ -35,7 +35,7 @@ def create_media(api, project, host, token, type_id, fname, section, media_path) media_id = response.id[0] # Needed to update media level info - determine_transcode(host, token, type_id, media_id, media_path, 1080) + update_media(host, token, type_id, media_id, media_path) with tempfile.TemporaryDirectory() as td: try: