2020-07-20 20:16:26 UTC - Devin G. Bost: Does anyone know where in the code I'd find the behavior of auto-ack? I'm trying to get a better understanding of when messages get acknowledged when auto-ack is enabled. ---- 2020-07-20 20:25:10 UTC - Addison Higham: are you referring to functions auto ack? it is implemented by the runtime. `org/apache/pulsar/functions/instance/JavaInstanceRunnable.java:431` for the exactly-once, at least-once cases, and `org/apache/pulsar/functions/instance/JavaInstanceRunnable.java:257` for at-most-once ---- 2020-07-21 02:33:36 UTC - Varghese C: Hi, when I run the check-binary-license locally, I get a list of errors, but Github CI - it passes without errors. I dont understand why. Any pointers?
```$ ./src/check-binary-license ./distribution/server/target/apache-pulsar-*-bin.tar.gz com.sun.activation-jakarta.activation-1.2.2.jar unaccounted for in LICENSE jakarta.activation-jakarta.activation-api-1.2.2.jar unaccounted for in LICENSE jakarta.xml.bind-jakarta.xml.bind-api-2.3.3.jar unaccounted for in LICENSE io.netty-netty-transport-native-kqueue-4.1.48.Final-osx-x86_64.jar mentioned in LICENSE, but not bundled jakarta.activation-jakarta.activation-api-1.2.1.jar mentioned in LICENSE, but not bundled jakarta.xml.bind-jakarta.xml.bind-api-2.3.2.jar mentioned in LICENSE, but not bundled aopalliance-repackaged-2.6.1.jar unaccounted for in lib/presto/LICENSE hk2-api-2.6.1.jar unaccounted for in lib/presto/LICENSE hk2-locator-2.6.1.jar unaccounted for in lib/presto/LICENSE hk2-utils-2.6.1.jar unaccounted for in lib/presto/LICENSE httpclient-4.5.5.jar unaccounted for in lib/presto/LICENSE httpcore-4.4.9.jar unaccounted for in lib/presto/LICENSE jakarta.activation-1.2.2.jar unaccounted for in lib/presto/LICENSE jakarta.inject-2.6.1.jar unaccounted for in lib/presto/LICENSE javassist-3.22.0-CR2.jar unaccounted for in lib/presto/LICENSE jersey-client-2.31.jar unaccounted for in lib/presto/LICENSE jersey-common-2.31.jar unaccounted for in lib/presto/LICENSE jersey-entity-filtering-2.31.jar unaccounted for in lib/presto/LICENSE jersey-hk2-2.31.jar unaccounted for in lib/presto/LICENSE jersey-media-json-jackson-2.31.jar unaccounted for in lib/presto/LICENSE jersey-media-multipart-2.31.jar unaccounted for in lib/presto/LICENSE jetty-alpn-java-client-9.4.27.v20200227.jar unaccounted for in lib/presto/LICENSE osgi-resource-locator-1.0.3.jar unaccounted for in lib/presto/LICENSE pulsar-client-original-2.7.0-SNAPSHOT.jar unaccounted for in lib/presto/LICENSE pulsar-metadata-2.7.0-SNAPSHOT.jar unaccounted for in lib/presto/LICENSE netty-codec-socks-4.1.48.Final.jar mentioned in lib/presto/LICENSE, but not bundled netty-handler-proxy-4.1.48.Final.jar mentioned in lib/presto/LICENSE, but not bundled netty-transport-native-kqueue-4.1.48.Final-osx-x86_64.jar mentioned in lib/presto/LICENSE, but not bundled It looks like there are issues with the LICENSE/NOTICE.``` ----