FANNG1 commented on code in PR #6782:
URL: https://github.com/apache/gravitino/pull/6782#discussion_r2025852055
##########
server/src/main/java/org/apache/gravitino/server/GravitinoServer.java:
##########
@@ -75,10 +77,13 @@ public class GravitinoServer extends ResourceConfig {
private final GravitinoEnv gravitinoEnv;
+ private final LineageService lineageService;
+
public GravitinoServer(ServerConfig config, GravitinoEnv gravitinoEnv) {
- serverConfig = config;
- server = new JettyServer();
+ this.serverConfig = config;
+ this.server = new JettyServer();
this.gravitinoEnv = gravitinoEnv;
+ this.lineageService = new LineageService();
Review Comment:
auxService is something more heavy and not natively integrated with
Gravitino, both OK for me. Is it necessary to place the lineage service in aux
service?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]