Skip to content

Commit 40f7298

Browse files
SNOW-2043523: Comments cleanup
1 parent 32fd0a1 commit 40f7298

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

ci/docker/connector_test_lambda/Dockerfile313

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ FROM public.ecr.aws/lambda/python:3.13-x86_64
22

33
WORKDIR /home/user/snowflake-connector-python
44

5-
6-
# Our dependencies rely on the Rust toolchain being available in the build-time environment (https://github.com/pyca/cryptography/issues/5771)
7-
85
# Install necessary packages and compilers - we need to build numpy for newer version
96
# Update dnf and install development tools
107
RUN dnf -y update && \
@@ -16,7 +13,8 @@ RUN dnf -y update && \
1613
openblas-devel \
1714
lapack-devel && \
1815
dnf clean all
19-
# Our dependencies rely on the Rust toolchain being available in the build-time environment
16+
17+
# Our dependencies rely on the Rust toolchain being available in the build-time environment (https://github.com/pyca/cryptography/issues/5771)
2018
RUN dnf -y install rust cargo
2119
RUN dnf -y upgrade
2220

src/snowflake/connector/log_configuration.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ def parse_config_file(self):
2626
self.level = log.get("level", "INFO")
2727
self.path = log.get("path", os.path.join(DIRS.user_config_path, "logs"))
2828

29-
# TODO: wont work in 3.13?
30-
# if not self.path.scheme and self.path.netloc and self.path.path.startswith("/"):
3129
if not os.path.isabs(self.path):
3230
raise FileNotFoundError(
3331
f"Log path must be an absolute file path: {self.path}"

0 commit comments

Comments
 (0)