We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737ef07 commit c588db4Copy full SHA for c588db4
src/main/java/co/cask/gcp/gcs/sink/GCSBatchSink.java
@@ -116,7 +116,10 @@ public static class GCSBatchSinkConfig extends GCPReferenceSinkConfig implements
116
@Override
117
public void validate() {
118
super.validate();
119
- GCSConfigHelper.getPath(path);
+ // validate that path is valid
120
+ if (!containsMacro("path")) {
121
+ GCSConfigHelper.getPath(path);
122
+ }
123
if (suffix != null && !containsMacro("suffix")) {
124
new SimpleDateFormat(suffix);
125
}
0 commit comments