Neil

Results 4 comments of Neil

We're currently seeing this/similar with even basic image overrides in 1.11.0 (successful in 1.10.7): ``` from flytekit import task, workflow @task(container_image='my-repo/flyte-evotorch:0.3.0') def my_task(): print("I'm a task!") @workflow def wf(): my_task().with_overrides(container_image='my-repo/flyte-evotorch:0.0.1-xxxx')...

@pingsutw We're seeing this on 1.11.0 backend + 1.11.0 flytekit as well.

> Just to expand on ^, if you're looking at the Task Template (in the flyteconsole task details tab) then you'll see the wrong info, as the container image (and...

I noticed that behind a reverse proxy this is occurring for me, specifically because of this code: https://github.com/seaweedfs/seaweedfs/blob/ee0c14673d61be9346a04c6e9ccbbbd6d03a6d9d/weed/s3api/auth_signature_v4.go#L734 Rather than using the original request's schema, it should be using the...