-
Notifications
You must be signed in to change notification settings - Fork 155
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
listener is ignored if uploaded with doUploadAndExplode
To Reproduce
this logs:
var uploaded = artifactory
.repository(repositoryName)
.upload(targetPath, file)
.withListener((bytesRead, totalBytes) -> {
log.debug("Artifactory ({} / {})", bytesRead, totalBytes);
})
.doUpload();but this doesn't:
var uploaded = artifactory
.repository(repositoryName)
.upload(targetPath, file)
.withListener((bytesRead, totalBytes) -> {
log.debug("Artifactory ({} / {})", bytesRead, totalBytes);
})
.doUploadAndExplode(true);also it would be more consistent if both methods would have the same return type
Expected behavior
listener should be invoked also with the explode feature.
Versions
- Artifactory Java Client version: 2.19.1
- Operating system: WIN11pro
- Artifactory Version: Enterprise Plus 7.77.14 rev
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working