Skip to content

Commit

Permalink
update mesa version and fix bug when a cfs session target dynamic was…
Browse files Browse the repository at this point in the history
… selected for deletion
  • Loading branch information
Manuel Sopena Ballesteros committed Oct 11, 2023
1 parent 8f62268 commit 9b875d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish = false # cargo dist --> Avoid publishing to crates.io
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
mesa = "0.15.2"
mesa = "0.15.3"
# mesa = { path = "../mesa" } # Only for development purposes
chrono = "0.4.31"
anyhow = "1.0.44"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/*
# FROM rust:1.64.0-alpine
COPY --from=builder /usr/local/cargo/bin/manta /usr/local/bin/manta
COPY --from=builder /usr/src/manta/config /root/.config/manta/config
COPY --from=builder /usr/src/manta/config.toml /root/.config/manta/config.toml
# Install CA files from linux host to the container
RUN apt-get update
RUN apt-get install -y ca-certificates
Expand Down
5 changes: 2 additions & 3 deletions src/cli/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -621,9 +621,8 @@ pub async fn process_cli(
.unwrap(),
cfs_session_value
.pointer("/status/artifacts/0/result_id")
.unwrap()
.as_str()
.unwrap(),
.and_then(|result_id| result_id.as_str())
.unwrap_or(""),
)
});

Expand Down

0 comments on commit 9b875d6

Please sign in to comment.