Skip to content

Commit

Permalink
fix: Ignore HTTP error status.
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Jan 6, 2023
1 parent 947212f commit 4701cf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/bee/api/VCS.java
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ public List<Commit> commits() {
commit.message = o.get("commit").text("message");
return commit;
})
.skipError()
.waitForTerminate()
.skipError()
.toList();
}

Expand All @@ -339,6 +339,7 @@ public List<Contributor> contributors() {
return contributor;
})
.waitForTerminate()
.skipError()
.toList();
}

Expand Down

0 comments on commit 4701cf4

Please sign in to comment.