htzhang2

Results 5 issues of htzhang2

Castle.Core(4.4.0) Castle.Core.AsyncInterceptor (1.7.0) public class ScheduleEventInterceptor : IMethodInterceptor { public async void BeforeInvoke(InvocationContext invocationContext) { //Expect this call complete before decorated method await [some_async_call].ConfigureAwait(false); } } Problem is some_async_call complete...

Castle.Core(4.4.0) Castle.Core.AsyncInterceptor (1.7.0) public class ScheduleEventInterceptor : IMethodInterceptor { public async void BeforeInvoke(InvocationContext invocationContext) { //Expect this call complete before decorated method await [some_async_call].ConfigureAwait(false); } } Expected: some_async_call execute before...

Two threads both write to InvocationContext in BeforeInvoke method: 1. Thread1: invocationCopntext.SetTemporaryData("temp", "value1"); 2. Thread2: invocationCopntext.SetTemporaryData("temp", "value2"); This seems corrupt invocationContext. Is there a thread safe solution?

## Issue ERROR: Failed to download https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/2.7.0/allure-2.7.0.zip from agent; will retry from master java.io.IOException: Server returned HTTP response code: 403 for URL: https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/2.7.0/allure-2.7.0.zip ### Context - **Jenkins version**: X.Y.Z -...

POST.mock: HTTP/2 500 content-type: application/json;charset=UTF-8 access-control-allow-origin: * Access-Control-Allow-Headers: authorization, content-type {"code":"internal_error","message":"general error"} // Expect response: {"code":"internal_error","message":"general error"} // Actual response: undefined