Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public void onNext(final ChaincodeMessage chaincodeMessage) {
@Override
public void onError(final Throwable t) {
LOGGER.severe(
() -> "An error occured on the chaincode stream. Shutting down the chaincode stream."
() -> "An error occurred on the chaincode stream. Shutting down the chaincode stream."
+ Logging.formatError(t));

chaincodeSupportClient.shutdown(itm);
Expand Down Expand Up @@ -257,7 +257,7 @@ public void onNext(final ChaincodeMessage chaincodeMessage) {

@Override
public void onError(final Throwable t) {
LOGGER.severe(() -> "An error occured on the chaincode stream. Shutting down the chaincode stream."
LOGGER.severe(() -> "An error occurred on the chaincode stream. Shutting down the chaincode stream."
+ Logging.formatError(t));

chaincodeSupportClient.shutdown(itm);
Expand Down
Loading