Skip to content

Commit

Permalink
changelog: update for new release and bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
breuner committed Jul 31, 2024
1 parent a91039e commit 6728f54
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog of elbencho

## v3.0.16 (work in progress)
## v3.0.17 (July 31, 2024)

### New Features & Enhancements
* Added option to ignore 404 errors on multiple retries of MultipartUploadComplete requests. (See `--s3multiignore404`.)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
EXE_NAME ?= elbencho
EXE_VER_MAJOR ?= 3
EXE_VER_MINOR ?= 0
EXE_VER_PATCHLEVEL ?= 16
EXE_VER_PATCHLEVEL ?= 17
EXE_VERSION ?= $(EXE_VER_MAJOR).$(EXE_VER_MINOR)-$(EXE_VER_PATCHLEVEL)
EXE ?= $(BIN_PATH)/$(EXE_NAME)
EXE_UNSTRIPPED ?= $(EXE)-unstripped
Expand Down
2 changes: 1 addition & 1 deletion source/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ typedef std::vector<uint64_t> UInt64Vec;
* (Only exact matches are assumed to be compatible, that's why this can differ from the program
* version.)
*/
#define HTTP_PROTOCOLVERSION "3.0.11"
#define HTTP_PROTOCOLVERSION "3.0.12"

/**
* Default access mode bits for new files.
Expand Down
8 changes: 2 additions & 6 deletions source/workers/LocalWorker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6385,9 +6385,7 @@ void LocalWorker::hdfsDirModeIterateFiles()
throw WorkerException(std::string("Unexpected short file write. ") +
"Path: " + pathVec[pathFDsIndex] + "/" + currentPath.data() + "; "
"Bytes written: " + std::to_string(writeRes) + "; "
"Expected written: " + std::to_string(fileSize) + "; "
"Hint: Consider initial sequential write or adding "
"\"--" ARG_TRUNCTOSIZE_LONG "\" to ensure full file size.");
"Expected written: " + std::to_string(fileSize) );
}

if(benchPhase == BenchPhase_READFILES)
Expand All @@ -6405,9 +6403,7 @@ void LocalWorker::hdfsDirModeIterateFiles()
throw WorkerException(std::string("Unexpected short file read. ") +
"Path: " + pathVec[pathFDsIndex] + "/" + currentPath.data() + "; "
"Bytes read: " + std::to_string(readRes) + "; "
"Expected read: " + std::to_string(fileSize) + "; "
"Hint: Consider initial sequential write or adding "
"\"--" ARG_TRUNCTOSIZE_LONG "\" to ensure full file size.");
"Expected read: " + std::to_string(fileSize) );
}
}
catch(...)
Expand Down

0 comments on commit 6728f54

Please sign in to comment.