File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
src/main/java/io/cdap/plugin/dlp Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7575 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
7676 <avro .version>1.8.2</avro .version>
7777 <commons .codec.version>1.4</commons .codec.version>
78- <cdap .version>6.7 .0-SNAPSHOT</cdap .version>
79- <cdap .plugin.version>2.9 .0-SNAPSHOT</cdap .plugin.version>
78+ <cdap .version>6.8 .0-SNAPSHOT</cdap .version>
79+ <cdap .plugin.version>2.10 .0-SNAPSHOT</cdap .plugin.version>
8080 <google .protobuf.java.version>3.19.4</google .protobuf.java.version>
8181 <guava .version>27.0.1-jre</guava .version>
8282 <httpclient .version>4.5.6</httpclient .version>
388388 <version >1.1.0</version >
389389 <configuration >
390390 <cdapArtifacts >
391- <parent >system:cdap-data-pipeline[6.1.1 ,7.0.0-SNAPSHOT)
391+ <parent >system:cdap-data-pipeline[6.8.0-SNAPSHOT ,7.0.0-SNAPSHOT)
392392 </parent >
393- <parent >system:cdap-data-streams[6.1.1 ,7.0.0-SNAPSHOT)
393+ <parent >system:cdap-data-streams[6.8.0-SNAPSHOT ,7.0.0-SNAPSHOT)
394394 </parent >
395395 </cdapArtifacts >
396396 </configuration >
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ public void prepareRun(StageSubmitterContext context) throws Exception {
136136 throw new IllegalArgumentException (
137137 "Unable to validate template name. Ensure template ID matches the specified ID in DLP. List of defined " +
138138 "templates can be found at " +
139- "https://console.cloud.google.com/security/dlp/landing/configuration/templates/inspect" );
139+ "https://console.cloud.google.com/security/dlp/landing/configuration/templates/inspect" , e );
140140 }
141141 }
142142
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ public void prepareRun(StageSubmitterContext context) throws Exception {
145145 InspectTemplate template = client .getInspectTemplate (request );
146146 } catch (Exception e ) {
147147 throw new IllegalArgumentException (
148- "Unable to validate template name. Ensure template ID matches the specified ID in DLP" );
148+ "Unable to validate template name. Ensure template ID matches the specified ID in DLP" , e );
149149 }
150150 }
151151 }
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ public void prepareRun(StageSubmitterContext context) throws Exception {
136136 InspectTemplate template = client .getInspectTemplate (request );
137137 } catch (Exception e ) {
138138 throw new IllegalArgumentException (
139- "Unable to validate template name. Ensure template ID matches the specified ID in DLP" );
139+ "Unable to validate template name. Ensure template ID matches the specified ID in DLP" , e );
140140 }
141141 }
142142
You can’t perform that action at this time.
0 commit comments