Vasiliy Toporov

Results 15 comments of Vasiliy Toporov

This task could be done with such a middleware: https://gist.github.com/renta/e6c3a67f40a3a8edd251c8c804293c7e

@justinpage I've not found a proper way to fix this issue, so I've used //nolint:bodyclose before isAppReady function to suppress this check.

Hi, I could fixed this issue with change (use your own bundle and namespace): targetEntity: Category to targetEntity: MyNamespace\MySuperBundle\Entity\Category

Thank you for the answer @ymarillet. I've tried to solve this task with a custom filter and it would work for very simple use cases. But when I wanted to...

I could provide my solution for this problem, if anyone interested. It helps to filter subresources with GET parameter, but it require patch of the Api Platform core file (I...

Faced the same issue today, almost in the end of 2021! A brand new slack app, app and bot token for websocket connection: ```go slackApi := slack.New(conf.Slack.BotToken, slack.OptionAppLevelToken(conf.Slack.AppToken), slack.OptionDebug(conf.Slack.Debug)) slackRtm...

The performance tuning page for Go will be very helpful for performance penalty investigations.

@deankarn Is any way I could help in solving this issue?

@deankarn Sorry for many words, but I'll try to specify issues that I've faced: - as linter said we can not use direct type assertion in for loop because err...

Thank you for the answer @rotta-f ! @deankarn What do you think of using this code example in the Readme of the library?