-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Update Program.cs to latest official images that work on Mac #869
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,12 +4,15 @@ | |||||||||||||
|
|
||||||||||||||
| builder.AddForwardedHeaders(); | ||||||||||||||
|
|
||||||||||||||
| var redis = builder.AddRedis("redis"); | ||||||||||||||
| var redis = builder.AddRedis("redis") | ||||||||||||||
| .WithImage("redis") | ||||||||||||||
| .WithImageTag("latest"); | ||||||||||||||
| var rabbitMq = builder.AddRabbitMQ("eventbus") | ||||||||||||||
| .WithImageTag("latest") | ||||||||||||||
raultorrecilla marked this conversation as resolved.
Show resolved
Hide resolved
Comment on lines
+9
to
+11
|
||||||||||||||
| .WithImageTag("latest"); | |
| var rabbitMq = builder.AddRabbitMQ("eventbus") | |
| .WithImageTag("latest") | |
| .WithImageTag("7.2.4"); | |
| var rabbitMq = builder.AddRabbitMQ("eventbus") | |
| .WithImageTag("3.12.12-management") |
Copilot
AI
Dec 3, 2025
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.
The PostgreSQL image has been updated from ankane/pgvector to pgvector/pgvector with tag 0.8.0-pg17, but the test file tests/Catalog.FunctionalTests/CatalogApiFixture.cs still uses the old ankane/pgvector:latest image. This inconsistency could cause tests to fail or behave differently from the main application. Please update the test fixture to use the same image configuration.
Uh oh!
There was an error while loading. Please reload this page.