Github user hsaputra commented on a diff in the pull request:
https://github.com/apache/twill/pull/40#discussion_r107739693
--- Diff:
twill-core/src/main/java/org/apache/twill/internal/TwillRuntimeSpecification.java
---
@@ -105,4 +114,17 @@ public String getRmSchedulerAddr() {
public Map<String, Integer> getMaxRetries() {
return maxRetries;
}
+
+ /**
+ * Returns the ZK connection string for the Kafka used for log
collections,
+ * or {@code null} if log collection is disabled.
+ */
+ @Nullable
+ public String getKafkaZKConnect() {
+ if (!isLogCollectionEnabled()) {
--- End diff --
The call to `getZkConnectStr` and `getTwillAppName` and `getTwillAppRunId`
will never return null based on the contract (no @Nullable) , hence call to
`getKafkaZKConnect` will never be null.
I was saying that either way, someone need to check whether call to
getKafkaZKConnect will return null if log collection is disabled, so why not
ask to isLogCollectionEnabled to check first.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---