Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

configure_me_codegen retroactively reserved on our bind_host parame… #520

Merged
merged 3 commits into from
Nov 17, 2022
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 ballista/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ uuid = { version = "1.0", features = ["v4"] }
[dev-dependencies]

[build-dependencies]
configure_me_codegen = "0.4.0"
configure_me_codegen = "=0.4.0"

# use libc on unix like platforms to set worker priority in DedicatedExecutor
[target."cfg(unix)".dependencies.libc]
Expand Down
2 changes: 1 addition & 1 deletion ballista/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ warp = "0.3"
ballista-core = { path = "../core", version = "0.9.0" }

[build-dependencies]
configure_me_codegen = "0.4.1"
configure_me_codegen = "=0.4.0"
tonic-build = { version = "0.8", default-features = false, features = ["transport", "prost"] }
4 changes: 4 additions & 0 deletions dev/docker/ballista-standalone.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

FROM ubuntu:22.04

LABEL org.opencontainers.image.source="https://github.com/apache/arrow-ballista"
LABEL org.opencontainers.image.description="Apache Arrow Ballista Distributed SQL Query Engine"
LABEL org.opencontainers.image.licenses="Apache-2.0"

ARG RELEASE_FLAG=release

ENV RELEASE_FLAG=${RELEASE_FLAG}
Expand Down