Ivan Ribakov
Ivan Ribakov
Is there a way to limit the maximum number of incoming connections that can be accepted/processed concurrently? [`HttpConnectionHandler`](https://oatpp.io/api/latest/oatpp/web/server/HttpConnectionHandler/) description mentions that a new thread will be spawned for each new...
I'm using soft-delete with my `currency` model and would like to enforce foreign key integrity by checking that `regions` hasMany relationship is empty before any currency is allowed to be...
I need to support following `img` tags: - `` - `` Currently these `img` tags are being stripped out. How can make these types of `img` tags allowed?
I'm new to StyleCop and I would like to use it "standalone" (run headlessly as part of a CI build). I have found repo https://github.com/bbadjari/stylecopcli that seems to simply command-line...
Could you please provide a sample MyCore implementation? Reason I'm asking is that I've done all other configuration/setup (as explained in the readme) and I'm able to see `started plug...
Hi, I'm taking bud for a spin and it seems like I've hit a road block early on. I have created a new app using `bud create` and confirmed that...
During the execution of this line of code in a VirtualBox VM running CentOS 8, go panicked with the following message: ``` host, err := ghw.Host(ghw.WithDisableWarnings()) ``` ``` panic: runtime...
I have a root command with persistent flag and a subcommand with a local flag. When executing subcommand, I seem to be unable to pass the local flag. No matter...
Here's bash script that I've used to build clearsilver. Running it with `sudo`. ``` BUILD_DIR="/tmp/someproduct-deps/clearsilver" RELEASE="0.11.0" if [ -d "$BUILD_DIR" ]; then rm -r $BUILD_DIR fi mkdir -p $BUILD_DIR pushd...
**What I did** Ensured that each service's DNS settings are stripped from empty entries that could result from using ENV variables that defaulted to blank strings. For example: ``` service:...