dongjoon-hyun commented on pull request #31636: URL: https://github.com/apache/spark/pull/31636#issuecomment-948095970
Unfortunately, I missed that this is a breaking change due to the following. ```scala val sink = Utils.classForName[Sink](classPath) - .getConstructor( - classOf[Properties], classOf[MetricRegistry], classOf[SecurityManager]) - .newInstance(kv._2, registry, securityMgr) + .getConstructor(classOf[Properties], classOf[MetricRegistry]) + .newInstance(kv._2, registry) ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
