You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -44,7 +46,7 @@ import { uiState } from '../../../state/ui-state';
44
46
importPageContentfrom'../../misc/page-content';
45
47
46
48
constDEFAULT_OPTION={
47
-
value: 'DEFAULT',
49
+
value: SchemaRegistryModes.DEFAULT,
48
50
title: 'Default',
49
51
description: 'Use the globally configured default mode.',
50
52
warning: null,
@@ -57,20 +59,20 @@ const MODE_OPTIONS: {
57
59
warning: string|null;
58
60
}[]=[
59
61
{
60
-
value: 'READWRITE',
62
+
value: SchemaRegistryModes.READWRITE,
61
63
title: 'Read/Write',
62
64
description: 'The registry accepts new schema registrations and allows reads. This is the normal operating mode.',
63
65
warning: null,
64
66
},
65
67
{
66
-
value: 'READONLY',
68
+
value: SchemaRegistryModes.READONLY,
67
69
title: 'Read Only',
68
70
description:
69
71
'Schema lookups are permitted but registration is blocked. Use this for standby clusters in a disaster recovery setup that replicate schemas from an active cluster.',
70
72
warning: null,
71
73
},
72
74
{
73
-
value: 'IMPORT',
75
+
value: SchemaRegistryModes.IMPORT,
74
76
title: 'Import',
75
77
description:
76
78
'Allows registering schemas with specific IDs and versions while bypassing compatibility checks. Use this on target clusters during migrations to preserve schema IDs. Requires an empty registry or subject.',
0 commit comments