Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion agent-registry/populate_sample_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def main():
return
except Exception as e:
print(f"❌ Cannot connect to Agent Registry Service: {str(e)}")
print(" Make sure the service is running on port 9000")
print(" Make sure the service is running on port 9002")
return

print("✅ Agent Registry Service is running")
Expand Down
2 changes: 1 addition & 1 deletion merchant-backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async def log_requests(request: Request, call_next):
# Configure CORS
app.add_middleware(
CORSMiddleware,
allow_origins=os.getenv("ALLOWED_ORIGINS", "http://localhost:3000,http://localhost:3001,http://localhost:3001,http://localhost:3003").split(","), # React app URL + Vite dev server
allow_origins=os.getenv("ALLOWED_ORIGINS", "http://localhost:3000,http://localhost:3001,http://localhost:3003").split(","), # React app URL + Vite dev server
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
Expand Down