Tobias Breuer

Results 9 comments of Tobias Breuer

Possible solution to this problem would be: In `MSSqlServerSinkTraits.GetStandardColumnNameAndValue` instead of calling `logEvent.RenderMessage(formatProvider)` and take the result as is, refactor this call to a method which might look similar to...

Not sure if following information is helpful to @Sti2nd but for anyone reaching here due to a "Binding not supported" exception when using `[FromQuery]` in Azure functions triggered by HTTP:...

Hi @MO2k4, when given as QueryString parameter, for GET requests I don't know of any build-in functionality to perform such a mapping when the names differ. Depending on the type...

Unfortunately not. We only circumvented the issue, as in our case we use a git repository within an application to handle versions of scripts. However, once a script is deleted,...

For anyone else reaching here: When using Angular 9+ with Ivy rendering and AOT compilation enabled, I had to explicitly import angular/compiler in my main.ts: ``` import { enableProdMode }...

For anyone else reaching here: I had to update my polyfills.ts file to make this work: ``` /** Evergreen browsers require these. **/ import 'core-js/es/reflect'; import 'reflect-metadata'; ``` The line...

Hi @mjeffryes, thanks for your comment. For sure, creating users via postgres is a well know option - however IMHO the documentation at https://www.pulumi.com/registry/packages/azure-native/api-docs/dbforpostgresql/servergrouprole/#rolecreate is at least missleading then. In...

We are seeing a similar issue currently within an Azure DevOps pipeline. As part of the pipeline an integration test is running which connects to **AzureAppConfiguration** service. To make sure...

Ok, looks like, this is also being solved by #46711 as the case I described above also leads to `{"error":"invalid_request","error_description":"Identity not found"}` Still I would be curious to understand what...