Skip to content

Commit 1f77864

Browse files
authoredMar 10, 2025
fix(BA-901): remove show_kernel_list configuration (#3885)
1 parent d97b81b commit 1f77864

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed
 

‎configs/webserver/sample.conf

-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ is_directory_size_visible = true
7171
# enable_model_store = True
7272
# enable_extend_login_session = False
7373
# If false, directory size in folder explorer will show `-`. default value is set to true.
74-
# If true, the kernel list will be shown in the session detail panel.
75-
show_kernel_list = false
7674

7775
[resources]
7876
# Display "Open port to public" checkbox in the app launcher.

‎src/ai/backend/web/config.py

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@
7272
t.Key("enable_model_store", default=True): t.ToBool(),
7373
t.Key("enable_extend_login_session", default=False): t.ToBool(),
7474
t.Key("is_directory_size_visible", default=True): t.ToBool(),
75-
t.Key("show_kernel_list", default=False): t.ToBool(),
7675
}).allow_extra("*"),
7776
t.Key("security", default=_default_security_config): t.Dict({
7877
t.Key("request_policies", default=[]): t.List(t.String),

‎src/ai/backend/web/templates/config.toml.j2

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ connectionMode = "SESSION"
3333
{% toml_field "eduAppNamePrefix" config["service"]["edu_appname_prefix"] %}
3434
{% toml_field "enableModelStore" config["service"]["enable_model_store"] %}
3535
{% toml_field "enableExtendLoginSession" config["service"]["enable_extend_login_session"] %}
36-
{% toml_field "showKernelList" config["service"]["show_kernel_list"] %}
3736

3837
[resources]
3938
{% toml_field "openPortToPublic" config["resources"]["open_port_to_public"] %}

0 commit comments

Comments
 (0)