We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e18e86 commit 2fef174Copy full SHA for 2fef174
2 files changed
.gitignore
@@ -3,7 +3,7 @@
3
4
# Build outputs
5
dist/
6
-mlflow_cloudsmith_plugin.egg-info/
+mlflow_cloudsmith.egg-info/
7
.coverage
8
9
# Python bytecode
plugin/cloudsmith_repository.py
@@ -412,14 +412,11 @@ def _progress(payload: dict) -> int:
412
prog,
413
package_identifier,
414
)
415
- if ok and last_progress < 100:
+ if ok:
416
_logger.debug(
417
- "Cloudsmith: forcing progress to 100% (%s)",
418
- package_identifier,
419
- )
420
- _logger.debug(
421
- "Cloudsmith: Package synchronized in %.2fs: %s",
+ "Cloudsmith: Package synchronized in %.2fs (%d%%): %s",
422
elapsed,
+ prog,
423
424
425
return True
0 commit comments