Skip to content

Commit 2fef174

Browse files
update gitignore and remove force log (#10)
1 parent 3e18e86 commit 2fef174

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Build outputs
55
dist/
6-
mlflow_cloudsmith_plugin.egg-info/
6+
mlflow_cloudsmith.egg-info/
77
.coverage
88

99
# Python bytecode

plugin/cloudsmith_repository.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -412,14 +412,11 @@ def _progress(payload: dict) -> int:
412412
prog,
413413
package_identifier,
414414
)
415-
if ok and last_progress < 100:
415+
if ok:
416416
_logger.debug(
417-
"Cloudsmith: forcing progress to 100% (%s)",
418-
package_identifier,
419-
)
420-
_logger.debug(
421-
"Cloudsmith: Package synchronized in %.2fs: %s",
417+
"Cloudsmith: Package synchronized in %.2fs (%d%%): %s",
422418
elapsed,
419+
prog,
423420
package_identifier,
424421
)
425422
return True

0 commit comments

Comments
 (0)