Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
liunaijie committed Jul 17, 2024
1 parent d2e7ed1 commit 86d36c1
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,13 @@ private void parseTransform(
final String factoryId = getFactoryId(readonlyConfig);
// get jar urls
Set<URL> jarUrls = new HashSet<>();
jarUrls.addAll(getTransformPluginJarPaths(config));
List<URL> transformPluginJarPaths = getTransformPluginJarPaths(config);
log.info(
"transformPluginJarPaths is : [{}]",
transformPluginJarPaths.stream()
.map(URL::getPath)
.collect(Collectors.joining(", ")));
jarUrls.addAll(transformPluginJarPaths);
final List<String> inputIds = getInputIds(readonlyConfig);

List<Tuple2<CatalogTable, Action>> inputs =
Expand Down

0 comments on commit 86d36c1

Please sign in to comment.