Skip to content
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

fix(backend): fixes the debug line, fstring not working #2348

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions agenta-backend/agenta_backend/services/app_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,12 @@ async def start_variant(

try:
logger.debug(
"Starting variant %s with image name %s and tags %s and app_name %s and organization %s and workspace %s",
"Starting variant %s with image name %s and tags %s and app_name %s",
db_app_variant.variant_name,
db_app_variant.image.docker_id,
db_app_variant.image.tags,
db_app_variant.app.app_name,
)
logger.debug("App name is %s", db_app_variant.app.app_name)
# update the env variables
domain_name = os.environ.get("DOMAIN_NAME")
if domain_name is None or domain_name == "http://localhost":
Expand Down
Loading