You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Adjust link path so it suitable as part of data file path.
104
112
if (PathUtils.isAbsolutePath(linkPath)) {
105
-
thrownewIllegalArgumentException("Link file path is absolute. Can not infer data file name: " + linkSource.getFullPath());
113
+
thrownewIllegalArgumentException("Link file path is absolute and gor.driver.link.common.root is not set. Can not infer data file name: " + linkSource.getFullPath());
106
114
}
107
115
108
116
vardataFileRootPath = "";
117
+
118
+
// Get root from the link file
109
119
varlink = linkSource.exists()
110
120
? load(linkSource).appendMeta(linkFileMeta)
111
121
: create(linkSource, linkFileMeta);
@@ -114,6 +124,7 @@ public static String inferDataFileNameFromLinkFile(StreamSource linkSource, Stri
0 commit comments