Skip to content

Commit

Permalink
Merge pull request #60 from iExecBlockchainComputing/hotfix/8.1.3
Browse files Browse the repository at this point in the history
Release version 8.1.3
  • Loading branch information
jbern0rd authored Jun 23, 2023
2 parents d32b6d1 + e519dc2 commit e33b6bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## [[8.1.3]](https://github.com/iExecBlockchainComputing/tee-worker-pre-compute/releases/tag/v8.1.3) 2023-06-23

### Bug Fixes
- Add missing `ipfsGateway` URL in dataset download URL. (#60)

## [[8.1.2]](https://github.com/iExecBlockchainComputing/tee-worker-pre-compute/releases/tag/v8.1.2) 2023-06-23

### Dependency Upgrades
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=8.1.2
version=8.1.3
iexecCommonVersion=8.2.1
iexecCommonsPocoVersion=3.0.4

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/iexec/worker/tee/pre/PreComputeApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ byte[] downloadEncryptedDataset() throws PreComputeException {
if (MultiAddressHelper.isMultiAddress(encryptedDatasetUrl)) {
for (String ipfsGateway : MultiAddressHelper.IPFS_GATEWAYS) {
log.debug("Try to download dataset from {}", ipfsGateway);
encryptedContent = FileHelper.readFileBytesFromUrl(encryptedDatasetUrl);
encryptedContent = FileHelper.readFileBytesFromUrl(ipfsGateway + encryptedDatasetUrl);
if (encryptedContent != null) {
break;
}
Expand Down

0 comments on commit e33b6bf

Please sign in to comment.