Where is the error “SessionNotFound: invalid_request” generated?

Summary The SessionNotFound: invalid_request error is a common issue encountered when working with OIDC (OpenID Connect) providers. This error occurs when the OIDC provider is unable to find a valid session, resulting in an invalid_request error. The error message is often misleading, making it challenging to identify the root cause. Root Cause The root cause … Read more

Azure Data Factory + Synapse Serverless SQL Pool — Which Linked Service to Use for Dataset creation?

Summary When working with Azure Data Factory (ADF) and Azure Synapse Analytics using the serverless SQL pool, it’s essential to understand which linked service to use for dataset creation. The recommended approach is to use the Azure Synapse Analytics (SQL) linked service, which allows for seamless integration with the serverless SQL pool. Root Cause The … Read more

Problems linking boost with cmake

Summary The issue at hand is related to linking errors when using CMake to compile a project that includes Boost and OpenCV. The errors specifically pertain to the boost::program_options component. Despite the project compiling successfully without CMake using a custom makefile, the introduction of CMake results in undefined reference errors during the linking phase. Root … Read more

Angular version 18.2.14 has a bug on @Directive standalone compiling

Summary The Angular version 18.2.14 has a bug related to @Directive standalone compiling. This issue arises when using a directive with the standalone: true property, and the directive is not properly imported into the component’s imports array. The bug causes the page to function incorrectly without throwing any compilation errors. Root Cause The root cause … Read more

Access violation code when starting a debugging session of a Visual Studio Add-in for Office

Summary The issue at hand is an access violation that occurs when attempting to start a debugging session of a Visual Studio Add-in for Office. This problem arises despite the add-in being successfully built and installed through the debug folder using the .vsto file, which operates normally. The error message indicates that the program ‘[excel.exe]’ … Read more

PAPERLESS_FILENAME_FORMAT does not modify the files structure into folders

Summary The PAPERLESS_FILENAME_FORMAT setting in Paperless-ngx is not modifying the file structure into folders as expected. Despite setting the format to {{created_year}}/{{correspondent}}/{{document_type}}/{{title}}, the files remain in a flat structure. Root Cause The root cause of this issue is that changing the PAPERLESS_FILENAME_FORMAT setting requires manually running the document renamer management utility. This step is necessary … Read more