-
Notifications
You must be signed in to change notification settings - Fork 13
Revert "refactor(auth): centralize credential loading and Docker registry login" #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -194,9 +194,6 @@ def run( | |
| # Convert -1 (default) to actual default timeout value (7200 seconds = 2 hours) | ||
| if timeout == -1: | ||
| timeout = 7200 | ||
| # 0 means "no timeout" per the help text — map to None so subprocess never expires | ||
| elif timeout == 0: | ||
| timeout = None | ||
|
|
||
|
Comment on lines
194
to
197
|
||
| try: | ||
| # Check if we're doing execution-only or full workflow | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -395,8 +395,6 @@ def process_batch_manifest_entries( | |||||||||
|
|
||||||||||
| # If the model was not built (build_new=false), create an entry for it | ||||||||||
| if not build_new: | ||||||||||
|
||||||||||
| if not build_new: | |
| if not build_new: | |
| # Default value used by the fallback path if discovery fails early. | |
| dockerfile_matched = "unknown" |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--versionoutput is now hardcoded to2.0.0, which will become incorrect as soon as the package version changes and breaks automation that relies on accurate version reporting. Consider restoring runtime version lookup viaimportlib.metadata.version('madengine')(with a fallback when not installed).