arjun4084346 commented on code in PR #3545:
URL: https://github.com/apache/gobblin/pull/3545#discussion_r955475616


##########
gobblin-service/src/test/java/org/apache/gobblin/service/modules/orchestration/InMemoryUserQuotaManagerTest.java:
##########
@@ -29,16 +29,16 @@
 import org.testng.annotations.Test;
 
 
-public class UserQuotaManagerTest {
+public class InMemoryUserQuotaManagerTest {
 
-  UserQuotaManager _quotaManager;
+  InMemoryUserQuotaManager _quotaManager;
 
   @BeforeClass
   public void setUp() {
     Config quotaConfig = ConfigFactory.empty()
-        .withValue(UserQuotaManager.PER_USER_QUOTA, 
ConfigValueFactory.fromAnyRef("user:1,user2:1,user3:1,user6:1"))
-        .withValue(UserQuotaManager.PER_FLOWGROUP_QUOTA, 
ConfigValueFactory.fromAnyRef("group1:1,group2:2"));
-    this._quotaManager = new UserQuotaManager(quotaConfig);
+        .withValue(InMemoryUserQuotaManager.PER_USER_QUOTA, 
ConfigValueFactory.fromAnyRef("user:1,user2:1,user3:1,user6:1"))

Review Comment:
   no difference, they are the same shared fields. I changed it to 
AbstractUserQuotaManager because that's exactly where they are defined.



-- 
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]

Reply via email to