problem with set specific configuration in new version 3.0.0 #830
-
Hi. public static RabbitMqContainer RabbitMqTestContainer()
{
var builder = new RabbitMqBuilder();
builder.WithImage("rabbitmq:3-management");
builder.WithUsername("guest");
builder.WithPassword("guest");
return builder.Build();
} Did I miss something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The builder has always been immutable (data held inside it). It always creates a new instance. Please see my answer here: #713 (comment). |
Beta Was this translation helpful? Give feedback.
The builder has always been immutable (data held inside it). It always creates a new instance. Please see my answer here: #713 (comment).