Oliver Mannion
Oliver Mannion
For now I'm using `docker_build( ..., platform='linux/amd64')` and it works!
Sure! ``` $ tilt get clusters -o yaml apiVersion: v1 items: - apiVersion: tilt.dev/v1alpha1 kind: Cluster metadata: annotations: tilt.dev/resource: (Tiltfile) creationTimestamp: "2022-08-17T02:51:49Z" name: default ownerReferences: - apiVersion: tilt.dev/v1alpha1 blockOwnerDeletion: true...
Buildkit rootless seems to work in our cluster. I have docker locally on my mac m1 (arm64). Although I do like building in the cluster, because the cluster is amd64...
Yeh None is returned when the caller provides an empty command: https://github.com/snowflakedb/snowflake-connector-python/blob/98677d56a6031b8bafb2765a1a2d2976397b0308/src/snowflake/connector/cursor.py#L643 Could this be a ValueError exception instead perhaps? From the [python docs](https://docs.python.org/3/library/exceptions.html): > exception ValueError Raised when an...
It turns out if we unmapped the upstream task, eg: ```python with Flow( "map-flow", ) as flow: batches = fetch_batches() counts = count_rows.map(batches, upstream_tasks=[unmapped(setup())]) summary(counts) ``` we get the expected...
It's still happening when I use commit https://github.com/PrefectHQ/prefect/pull/6948/commits/464087238fe1df7c7f698eb3c85c1431eaeeaa4f 😿
Updated example using `submit` in `prefect>=2.0`: ```python from prefect import flow, get_run_logger, task from prefect.futures import PrefectFuture from prefect.utilities.asyncutils import Sync @flow def add_flow(i: int) -> PrefectFuture[int, Sync]: # result...
@blueyed there's been a PR to modify the README to use `.zshrc` instead of `. zshenv`, but it was closed https://github.com/pyenv/pyenv-virtualenv/pull/167 perhaps it can be reopened?
The workaround, for now, is to remove the type hint from the `config` param (which also disables type checking).
FYI #6697 introduces a `--param` and `--params` cli option to `prefect deployment build`