In the below example example, the starting container shows the "Start" action, yet the waiting executable shows the play icon.
Expected Behavior
Both are disabled so don't do anything, however I'd expect them to have a consistent initial state (either both should have a disabled play button, or both a disabled stop button)
Steps To Reproduce
(Note, this repo may stop working once #5810 is fixed)
var sql = builder.AddSqlServer("sql")
.WithLifetime(ContainerLifetime.Persistent);
var migrator = builder.AddExecutable("migrator", "pwsh", ".",
"-NoProfile",
"-NoLogo",
"-NonInteractive",
"-Command",
"Write-Host 'Starting Migration'; Start-Sleep -Seconds 1; Write-Host 'Done'")
.WaitFor(sql);
var db = sql.AddDatabase("mydb")
.WaitFor(migrator);
Is there an existing issue for this?
Describe the bug
In the below example example, the starting container shows the "Start" action, yet the waiting executable shows the play icon.
Expected Behavior
Both are disabled so don't do anything, however I'd expect them to have a consistent initial state (either both should have a disabled play button, or both a disabled stop button)
Steps To Reproduce
(Note, this repo may stop working once #5810 is fixed)
Exceptions (if any)
No response
.NET Version info
Anything else?
No response