Skip to content

Commit c173d9e

Browse files
committed
bump rust version in Dockerfile
1 parent a0e96a6 commit c173d9e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

1616
# build stage
17-
FROM rust:1.84.0-bookworm AS builder
17+
FROM rust:1.88.0-bookworm AS builder
1818

1919
LABEL org.opencontainers.image.title="Parseable"
2020
LABEL maintainer="Parseable Team <[email protected]>"

Dockerfile.debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

1616
# build stage
17-
FROM docker.io/rust:1.84.0-bookworm AS builder
17+
FROM docker.io/rust:1.88.0-bookworm AS builder
1818

1919
LABEL org.opencontainers.image.title="Parseable"
2020
LABEL maintainer="Parseable Team <[email protected]>"

src/handlers/livetail.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ pub fn extract_session_key(headers: &MetadataMap) -> Result<SessionKey, Box<Stat
268268

269269
fn extract_basic_auth(header: &MetadataMap) -> Option<Credentials> {
270270
header
271-
.get("Authorization")
271+
.get("authorization")
272272
.and_then(|value| value.to_str().ok())
273273
.and_then(|value| Credentials::from_header(value.to_string()).ok())
274274
}

0 commit comments

Comments
 (0)