This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 3cca82ca40 Fixing instance type to resolve
https://github.com/apache/pinot/issues/12677 issue (#12678)
3cca82ca40 is described below
commit 3cca82ca405f68401f62ec7e3b51eda64a632ea5
Author: soumitra-st <[email protected]>
AuthorDate: Wed Mar 20 17:07:27 2024 -0700
Fixing instance type to resolve
https://github.com/apache/pinot/issues/12677 issue (#12678)
---
pinot-controller/src/main/resources/app/interfaces/types.d.ts | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/pinot-controller/src/main/resources/app/interfaces/types.d.ts
b/pinot-controller/src/main/resources/app/interfaces/types.d.ts
index 39fab3d18a..52f937bf0a 100644
--- a/pinot-controller/src/main/resources/app/interfaces/types.d.ts
+++ b/pinot-controller/src/main/resources/app/interfaces/types.d.ts
@@ -280,10 +280,10 @@ declare module 'Models' {
}
export const enum InstanceType {
- BROKER = "broker",
- CONTROLLER = "controller",
- MINION = "minion",
- SERVER = "server"
+ BROKER = "BROKER",
+ CONTROLLER = "CONTROLLER",
+ MINION = "MINION",
+ SERVER = "SERVER"
}
export const enum TableType {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]