Skip to content

Commit

Permalink
fix(BA-901): remove show_kernel_list configuration (#3885)
Browse files Browse the repository at this point in the history
  • Loading branch information
ironAiken2 authored Mar 10, 2025
1 parent d97b81b commit 1f77864
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions configs/webserver/sample.conf
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ is_directory_size_visible = true
# enable_model_store = True
# enable_extend_login_session = False
# If false, directory size in folder explorer will show `-`. default value is set to true.
# If true, the kernel list will be shown in the session detail panel.
show_kernel_list = false

[resources]
# Display "Open port to public" checkbox in the app launcher.
Expand Down
1 change: 0 additions & 1 deletion src/ai/backend/web/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
t.Key("enable_model_store", default=True): t.ToBool(),
t.Key("enable_extend_login_session", default=False): t.ToBool(),
t.Key("is_directory_size_visible", default=True): t.ToBool(),
t.Key("show_kernel_list", default=False): t.ToBool(),
}).allow_extra("*"),
t.Key("security", default=_default_security_config): t.Dict({
t.Key("request_policies", default=[]): t.List(t.String),
Expand Down
1 change: 0 additions & 1 deletion src/ai/backend/web/templates/config.toml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ connectionMode = "SESSION"
{% toml_field "eduAppNamePrefix" config["service"]["edu_appname_prefix"] %}
{% toml_field "enableModelStore" config["service"]["enable_model_store"] %}
{% toml_field "enableExtendLoginSession" config["service"]["enable_extend_login_session"] %}
{% toml_field "showKernelList" config["service"]["show_kernel_list"] %}

[resources]
{% toml_field "openPortToPublic" config["resources"]["open_port_to_public"] %}
Expand Down

0 comments on commit 1f77864

Please sign in to comment.