Skip to content

Commit 01d14d8

Browse files
committed
Use container-runtime 1.9.1 by default
1 parent 801f2d5 commit 01d14d8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/snowflake/cli/_plugins/remote/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class ServiceResult(enum.Enum):
8484
DEFAULT_IMAGE_REPO = "/snowflake/images/snowflake_images"
8585
DEFAULT_IMAGE_CPU = "st_plat/runtime/x86/runtime_image/snowbooks"
8686
DEFAULT_IMAGE_GPU = "st_plat/runtime/x86/generic_gpu/runtime_image/snowbooks"
87-
DEFAULT_IMAGE_TAG = "1.7.2"
87+
DEFAULT_IMAGE_TAG = "1.9.1"
8888

8989
# Percent of container memory to allocate for /dev/shm volume
9090
MEMORY_VOLUME_SIZE = 0.3

src/snowflake/cli/_plugins/remote/manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -887,10 +887,8 @@ def _get_fresh_token(self) -> str:
887887
from snowflake.cli._app.snow_connector import connect_to_snowflake
888888

889889
fresh_connection = None
890-
try:
891-
log.debug("Creating fresh connection for SSH token...")
892890

893-
current_context = get_cli_context().connection_context
891+
current_context = get_cli_context().connection_context
894892

895893
# Create connection with natural session expiration for SSH token refresh
896894
fresh_connection = connect_to_snowflake(

0 commit comments

Comments
 (0)