PM Extra

Results 113 comments of PM Extra

I found that `${SENTRY_WORKER_COUNT:-$(nproc)}` can only work with shell (eg. `entrypoint.sh`). It does not work with `command` of `docker-compose.yml`. So I said do something LIKE that.

I revisited this question. The core issue is that Python does not consider the system information from cgroups, while `nproc` does. ```bash > cat /sys/fs/cgroup/cpuset.cpus.effective 1,3-4,8,13-14,16,19 ```

I think we should label it `Status: Backlog` at least. This is indeed a problem, although limited in scope.

@mattjohnsonpint Hurry up please, it's been almost 1 year. In my project I have some other integrations that have to use `IHostBuilder` instead of `IWebHostBuilder`. So I can't integrate my...

A real equivalent of `IWebHostBuilder.UseSentry()`: ```csharp var builder = WebAppliccation.CreateBuilder(args); builder.Host .ConfigureLogging((context, logging) => { var section = context.Configuration.GetSection("Sentry"); logging.Services .Configure(section) .AddSingleton() .AddSingleton(); logging.AddFilter( "Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware", LogLevel.None ); logging.Services.AddSentry().AddSentryOptions(options => {...

@mattjohnsonpint I'm using `IHostBuilder` rather than `IWebHostBuilder` with ASP.NET Core. I have some other integrations such as `UseAutofac()` that have to depends on `IHostBuilder` rather than `IWebHostBuilder`. When I called...

@mattjohnsonpint Thanks! It's solved. I'm confused why there be both `builder.Host` and `builder.WebHost`, and even they can work together at the same project. I was wrong to think there is...

@meziantou Awesome! The solution you gave is better for me. Can we put these on the schedule?

For the 1st, how can I disable the default credential from `API` class?

The documentation only says that [you can put Personal/project/group access tokens in `Authorization: Bearer `](https://docs.gitlab.com/ee/api/rest/#personalprojectgroup-access-tokens). There is another section for the job token, [which does not indicate that it can...