Dave Craft

Results 10 comments of Dave Craft

yeah it works.. but it's a list and I can do `.connectionStrings[4]` but I'm not sure if I can guarentee that the 5th element in the list will always be...

I also have this same issue. It's made worse when there are multiple zip deployments in a single `pulumi up` I don't know how many deployments you're doing in the...

I wish I could.. perhaps with a small amount of guidance I could do something.. just wouldn't know where to begin.

Ok it's worth pointing out that @JonCanning and myself get this error when creating an EventGrid subscription for the function app that was created using the ArchiveFunctionApp. So I assume...

We have a work around for this issue now.. instead of having functions triggered from EventGrid using the EventGridTrigger.. we push all events into storage queues and trigger off of...

Not sure I understand?

I have a fix for this.. I'll create a PR

Pr added... hope it helps :)

I found this also works ```kotlin object AnObject { @BeforeAll @JvmStatic fun beforeAll() { // code here } @AfterAll @JvmStatic fun afterAll() { // code here } } ``` You...

It would be great to be able to mix @BeforeAll and @Before in the same kotlin class using the companion object, however as the original poster @ejbartelds pointed out, this...