Skip to content

Commit e6f679d

Browse files
wyattwalterclaude
andcommitted
feat: show the Git Redis connection status on the Configuration page (APP-15850)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 46a77a0 commit e6f679d

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

app/client/src/ce/pages/AdminSettings/config/configuration.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@ export const APPSMITH_REDIS_CONNECTION_INFO: Setting = {
4848
"* The Redis server Appsmith uses for session storage, configured via the APPSMITH_REDIS_URL environment variable on the instance.",
4949
};
5050

51+
export const APPSMITH_REDIS_GIT_CONNECTION_INFO: Setting = {
52+
id: "APPSMITH_REDIS_GIT_CONNECTION_INFO",
53+
category: SettingCategories.CONFIGURATION,
54+
controlType: SettingTypes.TEXTINPUT,
55+
controlSubType: SettingSubtype.TEXT,
56+
isReadOnly: true,
57+
label: "Redis (Git operations)",
58+
format: formatConnectionInfo,
59+
subText:
60+
"* The Redis server Appsmith uses for Git operations, configured via the APPSMITH_REDIS_GIT_URL environment variable on the instance. When that variable is not set, Git operations use the same Redis as session storage.",
61+
};
62+
5163
export const APPSMITH_BASE_URL: Setting = {
5264
id: "APPSMITH_BASE_URL",
5365
category: SettingCategories.CONFIGURATION,
@@ -168,6 +180,7 @@ export const config: AdminConfigType = {
168180
settings: [
169181
APPSMITH_DB_CONNECTION_INFO,
170182
APPSMITH_REDIS_CONNECTION_INFO,
183+
APPSMITH_REDIS_GIT_CONNECTION_INFO,
171184
APPSMITH_BASE_URL,
172185
APPSMITH_POOL_SIZE_CONFIG,
173186
APPSMITH_ALLOWED_FRAME_ANCESTORS_SETTING,

0 commit comments

Comments
 (0)