full-winter-70537
03/08/2021, 7:32 AMregistered twice (read and read)
. Does anyone know how to fix this?
Example code:
var stackNames = new List<string> { "stack1", "stack2" };
var backendPools = stackNames.Select(stack =>
{
var stackRef = new StackReference($"{stack}ref", new StackReferenceArgs { Name = $"company/project/{stack}" });
var output1 = stackRef.RequireOutput("output1").Apply(_ => _.ToString());
var output2 = stackRef.RequireOutput("output2").Apply(_ => _.ToString());
return GetBackendPoolArgs(..);
});
name
param mixed up with the stack name. All good now!tall-librarian-49374
03/08/2021, 7:57 AMstack1
two times?full-winter-70537
03/08/2021, 9:04 AMtall-librarian-49374
03/08/2021, 10:41 AM