Skip to content

Commit

Permalink
Merge pull request #32 from civitaspo/hotfix/#31
Browse files Browse the repository at this point in the history
Remove unnecessary if clause (follow up #31)
  • Loading branch information
civitaspo authored Mar 18, 2023
2 parents ba8a190 + e31ebf4 commit 42972cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.0.4 (2023-03-19)
==================

- [fix] [#32](https://github.com/civitaspo/embulk-input-dynamodb/pull/32) Remove unnecessary if clause (follow up [#31](https://github.com/civitaspo/embulk-input-dynamodb/pull/31)).

1.0.3 (2023-02-17)
==================

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ case class DynamodbScanOperation(task: DynamodbScanOperation.Task)
case _ =>
f(result.getItems.asScala.map(_.asScala.toMap).toSeq)
Option(result.getLastEvaluatedKey) match {
case Some(v) if (loadableRecords.isDefined) =>
case Some(v) =>
runInternal(
dynamodb,
embulkTaskIndex,
Expand Down

0 comments on commit 42972cd

Please sign in to comment.