pratapaditya04 commented on code in PR #3978:
URL: https://github.com/apache/gobblin/pull/3978#discussion_r1650635452


##########
gobblin-runtime/src/test/java/org/apache/gobblin/runtime/spec_store/MysqlSpecStoreTest.java:
##########
@@ -130,6 +132,35 @@ public void setUp() throws Exception {
         .withDescription("Test flow spec 4")
         .withVersion("Test version 4")
         .build();
+    flowSpec5=
+        FlowSpec.builder(this.uri5)
+            .withConfig(ConfigBuilder.create()
+                .addPrimitive(FLOW_SOURCE_IDENTIFIER_KEY, "source")
+                .addPrimitive(FLOW_DESTINATION_IDENTIFIER_KEY, "destination")
+                .addPrimitive(ConfigurationKeys.JOB_SCHEDULE_KEY, "0 0 8 * * ? 
*")
+                .addPrimitive(ConfigurationKeys.FLOW_OWNING_GROUP_KEY, 
"owningGroup")
+                .addPrimitive(ConfigurationKeys.FLOW_RUN_IMMEDIATELY, "false")
+                .addPrimitive("user.to.proxy", "userA")
+                .addPrimitive(ConfigurationKeys.FLOW_GROUP_KEY, "fg5")
+                .addPrimitive(ConfigurationKeys.FLOW_NAME_KEY, "fn5").build())
+            .withDescription("Test flow spec 5")
+            .withVersion("Test version 5")
+            .build();
+
+    flowSpec5Updated=
+        FlowSpec.builder(this.uri5)
+            .withConfig(ConfigBuilder.create()
+                .addPrimitive(FLOW_SOURCE_IDENTIFIER_KEY, "sourceUpdated")
+                .addPrimitive(FLOW_DESTINATION_IDENTIFIER_KEY, 
"destinationUpdated")
+                .addPrimitive(ConfigurationKeys.JOB_SCHEDULE_KEY, "0 0 9 * * ? 
*")
+                .addPrimitive(ConfigurationKeys.FLOW_OWNING_GROUP_KEY, 
"owningGroupUpdated")
+                .addPrimitive(ConfigurationKeys.FLOW_RUN_IMMEDIATELY, "true")
+                .addPrimitive("user.to.proxy", "userAUpdated")

Review Comment:
   Sure, have kept FLOW_RUN_IMMEDIATELY unupdated, 



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