File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
feathr-impl/src/main/scala/com/linkedin/feathr/offline/util Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -68,11 +68,12 @@ private[offline] object AclCheckUtils {
6868 } yield featureAnchorWithSource.source.path
6969
7070 val shouldSkipFeature = FeathrUtils .getFeathrJobParam(ss.sparkContext.getConf, FeathrUtils .SKIP_MISSING_FEATURE ).toBoolean
71+ val shouldAddDefaultCol = FeathrUtils .getFeathrJobParam(ss.sparkContext.getConf, FeathrUtils .SKIP_MISSING_FEATURE ).toBoolean
7172 val invalidPaths = AclCheckUtils .checkReadAuthorization(conf, allRequiredPaths.distinct)
7273 if (invalidPaths.isEmpty) {
7374 (Success (()), invalidPaths.map(_._2))
7475 } else {
75- if (! shouldSkipFeature) {
76+ if (! shouldSkipFeature || ! shouldAddDefaultCol ) {
7677 (Failure (
7778 new RuntimeException (
7879 " Can not verify read authorization on the following paths. This can be due to" +
You can’t perform that action at this time.
0 commit comments