Skip to content

Commit ae4b3f3

Browse files
committed
fix lint
1 parent 43691cb commit ae4b3f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/embulk/output/SnowflakeOutputPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ protected BatchInsert newBatchInsert(PluginTask task, Optional<MergeConfig> merg
142142
SnowflakePluginTask t = (SnowflakePluginTask) task;
143143
// TODO: put some where executes once
144144
if (this.stageIdentifier == null) {
145-
SnowflakeOutputConnection snowflakeCon = (SnowflakeOutputConnection) getConnector(task, true).connect(true);
145+
SnowflakeOutputConnection snowflakeCon =
146+
(SnowflakeOutputConnection) getConnector(task, true).connect(true);
146147
this.stageIdentifier = StageIdentifierHolder.getStageIdentifier(t);
147148
snowflakeCon.runCreateStage(this.stageIdentifier);
148149
}

0 commit comments

Comments
 (0)