Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
4
112
repo_url
stringlengths
33
141
action
stringclasses
3 values
title
stringlengths
1
1.02k
labels
stringlengths
4
1.54k
body
stringlengths
1
262k
index
stringclasses
17 values
text_combine
stringlengths
95
262k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
23,321
6,418,896,798
IssuesEvent
2017-08-08 19:59:48
phetsims/projectile-motion
https://api.github.com/repos/phetsims/projectile-motion
closed
reduce dimensions of PNG files?
dev:code-review
Related to code review #103. The PNG files appear to be much larger than how they appear in the sim. So I'm guessing (but have not confirmed) that they are being scaled way down. Looks like the scaling is being done by setting `maxHeight` in ProjectileObjectViewFactory `createObjectView`. Inspecting (for example) the 'piano', I see: ``` > transformedBallSize 66 > pianoImage.height 408 > transformedBallSize / pianoImage.height 0.16 ``` `transformedBallSize` is used as the value for `maxHeight`. So piano_1.png is being scaled by 0.16. There are 2 problems with this: (1) Any scale smaller than 0.5 typically looks crummy on some platforms (especially Firefox). (2) Images that are unnecessarily large tend to bloat the deliverable .html file. So... If you're scaling down by anything less than 0.5, I recommend that you reduce the dimensions of the PNG files.
1.0
reduce dimensions of PNG files? - Related to code review #103. The PNG files appear to be much larger than how they appear in the sim. So I'm guessing (but have not confirmed) that they are being scaled way down. Looks like the scaling is being done by setting `maxHeight` in ProjectileObjectViewFactory `createObjectView`. Inspecting (for example) the 'piano', I see: ``` > transformedBallSize 66 > pianoImage.height 408 > transformedBallSize / pianoImage.height 0.16 ``` `transformedBallSize` is used as the value for `maxHeight`. So piano_1.png is being scaled by 0.16. There are 2 problems with this: (1) Any scale smaller than 0.5 typically looks crummy on some platforms (especially Firefox). (2) Images that are unnecessarily large tend to bloat the deliverable .html file. So... If you're scaling down by anything less than 0.5, I recommend that you reduce the dimensions of the PNG files.
non_test
reduce dimensions of png files related to code review the png files appear to be much larger than how they appear in the sim so i m guessing but have not confirmed that they are being scaled way down looks like the scaling is being done by setting maxheight in projectileobjectviewfactory createobjectview inspecting for example the piano i see transformedballsize pianoimage height transformedballsize pianoimage height transformedballsize is used as the value for maxheight so piano png is being scaled by there are problems with this any scale smaller than typically looks crummy on some platforms especially firefox images that are unnecessarily large tend to bloat the deliverable html file so if you re scaling down by anything less than i recommend that you reduce the dimensions of the png files
0
325,649
27,950,579,172
IssuesEvent
2023-03-24 08:31:07
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
[TestFailure] Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow fails on ARM
disabled-test area-System.Net.Quic in-pr test-failure
e.g. https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-96bd05a3f91a4661b1/System.Net.Quic.Functional.Tests/3/console.60e17a73.log?helixlogtype=result Outerloop test. There are about 180 failures in last 2 weeks (as of 28-02-2023) ``` ----- start Tue 28 Feb 2023 12:18:50 PM UTC =============== To repro directly: ===================================================== pushd . /root/helix/work/correlation/dotnet exec --runtimeconfig System.Net.Quic.Functional.Tests.runtimeconfig.json --depsfile System.Net.Quic.Functional.Tests.deps.json xunit.console.dll System.Net.Quic.Functional.Tests.dll -xml testResults.xml -nologo -nocolor -trait category=OuterLoop -notrait category=IgnoreForCI -notrait category=failing popd =========================================================================================================== /root/helix/work/workitem/e /root/helix/work/workitem/e Discovering: System.Net.Quic.Functional.Tests (method display = ClassAndMethod, method display options = None) Discovered: System.Net.Quic.Functional.Tests (found 8 of 122 test cases) Starting: System.Net.Quic.Functional.Tests (parallel test collections = on, max threads = 2) System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow(backlogLimit: 100, connectCount: 99) [FAIL] Assert.Equal() Failure Expected: 99 Actual: 98 Stack Trace: /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(250,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(267,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) --- End of stack trace from previous location --- Output: Using libmsquic.so version=2.1.7.329711 commit=2db78a2cd72d0c95111d5f4884fbc17307a4238d System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow(backlogLimit: 100, connectCount: 101) [FAIL] Assert.Equal() Failure Expected: 100 Actual: 98 Stack Trace: /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(244,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(267,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) --- End of stack trace from previous location --- Output: Using libmsquic.so version=2.1.7.329711 commit=2db78a2cd72d0c95111d5f4884fbc17307a4238d Finished: System.Net.Quic.Functional.Tests ``` <details> <summary> Kusto query </summary> ```kusto cluster('engsrvprod.kusto.windows.net').database('engineeringdata').AzureDevOpsTests //| where TestName has 'ConnectWithRevocation_WithCallback' | where TestName startswith "System.Net" and Outcome == 'Failed' or Outcome == 'PassedOnRerun' | extend i = indexof_regex(TestName, @"[^.]+$") | extend Method = substring(TestName, i) | extend Type = substring(TestName, 0, i - 1) | project-away i, TestName | where Method has 'Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow' //| where Arguments == 'protocol: Ssl3' | distinct JobId, WorkItemId, Message, StackTrace, Method, Type, Arguments, Outcome | join kind=inner (cluster('engsrvprod.kusto.windows.net').database('engineeringdata').Jobs | where Finished > now(-14d) | extend TargetBranch = extractjson("$.['System.PullRequest.TargetBranch']", Properties) | where (Branch == 'refs/heads/main') //or (Source startswith "pr/" and TargetBranch == 'main') | where Type startswith "test/functional/cli/" and not(Properties contains "runtime-staging") | summarize arg_max(Finished, Properties, Type, Branch, Source, Started, QueueName, Attempt, Build, TargetBranch) by JobId | project-rename JobType = Type) on JobId | extend PropertiesJson = parse_json(Properties) | extend OS = replace_regex(tostring(PropertiesJson.operatingSystem), @'\((.*)\).*|([^\(].*)', @'\1\2') | extend Runtime = iif(PropertiesJson.runtimeFlavor == "mono", "Mono", iif(PropertiesJson.DefinitionName contains "coreclr", "CoreCLR", "")) | extend Architecture = PropertiesJson.architecture | extend DefinitionName = PropertiesJson.DefinitionName | project-away JobId | extend JobId = extractjson("$.['System.JobId']", Properties) //| where JobId == '913fd104-6683-4129-8fd6-02f22466d821' //| where Architecture == 'arm64' //| where QueueName == 'windows.amd64.server2022.open.svc' //| where TargetBranch == 'release/6.0' | join kind=inner (cluster('engsrvprod.kusto.windows.net').database('engineeringdata').WorkItems | project-keep ConsoleUri, WorkItemId) on WorkItemId | project-away PropertiesJson | project-reorder Started, Type, Method, Arguments, StackTrace, ConsoleUri, OS, Architecture, DefinitionName, Branch, TargetBranch, Attempt, Build, * ; ``` </details>
2.0
[TestFailure] Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow fails on ARM - e.g. https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-96bd05a3f91a4661b1/System.Net.Quic.Functional.Tests/3/console.60e17a73.log?helixlogtype=result Outerloop test. There are about 180 failures in last 2 weeks (as of 28-02-2023) ``` ----- start Tue 28 Feb 2023 12:18:50 PM UTC =============== To repro directly: ===================================================== pushd . /root/helix/work/correlation/dotnet exec --runtimeconfig System.Net.Quic.Functional.Tests.runtimeconfig.json --depsfile System.Net.Quic.Functional.Tests.deps.json xunit.console.dll System.Net.Quic.Functional.Tests.dll -xml testResults.xml -nologo -nocolor -trait category=OuterLoop -notrait category=IgnoreForCI -notrait category=failing popd =========================================================================================================== /root/helix/work/workitem/e /root/helix/work/workitem/e Discovering: System.Net.Quic.Functional.Tests (method display = ClassAndMethod, method display options = None) Discovered: System.Net.Quic.Functional.Tests (found 8 of 122 test cases) Starting: System.Net.Quic.Functional.Tests (parallel test collections = on, max threads = 2) System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow(backlogLimit: 100, connectCount: 99) [FAIL] Assert.Equal() Failure Expected: 99 Actual: 98 Stack Trace: /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(250,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(267,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) --- End of stack trace from previous location --- Output: Using libmsquic.so version=2.1.7.329711 commit=2db78a2cd72d0c95111d5f4884fbc17307a4238d System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow(backlogLimit: 100, connectCount: 101) [FAIL] Assert.Equal() Failure Expected: 100 Actual: 98 Stack Trace: /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(244,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) /_/src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs(267,0): at System.Net.Quic.Tests.QuicListenerTests.Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Core(Int32 backlogLimit, Int32 connectCount) --- End of stack trace from previous location --- Output: Using libmsquic.so version=2.1.7.329711 commit=2db78a2cd72d0c95111d5f4884fbc17307a4238d Finished: System.Net.Quic.Functional.Tests ``` <details> <summary> Kusto query </summary> ```kusto cluster('engsrvprod.kusto.windows.net').database('engineeringdata').AzureDevOpsTests //| where TestName has 'ConnectWithRevocation_WithCallback' | where TestName startswith "System.Net" and Outcome == 'Failed' or Outcome == 'PassedOnRerun' | extend i = indexof_regex(TestName, @"[^.]+$") | extend Method = substring(TestName, i) | extend Type = substring(TestName, 0, i - 1) | project-away i, TestName | where Method has 'Listener_BacklogLimitRefusesConnection_ParallelClients_ClientThrows_Slow' //| where Arguments == 'protocol: Ssl3' | distinct JobId, WorkItemId, Message, StackTrace, Method, Type, Arguments, Outcome | join kind=inner (cluster('engsrvprod.kusto.windows.net').database('engineeringdata').Jobs | where Finished > now(-14d) | extend TargetBranch = extractjson("$.['System.PullRequest.TargetBranch']", Properties) | where (Branch == 'refs/heads/main') //or (Source startswith "pr/" and TargetBranch == 'main') | where Type startswith "test/functional/cli/" and not(Properties contains "runtime-staging") | summarize arg_max(Finished, Properties, Type, Branch, Source, Started, QueueName, Attempt, Build, TargetBranch) by JobId | project-rename JobType = Type) on JobId | extend PropertiesJson = parse_json(Properties) | extend OS = replace_regex(tostring(PropertiesJson.operatingSystem), @'\((.*)\).*|([^\(].*)', @'\1\2') | extend Runtime = iif(PropertiesJson.runtimeFlavor == "mono", "Mono", iif(PropertiesJson.DefinitionName contains "coreclr", "CoreCLR", "")) | extend Architecture = PropertiesJson.architecture | extend DefinitionName = PropertiesJson.DefinitionName | project-away JobId | extend JobId = extractjson("$.['System.JobId']", Properties) //| where JobId == '913fd104-6683-4129-8fd6-02f22466d821' //| where Architecture == 'arm64' //| where QueueName == 'windows.amd64.server2022.open.svc' //| where TargetBranch == 'release/6.0' | join kind=inner (cluster('engsrvprod.kusto.windows.net').database('engineeringdata').WorkItems | project-keep ConsoleUri, WorkItemId) on WorkItemId | project-away PropertiesJson | project-reorder Started, Type, Method, Arguments, StackTrace, ConsoleUri, OS, Architecture, DefinitionName, Branch, TargetBranch, Attempt, Build, * ; ``` </details>
test
listener backloglimitrefusesconnection parallelclients clientthrows slow fails on arm e g outerloop test there are about failures in last weeks as of start tue feb pm utc to repro directly pushd root helix work correlation dotnet exec runtimeconfig system net quic functional tests runtimeconfig json depsfile system net quic functional tests deps json xunit console dll system net quic functional tests dll xml testresults xml nologo nocolor trait category outerloop notrait category ignoreforci notrait category failing popd root helix work workitem e root helix work workitem e discovering system net quic functional tests method display classandmethod method display options none discovered system net quic functional tests found of test cases starting system net quic functional tests parallel test collections on max threads system net quic tests quiclistenertests listener backloglimitrefusesconnection parallelclients clientthrows slow backloglimit connectcount assert equal failure expected actual stack trace src libraries system net quic tests functionaltests quiclistenertests cs at system net quic tests quiclistenertests listener backloglimitrefusesconnection parallelclients clientthrows core backloglimit connectcount src libraries system net quic tests functionaltests quiclistenertests cs at system net quic tests quiclistenertests listener backloglimitrefusesconnection parallelclients clientthrows core backloglimit connectcount end of stack trace from previous location output using libmsquic so version commit system net quic tests quiclistenertests listener backloglimitrefusesconnection parallelclients clientthrows slow backloglimit connectcount assert equal failure expected actual stack trace src libraries system net quic tests functionaltests quiclistenertests cs at system net quic tests quiclistenertests listener backloglimitrefusesconnection parallelclients clientthrows core backloglimit connectcount src libraries system net quic tests functionaltests quiclistenertests cs at system net quic tests quiclistenertests listener backloglimitrefusesconnection parallelclients clientthrows core backloglimit connectcount end of stack trace from previous location output using libmsquic so version commit finished system net quic functional tests kusto query kusto cluster engsrvprod kusto windows net database engineeringdata azuredevopstests where testname has connectwithrevocation withcallback where testname startswith system net and outcome failed or outcome passedonrerun extend i indexof regex testname extend method substring testname i extend type substring testname i project away i testname where method has listener backloglimitrefusesconnection parallelclients clientthrows slow where arguments protocol distinct jobid workitemid message stacktrace method type arguments outcome join kind inner cluster engsrvprod kusto windows net database engineeringdata jobs where finished now extend targetbranch extractjson properties where branch refs heads main or source startswith pr and targetbranch main where type startswith test functional cli and not properties contains runtime staging summarize arg max finished properties type branch source started queuename attempt build targetbranch by jobid project rename jobtype type on jobid extend propertiesjson parse json properties extend os replace regex tostring propertiesjson operatingsystem extend runtime iif propertiesjson runtimeflavor mono mono iif propertiesjson definitionname contains coreclr coreclr extend architecture propertiesjson architecture extend definitionname propertiesjson definitionname project away jobid extend jobid extractjson properties where jobid where architecture where queuename windows open svc where targetbranch release join kind inner cluster engsrvprod kusto windows net database engineeringdata workitems project keep consoleuri workitemid on workitemid project away propertiesjson project reorder started type method arguments stacktrace consoleuri os architecture definitionname branch targetbranch attempt build
1
328,073
28,100,034,616
IssuesEvent
2023-03-30 18:42:58
Azure/azure-sdk-for-cpp
https://api.github.com/repos/Azure/azure-sdk-for-cpp
opened
Some KeyVault keys live tests are hitting a rate limitingerror with http status code 429
KeyVault test-reliability
https://dev.azure.com/azure-sdk/internal/_build/results?buildId=2665709&view=logs&j=923d6b59-cd51-5920-31a9-90e7beb947b2&t=0199b35d-88d0-54df-1775-488f95570024&l=32746 For example: ```text 2023-03-30T01:25:00.8934595Z test 32 2023-03-30T01:25:00.8936419Z Start 32: azure-security-keyvault-keys.KeyVaultKeyClient.RotateKey 2023-03-30T01:25:00.8937194Z 2023-03-30T01:25:00.8938946Z 32: Test command: D:\a\_work\1\s\build\sdk\keyvault\azure-security-keyvault-keys\test\ut\Release\azure-security-keyvault-keys-test.exe "--gtest_filter=KeyVaultKeyClient.RotateKey" "--gtest_also_run_disabled_tests" 2023-03-30T01:25:00.8941101Z 32: Working Directory: D:/a/_work/1/s/build/sdk/keyvault/azure-security-keyvault-keys/test/ut 2023-03-30T01:25:00.8942286Z 32: Test timeout computed to be: 10000000 2023-03-30T01:25:00.9089816Z 32: Running main() from D:\a\_work\1\s\build\_deps\googletest-src\googletest\src\gtest_main.cc 2023-03-30T01:25:00.9090910Z 32: Note: Google Test filter = KeyVaultKeyClient.RotateKey 2023-03-30T01:25:00.9091506Z 32: [==========] Running 1 test from 1 test suite. 2023-03-30T01:25:00.9092146Z 32: [----------] Global test environment set-up. 2023-03-30T01:25:00.9092778Z 32: [----------] 1 test from KeyVaultKeyClient 2023-03-30T01:25:00.9093322Z 32: [ RUN ] KeyVaultKeyClient.RotateKey 2023-03-30T01:25:00.9142428Z 32: 2023-03-30T01:25:00.9144096Z 32: Keyvault and HSM areSame[2023-03-30T01:25:00.9139616Z] INFO : HTTP Request : POST ***/***/oauth2/v2.0/token 2023-03-30T01:25:00.9144946Z 32: content-length : 178 2023-03-30T01:25:00.9145577Z 32: content-type : application/x-www-form-urlencoded 2023-03-30T01:25:00.9146162Z 32: host : REDACTED 2023-03-30T01:25:00.9146989Z 32: user-agent : azsdk-cpp-identity/1.5.0-beta.2 (Windows Server 2022 Datacenter 6.3 20348 20348.1.amd64fre.fe_release.210507-1500) 2023-03-30T01:25:00.9147903Z 32: x-ms-client-request-id : 1974c7f8-bb80-4a69-4041-a8a5bf9e4fa9 2023-03-30T01:25:00.9224278Z 32: [2023-03-30T01:25:00.9221257Z] INFO : Status operation: 1(WINHTTP_CALLBACK_STATUS_RESOLVING_NAME ) 2023-03-30T01:25:00.9257384Z 32: [2023-03-30T01:25:00.9254317Z] INFO : Status operation: 2(WINHTTP_CALLBACK_STATUS_NAME_RESOLVED ) 2023-03-30T01:25:00.9267393Z 32: [2023-03-30T01:25:00.9264835Z] INFO : Status operation: 4(WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER ) 2023-03-30T01:25:00.9501290Z 32: [2023-03-30T01:25:00.9496563Z] INFO : Status operation: 8(WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER ) 2023-03-30T01:25:00.9847945Z 32: [2023-03-30T01:25:00.9841311Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:00.9849248Z 32: [2023-03-30T01:25:00.9842830Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:00.9850083Z 32: [2023-03-30T01:25:00.9843482Z] INFO : Status operation: 4194304(WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE ) 2023-03-30T01:25:00.9850878Z 32: [2023-03-30T01:25:00.9844136Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:00.9851708Z 32: [2023-03-30T01:25:00.9844988Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:00.9852474Z 32: [2023-03-30T01:25:00.9845270Z] INFO : Status operation: 1048576(WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE ) 2023-03-30T01:25:00.9853494Z 32: [2023-03-30T01:25:00.9846017Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:01.0573165Z 32: [2023-03-30T01:25:01.0567364Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:01.0575556Z 32: [2023-03-30T01:25:01.0568039Z] INFO : Status operation: 131072(WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE ) 2023-03-30T01:25:01.0577169Z 32: [2023-03-30T01:25:01.0569520Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:01.0578602Z 32: [2023-03-30T01:25:01.0569827Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:01.0579896Z 32: [2023-03-30T01:25:01.0570000Z] INFO : Status operation: 524288(WINHTTP_CALLBACK_STATUS_READ_COMPLETE ) 2023-03-30T01:25:01.0581072Z 32: [2023-03-30T01:25:01.0570260Z] DEBUG : Read Data read from wire. Size: 1315. 2023-03-30T01:25:01.0582130Z 32: [2023-03-30T01:25:01.0570495Z] DEBUG : ReadData returned size: 1315. 2023-03-30T01:25:01.0583215Z 32: [2023-03-30T01:25:01.0571188Z] DEBUG : WinHttpRequest::~WinHttpRequest. Closing handle synchronously. 2023-03-30T01:25:01.0584309Z 32: [2023-03-30T01:25:01.0571722Z] INFO : Status operation: 2048(WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING ) 2023-03-30T01:25:01.0585756Z 32: [2023-03-30T01:25:01.0571943Z] DEBUG : Closing handle; completing outstanding Close request 2023-03-30T01:25:01.0586880Z 32: [2023-03-30T01:25:01.0572495Z] INFO : HTTP Response (143ms) : 200 OK 2023-03-30T01:25:01.0588028Z 32: cache-control : no-store, no-cache 2023-03-30T01:25:01.0588863Z 32: content-length : 1315 2023-03-30T01:25:01.0589784Z 32: content-type : application/json; charset=utf-8 2023-03-30T01:25:01.0590473Z 32: date : Thu, 30 Mar 2023 01:25:00 GMT 2023-03-30T01:25:01.0591038Z 32: expires : -1 2023-03-30T01:25:01.0591547Z 32: p3p : REDACTED 2023-03-30T01:25:01.0592124Z 32: pragma : no-cache 2023-03-30T01:25:01.0592749Z 32: set-cookie : REDACTED 2023-03-30T01:25:01.0593386Z 32: strict-transport-security : REDACTED 2023-03-30T01:25:01.0594051Z 32: x-content-type-options : REDACTED 2023-03-30T01:25:01.0594679Z 32: x-ms-ests-server : REDACTED 2023-03-30T01:25:01.0595390Z 32: x-ms-request-id : 4122e13d-e9ba-4df2-ad81-8992ad873800 2023-03-30T01:25:01.0596098Z 32: x-xss-protection : REDACTED 2023-03-30T01:25:01.0596863Z 32: [2023-03-30T01:25:01.0572838Z] INFO : HTTP status code 200 won't be retried. 2023-03-30T01:25:01.0597922Z 32: [2023-03-30T01:25:01.0574106Z] INFO : HTTP Request : POST ***keys/RotateKey/create?api-version=7.3 2023-03-30T01:25:01.0598588Z 32: authorization : REDACTED 2023-03-30T01:25:01.0599212Z 32: content-type : application/json 2023-03-30T01:25:01.0600079Z 32: user-agent : azsdk-cpp-keyvault-keys/4.4.0-beta.1 (Windows Server 2022 Datacenter 6.3 20348 20348.1.amd64fre.fe_release.210507-1500) 2023-03-30T01:25:01.0600977Z 32: x-ms-client-request-id : 89bfbd50-f34c-455e-6116-27d15c11a0f4 2023-03-30T01:25:01.0601849Z 32: [2023-03-30T01:25:01.0585581Z] INFO : Status operation: 1(WINHTTP_CALLBACK_STATUS_RESOLVING_NAME ) 2023-03-30T01:25:01.0614630Z 32: [2023-03-30T01:25:01.0611186Z] INFO : Status operation: 2(WINHTTP_CALLBACK_STATUS_NAME_RESOLVED ) 2023-03-30T01:25:01.0615748Z 32: [2023-03-30T01:25:01.0612467Z] INFO : Status operation: 4(WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER ) 2023-03-30T01:25:01.0638828Z 32: [2023-03-30T01:25:01.0635909Z] INFO : Status operation: 8(WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER ) 2023-03-30T01:25:01.0688984Z 32: [2023-03-30T01:25:01.0686219Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:01.0690725Z 32: [2023-03-30T01:25:01.0687199Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:01.0692539Z 32: [2023-03-30T01:25:01.0687703Z] INFO : Status operation: 4194304(WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE ) 2023-03-30T01:25:01.0693496Z 32: [2023-03-30T01:25:01.0688520Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:01.0694582Z 32: [2023-03-30T01:25:01.0689685Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:01.0695365Z 32: [2023-03-30T01:25:01.0690156Z] INFO : Status operation: 1048576(WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE ) 2023-03-30T01:25:01.0696160Z 32: [2023-03-30T01:25:01.0690878Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:02.0677040Z 32: [2023-03-30T01:25:02.0671009Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:02.0680104Z 32: [2023-03-30T01:25:02.0671786Z] INFO : Status operation: 131072(WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE ) 2023-03-30T01:25:02.0684182Z 32: [2023-03-30T01:25:02.0672748Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:02.0686250Z 32: [2023-03-30T01:25:02.0673079Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:02.0688070Z 32: [2023-03-30T01:25:02.0673307Z] INFO : Status operation: 524288(WINHTTP_CALLBACK_STATUS_READ_COMPLETE ) 2023-03-30T01:25:02.0689450Z 32: [2023-03-30T01:25:02.0673555Z] DEBUG : Read Data read from wire. Size: 153. 2023-03-30T01:25:02.0691182Z 32: [2023-03-30T01:25:02.0673737Z] DEBUG : ReadData returned size: 153. 2023-03-30T01:25:02.0692766Z 32: [2023-03-30T01:25:02.0674013Z] DEBUG : WinHttpRequest::~WinHttpRequest. Closing handle synchronously. 2023-03-30T01:25:02.0695974Z 32: [2023-03-30T01:25:02.0674514Z] INFO : Status operation: 2048(WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING ) 2023-03-30T01:25:02.0697153Z 32: [2023-03-30T01:25:02.0674747Z] DEBUG : Closing handle; completing outstanding Close request 2023-03-30T01:25:02.0698092Z 32: [2023-03-30T01:25:02.0675250Z] INFO : HTTP Response (1010ms) : 429 2023-03-30T01:25:02.0698935Z 32: cache-control : no-cache 2023-03-30T01:25:02.0699650Z 32: content-length : 153 2023-03-30T01:25:02.0700429Z 32: content-type : application/json; charset=utf-8 2023-03-30T01:25:02.0701158Z 32: date : Thu, 30 Mar 2023 01:25:01 GMT 2023-03-30T01:25:02.0701787Z 32: expires : -1 2023-03-30T01:25:02.0702535Z 32: pragma : no-cache 2023-03-30T01:25:02.0703821Z 32: strict-transport-security : REDACTED 2023-03-30T01:25:02.0705108Z 32: x-content-type-options : REDACTED 2023-03-30T01:25:02.0706996Z 32: x-ms-client-request-id : 89bfbd50-f34c-455e-6116-27d15c11a0f4 2023-03-30T01:25:02.0708358Z 32: x-ms-keyvault-network-info : REDACTED 2023-03-30T01:25:02.0709417Z 32: x-ms-keyvault-region : REDACTED 2023-03-30T01:25:02.0710315Z 32: x-ms-keyvault-service-version : REDACTED 2023-03-30T01:25:02.0711123Z 32: x-ms-request-id : 21198324-02e9-4748-b97f-67a104b59675 2023-03-30T01:25:02.0712001Z 32: [2023-03-30T01:25:02.0675539Z] INFO : HTTP status code 429 won't be retried. 2023-03-30T01:25:02.0712888Z 32: unknown file: error: C++ exception with description "Received an HTTP unsuccessful status code: 429" thrown in the test body. 2023-03-30T01:25:02.0713686Z 32: [ FAILED ] KeyVaultKeyClient.RotateKey (1159 ms) 2023-03-30T01:25:02.0714484Z 32: [----------] 1 test from KeyVaultKeyClient (1159 ms total) 2023-03-30T01:25:02.0715145Z 32: 2023-03-30T01:25:02.0715913Z 32: [----------] Global test environment tear-down 2023-03-30T01:25:02.0716619Z 32: [==========] 1 test from 1 test suite ran. (1159 ms total) 2023-03-30T01:25:02.0717275Z 32: [ PASSED ] 0 tests. 2023-03-30T01:25:02.0717909Z 32: [ FAILED ] 1 test, listed below: 2023-03-30T01:25:02.0718562Z 32: [ FAILED ] KeyVaultKeyClient.RotateKey 2023-03-30T01:25:02.0719176Z 32: 2023-03-30T01:25:02.0719765Z 32: 1 FAILED TEST 2023-03-30T01:25:02.0730254Z 26/192 Test #32: azure-security-keyvault-keys.KeyVaultKeyClient.RotateKey .......................................................***Failed 1.18 sec ... 2023-03-30T01:45:39.2783299Z The following tests FAILED: 2023-03-30T01:45:39.2784091Z 26 - azure-security-keyvault-keys.KeyVaultKeyClient.GetPropertiesOfKeysAllPages (Failed) 2023-03-30T01:45:39.2784919Z 27 - azure-security-keyvault-keys.KeyVaultKeyClient.GetKeysVersions (Failed) 2023-03-30T01:45:39.2785727Z 28 - azure-security-keyvault-keys.KeyVaultKeyClient.GetDeletedKeys (Failed) 2023-03-30T01:45:39.2786540Z 30 - azure-security-keyvault-keys.KeyVaultKeyClient.UpdateProperties (Failed) 2023-03-30T01:45:39.2787367Z 31 - azure-security-keyvault-keys.KeyVaultKeyClient.RemoteSignVerifyES256 (Failed) 2023-03-30T01:45:39.2788179Z 32 - azure-security-keyvault-keys.KeyVaultKeyClient.RotateKey (Failed) 2023-03-30T01:45:39.2788994Z 33 - azure-security-keyvault-keys.KeyVaultKeyClient.GetKeyRotationPolicy (Failed) 2023-03-30T01:45:39.4148186Z Errors while running CTest ``` cc @gearama, @danieljurek
1.0
Some KeyVault keys live tests are hitting a rate limitingerror with http status code 429 - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=2665709&view=logs&j=923d6b59-cd51-5920-31a9-90e7beb947b2&t=0199b35d-88d0-54df-1775-488f95570024&l=32746 For example: ```text 2023-03-30T01:25:00.8934595Z test 32 2023-03-30T01:25:00.8936419Z Start 32: azure-security-keyvault-keys.KeyVaultKeyClient.RotateKey 2023-03-30T01:25:00.8937194Z 2023-03-30T01:25:00.8938946Z 32: Test command: D:\a\_work\1\s\build\sdk\keyvault\azure-security-keyvault-keys\test\ut\Release\azure-security-keyvault-keys-test.exe "--gtest_filter=KeyVaultKeyClient.RotateKey" "--gtest_also_run_disabled_tests" 2023-03-30T01:25:00.8941101Z 32: Working Directory: D:/a/_work/1/s/build/sdk/keyvault/azure-security-keyvault-keys/test/ut 2023-03-30T01:25:00.8942286Z 32: Test timeout computed to be: 10000000 2023-03-30T01:25:00.9089816Z 32: Running main() from D:\a\_work\1\s\build\_deps\googletest-src\googletest\src\gtest_main.cc 2023-03-30T01:25:00.9090910Z 32: Note: Google Test filter = KeyVaultKeyClient.RotateKey 2023-03-30T01:25:00.9091506Z 32: [==========] Running 1 test from 1 test suite. 2023-03-30T01:25:00.9092146Z 32: [----------] Global test environment set-up. 2023-03-30T01:25:00.9092778Z 32: [----------] 1 test from KeyVaultKeyClient 2023-03-30T01:25:00.9093322Z 32: [ RUN ] KeyVaultKeyClient.RotateKey 2023-03-30T01:25:00.9142428Z 32: 2023-03-30T01:25:00.9144096Z 32: Keyvault and HSM areSame[2023-03-30T01:25:00.9139616Z] INFO : HTTP Request : POST ***/***/oauth2/v2.0/token 2023-03-30T01:25:00.9144946Z 32: content-length : 178 2023-03-30T01:25:00.9145577Z 32: content-type : application/x-www-form-urlencoded 2023-03-30T01:25:00.9146162Z 32: host : REDACTED 2023-03-30T01:25:00.9146989Z 32: user-agent : azsdk-cpp-identity/1.5.0-beta.2 (Windows Server 2022 Datacenter 6.3 20348 20348.1.amd64fre.fe_release.210507-1500) 2023-03-30T01:25:00.9147903Z 32: x-ms-client-request-id : 1974c7f8-bb80-4a69-4041-a8a5bf9e4fa9 2023-03-30T01:25:00.9224278Z 32: [2023-03-30T01:25:00.9221257Z] INFO : Status operation: 1(WINHTTP_CALLBACK_STATUS_RESOLVING_NAME ) 2023-03-30T01:25:00.9257384Z 32: [2023-03-30T01:25:00.9254317Z] INFO : Status operation: 2(WINHTTP_CALLBACK_STATUS_NAME_RESOLVED ) 2023-03-30T01:25:00.9267393Z 32: [2023-03-30T01:25:00.9264835Z] INFO : Status operation: 4(WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER ) 2023-03-30T01:25:00.9501290Z 32: [2023-03-30T01:25:00.9496563Z] INFO : Status operation: 8(WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER ) 2023-03-30T01:25:00.9847945Z 32: [2023-03-30T01:25:00.9841311Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:00.9849248Z 32: [2023-03-30T01:25:00.9842830Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:00.9850083Z 32: [2023-03-30T01:25:00.9843482Z] INFO : Status operation: 4194304(WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE ) 2023-03-30T01:25:00.9850878Z 32: [2023-03-30T01:25:00.9844136Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:00.9851708Z 32: [2023-03-30T01:25:00.9844988Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:00.9852474Z 32: [2023-03-30T01:25:00.9845270Z] INFO : Status operation: 1048576(WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE ) 2023-03-30T01:25:00.9853494Z 32: [2023-03-30T01:25:00.9846017Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:01.0573165Z 32: [2023-03-30T01:25:01.0567364Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:01.0575556Z 32: [2023-03-30T01:25:01.0568039Z] INFO : Status operation: 131072(WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE ) 2023-03-30T01:25:01.0577169Z 32: [2023-03-30T01:25:01.0569520Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:01.0578602Z 32: [2023-03-30T01:25:01.0569827Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:01.0579896Z 32: [2023-03-30T01:25:01.0570000Z] INFO : Status operation: 524288(WINHTTP_CALLBACK_STATUS_READ_COMPLETE ) 2023-03-30T01:25:01.0581072Z 32: [2023-03-30T01:25:01.0570260Z] DEBUG : Read Data read from wire. Size: 1315. 2023-03-30T01:25:01.0582130Z 32: [2023-03-30T01:25:01.0570495Z] DEBUG : ReadData returned size: 1315. 2023-03-30T01:25:01.0583215Z 32: [2023-03-30T01:25:01.0571188Z] DEBUG : WinHttpRequest::~WinHttpRequest. Closing handle synchronously. 2023-03-30T01:25:01.0584309Z 32: [2023-03-30T01:25:01.0571722Z] INFO : Status operation: 2048(WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING ) 2023-03-30T01:25:01.0585756Z 32: [2023-03-30T01:25:01.0571943Z] DEBUG : Closing handle; completing outstanding Close request 2023-03-30T01:25:01.0586880Z 32: [2023-03-30T01:25:01.0572495Z] INFO : HTTP Response (143ms) : 200 OK 2023-03-30T01:25:01.0588028Z 32: cache-control : no-store, no-cache 2023-03-30T01:25:01.0588863Z 32: content-length : 1315 2023-03-30T01:25:01.0589784Z 32: content-type : application/json; charset=utf-8 2023-03-30T01:25:01.0590473Z 32: date : Thu, 30 Mar 2023 01:25:00 GMT 2023-03-30T01:25:01.0591038Z 32: expires : -1 2023-03-30T01:25:01.0591547Z 32: p3p : REDACTED 2023-03-30T01:25:01.0592124Z 32: pragma : no-cache 2023-03-30T01:25:01.0592749Z 32: set-cookie : REDACTED 2023-03-30T01:25:01.0593386Z 32: strict-transport-security : REDACTED 2023-03-30T01:25:01.0594051Z 32: x-content-type-options : REDACTED 2023-03-30T01:25:01.0594679Z 32: x-ms-ests-server : REDACTED 2023-03-30T01:25:01.0595390Z 32: x-ms-request-id : 4122e13d-e9ba-4df2-ad81-8992ad873800 2023-03-30T01:25:01.0596098Z 32: x-xss-protection : REDACTED 2023-03-30T01:25:01.0596863Z 32: [2023-03-30T01:25:01.0572838Z] INFO : HTTP status code 200 won't be retried. 2023-03-30T01:25:01.0597922Z 32: [2023-03-30T01:25:01.0574106Z] INFO : HTTP Request : POST ***keys/RotateKey/create?api-version=7.3 2023-03-30T01:25:01.0598588Z 32: authorization : REDACTED 2023-03-30T01:25:01.0599212Z 32: content-type : application/json 2023-03-30T01:25:01.0600079Z 32: user-agent : azsdk-cpp-keyvault-keys/4.4.0-beta.1 (Windows Server 2022 Datacenter 6.3 20348 20348.1.amd64fre.fe_release.210507-1500) 2023-03-30T01:25:01.0600977Z 32: x-ms-client-request-id : 89bfbd50-f34c-455e-6116-27d15c11a0f4 2023-03-30T01:25:01.0601849Z 32: [2023-03-30T01:25:01.0585581Z] INFO : Status operation: 1(WINHTTP_CALLBACK_STATUS_RESOLVING_NAME ) 2023-03-30T01:25:01.0614630Z 32: [2023-03-30T01:25:01.0611186Z] INFO : Status operation: 2(WINHTTP_CALLBACK_STATUS_NAME_RESOLVED ) 2023-03-30T01:25:01.0615748Z 32: [2023-03-30T01:25:01.0612467Z] INFO : Status operation: 4(WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER ) 2023-03-30T01:25:01.0638828Z 32: [2023-03-30T01:25:01.0635909Z] INFO : Status operation: 8(WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER ) 2023-03-30T01:25:01.0688984Z 32: [2023-03-30T01:25:01.0686219Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:01.0690725Z 32: [2023-03-30T01:25:01.0687199Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:01.0692539Z 32: [2023-03-30T01:25:01.0687703Z] INFO : Status operation: 4194304(WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE ) 2023-03-30T01:25:01.0693496Z 32: [2023-03-30T01:25:01.0688520Z] INFO : Status operation: 16(WINHTTP_CALLBACK_STATUS_SENDING_REQUEST ) 2023-03-30T01:25:01.0694582Z 32: [2023-03-30T01:25:01.0689685Z] INFO : Status operation: 32(WINHTTP_CALLBACK_STATUS_REQUEST_SENT ) 2023-03-30T01:25:01.0695365Z 32: [2023-03-30T01:25:01.0690156Z] INFO : Status operation: 1048576(WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE ) 2023-03-30T01:25:01.0696160Z 32: [2023-03-30T01:25:01.0690878Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:02.0677040Z 32: [2023-03-30T01:25:02.0671009Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:02.0680104Z 32: [2023-03-30T01:25:02.0671786Z] INFO : Status operation: 131072(WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE ) 2023-03-30T01:25:02.0684182Z 32: [2023-03-30T01:25:02.0672748Z] INFO : Status operation: 64(WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE ) 2023-03-30T01:25:02.0686250Z 32: [2023-03-30T01:25:02.0673079Z] INFO : Status operation: 128(WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED ) 2023-03-30T01:25:02.0688070Z 32: [2023-03-30T01:25:02.0673307Z] INFO : Status operation: 524288(WINHTTP_CALLBACK_STATUS_READ_COMPLETE ) 2023-03-30T01:25:02.0689450Z 32: [2023-03-30T01:25:02.0673555Z] DEBUG : Read Data read from wire. Size: 153. 2023-03-30T01:25:02.0691182Z 32: [2023-03-30T01:25:02.0673737Z] DEBUG : ReadData returned size: 153. 2023-03-30T01:25:02.0692766Z 32: [2023-03-30T01:25:02.0674013Z] DEBUG : WinHttpRequest::~WinHttpRequest. Closing handle synchronously. 2023-03-30T01:25:02.0695974Z 32: [2023-03-30T01:25:02.0674514Z] INFO : Status operation: 2048(WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING ) 2023-03-30T01:25:02.0697153Z 32: [2023-03-30T01:25:02.0674747Z] DEBUG : Closing handle; completing outstanding Close request 2023-03-30T01:25:02.0698092Z 32: [2023-03-30T01:25:02.0675250Z] INFO : HTTP Response (1010ms) : 429 2023-03-30T01:25:02.0698935Z 32: cache-control : no-cache 2023-03-30T01:25:02.0699650Z 32: content-length : 153 2023-03-30T01:25:02.0700429Z 32: content-type : application/json; charset=utf-8 2023-03-30T01:25:02.0701158Z 32: date : Thu, 30 Mar 2023 01:25:01 GMT 2023-03-30T01:25:02.0701787Z 32: expires : -1 2023-03-30T01:25:02.0702535Z 32: pragma : no-cache 2023-03-30T01:25:02.0703821Z 32: strict-transport-security : REDACTED 2023-03-30T01:25:02.0705108Z 32: x-content-type-options : REDACTED 2023-03-30T01:25:02.0706996Z 32: x-ms-client-request-id : 89bfbd50-f34c-455e-6116-27d15c11a0f4 2023-03-30T01:25:02.0708358Z 32: x-ms-keyvault-network-info : REDACTED 2023-03-30T01:25:02.0709417Z 32: x-ms-keyvault-region : REDACTED 2023-03-30T01:25:02.0710315Z 32: x-ms-keyvault-service-version : REDACTED 2023-03-30T01:25:02.0711123Z 32: x-ms-request-id : 21198324-02e9-4748-b97f-67a104b59675 2023-03-30T01:25:02.0712001Z 32: [2023-03-30T01:25:02.0675539Z] INFO : HTTP status code 429 won't be retried. 2023-03-30T01:25:02.0712888Z 32: unknown file: error: C++ exception with description "Received an HTTP unsuccessful status code: 429" thrown in the test body. 2023-03-30T01:25:02.0713686Z 32: [ FAILED ] KeyVaultKeyClient.RotateKey (1159 ms) 2023-03-30T01:25:02.0714484Z 32: [----------] 1 test from KeyVaultKeyClient (1159 ms total) 2023-03-30T01:25:02.0715145Z 32: 2023-03-30T01:25:02.0715913Z 32: [----------] Global test environment tear-down 2023-03-30T01:25:02.0716619Z 32: [==========] 1 test from 1 test suite ran. (1159 ms total) 2023-03-30T01:25:02.0717275Z 32: [ PASSED ] 0 tests. 2023-03-30T01:25:02.0717909Z 32: [ FAILED ] 1 test, listed below: 2023-03-30T01:25:02.0718562Z 32: [ FAILED ] KeyVaultKeyClient.RotateKey 2023-03-30T01:25:02.0719176Z 32: 2023-03-30T01:25:02.0719765Z 32: 1 FAILED TEST 2023-03-30T01:25:02.0730254Z 26/192 Test #32: azure-security-keyvault-keys.KeyVaultKeyClient.RotateKey .......................................................***Failed 1.18 sec ... 2023-03-30T01:45:39.2783299Z The following tests FAILED: 2023-03-30T01:45:39.2784091Z 26 - azure-security-keyvault-keys.KeyVaultKeyClient.GetPropertiesOfKeysAllPages (Failed) 2023-03-30T01:45:39.2784919Z 27 - azure-security-keyvault-keys.KeyVaultKeyClient.GetKeysVersions (Failed) 2023-03-30T01:45:39.2785727Z 28 - azure-security-keyvault-keys.KeyVaultKeyClient.GetDeletedKeys (Failed) 2023-03-30T01:45:39.2786540Z 30 - azure-security-keyvault-keys.KeyVaultKeyClient.UpdateProperties (Failed) 2023-03-30T01:45:39.2787367Z 31 - azure-security-keyvault-keys.KeyVaultKeyClient.RemoteSignVerifyES256 (Failed) 2023-03-30T01:45:39.2788179Z 32 - azure-security-keyvault-keys.KeyVaultKeyClient.RotateKey (Failed) 2023-03-30T01:45:39.2788994Z 33 - azure-security-keyvault-keys.KeyVaultKeyClient.GetKeyRotationPolicy (Failed) 2023-03-30T01:45:39.4148186Z Errors while running CTest ``` cc @gearama, @danieljurek
test
some keyvault keys live tests are hitting a rate limitingerror with http status code for example text test start azure security keyvault keys keyvaultkeyclient rotatekey test command d a work s build sdk keyvault azure security keyvault keys test ut release azure security keyvault keys test exe gtest filter keyvaultkeyclient rotatekey gtest also run disabled tests working directory d a work s build sdk keyvault azure security keyvault keys test ut test timeout computed to be running main from d a work s build deps googletest src googletest src gtest main cc note google test filter keyvaultkeyclient rotatekey running test from test suite global test environment set up test from keyvaultkeyclient keyvaultkeyclient rotatekey keyvault and hsm aresame info http request post token content length content type application x www form urlencoded host redacted user agent azsdk cpp identity beta windows server datacenter fe release x ms client request id info status operation winhttp callback status resolving name info status operation winhttp callback status name resolved info status operation winhttp callback status connecting to server info status operation winhttp callback status connected to server info status operation winhttp callback status sending request info status operation winhttp callback status request sent info status operation winhttp callback status sendrequest complete info status operation winhttp callback status sending request info status operation winhttp callback status request sent info status operation winhttp callback status write complete info status operation winhttp callback status receiving response info status operation winhttp callback status response received info status operation winhttp callback status headers available info status operation winhttp callback status receiving response info status operation winhttp callback status response received info status operation winhttp callback status read complete debug read data read from wire size debug readdata returned size debug winhttprequest winhttprequest closing handle synchronously info status operation winhttp callback status handle closing debug closing handle completing outstanding close request info http response ok cache control no store no cache content length content type application json charset utf date thu mar gmt expires redacted pragma no cache set cookie redacted strict transport security redacted x content type options redacted x ms ests server redacted x ms request id x xss protection redacted info http status code won t be retried info http request post keys rotatekey create api version authorization redacted content type application json user agent azsdk cpp keyvault keys beta windows server datacenter fe release x ms client request id info status operation winhttp callback status resolving name info status operation winhttp callback status name resolved info status operation winhttp callback status connecting to server info status operation winhttp callback status connected to server info status operation winhttp callback status sending request info status operation winhttp callback status request sent info status operation winhttp callback status sendrequest complete info status operation winhttp callback status sending request info status operation winhttp callback status request sent info status operation winhttp callback status write complete info status operation winhttp callback status receiving response info status operation winhttp callback status response received info status operation winhttp callback status headers available info status operation winhttp callback status receiving response info status operation winhttp callback status response received info status operation winhttp callback status read complete debug read data read from wire size debug readdata returned size debug winhttprequest winhttprequest closing handle synchronously info status operation winhttp callback status handle closing debug closing handle completing outstanding close request info http response cache control no cache content length content type application json charset utf date thu mar gmt expires pragma no cache strict transport security redacted x content type options redacted x ms client request id x ms keyvault network info redacted x ms keyvault region redacted x ms keyvault service version redacted x ms request id info http status code won t be retried unknown file error c exception with description received an http unsuccessful status code thrown in the test body keyvaultkeyclient rotatekey ms test from keyvaultkeyclient ms total global test environment tear down test from test suite ran ms total tests test listed below keyvaultkeyclient rotatekey failed test test azure security keyvault keys keyvaultkeyclient rotatekey failed sec the following tests failed azure security keyvault keys keyvaultkeyclient getpropertiesofkeysallpages failed azure security keyvault keys keyvaultkeyclient getkeysversions failed azure security keyvault keys keyvaultkeyclient getdeletedkeys failed azure security keyvault keys keyvaultkeyclient updateproperties failed azure security keyvault keys keyvaultkeyclient failed azure security keyvault keys keyvaultkeyclient rotatekey failed azure security keyvault keys keyvaultkeyclient getkeyrotationpolicy failed errors while running ctest cc gearama danieljurek
1
397,724
11,731,769,135
IssuesEvent
2020-03-11 01:17:40
MelbourneHighSchoolRobotics/RCJA_Registration_System
https://api.github.com/repos/MelbourneHighSchoolRobotics/RCJA_Registration_System
closed
Set team school to mentor's current school if created in admin without school
Priority enhancement
Probably only want to do this if there is one school, otherwise probably want to throw a ValidationError
1.0
Set team school to mentor's current school if created in admin without school - Probably only want to do this if there is one school, otherwise probably want to throw a ValidationError
non_test
set team school to mentor s current school if created in admin without school probably only want to do this if there is one school otherwise probably want to throw a validationerror
0
113,347
17,135,188,745
IssuesEvent
2021-07-13 00:24:58
turkdevops/gitea
https://api.github.com/repos/turkdevops/gitea
opened
CVE-2012-6708 (Medium) detected in multiple libraries
security vulnerability
## CVE-2012-6708 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>golang.org/x/tools/go/analysis/passes/loopclosure-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/copylock-v0.1.0</b>, <b>golang.org/x/tools/go/analysis-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/bools-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/asmdecl-v0.1.0</b>, <b>golang.org/x/tools/go/types/objectpath-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/composite-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/assign-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/nilfunc-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/structtag-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unusedresult-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/printf-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/cgocall-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unsafeptr-v0.1.0</b>, <b>golang.org/x/tools/internal/analysisinternal-v0.1.0</b>, <b>golang.org/x/tools/internal/lsp/fuzzy-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/errorsas-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/stdmethods-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/lostcancel-v0.1.0</b>, <b>golang.org/x/tools/go/internal/cgo-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/httpresponse-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/shift-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/buildtag-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/tests-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unmarshal-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unreachable-v0.1.0</b>, <b>golang.org/x/tools/cover-v0.1.0</b>, <b>jquery-1.4.2.min.js</b></p></summary> <p> <details><summary><b>golang.org/x/tools/go/analysis/passes/loopclosure-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/loopclosure-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/copylock-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/copylock-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - :x: **golang.org/x/tools/go/analysis-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/bools-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/bools-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/asmdecl-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/asmdecl-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/types/objectpath-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - golang.org/x/tools/go/analysis/internal/facts-v0.1.0 - :x: **golang.org/x/tools/go/types/objectpath-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/composite-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/composite-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/assign-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/assign-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/nilfunc-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/nilfunc-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/structtag-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/structtag-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unusedresult-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unusedresult-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/printf-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/printf-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/cgocall-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/cgocall-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unsafeptr-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unsafeptr-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/internal/analysisinternal-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/internal/analysisinternal-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/internal/lsp/fuzzy-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/internal/analysisinternal-v0.1.0 - :x: **golang.org/x/tools/internal/lsp/fuzzy-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/errorsas-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/errorsas-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/stdmethods-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/stdmethods-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/lostcancel-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/lostcancel-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/internal/cgo-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - github.com/go-swagger/go-swagger/cmd/swagger-v0.27.0 (Root Library) - github.com/go-swagger/go-swagger/cmd/swagger/commands/generate-v0.27.0 - github.com/go-swagger/go-swagger/scan-v0.27.0 - golang.org/x/tools/go/loader-v0.1.0 - :x: **golang.org/x/tools/go/internal/cgo-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/httpresponse-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/httpresponse-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/shift-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/shift-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/buildtag-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/buildtag-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/tests-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/tests-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unmarshal-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unmarshal-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unreachable-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unreachable-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/cover-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - :x: **golang.org/x/tools/cover-v0.1.0** (Vulnerable Library) </details> <details><summary><b>jquery-1.4.2.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.4.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.4.2/jquery.min.js</a></p> <p>Path to dependency file: gitea/node_modules/jquery.are-you-sure/demo/are-you-sure-demo.html</p> <p>Path to vulnerable library: gitea/node_modules/jquery.are-you-sure/demo/are-you-sure-demo.html</p> <p> Dependency Hierarchy: - :x: **jquery-1.4.2.min.js** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/turkdevops/gitea/commit/5a07ad71010693de12293f5ff1fadc890259b5e0">5a07ad71010693de12293f5ff1fadc890259b5e0</a></p> <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jQuery before 1.9.0 is vulnerable to Cross-site Scripting (XSS) attacks. The jQuery(strInput) function does not differentiate selectors from HTML in a reliable fashion. In vulnerable versions, jQuery determined whether the input was HTML by looking for the '<' character anywhere in the string, giving attackers more flexibility when attempting to construct a malicious payload. In fixed versions, jQuery only deems the input to be HTML if it explicitly starts with the '<' character, limiting exploitability only to attackers who can control the beginning of a string, which is far less common. <p>Publish Date: 2018-01-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2012-6708>CVE-2012-6708</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2012-6708">https://nvd.nist.gov/vuln/detail/CVE-2012-6708</a></p> <p>Release Date: 2018-01-18</p> <p>Fix Resolution: jQuery - v1.9.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2012-6708 (Medium) detected in multiple libraries - ## CVE-2012-6708 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>golang.org/x/tools/go/analysis/passes/loopclosure-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/copylock-v0.1.0</b>, <b>golang.org/x/tools/go/analysis-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/bools-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/asmdecl-v0.1.0</b>, <b>golang.org/x/tools/go/types/objectpath-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/composite-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/assign-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/nilfunc-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/structtag-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unusedresult-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/printf-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/cgocall-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unsafeptr-v0.1.0</b>, <b>golang.org/x/tools/internal/analysisinternal-v0.1.0</b>, <b>golang.org/x/tools/internal/lsp/fuzzy-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/errorsas-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/stdmethods-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/lostcancel-v0.1.0</b>, <b>golang.org/x/tools/go/internal/cgo-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/httpresponse-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/shift-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/buildtag-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/tests-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unmarshal-v0.1.0</b>, <b>golang.org/x/tools/go/analysis/passes/unreachable-v0.1.0</b>, <b>golang.org/x/tools/cover-v0.1.0</b>, <b>jquery-1.4.2.min.js</b></p></summary> <p> <details><summary><b>golang.org/x/tools/go/analysis/passes/loopclosure-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/loopclosure-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/copylock-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/copylock-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - :x: **golang.org/x/tools/go/analysis-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/bools-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/bools-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/asmdecl-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/asmdecl-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/types/objectpath-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - golang.org/x/tools/go/analysis/internal/facts-v0.1.0 - :x: **golang.org/x/tools/go/types/objectpath-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/composite-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/composite-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/assign-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/assign-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/nilfunc-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/nilfunc-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/structtag-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/structtag-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unusedresult-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unusedresult-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/printf-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/printf-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/cgocall-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/cgocall-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unsafeptr-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unsafeptr-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/internal/analysisinternal-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/internal/analysisinternal-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/internal/lsp/fuzzy-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/internal/analysisinternal-v0.1.0 - :x: **golang.org/x/tools/internal/lsp/fuzzy-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/errorsas-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/errorsas-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/stdmethods-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/stdmethods-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/lostcancel-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/lostcancel-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/internal/cgo-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - github.com/go-swagger/go-swagger/cmd/swagger-v0.27.0 (Root Library) - github.com/go-swagger/go-swagger/cmd/swagger/commands/generate-v0.27.0 - github.com/go-swagger/go-swagger/scan-v0.27.0 - golang.org/x/tools/go/loader-v0.1.0 - :x: **golang.org/x/tools/go/internal/cgo-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/httpresponse-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/httpresponse-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/shift-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/shift-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/buildtag-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/buildtag-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/tests-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/tests-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unmarshal-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unmarshal-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/go/analysis/passes/unreachable-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - code.gitea.io/gitea-vet-v0.2.1 (Root Library) - golang.org/x/tools/go/analysis-v0.1.0 - golang.org/x/tools/go/analysis/unitchecker-v0.1.0 - :x: **golang.org/x/tools/go/analysis/passes/unreachable-v0.1.0** (Vulnerable Library) </details> <details><summary><b>golang.org/x/tools/cover-v0.1.0</b></p></summary> <p>[mirror] Go Tools</p> <p> Dependency Hierarchy: - :x: **golang.org/x/tools/cover-v0.1.0** (Vulnerable Library) </details> <details><summary><b>jquery-1.4.2.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.4.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.4.2/jquery.min.js</a></p> <p>Path to dependency file: gitea/node_modules/jquery.are-you-sure/demo/are-you-sure-demo.html</p> <p>Path to vulnerable library: gitea/node_modules/jquery.are-you-sure/demo/are-you-sure-demo.html</p> <p> Dependency Hierarchy: - :x: **jquery-1.4.2.min.js** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/turkdevops/gitea/commit/5a07ad71010693de12293f5ff1fadc890259b5e0">5a07ad71010693de12293f5ff1fadc890259b5e0</a></p> <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jQuery before 1.9.0 is vulnerable to Cross-site Scripting (XSS) attacks. The jQuery(strInput) function does not differentiate selectors from HTML in a reliable fashion. In vulnerable versions, jQuery determined whether the input was HTML by looking for the '<' character anywhere in the string, giving attackers more flexibility when attempting to construct a malicious payload. In fixed versions, jQuery only deems the input to be HTML if it explicitly starts with the '<' character, limiting exploitability only to attackers who can control the beginning of a string, which is far less common. <p>Publish Date: 2018-01-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2012-6708>CVE-2012-6708</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2012-6708">https://nvd.nist.gov/vuln/detail/CVE-2012-6708</a></p> <p>Release Date: 2018-01-18</p> <p>Fix Resolution: jQuery - v1.9.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries golang org x tools go analysis passes loopclosure golang org x tools go analysis passes copylock golang org x tools go analysis golang org x tools go analysis passes bools golang org x tools go analysis passes asmdecl golang org x tools go types objectpath golang org x tools go analysis passes composite golang org x tools go analysis passes assign golang org x tools go analysis passes nilfunc golang org x tools go analysis passes structtag golang org x tools go analysis passes unusedresult golang org x tools go analysis passes printf golang org x tools go analysis passes cgocall golang org x tools go analysis passes unsafeptr golang org x tools internal analysisinternal golang org x tools internal lsp fuzzy golang org x tools go analysis passes errorsas golang org x tools go analysis passes stdmethods golang org x tools go analysis passes lostcancel golang org x tools go internal cgo golang org x tools go analysis passes httpresponse golang org x tools go analysis passes shift golang org x tools go analysis passes buildtag golang org x tools go analysis passes tests golang org x tools go analysis passes unmarshal golang org x tools go analysis passes unreachable golang org x tools cover jquery min js golang org x tools go analysis passes loopclosure go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools go analysis passes loopclosure vulnerable library golang org x tools go analysis passes copylock go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes copylock vulnerable library golang org x tools go analysis go tools dependency hierarchy code gitea io gitea vet root library x golang org x tools go analysis vulnerable library golang org x tools go analysis passes bools go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes bools vulnerable library golang org x tools go analysis passes asmdecl go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools go analysis passes asmdecl vulnerable library golang org x tools go types objectpath go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker golang org x tools go analysis internal facts x golang org x tools go types objectpath vulnerable library golang org x tools go analysis passes composite go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes composite vulnerable library golang org x tools go analysis passes assign go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes assign vulnerable library golang org x tools go analysis passes nilfunc go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes nilfunc vulnerable library golang org x tools go analysis passes structtag go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes structtag vulnerable library golang org x tools go analysis passes unusedresult go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools go analysis passes unusedresult vulnerable library golang org x tools go analysis passes printf go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools go analysis passes printf vulnerable library golang org x tools go analysis passes cgocall go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes cgocall vulnerable library golang org x tools go analysis passes unsafeptr go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools go analysis passes unsafeptr vulnerable library golang org x tools internal analysisinternal go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools internal analysisinternal vulnerable library golang org x tools internal lsp fuzzy go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools internal analysisinternal x golang org x tools internal lsp fuzzy vulnerable library golang org x tools go analysis passes errorsas go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes errorsas vulnerable library golang org x tools go analysis passes stdmethods go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools go analysis passes stdmethods vulnerable library golang org x tools go analysis passes lostcancel go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis x golang org x tools go analysis passes lostcancel vulnerable library golang org x tools go internal cgo go tools dependency hierarchy github com go swagger go swagger cmd swagger root library github com go swagger go swagger cmd swagger commands generate github com go swagger go swagger scan golang org x tools go loader x golang org x tools go internal cgo vulnerable library golang org x tools go analysis passes httpresponse go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes httpresponse vulnerable library golang org x tools go analysis passes shift go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes shift vulnerable library golang org x tools go analysis passes buildtag go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes buildtag vulnerable library golang org x tools go analysis passes tests go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes tests vulnerable library golang org x tools go analysis passes unmarshal go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes unmarshal vulnerable library golang org x tools go analysis passes unreachable go tools dependency hierarchy code gitea io gitea vet root library golang org x tools go analysis golang org x tools go analysis unitchecker x golang org x tools go analysis passes unreachable vulnerable library golang org x tools cover go tools dependency hierarchy x golang org x tools cover vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file gitea node modules jquery are you sure demo are you sure demo html path to vulnerable library gitea node modules jquery are you sure demo are you sure demo html dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch main vulnerability details jquery before is vulnerable to cross site scripting xss attacks the jquery strinput function does not differentiate selectors from html in a reliable fashion in vulnerable versions jquery determined whether the input was html by looking for the character anywhere in the string giving attackers more flexibility when attempting to construct a malicious payload in fixed versions jquery only deems the input to be html if it explicitly starts with the character limiting exploitability only to attackers who can control the beginning of a string which is far less common publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery step up your open source security game with whitesource
0
286,117
21,564,057,787
IssuesEvent
2022-05-01 15:52:14
M-Scott-Lassiter/Alphanumeric-Encoder
https://api.github.com/repos/M-Scott-Lassiter/Alphanumeric-Encoder
closed
[Docs Request]: Add project logo to the README
documentation
### Contact Details _No response_ ### Component README ### Description The project would benefit from an animated logo at the top of the README. This logo should demonstrate at a glance what the library is used for. The animation should be smooth and communicate to users that this is a trustworthy and professionally assembled library. Using HTML, CSS, and JS, the logo can be used as-is on a website, or screen captured into a GIF for use in markdown files. ### Are you able/willing to make the change? (It's ok if you're not!) Yes ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://github.com/M-Scott-Lassiter/Alphanumeric-Encoder/blob/main/CODE_OF_CONDUCT.md)
1.0
[Docs Request]: Add project logo to the README - ### Contact Details _No response_ ### Component README ### Description The project would benefit from an animated logo at the top of the README. This logo should demonstrate at a glance what the library is used for. The animation should be smooth and communicate to users that this is a trustworthy and professionally assembled library. Using HTML, CSS, and JS, the logo can be used as-is on a website, or screen captured into a GIF for use in markdown files. ### Are you able/willing to make the change? (It's ok if you're not!) Yes ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://github.com/M-Scott-Lassiter/Alphanumeric-Encoder/blob/main/CODE_OF_CONDUCT.md)
non_test
add project logo to the readme contact details no response component readme description the project would benefit from an animated logo at the top of the readme this logo should demonstrate at a glance what the library is used for the animation should be smooth and communicate to users that this is a trustworthy and professionally assembled library using html css and js the logo can be used as is on a website or screen captured into a gif for use in markdown files are you able willing to make the change it s ok if you re not yes code of conduct i agree to follow this project s
0
56,735
6,528,264,344
IssuesEvent
2017-08-30 06:40:44
gradle/gradle
https://api.github.com/repos/gradle/gradle
closed
Make sure SamplesToolingApiIntegrationTest shuts down isolated daemons before deleting daemon log
in:testing
### Expected Behavior During the tests' cleanup phase, all files must be accessible for removing ### Current Behavior Tests may fail on Windows with `java.io.IOException: Unable to delete file: subprojects\tooling-api\build\tmp\test distros\can_use_tooling_API...run_tasks\sc605\toolingApi\runBuild\daemon\3.5-snapshot-1\daemon-3972.out.log` https://builds.gradle.org/viewLog.html?buildId=2242395 **Remove `@LeaksFileHandles` annotation from test class once this is fixed.** - https://github.com/gradle/gradle/commit/b9c5bb24e5fd67675f0d1747b523e90638d93530
1.0
Make sure SamplesToolingApiIntegrationTest shuts down isolated daemons before deleting daemon log - ### Expected Behavior During the tests' cleanup phase, all files must be accessible for removing ### Current Behavior Tests may fail on Windows with `java.io.IOException: Unable to delete file: subprojects\tooling-api\build\tmp\test distros\can_use_tooling_API...run_tasks\sc605\toolingApi\runBuild\daemon\3.5-snapshot-1\daemon-3972.out.log` https://builds.gradle.org/viewLog.html?buildId=2242395 **Remove `@LeaksFileHandles` annotation from test class once this is fixed.** - https://github.com/gradle/gradle/commit/b9c5bb24e5fd67675f0d1747b523e90638d93530
test
make sure samplestoolingapiintegrationtest shuts down isolated daemons before deleting daemon log expected behavior during the tests cleanup phase all files must be accessible for removing current behavior tests may fail on windows with java io ioexception unable to delete file subprojects tooling api build tmp test distros can use tooling api run tasks toolingapi runbuild daemon snapshot daemon out log remove leaksfilehandles annotation from test class once this is fixed
1
98,779
30,118,609,745
IssuesEvent
2023-06-30 13:31:31
PaddlePaddle/Paddle
https://api.github.com/repos/PaddlePaddle/Paddle
closed
Error: Can not import paddle core while this file exists: /fluid/libpaddle.so (paddle develop)
status/new-issue type/build
### 问题描述 Issue Description [DeepXDE](https://github.com/lululxvi/deepxde/)'s RTD build is failing with the error message - ``` Error: Can not import paddle core while this file exists: /home/docs/checkouts/readthedocs.org/user_builds/deepxde/envs/1311/lib/python3.8/site-packages/paddle/fluid/libpaddle.so ``` <br> - `paddle` is being [installed](https://github.com/lululxvi/deepxde/blob/master/docs/requirements.txt) from the following wheel file (develop version) - https://paddle-wheel.bj.bcebos.com/develop/linux/linux-cpu-mkl-avx/paddlepaddle-0.0.0-cp38-cp38-linux_x86_64.whl - RTD logs - https://readthedocs.org/projects/deepxde/builds/21141828/ I saw a lot of similar issues in paddle's issue tracker but none of them were Installing the develop version of paddle; hence, I decided to report this. ### 版本&环境信息 Version & Environment Information Environment is described here - https://github.com/lululxvi/deepxde/blob/master/.readthedocs.yaml Paddle version: develop | linux-cpu-mkl-avx
1.0
Error: Can not import paddle core while this file exists: /fluid/libpaddle.so (paddle develop) - ### 问题描述 Issue Description [DeepXDE](https://github.com/lululxvi/deepxde/)'s RTD build is failing with the error message - ``` Error: Can not import paddle core while this file exists: /home/docs/checkouts/readthedocs.org/user_builds/deepxde/envs/1311/lib/python3.8/site-packages/paddle/fluid/libpaddle.so ``` <br> - `paddle` is being [installed](https://github.com/lululxvi/deepxde/blob/master/docs/requirements.txt) from the following wheel file (develop version) - https://paddle-wheel.bj.bcebos.com/develop/linux/linux-cpu-mkl-avx/paddlepaddle-0.0.0-cp38-cp38-linux_x86_64.whl - RTD logs - https://readthedocs.org/projects/deepxde/builds/21141828/ I saw a lot of similar issues in paddle's issue tracker but none of them were Installing the develop version of paddle; hence, I decided to report this. ### 版本&环境信息 Version & Environment Information Environment is described here - https://github.com/lululxvi/deepxde/blob/master/.readthedocs.yaml Paddle version: develop | linux-cpu-mkl-avx
non_test
error can not import paddle core while this file exists fluid libpaddle so paddle develop 问题描述 issue description rtd build is failing with the error message error can not import paddle core while this file exists home docs checkouts readthedocs org user builds deepxde envs lib site packages paddle fluid libpaddle so paddle is being from the following wheel file develop version rtd logs i saw a lot of similar issues in paddle s issue tracker but none of them were installing the develop version of paddle hence i decided to report this 版本 环境信息 version environment information environment is described here paddle version develop linux cpu mkl avx
0
290,457
25,069,081,230
IssuesEvent
2022-11-07 10:39:37
zer0five/yomikaze
https://api.github.com/repos/zer0five/yomikaze
opened
[Test Case]: [RegisterTestSuite] Password is not strong
Test Tested Selenium
### Description of the test case kiểm tra xem lúc đăng kí password nó có strong không ### Script ```java // Generated by Selenium IDE import org.junit.Test; import org.junit.Before; import org.junit.After; import static org.junit.Assert.*; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.core.IsNot.not; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.remote.RemoteWebDriver; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.Dimension; import org.openqa.selenium.WebElement; import org.openqa.selenium.interactions.Actions; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.Alert; import org.openqa.selenium.Keys; import java.util.*; import java.net.MalformedURLException; import java.net.URL; public class PasswordIsNotStrongTest { private WebDriver driver; private Map<String, Object> vars; JavascriptExecutor js; @Before public void setUp() { driver = new ChromeDriver(); js = (JavascriptExecutor) driver; vars = new HashMap<String, Object>(); } @After public void tearDown() { driver.quit(); } @Test public void passwordIsNotStrong() { driver.get("https://yomikaze.herokuapp.com/"); driver.manage().window().setSize(new Dimension(1536, 824)); driver.findElement(By.cssSelector(".btn-success")).click(); driver.findElement(By.id("username")).click(); driver.findElement(By.id("username")).sendKeys("Radkaim"); driver.findElement(By.id("email")).click(); driver.findElement(By.id("email")).sendKeys("hungnnce160506@fpt.edu.vn"); driver.findElement(By.id("password")).click(); driver.findElement(By.id("password")).sendKeys("1234"); driver.findElement(By.id("password-confirmation")).click(); driver.findElement(By.id("password-confirmation")).sendKeys("1234"); driver.findElement(By.id("sign-up")).click(); { List<WebElement> elements = driver.findElements(By.cssSelector("#password-group > .text-error")); assert(elements.size() > 0); } assertThat(driver.findElement(By.cssSelector("#password-group > .text-error")).getText(), is("Password must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter and one number")); } } ``` ### What browsers are you seeing the problem on? Chrome
2.0
[Test Case]: [RegisterTestSuite] Password is not strong - ### Description of the test case kiểm tra xem lúc đăng kí password nó có strong không ### Script ```java // Generated by Selenium IDE import org.junit.Test; import org.junit.Before; import org.junit.After; import static org.junit.Assert.*; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.core.IsNot.not; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.remote.RemoteWebDriver; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.Dimension; import org.openqa.selenium.WebElement; import org.openqa.selenium.interactions.Actions; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.Alert; import org.openqa.selenium.Keys; import java.util.*; import java.net.MalformedURLException; import java.net.URL; public class PasswordIsNotStrongTest { private WebDriver driver; private Map<String, Object> vars; JavascriptExecutor js; @Before public void setUp() { driver = new ChromeDriver(); js = (JavascriptExecutor) driver; vars = new HashMap<String, Object>(); } @After public void tearDown() { driver.quit(); } @Test public void passwordIsNotStrong() { driver.get("https://yomikaze.herokuapp.com/"); driver.manage().window().setSize(new Dimension(1536, 824)); driver.findElement(By.cssSelector(".btn-success")).click(); driver.findElement(By.id("username")).click(); driver.findElement(By.id("username")).sendKeys("Radkaim"); driver.findElement(By.id("email")).click(); driver.findElement(By.id("email")).sendKeys("hungnnce160506@fpt.edu.vn"); driver.findElement(By.id("password")).click(); driver.findElement(By.id("password")).sendKeys("1234"); driver.findElement(By.id("password-confirmation")).click(); driver.findElement(By.id("password-confirmation")).sendKeys("1234"); driver.findElement(By.id("sign-up")).click(); { List<WebElement> elements = driver.findElements(By.cssSelector("#password-group > .text-error")); assert(elements.size() > 0); } assertThat(driver.findElement(By.cssSelector("#password-group > .text-error")).getText(), is("Password must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter and one number")); } } ``` ### What browsers are you seeing the problem on? Chrome
test
password is not strong description of the test case kiểm tra xem lúc đăng kí password nó có strong không script java generated by selenium ide import org junit test import org junit before import org junit after import static org junit assert import static org hamcrest corematchers is import static org hamcrest core isnot not import org openqa selenium by import org openqa selenium webdriver import org openqa selenium firefox firefoxdriver import org openqa selenium chrome chromedriver import org openqa selenium remote remotewebdriver import org openqa selenium remote desiredcapabilities import org openqa selenium dimension import org openqa selenium webelement import org openqa selenium interactions actions import org openqa selenium support ui expectedconditions import org openqa selenium support ui webdriverwait import org openqa selenium javascriptexecutor import org openqa selenium alert import org openqa selenium keys import java util import java net malformedurlexception import java net url public class passwordisnotstrongtest private webdriver driver private map vars javascriptexecutor js before public void setup driver new chromedriver js javascriptexecutor driver vars new hashmap after public void teardown driver quit test public void passwordisnotstrong driver get driver manage window setsize new dimension driver findelement by cssselector btn success click driver findelement by id username click driver findelement by id username sendkeys radkaim driver findelement by id email click driver findelement by id email sendkeys fpt edu vn driver findelement by id password click driver findelement by id password sendkeys driver findelement by id password confirmation click driver findelement by id password confirmation sendkeys driver findelement by id sign up click list elements driver findelements by cssselector password group text error assert elements size assertthat driver findelement by cssselector password group text error gettext is password must be at least characters long and contain at least one uppercase letter one lowercase letter and one number what browsers are you seeing the problem on chrome
1
792,264
27,952,768,777
IssuesEvent
2023-03-24 10:06:22
Avaiga/taipy-core
https://api.github.com/repos/Avaiga/taipy-core
closed
FSRepository: Extract the business logic from repository to the Entity or Manager
Core: Repository 🟨 Priority: Medium 🔒 Staff only 📈 Improvement
Ensure the business logic from all children repository classes is moved either to the Entity or the Manager.
1.0
FSRepository: Extract the business logic from repository to the Entity or Manager - Ensure the business logic from all children repository classes is moved either to the Entity or the Manager.
non_test
fsrepository extract the business logic from repository to the entity or manager ensure the business logic from all children repository classes is moved either to the entity or the manager
0
95,589
8,563,827,943
IssuesEvent
2018-11-09 15:08:30
TeaSpeak/TeaSpeak
https://api.github.com/repos/TeaSpeak/TeaSpeak
closed
android clients cant view avatar in TeaSpeak Server!
bug requires testing
hi there is a problem [an error] on TeaSpeak Server when i connect to my TeaSpeak server with android client i cant view the client avatars [in client info] and there is an error: "not implemented" i take an screenshot, link below: http://s8.picofile.com/file/8342153300/photo_2018_11_08_14_43_17.jpg check it and fix it thanks
1.0
android clients cant view avatar in TeaSpeak Server! - hi there is a problem [an error] on TeaSpeak Server when i connect to my TeaSpeak server with android client i cant view the client avatars [in client info] and there is an error: "not implemented" i take an screenshot, link below: http://s8.picofile.com/file/8342153300/photo_2018_11_08_14_43_17.jpg check it and fix it thanks
test
android clients cant view avatar in teaspeak server hi there is a problem on teaspeak server when i connect to my teaspeak server with android client i cant view the client avatars and there is an error not implemented i take an screenshot link below check it and fix it thanks
1
429,407
12,424,078,751
IssuesEvent
2020-05-24 09:39:35
kubernetes/minikube
https://api.github.com/repos/kubernetes/minikube
closed
storage-provisioner addon: kube-system:storage-provisioner cannot list events in the namespace
addon/storage-provisioner area/addons help wanted kind/bug lifecycle/rotten priority/awaiting-more-evidence r/2019q2
<!-- Thanks for filing an issue! Before hitting the button, please answer these questions.--> **Is this a BUG REPORT or FEATURE REQUEST?** (choose one): BUG REPORT <!-- If this is a BUG REPORT, please: - Fill in as much of the template below as you can. If you leave out information, we can't help you as well. If this is a FEATURE REQUEST, please: - Describe *in detail* the feature/behavior/change you'd like to see. In both cases, be ready for followup questions, and please respond in a timely manner. If we can't reproduce a bug or think a feature already exists, we might close your issue. If we're wrong, PLEASE feel free to reopen it and explain why. --> Please provide the following details: **Environment**: minikube v0.28.2 on macOS 10.13.2 + VirtualBox **Minikube version** (use `minikube version`): minikube version: v0.28.2 - **OS** (e.g. from /etc/os-release): macOSX 10.13.2 (`/etc/os-release: No such file or directory`) - **VM Driver** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep DriverName`): `"DriverName": "virtualbox"` - **ISO version** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep -i ISO` or `minikube ssh cat /etc/VERSION`): `"Boot2DockerURL": "file:///Users/lambert8/.minikube/cache/iso/minikube-v0.28.1.iso"` - **Install tools**: helm/tiller - **Others**: **What happened**: My minikube cluster (created yesterday) with the `storage-provisioner` addon enabled. At first, I was apparently in a bad state: `kubectl describe pvc` yielded the familiar "the provisioner hasn't worked yet" warning message, and the provisioner logs were complaining about some unknown connectivity issue: ```bash $ kubectl get sc NAME PROVISIONER AGE standard (default) k8s.io/minikube-hostpath 40m $ kubectl get pvc,pv -n test NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE pvc/shr86q-cloudcmd Pending standard 20s pvc/sz8kmm-cloudcmd Pending standard 1m $ kubectl describe pvc/shr86q-cloudcmd -n test Name: shr86q-cloudcmd Namespace: test StorageClass: standard Status: Pending Volume: Labels: name=shr86q-cloudcmd service=cloudcmd stack=shr86q Annotations: volume.beta.kubernetes.io/storage-provisioner=k8s.io/minikube-hostpath Finalizers: [kubernetes.io/pvc-protection] Capacity: Access Modes: Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal ExternalProvisioning 14s (x4 over 35s) persistentvolume-controller waiting for a volume to be created, either by external provisioner "k8s.io/minikube-hostpath" or manually created by system administrator $ kubectl get pods -n kube-system NAME READY STATUS RESTARTS AGE etcd-minikube 1/1 Running 0 40m kube-addon-manager-minikube 1/1 Running 0 41m kube-apiserver-minikube 1/1 Running 0 41m kube-controller-manager-minikube 1/1 Running 0 41m kube-scheduler-minikube 1/1 Running 0 41m kubernetes-dashboard-5498ccf677-5r975 0/1 CrashLoopBackOff 11 41m storage-provisioner 0/1 CrashLoopBackOff 11 41m $ kubectl logs -f storage-provisioner -n kube-system F0912 16:43:12.951200 1 main.go:37] Error getting server version: Get https://10.96.0.1:443/version: dial tcp 10.96.0.1:443: i/o timeout ``` Upon deleting and recreating the minikube cluster (to clear the bad state), when repeating the test case I saw the following in the logs: ```bash $ kubectl logs -f storage-provisioner -n kube-system Error watching for provisioning success, can't provision for claim "test/s4rdfk-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" Error watching for provisioning success, can't provision for claim "test/spd9xt-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" ``` The provisioner did still create a PV and Bound the PVC to it in such cases: ```bash $ kubectl get pvc -n test NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE s4rdfk-cloudcmd Bound pvc-e794fa3e-b6ac-11e8-8044-080027add193 1Mi RWX standard 12m spd9xt-cloudcmd Bound pvc-6baa04ab-b6ad-11e8-8044-080027add193 1Mi RWX standard 8m src67q-cloudcmd Bound pvc-2243a82c-b6ae-11e8-8044-080027add193 1Mi RWX standard 3m ``` **What you expected to happen**: The provisioner shouldn't throw an error when provisioning was successful. **How to reproduce it** (as minimally and precisely as possible): 1. Bring up a fresh cluster with default addons enabled: `minikube start` 2. Fetch a test PVC template: `wget https://gist.githubusercontent.com/bodom0015/d920e22df8ff78ee05929d4c3ae736f8/raw/edccc530bf6fa748892d47130a1311fce5513f37/test.pvc.default.yaml` 3. Create a PVC from the template:`kubectl create -f test.pvc.default.yaml` 4. After a few seconds, check on your PVC: `kubectl get pvc` * You should see that after a few seconds, your PVC is `Bound` to a PV 5. Check the `storage-provisioner` logs **Output of `minikube logs` (if applicable)**: `minikube logs` did not seem to yield any pertinent debugging information, but the `storage-provisioner` pod logs did yield the following error message: ```bash $ kubectl logs -f storage-provisioner -n kube-system E0912 16:57:17.134782 1 controller.go:682] Error watching for provisioning success, can't provision for claim "test/s4rdfk-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" E0912 17:00:58.710095 1 controller.go:682] Error watching for provisioning success, can't provision for claim "test/spd9xt-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" ``` **Anything else do we need to know**: As a temporary manual workaround, the following seemed to work: ```bash # Edit to add the "list" verb to the "events" resource $ kubectl edit clusterrole -n kube-system system:persistent-volume-provisioner ```
1.0
storage-provisioner addon: kube-system:storage-provisioner cannot list events in the namespace - <!-- Thanks for filing an issue! Before hitting the button, please answer these questions.--> **Is this a BUG REPORT or FEATURE REQUEST?** (choose one): BUG REPORT <!-- If this is a BUG REPORT, please: - Fill in as much of the template below as you can. If you leave out information, we can't help you as well. If this is a FEATURE REQUEST, please: - Describe *in detail* the feature/behavior/change you'd like to see. In both cases, be ready for followup questions, and please respond in a timely manner. If we can't reproduce a bug or think a feature already exists, we might close your issue. If we're wrong, PLEASE feel free to reopen it and explain why. --> Please provide the following details: **Environment**: minikube v0.28.2 on macOS 10.13.2 + VirtualBox **Minikube version** (use `minikube version`): minikube version: v0.28.2 - **OS** (e.g. from /etc/os-release): macOSX 10.13.2 (`/etc/os-release: No such file or directory`) - **VM Driver** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep DriverName`): `"DriverName": "virtualbox"` - **ISO version** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep -i ISO` or `minikube ssh cat /etc/VERSION`): `"Boot2DockerURL": "file:///Users/lambert8/.minikube/cache/iso/minikube-v0.28.1.iso"` - **Install tools**: helm/tiller - **Others**: **What happened**: My minikube cluster (created yesterday) with the `storage-provisioner` addon enabled. At first, I was apparently in a bad state: `kubectl describe pvc` yielded the familiar "the provisioner hasn't worked yet" warning message, and the provisioner logs were complaining about some unknown connectivity issue: ```bash $ kubectl get sc NAME PROVISIONER AGE standard (default) k8s.io/minikube-hostpath 40m $ kubectl get pvc,pv -n test NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE pvc/shr86q-cloudcmd Pending standard 20s pvc/sz8kmm-cloudcmd Pending standard 1m $ kubectl describe pvc/shr86q-cloudcmd -n test Name: shr86q-cloudcmd Namespace: test StorageClass: standard Status: Pending Volume: Labels: name=shr86q-cloudcmd service=cloudcmd stack=shr86q Annotations: volume.beta.kubernetes.io/storage-provisioner=k8s.io/minikube-hostpath Finalizers: [kubernetes.io/pvc-protection] Capacity: Access Modes: Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal ExternalProvisioning 14s (x4 over 35s) persistentvolume-controller waiting for a volume to be created, either by external provisioner "k8s.io/minikube-hostpath" or manually created by system administrator $ kubectl get pods -n kube-system NAME READY STATUS RESTARTS AGE etcd-minikube 1/1 Running 0 40m kube-addon-manager-minikube 1/1 Running 0 41m kube-apiserver-minikube 1/1 Running 0 41m kube-controller-manager-minikube 1/1 Running 0 41m kube-scheduler-minikube 1/1 Running 0 41m kubernetes-dashboard-5498ccf677-5r975 0/1 CrashLoopBackOff 11 41m storage-provisioner 0/1 CrashLoopBackOff 11 41m $ kubectl logs -f storage-provisioner -n kube-system F0912 16:43:12.951200 1 main.go:37] Error getting server version: Get https://10.96.0.1:443/version: dial tcp 10.96.0.1:443: i/o timeout ``` Upon deleting and recreating the minikube cluster (to clear the bad state), when repeating the test case I saw the following in the logs: ```bash $ kubectl logs -f storage-provisioner -n kube-system Error watching for provisioning success, can't provision for claim "test/s4rdfk-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" Error watching for provisioning success, can't provision for claim "test/spd9xt-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" ``` The provisioner did still create a PV and Bound the PVC to it in such cases: ```bash $ kubectl get pvc -n test NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE s4rdfk-cloudcmd Bound pvc-e794fa3e-b6ac-11e8-8044-080027add193 1Mi RWX standard 12m spd9xt-cloudcmd Bound pvc-6baa04ab-b6ad-11e8-8044-080027add193 1Mi RWX standard 8m src67q-cloudcmd Bound pvc-2243a82c-b6ae-11e8-8044-080027add193 1Mi RWX standard 3m ``` **What you expected to happen**: The provisioner shouldn't throw an error when provisioning was successful. **How to reproduce it** (as minimally and precisely as possible): 1. Bring up a fresh cluster with default addons enabled: `minikube start` 2. Fetch a test PVC template: `wget https://gist.githubusercontent.com/bodom0015/d920e22df8ff78ee05929d4c3ae736f8/raw/edccc530bf6fa748892d47130a1311fce5513f37/test.pvc.default.yaml` 3. Create a PVC from the template:`kubectl create -f test.pvc.default.yaml` 4. After a few seconds, check on your PVC: `kubectl get pvc` * You should see that after a few seconds, your PVC is `Bound` to a PV 5. Check the `storage-provisioner` logs **Output of `minikube logs` (if applicable)**: `minikube logs` did not seem to yield any pertinent debugging information, but the `storage-provisioner` pod logs did yield the following error message: ```bash $ kubectl logs -f storage-provisioner -n kube-system E0912 16:57:17.134782 1 controller.go:682] Error watching for provisioning success, can't provision for claim "test/s4rdfk-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" E0912 17:00:58.710095 1 controller.go:682] Error watching for provisioning success, can't provision for claim "test/spd9xt-cloudcmd": events is forbidden: User "system:serviceaccount:kube-system:storage-provisioner" cannot list events in the namespace "test" ``` **Anything else do we need to know**: As a temporary manual workaround, the following seemed to work: ```bash # Edit to add the "list" verb to the "events" resource $ kubectl edit clusterrole -n kube-system system:persistent-volume-provisioner ```
non_test
storage provisioner addon kube system storage provisioner cannot list events in the namespace is this a bug report or feature request choose one bug report if this is a bug report please fill in as much of the template below as you can if you leave out information we can t help you as well if this is a feature request please describe in detail the feature behavior change you d like to see in both cases be ready for followup questions and please respond in a timely manner if we can t reproduce a bug or think a feature already exists we might close your issue if we re wrong please feel free to reopen it and explain why please provide the following details environment minikube on macos virtualbox minikube version use minikube version minikube version os e g from etc os release macosx etc os release no such file or directory vm driver e g cat minikube machines minikube config json grep drivername drivername virtualbox iso version e g cat minikube machines minikube config json grep i iso or minikube ssh cat etc version file users minikube cache iso minikube iso install tools helm tiller others what happened my minikube cluster created yesterday with the storage provisioner addon enabled at first i was apparently in a bad state kubectl describe pvc yielded the familiar the provisioner hasn t worked yet warning message and the provisioner logs were complaining about some unknown connectivity issue bash kubectl get sc name provisioner age standard default io minikube hostpath kubectl get pvc pv n test name status volume capacity access modes storageclass age pvc cloudcmd pending standard pvc cloudcmd pending standard kubectl describe pvc cloudcmd n test name cloudcmd namespace test storageclass standard status pending volume labels name cloudcmd service cloudcmd stack annotations volume beta kubernetes io storage provisioner io minikube hostpath finalizers capacity access modes events type reason age from message normal externalprovisioning over persistentvolume controller waiting for a volume to be created either by external provisioner io minikube hostpath or manually created by system administrator kubectl get pods n kube system name ready status restarts age etcd minikube running kube addon manager minikube running kube apiserver minikube running kube controller manager minikube running kube scheduler minikube running kubernetes dashboard crashloopbackoff storage provisioner crashloopbackoff kubectl logs f storage provisioner n kube system main go error getting server version get dial tcp i o timeout upon deleting and recreating the minikube cluster to clear the bad state when repeating the test case i saw the following in the logs bash kubectl logs f storage provisioner n kube system error watching for provisioning success can t provision for claim test cloudcmd events is forbidden user system serviceaccount kube system storage provisioner cannot list events in the namespace test error watching for provisioning success can t provision for claim test cloudcmd events is forbidden user system serviceaccount kube system storage provisioner cannot list events in the namespace test the provisioner did still create a pv and bound the pvc to it in such cases bash kubectl get pvc n test name status volume capacity access modes storageclass age cloudcmd bound pvc rwx standard cloudcmd bound pvc rwx standard cloudcmd bound pvc rwx standard what you expected to happen the provisioner shouldn t throw an error when provisioning was successful how to reproduce it as minimally and precisely as possible bring up a fresh cluster with default addons enabled minikube start fetch a test pvc template wget create a pvc from the template kubectl create f test pvc default yaml after a few seconds check on your pvc kubectl get pvc you should see that after a few seconds your pvc is bound to a pv check the storage provisioner logs output of minikube logs if applicable minikube logs did not seem to yield any pertinent debugging information but the storage provisioner pod logs did yield the following error message bash kubectl logs f storage provisioner n kube system controller go error watching for provisioning success can t provision for claim test cloudcmd events is forbidden user system serviceaccount kube system storage provisioner cannot list events in the namespace test controller go error watching for provisioning success can t provision for claim test cloudcmd events is forbidden user system serviceaccount kube system storage provisioner cannot list events in the namespace test anything else do we need to know as a temporary manual workaround the following seemed to work bash edit to add the list verb to the events resource kubectl edit clusterrole n kube system system persistent volume provisioner
0
333,782
29,807,609,897
IssuesEvent
2023-06-16 12:52:26
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
opened
[CI] SearchSourceBuilderTests testFromXContent failing
:Search/Search >test-failure Team:Search
**Build scan:** https://gradle-enterprise.elastic.co/s/lq3iggq2c5w7y/tests/:server:test/org.elasticsearch.search.builder.SearchSourceBuilderTests/testFromXContent **Reproduction line:** ``` gradlew ':server:test' --tests "org.elasticsearch.search.builder.SearchSourceBuilderTests.testFromXContent" -Dtests.seed=418ECB21FC1452B8 -Dtests.locale=vi -Dtests.timezone=Brazil/DeNoronha -Druntime.java=20 ``` **Applicable branches:** main **Reproduces locally?:** Yes **Failure history:** https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.search.builder.SearchSourceBuilderTests&tests.test=testFromXContent **Failure excerpt:** ``` org.elasticsearch.xcontent.XContentParseException: [5:5] malformed query within the [sub_searches] field; found START_ARRAY at __randomizedtesting.SeedInfo.seed([418ECB21FC1452B8:60E6FE3975B3B262]:0) at org.elasticsearch.search.builder.SearchSourceBuilder.parseXContent(SearchSourceBuilder.java:1568) at org.elasticsearch.search.builder.SearchSourceBuilder.parseXContent(SearchSourceBuilder.java:1258) at org.elasticsearch.search.builder.SearchSourceBuilderTests.assertParseSearchSource(SearchSourceBuilderTests.java:104) at org.elasticsearch.search.builder.SearchSourceBuilderTests.testFromXContent(SearchSourceBuilderTests.java:80) at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) at java.lang.reflect.Method.invoke(Method.java:578) at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1758) at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:946) at com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(RandomizedRunner.java:982) at com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(RandomizedRunner.java:996) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:48) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:45) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:843) at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:490) at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:955) at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:840) at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:891) at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:902) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:38) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:47) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.lambda$forkTimeoutingTask$0(ThreadLeakControl.java:850) at java.lang.Thread.run(Thread.java:1623) ```
1.0
[CI] SearchSourceBuilderTests testFromXContent failing - **Build scan:** https://gradle-enterprise.elastic.co/s/lq3iggq2c5w7y/tests/:server:test/org.elasticsearch.search.builder.SearchSourceBuilderTests/testFromXContent **Reproduction line:** ``` gradlew ':server:test' --tests "org.elasticsearch.search.builder.SearchSourceBuilderTests.testFromXContent" -Dtests.seed=418ECB21FC1452B8 -Dtests.locale=vi -Dtests.timezone=Brazil/DeNoronha -Druntime.java=20 ``` **Applicable branches:** main **Reproduces locally?:** Yes **Failure history:** https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.search.builder.SearchSourceBuilderTests&tests.test=testFromXContent **Failure excerpt:** ``` org.elasticsearch.xcontent.XContentParseException: [5:5] malformed query within the [sub_searches] field; found START_ARRAY at __randomizedtesting.SeedInfo.seed([418ECB21FC1452B8:60E6FE3975B3B262]:0) at org.elasticsearch.search.builder.SearchSourceBuilder.parseXContent(SearchSourceBuilder.java:1568) at org.elasticsearch.search.builder.SearchSourceBuilder.parseXContent(SearchSourceBuilder.java:1258) at org.elasticsearch.search.builder.SearchSourceBuilderTests.assertParseSearchSource(SearchSourceBuilderTests.java:104) at org.elasticsearch.search.builder.SearchSourceBuilderTests.testFromXContent(SearchSourceBuilderTests.java:80) at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) at java.lang.reflect.Method.invoke(Method.java:578) at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1758) at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:946) at com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(RandomizedRunner.java:982) at com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(RandomizedRunner.java:996) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:48) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:45) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:843) at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:490) at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:955) at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:840) at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:891) at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:902) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:38) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:47) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.lambda$forkTimeoutingTask$0(ThreadLeakControl.java:850) at java.lang.Thread.run(Thread.java:1623) ```
test
searchsourcebuildertests testfromxcontent failing build scan reproduction line gradlew server test tests org elasticsearch search builder searchsourcebuildertests testfromxcontent dtests seed dtests locale vi dtests timezone brazil denoronha druntime java applicable branches main reproduces locally yes failure history failure excerpt org elasticsearch xcontent xcontentparseexception malformed query within the field found start array at randomizedtesting seedinfo seed at org elasticsearch search builder searchsourcebuilder parsexcontent searchsourcebuilder java at org elasticsearch search builder searchsourcebuilder parsexcontent searchsourcebuilder java at org elasticsearch search builder searchsourcebuildertests assertparsesearchsource searchsourcebuildertests java at org elasticsearch search builder searchsourcebuildertests testfromxcontent searchsourcebuildertests java at jdk internal reflect directmethodhandleaccessor invoke directmethodhandleaccessor java at java lang reflect method invoke method java at com carrotsearch randomizedtesting randomizedrunner invoke randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testrulesetupteardownchained evaluate testrulesetupteardownchained java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at org apache lucene tests util testrulethreadandtestname evaluate testrulethreadandtestname java at org apache lucene tests util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene tests util testrulemarkfailure evaluate testrulemarkfailure java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting threadleakcontrol statementrunner run threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol forktimeoutingtask threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol evaluate threadleakcontrol java at com carrotsearch randomizedtesting randomizedrunner runsingletest randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testrulestoreclassname evaluate testrulestoreclassname java at com carrotsearch randomizedtesting rules noshadowingoroverridesonmethodsrule evaluate noshadowingoroverridesonmethodsrule java at com carrotsearch randomizedtesting rules noshadowingoroverridesonmethodsrule evaluate noshadowingoroverridesonmethodsrule java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testruleassertionsrequired evaluate testruleassertionsrequired java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at org apache lucene tests util testrulemarkfailure evaluate testrulemarkfailure java at org apache lucene tests util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene tests util testruleignoretestsuites evaluate testruleignoretestsuites java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting threadleakcontrol statementrunner run threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol lambda forktimeoutingtask threadleakcontrol java at java lang thread run thread java
1
162,257
12,641,065,149
IssuesEvent
2020-06-16 05:05:36
istio/istio
https://api.github.com/repos/istio/istio
closed
Various (related) issues with remote clusters in 1.5.0-beta.5
area/environments community/testing days kind/docs lifecycle/needs-escalation lifecycle/stale
**Bug description** I'm following documentation in https://preliminary.istio.io/docs/setup/install/multicluster/shared-vpn/, and ran into various issues, both with documentation, and with deployment of a remote cluster in the same VPC/network as the control-plane cluster. This might need to be broken into multiple tickets, but many of these issues seem related. 1. The `--set gateways.enabled=false` variable appears to be depricated, or at least `istioctl` spits out `Error: failed to generate tree from the set overlay, error: bad path=value: gateways.enabled=false`. Setting `values.gateways.enabled=false` appears to be accepted by `istioctl`, but the ingressgateway is still created. What key/value pair needs to be set to *not* create an ingress gateway? 2. Documentation references a remote pilot address, policy address, and telemetry address, but that should probably be consolidated into a single istiod address, right? For now I'm using the control cluster's istiod pod IP address for all three values. 3. Despite the `--set values.global.createRemoteSvcEndpoints=true` and `--set values.global.remotePilotCreateSvcEndpoint=true` flags being set, the `istio-pilot.istio-system service` fails to create after doing an `istioctl manifest apply`. Doing an `istioctl manifest generate` and running the output through `kubectl apply -f` yields the issue: `The Service "istio-pilot" is invalid: spec.clusterIP: Invalid value: "": field is immutable`. Looking at the yaml, it appears that the `istio-pilot.istio-system` is defined twice, once as a headless service for `istiod` from manifests/base/templates/services, and once from manifests/istio-control/istio-discovery/templates/service.yaml. 4. The `istiod` pod doesn't ever come up properly, but for other reasons. It loops over an error like this ``` Error: failed to create discovery service: mesh: 1 error occurred: * invalid discovery address: unable to split "10.234.43.201": address 10.234.43.201: missing port in address ``` I believe this is because manifests/istio-control/istio-discovery/templates/configmap.yaml:284 (or so) reads something like `discoveryAddress: {{ .Values.global.remotePilotAddress }}` and should have a port at the end... something like ``` {{- if .Values.global.controlPlaneSecurityEnabled }} discoveryAddress: {{ .Values.global.remotePilotAddress }}:15011 {{- else }} discoveryAddress: {{ .Values.global.remotePilotAddress }}:15010 {{- end }} ``` Maybe? **Expected behavior** A functional remote cluster? **Steps to reproduce the bug** Follow https://preliminary.istio.io/docs/setup/install/multicluster/shared-vpn/ **Version (include the output of `istioctl version --remote` and `kubectl version` and `helm version` if you used Helm)** ``` $ ./bin/istioctl version --remote client version: 1.5.0-beta.5 control plane version: 1.5.0-beta.5 data plane version: 1.5.0-beta.5 (2 proxies) ``` ``` $ kubectl version Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.0", GitCommit:"2bd9643cee5b3b3a5ecbd3af49d09018f0773c77", GitTreeState:"clean", BuildDate:"2019-09-18T14:36:53Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"14+", GitVersion:"v1.14.9-eks-502bfb", GitCommit:"502bfb383169b124d87848f89e17a04b9fc1f6f0", GitTreeState:"clean", BuildDate:"2020-02-07T01:31:02Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} ``` **How was Istio installed?** Via `istioctl` **Environment where bug was observed (cloud vendor, OS, etc)** AWS, but also seen in GCP. Thanks in advance to anyone who pokes at this!
1.0
Various (related) issues with remote clusters in 1.5.0-beta.5 - **Bug description** I'm following documentation in https://preliminary.istio.io/docs/setup/install/multicluster/shared-vpn/, and ran into various issues, both with documentation, and with deployment of a remote cluster in the same VPC/network as the control-plane cluster. This might need to be broken into multiple tickets, but many of these issues seem related. 1. The `--set gateways.enabled=false` variable appears to be depricated, or at least `istioctl` spits out `Error: failed to generate tree from the set overlay, error: bad path=value: gateways.enabled=false`. Setting `values.gateways.enabled=false` appears to be accepted by `istioctl`, but the ingressgateway is still created. What key/value pair needs to be set to *not* create an ingress gateway? 2. Documentation references a remote pilot address, policy address, and telemetry address, but that should probably be consolidated into a single istiod address, right? For now I'm using the control cluster's istiod pod IP address for all three values. 3. Despite the `--set values.global.createRemoteSvcEndpoints=true` and `--set values.global.remotePilotCreateSvcEndpoint=true` flags being set, the `istio-pilot.istio-system service` fails to create after doing an `istioctl manifest apply`. Doing an `istioctl manifest generate` and running the output through `kubectl apply -f` yields the issue: `The Service "istio-pilot" is invalid: spec.clusterIP: Invalid value: "": field is immutable`. Looking at the yaml, it appears that the `istio-pilot.istio-system` is defined twice, once as a headless service for `istiod` from manifests/base/templates/services, and once from manifests/istio-control/istio-discovery/templates/service.yaml. 4. The `istiod` pod doesn't ever come up properly, but for other reasons. It loops over an error like this ``` Error: failed to create discovery service: mesh: 1 error occurred: * invalid discovery address: unable to split "10.234.43.201": address 10.234.43.201: missing port in address ``` I believe this is because manifests/istio-control/istio-discovery/templates/configmap.yaml:284 (or so) reads something like `discoveryAddress: {{ .Values.global.remotePilotAddress }}` and should have a port at the end... something like ``` {{- if .Values.global.controlPlaneSecurityEnabled }} discoveryAddress: {{ .Values.global.remotePilotAddress }}:15011 {{- else }} discoveryAddress: {{ .Values.global.remotePilotAddress }}:15010 {{- end }} ``` Maybe? **Expected behavior** A functional remote cluster? **Steps to reproduce the bug** Follow https://preliminary.istio.io/docs/setup/install/multicluster/shared-vpn/ **Version (include the output of `istioctl version --remote` and `kubectl version` and `helm version` if you used Helm)** ``` $ ./bin/istioctl version --remote client version: 1.5.0-beta.5 control plane version: 1.5.0-beta.5 data plane version: 1.5.0-beta.5 (2 proxies) ``` ``` $ kubectl version Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.0", GitCommit:"2bd9643cee5b3b3a5ecbd3af49d09018f0773c77", GitTreeState:"clean", BuildDate:"2019-09-18T14:36:53Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"14+", GitVersion:"v1.14.9-eks-502bfb", GitCommit:"502bfb383169b124d87848f89e17a04b9fc1f6f0", GitTreeState:"clean", BuildDate:"2020-02-07T01:31:02Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} ``` **How was Istio installed?** Via `istioctl` **Environment where bug was observed (cloud vendor, OS, etc)** AWS, but also seen in GCP. Thanks in advance to anyone who pokes at this!
test
various related issues with remote clusters in beta bug description i m following documentation in and ran into various issues both with documentation and with deployment of a remote cluster in the same vpc network as the control plane cluster this might need to be broken into multiple tickets but many of these issues seem related the set gateways enabled false variable appears to be depricated or at least istioctl spits out error failed to generate tree from the set overlay error bad path value gateways enabled false setting values gateways enabled false appears to be accepted by istioctl but the ingressgateway is still created what key value pair needs to be set to not create an ingress gateway documentation references a remote pilot address policy address and telemetry address but that should probably be consolidated into a single istiod address right for now i m using the control cluster s istiod pod ip address for all three values despite the set values global createremotesvcendpoints true and set values global remotepilotcreatesvcendpoint true flags being set the istio pilot istio system service fails to create after doing an istioctl manifest apply doing an istioctl manifest generate and running the output through kubectl apply f yields the issue the service istio pilot is invalid spec clusterip invalid value field is immutable looking at the yaml it appears that the istio pilot istio system is defined twice once as a headless service for istiod from manifests base templates services and once from manifests istio control istio discovery templates service yaml the istiod pod doesn t ever come up properly but for other reasons it loops over an error like this error failed to create discovery service mesh error occurred invalid discovery address unable to split address missing port in address i believe this is because manifests istio control istio discovery templates configmap yaml or so reads something like discoveryaddress values global remotepilotaddress and should have a port at the end something like if values global controlplanesecurityenabled discoveryaddress values global remotepilotaddress else discoveryaddress values global remotepilotaddress end maybe expected behavior a functional remote cluster steps to reproduce the bug follow version include the output of istioctl version remote and kubectl version and helm version if you used helm bin istioctl version remote client version beta control plane version beta data plane version beta proxies kubectl version client version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux server version version info major minor gitversion eks gitcommit gittreestate clean builddate goversion compiler gc platform linux how was istio installed via istioctl environment where bug was observed cloud vendor os etc aws but also seen in gcp thanks in advance to anyone who pokes at this
1
119,056
12,013,330,812
IssuesEvent
2020-04-10 08:36:04
yuhanappdev/GameRecommendApp
https://api.github.com/repos/yuhanappdev/GameRecommendApp
opened
게임 추천을 위한 분류 세부 사항 정리
documentation
추천을 위해서는 게임을 세부적으로 분류하고 사용자가 선택한 세부 분류에 대한 가점을 줘야 한다. 그러기 위해서는 게임을 몇개의 구분으로 할지 명확하게 지정할 지 필요하다. 예를들면 장르(RPG, 시뮬레이션), 대상 연령, 그래픽(2d, 3d) 등등 의미있는 factor들을 발굴해야 한다.
1.0
게임 추천을 위한 분류 세부 사항 정리 - 추천을 위해서는 게임을 세부적으로 분류하고 사용자가 선택한 세부 분류에 대한 가점을 줘야 한다. 그러기 위해서는 게임을 몇개의 구분으로 할지 명확하게 지정할 지 필요하다. 예를들면 장르(RPG, 시뮬레이션), 대상 연령, 그래픽(2d, 3d) 등등 의미있는 factor들을 발굴해야 한다.
non_test
게임 추천을 위한 분류 세부 사항 정리 추천을 위해서는 게임을 세부적으로 분류하고 사용자가 선택한 세부 분류에 대한 가점을 줘야 한다 그러기 위해서는 게임을 몇개의 구분으로 할지 명확하게 지정할 지 필요하다 예를들면 장르 rpg 시뮬레이션 대상 연령 그래픽 등등 의미있는 factor들을 발굴해야 한다
0
26,567
20,253,692,619
IssuesEvent
2022-02-14 20:36:16
google/site-kit-wp
https://api.github.com/repos/google/site-kit-wp
closed
PHP tests broken on PHP 8 with WP latest
P0 Rollover Type: Infrastructure
## Bug Description https://github.com/google/site-kit-wp/runs/4963741256?check_suite_focus=true#step:11:11 ``` > phpunit PHP Warning: require_once(/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php): Failed to open stream: No such file or directory in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php on line 56 PHP Fatal error: Uncaught Error: Failed opening required '/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php' (include_path='.:/usr/share/php') in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php:56 Stack trace: #0 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/Util/FileLoader.php(57): include_once() #1 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/Util/FileLoader.php(45): PHPUnit\Util\FileLoader::load() #2 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(1058): PHPUnit\Util\FileLoader::checkAndLoad() #3 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(863): PHPUnit\TextUI\Command->handleBootstrap() #4 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(173): PHPUnit\TextUI\Command->handleArguments() #5 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(162): PHPUnit\TextUI\Command->run() #6 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/phpunit(61): PHPUnit\TextUI\Command::main() #7 /home/runner/work/site-kit-wp/site-kit-wp/vendor/bin/phpunit(120): include('...') #8 {main} thrown in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php on line 56 Warning: require_once(/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php): Failed to open stream: No such file or directory in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php on line 56 Fatal error: Uncaught Error: Failed opening required '/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php' (include_path='.:/usr/share/php') in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php:56 ``` --------------- _Do not alter or remove anything below. The following sections will be managed by moderators only._ ## Acceptance criteria * PHP tests should continue to run and pass on PHP 8 ## Implementation Brief * Update the version constraint in `composer.json` for PHPUnit to allow PHPUnit 8 (we cannot yet upgrade to v9 even though it's supported by the polyfills package due to deprecated use that needs to be addressed) * Remove old compatibility code loaded in the PHPUnit bootstrap which no longer exists in the latest version * Update PHPUnit lifecycle methods (setup/teardown) to use snake case variants for compatibility across PHPUnit versions (see https://github.com/Yoast/PHPUnit-Polyfills#option-1-yoastphpunitpolyfillstestcasestestcase) * Finish and merge https://github.com/google/site-kit-wp/pull/4730 ### Test Coverage * No change ## QA Brief * This is verifiable by observing the passing tests (and output) of the PHP Test jobs in GitHub actions * No further QA is needed ## Changelog entry * N/A
1.0
PHP tests broken on PHP 8 with WP latest - ## Bug Description https://github.com/google/site-kit-wp/runs/4963741256?check_suite_focus=true#step:11:11 ``` > phpunit PHP Warning: require_once(/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php): Failed to open stream: No such file or directory in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php on line 56 PHP Fatal error: Uncaught Error: Failed opening required '/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php' (include_path='.:/usr/share/php') in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php:56 Stack trace: #0 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/Util/FileLoader.php(57): include_once() #1 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/Util/FileLoader.php(45): PHPUnit\Util\FileLoader::load() #2 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(1058): PHPUnit\Util\FileLoader::checkAndLoad() #3 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(863): PHPUnit\TextUI\Command->handleBootstrap() #4 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(173): PHPUnit\TextUI\Command->handleArguments() #5 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/src/TextUI/Command.php(162): PHPUnit\TextUI\Command->run() #6 /home/runner/work/site-kit-wp/site-kit-wp/vendor/phpunit/phpunit/phpunit(61): PHPUnit\TextUI\Command::main() #7 /home/runner/work/site-kit-wp/site-kit-wp/vendor/bin/phpunit(120): include('...') #8 {main} thrown in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php on line 56 Warning: require_once(/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php): Failed to open stream: No such file or directory in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php on line 56 Fatal error: Uncaught Error: Failed opening required '/tmp/wordpress-tests-lib/includes/phpunit7/MockObject/Builder/NamespaceMatch.php' (include_path='.:/usr/share/php') in /home/runner/work/site-kit-wp/site-kit-wp/tests/phpunit/bootstrap.php:56 ``` --------------- _Do not alter or remove anything below. The following sections will be managed by moderators only._ ## Acceptance criteria * PHP tests should continue to run and pass on PHP 8 ## Implementation Brief * Update the version constraint in `composer.json` for PHPUnit to allow PHPUnit 8 (we cannot yet upgrade to v9 even though it's supported by the polyfills package due to deprecated use that needs to be addressed) * Remove old compatibility code loaded in the PHPUnit bootstrap which no longer exists in the latest version * Update PHPUnit lifecycle methods (setup/teardown) to use snake case variants for compatibility across PHPUnit versions (see https://github.com/Yoast/PHPUnit-Polyfills#option-1-yoastphpunitpolyfillstestcasestestcase) * Finish and merge https://github.com/google/site-kit-wp/pull/4730 ### Test Coverage * No change ## QA Brief * This is verifiable by observing the passing tests (and output) of the PHP Test jobs in GitHub actions * No further QA is needed ## Changelog entry * N/A
non_test
php tests broken on php with wp latest bug description phpunit php warning require once tmp wordpress tests lib includes mockobject builder namespacematch php failed to open stream no such file or directory in home runner work site kit wp site kit wp tests phpunit bootstrap php on line php fatal error uncaught error failed opening required tmp wordpress tests lib includes mockobject builder namespacematch php include path usr share php in home runner work site kit wp site kit wp tests phpunit bootstrap php stack trace home runner work site kit wp site kit wp vendor phpunit phpunit src util fileloader php include once home runner work site kit wp site kit wp vendor phpunit phpunit src util fileloader php phpunit util fileloader load home runner work site kit wp site kit wp vendor phpunit phpunit src textui command php phpunit util fileloader checkandload home runner work site kit wp site kit wp vendor phpunit phpunit src textui command php phpunit textui command handlebootstrap home runner work site kit wp site kit wp vendor phpunit phpunit src textui command php phpunit textui command handlearguments home runner work site kit wp site kit wp vendor phpunit phpunit src textui command php phpunit textui command run home runner work site kit wp site kit wp vendor phpunit phpunit phpunit phpunit textui command main home runner work site kit wp site kit wp vendor bin phpunit include main thrown in home runner work site kit wp site kit wp tests phpunit bootstrap php on line warning require once tmp wordpress tests lib includes mockobject builder namespacematch php failed to open stream no such file or directory in home runner work site kit wp site kit wp tests phpunit bootstrap php on line fatal error uncaught error failed opening required tmp wordpress tests lib includes mockobject builder namespacematch php include path usr share php in home runner work site kit wp site kit wp tests phpunit bootstrap php do not alter or remove anything below the following sections will be managed by moderators only acceptance criteria php tests should continue to run and pass on php implementation brief update the version constraint in composer json for phpunit to allow phpunit we cannot yet upgrade to even though it s supported by the polyfills package due to deprecated use that needs to be addressed remove old compatibility code loaded in the phpunit bootstrap which no longer exists in the latest version update phpunit lifecycle methods setup teardown to use snake case variants for compatibility across phpunit versions see finish and merge test coverage no change qa brief this is verifiable by observing the passing tests and output of the php test jobs in github actions no further qa is needed changelog entry n a
0
46,839
7,293,046,001
IssuesEvent
2018-02-25 09:41:24
Zierman/ICS372-02_Group1_Project1
https://api.github.com/repos/Zierman/ICS372-02_Group1_Project1
closed
Compleate Documentation
Documentation
### address package - [x] Address ### client package - [x] Cient - [x] Client.ID - [x] Client.Name - [x] ClientList ### currancy Package - [x] Currancy - [x] Dollar ### keyToken package - [x] Keyed - [x] KeyedList - [x] KeyToken - [x] NoKeyTokenFoundException ### phoneNumber Package - [x] PhoneNumber ### play package - [x] Play - [x] PlayList ### singleton package - [x] Singleton ### storage package - [x] Loadable - [x] Saveable - [x] FileIO ### theater package - [x] Theater ### uiCommands package @tnovakgh - [x] `AddCustomer` - [x] `RemoveCustomer` - [x] `AddCreditCard` - [x] `RemoveCreditCard` - [x] `ListAllCustomers` - [x] `Help` @Zierman - [x] `ExitApplication ` - [x] `AddClient` - [x] `RemoveClient` - [x] `ListAllClients` - [x] `AddPlay` - [x] `ListAllPlays` - [x] `StoreData` - [x] `RetrieveData` ### userInterface package - [x] UI ### ownership package - [x] 'Owned'
1.0
Compleate Documentation - ### address package - [x] Address ### client package - [x] Cient - [x] Client.ID - [x] Client.Name - [x] ClientList ### currancy Package - [x] Currancy - [x] Dollar ### keyToken package - [x] Keyed - [x] KeyedList - [x] KeyToken - [x] NoKeyTokenFoundException ### phoneNumber Package - [x] PhoneNumber ### play package - [x] Play - [x] PlayList ### singleton package - [x] Singleton ### storage package - [x] Loadable - [x] Saveable - [x] FileIO ### theater package - [x] Theater ### uiCommands package @tnovakgh - [x] `AddCustomer` - [x] `RemoveCustomer` - [x] `AddCreditCard` - [x] `RemoveCreditCard` - [x] `ListAllCustomers` - [x] `Help` @Zierman - [x] `ExitApplication ` - [x] `AddClient` - [x] `RemoveClient` - [x] `ListAllClients` - [x] `AddPlay` - [x] `ListAllPlays` - [x] `StoreData` - [x] `RetrieveData` ### userInterface package - [x] UI ### ownership package - [x] 'Owned'
non_test
compleate documentation address package address client package cient client id client name clientlist currancy package currancy dollar keytoken package keyed keyedlist keytoken nokeytokenfoundexception phonenumber package phonenumber play package play playlist singleton package singleton storage package loadable saveable fileio theater package theater uicommands package tnovakgh addcustomer removecustomer addcreditcard removecreditcard listallcustomers help zierman exitapplication addclient removeclient listallclients addplay listallplays storedata retrievedata userinterface package ui ownership package owned
0
48,751
5,969,001,387
IssuesEvent
2017-05-30 19:19:33
arosini/wildstyle-generator
https://api.github.com/repos/arosini/wildstyle-generator
closed
Devise a better strategy for testing randomess
spike test
Many of the value generators claim randomness but this is not verified in tests. It would be nice to able to verify the distribution of values for random chances is somewhat uniform.
1.0
Devise a better strategy for testing randomess - Many of the value generators claim randomness but this is not verified in tests. It would be nice to able to verify the distribution of values for random chances is somewhat uniform.
test
devise a better strategy for testing randomess many of the value generators claim randomness but this is not verified in tests it would be nice to able to verify the distribution of values for random chances is somewhat uniform
1
67,798
17,080,375,495
IssuesEvent
2021-07-08 03:40:24
infinyon/fluvio
https://api.github.com/repos/infinyon/fluvio
closed
development build fails for K8
build-release priority/blocked
```make TEST_ARG_DEVELOP=--develop smoke-test-k8``` This result in: ``` thread 'main' panicked at 'Failed to install k8 cluster: InstallK8(UnableToDetectService)', tests/runner/src/utils/setup/environment/k8.rs:56:14 ```
1.0
development build fails for K8 - ```make TEST_ARG_DEVELOP=--develop smoke-test-k8``` This result in: ``` thread 'main' panicked at 'Failed to install k8 cluster: InstallK8(UnableToDetectService)', tests/runner/src/utils/setup/environment/k8.rs:56:14 ```
non_test
development build fails for make test arg develop develop smoke test this result in thread main panicked at failed to install cluster unabletodetectservice tests runner src utils setup environment rs
0
72,359
19,187,707,715
IssuesEvent
2021-12-05 13:40:32
minetest/minetest
https://api.github.com/repos/minetest/minetest
closed
comparison of integer expressions of different signedness in src/client/content_cao.cpp
Bug @ Build Low priority
##### Minetest version Commit 1dc1305ada07da8c2a278b46a34d58af86184af9 ##### OS / Hardware Operating system: Debian GNU/Linux CPU: Intel(R) Core(TM) Duo CPU T2400 @ 1.83GHz ##### Summary During a build, I get the output: ``` src/client/content_cao.cpp: In member function ‘virtual void GenericCAO::addToScene(ITextureSource*, irr::scene::ISceneManager*)’: src/client/content_cao.cpp:853:22: warning: comparison of integer expressions of different signedness: ‘irr::s32’ {aka ‘int’} and ‘irr::u32’ {aka ‘unsigned int’} [-Wsign-compare] for (s32 i = 1; i < mat_count; i++) { ``` I believe the `s32` should be `u32` here. ##### Steps to reproduce 1. Build commit 1dc1305ada07da8c2a278b46a34d58af86184af9. 2. Wait and see.
1.0
comparison of integer expressions of different signedness in src/client/content_cao.cpp - ##### Minetest version Commit 1dc1305ada07da8c2a278b46a34d58af86184af9 ##### OS / Hardware Operating system: Debian GNU/Linux CPU: Intel(R) Core(TM) Duo CPU T2400 @ 1.83GHz ##### Summary During a build, I get the output: ``` src/client/content_cao.cpp: In member function ‘virtual void GenericCAO::addToScene(ITextureSource*, irr::scene::ISceneManager*)’: src/client/content_cao.cpp:853:22: warning: comparison of integer expressions of different signedness: ‘irr::s32’ {aka ‘int’} and ‘irr::u32’ {aka ‘unsigned int’} [-Wsign-compare] for (s32 i = 1; i < mat_count; i++) { ``` I believe the `s32` should be `u32` here. ##### Steps to reproduce 1. Build commit 1dc1305ada07da8c2a278b46a34d58af86184af9. 2. Wait and see.
non_test
comparison of integer expressions of different signedness in src client content cao cpp minetest version commit os hardware operating system debian gnu linux cpu intel r core tm duo cpu summary during a build i get the output src client content cao cpp in member function ‘virtual void genericcao addtoscene itexturesource irr scene iscenemanager ’ src client content cao cpp warning comparison of integer expressions of different signedness ‘irr ’ aka ‘int’ and ‘irr ’ aka ‘unsigned int’ for i i mat count i i believe the should be here steps to reproduce build commit wait and see
0
32,856
6,130,797,074
IssuesEvent
2017-06-24 09:09:54
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
Create cookbooks / playbooks / cheatsheets for common use cases and scenarios
kind/documentation priority/important-soon sig/docs
Deployment, troubleshooting, etc.
1.0
Create cookbooks / playbooks / cheatsheets for common use cases and scenarios - Deployment, troubleshooting, etc.
non_test
create cookbooks playbooks cheatsheets for common use cases and scenarios deployment troubleshooting etc
0
30,580
11,839,663,533
IssuesEvent
2020-03-23 17:30:57
BrianMcDonaldWS/deck.gl
https://api.github.com/repos/BrianMcDonaldWS/deck.gl
opened
CVE-2019-6284 (Medium) detected in node-sass-v4.13.1
security vulnerability
## CVE-2019-6284 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sassv4.13.1</b></p></summary> <p> <p>:rainbow: Node.js bindings to libsass</p> <p>Library home page: <a href=https://github.com/sass/node-sass.git>https://github.com/sass/node-sass.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/BrianMcDonaldWS/deck.gl/commit/67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87">67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Library Source Files (66)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /deck.gl/website/node_modules/node-sass/src/sass_types/number.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/emitter.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/color.h - /deck.gl/website/node_modules/node-sass/src/sass_context_wrapper.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/parser.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/ast.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/operation.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/bind.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/emitter.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/error_handling.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/cssize.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/factory.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/context.cpp - /deck.gl/website/node_modules/node-sass/src/sass_types/list.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/inspect.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/values.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/expand.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/util.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/parser.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/ast.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/list.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/custom_importer_bridge.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/to_value.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/operators.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/prelexer.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/boolean.h - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/null.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/eval.cpp - /deck.gl/website/node_modules/node-sass/src/sass_types/color.cpp - /deck.gl/website/node_modules/node-sass/src/custom_function_bridge.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/operators.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/to_value.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/functions.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/sass.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/to_c.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/output.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/constants.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/eval.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/ast_def_macros.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/extend.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/cssize.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/callback_bridge.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/functions.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/expand.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/map.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_context_wrapper.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/debugger.hpp - /deck.gl/website/node_modules/node-sass/src/custom_importer_bridge.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/inspect.hpp - /deck.gl/website/node_modules/node-sass/src/binding.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/ast_fwd_decl.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/check_nesting.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/value.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/backtrace.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/util.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/boolean.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/check_nesting.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/file.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/error_handling.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/sass_value_wrapper.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/sass_values.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/sass_context.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/context.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/prelexer.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/constants.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/string.cpp </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::alternatives in prelexer.hpp. <p>Publish Date: 2019-01-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6284>CVE-2019-6284</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284</a></p> <p>Release Date: 2019-08-06</p> <p>Fix Resolution: LibSass - 3.6.0</p> </p> </details> <p></p>
True
CVE-2019-6284 (Medium) detected in node-sass-v4.13.1 - ## CVE-2019-6284 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sassv4.13.1</b></p></summary> <p> <p>:rainbow: Node.js bindings to libsass</p> <p>Library home page: <a href=https://github.com/sass/node-sass.git>https://github.com/sass/node-sass.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/BrianMcDonaldWS/deck.gl/commit/67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87">67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Library Source Files (66)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /deck.gl/website/node_modules/node-sass/src/sass_types/number.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/emitter.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/color.h - /deck.gl/website/node_modules/node-sass/src/sass_context_wrapper.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/parser.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/ast.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/operation.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/bind.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/emitter.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/error_handling.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/cssize.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/factory.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/context.cpp - /deck.gl/website/node_modules/node-sass/src/sass_types/list.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/inspect.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/values.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/expand.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/util.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/parser.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/ast.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/list.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/custom_importer_bridge.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/to_value.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/operators.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/prelexer.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/boolean.h - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/null.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/eval.cpp - /deck.gl/website/node_modules/node-sass/src/sass_types/color.cpp - /deck.gl/website/node_modules/node-sass/src/custom_function_bridge.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/operators.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/to_value.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/functions.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/sass.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/to_c.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/output.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/constants.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/eval.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/ast_def_macros.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/extend.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/cssize.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/callback_bridge.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/functions.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/expand.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/map.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_context_wrapper.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/debugger.hpp - /deck.gl/website/node_modules/node-sass/src/custom_importer_bridge.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/inspect.hpp - /deck.gl/website/node_modules/node-sass/src/binding.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/ast_fwd_decl.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/check_nesting.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/value.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/backtrace.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/util.hpp - /deck.gl/website/node_modules/node-sass/src/sass_types/boolean.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/check_nesting.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/file.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/error_handling.hpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/sass_value_wrapper.h - /deck.gl/website/node_modules/node-sass/src/libsass/src/sass_values.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/sass_context.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/libsass/src/context.hpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/prelexer.cpp - /deck.gl/website/node_modules/node-sass/src/libsass/src/constants.cpp - /deck.gl/website-gatsby/node_modules/node-sass/src/sass_types/string.cpp </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::alternatives in prelexer.hpp. <p>Publish Date: 2019-01-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6284>CVE-2019-6284</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284</a></p> <p>Release Date: 2019-08-06</p> <p>Fix Resolution: LibSass - 3.6.0</p> </p> </details> <p></p>
non_test
cve medium detected in node sass cve medium severity vulnerability vulnerable library node rainbow node js bindings to libsass library home page a href found in head commit a href library source files the source files were matched to this source library based on a best effort match source libraries are selected from a list of probable public libraries deck gl website node modules node sass src sass types number cpp deck gl website node modules node sass src libsass src emitter hpp deck gl website node modules node sass src sass types color h deck gl website node modules node sass src sass context wrapper h deck gl website node modules node sass src libsass src parser hpp deck gl website node modules node sass src libsass src ast hpp deck gl website node modules node sass src libsass src operation hpp deck gl website node modules node sass src libsass src bind cpp deck gl website gatsby node modules node sass src libsass src emitter cpp deck gl website gatsby node modules node sass src libsass src error handling cpp deck gl website gatsby node modules node sass src libsass src cssize hpp deck gl website node modules node sass src sass types factory cpp deck gl website gatsby node modules node sass src libsass src context cpp deck gl website node modules node sass src sass types list h deck gl website node modules node sass src libsass src inspect cpp deck gl website node modules node sass src libsass src values cpp deck gl website gatsby node modules node sass src libsass src expand cpp deck gl website gatsby node modules node sass src libsass src util cpp deck gl website node modules node sass src libsass src parser cpp deck gl website node modules node sass src libsass src ast cpp deck gl website gatsby node modules node sass src sass types list cpp deck gl website gatsby node modules node sass src custom importer bridge cpp deck gl website node modules node sass src libsass src to value hpp deck gl website node modules node sass src libsass src operators cpp deck gl website gatsby node modules node sass src libsass src prelexer hpp deck gl website node modules node sass src sass types boolean h deck gl website gatsby node modules node sass src sass types null cpp deck gl website gatsby node modules node sass src libsass src eval cpp deck gl website node modules node sass src sass types color cpp deck gl website node modules node sass src custom function bridge cpp deck gl website node modules node sass src libsass src operators hpp deck gl website gatsby node modules node sass src libsass src to value cpp deck gl website node modules node sass src libsass src functions cpp deck gl website node modules node sass src libsass src sass cpp deck gl website node modules node sass src libsass src to c cpp deck gl website gatsby node modules node sass src libsass src output cpp deck gl website node modules node sass src libsass src constants hpp deck gl website gatsby node modules node sass src libsass src eval hpp deck gl website gatsby node modules node sass src libsass src ast def macros hpp deck gl website node modules node sass src libsass src extend cpp deck gl website node modules node sass src libsass src cssize cpp deck gl website gatsby node modules node sass src callback bridge h deck gl website node modules node sass src libsass src functions hpp deck gl website gatsby node modules node sass src libsass src expand hpp deck gl website node modules node sass src sass types map cpp deck gl website gatsby node modules node sass src sass context wrapper cpp deck gl website node modules node sass src libsass src debugger hpp deck gl website node modules node sass src custom importer bridge h deck gl website node modules node sass src libsass src inspect hpp deck gl website node modules node sass src binding cpp deck gl website node modules node sass src libsass src ast fwd decl hpp deck gl website node modules node sass src libsass src check nesting hpp deck gl website gatsby node modules node sass src sass types value h deck gl website node modules node sass src libsass src backtrace cpp deck gl website node modules node sass src libsass src util hpp deck gl website node modules node sass src sass types boolean cpp deck gl website node modules node sass src libsass src check nesting cpp deck gl website gatsby node modules node sass src libsass src file cpp deck gl website gatsby node modules node sass src libsass src error handling hpp deck gl website gatsby node modules node sass src sass types sass value wrapper h deck gl website node modules node sass src libsass src sass values cpp deck gl website gatsby node modules node sass src libsass src sass context cpp deck gl website gatsby node modules node sass src libsass src context hpp deck gl website node modules node sass src libsass src prelexer cpp deck gl website node modules node sass src libsass src constants cpp deck gl website gatsby node modules node sass src sass types string cpp vulnerability details in libsass a heap based buffer over read exists in sass prelexer alternatives in prelexer hpp publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution libsass
0
164,285
25,944,818,317
IssuesEvent
2022-12-16 22:50:04
Esri/calcite-components
https://api.github.com/repos/Esri/calcite-components
closed
Split Button: Rename `outline` appearance value to `outline-fill`
enhancement breaking change 4 - verified Calcite (design)
### Description To improve clarity and consistency across `appearance` properties, this would follow the pattern being proposed to Button, Action and FAB. <img width="890" alt="image" src="https://user-images.githubusercontent.com/29716057/206322636-07480f9b-a921-4b28-8b67-75718f23b460.png"> <img width="1307" alt="image" src="https://user-images.githubusercontent.com/29716057/206067744-ec07ec49-07f9-4140-9d05-3d2b3b895825.png"> ### Acceptance Criteria appearance values = `solid (default) | outline | outline-fill | transparent` ### Relevant Info _No response_ ### Which Component Split Button ### Example Use Case _No response_ ### Esri team Calcite (design)
1.0
Split Button: Rename `outline` appearance value to `outline-fill` - ### Description To improve clarity and consistency across `appearance` properties, this would follow the pattern being proposed to Button, Action and FAB. <img width="890" alt="image" src="https://user-images.githubusercontent.com/29716057/206322636-07480f9b-a921-4b28-8b67-75718f23b460.png"> <img width="1307" alt="image" src="https://user-images.githubusercontent.com/29716057/206067744-ec07ec49-07f9-4140-9d05-3d2b3b895825.png"> ### Acceptance Criteria appearance values = `solid (default) | outline | outline-fill | transparent` ### Relevant Info _No response_ ### Which Component Split Button ### Example Use Case _No response_ ### Esri team Calcite (design)
non_test
split button rename outline appearance value to outline fill description to improve clarity and consistency across appearance properties this would follow the pattern being proposed to button action and fab img width alt image src img width alt image src acceptance criteria appearance values solid default outline outline fill transparent relevant info no response which component split button example use case no response esri team calcite design
0
64,978
7,851,850,783
IssuesEvent
2018-06-20 13:04:35
CodeWarriorsOrganization/CodeWarriorsFinalYearProject
https://api.github.com/repos/CodeWarriorsOrganization/CodeWarriorsFinalYearProject
closed
LS0003/T0003.2 - Design a Service to handle request( Priority-1 )
design service
### User Story : > AS a player, I NEED the change in share prices to be influenced by, Sector Trend Market Component: > SO THAT I can get an idea about how the sector market sentiments influence the share prices. ### Task : > **Design a Service to handle request**
1.0
LS0003/T0003.2 - Design a Service to handle request( Priority-1 ) - ### User Story : > AS a player, I NEED the change in share prices to be influenced by, Sector Trend Market Component: > SO THAT I can get an idea about how the sector market sentiments influence the share prices. ### Task : > **Design a Service to handle request**
non_test
design a service to handle request priority user story as a player i need the change in share prices to be influenced by sector trend market component so that i can get an idea about how the sector market sentiments influence the share prices task design a service to handle request
0
210,945
23,778,900,131
IssuesEvent
2022-09-02 01:00:55
billmcchesney1/jazz
https://api.github.com/repos/billmcchesney1/jazz
opened
WS-2022-0280 (Medium) detected in moment-timezone-0.5.32.tgz
security vulnerability
## WS-2022-0280 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-timezone-0.5.32.tgz</b></p></summary> <p>Parse and display moments in any timezone.</p> <p>Library home page: <a href="https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.32.tgz">https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.32.tgz</a></p> <p>Path to dependency file: /core/jazz_metrics/package.json</p> <p>Path to vulnerable library: /core/jazz_metrics/node_modules/moment-timezone/package.json</p> <p> Dependency Hierarchy: - :x: **moment-timezone-0.5.32.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/jazz/commit/712665b267203375ee4b15e1f8d1ebe08abc1547">712665b267203375ee4b15e1f8d1ebe08abc1547</a></p> <p>Found in base branch: <b>develop</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Command Injection in moment-timezone before 0.5.35. <p>Publish Date: 2022-08-30 <p>URL: <a href=https://github.com/moment/moment-timezone/commit/ce955a301ff372e8e9fb3a5b516620c60e7a082a>WS-2022-0280</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-56x4-j7p9-fcf9">https://github.com/advisories/GHSA-56x4-j7p9-fcf9</a></p> <p>Release Date: 2022-08-30</p> <p>Fix Resolution: 0.5.35</p> </p> </details> <p></p> *** <!-- REMEDIATE-OPEN-PR-START --> - [ ] Check this box to open an automated fix PR <!-- REMEDIATE-OPEN-PR-END -->
True
WS-2022-0280 (Medium) detected in moment-timezone-0.5.32.tgz - ## WS-2022-0280 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-timezone-0.5.32.tgz</b></p></summary> <p>Parse and display moments in any timezone.</p> <p>Library home page: <a href="https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.32.tgz">https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.32.tgz</a></p> <p>Path to dependency file: /core/jazz_metrics/package.json</p> <p>Path to vulnerable library: /core/jazz_metrics/node_modules/moment-timezone/package.json</p> <p> Dependency Hierarchy: - :x: **moment-timezone-0.5.32.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/jazz/commit/712665b267203375ee4b15e1f8d1ebe08abc1547">712665b267203375ee4b15e1f8d1ebe08abc1547</a></p> <p>Found in base branch: <b>develop</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Command Injection in moment-timezone before 0.5.35. <p>Publish Date: 2022-08-30 <p>URL: <a href=https://github.com/moment/moment-timezone/commit/ce955a301ff372e8e9fb3a5b516620c60e7a082a>WS-2022-0280</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-56x4-j7p9-fcf9">https://github.com/advisories/GHSA-56x4-j7p9-fcf9</a></p> <p>Release Date: 2022-08-30</p> <p>Fix Resolution: 0.5.35</p> </p> </details> <p></p> *** <!-- REMEDIATE-OPEN-PR-START --> - [ ] Check this box to open an automated fix PR <!-- REMEDIATE-OPEN-PR-END -->
non_test
ws medium detected in moment timezone tgz ws medium severity vulnerability vulnerable library moment timezone tgz parse and display moments in any timezone library home page a href path to dependency file core jazz metrics package json path to vulnerable library core jazz metrics node modules moment timezone package json dependency hierarchy x moment timezone tgz vulnerable library found in head commit a href found in base branch develop vulnerability details command injection in moment timezone before publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution check this box to open an automated fix pr
0
249,957
21,219,481,734
IssuesEvent
2022-04-11 10:30:11
LimeChain/hashport-validator
https://api.github.com/repos/LimeChain/hashport-validator
closed
Unit tests for app/process/handler/read-only/nft/fee/handler.go
unit tests
- Implement unit tests for **app/process/handler/read-only/nft/fee/handler.go**
1.0
Unit tests for app/process/handler/read-only/nft/fee/handler.go - - Implement unit tests for **app/process/handler/read-only/nft/fee/handler.go**
test
unit tests for app process handler read only nft fee handler go implement unit tests for app process handler read only nft fee handler go
1
406,122
27,552,404,195
IssuesEvent
2023-03-07 15:44:03
AY2223S2-CS2103-W17-4/tp
https://api.github.com/repos/AY2223S2-CS2103-W17-4/tp
closed
Add non-functional requirements to DG
type.DeveloperGuide type.Documentation type.Task
Note: Many of the given project constraints can be considered NFRs. You can add more. e.g. performance requirements, usability requirements, scalability requirements, etc.
1.0
Add non-functional requirements to DG - Note: Many of the given project constraints can be considered NFRs. You can add more. e.g. performance requirements, usability requirements, scalability requirements, etc.
non_test
add non functional requirements to dg note many of the given project constraints can be considered nfrs you can add more e g performance requirements usability requirements scalability requirements etc
0
411,759
12,031,601,089
IssuesEvent
2020-04-13 10:03:30
OpenNebula/one
https://api.github.com/repos/OpenNebula/one
closed
Remove DONE services from services tab in Sunstone
Category: Sunstone Priority: Normal Sponsored Status: Accepted Type: Bug
**Description** Service should disappear in Sunstone when they are deleted. Should be the same behavior than for VMs. **To Reproduce** 1. Instantiate a service 2. terminate/delete the service 3. VM will be terminated 4. oneflow list -> service not available anymore 5. Service still visible in Sunstone with "DONE" state **Expected behavior** List shouldn't have the service. **Details** - Affected Component: Sunstone - Version: development. <!--////////////////////////////////////////////--> <!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM --> <!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS --> <!-- PROGRESS WILL BE REFLECTED HERE --> <!--////////////////////////////////////////////--> ## Progress Status - [ ] Branch created - [ ] Code committed to development branch - [ ] Testing - QA - [ ] Documentation - [ ] Release notes - resolved issues, compatibility, known issues - [ ] Code committed to upstream release/hotfix branches - [ ] Documentation committed to upstream release/hotfix branches
1.0
Remove DONE services from services tab in Sunstone - **Description** Service should disappear in Sunstone when they are deleted. Should be the same behavior than for VMs. **To Reproduce** 1. Instantiate a service 2. terminate/delete the service 3. VM will be terminated 4. oneflow list -> service not available anymore 5. Service still visible in Sunstone with "DONE" state **Expected behavior** List shouldn't have the service. **Details** - Affected Component: Sunstone - Version: development. <!--////////////////////////////////////////////--> <!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM --> <!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS --> <!-- PROGRESS WILL BE REFLECTED HERE --> <!--////////////////////////////////////////////--> ## Progress Status - [ ] Branch created - [ ] Code committed to development branch - [ ] Testing - QA - [ ] Documentation - [ ] Release notes - resolved issues, compatibility, known issues - [ ] Code committed to upstream release/hotfix branches - [ ] Documentation committed to upstream release/hotfix branches
non_test
remove done services from services tab in sunstone description service should disappear in sunstone when they are deleted should be the same behavior than for vms to reproduce instantiate a service terminate delete the service vm will be terminated oneflow list service not available anymore service still visible in sunstone with done state expected behavior list shouldn t have the service details affected component sunstone version development progress status branch created code committed to development branch testing qa documentation release notes resolved issues compatibility known issues code committed to upstream release hotfix branches documentation committed to upstream release hotfix branches
0
213,449
16,520,784,891
IssuesEvent
2021-05-26 14:22:00
NationalBankBelgium/stark
https://api.github.com/repos/NationalBankBelgium/stark
opened
ui: update tests to use new Angular Material test harnesses
comp: stark-ui comp: testing type: feature
<!-- Note: for support questions please use Stack Overflow: https://stackoverflow.com/questions/tagged/stark --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [X] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit support request here, instead see https://github.com/NationalBankBelgium/stark/blob/master/CONTRIBUTING.md#got-a-question-or-problem </code></pre> ## Current behavior <!-- Describe how the issue manifests. --> Stark UI components are tested in an old way. ## Expected behavior <!-- Describe what the desired behavior would be. --> Take benefit of new testing methods provided by Angular, with Angular Material test harnesses. As mentioned in Angular Material [CHANGELOG](https://github.com/angular/components/blob/master/CHANGELOG.md#new-angularcdktesting-infrastructure-and-angular-material-test-harnesses): > #### New `@angular/cdk/testing` infrastructure and Angular Material test harnesses > > Testing components has historically relied on using implementation details such as CSS selectors to > find components and to trigger events. This meant that whenever a component library changed its > implementation, all of the tests relying on those components would need to be updated. > > In version 9, we are introducing component harnesses, which offer an alternative way to test > components. By abstracting away the implementation details, you can make sure your unit tests are > correctly scoped and less brittle. > > Most of Angular Material's components can now be tested via harnesses, and we are making harnesses > available to any component author as part of the Component Dev Kit (CDK). > > Here's an example test before harnesses: > ```typescript > it('should switch to bug report template', async () => { > expect(fixture.debugElement.query('bug-report-form')).toBeNull(); > const selectTrigger = fixture.debugElement.query(By.css('.mat-select-trigger')); > selectTrigger.triggerEventHandler('click', {}); > fixture.detectChanges(); > await fixture.whenStable(); > const options = document.querySelectorAll('.mat-select-panel mat-option'); > options[1].click(); // Click the second option, "Bug". > fixture.detectChanges(); > await fixture.whenStable(); > expect(fixture.debugElement.query('bug-report-form')).not.toBeNull(); > }); > ``` > > And the same test with harnesses: > > ```typescript > it('should switch to bug report template', async () => { > expect(fixture.debugElement.query('bug-report-form')).toBeNull(); > const select = await loader.getHarness(MatSelect); > await select.clickOptions({text: 'Bug'}); > expect(fixture.debugElement.query('bug-report-form')).not.toBeNull(); > }); > > ``` > > Learn more about > [Angular Material's component harnesses](https://material.angular.io/guide/using-component-harnesses) > or [building your own with the CDK](https://v9.material.angular.io/cdk/testing/overview). ## What is the motivation / use case for changing the behavior? <!-- Describe the motivation or the concrete use case. --> Testing improvements ## Environment <pre><code> Angular version: > 9.x <!-- Check whether this is still an issue in the most recent Angular version --> Others: <!-- Anything else relevant? Operating system version, IDE, package manager, HTTP server, ... --> </code></pre>
1.0
ui: update tests to use new Angular Material test harnesses - <!-- Note: for support questions please use Stack Overflow: https://stackoverflow.com/questions/tagged/stark --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [X] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit support request here, instead see https://github.com/NationalBankBelgium/stark/blob/master/CONTRIBUTING.md#got-a-question-or-problem </code></pre> ## Current behavior <!-- Describe how the issue manifests. --> Stark UI components are tested in an old way. ## Expected behavior <!-- Describe what the desired behavior would be. --> Take benefit of new testing methods provided by Angular, with Angular Material test harnesses. As mentioned in Angular Material [CHANGELOG](https://github.com/angular/components/blob/master/CHANGELOG.md#new-angularcdktesting-infrastructure-and-angular-material-test-harnesses): > #### New `@angular/cdk/testing` infrastructure and Angular Material test harnesses > > Testing components has historically relied on using implementation details such as CSS selectors to > find components and to trigger events. This meant that whenever a component library changed its > implementation, all of the tests relying on those components would need to be updated. > > In version 9, we are introducing component harnesses, which offer an alternative way to test > components. By abstracting away the implementation details, you can make sure your unit tests are > correctly scoped and less brittle. > > Most of Angular Material's components can now be tested via harnesses, and we are making harnesses > available to any component author as part of the Component Dev Kit (CDK). > > Here's an example test before harnesses: > ```typescript > it('should switch to bug report template', async () => { > expect(fixture.debugElement.query('bug-report-form')).toBeNull(); > const selectTrigger = fixture.debugElement.query(By.css('.mat-select-trigger')); > selectTrigger.triggerEventHandler('click', {}); > fixture.detectChanges(); > await fixture.whenStable(); > const options = document.querySelectorAll('.mat-select-panel mat-option'); > options[1].click(); // Click the second option, "Bug". > fixture.detectChanges(); > await fixture.whenStable(); > expect(fixture.debugElement.query('bug-report-form')).not.toBeNull(); > }); > ``` > > And the same test with harnesses: > > ```typescript > it('should switch to bug report template', async () => { > expect(fixture.debugElement.query('bug-report-form')).toBeNull(); > const select = await loader.getHarness(MatSelect); > await select.clickOptions({text: 'Bug'}); > expect(fixture.debugElement.query('bug-report-form')).not.toBeNull(); > }); > > ``` > > Learn more about > [Angular Material's component harnesses](https://material.angular.io/guide/using-component-harnesses) > or [building your own with the CDK](https://v9.material.angular.io/cdk/testing/overview). ## What is the motivation / use case for changing the behavior? <!-- Describe the motivation or the concrete use case. --> Testing improvements ## Environment <pre><code> Angular version: > 9.x <!-- Check whether this is still an issue in the most recent Angular version --> Others: <!-- Anything else relevant? Operating system version, IDE, package manager, HTTP server, ... --> </code></pre>
test
ui update tests to use new angular material test harnesses i m submitting a regression a behavior that used to work and stopped working in a new release bug report feature request documentation issue or request support request please do not submit support request here instead see current behavior stark ui components are tested in an old way expected behavior take benefit of new testing methods provided by angular with angular material test harnesses as mentioned in angular material new angular cdk testing infrastructure and angular material test harnesses testing components has historically relied on using implementation details such as css selectors to find components and to trigger events this meant that whenever a component library changed its implementation all of the tests relying on those components would need to be updated in version we are introducing component harnesses which offer an alternative way to test components by abstracting away the implementation details you can make sure your unit tests are correctly scoped and less brittle most of angular material s components can now be tested via harnesses and we are making harnesses available to any component author as part of the component dev kit cdk here s an example test before harnesses typescript it should switch to bug report template async expect fixture debugelement query bug report form tobenull const selecttrigger fixture debugelement query by css mat select trigger selecttrigger triggereventhandler click fixture detectchanges await fixture whenstable const options document queryselectorall mat select panel mat option options click click the second option bug fixture detectchanges await fixture whenstable expect fixture debugelement query bug report form not tobenull and the same test with harnesses typescript it should switch to bug report template async expect fixture debugelement query bug report form tobenull const select await loader getharness matselect await select clickoptions text bug expect fixture debugelement query bug report form not tobenull learn more about or what is the motivation use case for changing the behavior testing improvements environment angular version x others
1
66,220
3,251,173,707
IssuesEvent
2015-10-19 08:18:24
cs2103aug2015-w14-3j/main
https://api.github.com/repos/cs2103aug2015-w14-3j/main
closed
As a user, I can add "sub tasks" to a main task
priority.low type.story
so that I can break down a large task into smaller tasks with different deadlines
1.0
As a user, I can add "sub tasks" to a main task - so that I can break down a large task into smaller tasks with different deadlines
non_test
as a user i can add sub tasks to a main task so that i can break down a large task into smaller tasks with different deadlines
0
312,492
9,548,088,698
IssuesEvent
2019-05-02 03:08:22
openmsupply/mobile
https://api.github.com/repos/openmsupply/mobile
opened
Opening requisitions requisitions crashes app ('undefined' custom data)
Bug Ivory Coast (phase 1) Priority: High Release Blocker
Build Number: 2.3.0-rc0 Description: When you open older requisitions or any that have synced from server (initialisation) the app will crash with an error: ![image](https://user-images.githubusercontent.com/7684221/57054895-925a0c00-6ceb-11e9-897a-45ffac87aff1.png) mSupply server will send the string `'undefined'`, this would get stored as such rather than as `null` in what is an optional field in mobile. When null checking the string 'undefined' is true. Then we try parse that string throughout the app. Reproducible: Yes Reproduction Steps: 1. Create a general requisition (no program) 2. sync 3. clear app data 4. initialise 5. Try open the requisition, have a bad time Comments: Possibly related to promise rejection here #945
1.0
Opening requisitions requisitions crashes app ('undefined' custom data) - Build Number: 2.3.0-rc0 Description: When you open older requisitions or any that have synced from server (initialisation) the app will crash with an error: ![image](https://user-images.githubusercontent.com/7684221/57054895-925a0c00-6ceb-11e9-897a-45ffac87aff1.png) mSupply server will send the string `'undefined'`, this would get stored as such rather than as `null` in what is an optional field in mobile. When null checking the string 'undefined' is true. Then we try parse that string throughout the app. Reproducible: Yes Reproduction Steps: 1. Create a general requisition (no program) 2. sync 3. clear app data 4. initialise 5. Try open the requisition, have a bad time Comments: Possibly related to promise rejection here #945
non_test
opening requisitions requisitions crashes app undefined custom data build number description when you open older requisitions or any that have synced from server initialisation the app will crash with an error msupply server will send the string undefined this would get stored as such rather than as null in what is an optional field in mobile when null checking the string undefined is true then we try parse that string throughout the app reproducible yes reproduction steps create a general requisition no program sync clear app data initialise try open the requisition have a bad time comments possibly related to promise rejection here
0
72,590
24,191,965,336
IssuesEvent
2022-09-23 18:34:15
matrix-org/synapse
https://api.github.com/repos/matrix-org/synapse
opened
Faster room joins: Outgoing device list updates not sent if we leave the room before join completes
A-Federated-Join A-Device-List-Tracking S-Minor T-Defect O-Uncommon
We're missing complement tests for this too. related: * #12802 * #13891
1.0
Faster room joins: Outgoing device list updates not sent if we leave the room before join completes - We're missing complement tests for this too. related: * #12802 * #13891
non_test
faster room joins outgoing device list updates not sent if we leave the room before join completes we re missing complement tests for this too related
0
4,072
10,552,476,500
IssuesEvent
2019-10-03 15:14:11
dotnet/docs
https://api.github.com/repos/dotnet/docs
closed
Multuple IHostedService registration
:book: guide - .NET Microservices :books: Area - .NET Architecture Guide Source - Docs.ms
If i try to register two or more services, only one could work properly. For example: ``` services.AddSingleton<IHostedService, ServiceA>(); services.AddSingleton<IHostedService, ServiceB>(); ``` Implementations are simplest as possible: ``` public class ServiceA: IHostedService { public Task StartAsync(CancellationToken cancellationToken) { DoWork(); return Task.CompletedTask; } public Task StopAsync(CancellationToken cancellationToken) { return Task.CompletedTask; } private void DoWork() { while (true) { Console.WriteLine("ServiceA"); Thread.Sleep(2000); } } } ``` and ``` public class ServiceB: IHostedService { public Task StartAsync(CancellationToken cancellationToken) { DoWork(); return Task.CompletedTask; } public Task StopAsync(CancellationToken cancellationToken) { return Task.CompletedTask; } private void DoWork() { while (true) { Console.WriteLine("ServiceB"); Thread.Sleep(1000); } } } ``` In output getting messages only from ServiceA --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: d49a03c0-a844-26eb-48a5-33a612dd3ead * Version Independent ID: 0707865f-9db7-0d71-42a5-bc1a1e89680a * Content: [Implement background tasks in microservices with IHostedService and the BackgroundService class](https://docs.microsoft.com/en-us/dotnet/architecture/microservices/multi-container-microservice-net-applications/background-tasks-with-ihostedservice#feedback) * Content Source: [docs/architecture/microservices/multi-container-microservice-net-applications/background-tasks-with-ihostedservice.md](https://github.com/dotnet/docs/blob/master/docs/architecture/microservices/multi-container-microservice-net-applications/background-tasks-with-ihostedservice.md) * Product: **dotnet** * Technology: **dotnet-ebooks** * GitHub Login: @nishanil * Microsoft Alias: **nanil**
1.0
Multuple IHostedService registration - If i try to register two or more services, only one could work properly. For example: ``` services.AddSingleton<IHostedService, ServiceA>(); services.AddSingleton<IHostedService, ServiceB>(); ``` Implementations are simplest as possible: ``` public class ServiceA: IHostedService { public Task StartAsync(CancellationToken cancellationToken) { DoWork(); return Task.CompletedTask; } public Task StopAsync(CancellationToken cancellationToken) { return Task.CompletedTask; } private void DoWork() { while (true) { Console.WriteLine("ServiceA"); Thread.Sleep(2000); } } } ``` and ``` public class ServiceB: IHostedService { public Task StartAsync(CancellationToken cancellationToken) { DoWork(); return Task.CompletedTask; } public Task StopAsync(CancellationToken cancellationToken) { return Task.CompletedTask; } private void DoWork() { while (true) { Console.WriteLine("ServiceB"); Thread.Sleep(1000); } } } ``` In output getting messages only from ServiceA --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: d49a03c0-a844-26eb-48a5-33a612dd3ead * Version Independent ID: 0707865f-9db7-0d71-42a5-bc1a1e89680a * Content: [Implement background tasks in microservices with IHostedService and the BackgroundService class](https://docs.microsoft.com/en-us/dotnet/architecture/microservices/multi-container-microservice-net-applications/background-tasks-with-ihostedservice#feedback) * Content Source: [docs/architecture/microservices/multi-container-microservice-net-applications/background-tasks-with-ihostedservice.md](https://github.com/dotnet/docs/blob/master/docs/architecture/microservices/multi-container-microservice-net-applications/background-tasks-with-ihostedservice.md) * Product: **dotnet** * Technology: **dotnet-ebooks** * GitHub Login: @nishanil * Microsoft Alias: **nanil**
non_test
multuple ihostedservice registration if i try to register two or more services only one could work properly for example services addsingleton services addsingleton implementations are simplest as possible public class servicea ihostedservice public task startasync cancellationtoken cancellationtoken dowork return task completedtask public task stopasync cancellationtoken cancellationtoken return task completedtask private void dowork while true console writeline servicea thread sleep and public class serviceb ihostedservice public task startasync cancellationtoken cancellationtoken dowork return task completedtask public task stopasync cancellationtoken cancellationtoken return task completedtask private void dowork while true console writeline serviceb thread sleep in output getting messages only from servicea document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source product dotnet technology dotnet ebooks github login nishanil microsoft alias nanil
0
107,391
9,211,679,190
IssuesEvent
2019-03-09 17:23:41
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
Cloud Credential - 'Region' field is not a mandatory field on the Add Cloud Credential page for Amazon type
area/ui kind/bug-qa status/ready-for-review status/resolved status/to-test status/working team/az version/2.0
**What kind of request is this (question/bug/enhancement/feature request):** bug **Steps to reproduce (least amount of steps as possible):** 1. On the Rancher UI, go to Cloud Credential page. 2. Click on 'Add Cloud Credential'. 3. Select Cloud Credential type: Amazon and enter the Access Key and Secret Key (Mandatory fields) 4. Click on create. **Expected Result:** Region field is made mandatory or has a value by default, so that appropriate error message gets populated. **Actual Result:** Error `undefined ConfigError: There was a problem validating your keys. Enter valid credentials and try agian.` is seen on the UI. <img width="994" alt="Screen Shot 2019-03-08 at 12 05 10 PM" src="https://user-images.githubusercontent.com/26032343/54053133-31a2cd00-419b-11e9-8dab-01d4f099dff1.png"> **Other details that may be helpful:** **Environment information** - Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): rancher:master - Installation option (single install/HA): HA
1.0
Cloud Credential - 'Region' field is not a mandatory field on the Add Cloud Credential page for Amazon type - **What kind of request is this (question/bug/enhancement/feature request):** bug **Steps to reproduce (least amount of steps as possible):** 1. On the Rancher UI, go to Cloud Credential page. 2. Click on 'Add Cloud Credential'. 3. Select Cloud Credential type: Amazon and enter the Access Key and Secret Key (Mandatory fields) 4. Click on create. **Expected Result:** Region field is made mandatory or has a value by default, so that appropriate error message gets populated. **Actual Result:** Error `undefined ConfigError: There was a problem validating your keys. Enter valid credentials and try agian.` is seen on the UI. <img width="994" alt="Screen Shot 2019-03-08 at 12 05 10 PM" src="https://user-images.githubusercontent.com/26032343/54053133-31a2cd00-419b-11e9-8dab-01d4f099dff1.png"> **Other details that may be helpful:** **Environment information** - Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): rancher:master - Installation option (single install/HA): HA
test
cloud credential region field is not a mandatory field on the add cloud credential page for amazon type what kind of request is this question bug enhancement feature request bug steps to reproduce least amount of steps as possible on the rancher ui go to cloud credential page click on add cloud credential select cloud credential type amazon and enter the access key and secret key mandatory fields click on create expected result region field is made mandatory or has a value by default so that appropriate error message gets populated actual result error undefined configerror there was a problem validating your keys enter valid credentials and try agian is seen on the ui img width alt screen shot at pm src other details that may be helpful environment information rancher version rancher rancher rancher server image tag or shown bottom left in the ui rancher master installation option single install ha ha
1
26,249
7,806,519,002
IssuesEvent
2018-06-11 14:17:29
pgpointcloud/pointcloud
https://api.github.com/repos/pgpointcloud/pointcloud
closed
Provide an "uninstall" rule for cmake based build
build-cmake enhancement
The cmake based build lacks an "uninstall" rule.
1.0
Provide an "uninstall" rule for cmake based build - The cmake based build lacks an "uninstall" rule.
non_test
provide an uninstall rule for cmake based build the cmake based build lacks an uninstall rule
0
204,183
15,422,067,973
IssuesEvent
2021-03-05 13:55:40
fetchai/agents-aea
https://api.github.com/repos/fetchai/agents-aea
closed
Generator To-Dos
bug enhancement test
## To-Dos: - [x] Further refactoring and cleaning up - [ ] Consolidate `ProtocolSpecification` (constructed from loading the config) and `PythonicProtocolSpecification`. Make one ProtocolSpecification that a) validates the spec, b) extracts fields into Pythonic fields (e.g. roles, initiation, etc) as well as auxiliary fields (e.g. all custom_types, all_performatives, etc). - [ ] Change formatting of the raw generated files from black to normal, now that black is automatically applied. This would simplify the generator's code. Think about simplifying specification of code blocks as files or multi-line strings. - [x] Make it so the Performative enum in an instance Message class is a subclass of the performative enum in the base Message class. - [x] Make it so the type hinting takes into account whether some x must be of type A (i.e. `x: A` as in the current implementation) vs when x must be of type "A or any of its subclasses" (i.e. `x: Type(A)`). For instance, many method arguments such as `Performative` in `Dialogues.create()`, `message` in `Dialogues.update()`, etc, must be of the latter kind. - More Tests: - [ ] More tests on correct and incorrect specifications ## Notes: - There is a constraint on protobuf maps<X, Y> which means the keys cannot be of types bytes, float, double or another message. Currently we implement `dicts` as `maps` and by extension, take this constraint on board. Is this desired, or do we want to switch to XXPairs, or a mix of the two approaches (i.e. the latter where the former isn't allowed)? - A note on how optional fields in proto3 are represented (discussion here https://github.com/protocolbuffers/protobuf/issues/1606). - Problem: Float types do not quite match when serialised and then deserialised using protocol buffer. Some inaccuracy in protobuf serialisation/deserialisation process. Example, 5.0 when serialised and then deserialised is 4.999999998. - Support for custom types is very limited in the generator. This is due to the lack of a mechanism for describing types in a infrastructure-independent language. The type's class implementation and protobuf encoding/decoding still have to be provided in the custom_types.py module and the protobuf schema code is provided in the specification, all pointing to the temporary nature of support for custom types. ## Done: - [x] Format checking content types in protocol specifications (e.g. using regexp) & validation yaml files (multi page) [v0.5] - [x] Add test that verifies `black` and `protoc` exist in cli generate test file. - [x] Test that the test protocol package matches the output of the latest generator - [x] encode should be staticmethod not classmethod in custom_types. [v0.3] - [x] There is a constraint on protobuf `maps<X, Y>`: Keys cannot be `bytes`, `float`, `double`, or another `message` type. Do we take this constraint on board generally in protocol specification or perhaps replace `maps<X, Y>` with `repeated XXPairs`? [v0.4, repeat for those not supported as keys by maps] - [x] Encapsulate some of the cli functionality related to the running of the generator (e.g. loading protocol specification, running black on the output), and use it in the test that programmatically uses the generator (e.g. the one comparing test package with latest generator output); first separate into four parts a) spec validation; b) spec > protobuf; c) generate python files; d) apply black on python files; should be possible to run a&b only [v0.5] - [x] change performative name in generated protocols schema file so they are XXX_Performative. This way a performative and content of the same name would be allowed (now, both would be messages with the same name, and protobuf complains). [v0.3] - [x] (NOTE) In general, at the current point in time, it is best to declare that the generator does not support the generation of custom types. Currently when generating a protocol whose specification contains custom types, the custom type's class implementation and protobuf serialisation code still have to be provided in the custom_types.py module after the generation and the protobuf schema code must be provided in the specification, which is not at all a clean solution. The current generator's support for custom types is merely a hack to allow existing protocols to be generated. [we will maintain the temporary solution for the time beeing; v0.3 add this note to the docs] - [x] (Note) In `proto3`, which is the version used by the generator, there is no way to check whether an `optional` field has been set or not (see discussion here https://github.com/protocolbuffers/protobuf/issues/1606). In proto3, all `optional` fields are assigned a default value (e.g. 0, false). Therefore, there is no way to know whether an optional field whose value is the default value was not set or was in fact set but its value happens to be the default value. This lead to the creation of a second field per each optional field that declares whether the field is set or not in the proto schema generated by the generator, which is not a clean solution. [we will maintain the temporary solution for the time beeing; v0.3 add this note to the docs] - [x] (Note) `float` types do not match when serialised and then deserialised using protocol buffer. It seems to be some inaccuracy in protobuf serialisation/deserialisation process. [v0.3 add this note to the docs] - [x] Currently if there is a `protoc` error, the error is displayed on the terminal but also the protocol is generated without the `*_pb2.py` file. Change the behaviour so in such a case, nothing is generated and the `protoc` error is relayed as a framework error. [v0.5] - [x] Change the class variable line generated in the `message.py` module from `ProtocolId(“fetchai”, “ledger_api”, “0.2.0”)` to `ProtocolId.from_str(“fetchai/ledger_api:0.2.0")` in all protocols. - [x] More Tests - [x] There is a mismatch between protobuf types and message types. For example, protobuf code says `proposal` is a `list` of `bytes`. In `message.py` it is actually a list of `Descriptions` which is converted to `bytes` in `serialisation.py` via `pickle`. To remove `pickle`, these types must be designed with protobuf. - [x] End-to-end tests involving that covers all possible valid and invalid content types [v0.4]
1.0
Generator To-Dos - ## To-Dos: - [x] Further refactoring and cleaning up - [ ] Consolidate `ProtocolSpecification` (constructed from loading the config) and `PythonicProtocolSpecification`. Make one ProtocolSpecification that a) validates the spec, b) extracts fields into Pythonic fields (e.g. roles, initiation, etc) as well as auxiliary fields (e.g. all custom_types, all_performatives, etc). - [ ] Change formatting of the raw generated files from black to normal, now that black is automatically applied. This would simplify the generator's code. Think about simplifying specification of code blocks as files or multi-line strings. - [x] Make it so the Performative enum in an instance Message class is a subclass of the performative enum in the base Message class. - [x] Make it so the type hinting takes into account whether some x must be of type A (i.e. `x: A` as in the current implementation) vs when x must be of type "A or any of its subclasses" (i.e. `x: Type(A)`). For instance, many method arguments such as `Performative` in `Dialogues.create()`, `message` in `Dialogues.update()`, etc, must be of the latter kind. - More Tests: - [ ] More tests on correct and incorrect specifications ## Notes: - There is a constraint on protobuf maps<X, Y> which means the keys cannot be of types bytes, float, double or another message. Currently we implement `dicts` as `maps` and by extension, take this constraint on board. Is this desired, or do we want to switch to XXPairs, or a mix of the two approaches (i.e. the latter where the former isn't allowed)? - A note on how optional fields in proto3 are represented (discussion here https://github.com/protocolbuffers/protobuf/issues/1606). - Problem: Float types do not quite match when serialised and then deserialised using protocol buffer. Some inaccuracy in protobuf serialisation/deserialisation process. Example, 5.0 when serialised and then deserialised is 4.999999998. - Support for custom types is very limited in the generator. This is due to the lack of a mechanism for describing types in a infrastructure-independent language. The type's class implementation and protobuf encoding/decoding still have to be provided in the custom_types.py module and the protobuf schema code is provided in the specification, all pointing to the temporary nature of support for custom types. ## Done: - [x] Format checking content types in protocol specifications (e.g. using regexp) & validation yaml files (multi page) [v0.5] - [x] Add test that verifies `black` and `protoc` exist in cli generate test file. - [x] Test that the test protocol package matches the output of the latest generator - [x] encode should be staticmethod not classmethod in custom_types. [v0.3] - [x] There is a constraint on protobuf `maps<X, Y>`: Keys cannot be `bytes`, `float`, `double`, or another `message` type. Do we take this constraint on board generally in protocol specification or perhaps replace `maps<X, Y>` with `repeated XXPairs`? [v0.4, repeat for those not supported as keys by maps] - [x] Encapsulate some of the cli functionality related to the running of the generator (e.g. loading protocol specification, running black on the output), and use it in the test that programmatically uses the generator (e.g. the one comparing test package with latest generator output); first separate into four parts a) spec validation; b) spec > protobuf; c) generate python files; d) apply black on python files; should be possible to run a&b only [v0.5] - [x] change performative name in generated protocols schema file so they are XXX_Performative. This way a performative and content of the same name would be allowed (now, both would be messages with the same name, and protobuf complains). [v0.3] - [x] (NOTE) In general, at the current point in time, it is best to declare that the generator does not support the generation of custom types. Currently when generating a protocol whose specification contains custom types, the custom type's class implementation and protobuf serialisation code still have to be provided in the custom_types.py module after the generation and the protobuf schema code must be provided in the specification, which is not at all a clean solution. The current generator's support for custom types is merely a hack to allow existing protocols to be generated. [we will maintain the temporary solution for the time beeing; v0.3 add this note to the docs] - [x] (Note) In `proto3`, which is the version used by the generator, there is no way to check whether an `optional` field has been set or not (see discussion here https://github.com/protocolbuffers/protobuf/issues/1606). In proto3, all `optional` fields are assigned a default value (e.g. 0, false). Therefore, there is no way to know whether an optional field whose value is the default value was not set or was in fact set but its value happens to be the default value. This lead to the creation of a second field per each optional field that declares whether the field is set or not in the proto schema generated by the generator, which is not a clean solution. [we will maintain the temporary solution for the time beeing; v0.3 add this note to the docs] - [x] (Note) `float` types do not match when serialised and then deserialised using protocol buffer. It seems to be some inaccuracy in protobuf serialisation/deserialisation process. [v0.3 add this note to the docs] - [x] Currently if there is a `protoc` error, the error is displayed on the terminal but also the protocol is generated without the `*_pb2.py` file. Change the behaviour so in such a case, nothing is generated and the `protoc` error is relayed as a framework error. [v0.5] - [x] Change the class variable line generated in the `message.py` module from `ProtocolId(“fetchai”, “ledger_api”, “0.2.0”)` to `ProtocolId.from_str(“fetchai/ledger_api:0.2.0")` in all protocols. - [x] More Tests - [x] There is a mismatch between protobuf types and message types. For example, protobuf code says `proposal` is a `list` of `bytes`. In `message.py` it is actually a list of `Descriptions` which is converted to `bytes` in `serialisation.py` via `pickle`. To remove `pickle`, these types must be designed with protobuf. - [x] End-to-end tests involving that covers all possible valid and invalid content types [v0.4]
test
generator to dos to dos further refactoring and cleaning up consolidate protocolspecification constructed from loading the config and pythonicprotocolspecification make one protocolspecification that a validates the spec b extracts fields into pythonic fields e g roles initiation etc as well as auxiliary fields e g all custom types all performatives etc change formatting of the raw generated files from black to normal now that black is automatically applied this would simplify the generator s code think about simplifying specification of code blocks as files or multi line strings make it so the performative enum in an instance message class is a subclass of the performative enum in the base message class make it so the type hinting takes into account whether some x must be of type a i e x a as in the current implementation vs when x must be of type a or any of its subclasses i e x type a for instance many method arguments such as performative in dialogues create message in dialogues update etc must be of the latter kind more tests more tests on correct and incorrect specifications notes there is a constraint on protobuf maps which means the keys cannot be of types bytes float double or another message currently we implement dicts as maps and by extension take this constraint on board is this desired or do we want to switch to xxpairs or a mix of the two approaches i e the latter where the former isn t allowed a note on how optional fields in are represented discussion here problem float types do not quite match when serialised and then deserialised using protocol buffer some inaccuracy in protobuf serialisation deserialisation process example when serialised and then deserialised is support for custom types is very limited in the generator this is due to the lack of a mechanism for describing types in a infrastructure independent language the type s class implementation and protobuf encoding decoding still have to be provided in the custom types py module and the protobuf schema code is provided in the specification all pointing to the temporary nature of support for custom types done format checking content types in protocol specifications e g using regexp validation yaml files multi page add test that verifies black and protoc exist in cli generate test file test that the test protocol package matches the output of the latest generator encode should be staticmethod not classmethod in custom types there is a constraint on protobuf maps keys cannot be bytes float double or another message type do we take this constraint on board generally in protocol specification or perhaps replace maps with repeated xxpairs encapsulate some of the cli functionality related to the running of the generator e g loading protocol specification running black on the output and use it in the test that programmatically uses the generator e g the one comparing test package with latest generator output first separate into four parts a spec validation b spec protobuf c generate python files d apply black on python files should be possible to run a b only change performative name in generated protocols schema file so they are xxx performative this way a performative and content of the same name would be allowed now both would be messages with the same name and protobuf complains note in general at the current point in time it is best to declare that the generator does not support the generation of custom types currently when generating a protocol whose specification contains custom types the custom type s class implementation and protobuf serialisation code still have to be provided in the custom types py module after the generation and the protobuf schema code must be provided in the specification which is not at all a clean solution the current generator s support for custom types is merely a hack to allow existing protocols to be generated note in which is the version used by the generator there is no way to check whether an optional field has been set or not see discussion here in all optional fields are assigned a default value e g false therefore there is no way to know whether an optional field whose value is the default value was not set or was in fact set but its value happens to be the default value this lead to the creation of a second field per each optional field that declares whether the field is set or not in the proto schema generated by the generator which is not a clean solution note float types do not match when serialised and then deserialised using protocol buffer it seems to be some inaccuracy in protobuf serialisation deserialisation process currently if there is a protoc error the error is displayed on the terminal but also the protocol is generated without the py file change the behaviour so in such a case nothing is generated and the protoc error is relayed as a framework error change the class variable line generated in the message py module from protocolid “fetchai” “ledger api” “ ” to protocolid from str “fetchai ledger api in all protocols more tests there is a mismatch between protobuf types and message types for example protobuf code says proposal is a list of bytes in message py it is actually a list of descriptions which is converted to bytes in serialisation py via pickle to remove pickle these types must be designed with protobuf end to end tests involving that covers all possible valid and invalid content types
1
214,160
16,549,102,355
IssuesEvent
2021-05-28 06:11:29
DaBible-Foundation/DaBible-MainHub
https://api.github.com/repos/DaBible-Foundation/DaBible-MainHub
closed
Clean up Hausa files
documentation
**Please describe the task or issue:** So the mission was to clean up and remain Hausa audio files but it seemed it was already done already and Iyin took care of the rest of the work **Additional information:**
1.0
Clean up Hausa files - **Please describe the task or issue:** So the mission was to clean up and remain Hausa audio files but it seemed it was already done already and Iyin took care of the rest of the work **Additional information:**
non_test
clean up hausa files please describe the task or issue so the mission was to clean up and remain hausa audio files but it seemed it was already done already and iyin took care of the rest of the work additional information
0
162,291
20,178,496,836
IssuesEvent
2022-02-10 16:19:27
NirShaharabani/WStest
https://api.github.com/repos/NirShaharabani/WStest
opened
sumy-0.8.1-py2.py3-none-any.whl: 4 vulnerabilities (highest severity is: 7.5)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sumy-0.8.1-py2.py3-none-any.whl</b></p></summary> <p></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2021-3828](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3828) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nltk-3.5.zip | Transitive | N/A | ❌ | | [CVE-2021-3842](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3842) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nltk-3.5.zip | Transitive | N/A | ❌ | | [CVE-2021-43854](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43854) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nltk-3.5.zip | Transitive | N/A | ❌ | | [CVE-2021-43818](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43818) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.1 | lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl | Transitive | N/A | ❌ | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-3828</summary> ### Vulnerable Library - <b>nltk-3.5.zip</b></p> <p>Natural Language Toolkit</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip">https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - :x: **nltk-3.5.zip** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> nltk is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-09-27 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3828>CVE-2021-3828</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2021-3828">https://nvd.nist.gov/vuln/detail/CVE-2021-3828</a></p> <p>Release Date: 2021-09-27</p> <p>Fix Resolution: nltk - 3.6.4;nltk - 3.6.4</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-3842</summary> ### Vulnerable Library - <b>nltk-3.5.zip</b></p> <p>Natural Language Toolkit</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip">https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - :x: **nltk-3.5.zip** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> nltk is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2022-01-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3842>CVE-2021-3842</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/nltk/nltk/security/advisories/GHSA-f8m6-h2c7-8h9x">https://github.com/nltk/nltk/security/advisories/GHSA-f8m6-h2c7-8h9x</a></p> <p>Release Date: 2022-01-04</p> <p>Fix Resolution: nltk - 3.6.6</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-43854</summary> ### Vulnerable Library - <b>nltk-3.5.zip</b></p> <p>Natural Language Toolkit</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip">https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - :x: **nltk-3.5.zip** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> NLTK (Natural Language Toolkit) is a suite of open source Python modules, data sets, and tutorials supporting research and development in Natural Language Processing. Versions prior to 3.6.5 are vulnerable to regular expression denial of service (ReDoS) attacks. The vulnerability is present in PunktSentenceTokenizer, sent_tokenize and word_tokenize. Any users of this class, or these two functions, are vulnerable to the ReDoS attack. In short, a specifically crafted long input to any of these vulnerable functions will cause them to take a significant amount of execution time. If your program relies on any of the vulnerable functions for tokenizing unpredictable user input, then we would strongly recommend upgrading to a version of NLTK without the vulnerability. For users unable to upgrade the execution time can be bounded by limiting the maximum length of an input to any of the vulnerable functions. Our recommendation is to implement such a limit. <p>Publish Date: 2021-12-23 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43854>CVE-2021-43854</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43854">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43854</a></p> <p>Release Date: 2021-12-23</p> <p>Fix Resolution: nltk - 3.6.6</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-43818</summary> ### Vulnerable Library - <b>lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl</b></p> <p>Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/30/c0/d0526314971fc661b083ab135747dc68446a3022686da8c16d25fcf6ef07/lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl">https://files.pythonhosted.org/packages/30/c0/d0526314971fc661b083ab135747dc68446a3022686da8c16d25fcf6ef07/lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - breadability-0.1.20.tar.gz - :x: **lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> lxml is a library for processing XML and HTML in the Python language. Prior to version 4.6.5, the HTML Cleaner in lxml.html lets certain crafted script content pass through, as well as script content in SVG files embedded using data URIs. Users that employ the HTML cleaner in a security relevant context should upgrade to lxml 4.6.5 to receive a patch. There are no known workarounds available. <p>Publish Date: 2021-12-13 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43818>CVE-2021-43818</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/lxml/lxml/security/advisories/GHSA-55x5-fj6c-h6m8">https://github.com/lxml/lxml/security/advisories/GHSA-55x5-fj6c-h6m8</a></p> <p>Release Date: 2021-12-13</p> <p>Fix Resolution: lxml - 4.6.5</p> </p> <p></p> </details> <!-- <REMEDIATE>[{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"nltk","packageVersion":"3.5","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;nltk:3.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nltk - 3.6.4;nltk - 3.6.4","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-3828","vulnerabilityDetails":"nltk is vulnerable to Inefficient Regular Expression Complexity","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3828","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}},{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"nltk","packageVersion":"3.5","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;nltk:3.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nltk - 3.6.6","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-3842","vulnerabilityDetails":"nltk is vulnerable to Inefficient Regular Expression Complexity","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3842","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}},{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"nltk","packageVersion":"3.5","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;nltk:3.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nltk - 3.6.6","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-43854","vulnerabilityDetails":"NLTK (Natural Language Toolkit) is a suite of open source Python modules, data sets, and tutorials supporting research and development in Natural Language Processing. Versions prior to 3.6.5 are vulnerable to regular expression denial of service (ReDoS) attacks. The vulnerability is present in PunktSentenceTokenizer, sent_tokenize and word_tokenize. Any users of this class, or these two functions, are vulnerable to the ReDoS attack. In short, a specifically crafted long input to any of these vulnerable functions will cause them to take a significant amount of execution time. If your program relies on any of the vulnerable functions for tokenizing unpredictable user input, then we would strongly recommend upgrading to a version of NLTK without the vulnerability. For users unable to upgrade the execution time can be bounded by limiting the maximum length of an input to any of the vulnerable functions. Our recommendation is to implement such a limit.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43854","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}},{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"lxml","packageVersion":"4.6.3","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;breadability:0.1.20;lxml:4.6.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lxml - 4.6.5","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-43818","vulnerabilityDetails":"lxml is a library for processing XML and HTML in the Python language. Prior to version 4.6.5, the HTML Cleaner in lxml.html lets certain crafted script content pass through, as well as script content in SVG files embedded using data URIs. Users that employ the HTML cleaner in a security relevant context should upgrade to lxml 4.6.5 to receive a patch. There are no known workarounds available.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43818","cvss3Severity":"high","cvss3Score":"7.1","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}]</REMEDIATE> -->
True
sumy-0.8.1-py2.py3-none-any.whl: 4 vulnerabilities (highest severity is: 7.5) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sumy-0.8.1-py2.py3-none-any.whl</b></p></summary> <p></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2021-3828](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3828) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nltk-3.5.zip | Transitive | N/A | ❌ | | [CVE-2021-3842](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3842) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nltk-3.5.zip | Transitive | N/A | ❌ | | [CVE-2021-43854](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43854) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | nltk-3.5.zip | Transitive | N/A | ❌ | | [CVE-2021-43818](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43818) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.1 | lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl | Transitive | N/A | ❌ | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-3828</summary> ### Vulnerable Library - <b>nltk-3.5.zip</b></p> <p>Natural Language Toolkit</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip">https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - :x: **nltk-3.5.zip** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> nltk is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-09-27 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3828>CVE-2021-3828</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2021-3828">https://nvd.nist.gov/vuln/detail/CVE-2021-3828</a></p> <p>Release Date: 2021-09-27</p> <p>Fix Resolution: nltk - 3.6.4;nltk - 3.6.4</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-3842</summary> ### Vulnerable Library - <b>nltk-3.5.zip</b></p> <p>Natural Language Toolkit</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip">https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - :x: **nltk-3.5.zip** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> nltk is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2022-01-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3842>CVE-2021-3842</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/nltk/nltk/security/advisories/GHSA-f8m6-h2c7-8h9x">https://github.com/nltk/nltk/security/advisories/GHSA-f8m6-h2c7-8h9x</a></p> <p>Release Date: 2022-01-04</p> <p>Fix Resolution: nltk - 3.6.6</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-43854</summary> ### Vulnerable Library - <b>nltk-3.5.zip</b></p> <p>Natural Language Toolkit</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip">https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - :x: **nltk-3.5.zip** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> NLTK (Natural Language Toolkit) is a suite of open source Python modules, data sets, and tutorials supporting research and development in Natural Language Processing. Versions prior to 3.6.5 are vulnerable to regular expression denial of service (ReDoS) attacks. The vulnerability is present in PunktSentenceTokenizer, sent_tokenize and word_tokenize. Any users of this class, or these two functions, are vulnerable to the ReDoS attack. In short, a specifically crafted long input to any of these vulnerable functions will cause them to take a significant amount of execution time. If your program relies on any of the vulnerable functions for tokenizing unpredictable user input, then we would strongly recommend upgrading to a version of NLTK without the vulnerability. For users unable to upgrade the execution time can be bounded by limiting the maximum length of an input to any of the vulnerable functions. Our recommendation is to implement such a limit. <p>Publish Date: 2021-12-23 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43854>CVE-2021-43854</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43854">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43854</a></p> <p>Release Date: 2021-12-23</p> <p>Fix Resolution: nltk - 3.6.6</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-43818</summary> ### Vulnerable Library - <b>lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl</b></p> <p>Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/30/c0/d0526314971fc661b083ab135747dc68446a3022686da8c16d25fcf6ef07/lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl">https://files.pythonhosted.org/packages/30/c0/d0526314971fc661b083ab135747dc68446a3022686da8c16d25fcf6ef07/lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - sumy-0.8.1-py2.py3-none-any.whl (Root Library) - breadability-0.1.20.tar.gz - :x: **lxml-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/NirShaharabani/WStest/commit/34a70744391d98b49e5f0b8be8fc254a3cf2cf43">34a70744391d98b49e5f0b8be8fc254a3cf2cf43</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> lxml is a library for processing XML and HTML in the Python language. Prior to version 4.6.5, the HTML Cleaner in lxml.html lets certain crafted script content pass through, as well as script content in SVG files embedded using data URIs. Users that employ the HTML cleaner in a security relevant context should upgrade to lxml 4.6.5 to receive a patch. There are no known workarounds available. <p>Publish Date: 2021-12-13 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43818>CVE-2021-43818</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/lxml/lxml/security/advisories/GHSA-55x5-fj6c-h6m8">https://github.com/lxml/lxml/security/advisories/GHSA-55x5-fj6c-h6m8</a></p> <p>Release Date: 2021-12-13</p> <p>Fix Resolution: lxml - 4.6.5</p> </p> <p></p> </details> <!-- <REMEDIATE>[{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"nltk","packageVersion":"3.5","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;nltk:3.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nltk - 3.6.4;nltk - 3.6.4","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-3828","vulnerabilityDetails":"nltk is vulnerable to Inefficient Regular Expression Complexity","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3828","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}},{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"nltk","packageVersion":"3.5","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;nltk:3.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nltk - 3.6.6","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-3842","vulnerabilityDetails":"nltk is vulnerable to Inefficient Regular Expression Complexity","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3842","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}},{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"nltk","packageVersion":"3.5","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;nltk:3.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nltk - 3.6.6","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-43854","vulnerabilityDetails":"NLTK (Natural Language Toolkit) is a suite of open source Python modules, data sets, and tutorials supporting research and development in Natural Language Processing. Versions prior to 3.6.5 are vulnerable to regular expression denial of service (ReDoS) attacks. The vulnerability is present in PunktSentenceTokenizer, sent_tokenize and word_tokenize. Any users of this class, or these two functions, are vulnerable to the ReDoS attack. In short, a specifically crafted long input to any of these vulnerable functions will cause them to take a significant amount of execution time. If your program relies on any of the vulnerable functions for tokenizing unpredictable user input, then we would strongly recommend upgrading to a version of NLTK without the vulnerability. For users unable to upgrade the execution time can be bounded by limiting the maximum length of an input to any of the vulnerable functions. Our recommendation is to implement such a limit.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43854","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}},{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"lxml","packageVersion":"4.6.3","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"sumy:0.8.1;breadability:0.1.20;lxml:4.6.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lxml - 4.6.5","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-43818","vulnerabilityDetails":"lxml is a library for processing XML and HTML in the Python language. Prior to version 4.6.5, the HTML Cleaner in lxml.html lets certain crafted script content pass through, as well as script content in SVG files embedded using data URIs. Users that employ the HTML cleaner in a security relevant context should upgrade to lxml 4.6.5 to receive a patch. There are no known workarounds available.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-43818","cvss3Severity":"high","cvss3Score":"7.1","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}]</REMEDIATE> -->
non_test
sumy none any whl vulnerabilities highest severity is vulnerable library sumy none any whl path to dependency file requirements txt path to vulnerable library requirements txt found in head commit a href vulnerabilities cve severity cvss dependency type fixed in remediation available high nltk zip transitive n a ❌ high nltk zip transitive n a ❌ high nltk zip transitive n a ❌ high lxml whl transitive n a ❌ details cve vulnerable library nltk zip natural language toolkit library home page a href path to dependency file requirements txt path to vulnerable library requirements txt dependency hierarchy sumy none any whl root library x nltk zip vulnerable library found in head commit a href found in base branch main vulnerability details nltk is vulnerable to inefficient regular expression complexity publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution nltk nltk cve vulnerable library nltk zip natural language toolkit library home page a href path to dependency file requirements txt path to vulnerable library requirements txt dependency hierarchy sumy none any whl root library x nltk zip vulnerable library found in head commit a href found in base branch main vulnerability details nltk is vulnerable to inefficient regular expression complexity publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution nltk cve vulnerable library nltk zip natural language toolkit library home page a href path to dependency file requirements txt path to vulnerable library requirements txt dependency hierarchy sumy none any whl root library x nltk zip vulnerable library found in head commit a href found in base branch main vulnerability details nltk natural language toolkit is a suite of open source python modules data sets and tutorials supporting research and development in natural language processing versions prior to are vulnerable to regular expression denial of service redos attacks the vulnerability is present in punktsentencetokenizer sent tokenize and word tokenize any users of this class or these two functions are vulnerable to the redos attack in short a specifically crafted long input to any of these vulnerable functions will cause them to take a significant amount of execution time if your program relies on any of the vulnerable functions for tokenizing unpredictable user input then we would strongly recommend upgrading to a version of nltk without the vulnerability for users unable to upgrade the execution time can be bounded by limiting the maximum length of an input to any of the vulnerable functions our recommendation is to implement such a limit publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution nltk cve vulnerable library lxml whl powerful and pythonic xml processing library combining libxslt with the elementtree api library home page a href path to dependency file requirements txt path to vulnerable library requirements txt dependency hierarchy sumy none any whl root library breadability tar gz x lxml whl vulnerable library found in head commit a href found in base branch main vulnerability details lxml is a library for processing xml and html in the python language prior to version the html cleaner in lxml html lets certain crafted script content pass through as well as script content in svg files embedded using data uris users that employ the html cleaner in a security relevant context should upgrade to lxml to receive a patch there are no known workarounds available publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution lxml istransitivedependency true dependencytree sumy nltk isminimumfixversionavailable true minimumfixversion nltk nltk isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails nltk is vulnerable to inefficient regular expression complexity vulnerabilityurl istransitivedependency true dependencytree sumy nltk isminimumfixversionavailable true minimumfixversion nltk isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails nltk is vulnerable to inefficient regular expression complexity vulnerabilityurl istransitivedependency true dependencytree sumy nltk isminimumfixversionavailable true minimumfixversion nltk isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails nltk natural language toolkit is a suite of open source python modules data sets and tutorials supporting research and development in natural language processing versions prior to are vulnerable to regular expression denial of service redos attacks the vulnerability is present in punktsentencetokenizer sent tokenize and word tokenize any users of this class or these two functions are vulnerable to the redos attack in short a specifically crafted long input to any of these vulnerable functions will cause them to take a significant amount of execution time if your program relies on any of the vulnerable functions for tokenizing unpredictable user input then we would strongly recommend upgrading to a version of nltk without the vulnerability for users unable to upgrade the execution time can be bounded by limiting the maximum length of an input to any of the vulnerable functions our recommendation is to implement such a limit vulnerabilityurl istransitivedependency true dependencytree sumy breadability lxml isminimumfixversionavailable true minimumfixversion lxml isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails lxml is a library for processing xml and html in the python language prior to version the html cleaner in lxml html lets certain crafted script content pass through as well as script content in svg files embedded using data uris users that employ the html cleaner in a security relevant context should upgrade to lxml to receive a patch there are no known workarounds available vulnerabilityurl
0
56,275
6,515,475,541
IssuesEvent
2017-08-26 16:12:45
matthiasbeyer/imag
https://api.github.com/repos/matthiasbeyer/imag
closed
Test linking library
complexity/high kind/enhancement meta/importance/medium part/lib/imagentrylink test/missing
I'd love to have some tests for the `libimaglink` library. I do not know how to test this functionality, though.
1.0
Test linking library - I'd love to have some tests for the `libimaglink` library. I do not know how to test this functionality, though.
test
test linking library i d love to have some tests for the libimaglink library i do not know how to test this functionality though
1
214,611
16,601,016,062
IssuesEvent
2021-06-01 19:27:56
Slimefun/Slimefun4
https://api.github.com/repos/Slimefun/Slimefun4
closed
Item "GPS_TRANSMITTER" from Slimefun vRC - 23 (git b666b60a) has caused an Error
🎯 Needs testing 🐞 Bug Report
>.... [20:09:05 ERROR]: [Slimefun] Item "GPS_TRANSMITTER" from Slimefun vRC - 23 (git b666b60a) has caused an Error! >.... [20:09:05 ERROR]: [Slimefun] You can report it here: https://github.com/Slimefun/Slimefun4/issues >.... [20:09:05 ERROR]: [Slimefun] Could not pass "BlockBreakHandler" for - 'GPS_TRANSMITTER' (Slimefun vRC - 23 (git b666b60a)) java.lang.NullPointerException: null at java.util.UUID.fromString(UUID.java:197) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.items.gps.GPSTransmitter$2.onPlayerBreak(GPSTransmitter.java:64) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.listeners.BlockListener.lambda$callBlockHandler$2(BlockListener.java:157) ~[?:?] at me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem.callItemHandler(SlimefunItem.java:953) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.listeners.BlockListener.callBlockHandler(BlockListener.java:157) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.listeners.BlockListener.onBlockBreak(BlockListener.java:125) ~[?:?] at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor637.execute(Unknown Source) ~[?:?] at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69) ~[patched_1.16.5.jar:git-Purpur-1151] at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[patched_1.16.5.jar:git-Purpur-1151] at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[patched_1.16.5.jar:git-Purpur-1151] at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerInteractManager.breakBlock(PlayerInteractManager.java:392) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerInteractManager.a(PlayerInteractManager.java:345) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerInteractManager.a(PlayerInteractManager.java:305) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:1779) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PacketPlayInBlockDig.a(SourceFile:40) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PacketPlayInBlockDig.a(SourceFile:10) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeAll(IAsyncTaskHandler.java:95) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1469) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1142) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293) ~[patched_1.16.5.jar:git-Purpur-1151] at java.lang.Thread.run(Thread.java:834) [?:?]
1.0
Item "GPS_TRANSMITTER" from Slimefun vRC - 23 (git b666b60a) has caused an Error - >.... [20:09:05 ERROR]: [Slimefun] Item "GPS_TRANSMITTER" from Slimefun vRC - 23 (git b666b60a) has caused an Error! >.... [20:09:05 ERROR]: [Slimefun] You can report it here: https://github.com/Slimefun/Slimefun4/issues >.... [20:09:05 ERROR]: [Slimefun] Could not pass "BlockBreakHandler" for - 'GPS_TRANSMITTER' (Slimefun vRC - 23 (git b666b60a)) java.lang.NullPointerException: null at java.util.UUID.fromString(UUID.java:197) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.items.gps.GPSTransmitter$2.onPlayerBreak(GPSTransmitter.java:64) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.listeners.BlockListener.lambda$callBlockHandler$2(BlockListener.java:157) ~[?:?] at me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem.callItemHandler(SlimefunItem.java:953) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.listeners.BlockListener.callBlockHandler(BlockListener.java:157) ~[?:?] at io.github.thebusybiscuit.slimefun4.implementation.listeners.BlockListener.onBlockBreak(BlockListener.java:125) ~[?:?] at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor637.execute(Unknown Source) ~[?:?] at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69) ~[patched_1.16.5.jar:git-Purpur-1151] at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[patched_1.16.5.jar:git-Purpur-1151] at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[patched_1.16.5.jar:git-Purpur-1151] at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerInteractManager.breakBlock(PlayerInteractManager.java:392) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerInteractManager.a(PlayerInteractManager.java:345) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerInteractManager.a(PlayerInteractManager.java:305) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:1779) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PacketPlayInBlockDig.a(SourceFile:40) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PacketPlayInBlockDig.a(SourceFile:10) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeAll(IAsyncTaskHandler.java:95) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1469) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1142) ~[patched_1.16.5.jar:git-Purpur-1151] at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293) ~[patched_1.16.5.jar:git-Purpur-1151] at java.lang.Thread.run(Thread.java:834) [?:?]
test
item gps transmitter from slimefun vrc git has caused an error item gps transmitter from slimefun vrc git has caused an error you can report it here could not pass blockbreakhandler for gps transmitter slimefun vrc git java lang nullpointerexception null at java util uuid fromstring uuid java at io github thebusybiscuit implementation items gps gpstransmitter onplayerbreak gpstransmitter java at io github thebusybiscuit implementation listeners blocklistener lambda callblockhandler blocklistener java at me mrcookieslime slimefun objects slimefunitem slimefunitem callitemhandler slimefunitem java at io github thebusybiscuit implementation listeners blocklistener callblockhandler blocklistener java at io github thebusybiscuit implementation listeners blocklistener onblockbreak blocklistener java at com destroystokyo paper event executor asm generated execute unknown source at org bukkit plugin eventexecutor lambda create eventexecutor java at co aikar timings timedeventexecutor execute timedeventexecutor java at org bukkit plugin registeredlistener callevent registeredlistener java at org bukkit plugin simplepluginmanager callevent simplepluginmanager java at net minecraft server playerinteractmanager breakblock playerinteractmanager java at net minecraft server playerinteractmanager a playerinteractmanager java at net minecraft server playerinteractmanager a playerinteractmanager java at net minecraft server playerconnection a playerconnection java at net minecraft server packetplayinblockdig a sourcefile at net minecraft server packetplayinblockdig a sourcefile at net minecraft server playerconnectionutils lambda ensuremainthread playerconnectionutils java at net minecraft server ticktask run sourcefile at net minecraft server iasynctaskhandler executetask iasynctaskhandler java at net minecraft server iasynctaskhandlerreentrant executetask sourcefile at net minecraft server iasynctaskhandler executenext iasynctaskhandler java at net minecraft server minecraftserver bb minecraftserver java at net minecraft server minecraftserver executenext minecraftserver java at net minecraft server iasynctaskhandler executeall iasynctaskhandler java at net minecraft server minecraftserver a minecraftserver java at net minecraft server minecraftserver w minecraftserver java at net minecraft server minecraftserver lambda a minecraftserver java at java lang thread run thread java
1
350,809
31,932,341,133
IssuesEvent
2023-09-19 08:17:19
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
opened
Fix random.test_jax_logistic
JAX Frontend Sub Task Failing Test
| | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/6219910913"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/6219910913"><img src=https://img.shields.io/badge/-failure-red></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/6219910913"><img src=https://img.shields.io/badge/-failure-red></a>
1.0
Fix random.test_jax_logistic - | | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/6219910913"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/6219910913"><img src=https://img.shields.io/badge/-failure-red></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/6219910913"><img src=https://img.shields.io/badge/-failure-red></a>
test
fix random test jax logistic tensorflow a href src numpy a href src jax a href src
1
54,556
6,827,787,865
IssuesEvent
2017-11-08 18:11:09
Automattic/wp-calypso
https://api.github.com/repos/Automattic/wp-calypso
opened
Comments: make inline post title text stand out
Comments Design [Type] Enhancement
We need a subtile way to distinguish the post title text within comments. Current example (Update your Gravatar on WordPress.com): ![screen shot 2017-11-08 at 12 06 26 pm](https://user-images.githubusercontent.com/618551/32566366-4d7307da-c47d-11e7-9fb5-1fcc40fb05fe.png) ![screen shot 2017-11-08 at 12 06 21 pm](https://user-images.githubusercontent.com/618551/32566370-4fe59af0-c47d-11e7-86e6-54fc641b4dde.png) We have received feedback that it blends in, and it's hard to distinguish amongst the other comment text. I agree. Here is one way we can do that: - use Merriweather - add author avatar ![screen shot 2017-11-08 at 12 09 00 pm](https://user-images.githubusercontent.com/618551/32566470-a6025be4-c47d-11e7-827a-14cac880bab3.png) if the avatar is too much, we can drop it. I think just the font change will help a lot.
1.0
Comments: make inline post title text stand out - We need a subtile way to distinguish the post title text within comments. Current example (Update your Gravatar on WordPress.com): ![screen shot 2017-11-08 at 12 06 26 pm](https://user-images.githubusercontent.com/618551/32566366-4d7307da-c47d-11e7-9fb5-1fcc40fb05fe.png) ![screen shot 2017-11-08 at 12 06 21 pm](https://user-images.githubusercontent.com/618551/32566370-4fe59af0-c47d-11e7-86e6-54fc641b4dde.png) We have received feedback that it blends in, and it's hard to distinguish amongst the other comment text. I agree. Here is one way we can do that: - use Merriweather - add author avatar ![screen shot 2017-11-08 at 12 09 00 pm](https://user-images.githubusercontent.com/618551/32566470-a6025be4-c47d-11e7-827a-14cac880bab3.png) if the avatar is too much, we can drop it. I think just the font change will help a lot.
non_test
comments make inline post title text stand out we need a subtile way to distinguish the post title text within comments current example update your gravatar on wordpress com we have received feedback that it blends in and it s hard to distinguish amongst the other comment text i agree here is one way we can do that use merriweather add author avatar if the avatar is too much we can drop it i think just the font change will help a lot
0
108,471
9,308,523,102
IssuesEvent
2019-03-25 14:43:34
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
standalone_2/io/arguments_test failing on vm-kernel-precomp
area-test gardening
The kernel-precomp test harness passes runtime arguments to the compiler instead of the runtime, so this test for runtime access to script arguments is failing until the harness is fixed. This problem started with the commit of https://dart-review.googlesource.com/c/sdk/+/93302 and has a log at https://dart-ci.appspot.com/log/vm-kernel-precomp-linux-debug-x64/latest/standalone_2/io/arguments_test it fails on builders: | BOT | TEST | RESULT | EXPECTED | | --------------------------------------------- | ------------------------------ | ------------ | -------- | | vm-kernel-precomp-bare-linux-release-simarm | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-bare-linux-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-bare-linux-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-debug-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-product-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-release-simarm | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-mac-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-obfuscate-linux-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-win-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-win-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass |
1.0
standalone_2/io/arguments_test failing on vm-kernel-precomp - The kernel-precomp test harness passes runtime arguments to the compiler instead of the runtime, so this test for runtime access to script arguments is failing until the harness is fixed. This problem started with the commit of https://dart-review.googlesource.com/c/sdk/+/93302 and has a log at https://dart-ci.appspot.com/log/vm-kernel-precomp-linux-debug-x64/latest/standalone_2/io/arguments_test it fails on builders: | BOT | TEST | RESULT | EXPECTED | | --------------------------------------------- | ------------------------------ | ------------ | -------- | | vm-kernel-precomp-bare-linux-release-simarm | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-bare-linux-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-bare-linux-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-debug-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-product-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-release-simarm | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-linux-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-mac-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-obfuscate-linux-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-win-release-simarm64 | standalone_2/io/arguments_test | RuntimeError | Pass | | vm-kernel-precomp-win-release-x64 | standalone_2/io/arguments_test | RuntimeError | Pass |
test
standalone io arguments test failing on vm kernel precomp the kernel precomp test harness passes runtime arguments to the compiler instead of the runtime so this test for runtime access to script arguments is failing until the harness is fixed this problem started with the commit of and has a log at it fails on builders bot test result expected vm kernel precomp bare linux release simarm standalone io arguments test runtimeerror pass vm kernel precomp bare linux release standalone io arguments test runtimeerror pass vm kernel precomp bare linux release standalone io arguments test runtimeerror pass vm kernel precomp linux debug standalone io arguments test runtimeerror pass vm kernel precomp linux product standalone io arguments test runtimeerror pass vm kernel precomp linux release simarm standalone io arguments test runtimeerror pass vm kernel precomp linux release standalone io arguments test runtimeerror pass vm kernel precomp linux release standalone io arguments test runtimeerror pass vm kernel precomp mac release standalone io arguments test runtimeerror pass vm kernel precomp obfuscate linux release standalone io arguments test runtimeerror pass vm kernel precomp win release standalone io arguments test runtimeerror pass vm kernel precomp win release standalone io arguments test runtimeerror pass
1
142,239
11,459,929,772
IssuesEvent
2020-02-07 08:37:30
rsx-labs/aide-frontend
https://api.github.com/repos/rsx-labs/aide-frontend
closed
[Resource Planner] Add handling of halfday Onsite work
Bug For QA Testing High Priority
**Describe the bug** Contacts is sets as Work From Home. Shift is set as Semi-Flex. On HSL morning but not yet logged in AIDE. Once logged in, attendance shows L. Once HSL is applied, attendance shows HSL/L. **Expected behavior** Attendance should be HSL/O. **Version (please complete the following information):** - Version 3.1.0
1.0
[Resource Planner] Add handling of halfday Onsite work - **Describe the bug** Contacts is sets as Work From Home. Shift is set as Semi-Flex. On HSL morning but not yet logged in AIDE. Once logged in, attendance shows L. Once HSL is applied, attendance shows HSL/L. **Expected behavior** Attendance should be HSL/O. **Version (please complete the following information):** - Version 3.1.0
test
add handling of halfday onsite work describe the bug contacts is sets as work from home shift is set as semi flex on hsl morning but not yet logged in aide once logged in attendance shows l once hsl is applied attendance shows hsl l expected behavior attendance should be hsl o version please complete the following information version
1
214,110
24,040,587,248
IssuesEvent
2022-09-16 01:04:01
turkdevops/sanity
https://api.github.com/repos/turkdevops/sanity
opened
CVE-2022-3224 (High) detected in parse-url-5.0.2.tgz
security vulnerability
## CVE-2022-3224 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>parse-url-5.0.2.tgz</b></p></summary> <p>An advanced url parser supporting git urls too.</p> <p>Library home page: <a href="https://registry.npmjs.org/parse-url/-/parse-url-5.0.2.tgz">https://registry.npmjs.org/parse-url/-/parse-url-5.0.2.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/parse-url/package.json</p> <p> Dependency Hierarchy: - lerna-3.22.1.tgz (Root Library) - version-3.22.1.tgz - github-client-3.22.0.tgz - git-url-parse-11.4.4.tgz - git-up-4.0.2.tgz - :x: **parse-url-5.0.2.tgz** (Vulnerable Library) <p>Found in base branch: <b>next</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Misinterpretation of Input in GitHub repository ionicabizau/parse-url prior to 8.1.0. <p>Publish Date: 2022-09-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-3224>CVE-2022-3224</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.4</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3224">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3224</a></p> <p>Release Date: 2022-09-15</p> <p>Fix Resolution: parse-url - 8.1.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-3224 (High) detected in parse-url-5.0.2.tgz - ## CVE-2022-3224 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>parse-url-5.0.2.tgz</b></p></summary> <p>An advanced url parser supporting git urls too.</p> <p>Library home page: <a href="https://registry.npmjs.org/parse-url/-/parse-url-5.0.2.tgz">https://registry.npmjs.org/parse-url/-/parse-url-5.0.2.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/parse-url/package.json</p> <p> Dependency Hierarchy: - lerna-3.22.1.tgz (Root Library) - version-3.22.1.tgz - github-client-3.22.0.tgz - git-url-parse-11.4.4.tgz - git-up-4.0.2.tgz - :x: **parse-url-5.0.2.tgz** (Vulnerable Library) <p>Found in base branch: <b>next</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Misinterpretation of Input in GitHub repository ionicabizau/parse-url prior to 8.1.0. <p>Publish Date: 2022-09-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-3224>CVE-2022-3224</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.4</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3224">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3224</a></p> <p>Release Date: 2022-09-15</p> <p>Fix Resolution: parse-url - 8.1.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve high detected in parse url tgz cve high severity vulnerability vulnerable library parse url tgz an advanced url parser supporting git urls too library home page a href path to dependency file package json path to vulnerable library node modules parse url package json dependency hierarchy lerna tgz root library version tgz github client tgz git url parse tgz git up tgz x parse url tgz vulnerable library found in base branch next vulnerability details misinterpretation of input in github repository ionicabizau parse url prior to publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution parse url step up your open source security game with mend
0
81,297
7,778,139,613
IssuesEvent
2018-06-05 13:25:41
fabric8io/fabric8-test
https://api.github.com/repos/fabric8io/fabric8-test
opened
Create a test interacting with Che
E2E-test
E2E tests should be expanded to also do something meaningful inside Che. Suggestions: 1. build project 2. start the app 3. change source code 4. verify that hot redeploy works 5. commit and push the change 6. verify that new build starts 7. verify that application works (#588) We could call Java-based tests created by Che QE team instead of re-implemening it in our tests, see https://github.com/fabric8io/fabric8-test/issues/494#issuecomment-380021248
1.0
Create a test interacting with Che - E2E tests should be expanded to also do something meaningful inside Che. Suggestions: 1. build project 2. start the app 3. change source code 4. verify that hot redeploy works 5. commit and push the change 6. verify that new build starts 7. verify that application works (#588) We could call Java-based tests created by Che QE team instead of re-implemening it in our tests, see https://github.com/fabric8io/fabric8-test/issues/494#issuecomment-380021248
test
create a test interacting with che tests should be expanded to also do something meaningful inside che suggestions build project start the app change source code verify that hot redeploy works commit and push the change verify that new build starts verify that application works we could call java based tests created by che qe team instead of re implemening it in our tests see
1
618,601
19,476,667,318
IssuesEvent
2021-12-24 13:55:14
StephanAkkerman/FinTwit_Bot
https://api.github.com/repos/StephanAkkerman/FinTwit_Bot
opened
Also implement StockTwits
Low priority :3rd_place_medal: New feature :star:
StockTwits is basically same a Twitter but then specifically for tweets about stocks / crypto. https://github.com/khmurakami/pystocktwits
1.0
Also implement StockTwits - StockTwits is basically same a Twitter but then specifically for tweets about stocks / crypto. https://github.com/khmurakami/pystocktwits
non_test
also implement stocktwits stocktwits is basically same a twitter but then specifically for tweets about stocks crypto
0
769,439
27,005,615,518
IssuesEvent
2023-02-10 11:23:47
AbsaOSS/enceladus
https://api.github.com/repos/AbsaOSS/enceladus
closed
Audit log failing with code changes due to Spark 3
bug Menas priority: high Rest-API
**Issue observed in branch: [feature/2037-develop-spark-3-redone](https://github.com/AbsaOSS/enceladus/tree/feature/2037-develop-spark-3-redone). After merge of this issue there were agreement to re-test develop for this issue again.** Preconditions: - Menas UI is running - Schemas menu visible - User can click to New Schema Steps: - User click to New Schema button and fill form. - User click select newly created schema in menu and click to Edit button. - Edit update description field and confirm. - User will wait or user click to Audit trail button Expected: - when waiting no failure visible - when clicked to Audit trail then full history is visible Actual: - when waiting - error dialog shown in short time - when clicked to Audit trail then User can see loading Audit trail table and in short time error dialog Tips from later (API) testing (black code approach) - similar problem found after disabling a schema ==> problem with creation of schema versions - API test details: Request timeout expired. - observed on v2 and v3 API - Same problem found for Dataset, Mapping Rule and Dataset Properties (where get trail version is not available in Menas UI) Observed error dialog: ![image](https://user-images.githubusercontent.com/109138042/212332369-5db97021-58e1-47b1-9897-6503395a524c.png) Server console output: `java.lang.NoSuchMethodError: scala.Predef$.refArrayOps([Ljava/lang/Object;)Lscala/collection/mutable/ArrayOps; at za.co.absa.enceladus.model.backend.audit.Auditable.getFieldIndex(Auditable.scala:36) at za.co.absa.enceladus.model.backend.audit.Auditable.$anonfun$getPrimitiveFieldsAudit$1(Auditable.scala:46) at scala.collection.immutable.List.map(List.scala:293) at za.co.absa.enceladus.model.backend.audit.Auditable.getPrimitiveFieldsAudit(Auditable.scala:45) at za.co.absa.enceladus.model.backend.audit.Auditable.getPrimitiveFieldsAudit$(Auditable.scala:44) at za.co.absa.enceladus.model.Schema.getAuditMessages(Schema.scala:67) at za.co.absa.enceladus.model.Schema.getAuditMessages(Schema.scala:25) at za.co.absa.enceladus.rest_api.services.VersionedModelService.$anonfun$getAuditTrail$2(VersionedModelService.scala:180) at scala.collection.Iterator$$anon$10.next(Iterator.scala:461) at scala.collection.Iterator.toStream(Iterator.scala:1417) at scala.collection.Iterator.toStream$(Iterator.scala:1416) at scala.collection.AbstractIterator.toStream(Iterator.scala:1431) at scala.collection.TraversableOnce.toSeq(TraversableOnce.scala:336) at scala.collection.TraversableOnce.toSeq$(TraversableOnce.scala:336) at scala.collection.AbstractIterator.toSeq(Iterator.scala:1431) at za.co.absa.enceladus.rest_api.services.VersionedModelService.$anonfun$getAuditTrail$1(VersionedModelService.scala:180) at scala.concurrent.Future.$anonfun$flatMap$1(Future.scala:307) at scala.concurrent.impl.Promise.$anonfun$transformWith$1(Promise.scala:41) at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:64) at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1402) at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [ERROR] 2022-12-13 14:56:03,975 [http-nio-8080-exec-8] za.co.absa.enceladus.rest_api.controllers.RestExceptionHandler - Exception: RestResponse(Request timeout expired.,Some(RequestTimeoutExpiredError(request_timeout_expired)),2022-12-13T13:56:03.975Z[UTC],dce3eee5-3fd9-41da-af4c-5016d0d1274e) org.springframework.web.context.request.async.AsyncRequestTimeoutException at org.springframework.web.context.request.async.TimeoutDeferredResultProcessingInterceptor.handleTimeout(TimeoutDeferredResultProcessingInterceptor.java:42) at org.springframework.web.context.request.async.DeferredResultInterceptorChain.triggerAfterTimeout(DeferredResultInterceptorChain.java:79) at org.springframework.web.context.request.async.WebAsyncManager.lambda$startDeferredResultProcessing$5(WebAsyncManager.java:390) at java.util.ArrayList.forEach(ArrayList.java:1259) at org.springframework.web.context.request.async.StandardServletAsyncWebRequest.onTimeout(StandardServletAsyncWebRequest.java:151) at org.apache.catalina.core.AsyncListenerWrapper.fireOnTimeout(AsyncListenerWrapper.java:44) at org.apache.catalina.core.AsyncContextImpl.timeout(AsyncContextImpl.java:135) at org.apache.catalina.connector.CoyoteAdapter.asyncDispatch(CoyoteAdapter.java:147) at org.apache.coyote.AbstractProcessor.dispatch(AbstractProcessor.java:241) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:59) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:750)`
1.0
Audit log failing with code changes due to Spark 3 - **Issue observed in branch: [feature/2037-develop-spark-3-redone](https://github.com/AbsaOSS/enceladus/tree/feature/2037-develop-spark-3-redone). After merge of this issue there were agreement to re-test develop for this issue again.** Preconditions: - Menas UI is running - Schemas menu visible - User can click to New Schema Steps: - User click to New Schema button and fill form. - User click select newly created schema in menu and click to Edit button. - Edit update description field and confirm. - User will wait or user click to Audit trail button Expected: - when waiting no failure visible - when clicked to Audit trail then full history is visible Actual: - when waiting - error dialog shown in short time - when clicked to Audit trail then User can see loading Audit trail table and in short time error dialog Tips from later (API) testing (black code approach) - similar problem found after disabling a schema ==> problem with creation of schema versions - API test details: Request timeout expired. - observed on v2 and v3 API - Same problem found for Dataset, Mapping Rule and Dataset Properties (where get trail version is not available in Menas UI) Observed error dialog: ![image](https://user-images.githubusercontent.com/109138042/212332369-5db97021-58e1-47b1-9897-6503395a524c.png) Server console output: `java.lang.NoSuchMethodError: scala.Predef$.refArrayOps([Ljava/lang/Object;)Lscala/collection/mutable/ArrayOps; at za.co.absa.enceladus.model.backend.audit.Auditable.getFieldIndex(Auditable.scala:36) at za.co.absa.enceladus.model.backend.audit.Auditable.$anonfun$getPrimitiveFieldsAudit$1(Auditable.scala:46) at scala.collection.immutable.List.map(List.scala:293) at za.co.absa.enceladus.model.backend.audit.Auditable.getPrimitiveFieldsAudit(Auditable.scala:45) at za.co.absa.enceladus.model.backend.audit.Auditable.getPrimitiveFieldsAudit$(Auditable.scala:44) at za.co.absa.enceladus.model.Schema.getAuditMessages(Schema.scala:67) at za.co.absa.enceladus.model.Schema.getAuditMessages(Schema.scala:25) at za.co.absa.enceladus.rest_api.services.VersionedModelService.$anonfun$getAuditTrail$2(VersionedModelService.scala:180) at scala.collection.Iterator$$anon$10.next(Iterator.scala:461) at scala.collection.Iterator.toStream(Iterator.scala:1417) at scala.collection.Iterator.toStream$(Iterator.scala:1416) at scala.collection.AbstractIterator.toStream(Iterator.scala:1431) at scala.collection.TraversableOnce.toSeq(TraversableOnce.scala:336) at scala.collection.TraversableOnce.toSeq$(TraversableOnce.scala:336) at scala.collection.AbstractIterator.toSeq(Iterator.scala:1431) at za.co.absa.enceladus.rest_api.services.VersionedModelService.$anonfun$getAuditTrail$1(VersionedModelService.scala:180) at scala.concurrent.Future.$anonfun$flatMap$1(Future.scala:307) at scala.concurrent.impl.Promise.$anonfun$transformWith$1(Promise.scala:41) at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:64) at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1402) at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [ERROR] 2022-12-13 14:56:03,975 [http-nio-8080-exec-8] za.co.absa.enceladus.rest_api.controllers.RestExceptionHandler - Exception: RestResponse(Request timeout expired.,Some(RequestTimeoutExpiredError(request_timeout_expired)),2022-12-13T13:56:03.975Z[UTC],dce3eee5-3fd9-41da-af4c-5016d0d1274e) org.springframework.web.context.request.async.AsyncRequestTimeoutException at org.springframework.web.context.request.async.TimeoutDeferredResultProcessingInterceptor.handleTimeout(TimeoutDeferredResultProcessingInterceptor.java:42) at org.springframework.web.context.request.async.DeferredResultInterceptorChain.triggerAfterTimeout(DeferredResultInterceptorChain.java:79) at org.springframework.web.context.request.async.WebAsyncManager.lambda$startDeferredResultProcessing$5(WebAsyncManager.java:390) at java.util.ArrayList.forEach(ArrayList.java:1259) at org.springframework.web.context.request.async.StandardServletAsyncWebRequest.onTimeout(StandardServletAsyncWebRequest.java:151) at org.apache.catalina.core.AsyncListenerWrapper.fireOnTimeout(AsyncListenerWrapper.java:44) at org.apache.catalina.core.AsyncContextImpl.timeout(AsyncContextImpl.java:135) at org.apache.catalina.connector.CoyoteAdapter.asyncDispatch(CoyoteAdapter.java:147) at org.apache.coyote.AbstractProcessor.dispatch(AbstractProcessor.java:241) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:59) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:750)`
non_test
audit log failing with code changes due to spark issue observed in branch after merge of this issue there were agreement to re test develop for this issue again preconditions menas ui is running schemas menu visible user can click to new schema steps user click to new schema button and fill form user click select newly created schema in menu and click to edit button edit update description field and confirm user will wait or user click to audit trail button expected when waiting no failure visible when clicked to audit trail then full history is visible actual when waiting error dialog shown in short time when clicked to audit trail then user can see loading audit trail table and in short time error dialog tips from later api testing black code approach similar problem found after disabling a schema problem with creation of schema versions api test details request timeout expired observed on and api same problem found for dataset mapping rule and dataset properties where get trail version is not available in menas ui observed error dialog server console output java lang nosuchmethoderror scala predef refarrayops za co absa enceladus rest api controllers restexceptionhandler exception restresponse request timeout expired some requesttimeoutexpirederror request timeout expired org springframework web context request async asyncrequesttimeoutexception at org springframework web context request async timeoutdeferredresultprocessinginterceptor handletimeout timeoutdeferredresultprocessinginterceptor java at org springframework web context request async deferredresultinterceptorchain triggeraftertimeout deferredresultinterceptorchain java at org springframework web context request async webasyncmanager lambda startdeferredresultprocessing webasyncmanager java at java util arraylist foreach arraylist java at org springframework web context request async standardservletasyncwebrequest ontimeout standardservletasyncwebrequest java at org apache catalina core asynclistenerwrapper fireontimeout asynclistenerwrapper java at org apache catalina core asynccontextimpl timeout asynccontextimpl java at org apache catalina connector coyoteadapter asyncdispatch coyoteadapter java at org apache coyote abstractprocessor dispatch abstractprocessor java at org apache coyote abstractprocessorlight process abstractprocessorlight java at org apache coyote abstractprotocol connectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net socketprocessorbase run socketprocessorbase java at org apache tomcat util threads threadpoolexecutor runworker threadpoolexecutor java at org apache tomcat util threads threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java
0
175,855
6,554,800,388
IssuesEvent
2017-09-06 07:48:23
threefoldfoundation/app_backend
https://api.github.com/repos/threefoldfoundation/app_backend
opened
Overview of blocking questions
priority_critical state_question type_question
- Become investor / hoster #16 - What has been decided? Does the contract need to be emailed to the user? User signs 2 copies and sends it to us to countersign? We send 1 copy back? - Payment instructions #63 - What has been decided? Do we need to mention the payment info in the contract? - Node comes online for the first time #64 - We will ask Maxime how we can know this, such that we can mark it as completed in the TODO-list - Odoo integration #76 - We will meet with Pieter/Jacques to see how we can add the Zero-Node orders and user info in Odoo
1.0
Overview of blocking questions - - Become investor / hoster #16 - What has been decided? Does the contract need to be emailed to the user? User signs 2 copies and sends it to us to countersign? We send 1 copy back? - Payment instructions #63 - What has been decided? Do we need to mention the payment info in the contract? - Node comes online for the first time #64 - We will ask Maxime how we can know this, such that we can mark it as completed in the TODO-list - Odoo integration #76 - We will meet with Pieter/Jacques to see how we can add the Zero-Node orders and user info in Odoo
non_test
overview of blocking questions become investor hoster what has been decided does the contract need to be emailed to the user user signs copies and sends it to us to countersign we send copy back payment instructions what has been decided do we need to mention the payment info in the contract node comes online for the first time we will ask maxime how we can know this such that we can mark it as completed in the todo list odoo integration we will meet with pieter jacques to see how we can add the zero node orders and user info in odoo
0
59,692
3,117,449,954
IssuesEvent
2015-09-04 01:21:49
framingeinstein/issues-test
https://api.github.com/repos/framingeinstein/issues-test
opened
My Account: My Wishlist> Add to cart button is not working
priority:normal priority:normal resolution:fixed resolution:fixed
The button Add to Cart located on My Wishlist is not adding the products to the cart.
2.0
My Account: My Wishlist> Add to cart button is not working - The button Add to Cart located on My Wishlist is not adding the products to the cart.
non_test
my account my wishlist add to cart button is not working the button add to cart located on my wishlist is not adding the products to the cart
0
219,232
17,080,941,087
IssuesEvent
2021-07-08 05:02:07
istio/istio
https://api.github.com/repos/istio/istio
closed
"Features" allowlist is still extremely large, not giving coverage
area/test and release lifecycle/automatically-closed lifecycle/stale
The new features tracking in integration tests has not gotten traction, with a large portion of tests still in the allowlist and no usable data being generated in response to these labels. Like all features of Istio, we should either move this up (make it ubiquitous, required, and useful) or out (remove it)
1.0
"Features" allowlist is still extremely large, not giving coverage - The new features tracking in integration tests has not gotten traction, with a large portion of tests still in the allowlist and no usable data being generated in response to these labels. Like all features of Istio, we should either move this up (make it ubiquitous, required, and useful) or out (remove it)
test
features allowlist is still extremely large not giving coverage the new features tracking in integration tests has not gotten traction with a large portion of tests still in the allowlist and no usable data being generated in response to these labels like all features of istio we should either move this up make it ubiquitous required and useful or out remove it
1
72,285
31,564,472,645
IssuesEvent
2023-09-03 16:51:08
cilium/cilium
https://api.github.com/repos/cilium/cilium
closed
Gateway doesn't route from outside of the cluster?
kind/bug needs/triage kind/community-report area/servicemesh feature/l2-announcement
### Is there an existing issue for this? - [X] I have searched the existing issues ### What happened? I'm creating k0s cluster inside docker container using cilium. I'm almost done, but gateway API has problems routing traffic from outside of the cluster. If I open gateway API IP in the browser or curl it from docker container (cluster is inside docker like k3d) I get the following error `upstream connect error or disconnect/reset before headers. reset reason: connection failure`. At first I thought it's routing problem, but then I used busybox to `wget 172.17.0.2:{gateway nodeport}` and it seems like gateway routes the traffic correctly if it's coming from inside of the cluster (I received html page from my frontend). I didn't create any network policies, here are my helm values: ```yaml kubeProxyReplacement: true k8sServiceHost: 127.0.0.1 k8sServicePort: 6443 operator: replicas: 1 bgpControlPlane: enabled: true announce: loadbalancerIP: true l7Proxy: true externalIPs: enabled: true nodePort: enabled: true hostPort: enabled: true gatewayAPI: enabled: true image: pullPolicy: IfNotPresent ipam: mode: kubernetes ipv4: enabled: true ipv6: enabled: false hubble: enabled: true ui: enabled: true relay: enabled: true ``` I've already spent couple days trying to get the cluster to work, so any help would be greatly appreciated. Cilium and cilium-operator do not report any errors. I've tried things specified in docs 'troubleshooting' with no luck. Sadly there are not that many tips on debugging gateways :P ### Cilium Version cilium-cli: 0.15.6 compiled with go1.20.7 on linux/amd64 cilium image (default): v1.14.0 cilium image (stable): v1.14.1 cilium image (running): 1.14.1 ### Kernel Version Linux nixos 6.4.11 #1-NixOS SMP PREEMPT_DYNAMIC Wed Aug 16 16:32:31 UTC 2023 x86_64 GNU/Linux ### Kubernetes Version WARNING: This version information is deprecated and will be replaced with the output from kubectl version --short. Use --output=yaml|json to get the full version. Client Version: version.Info{Major:"1", Minor:"27", GitVersion:"v1.27.4", GitCommit:"fa3d7990104d7c1f16943a67f11b154b71f6a132", GitTreeState:"archive", BuildDate:"1980-01-01T00:00:00Z", GoVersion:"go1.20.6", Compiler:"gc", Platform:"linux/amd64"} Kustomize Version: v5.0.1 Server Version: version.Info{Major:"1", Minor:"27", GitVersion:"v1.27.4+k0s", GitCommit:"fa3d7990104d7c1f16943a67f11b154b71f6a132", GitTreeState:"clean", BuildDate:"2023-07-25T13:41:21Z", GoVersion:"go1.20.6", Compiler:"gc", Platform:"linux/amd64"} ### Sysdump [cilium-sysdump-20230827-125444.zip](https://github.com/cilium/cilium/files/12447799/cilium-sysdump-20230827-125444.zip) ### Relevant log output _No response_ ### Anything else? I think that the hint to solve this is the fact that gateway is accessible from inside the cluster. It's either networking error or configuration error. I'm pretty new to networking stuff, so I might be misunderstanding some things, but here are some `ip` logs: - from inside the cluster (busybox pod) ``` / # ip r default via 10.244.0.125 dev eth0 10.244.0.125 dev eth0 scope link / # ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 74: eth0@if75: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue qlen 1000 link/ether 1e:b5:e0:fb:4e:8f brd ff:ff:ff:ff:ff:ff inet 10.244.0.115/32 scope global eth0 valid_lft forever preferred_lft forever inet6 fe80::1cb5:e0ff:fefb:4e8f/64 scope link valid_lft forever preferred_lft forever ``` - docker container hosting cilium ``` k0s:/# ip r default via 172.17.0.1 dev eth0 10.244.0.0/24 via 10.244.0.125 dev cilium_host src 10.244.0.125 10.244.0.125 dev cilium_host scope link 172.17.0.0/16 dev eth0 scope link src 172.17.0.2 k0s:/# ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever 2: cilium_net@cilium_host: <BROADCAST,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether a2:5b:a0:4f:87:37 brd ff:ff:ff:ff:ff:ff 3: cilium_host@cilium_net: <BROADCAST,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 72:44:d0:e4:7d:fe brd ff:ff:ff:ff:ff:ff inet 10.244.0.125/32 scope global cilium_host valid_lft forever preferred_lft forever 4: cilium_vxlan: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN qlen 1000 link/ether 56:5e:d7:69:6b:f1 brd ff:ff:ff:ff:ff:ff 6: lxc_health@if5: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ea:f0:96:f2:93:ae brd ff:ff:ff:ff:ff:ff 8: lxc9c02f0a58e09@if7: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 56:74:72:d9:93:dd brd ff:ff:ff:ff:ff:ff 10: lxc38ca98118dbc@if9: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether de:14:cd:1b:2e:5c brd ff:ff:ff:ff:ff:ff 12: lxcbede8921cf60@if11: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ce:0a:98:27:55:1f brd ff:ff:ff:ff:ff:ff 14: lxc1919b6df2505@if13: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 7e:67:21:84:8b:b9 brd ff:ff:ff:ff:ff:ff 16: lxc39bc083a8cc2@if15: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 92:fd:02:28:4f:2e brd ff:ff:ff:ff:ff:ff 18: lxc2b05650b67a0@if17: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether fe:f6:09:5b:7b:15 brd ff:ff:ff:ff:ff:ff 20: lxc3b69dd5abf26@if19: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 5e:78:ac:fe:68:13 brd ff:ff:ff:ff:ff:ff 22: lxc8e044284e80d@if21: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 22:b2:57:2f:06:a0 brd ff:ff:ff:ff:ff:ff 26: lxc8657164b7757@if25: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ca:d4:73:ce:20:15 brd ff:ff:ff:ff:ff:ff 28: lxc1c7611ef0ba8@if27: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether aa:f2:11:02:4d:33 brd ff:ff:ff:ff:ff:ff 29: eth0@if30: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 02:42:ac:11:00:02 brd ff:ff:ff:ff:ff:ff inet 172.17.0.2/16 brd 172.17.255.255 scope global eth0 valid_lft forever preferred_lft forever 31: lxcfd08817e789d@if30: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether e6:b6:8d:a7:ae:f8 brd ff:ff:ff:ff:ff:ff 33: lxc85756fc64da4@if32: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether c2:66:7a:3f:28:d2 brd ff:ff:ff:ff:ff:ff 35: lxc62156e950e94@if34: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether a6:c1:a0:91:3b:64 brd ff:ff:ff:ff:ff:ff 45: lxcce528f3bec95@if44: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 92:2e:4a:3b:f7:4e brd ff:ff:ff:ff:ff:ff 47: lxc57327fb4b86b@if46: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ae:4b:82:4d:8c:be brd ff:ff:ff:ff:ff:ff 53: lxc05b3bcfe3296@if52: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 5e:e5:9e:32:73:6f brd ff:ff:ff:ff:ff:ff 55: lxc70cf6ffa381c@if54: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ee:13:6a:c2:2c:3a brd ff:ff:ff:ff:ff:ff 59: lxc079476e2de88@if58: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 46:d6:7e:19:5e:71 brd ff:ff:ff:ff:ff:ff 61: lxcda3956722c3f@if60: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 8e:dc:30:44:2a:ca brd ff:ff:ff:ff:ff:ff 63: lxc1408fab32978@if62: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 8a:66:3e:ce:70:4f brd ff:ff:ff:ff:ff:ff 65: lxc7bd29888d1e5@if64: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether fe:66:86:b3:a1:38 brd ff:ff:ff:ff:ff:ff 69: lxc76dde8448e15@if68: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 5e:4d:34:7b:db:eb brd ff:ff:ff:ff:ff:ff 71: lxce179c8ed9880@if70: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ea:98:dc:8e:d9:1f brd ff:ff:ff:ff:ff:ff 73: lxc44c962412b76@if72: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ea:73:f4:3f:09:27 brd ff:ff:ff:ff:ff:ff 75: lxc2c4be598bf78@if74: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 06:66:89:8f:e3:70 brd ff:ff:ff:ff:ff:ff ``` As 172.17.0.2 is outside of kubernetes pod if I understand correctly it sends traffic up to container hosting cilium (`default via 10.244.0.125 dev eth0`). If that's the case why can pod access gateway, but host cannot? ### Code of Conduct - [X] I agree to follow this project's Code of Conduct
1.0
Gateway doesn't route from outside of the cluster? - ### Is there an existing issue for this? - [X] I have searched the existing issues ### What happened? I'm creating k0s cluster inside docker container using cilium. I'm almost done, but gateway API has problems routing traffic from outside of the cluster. If I open gateway API IP in the browser or curl it from docker container (cluster is inside docker like k3d) I get the following error `upstream connect error or disconnect/reset before headers. reset reason: connection failure`. At first I thought it's routing problem, but then I used busybox to `wget 172.17.0.2:{gateway nodeport}` and it seems like gateway routes the traffic correctly if it's coming from inside of the cluster (I received html page from my frontend). I didn't create any network policies, here are my helm values: ```yaml kubeProxyReplacement: true k8sServiceHost: 127.0.0.1 k8sServicePort: 6443 operator: replicas: 1 bgpControlPlane: enabled: true announce: loadbalancerIP: true l7Proxy: true externalIPs: enabled: true nodePort: enabled: true hostPort: enabled: true gatewayAPI: enabled: true image: pullPolicy: IfNotPresent ipam: mode: kubernetes ipv4: enabled: true ipv6: enabled: false hubble: enabled: true ui: enabled: true relay: enabled: true ``` I've already spent couple days trying to get the cluster to work, so any help would be greatly appreciated. Cilium and cilium-operator do not report any errors. I've tried things specified in docs 'troubleshooting' with no luck. Sadly there are not that many tips on debugging gateways :P ### Cilium Version cilium-cli: 0.15.6 compiled with go1.20.7 on linux/amd64 cilium image (default): v1.14.0 cilium image (stable): v1.14.1 cilium image (running): 1.14.1 ### Kernel Version Linux nixos 6.4.11 #1-NixOS SMP PREEMPT_DYNAMIC Wed Aug 16 16:32:31 UTC 2023 x86_64 GNU/Linux ### Kubernetes Version WARNING: This version information is deprecated and will be replaced with the output from kubectl version --short. Use --output=yaml|json to get the full version. Client Version: version.Info{Major:"1", Minor:"27", GitVersion:"v1.27.4", GitCommit:"fa3d7990104d7c1f16943a67f11b154b71f6a132", GitTreeState:"archive", BuildDate:"1980-01-01T00:00:00Z", GoVersion:"go1.20.6", Compiler:"gc", Platform:"linux/amd64"} Kustomize Version: v5.0.1 Server Version: version.Info{Major:"1", Minor:"27", GitVersion:"v1.27.4+k0s", GitCommit:"fa3d7990104d7c1f16943a67f11b154b71f6a132", GitTreeState:"clean", BuildDate:"2023-07-25T13:41:21Z", GoVersion:"go1.20.6", Compiler:"gc", Platform:"linux/amd64"} ### Sysdump [cilium-sysdump-20230827-125444.zip](https://github.com/cilium/cilium/files/12447799/cilium-sysdump-20230827-125444.zip) ### Relevant log output _No response_ ### Anything else? I think that the hint to solve this is the fact that gateway is accessible from inside the cluster. It's either networking error or configuration error. I'm pretty new to networking stuff, so I might be misunderstanding some things, but here are some `ip` logs: - from inside the cluster (busybox pod) ``` / # ip r default via 10.244.0.125 dev eth0 10.244.0.125 dev eth0 scope link / # ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 74: eth0@if75: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue qlen 1000 link/ether 1e:b5:e0:fb:4e:8f brd ff:ff:ff:ff:ff:ff inet 10.244.0.115/32 scope global eth0 valid_lft forever preferred_lft forever inet6 fe80::1cb5:e0ff:fefb:4e8f/64 scope link valid_lft forever preferred_lft forever ``` - docker container hosting cilium ``` k0s:/# ip r default via 172.17.0.1 dev eth0 10.244.0.0/24 via 10.244.0.125 dev cilium_host src 10.244.0.125 10.244.0.125 dev cilium_host scope link 172.17.0.0/16 dev eth0 scope link src 172.17.0.2 k0s:/# ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever 2: cilium_net@cilium_host: <BROADCAST,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether a2:5b:a0:4f:87:37 brd ff:ff:ff:ff:ff:ff 3: cilium_host@cilium_net: <BROADCAST,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 72:44:d0:e4:7d:fe brd ff:ff:ff:ff:ff:ff inet 10.244.0.125/32 scope global cilium_host valid_lft forever preferred_lft forever 4: cilium_vxlan: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN qlen 1000 link/ether 56:5e:d7:69:6b:f1 brd ff:ff:ff:ff:ff:ff 6: lxc_health@if5: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ea:f0:96:f2:93:ae brd ff:ff:ff:ff:ff:ff 8: lxc9c02f0a58e09@if7: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 56:74:72:d9:93:dd brd ff:ff:ff:ff:ff:ff 10: lxc38ca98118dbc@if9: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether de:14:cd:1b:2e:5c brd ff:ff:ff:ff:ff:ff 12: lxcbede8921cf60@if11: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ce:0a:98:27:55:1f brd ff:ff:ff:ff:ff:ff 14: lxc1919b6df2505@if13: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 7e:67:21:84:8b:b9 brd ff:ff:ff:ff:ff:ff 16: lxc39bc083a8cc2@if15: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 92:fd:02:28:4f:2e brd ff:ff:ff:ff:ff:ff 18: lxc2b05650b67a0@if17: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether fe:f6:09:5b:7b:15 brd ff:ff:ff:ff:ff:ff 20: lxc3b69dd5abf26@if19: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 5e:78:ac:fe:68:13 brd ff:ff:ff:ff:ff:ff 22: lxc8e044284e80d@if21: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 22:b2:57:2f:06:a0 brd ff:ff:ff:ff:ff:ff 26: lxc8657164b7757@if25: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ca:d4:73:ce:20:15 brd ff:ff:ff:ff:ff:ff 28: lxc1c7611ef0ba8@if27: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether aa:f2:11:02:4d:33 brd ff:ff:ff:ff:ff:ff 29: eth0@if30: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 02:42:ac:11:00:02 brd ff:ff:ff:ff:ff:ff inet 172.17.0.2/16 brd 172.17.255.255 scope global eth0 valid_lft forever preferred_lft forever 31: lxcfd08817e789d@if30: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether e6:b6:8d:a7:ae:f8 brd ff:ff:ff:ff:ff:ff 33: lxc85756fc64da4@if32: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether c2:66:7a:3f:28:d2 brd ff:ff:ff:ff:ff:ff 35: lxc62156e950e94@if34: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether a6:c1:a0:91:3b:64 brd ff:ff:ff:ff:ff:ff 45: lxcce528f3bec95@if44: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 92:2e:4a:3b:f7:4e brd ff:ff:ff:ff:ff:ff 47: lxc57327fb4b86b@if46: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ae:4b:82:4d:8c:be brd ff:ff:ff:ff:ff:ff 53: lxc05b3bcfe3296@if52: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 5e:e5:9e:32:73:6f brd ff:ff:ff:ff:ff:ff 55: lxc70cf6ffa381c@if54: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ee:13:6a:c2:2c:3a brd ff:ff:ff:ff:ff:ff 59: lxc079476e2de88@if58: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 46:d6:7e:19:5e:71 brd ff:ff:ff:ff:ff:ff 61: lxcda3956722c3f@if60: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 8e:dc:30:44:2a:ca brd ff:ff:ff:ff:ff:ff 63: lxc1408fab32978@if62: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 8a:66:3e:ce:70:4f brd ff:ff:ff:ff:ff:ff 65: lxc7bd29888d1e5@if64: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether fe:66:86:b3:a1:38 brd ff:ff:ff:ff:ff:ff 69: lxc76dde8448e15@if68: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 5e:4d:34:7b:db:eb brd ff:ff:ff:ff:ff:ff 71: lxce179c8ed9880@if70: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ea:98:dc:8e:d9:1f brd ff:ff:ff:ff:ff:ff 73: lxc44c962412b76@if72: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether ea:73:f4:3f:09:27 brd ff:ff:ff:ff:ff:ff 75: lxc2c4be598bf78@if74: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP qlen 1000 link/ether 06:66:89:8f:e3:70 brd ff:ff:ff:ff:ff:ff ``` As 172.17.0.2 is outside of kubernetes pod if I understand correctly it sends traffic up to container hosting cilium (`default via 10.244.0.125 dev eth0`). If that's the case why can pod access gateway, but host cannot? ### Code of Conduct - [X] I agree to follow this project's Code of Conduct
non_test
gateway doesn t route from outside of the cluster is there an existing issue for this i have searched the existing issues what happened i m creating cluster inside docker container using cilium i m almost done but gateway api has problems routing traffic from outside of the cluster if i open gateway api ip in the browser or curl it from docker container cluster is inside docker like i get the following error upstream connect error or disconnect reset before headers reset reason connection failure at first i thought it s routing problem but then i used busybox to wget gateway nodeport and it seems like gateway routes the traffic correctly if it s coming from inside of the cluster i received html page from my frontend i didn t create any network policies here are my helm values yaml kubeproxyreplacement true operator replicas bgpcontrolplane enabled true announce loadbalancerip true true externalips enabled true nodeport enabled true hostport enabled true gatewayapi enabled true image pullpolicy ifnotpresent ipam mode kubernetes enabled true enabled false hubble enabled true ui enabled true relay enabled true i ve already spent couple days trying to get the cluster to work so any help would be greatly appreciated cilium and cilium operator do not report any errors i ve tried things specified in docs troubleshooting with no luck sadly there are not that many tips on debugging gateways p cilium version cilium cli compiled with on linux cilium image default cilium image stable cilium image running kernel version linux nixos nixos smp preempt dynamic wed aug utc gnu linux kubernetes version warning this version information is deprecated and will be replaced with the output from kubectl version short use output yaml json to get the full version client version version info major minor gitversion gitcommit gittreestate archive builddate goversion compiler gc platform linux kustomize version server version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux sysdump relevant log output no response anything else i think that the hint to solve this is the fact that gateway is accessible from inside the cluster it s either networking error or configuration error i m pretty new to networking stuff so i might be misunderstanding some things but here are some ip logs from inside the cluster busybox pod ip r default via dev dev scope link ip a lo mtu qdisc noqueue qlen link loopback brd inet scope host lo valid lft forever preferred lft forever scope host valid lft forever preferred lft forever mtu qdisc noqueue qlen link ether fb brd ff ff ff ff ff ff inet scope global valid lft forever preferred lft forever fefb scope link valid lft forever preferred lft forever docker container hosting cilium ip r default via dev via dev cilium host src dev cilium host scope link dev scope link src ip a lo mtu qdisc noqueue state unknown qlen link loopback brd inet scope host lo valid lft forever preferred lft forever cilium net cilium host mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff cilium host cilium net mtu qdisc noqueue state up qlen link ether fe brd ff ff ff ff ff ff inet scope global cilium host valid lft forever preferred lft forever cilium vxlan mtu qdisc noqueue state unknown qlen link ether brd ff ff ff ff ff ff lxc health mtu qdisc noqueue state up qlen link ether ea ae brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether dd brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether de cd brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ce brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether fd brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether fe brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ac fe brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ca ce brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether aa brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ac brd ff ff ff ff ff ff inet brd scope global valid lft forever preferred lft forever mtu qdisc noqueue state up qlen link ether ae brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ae be brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ee brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether dc ca brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ce brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether fe brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether db eb brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ea dc brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether ea brd ff ff ff ff ff ff mtu qdisc noqueue state up qlen link ether brd ff ff ff ff ff ff as is outside of kubernetes pod if i understand correctly it sends traffic up to container hosting cilium default via dev if that s the case why can pod access gateway but host cannot code of conduct i agree to follow this project s code of conduct
0
47,851
10,163,226,564
IssuesEvent
2019-08-07 08:50:11
sourcegraph/sourcegraph
https://api.github.com/repos/sourcegraph/sourcegraph
closed
Firefox extension should ask for limited URL access
browser-extension code-nav firefox
The Firefox chrome extension currently asks for access to all websites. It should be updated to ask for the same limited set of sites that the Chrome extension asks for. https://sourcegraph.com/github.com/sourcegraph/sourcegraph@4d84cd2b62888f584c514e67e46119dff43a3049/-/blob/browser/scripts/tasks.ts#L84:31 We originally wanted to use limited access but because of https://bugzilla.mozilla.org/show_bug.cgi?format=default&id=1382953 it made the on-boarding flow really terrible for users. This issue is fixed so we can revisit.
1.0
Firefox extension should ask for limited URL access - The Firefox chrome extension currently asks for access to all websites. It should be updated to ask for the same limited set of sites that the Chrome extension asks for. https://sourcegraph.com/github.com/sourcegraph/sourcegraph@4d84cd2b62888f584c514e67e46119dff43a3049/-/blob/browser/scripts/tasks.ts#L84:31 We originally wanted to use limited access but because of https://bugzilla.mozilla.org/show_bug.cgi?format=default&id=1382953 it made the on-boarding flow really terrible for users. This issue is fixed so we can revisit.
non_test
firefox extension should ask for limited url access the firefox chrome extension currently asks for access to all websites it should be updated to ask for the same limited set of sites that the chrome extension asks for we originally wanted to use limited access but because of it made the on boarding flow really terrible for users this issue is fixed so we can revisit
0
93,705
15,930,520,488
IssuesEvent
2021-04-14 01:05:18
LalithK90/nandanaMotors
https://api.github.com/repos/LalithK90/nandanaMotors
opened
WS-2016-7107 (Medium) detected in spring-security-web-5.2.1.RELEASE.jar
security vulnerability
## WS-2016-7107 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-security-web-5.2.1.RELEASE.jar</b></p></summary> <p>spring-security-web</p> <p>Library home page: <a href="http://spring.io/spring-security">http://spring.io/spring-security</a></p> <p>Path to dependency file: nandanaMotors/build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-web/5.2.1.RELEASE/9e43c2d8d2dffc60bfba8ac95a106d30e9593106/spring-security-web-5.2.1.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-security-2.2.4.RELEASE.jar (Root Library) - :x: **spring-security-web-5.2.1.RELEASE.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> CSRF tokens in Spring Security through 5.4.5 are vulnerable to a breach attack. Spring Security always returns the same CSRF token to the browser. <p>Publish Date: 2016-08-02 <p>URL: <a href=https://github.com/spring-projects/spring-security/issues/4001>WS-2016-7107</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.9</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
WS-2016-7107 (Medium) detected in spring-security-web-5.2.1.RELEASE.jar - ## WS-2016-7107 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-security-web-5.2.1.RELEASE.jar</b></p></summary> <p>spring-security-web</p> <p>Library home page: <a href="http://spring.io/spring-security">http://spring.io/spring-security</a></p> <p>Path to dependency file: nandanaMotors/build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-web/5.2.1.RELEASE/9e43c2d8d2dffc60bfba8ac95a106d30e9593106/spring-security-web-5.2.1.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-security-2.2.4.RELEASE.jar (Root Library) - :x: **spring-security-web-5.2.1.RELEASE.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> CSRF tokens in Spring Security through 5.4.5 are vulnerable to a breach attack. Spring Security always returns the same CSRF token to the browser. <p>Publish Date: 2016-08-02 <p>URL: <a href=https://github.com/spring-projects/spring-security/issues/4001>WS-2016-7107</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.9</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
ws medium detected in spring security web release jar ws medium severity vulnerability vulnerable library spring security web release jar spring security web library home page a href path to dependency file nandanamotors build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework security spring security web release spring security web release jar dependency hierarchy spring boot starter security release jar root library x spring security web release jar vulnerable library found in base branch master vulnerability details csrf tokens in spring security through are vulnerable to a breach attack spring security always returns the same csrf token to the browser publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href step up your open source security game with whitesource
0
188,039
22,046,112,433
IssuesEvent
2022-05-30 02:02:09
maddyCode23/linux-4.1.15
https://api.github.com/repos/maddyCode23/linux-4.1.15
closed
CVE-2020-16119 (High) detected in linux-stable-rtv4.1.33 - autoclosed
security vulnerability
## CVE-2020-16119 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/dccp/minisocks.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/dccp/minisocks.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Use-after-free vulnerability in the Linux kernel exploitable by a local attacker due to reuse of a DCCP socket with an attached dccps_hc_tx_ccid object as a listener after being released. Fixed in Ubuntu Linux kernel 5.4.0-51.56, 5.3.0-68.63, 4.15.0-121.123, 4.4.0-193.224, 3.13.0.182.191 and 3.2.0-149.196. <p>Publish Date: 2021-01-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-16119>CVE-2020-16119</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2020-16119">https://nvd.nist.gov/vuln/detail/CVE-2020-16119</a></p> <p>Release Date: 2021-01-14</p> <p>Fix Resolution: linux-libc-headers - 5.14;linux-yocto - 5.4.20+gitAUTOINC+c11911d4d1_f4d7dbafb1,4.8.26+gitAUTOINC+1c60e003c7_27efc3ba68</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-16119 (High) detected in linux-stable-rtv4.1.33 - autoclosed - ## CVE-2020-16119 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/dccp/minisocks.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/dccp/minisocks.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Use-after-free vulnerability in the Linux kernel exploitable by a local attacker due to reuse of a DCCP socket with an attached dccps_hc_tx_ccid object as a listener after being released. Fixed in Ubuntu Linux kernel 5.4.0-51.56, 5.3.0-68.63, 4.15.0-121.123, 4.4.0-193.224, 3.13.0.182.191 and 3.2.0-149.196. <p>Publish Date: 2021-01-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-16119>CVE-2020-16119</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2020-16119">https://nvd.nist.gov/vuln/detail/CVE-2020-16119</a></p> <p>Release Date: 2021-01-14</p> <p>Fix Resolution: linux-libc-headers - 5.14;linux-yocto - 5.4.20+gitAUTOINC+c11911d4d1_f4d7dbafb1,4.8.26+gitAUTOINC+1c60e003c7_27efc3ba68</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve high detected in linux stable autoclosed cve high severity vulnerability vulnerable library linux stable julia cartwright s fork of linux stable rt git library home page a href found in head commit a href found in base branch master vulnerable source files net dccp minisocks c net dccp minisocks c vulnerability details use after free vulnerability in the linux kernel exploitable by a local attacker due to reuse of a dccp socket with an attached dccps hc tx ccid object as a listener after being released fixed in ubuntu linux kernel and publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution linux libc headers linux yocto gitautoinc gitautoinc step up your open source security game with whitesource
0
160,521
12,516,203,144
IssuesEvent
2020-06-03 09:00:14
ghdl/ghdl
https://api.github.com/repos/ghdl/ghdl
closed
VHDL 2008 - unbounded array of std_ulogic_vector
Bug FeaReq: VHDL-2008 (unconst. arrrays/records) Fixed in development version v0.37 - Latest stable
**To reproduce:** juste unzip and run it with vunit, sources are located in ".\ghdl_bug\1" files: [vhdl.zip](https://github.com/ghdl/ghdl/files/4694954/vhdl.zip) you will got the folowing error: ******************** GHDL Bug occurred *************************** Please report this bug on https://github.com/ghdl/ghdl/issues GHDL release: 0.37 (v0.37) [Dunoon edition] Compiled with GNAT Version: 9.1.0 Target: i686-w64-mingw32 C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\ Command line: C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\sim\ghdl\0.37-mingw32-mcode\bin\ghdl.exe -a --workdir=C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\wb --work=wb --std=08 -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\vunit_lib -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\osvvm -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\global -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\timer -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\wb C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\memory_map.vhd Exception SYSTEM.ASSERTIONS.ASSERT_FAILURE raised Exception information: raised SYSTEM.ASSERTIONS.ASSERT_FAILURE : no field Element_Subtype_Indication Call stack traceback locations: 0x5d207f 0x5cd92b 0x5ce6d5 0x5e7603 0x5eaad5 0x5eae47 0x5bfe70 0x5f2eeb 0x5f9605 0x5b7565 0x61075e 0x5b0373 0x6ba883 0x402879 0x401361 0x75816357 0x778e7c22 0x778e7bf2 ******************************************************************
1.0
VHDL 2008 - unbounded array of std_ulogic_vector - **To reproduce:** juste unzip and run it with vunit, sources are located in ".\ghdl_bug\1" files: [vhdl.zip](https://github.com/ghdl/ghdl/files/4694954/vhdl.zip) you will got the folowing error: ******************** GHDL Bug occurred *************************** Please report this bug on https://github.com/ghdl/ghdl/issues GHDL release: 0.37 (v0.37) [Dunoon edition] Compiled with GNAT Version: 9.1.0 Target: i686-w64-mingw32 C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\ Command line: C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\sim\ghdl\0.37-mingw32-mcode\bin\ghdl.exe -a --workdir=C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\wb --work=wb --std=08 -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\vunit_lib -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\osvvm -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\global -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\timer -PC:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\sim\vunit_out\ghdl\libraries\wb C:\Users\work\OneDrive\Bureau\vhdl_ghdl\vhdl\wb\memory_map\memory_map.vhd Exception SYSTEM.ASSERTIONS.ASSERT_FAILURE raised Exception information: raised SYSTEM.ASSERTIONS.ASSERT_FAILURE : no field Element_Subtype_Indication Call stack traceback locations: 0x5d207f 0x5cd92b 0x5ce6d5 0x5e7603 0x5eaad5 0x5eae47 0x5bfe70 0x5f2eeb 0x5f9605 0x5b7565 0x61075e 0x5b0373 0x6ba883 0x402879 0x401361 0x75816357 0x778e7c22 0x778e7bf2 ******************************************************************
test
vhdl unbounded array of std ulogic vector to reproduce juste unzip and run it with vunit sources are located in ghdl bug files you will got the folowing error ghdl bug occurred please report this bug on ghdl release compiled with gnat version target c users work onedrive bureau vhdl ghdl vhdl wb memory map sim command line c users work onedrive bureau vhdl ghdl vhdl sim ghdl mcode bin ghdl exe a workdir c users work onedrive bureau vhdl ghdl vhdl wb memory map sim vunit out ghdl libraries wb work wb std pc users work onedrive bureau vhdl ghdl vhdl wb memory map sim vunit out ghdl libraries vunit lib pc users work onedrive bureau vhdl ghdl vhdl wb memory map sim vunit out ghdl libraries osvvm pc users work onedrive bureau vhdl ghdl vhdl wb memory map sim vunit out ghdl libraries global pc users work onedrive bureau vhdl ghdl vhdl wb memory map sim vunit out ghdl libraries timer pc users work onedrive bureau vhdl ghdl vhdl wb memory map sim vunit out ghdl libraries wb c users work onedrive bureau vhdl ghdl vhdl wb memory map memory map vhd exception system assertions assert failure raised exception information raised system assertions assert failure no field element subtype indication call stack traceback locations
1
293,710
9,007,805,048
IssuesEvent
2019-02-05 00:33:14
ngageoint/hootenanny
https://api.github.com/repos/ngageoint/hootenanny
opened
Add more DNC validation rules
Category: Core Category: Translation Priority: Medium Status: In Progress Type: Task in progress
Add more feature validation rules to the DNC translation. Based on the DNC spec and customer feedback
1.0
Add more DNC validation rules - Add more feature validation rules to the DNC translation. Based on the DNC spec and customer feedback
non_test
add more dnc validation rules add more feature validation rules to the dnc translation based on the dnc spec and customer feedback
0
302,700
26,159,375,008
IssuesEvent
2022-12-31 08:46:17
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
roachtest: follower-reads/survival=region/locality=regional/reads=bounded-staleness failed
C-test-failure O-robot O-roachtest release-blocker branch-release-22.1
roachtest.follower-reads/survival=region/locality=regional/reads=bounded-staleness [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=8147270&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=8147270&tab=artifacts#/follower-reads/survival=region/locality=regional/reads=bounded-staleness) on release-22.1 @ [000c9624b56b09d5fbd06557c559b2f910142a9c](https://github.com/cockroachdb/cockroach/commits/000c9624b56b09d5fbd06557c559b2f910142a9c): ``` The test failed on branch=release-22.1, cloud=gce: test artifacts and logs in: /artifacts/follower-reads/survival=region/locality=regional/reads=bounded-staleness/run_1 assertions.go:262,assertions.go:1332,require.go:1231,follower_reads.go:440,follower_reads.go:71,test_runner.go:883: Error Trace: follower_reads.go:440 follower_reads.go:71 test_runner.go:883 asm_amd64.s:1581 Error: Received unexpected error: pq: Use of multi-region features requires an enterprise license. Your evaluation license expired on December 30, 2022. If you're interested in getting a new license, please contact subscriptions@cockroachlabs.com and we can help you out. Test: follower-reads/survival=region/locality=regional/reads=bounded-staleness test_impl.go:259,require.go:1234,follower_reads.go:440,follower_reads.go:71,test_runner.go:883: ``` <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #94367 roachtest: follower-reads/survival=region/locality=regional/reads=bounded-staleness/insufficient-quorum failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker] - #94365 roachtest: follower-reads/survival=region/locality=regional/reads=bounded-staleness failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker] </p> </details> /cc @cockroachdb/kv-triage <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*follower-reads/survival=region/locality=regional/reads=bounded-staleness.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
2.0
roachtest: follower-reads/survival=region/locality=regional/reads=bounded-staleness failed - roachtest.follower-reads/survival=region/locality=regional/reads=bounded-staleness [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=8147270&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=8147270&tab=artifacts#/follower-reads/survival=region/locality=regional/reads=bounded-staleness) on release-22.1 @ [000c9624b56b09d5fbd06557c559b2f910142a9c](https://github.com/cockroachdb/cockroach/commits/000c9624b56b09d5fbd06557c559b2f910142a9c): ``` The test failed on branch=release-22.1, cloud=gce: test artifacts and logs in: /artifacts/follower-reads/survival=region/locality=regional/reads=bounded-staleness/run_1 assertions.go:262,assertions.go:1332,require.go:1231,follower_reads.go:440,follower_reads.go:71,test_runner.go:883: Error Trace: follower_reads.go:440 follower_reads.go:71 test_runner.go:883 asm_amd64.s:1581 Error: Received unexpected error: pq: Use of multi-region features requires an enterprise license. Your evaluation license expired on December 30, 2022. If you're interested in getting a new license, please contact subscriptions@cockroachlabs.com and we can help you out. Test: follower-reads/survival=region/locality=regional/reads=bounded-staleness test_impl.go:259,require.go:1234,follower_reads.go:440,follower_reads.go:71,test_runner.go:883: ``` <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #94367 roachtest: follower-reads/survival=region/locality=regional/reads=bounded-staleness/insufficient-quorum failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker] - #94365 roachtest: follower-reads/survival=region/locality=regional/reads=bounded-staleness failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker] </p> </details> /cc @cockroachdb/kv-triage <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*follower-reads/survival=region/locality=regional/reads=bounded-staleness.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
test
roachtest follower reads survival region locality regional reads bounded staleness failed roachtest follower reads survival region locality regional reads bounded staleness with on release the test failed on branch release cloud gce test artifacts and logs in artifacts follower reads survival region locality regional reads bounded staleness run assertions go assertions go require go follower reads go follower reads go test runner go error trace follower reads go follower reads go test runner go asm s error received unexpected error pq use of multi region features requires an enterprise license your evaluation license expired on december if you re interested in getting a new license please contact subscriptions cockroachlabs com and we can help you out test follower reads survival region locality regional reads bounded staleness test impl go require go follower reads go follower reads go test runner go help see see same failure on other branches roachtest follower reads survival region locality regional reads bounded staleness insufficient quorum failed roachtest follower reads survival region locality regional reads bounded staleness failed cc cockroachdb kv triage
1
223,369
17,112,198,756
IssuesEvent
2021-07-10 15:00:50
govdirectory/website
https://api.github.com/repos/govdirectory/website
opened
Figure out data quality threshold
data :computer: documentation :writing_hand: question
We should define some threshold for how good the data of a country must be before we publish it on the website. This should then be clearly communicatied on https://www.wikidata.org/wiki/Wikidata:Gov_Directory#Add_your_country son that any volunteer know exactly what they need to do before a country gets added.
1.0
Figure out data quality threshold - We should define some threshold for how good the data of a country must be before we publish it on the website. This should then be clearly communicatied on https://www.wikidata.org/wiki/Wikidata:Gov_Directory#Add_your_country son that any volunteer know exactly what they need to do before a country gets added.
non_test
figure out data quality threshold we should define some threshold for how good the data of a country must be before we publish it on the website this should then be clearly communicatied on son that any volunteer know exactly what they need to do before a country gets added
0
234,619
19,212,476,874
IssuesEvent
2021-12-07 04:41:23
aces/Loris
https://api.github.com/repos/aces/Loris
opened
[Publication] Can't submit Project proposal
Bug 24.0.0 Manual Test Assignment
**Describe the bug** Afete several attempts, the 'Propose project' on the 'Propose a project' tab of the Publication module no longer appears to work. Previously I had attempted submitting several proposals with a 'Attempt to use pselectRow on a query that returns multiple rows' error being displayed as specified on https://github.com/aces/Loris/issues/7877. However, now I can no longer submit any proposal and no error message appears. I tried reloading the module and the same. Tried various combinations for the field entries and emails used, but none worked. **To Reproduce** Steps to reproduce the behavior (attach screenshots if applicable): 1. Go to 'Publications module and try to propose a new project.'
1.0
[Publication] Can't submit Project proposal - **Describe the bug** Afete several attempts, the 'Propose project' on the 'Propose a project' tab of the Publication module no longer appears to work. Previously I had attempted submitting several proposals with a 'Attempt to use pselectRow on a query that returns multiple rows' error being displayed as specified on https://github.com/aces/Loris/issues/7877. However, now I can no longer submit any proposal and no error message appears. I tried reloading the module and the same. Tried various combinations for the field entries and emails used, but none worked. **To Reproduce** Steps to reproduce the behavior (attach screenshots if applicable): 1. Go to 'Publications module and try to propose a new project.'
test
can t submit project proposal describe the bug afete several attempts the propose project on the propose a project tab of the publication module no longer appears to work previously i had attempted submitting several proposals with a attempt to use pselectrow on a query that returns multiple rows error being displayed as specified on however now i can no longer submit any proposal and no error message appears i tried reloading the module and the same tried various combinations for the field entries and emails used but none worked to reproduce steps to reproduce the behavior attach screenshots if applicable go to publications module and try to propose a new project
1
293,146
25,273,705,153
IssuesEvent
2022-11-16 11:04:50
FlightControl-Master/MOOSE
https://api.github.com/repos/FlightControl-Master/MOOSE
closed
PLAYERTASKMANAGER - Add actual target coordinates to the task info display
Enhancement Ready for Testing Implemented DEV Branch
Currently we see the BR/BRA call in the info that is displayed. I'd like to add the actual coordinates either along side or maybe optionally either/or determined by the addition of a new PLAYERTASKMANAGER setting. I guess my questions are... - Do you mind if I add this? - If it's ok, any guideline you'd like me to follow?
1.0
PLAYERTASKMANAGER - Add actual target coordinates to the task info display - Currently we see the BR/BRA call in the info that is displayed. I'd like to add the actual coordinates either along side or maybe optionally either/or determined by the addition of a new PLAYERTASKMANAGER setting. I guess my questions are... - Do you mind if I add this? - If it's ok, any guideline you'd like me to follow?
test
playertaskmanager add actual target coordinates to the task info display currently we see the br bra call in the info that is displayed i d like to add the actual coordinates either along side or maybe optionally either or determined by the addition of a new playertaskmanager setting i guess my questions are do you mind if i add this if it s ok any guideline you d like me to follow
1
214,990
16,621,626,965
IssuesEvent
2021-06-03 02:29:40
Realm667/WolfenDoom
https://api.github.com/repos/Realm667/WolfenDoom
closed
C2M6_C issues
mapping playtesting
C2M6_C ... a) Texture "clash" when at sector 310 ( or sector 325 ) at lines 1200 and 1080. b) Carefully note ceiling flat at sector 272. ( Both a and b also apply to the U-Boat in C2M6_B ) c) T5981 - the notice does not show up in game - seems to need more flags, like single player. d) Lines 8441 and 8443 should be flagged "block monster". Not a good look when the dogs are walking "mid-air" when viewed from the steps below. e) Line 14191 is flagged "jump over railing", but the player cannot. And the player can walk right through the railing at line14210. ( line 14117 is the same as line 14191. I think all the railings here should block. f) Could falling into the lava cause instant death ? g) Sectors 5753 and 5791 have overlapping large pots. h) Volcano glitch right at the end of the level. Pic attached. ![volcano](https://user-images.githubusercontent.com/35204218/120424697-425d4000-c3b0-11eb-9c0b-b9f789307416.jpg)
1.0
C2M6_C issues - C2M6_C ... a) Texture "clash" when at sector 310 ( or sector 325 ) at lines 1200 and 1080. b) Carefully note ceiling flat at sector 272. ( Both a and b also apply to the U-Boat in C2M6_B ) c) T5981 - the notice does not show up in game - seems to need more flags, like single player. d) Lines 8441 and 8443 should be flagged "block monster". Not a good look when the dogs are walking "mid-air" when viewed from the steps below. e) Line 14191 is flagged "jump over railing", but the player cannot. And the player can walk right through the railing at line14210. ( line 14117 is the same as line 14191. I think all the railings here should block. f) Could falling into the lava cause instant death ? g) Sectors 5753 and 5791 have overlapping large pots. h) Volcano glitch right at the end of the level. Pic attached. ![volcano](https://user-images.githubusercontent.com/35204218/120424697-425d4000-c3b0-11eb-9c0b-b9f789307416.jpg)
test
c issues c a texture clash when at sector or sector at lines and b carefully note ceiling flat at sector both a and b also apply to the u boat in b c the notice does not show up in game seems to need more flags like single player d lines and should be flagged block monster not a good look when the dogs are walking mid air when viewed from the steps below e line is flagged jump over railing but the player cannot and the player can walk right through the railing at line is the same as line i think all the railings here should block f could falling into the lava cause instant death g sectors and have overlapping large pots h volcano glitch right at the end of the level pic attached
1
80,340
7,745,786,644
IssuesEvent
2018-05-29 19:28:55
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
[Coverity CID: 182776] Uninitialized variables in /tests/net/socket/udp/src/main.c
Coverity area: Tests bug priority: low
Static code scan issues seen in File: /tests/net/socket/udp/src/main.c Category: Uninitialized variables Function: test_v6_sendto_recvfrom Component: Tests CID: 182776 Please fix or provide comments to square it off in coverity in the link: https://scan9.coverity.com/reports.htm#v32951/p12996
1.0
[Coverity CID: 182776] Uninitialized variables in /tests/net/socket/udp/src/main.c - Static code scan issues seen in File: /tests/net/socket/udp/src/main.c Category: Uninitialized variables Function: test_v6_sendto_recvfrom Component: Tests CID: 182776 Please fix or provide comments to square it off in coverity in the link: https://scan9.coverity.com/reports.htm#v32951/p12996
test
uninitialized variables in tests net socket udp src main c static code scan issues seen in file tests net socket udp src main c category uninitialized variables function test sendto recvfrom component tests cid please fix or provide comments to square it off in coverity in the link
1
237,531
26,085,200,340
IssuesEvent
2022-12-26 01:16:21
yadavrahul12957/coupon
https://api.github.com/repos/yadavrahul12957/coupon
opened
CVE-2022-37603 (High) detected in loader-utils-1.2.3.tgz
security vulnerability
## CVE-2022-37603 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>loader-utils-1.2.3.tgz</b></p></summary> <p>utils for webpack loaders</p> <p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz</a></p> <p>Path to dependency file: /coupon/package.json</p> <p>Path to vulnerable library: /node_modules/loader-utils/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.8.tgz (Root Library) - webpack-4.1.0.tgz - :x: **loader-utils-1.2.3.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the url variable in interpolateName.js. <p>Publish Date: 2022-10-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-37603>CVE-2022-37603</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-3rfm-jhwj-7488">https://github.com/advisories/GHSA-3rfm-jhwj-7488</a></p> <p>Release Date: 2022-10-14</p> <p>Fix Resolution (loader-utils): 2.0.4</p> <p>Direct dependency fix Resolution (react-scripts): 3.0.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-37603 (High) detected in loader-utils-1.2.3.tgz - ## CVE-2022-37603 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>loader-utils-1.2.3.tgz</b></p></summary> <p>utils for webpack loaders</p> <p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz</a></p> <p>Path to dependency file: /coupon/package.json</p> <p>Path to vulnerable library: /node_modules/loader-utils/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.8.tgz (Root Library) - webpack-4.1.0.tgz - :x: **loader-utils-1.2.3.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the url variable in interpolateName.js. <p>Publish Date: 2022-10-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-37603>CVE-2022-37603</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-3rfm-jhwj-7488">https://github.com/advisories/GHSA-3rfm-jhwj-7488</a></p> <p>Release Date: 2022-10-14</p> <p>Fix Resolution (loader-utils): 2.0.4</p> <p>Direct dependency fix Resolution (react-scripts): 3.0.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve high detected in loader utils tgz cve high severity vulnerability vulnerable library loader utils tgz utils for webpack loaders library home page a href path to dependency file coupon package json path to vulnerable library node modules loader utils package json dependency hierarchy react scripts tgz root library webpack tgz x loader utils tgz vulnerable library vulnerability details a regular expression denial of service redos flaw was found in function interpolatename in interpolatename js in webpack loader utils via the url variable in interpolatename js publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution loader utils direct dependency fix resolution react scripts step up your open source security game with mend
0
89,198
25,601,572,532
IssuesEvent
2022-12-01 20:43:34
open-telemetry/opentelemetry-cpp
https://api.github.com/repos/open-telemetry/opentelemetry-cpp
opened
Drop C++11 support
area:build
Following November 30, 2022 SIG meeting, as gRPC and Prometheus require >C++14 and Gtest, abseil will not support C++11 with their next release; it becomes more challenging for us to support C++11. This will require us to have multiple combination of dependencies tests on our CI. I suggest to announce the drop of support as soon as we can, and drop the support in 6 months after the announcement. This issue is for collecting feedback from the users.
1.0
Drop C++11 support - Following November 30, 2022 SIG meeting, as gRPC and Prometheus require >C++14 and Gtest, abseil will not support C++11 with their next release; it becomes more challenging for us to support C++11. This will require us to have multiple combination of dependencies tests on our CI. I suggest to announce the drop of support as soon as we can, and drop the support in 6 months after the announcement. This issue is for collecting feedback from the users.
non_test
drop c support following november sig meeting as grpc and prometheus require c and gtest abseil will not support c with their next release it becomes more challenging for us to support c this will require us to have multiple combination of dependencies tests on our ci i suggest to announce the drop of support as soon as we can and drop the support in months after the announcement this issue is for collecting feedback from the users
0
346,712
30,991,836,980
IssuesEvent
2023-08-09 05:38:16
scs/substrate-api-client
https://api.github.com/repos/scs/substrate-api-client
closed
CI: runtime upgrade async keeps failing
F3-test
CI keeps failing due to the newly added runtime upgrade async example: https://github.com/scs/substrate-api-client/actions/runs/5781854266/job/15670637648 ``` Run docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES c3f703c8af1b parity/substrate:latest "/usr/local/bin/subs…" 28 seconds ago Up 27 seconds 0.0.0.0:9933->9933/tcp, :::9933->9933/tcp, 0.0.0.0:9944->9944/tcp, :::9944->9944/tcp, 0.0.0.0:30333->30333/tcp, :::30333->30333/tcp magical_jones Connection to 127.0.0.1 9944 port [tcp/*] succeeded! Current spec_version: 268 Sending extrinsic to trigger runtime update Cancelling wait for runtime update [+] Extrinsic got included. Block Hash: 0xb39671ec33a3948641ba1043bc8f726c642870ad5254fa2d6be62719765ac1fa Detected runtime update: false New spec_version: 268 thread 'main' panicked at 'assertion failed: api.spec_version() == 1268', examples/examples/runtime_update_async.rs:102:5 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace Error: Process completed with exit code 101. ``` Maybe increasing the sleep time would help?
1.0
CI: runtime upgrade async keeps failing - CI keeps failing due to the newly added runtime upgrade async example: https://github.com/scs/substrate-api-client/actions/runs/5781854266/job/15670637648 ``` Run docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES c3f703c8af1b parity/substrate:latest "/usr/local/bin/subs…" 28 seconds ago Up 27 seconds 0.0.0.0:9933->9933/tcp, :::9933->9933/tcp, 0.0.0.0:9944->9944/tcp, :::9944->9944/tcp, 0.0.0.0:30333->30333/tcp, :::30333->30333/tcp magical_jones Connection to 127.0.0.1 9944 port [tcp/*] succeeded! Current spec_version: 268 Sending extrinsic to trigger runtime update Cancelling wait for runtime update [+] Extrinsic got included. Block Hash: 0xb39671ec33a3948641ba1043bc8f726c642870ad5254fa2d6be62719765ac1fa Detected runtime update: false New spec_version: 268 thread 'main' panicked at 'assertion failed: api.spec_version() == 1268', examples/examples/runtime_update_async.rs:102:5 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace Error: Process completed with exit code 101. ``` Maybe increasing the sleep time would help?
test
ci runtime upgrade async keeps failing ci keeps failing due to the newly added runtime upgrade async example run docker ps container id image command created status ports names parity substrate latest usr local bin subs… seconds ago up seconds tcp tcp tcp tcp tcp tcp magical jones connection to port succeeded current spec version sending extrinsic to trigger runtime update cancelling wait for runtime update extrinsic got included block hash detected runtime update false new spec version thread main panicked at assertion failed api spec version examples examples runtime update async rs note run with rust backtrace environment variable to display a backtrace error process completed with exit code maybe increasing the sleep time would help
1
242,999
20,356,151,853
IssuesEvent
2022-02-20 00:53:51
backend-br/vagas
https://api.github.com/repos/backend-br/vagas
closed
[REMOTO] DESENVOLVEDOR (A) JAVA PLENO - EM @ DB1GROUP
CLT Pleno TDD Java Remoto AWS Spring Testes Unitários Git Rest SOAP Docker Stale
QUEM SOMOS Somos um grupo empresas de tecnologia, nascido no interior do Paraná, com 20 anos de experiência em desenvolvimento de software voltado para soluções de grandes empresas. Atuamos em diversas frentes de mercado: com produtos (ANYMARKET, CONSIGNET, EIVE) e também com serviços e projetos personalizados através da nossa Fábrica de Software - DB1 Global Software . Somos mais de 700 colaboradores em todo o Brasil e até na Argentina, com escritório em Maringá/PR, Campo Grande/MS e Presidente Prudente/SP e atuação remota (home office) desde 2017. Há 12 anos consecutivos entre as Melhores Empresas Para Trabalhar, segundo o GPTW. Somos movidos por desafios diários, sempre buscando uma forma de melhorar o que já existe e criar coisas novas com qualidade! Todos(as) aqui tem autonomia e voz para dar feedbacks, testar coisas novas e ser parte dessa mudança. Aqui aprendemos uns com os outros diariamente, com um forte senso de time. DB1 é pra quem não quer ser mais um! A vaga No DB1 Group, o (a) desenvolvedor (a) Java terá a oportunidade de trabalhar com práticas de desenvolvimento ágil, pair programming, integração contínua, desenvolvimento orientado a testes (TDD) e boas práticas de Clean Code. O que buscamos: Experiência com Java 8; Conhecimento em Spring e Spring Boot; Conhecimento em arquitetura de microsserviços; Atuação com banco de dados relacionais e não relacionais; Cultura forte de testes unitários e integração; Experiência com versionamento de código (GIT); Design Patterns e Clean Code. O que é indispensável para uma vaga? Ser uma pessoa flexível e por dentro das novidades tecnológicas; Ter vivência com desenvolvimento e implementação de software em produção; Grande capacidade de aprendizado para novas práticas, tecnologias, linguagens de programação e culturas de engenharia; Vontade de compartilhar conhecimento. Será um diferencial se: Tiver fluência em inglês e espanhol; Conhecimento em uso de aplicações com Containers (Docker), Kubernets; Conhecimento em Ambiente de nuvem (AWS); Conhecimento em integrações com API SOAP / Rest; Atuação com servidores de aplicação (TomCat, JBoss). AQUI VOCÊ ENCONTRARÁ Vale alimentação e/ou vale refeição; Plano de Saúde Unimed - Com mensalidade 100% paga pela DB1; Gympass; Home office como modelo de contratação. Atuamos com essa possibilidade desde 2017. Auxílio home office Horários flexíveis!; Plano odontológico (opcional); Seguro de Vida (opcional) Convênio com farmácia Droga Raia, com desconto para colaboradores; Para celebrar a vida de quem amamos, é possível sair um pouco mais cedo no dia do aniversário de conjugue e filhos! :) Uma trilha de carreira com Plano de Desenvolvimento Individual (PDI) e feedbacks constantes para te ajudar na sua evolução profissional; Aqui você terá a oportunidade de aprender coisas novas - seja no dia-a-dia, em um Programa de Mentoria ou em um desafio do Mestre dos Códigos. Comitês para você participar e contribuir com as melhorias dos processos do Grupo DB1 ou contribuir com a comunidade: Comitês de Boas Práticas de Gestão de Pessoas (CBPGP), Comitê técnico, Comitê de Responsabilidade e Desenvolvimento Socioambiental (CORDS) Sentiu que essa é sua oportunidade? Envie seu currículo no link: https://bit.ly/3hUM9d4 Contamos mais sobre como é trabalhar na DB1 em nosso LinkedIn, Instagram e Facebook. Se quiser ficar por dentro das novidades do mundo de tecnologia ou novas oportunidades, acompanha a gente lá! :) ## Labels #### Alocação - Remoto #### Regime - CLT #### Nível - Pleno
1.0
[REMOTO] DESENVOLVEDOR (A) JAVA PLENO - EM @ DB1GROUP - QUEM SOMOS Somos um grupo empresas de tecnologia, nascido no interior do Paraná, com 20 anos de experiência em desenvolvimento de software voltado para soluções de grandes empresas. Atuamos em diversas frentes de mercado: com produtos (ANYMARKET, CONSIGNET, EIVE) e também com serviços e projetos personalizados através da nossa Fábrica de Software - DB1 Global Software . Somos mais de 700 colaboradores em todo o Brasil e até na Argentina, com escritório em Maringá/PR, Campo Grande/MS e Presidente Prudente/SP e atuação remota (home office) desde 2017. Há 12 anos consecutivos entre as Melhores Empresas Para Trabalhar, segundo o GPTW. Somos movidos por desafios diários, sempre buscando uma forma de melhorar o que já existe e criar coisas novas com qualidade! Todos(as) aqui tem autonomia e voz para dar feedbacks, testar coisas novas e ser parte dessa mudança. Aqui aprendemos uns com os outros diariamente, com um forte senso de time. DB1 é pra quem não quer ser mais um! A vaga No DB1 Group, o (a) desenvolvedor (a) Java terá a oportunidade de trabalhar com práticas de desenvolvimento ágil, pair programming, integração contínua, desenvolvimento orientado a testes (TDD) e boas práticas de Clean Code. O que buscamos: Experiência com Java 8; Conhecimento em Spring e Spring Boot; Conhecimento em arquitetura de microsserviços; Atuação com banco de dados relacionais e não relacionais; Cultura forte de testes unitários e integração; Experiência com versionamento de código (GIT); Design Patterns e Clean Code. O que é indispensável para uma vaga? Ser uma pessoa flexível e por dentro das novidades tecnológicas; Ter vivência com desenvolvimento e implementação de software em produção; Grande capacidade de aprendizado para novas práticas, tecnologias, linguagens de programação e culturas de engenharia; Vontade de compartilhar conhecimento. Será um diferencial se: Tiver fluência em inglês e espanhol; Conhecimento em uso de aplicações com Containers (Docker), Kubernets; Conhecimento em Ambiente de nuvem (AWS); Conhecimento em integrações com API SOAP / Rest; Atuação com servidores de aplicação (TomCat, JBoss). AQUI VOCÊ ENCONTRARÁ Vale alimentação e/ou vale refeição; Plano de Saúde Unimed - Com mensalidade 100% paga pela DB1; Gympass; Home office como modelo de contratação. Atuamos com essa possibilidade desde 2017. Auxílio home office Horários flexíveis!; Plano odontológico (opcional); Seguro de Vida (opcional) Convênio com farmácia Droga Raia, com desconto para colaboradores; Para celebrar a vida de quem amamos, é possível sair um pouco mais cedo no dia do aniversário de conjugue e filhos! :) Uma trilha de carreira com Plano de Desenvolvimento Individual (PDI) e feedbacks constantes para te ajudar na sua evolução profissional; Aqui você terá a oportunidade de aprender coisas novas - seja no dia-a-dia, em um Programa de Mentoria ou em um desafio do Mestre dos Códigos. Comitês para você participar e contribuir com as melhorias dos processos do Grupo DB1 ou contribuir com a comunidade: Comitês de Boas Práticas de Gestão de Pessoas (CBPGP), Comitê técnico, Comitê de Responsabilidade e Desenvolvimento Socioambiental (CORDS) Sentiu que essa é sua oportunidade? Envie seu currículo no link: https://bit.ly/3hUM9d4 Contamos mais sobre como é trabalhar na DB1 em nosso LinkedIn, Instagram e Facebook. Se quiser ficar por dentro das novidades do mundo de tecnologia ou novas oportunidades, acompanha a gente lá! :) ## Labels #### Alocação - Remoto #### Regime - CLT #### Nível - Pleno
test
desenvolvedor a java pleno em quem somos somos um grupo empresas de tecnologia nascido no interior do paraná com anos de experiência em desenvolvimento de software voltado para soluções de grandes empresas atuamos em diversas frentes de mercado com produtos anymarket consignet eive e também com serviços e projetos personalizados através da nossa fábrica de software global software somos mais de colaboradores em todo o brasil e até na argentina com escritório em maringá pr campo grande ms e presidente prudente sp e atuação remota home office desde há anos consecutivos entre as melhores empresas para trabalhar segundo o gptw somos movidos por desafios diários sempre buscando uma forma de melhorar o que já existe e criar coisas novas com qualidade todos as aqui tem autonomia e voz para dar feedbacks testar coisas novas e ser parte dessa mudança aqui aprendemos uns com os outros diariamente com um forte senso de time é pra quem não quer ser mais um a vaga no group o a desenvolvedor a java terá a oportunidade de trabalhar com práticas de desenvolvimento ágil pair programming integração contínua desenvolvimento orientado a testes tdd e boas práticas de clean code o que buscamos experiência com java conhecimento em spring e spring boot conhecimento em arquitetura de microsserviços atuação com banco de dados relacionais e não relacionais cultura forte de testes unitários e integração experiência com versionamento de código git design patterns e clean code o que é indispensável para uma vaga ser uma pessoa flexível e por dentro das novidades tecnológicas ter vivência com desenvolvimento e implementação de software em produção grande capacidade de aprendizado para novas práticas tecnologias linguagens de programação e culturas de engenharia vontade de compartilhar conhecimento será um diferencial se tiver fluência em inglês e espanhol conhecimento em uso de aplicações com containers docker kubernets conhecimento em ambiente de nuvem aws conhecimento em integrações com api soap rest atuação com servidores de aplicação tomcat jboss aqui você encontrará vale alimentação e ou vale refeição plano de saúde unimed com mensalidade paga pela gympass home office como modelo de contratação atuamos com essa possibilidade desde auxílio home office horários flexíveis plano odontológico opcional seguro de vida opcional convênio com farmácia droga raia com desconto para colaboradores para celebrar a vida de quem amamos é possível sair um pouco mais cedo no dia do aniversário de conjugue e filhos uma trilha de carreira com plano de desenvolvimento individual pdi e feedbacks constantes para te ajudar na sua evolução profissional aqui você terá a oportunidade de aprender coisas novas seja no dia a dia em um programa de mentoria ou em um desafio do mestre dos códigos comitês para você participar e contribuir com as melhorias dos processos do grupo ou contribuir com a comunidade comitês de boas práticas de gestão de pessoas cbpgp comitê técnico comitê de responsabilidade e desenvolvimento socioambiental cords sentiu que essa é sua oportunidade envie seu currículo no link contamos mais sobre como é trabalhar na em nosso linkedin instagram e facebook se quiser ficar por dentro das novidades do mundo de tecnologia ou novas oportunidades acompanha a gente lá labels alocação remoto regime clt nível pleno
1
275,037
23,890,573,759
IssuesEvent
2022-09-08 11:08:30
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
DATA RACE when TestCluster fails to start
C-bug A-testing
When TestCluster start under race it may take too long to initialize and it times out. Time out will trip data race check in `github.com/cockroachdb/cockroach/pkg/testutils/testcluster.(*TestCluster).WaitForNStores()` https://github.com/cockroachdb/cockroach/blob/5b0bdc5c6184d80513d0130d538123a4136e13e3/pkg/testutils/testcluster/testcluster.go#L651 This is happening because error reporting is ignoring mutex protecting the map: https://github.com/cockroachdb/cockroach/blob/5b0bdc5c6184d80513d0130d538123a4136e13e3/pkg/testutils/testcluster/testcluster.go#L614-L615
1.0
DATA RACE when TestCluster fails to start - When TestCluster start under race it may take too long to initialize and it times out. Time out will trip data race check in `github.com/cockroachdb/cockroach/pkg/testutils/testcluster.(*TestCluster).WaitForNStores()` https://github.com/cockroachdb/cockroach/blob/5b0bdc5c6184d80513d0130d538123a4136e13e3/pkg/testutils/testcluster/testcluster.go#L651 This is happening because error reporting is ignoring mutex protecting the map: https://github.com/cockroachdb/cockroach/blob/5b0bdc5c6184d80513d0130d538123a4136e13e3/pkg/testutils/testcluster/testcluster.go#L614-L615
test
data race when testcluster fails to start when testcluster start under race it may take too long to initialize and it times out time out will trip data race check in github com cockroachdb cockroach pkg testutils testcluster testcluster waitfornstores this is happening because error reporting is ignoring mutex protecting the map
1
160,611
12,517,295,183
IssuesEvent
2020-06-03 10:53:08
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
closed
RVD#2189: Possible binding to all interfaces., /opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209
bandit bug duplicate invalid static analysis testing triage
```yaml { "id": 2189, "title": "RVD#2189: Possible binding to all interfaces., /opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209", "type": "bug", "description": "MEDIUM confidence of MEDIUM severity bug. Possible binding to all interfaces. at /opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": [ "https://github.com/aliasrobotics/RVD/issues/2189", "https://bandit.readthedocs.io/en/latest/plugins/b104_hardcoded_bind_all_interfaces.html" ], "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-06-02 (10:27)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-06-02 (10:27)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "https://github.com/aliasrobotics/RVD/issues/2189", "reproducibility": "always", "trace": "/opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
1.0
RVD#2189: Possible binding to all interfaces., /opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209 - ```yaml { "id": 2189, "title": "RVD#2189: Possible binding to all interfaces., /opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209", "type": "bug", "description": "MEDIUM confidence of MEDIUM severity bug. Possible binding to all interfaces. at /opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": [ "https://github.com/aliasrobotics/RVD/issues/2189", "https://bandit.readthedocs.io/en/latest/plugins/b104_hardcoded_bind_all_interfaces.html" ], "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-06-02 (10:27)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-06-02 (10:27)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "https://github.com/aliasrobotics/RVD/issues/2189", "reproducibility": "always", "trace": "/opt/ros_melodic_ws/src/ros_comm/rosgraph/test/test_network.py:209", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
test
rvd possible binding to all interfaces opt ros melodic ws src ros comm rosgraph test test network py yaml id title rvd possible binding to all interfaces opt ros melodic ws src ros comm rosgraph test test network py type bug description medium confidence of medium severity bug possible binding to all interfaces at opt ros melodic ws src ros comm rosgraph test test network py see links for more info on the bug cwe none cve none keywords bandit bug static analysis testing triage bug system vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity subject specific architectural location application specific application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace opt ros melodic ws src ros comm rosgraph test test network py reproduction see artifacts below if available reproduction image exploitation description exploitation image exploitation vector mitigation description pull request date mitigation
1
17,060
11,614,436,765
IssuesEvent
2020-02-26 12:35:39
CitiesSkylinesMods/TMPE
https://api.github.com/repos/CitiesSkylinesMods/TMPE
closed
UI: Replace floating toolbar with 'build bar'
UI Usability
> Note: The 'TMPE crown' button would still exist and be draggable to any location on screen Currently TMPE tools are accessed by a floating toolbar which is toggled by the 'crown' button. I propose moving the tools in to a 'build bar' (like "Find It" or "Roads" etc): * Much better consistency with base game * Users already instinctively know how those things work, so we don't need to explain custom UI * Larger icons * Extended tool tips (image and text) can be used as mini-tutorials for tools * Tabs could be used to switch between: * Tools (what's on current toolbar) * Overlays (toggle persistent overlays) * Despawns * \[Future:] Templates (eg. for traffic lights or whatever) * Settings * Tool-specific buttons could be displayed (like curved road buttons in vanilla roads menu) What do you think? I've also asked Keallu, author of "[Resize It!](https://steamcommunity.com/sharedfiles/filedetails/?id=1577882296)" mod, if he would consider creating reference mod that shows the ideal way to implement 'build bars' (as he did extensive investigations in to those while developing his Resize It! mod).
True
UI: Replace floating toolbar with 'build bar' - > Note: The 'TMPE crown' button would still exist and be draggable to any location on screen Currently TMPE tools are accessed by a floating toolbar which is toggled by the 'crown' button. I propose moving the tools in to a 'build bar' (like "Find It" or "Roads" etc): * Much better consistency with base game * Users already instinctively know how those things work, so we don't need to explain custom UI * Larger icons * Extended tool tips (image and text) can be used as mini-tutorials for tools * Tabs could be used to switch between: * Tools (what's on current toolbar) * Overlays (toggle persistent overlays) * Despawns * \[Future:] Templates (eg. for traffic lights or whatever) * Settings * Tool-specific buttons could be displayed (like curved road buttons in vanilla roads menu) What do you think? I've also asked Keallu, author of "[Resize It!](https://steamcommunity.com/sharedfiles/filedetails/?id=1577882296)" mod, if he would consider creating reference mod that shows the ideal way to implement 'build bars' (as he did extensive investigations in to those while developing his Resize It! mod).
non_test
ui replace floating toolbar with build bar note the tmpe crown button would still exist and be draggable to any location on screen currently tmpe tools are accessed by a floating toolbar which is toggled by the crown button i propose moving the tools in to a build bar like find it or roads etc much better consistency with base game users already instinctively know how those things work so we don t need to explain custom ui larger icons extended tool tips image and text can be used as mini tutorials for tools tabs could be used to switch between tools what s on current toolbar overlays toggle persistent overlays despawns templates eg for traffic lights or whatever settings tool specific buttons could be displayed like curved road buttons in vanilla roads menu what do you think i ve also asked keallu author of mod if he would consider creating reference mod that shows the ideal way to implement build bars as he did extensive investigations in to those while developing his resize it mod
0
317,416
27,236,470,750
IssuesEvent
2023-02-21 16:40:38
metabase/metabase
https://api.github.com/repos/metabase/metabase
opened
[Epic] CI Flakes + Failures
.CI & Tests .Epic
Maintaining our tests and CI environment is a shared responsibility. - If you note an issue that seems consistent enough to need attention, add it below. - If you decide to pick up a particular task, create an issue and assign yourself to it so we don't duplicate efforts. - If you've already fixed something, or it seems magically better, check it off! ## February 2023 ```[tasklist] ## Frontend - [ ] fix `nock` unit test flakes ``` ```[tasklist] ## e2e - [ ] e2e-tests-organization-ee - [ ] e2e-storage-ingestion-test - [ ] percy-tests-sanity-check-ee - [ ] e2e-tests-models-ee - [ ] e2e-tests-embedding-ee ``` ```[tasklist] ## Backend - [ ] be-google-related-drivers-classpath-test - [ ] be-tests-athena-ee - [x] metabase.server.middleware.offset-paging-test/paging-test - [x] metabase.query-processor-test.timezones-test/filter-datetime-by-date-in-timezone-test - [ ] cloverage - [ ] be-tests-mysql-(5-7)-(latest)-ee ```
1.0
[Epic] CI Flakes + Failures - Maintaining our tests and CI environment is a shared responsibility. - If you note an issue that seems consistent enough to need attention, add it below. - If you decide to pick up a particular task, create an issue and assign yourself to it so we don't duplicate efforts. - If you've already fixed something, or it seems magically better, check it off! ## February 2023 ```[tasklist] ## Frontend - [ ] fix `nock` unit test flakes ``` ```[tasklist] ## e2e - [ ] e2e-tests-organization-ee - [ ] e2e-storage-ingestion-test - [ ] percy-tests-sanity-check-ee - [ ] e2e-tests-models-ee - [ ] e2e-tests-embedding-ee ``` ```[tasklist] ## Backend - [ ] be-google-related-drivers-classpath-test - [ ] be-tests-athena-ee - [x] metabase.server.middleware.offset-paging-test/paging-test - [x] metabase.query-processor-test.timezones-test/filter-datetime-by-date-in-timezone-test - [ ] cloverage - [ ] be-tests-mysql-(5-7)-(latest)-ee ```
test
ci flakes failures maintaining our tests and ci environment is a shared responsibility if you note an issue that seems consistent enough to need attention add it below if you decide to pick up a particular task create an issue and assign yourself to it so we don t duplicate efforts if you ve already fixed something or it seems magically better check it off february frontend fix nock unit test flakes tests organization ee storage ingestion test percy tests sanity check ee tests models ee tests embedding ee backend be google related drivers classpath test be tests athena ee metabase server middleware offset paging test paging test metabase query processor test timezones test filter datetime by date in timezone test cloverage be tests mysql latest ee
1
195,367
14,725,722,063
IssuesEvent
2021-01-06 05:24:12
pingcap/tidb
https://api.github.com/repos/pingcap/tidb
closed
unit test failed in `TestAddPrimaryKey3`
component/test severity/moderate status/can't-reproduce type/bug
db_test.go:testDBSuite3.TestAddPrimaryKey3 ## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. just run make dev 2. What did you expect to see? all tests pass 3. What did you see instead? `db_test.go:884: testDBSuite3.TestAddPrimaryKey3` failed. 4. What version of TiDB are you using (`tidb-server -V` or run `select tidb_version();` on TiDB)? tidb v4.0 ``` [2019-11-26T02:34:46.918Z] PASS: db_partition_test.go:46: testIntegrationSuite3.TestCreateTableWithPartition 4.420s [2019-11-26T02:34:46.918Z] [2019/11/26 10:34:46.749 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807511847993344, conflictStartTS=412807511849566208, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0017} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:46.919Z] [2019/11/26 10:34:46.816 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807511867916289, conflictStartTS=412807511882334209, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0017} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:46.919Z] PASS: db_change_test.go:805: testStateChangeSuite.TestParallelDropPrimaryKey 1.905s [2019-11-26T02:34:46.919Z] [2019/11/26 10:34:46.892 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807511887577090, conflictStartTS=412807511897800704, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0017} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:48.338Z] PASS: db_integration_test.go:1756: testIntegrationSuite3.TestDefaultValueIsString 1.462s [2019-11-26T02:34:48.338Z] PASS: db_change_test.go:1129: testStateChangeSuite.TestParallelTruncateTableAndAddColumn 1.339s [2019-11-26T02:34:48.915Z] [2019-11-26T02:34:48.915Z] ---------------------------------------------------------------------- [2019-11-26T02:34:48.915Z] FAIL: db_test.go:884: testDBSuite3.TestAddPrimaryKey3 [2019-11-26T02:34:48.915Z] [2019-11-26T02:34:48.915Z] db_test.go:885: [2019-11-26T02:34:48.915Z] testAddIndex(c, s.store, s.lease, true, [2019-11-26T02:34:48.915Z] `create table test_add_index (c1 bigint, c2 bigint, c3 bigint, key(c1)) [2019-11-26T02:34:48.915Z] partition by hash (c3) partitions 4;`, "primary") [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:183: [2019-11-26T02:34:48.915Z] tk.c.Assert(err, check.IsNil, check.Commentf("sql:%s, %v, error stack %v", sql, args, errors.ErrorStack(err))) [2019-11-26T02:34:48.915Z] ... value *errors.withStack = [domain:8027]Information schema is out of date: schema failed to update in 1 lease, please make sure TiDB can connect to TiKV ("[domain:8027]Information schema is out of date: schema failed to update in 1 lease, please make sure TiDB can connect to TiKV") [2019-11-26T02:34:48.915Z] ... sql:insert into test_add_index values (20, 20, 20), [], error stack [domain:8027]Information schema is out of date: schema failed to update in 1 lease, please make sure TiDB can connect to TiKV [2019-11-26T02:34:48.915Z] github.com/pingcap/errors.AddStack [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/errors@v0.11.4/errors.go:174 [2019-11-26T02:34:48.915Z] github.com/pingcap/errors.Trace [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/errors@v0.11.4/juju_adaptor.go:15 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*twoPhaseCommitter).checkSchemaValid [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/2pc.go:1158 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*twoPhaseCommitter).execute [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/2pc.go:1108 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*twoPhaseCommitter).executeAndWriteFinishBinlog [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/2pc.go:1025 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*tikvTxn).Commit [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/txn.go:328 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*TxnState).Commit [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/txn.go:195 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).doCommit [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:440 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).doCommitWithRetry [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:459 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).CommitTxn [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:528 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.finishStmt [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/tidb.go:190 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.runStmt [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/tidb.go:272 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).executeStatement [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1029 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).execute [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1134 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).Execute [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1069 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/util/testkit.(*TestKit).Exec [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:144 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/util/testkit.(*TestKit).MustExec [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:182 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/ddl_test.testAddIndex [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/db_test.go:949 [2019-11-26T02:34:48.916Z] github.com/pingcap/tidb/ddl_test.(*testDBSuite3).TestAddPrimaryKey3 [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/db_test.go:885 [2019-11-26T02:34:48.916Z] reflect.Value.call [2019-11-26T02:34:48.916Z] /usr/local/go/src/reflect/value.go:460 [2019-11-26T02:34:48.916Z] reflect.Value.Call [2019-11-26T02:34:48.916Z] /usr/local/go/src/reflect/value.go:321 [2019-11-26T02:34:48.916Z] github.com/pingcap/check.(*suiteRunner).forkTest.func1 [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/tiancaiamao/check@v0.0.0-20191119042138-8e73d07b629d/check.go:854 [2019-11-26T02:34:48.916Z] github.com/pingcap/check.(*suiteRunner).forkCall.func1 [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/tiancaiamao/check@v0.0.0-20191119042138-8e73d07b629d/check.go:739 [2019-11-26T02:34:48.916Z] runtime.goexit [2019-11-26T02:34:48.916Z] /usr/local/go/src/runtime/asm_amd64.s:1357 [2019-11-26T02:34:48.916Z] [2019-11-26T02:34:48.916Z] [2019/11/26 10:34:48.875 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807512367562752, conflictStartTS=412807512419729409, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0018} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:49.180Z] [2019/11/26 10:34:48.964 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807512427069441, conflictStartTS=412807512439390208, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0018} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:49.442Z] PASS: db_partition_test.go:1247: testIntegrationSuite2.TestPartitionCancelAddPrimaryKey 9.687s ```
1.0
unit test failed in `TestAddPrimaryKey3` - db_test.go:testDBSuite3.TestAddPrimaryKey3 ## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. just run make dev 2. What did you expect to see? all tests pass 3. What did you see instead? `db_test.go:884: testDBSuite3.TestAddPrimaryKey3` failed. 4. What version of TiDB are you using (`tidb-server -V` or run `select tidb_version();` on TiDB)? tidb v4.0 ``` [2019-11-26T02:34:46.918Z] PASS: db_partition_test.go:46: testIntegrationSuite3.TestCreateTableWithPartition 4.420s [2019-11-26T02:34:46.918Z] [2019/11/26 10:34:46.749 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807511847993344, conflictStartTS=412807511849566208, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0017} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:46.919Z] [2019/11/26 10:34:46.816 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807511867916289, conflictStartTS=412807511882334209, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0017} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:46.919Z] PASS: db_change_test.go:805: testStateChangeSuite.TestParallelDropPrimaryKey 1.905s [2019-11-26T02:34:46.919Z] [2019/11/26 10:34:46.892 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807511887577090, conflictStartTS=412807511897800704, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0017} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:48.338Z] PASS: db_integration_test.go:1756: testIntegrationSuite3.TestDefaultValueIsString 1.462s [2019-11-26T02:34:48.338Z] PASS: db_change_test.go:1129: testStateChangeSuite.TestParallelTruncateTableAndAddColumn 1.339s [2019-11-26T02:34:48.915Z] [2019-11-26T02:34:48.915Z] ---------------------------------------------------------------------- [2019-11-26T02:34:48.915Z] FAIL: db_test.go:884: testDBSuite3.TestAddPrimaryKey3 [2019-11-26T02:34:48.915Z] [2019-11-26T02:34:48.915Z] db_test.go:885: [2019-11-26T02:34:48.915Z] testAddIndex(c, s.store, s.lease, true, [2019-11-26T02:34:48.915Z] `create table test_add_index (c1 bigint, c2 bigint, c3 bigint, key(c1)) [2019-11-26T02:34:48.915Z] partition by hash (c3) partitions 4;`, "primary") [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:183: [2019-11-26T02:34:48.915Z] tk.c.Assert(err, check.IsNil, check.Commentf("sql:%s, %v, error stack %v", sql, args, errors.ErrorStack(err))) [2019-11-26T02:34:48.915Z] ... value *errors.withStack = [domain:8027]Information schema is out of date: schema failed to update in 1 lease, please make sure TiDB can connect to TiKV ("[domain:8027]Information schema is out of date: schema failed to update in 1 lease, please make sure TiDB can connect to TiKV") [2019-11-26T02:34:48.915Z] ... sql:insert into test_add_index values (20, 20, 20), [], error stack [domain:8027]Information schema is out of date: schema failed to update in 1 lease, please make sure TiDB can connect to TiKV [2019-11-26T02:34:48.915Z] github.com/pingcap/errors.AddStack [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/errors@v0.11.4/errors.go:174 [2019-11-26T02:34:48.915Z] github.com/pingcap/errors.Trace [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/pingcap/errors@v0.11.4/juju_adaptor.go:15 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*twoPhaseCommitter).checkSchemaValid [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/2pc.go:1158 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*twoPhaseCommitter).execute [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/2pc.go:1108 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*twoPhaseCommitter).executeAndWriteFinishBinlog [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/2pc.go:1025 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/store/tikv.(*tikvTxn).Commit [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/store/tikv/txn.go:328 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*TxnState).Commit [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/txn.go:195 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).doCommit [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:440 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).doCommitWithRetry [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:459 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).CommitTxn [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:528 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.finishStmt [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/tidb.go:190 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.runStmt [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/tidb.go:272 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).executeStatement [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1029 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).execute [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1134 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/session.(*session).Execute [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/session/session.go:1069 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/util/testkit.(*TestKit).Exec [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:144 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/util/testkit.(*TestKit).MustExec [2019-11-26T02:34:48.915Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/testkit/testkit.go:182 [2019-11-26T02:34:48.915Z] github.com/pingcap/tidb/ddl_test.testAddIndex [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/db_test.go:949 [2019-11-26T02:34:48.916Z] github.com/pingcap/tidb/ddl_test.(*testDBSuite3).TestAddPrimaryKey3 [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/db_test.go:885 [2019-11-26T02:34:48.916Z] reflect.Value.call [2019-11-26T02:34:48.916Z] /usr/local/go/src/reflect/value.go:460 [2019-11-26T02:34:48.916Z] reflect.Value.Call [2019-11-26T02:34:48.916Z] /usr/local/go/src/reflect/value.go:321 [2019-11-26T02:34:48.916Z] github.com/pingcap/check.(*suiteRunner).forkTest.func1 [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/tiancaiamao/check@v0.0.0-20191119042138-8e73d07b629d/check.go:854 [2019-11-26T02:34:48.916Z] github.com/pingcap/check.(*suiteRunner).forkCall.func1 [2019-11-26T02:34:48.916Z] /home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/pkg/mod/github.com/tiancaiamao/check@v0.0.0-20191119042138-8e73d07b629d/check.go:739 [2019-11-26T02:34:48.916Z] runtime.goexit [2019-11-26T02:34:48.916Z] /usr/local/go/src/runtime/asm_amd64.s:1357 [2019-11-26T02:34:48.916Z] [2019-11-26T02:34:48.916Z] [2019/11/26 10:34:48.875 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807512367562752, conflictStartTS=412807512419729409, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0018} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:49.180Z] [2019/11/26 10:34:48.964 +08:00] [ERROR] [ddl_worker.go:142] ["[ddl] handle DDL job failed"] [worker="worker 30, tp add index"] [error="[kv:9007]Write conflict, txnStartTS=412807512427069441, conflictStartTS=412807512439390208, conflictCommitTS=0, key={metaKey=true, key=DDLJobReorg, field=\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0018} primary=[]byte(nil) [try again later]"] [stack="github.com/pingcap/tidb/ddl.(*worker).start\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl_worker.go:142\ngithub.com/pingcap/tidb/ddl.(*ddl).start.func1\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/ddl/ddl.go:435\ngithub.com/pingcap/tidb/util.WithRecovery\n\t/home/jenkins/agent/workspace/tidb_ghpr_unit_test/go/src/github.com/pingcap/tidb/util/misc.go:81"] [2019-11-26T02:34:49.442Z] PASS: db_partition_test.go:1247: testIntegrationSuite2.TestPartitionCancelAddPrimaryKey 9.687s ```
test
unit test failed in db test go bug report please answer these questions before submitting your issue thanks what did you do if possible provide a recipe for reproducing the error just run make dev what did you expect to see all tests pass what did you see instead db test go failed what version of tidb are you using tidb server v or run select tidb version on tidb tidb pass db partition test go testcreatetablewithpartition handle ddl job failed write conflict txnstartts conflictstartts conflictcommitts key metakey true key ddljobreorg field primary byte nil handle ddl job failed write conflict txnstartts conflictstartts conflictcommitts key metakey true key ddljobreorg field primary byte nil pass db change test go teststatechangesuite testparalleldropprimarykey handle ddl job failed write conflict txnstartts conflictstartts conflictcommitts key metakey true key ddljobreorg field primary byte nil pass db integration test go testdefaultvalueisstring pass db change test go teststatechangesuite testparalleltruncatetableandaddcolumn fail db test go db test go testaddindex c s store s lease true create table test add index bigint bigint bigint key partition by hash partitions primary home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb util testkit testkit go tk c assert err check isnil check commentf sql s v error stack v sql args errors errorstack err value errors withstack information schema is out of date schema failed to update in lease please make sure tidb can connect to tikv information schema is out of date schema failed to update in lease please make sure tidb can connect to tikv sql insert into test add index values error stack information schema is out of date schema failed to update in lease please make sure tidb can connect to tikv github com pingcap errors addstack home jenkins agent workspace tidb ghpr unit test go pkg mod github com pingcap errors errors go github com pingcap errors trace home jenkins agent workspace tidb ghpr unit test go pkg mod github com pingcap errors juju adaptor go github com pingcap tidb store tikv twophasecommitter checkschemavalid home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb store tikv go github com pingcap tidb store tikv twophasecommitter execute home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb store tikv go github com pingcap tidb store tikv twophasecommitter executeandwritefinishbinlog home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb store tikv go github com pingcap tidb store tikv tikvtxn commit home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb store tikv txn go github com pingcap tidb session txnstate commit home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session txn go github com pingcap tidb session session docommit home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session session go github com pingcap tidb session session docommitwithretry home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session session go github com pingcap tidb session session committxn home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session session go github com pingcap tidb session finishstmt home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session tidb go github com pingcap tidb session runstmt home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session tidb go github com pingcap tidb session session executestatement home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session session go github com pingcap tidb session session execute home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session session go github com pingcap tidb session session execute home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb session session go github com pingcap tidb util testkit testkit exec home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb util testkit testkit go github com pingcap tidb util testkit testkit mustexec home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb util testkit testkit go github com pingcap tidb ddl test testaddindex home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb ddl db test go github com pingcap tidb ddl test home jenkins agent workspace tidb ghpr unit test go src github com pingcap tidb ddl db test go reflect value call usr local go src reflect value go reflect value call usr local go src reflect value go github com pingcap check suiterunner forktest home jenkins agent workspace tidb ghpr unit test go pkg mod github com tiancaiamao check check go github com pingcap check suiterunner forkcall home jenkins agent workspace tidb ghpr unit test go pkg mod github com tiancaiamao check check go runtime goexit usr local go src runtime asm s handle ddl job failed write conflict txnstartts conflictstartts conflictcommitts key metakey true key ddljobreorg field primary byte nil handle ddl job failed write conflict txnstartts conflictstartts conflictcommitts key metakey true key ddljobreorg field primary byte nil pass db partition test go testpartitioncanceladdprimarykey
1
117,750
9,958,244,506
IssuesEvent
2019-07-05 20:13:03
ValveSoftware/steam-for-linux
https://api.github.com/repos/ValveSoftware/steam-for-linux
closed
Ghost chat issue
Need Retest reviewed
#### Your system information - Steam client version: 1468520696 - Distribution (e.g. Ubuntu): Mint 17 - Opted into Steam client beta?: [Yes/No] Yes - Have you checked for system updates?: [Yes/No] Yes #### Please describe your issue in as much detail as possible: Group chat frequently (2-3 times a day) malfunctions in the following way: it disconnects all users from the chat, although each user will not be notified, and will continue to see the connected users as if nothing happened. You can still type and send messages, although you won't get anything back, because you're not actually connected. It looks that the chat room fails to send a disconnection message to the client, so it won't take note of that. This is not limited to a single group, happens wherever I join. #### Steps for reproducing this issue: 1. Happens randomly during the day. Join a group chat and wait long enough, and eventually it will happen.
1.0
Ghost chat issue - #### Your system information - Steam client version: 1468520696 - Distribution (e.g. Ubuntu): Mint 17 - Opted into Steam client beta?: [Yes/No] Yes - Have you checked for system updates?: [Yes/No] Yes #### Please describe your issue in as much detail as possible: Group chat frequently (2-3 times a day) malfunctions in the following way: it disconnects all users from the chat, although each user will not be notified, and will continue to see the connected users as if nothing happened. You can still type and send messages, although you won't get anything back, because you're not actually connected. It looks that the chat room fails to send a disconnection message to the client, so it won't take note of that. This is not limited to a single group, happens wherever I join. #### Steps for reproducing this issue: 1. Happens randomly during the day. Join a group chat and wait long enough, and eventually it will happen.
test
ghost chat issue your system information steam client version distribution e g ubuntu mint opted into steam client beta yes have you checked for system updates yes please describe your issue in as much detail as possible group chat frequently times a day malfunctions in the following way it disconnects all users from the chat although each user will not be notified and will continue to see the connected users as if nothing happened you can still type and send messages although you won t get anything back because you re not actually connected it looks that the chat room fails to send a disconnection message to the client so it won t take note of that this is not limited to a single group happens wherever i join steps for reproducing this issue happens randomly during the day join a group chat and wait long enough and eventually it will happen
1
277,760
24,100,750,759
IssuesEvent
2022-09-20 00:12:29
AvianNetwork/Avian
https://api.github.com/repos/AvianNetwork/Avian
opened
Cross compile for x86_64-win fails to compile without "--disable-shared"
bug test
x86_64-win with PoW cache from #168 will not build unless `--disable-shared` is passed to the configure script. This is the error: ``` /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-block.o:block.cpp:(.text+0x1576): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0xa34): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0xe2a): undefined reference to `ArgsManager::GetArg(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, long long) const' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0xeb0): undefined reference to `ArgsManager::GetArg(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, long long) const' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0x131b): undefined reference to `GetDataDir(bool)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA5_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_[_Z5errorIJA5_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA5_cPKcEEbS2_DpRKT_[_Z5errorIJA5_cPKcEEbS2_DpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA5_cEEbPKcDpRKT_[_Z5errorIJA5_cEEbPKcDpRKT_]+0x107): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA6_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_[_Z5errorIJA6_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA6_cPKcEEbS2_DpRKT_[_Z5errorIJA6_cPKcEEbS2_DpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x33): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x86): undefined reference to `Params()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x247): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x30b): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x478): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x7a0): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x31): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x569): undefined reference to `Params()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x5b3): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x685): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x793): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x885): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x986): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x14d3): undefined reference to `GetTimeMillis()' make[2]: Leaving directory '/home/runner/work/Avian/Avian/src' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x36): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x115): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x240): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x37d): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x438): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' make[1]: Leaving directory '/home/runner/work/Avian/Avian/src' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x52b): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x619): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x71b): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x8e3): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x1716): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.rdata$.refptr.logCategories[.refptr.logCategories]+0x0): undefined reference to `logCategories' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.rdata$.refptr.gArgs[.refptr.gArgs]+0x0): undefined reference to `gArgs' collect2: error: ld returned 1 exit status make[2]: *** [Makefile:5831: libavianconsensus.la] Error 1 make[1]: *** [Makefile:15961: install-recursive] Error 1 make: *** [Makefile:753: install-recursive] Error 1 ```
1.0
Cross compile for x86_64-win fails to compile without "--disable-shared" - x86_64-win with PoW cache from #168 will not build unless `--disable-shared` is passed to the configure script. This is the error: ``` /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-block.o:block.cpp:(.text+0x1576): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0xa34): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0xe2a): undefined reference to `ArgsManager::GetArg(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, long long) const' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0xeb0): undefined reference to `ArgsManager::GetArg(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, long long) const' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text+0x131b): undefined reference to `GetDataDir(bool)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA5_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_[_Z5errorIJA5_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA5_cPKcEEbS2_DpRKT_[_Z5errorIJA5_cPKcEEbS2_DpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA5_cEEbPKcDpRKT_[_Z5errorIJA5_cEEbPKcDpRKT_]+0x107): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA6_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_[_Z5errorIJA6_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEbPKcDpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_Z5errorIJA6_cPKcEEbS2_DpRKT_[_Z5errorIJA6_cPKcEEbS2_DpRKT_]+0x3f1): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x33): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x86): undefined reference to `Params()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x247): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x30b): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x478): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE5WriteERKS0_[_ZN7CFlatDBI9CPowCacheE5WriteERKS0_]+0x7a0): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x31): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x569): undefined reference to `Params()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x5b3): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x685): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x793): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x885): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x986): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4ReadERS0_b[_ZN7CFlatDBI9CPowCacheE4ReadERS0_b]+0x14d3): undefined reference to `GetTimeMillis()' make[2]: Leaving directory '/home/runner/work/Avian/Avian/src' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x36): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x115): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x240): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x37d): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x438): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' make[1]: Leaving directory '/home/runner/work/Avian/Avian/src' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x52b): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x619): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x71b): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x8e3): undefined reference to `LogPrintStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.text$_ZN7CFlatDBI9CPowCacheE4DumpERS0_[_ZN7CFlatDBI9CPowCacheE4DumpERS0_]+0x1716): undefined reference to `GetTimeMillis()' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.rdata$.refptr.logCategories[.refptr.logCategories]+0x0): undefined reference to `logCategories' /usr/bin/x86_64-w64-mingw32-ld: primitives/.libs/libavianconsensus_la-powcache.o:powcache.cpp:(.rdata$.refptr.gArgs[.refptr.gArgs]+0x0): undefined reference to `gArgs' collect2: error: ld returned 1 exit status make[2]: *** [Makefile:5831: libavianconsensus.la] Error 1 make[1]: *** [Makefile:15961: install-recursive] Error 1 make: *** [Makefile:753: install-recursive] Error 1 ```
test
cross compile for win fails to compile without disable shared win with pow cache from will not build unless disable shared is passed to the configure script this is the error usr bin ld primitives libs libavianconsensus la block o block cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to argsmanager getarg std basic string std allocator const long long const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to argsmanager getarg std basic string std allocator const long long const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to getdatadir bool usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text traitsicesaiceeeeebpkcdprkt undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text dprkt undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text ceebpkcdprkt undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text traitsicesaiceeeeebpkcdprkt undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text dprkt undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to params usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to params usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text b undefined reference to gettimemillis make leaving directory home runner work avian avian src usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const make leaving directory home runner work avian avian src usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to logprintstr std basic string std allocator const usr bin ld primitives libs libavianconsensus la powcache o powcache cpp text undefined reference to gettimemillis usr bin ld primitives libs libavianconsensus la powcache o powcache cpp rdata refptr logcategories undefined reference to logcategories usr bin ld primitives libs libavianconsensus la powcache o powcache cpp rdata refptr gargs undefined reference to gargs error ld returned exit status make error make error make error
1
39,548
9,539,909,910
IssuesEvent
2019-04-30 18:08:39
idaholab/moose
https://api.github.com/repos/idaholab/moose
closed
Turn mms tests off when valgrind is enabled
T: defect
## Bug Description GCC 8.2.0 causes mms tests to fail for some reason. ## Steps to Reproduce Using GCC 8.2, run tests: ``` python2.7 ./run_tests -j 16 --oprof --valgrind-heavy --re=mms ``` ## Impact None.
1.0
Turn mms tests off when valgrind is enabled - ## Bug Description GCC 8.2.0 causes mms tests to fail for some reason. ## Steps to Reproduce Using GCC 8.2, run tests: ``` python2.7 ./run_tests -j 16 --oprof --valgrind-heavy --re=mms ``` ## Impact None.
non_test
turn mms tests off when valgrind is enabled bug description gcc causes mms tests to fail for some reason steps to reproduce using gcc run tests run tests j oprof valgrind heavy re mms impact none
0
2,907
5,889,722,895
IssuesEvent
2017-05-17 13:33:28
AllenFang/react-bootstrap-table
https://api.github.com/repos/AllenFang/react-bootstrap-table
closed
Changing Color on selected filter
enhancement inprocess
I want to change the color of selected filter to a different color. For example see below. I selected filter for Run to Trial-Run-I . I would like to change color in text insider selected filter to something more visible color. ![image](https://cloud.githubusercontent.com/assets/12001907/26015270/ffe1e0f2-3725-11e7-8b5b-b4cf50b4304a.png) Is there any way to pass color for selected?
1.0
Changing Color on selected filter - I want to change the color of selected filter to a different color. For example see below. I selected filter for Run to Trial-Run-I . I would like to change color in text insider selected filter to something more visible color. ![image](https://cloud.githubusercontent.com/assets/12001907/26015270/ffe1e0f2-3725-11e7-8b5b-b4cf50b4304a.png) Is there any way to pass color for selected?
non_test
changing color on selected filter i want to change the color of selected filter to a different color for example see below i selected filter for run to trial run i i would like to change color in text insider selected filter to something more visible color is there any way to pass color for selected
0
558,299
16,528,951,331
IssuesEvent
2021-05-27 01:32:38
eclipse-ee4j/glassfish
https://api.github.com/repos/eclipse-ee4j/glassfish
closed
[508] Foreground/background colour luminosity ratio is below 4:5:1 in GF 4.0
Component: admin_gui ERR: Assignee Priority: Major Stale Type: Bug admin-gui gf-4-0-508
OGHAG color contrast analyser testing reported more issues in the color. Failures got in managed scheduled executor services is : "16.36:1*. The Background Color of this element comes from a repeating background image. The contrast must be checked manually.The Text is small so target ratio is 4.5:1" Received many failures like above on Context services, Managed thread factories and Managed executor services modules. Each modules has new and edit screens and in both the screen it is found. #### Environment 508 Windows 7 / FireFox 19.0 , GF 4.0 b78 #### Affected Versions [4.0_dev]
1.0
[508] Foreground/background colour luminosity ratio is below 4:5:1 in GF 4.0 - OGHAG color contrast analyser testing reported more issues in the color. Failures got in managed scheduled executor services is : "16.36:1*. The Background Color of this element comes from a repeating background image. The contrast must be checked manually.The Text is small so target ratio is 4.5:1" Received many failures like above on Context services, Managed thread factories and Managed executor services modules. Each modules has new and edit screens and in both the screen it is found. #### Environment 508 Windows 7 / FireFox 19.0 , GF 4.0 b78 #### Affected Versions [4.0_dev]
non_test
foreground background colour luminosity ratio is below in gf oghag color contrast analyser testing reported more issues in the color failures got in managed scheduled executor services is the background color of this element comes from a repeating background image the contrast must be checked manually the text is small so target ratio is received many failures like above on context services managed thread factories and managed executor services modules each modules has new and edit screens and in both the screen it is found environment windows firefox gf affected versions
0
168,972
13,109,270,470
IssuesEvent
2020-08-04 18:22:26
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
Minio deployment in the pipeline fails to get to active state
[zube]: To Test area/mcm kind/bug-qa
<!-- Please search for existing issues first, then read https://rancher.com/docs/rancher/v2.x/en/contributing/#bugs-issues-or-questions to see what we expect in an issue For security issues, please email security@rancher.com instead of posting a public issue in GitHub. You may (but are not required to) use the GPG key located on Keybase. --> **What kind of request is this (question/bug/enhancement/feature request):** Bug **Steps to reproduce (least amount of steps as possible):** 1. Create a DO cluster 2. Enable pipeline in the cluster using default example repository: https://github.com/rancher/pipeline-example-go.git 3. Run the pipeline **Result:** The minio deployment fails to get to active state ![Screen Shot 2020-07-22 at 5 10 11 PM](https://user-images.githubusercontent.com/18536626/88241212-5091ea00-cc3e-11ea-80db-52788f3432b6.png) ![Screen Shot 2020-07-22 at 5 06 42 PM](https://user-images.githubusercontent.com/18536626/88241261-77502080-cc3e-11ea-957b-6cd10a1a85e4.png) **Other details that may be helpful:** Sometimes it gets to active state, but gets into crashloop backoff state after sometime **Environment information** - Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): master-head(f7e83e3) - Installation option (single install/HA): Single node <!-- If the reported issue is regarding a created cluster, please provide requested info below --> **Cluster information** - Kubernetes version (use `kubectl version`): V1.18.6-rancher1-2
1.0
Minio deployment in the pipeline fails to get to active state - <!-- Please search for existing issues first, then read https://rancher.com/docs/rancher/v2.x/en/contributing/#bugs-issues-or-questions to see what we expect in an issue For security issues, please email security@rancher.com instead of posting a public issue in GitHub. You may (but are not required to) use the GPG key located on Keybase. --> **What kind of request is this (question/bug/enhancement/feature request):** Bug **Steps to reproduce (least amount of steps as possible):** 1. Create a DO cluster 2. Enable pipeline in the cluster using default example repository: https://github.com/rancher/pipeline-example-go.git 3. Run the pipeline **Result:** The minio deployment fails to get to active state ![Screen Shot 2020-07-22 at 5 10 11 PM](https://user-images.githubusercontent.com/18536626/88241212-5091ea00-cc3e-11ea-80db-52788f3432b6.png) ![Screen Shot 2020-07-22 at 5 06 42 PM](https://user-images.githubusercontent.com/18536626/88241261-77502080-cc3e-11ea-957b-6cd10a1a85e4.png) **Other details that may be helpful:** Sometimes it gets to active state, but gets into crashloop backoff state after sometime **Environment information** - Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): master-head(f7e83e3) - Installation option (single install/HA): Single node <!-- If the reported issue is regarding a created cluster, please provide requested info below --> **Cluster information** - Kubernetes version (use `kubectl version`): V1.18.6-rancher1-2
test
minio deployment in the pipeline fails to get to active state please search for existing issues first then read to see what we expect in an issue for security issues please email security rancher com instead of posting a public issue in github you may but are not required to use the gpg key located on keybase what kind of request is this question bug enhancement feature request bug steps to reproduce least amount of steps as possible create a do cluster enable pipeline in the cluster using default example repository run the pipeline result the minio deployment fails to get to active state other details that may be helpful sometimes it gets to active state but gets into crashloop backoff state after sometime environment information rancher version rancher rancher rancher server image tag or shown bottom left in the ui master head installation option single install ha single node if the reported issue is regarding a created cluster please provide requested info below cluster information kubernetes version use kubectl version
1
225,207
17,798,345,650
IssuesEvent
2021-09-01 02:52:07
temporalio/temporal
https://api.github.com/repos/temporalio/temporal
closed
TestIntegrationSuite/TestCronWorkflow is flaky
CRON flaky-test
``` integration_test.go:1034: Error Trace: integration_test.go:1034 Error: Not equal: expected: 0 actual : 2 Test: TestIntegrationSuite/TestCronWorkflow Messages: exected backoff 2-0 should be multiplier of target backoff 3 ``` Line number might need some alignment.
1.0
TestIntegrationSuite/TestCronWorkflow is flaky - ``` integration_test.go:1034: Error Trace: integration_test.go:1034 Error: Not equal: expected: 0 actual : 2 Test: TestIntegrationSuite/TestCronWorkflow Messages: exected backoff 2-0 should be multiplier of target backoff 3 ``` Line number might need some alignment.
test
testintegrationsuite testcronworkflow is flaky integration test go error trace integration test go error not equal expected actual test testintegrationsuite testcronworkflow messages exected backoff should be multiplier of target backoff line number might need some alignment
1
123,429
10,268,320,622
IssuesEvent
2019-08-23 05:50:33
Ecohackerfarm/powerplant
https://api.github.com/repos/Ecohackerfarm/powerplant
closed
Test that values of name properties start with upper case letter
good first issue tests
This is quite clear for _family_ and _genus_, but _commonName_ and _binomialName_ are not so clear. Add the test to `test/db/practicalplants.js`.
1.0
Test that values of name properties start with upper case letter - This is quite clear for _family_ and _genus_, but _commonName_ and _binomialName_ are not so clear. Add the test to `test/db/practicalplants.js`.
test
test that values of name properties start with upper case letter this is quite clear for family and genus but commonname and binomialname are not so clear add the test to test db practicalplants js
1
196,021
14,789,605,581
IssuesEvent
2021-01-12 10:48:26
trinodb/trino
https://api.github.com/repos/trinodb/trino
opened
AbstractTestIndexedQueries#testHighCardinalityIndexJoinResult is flaky
bug test
``` 2021-01-12T10:39:19.5999200Z [ERROR] TestDistributedQueriesIndexed>AbstractTestIndexedQueries.testHighCardinalityIndexJoinResult:393->AbstractTestQueryFramework.assertQuery:149->AbstractTestQueryFramework.assertQuery:154 Execution of 'actual' query failed: SELECT * 2021-01-12T10:39:19.6029041Z FROM ( 2021-01-12T10:39:19.6029438Z SELECT * 2021-01-12T10:39:19.6029803Z FROM orders 2021-01-12T10:39:19.6030258Z WHERE orderkey % 10000 = 0) o1 2021-01-12T10:39:19.6030648Z JOIN ( 2021-01-12T10:39:19.6030993Z SELECT * 2021-01-12T10:39:19.6031349Z FROM orders 2021-01-12T10:39:19.6031756Z WHERE orderkey % 4 = 0) o2 2021-01-12T10:39:19.6032474Z ON o1.orderstatus = o2.orderstatus AND o1.shippriority = o2.shippriority 2021-01-12T10:39:19.6033115Z [INFO] 2021-01-12T10:39:19.6033618Z [ERROR] Tests run: 2112, Failures: 1, Errors: 0, Skipped: 1 ```
1.0
AbstractTestIndexedQueries#testHighCardinalityIndexJoinResult is flaky - ``` 2021-01-12T10:39:19.5999200Z [ERROR] TestDistributedQueriesIndexed>AbstractTestIndexedQueries.testHighCardinalityIndexJoinResult:393->AbstractTestQueryFramework.assertQuery:149->AbstractTestQueryFramework.assertQuery:154 Execution of 'actual' query failed: SELECT * 2021-01-12T10:39:19.6029041Z FROM ( 2021-01-12T10:39:19.6029438Z SELECT * 2021-01-12T10:39:19.6029803Z FROM orders 2021-01-12T10:39:19.6030258Z WHERE orderkey % 10000 = 0) o1 2021-01-12T10:39:19.6030648Z JOIN ( 2021-01-12T10:39:19.6030993Z SELECT * 2021-01-12T10:39:19.6031349Z FROM orders 2021-01-12T10:39:19.6031756Z WHERE orderkey % 4 = 0) o2 2021-01-12T10:39:19.6032474Z ON o1.orderstatus = o2.orderstatus AND o1.shippriority = o2.shippriority 2021-01-12T10:39:19.6033115Z [INFO] 2021-01-12T10:39:19.6033618Z [ERROR] Tests run: 2112, Failures: 1, Errors: 0, Skipped: 1 ```
test
abstracttestindexedqueries testhighcardinalityindexjoinresult is flaky testdistributedqueriesindexed abstracttestindexedqueries testhighcardinalityindexjoinresult abstracttestqueryframework assertquery abstracttestqueryframework assertquery execution of actual query failed select from select from orders where orderkey join select from orders where orderkey on orderstatus orderstatus and shippriority shippriority tests run failures errors skipped
1
141
2,695,770,805
IssuesEvent
2015-04-02 09:05:47
beheh/clonklorry
https://api.github.com/repos/beheh/clonklorry
closed
Caching layer between Model↔PersistenceService
architecture enhancement
Multiple requests (within one site call) for the model identified by the same row with the same value should be cached. When saving a model this should be reflected in the caching layer.
1.0
Caching layer between Model↔PersistenceService - Multiple requests (within one site call) for the model identified by the same row with the same value should be cached. When saving a model this should be reflected in the caching layer.
non_test
caching layer between model↔persistenceservice multiple requests within one site call for the model identified by the same row with the same value should be cached when saving a model this should be reflected in the caching layer
0
75,628
7,479,026,979
IssuesEvent
2018-04-04 13:33:25
major/MySQLTuner-perl
https://api.github.com/repos/major/MySQLTuner-perl
closed
Enable performance_schema recommendation on MariaDB 10.0.12+
Test wanted enhancement
MariaDB has disabled the performance schema [since version 10.0.12](https://mariadb.com/kb/en/library/mariadb-10012-release-notes/), due to [performance reasons](https://mariadb.com/kb/en/library/performance-schema-overview/#activating-the-performance-schema). So the recommendation to enable the performance schema on MariaDB 10.0.12+ should be suppressed.
1.0
Enable performance_schema recommendation on MariaDB 10.0.12+ - MariaDB has disabled the performance schema [since version 10.0.12](https://mariadb.com/kb/en/library/mariadb-10012-release-notes/), due to [performance reasons](https://mariadb.com/kb/en/library/performance-schema-overview/#activating-the-performance-schema). So the recommendation to enable the performance schema on MariaDB 10.0.12+ should be suppressed.
test
enable performance schema recommendation on mariadb mariadb has disabled the performance schema due to so the recommendation to enable the performance schema on mariadb should be suppressed
1
122,301
10,218,707,052
IssuesEvent
2019-08-15 16:37:14
GetTerminus/terminus-ui
https://api.github.com/repos/GetTerminus/terminus-ui
closed
Update installation instructions for flex layout
Focus: consumer Target: latest Type: bug
Currently instructions say to install `@angular/flex-layout@6.0.0-beta.26` but it should really be `@angular/flex-layout@8.0.0-beta.26`
1.0
Update installation instructions for flex layout - Currently instructions say to install `@angular/flex-layout@6.0.0-beta.26` but it should really be `@angular/flex-layout@8.0.0-beta.26`
test
update installation instructions for flex layout currently instructions say to install angular flex layout beta but it should really be angular flex layout beta
1
332,089
24,336,134,527
IssuesEvent
2022-10-01 04:53:04
casact/chainladder-python
https://api.github.com/repos/casact/chainladder-python
closed
Issue on page /development.html
Documentation
there is a note on this page that says drop_high and drop_low are ignored in cases where the number of link ratios available for a given development period is less than 3. the default value for preserve seems to be 1, not 3. not sure if this is a documentation error or the documentation actually reflects the original intent.
1.0
Issue on page /development.html - there is a note on this page that says drop_high and drop_low are ignored in cases where the number of link ratios available for a given development period is less than 3. the default value for preserve seems to be 1, not 3. not sure if this is a documentation error or the documentation actually reflects the original intent.
non_test
issue on page development html there is a note on this page that says drop high and drop low are ignored in cases where the number of link ratios available for a given development period is less than the default value for preserve seems to be not not sure if this is a documentation error or the documentation actually reflects the original intent
0
409,001
27,718,298,072
IssuesEvent
2023-03-14 18:28:30
apache/hop
https://api.github.com/repos/apache/hop
closed
[Task]: Simple pipeline logging sample/directions
task P3 Documentation
### What needs to happen? Migration: https://issues.apache.org/jira/browse/HOP-4467 It would be ideal to have a simple pipeline logging setup example / or setup help guide to better understand how to make use of this for logging/reflection. ### Issue Priority Priority: 3 ### Issue Component Component: Documentation
1.0
[Task]: Simple pipeline logging sample/directions - ### What needs to happen? Migration: https://issues.apache.org/jira/browse/HOP-4467 It would be ideal to have a simple pipeline logging setup example / or setup help guide to better understand how to make use of this for logging/reflection. ### Issue Priority Priority: 3 ### Issue Component Component: Documentation
non_test
simple pipeline logging sample directions what needs to happen migration it would be ideal to have a simple pipeline logging setup example or setup help guide to better understand how to make use of this for logging reflection issue priority priority issue component component documentation
0
12,819
15,086,630,803
IssuesEvent
2021-02-05 20:39:58
wp-media/wp-rocket
https://api.github.com/repos/wp-media/wp-rocket
closed
Requesting AMPforWP Compatibility
3rd party compatibility community invalid
Hi, The wp-rocket plugin works for Automattic's AMP plugin very well. But it disables AMPforWP to redirect into the mobile version with AMP. Please make the plugin compatible with AMPforWP https://wordpress.org/plugins/accelerated-mobile-pages/
True
Requesting AMPforWP Compatibility - Hi, The wp-rocket plugin works for Automattic's AMP plugin very well. But it disables AMPforWP to redirect into the mobile version with AMP. Please make the plugin compatible with AMPforWP https://wordpress.org/plugins/accelerated-mobile-pages/
non_test
requesting ampforwp compatibility hi the wp rocket plugin works for automattic s amp plugin very well but it disables ampforwp to redirect into the mobile version with amp please make the plugin compatible with ampforwp
0
194,028
14,667,612,372
IssuesEvent
2020-12-29 19:04:28
github-vet/rangeloop-pointer-findings
https://api.github.com/repos/github-vet/rangeloop-pointer-findings
closed
Mixton/tsdb-gw: ingest/rate_limit_test.go; 69 LoC
fresh medium test
Found a possible issue in [Mixton/tsdb-gw](https://www.github.com/Mixton/tsdb-gw) at [ingest/rate_limit_test.go](https://github.com/Mixton/tsdb-gw/blob/98f13d6023919ad393571569f1b8b39a38b1aaf0/ingest/rate_limit_test.go#L150-L218) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > range-loop variable tt used in defer or goroutine at line 160 [Click here to see the code in its original context.](https://github.com/Mixton/tsdb-gw/blob/98f13d6023919ad393571569f1b8b39a38b1aaf0/ingest/rate_limit_test.go#L150-L218) <details> <summary>Click here to show the 69 line(s) of Go which triggered the analyzer.</summary> ```go for _, tt := range tests { if err := ConfigureRateLimits(fmt.Sprintf("%d:%d", tt.orgId, tt.limit)); err != nil { t.Errorf("%s: ConfigureRateLimits() got error = %v", tt.name, err) } requestCh := make(chan int, 1000) ctx, cancel := context.WithCancel(context.Background()) go func() { done := time.NewTimer(time.Duration(tt.testTime) * time.Second) ticker := time.NewTicker(time.Second / time.Duration(tt.requestRate)) defer ticker.Stop() defer close(requestCh) for range ticker.C { select { case <-done.C: cancel() return case requestCh <- tt.datapointsPerRequest: default: } } }() var ingestedDatapoints, rejectedRequests, burstExceeded uint32 wg := sync.WaitGroup{} for datapoints := range requestCh { wg.Add(1) go func(datapoints int) { defer wg.Done() if IsRateBudgetAvailable(ctx, tt.orgId) { err := rateLimit(ctx, tt.orgId, datapoints) if err != nil { if err == ErrRequestExceedsBurst { atomic.AddUint32(&burstExceeded, 1) } else if err == context.Canceled { // that's not unexpected, because we're canceling the context once testTime has passed } else { t.Fatalf("%s: rateLimit returned unexpected error: %v", tt.name, err) } } else { atomic.AddUint32(&ingestedDatapoints, uint32(datapoints)) } } else { atomic.AddUint32(&rejectedRequests, 1) } }(datapoints) } wg.Wait() if atomic.LoadUint32(&ingestedDatapoints) < tt.expectedIngestedDatapointsMin || atomic.LoadUint32(&ingestedDatapoints) > tt.expectedIngestedDatapointsMax { t.Fatalf("%s: ingested datapoints expected in range %d - %d, Got %d", tt.name, tt.expectedIngestedDatapointsMin, tt.expectedIngestedDatapointsMax, atomic.LoadUint32(&ingestedDatapoints)) } if atomic.LoadUint32(&rejectedRequests) < tt.expectedRejectedRequestsMin || atomic.LoadUint32(&rejectedRequests) > tt.expectedRejectedRequestsMax { t.Fatalf("%s: rejected requests expected in range %d - %d, Got %d", tt.name, tt.expectedRejectedRequestsMin, tt.expectedRejectedRequestsMax, atomic.LoadUint32(&rejectedRequests)) } if atomic.LoadUint32(&burstExceeded) < tt.expectedBurstExceededMin || atomic.LoadUint32(&burstExceeded) > tt.expectedBurstExceededMax { t.Fatalf("%s: expected number of burst exceeded errors %d - %d, Got %d", tt.name, tt.expectedBurstExceededMin, tt.expectedBurstExceededMax, atomic.LoadUint32(&burstExceeded)) } t.Logf("ingestedDatapoints: %d (min/max %d/%d) rejectedRequests: %d (min/max %d/%d) burstExceeded: %d (min/max %d/%d)", ingestedDatapoints, tt.expectedIngestedDatapointsMin, tt.expectedIngestedDatapointsMax, rejectedRequests, tt.expectedRejectedRequestsMin, tt.expectedRejectedRequestsMax, burstExceeded, tt.expectedBurstExceededMin, tt.expectedBurstExceededMax) } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 98f13d6023919ad393571569f1b8b39a38b1aaf0
1.0
Mixton/tsdb-gw: ingest/rate_limit_test.go; 69 LoC - Found a possible issue in [Mixton/tsdb-gw](https://www.github.com/Mixton/tsdb-gw) at [ingest/rate_limit_test.go](https://github.com/Mixton/tsdb-gw/blob/98f13d6023919ad393571569f1b8b39a38b1aaf0/ingest/rate_limit_test.go#L150-L218) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > range-loop variable tt used in defer or goroutine at line 160 [Click here to see the code in its original context.](https://github.com/Mixton/tsdb-gw/blob/98f13d6023919ad393571569f1b8b39a38b1aaf0/ingest/rate_limit_test.go#L150-L218) <details> <summary>Click here to show the 69 line(s) of Go which triggered the analyzer.</summary> ```go for _, tt := range tests { if err := ConfigureRateLimits(fmt.Sprintf("%d:%d", tt.orgId, tt.limit)); err != nil { t.Errorf("%s: ConfigureRateLimits() got error = %v", tt.name, err) } requestCh := make(chan int, 1000) ctx, cancel := context.WithCancel(context.Background()) go func() { done := time.NewTimer(time.Duration(tt.testTime) * time.Second) ticker := time.NewTicker(time.Second / time.Duration(tt.requestRate)) defer ticker.Stop() defer close(requestCh) for range ticker.C { select { case <-done.C: cancel() return case requestCh <- tt.datapointsPerRequest: default: } } }() var ingestedDatapoints, rejectedRequests, burstExceeded uint32 wg := sync.WaitGroup{} for datapoints := range requestCh { wg.Add(1) go func(datapoints int) { defer wg.Done() if IsRateBudgetAvailable(ctx, tt.orgId) { err := rateLimit(ctx, tt.orgId, datapoints) if err != nil { if err == ErrRequestExceedsBurst { atomic.AddUint32(&burstExceeded, 1) } else if err == context.Canceled { // that's not unexpected, because we're canceling the context once testTime has passed } else { t.Fatalf("%s: rateLimit returned unexpected error: %v", tt.name, err) } } else { atomic.AddUint32(&ingestedDatapoints, uint32(datapoints)) } } else { atomic.AddUint32(&rejectedRequests, 1) } }(datapoints) } wg.Wait() if atomic.LoadUint32(&ingestedDatapoints) < tt.expectedIngestedDatapointsMin || atomic.LoadUint32(&ingestedDatapoints) > tt.expectedIngestedDatapointsMax { t.Fatalf("%s: ingested datapoints expected in range %d - %d, Got %d", tt.name, tt.expectedIngestedDatapointsMin, tt.expectedIngestedDatapointsMax, atomic.LoadUint32(&ingestedDatapoints)) } if atomic.LoadUint32(&rejectedRequests) < tt.expectedRejectedRequestsMin || atomic.LoadUint32(&rejectedRequests) > tt.expectedRejectedRequestsMax { t.Fatalf("%s: rejected requests expected in range %d - %d, Got %d", tt.name, tt.expectedRejectedRequestsMin, tt.expectedRejectedRequestsMax, atomic.LoadUint32(&rejectedRequests)) } if atomic.LoadUint32(&burstExceeded) < tt.expectedBurstExceededMin || atomic.LoadUint32(&burstExceeded) > tt.expectedBurstExceededMax { t.Fatalf("%s: expected number of burst exceeded errors %d - %d, Got %d", tt.name, tt.expectedBurstExceededMin, tt.expectedBurstExceededMax, atomic.LoadUint32(&burstExceeded)) } t.Logf("ingestedDatapoints: %d (min/max %d/%d) rejectedRequests: %d (min/max %d/%d) burstExceeded: %d (min/max %d/%d)", ingestedDatapoints, tt.expectedIngestedDatapointsMin, tt.expectedIngestedDatapointsMax, rejectedRequests, tt.expectedRejectedRequestsMin, tt.expectedRejectedRequestsMax, burstExceeded, tt.expectedBurstExceededMin, tt.expectedBurstExceededMax) } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 98f13d6023919ad393571569f1b8b39a38b1aaf0
test
mixton tsdb gw ingest rate limit test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message range loop variable tt used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for tt range tests if err configureratelimits fmt sprintf d d tt orgid tt limit err nil t errorf s configureratelimits got error v tt name err requestch make chan int ctx cancel context withcancel context background go func done time newtimer time duration tt testtime time second ticker time newticker time second time duration tt requestrate defer ticker stop defer close requestch for range ticker c select case done c cancel return case requestch tt datapointsperrequest default var ingesteddatapoints rejectedrequests burstexceeded wg sync waitgroup for datapoints range requestch wg add go func datapoints int defer wg done if isratebudgetavailable ctx tt orgid err ratelimit ctx tt orgid datapoints if err nil if err errrequestexceedsburst atomic burstexceeded else if err context canceled that s not unexpected because we re canceling the context once testtime has passed else t fatalf s ratelimit returned unexpected error v tt name err else atomic ingesteddatapoints datapoints else atomic rejectedrequests datapoints wg wait if atomic ingesteddatapoints tt expectedingesteddatapointsmax t fatalf s ingested datapoints expected in range d d got d tt name tt expectedingesteddatapointsmin tt expectedingesteddatapointsmax atomic ingesteddatapoints if atomic rejectedrequests tt expectedrejectedrequestsmax t fatalf s rejected requests expected in range d d got d tt name tt expectedrejectedrequestsmin tt expectedrejectedrequestsmax atomic rejectedrequests if atomic burstexceeded tt expectedburstexceededmax t fatalf s expected number of burst exceeded errors d d got d tt name tt expectedburstexceededmin tt expectedburstexceededmax atomic burstexceeded t logf ingesteddatapoints d min max d d rejectedrequests d min max d d burstexceeded d min max d d ingesteddatapoints tt expectedingesteddatapointsmin tt expectedingesteddatapointsmax rejectedrequests tt expectedrejectedrequestsmin tt expectedrejectedrequestsmax burstexceeded tt expectedburstexceededmin tt expectedburstexceededmax leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
140,516
11,349,426,380
IssuesEvent
2020-01-24 04:52:57
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
[test-failed]: Chrome UI Functional Tests.test/functional/apps/discover/_shared_links·js - discover app shared links shared links with state in sessionStorage permalink should allow for copying the snapshot URL as a short URL and should open it
failed-test test-cloud
**Version: 7.6** **Class: Chrome UI Functional Tests.test/functional/apps/discover/_shared_links·js** **Stack Trace:** { TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="shareUrlForm"]) Wait timed out after 10050ms at /var/lib/jenkins/workspace/elastic+estf-cloud-kibana-tests/JOB/ossGrp1/TASK/saas_run_kibana_tests/node/linux-immutable/ci/cloud/common/build/kibana/node_modules/selenium-webdriver/lib/webdriver.js:841:17 at process._tickCallback (internal/process/next_tick.js:68:7) name: 'TimeoutError', remoteStacktrace: '' } _Platform: cloud_ _Build Num: 42_
2.0
[test-failed]: Chrome UI Functional Tests.test/functional/apps/discover/_shared_links·js - discover app shared links shared links with state in sessionStorage permalink should allow for copying the snapshot URL as a short URL and should open it - **Version: 7.6** **Class: Chrome UI Functional Tests.test/functional/apps/discover/_shared_links·js** **Stack Trace:** { TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="shareUrlForm"]) Wait timed out after 10050ms at /var/lib/jenkins/workspace/elastic+estf-cloud-kibana-tests/JOB/ossGrp1/TASK/saas_run_kibana_tests/node/linux-immutable/ci/cloud/common/build/kibana/node_modules/selenium-webdriver/lib/webdriver.js:841:17 at process._tickCallback (internal/process/next_tick.js:68:7) name: 'TimeoutError', remoteStacktrace: '' } _Platform: cloud_ _Build Num: 42_
test
chrome ui functional tests test functional apps discover shared links·js discover app shared links shared links with state in sessionstorage permalink should allow for copying the snapshot url as a short url and should open it version class chrome ui functional tests test functional apps discover shared links·js stack trace timeouterror waiting for element to be located by css selector wait timed out after at var lib jenkins workspace elastic estf cloud kibana tests job task saas run kibana tests node linux immutable ci cloud common build kibana node modules selenium webdriver lib webdriver js at process tickcallback internal process next tick js name timeouterror remotestacktrace platform cloud build num
1
177,292
13,689,951,857
IssuesEvent
2020-09-30 13:48:55
BrenoMazieiro/api-graphql
https://api.github.com/repos/BrenoMazieiro/api-graphql
closed
We shoud implements tests on MergeBook
Tests
Hello everyone, I analyzed the code and realized that there is no test implementation for the application domain of the book domain in MergeBook.js I will try to implement them, but feel free to do them if you want.
1.0
We shoud implements tests on MergeBook - Hello everyone, I analyzed the code and realized that there is no test implementation for the application domain of the book domain in MergeBook.js I will try to implement them, but feel free to do them if you want.
test
we shoud implements tests on mergebook hello everyone i analyzed the code and realized that there is no test implementation for the application domain of the book domain in mergebook js i will try to implement them but feel free to do them if you want
1
96,507
3,969,012,883
IssuesEvent
2016-05-03 21:42:47
w3c/webauthn
https://api.github.com/repos/w3c/webauthn
closed
TAG review feedback: Should we be using array types instead of base64-encoded DOMStrings?
priority:high
I believe Alex Russell mentioned this in person at the San Francisco F2F, elaborating on comments in w3ctag/spec-reviews#97 It may seem more natural to use BufferSource, ArrayBuffer, or ArrayBufferView in various places where we have base64-encoded DOMStrings currently. This may also make it easier for script authors to manipulate these locally if needed (e.g. WebCrypto APIs take array types) and it avoids prescribing the use of base64.
1.0
TAG review feedback: Should we be using array types instead of base64-encoded DOMStrings? - I believe Alex Russell mentioned this in person at the San Francisco F2F, elaborating on comments in w3ctag/spec-reviews#97 It may seem more natural to use BufferSource, ArrayBuffer, or ArrayBufferView in various places where we have base64-encoded DOMStrings currently. This may also make it easier for script authors to manipulate these locally if needed (e.g. WebCrypto APIs take array types) and it avoids prescribing the use of base64.
non_test
tag review feedback should we be using array types instead of encoded domstrings i believe alex russell mentioned this in person at the san francisco elaborating on comments in spec reviews it may seem more natural to use buffersource arraybuffer or arraybufferview in various places where we have encoded domstrings currently this may also make it easier for script authors to manipulate these locally if needed e g webcrypto apis take array types and it avoids prescribing the use of
0
24,101
16,844,664,804
IssuesEvent
2021-06-19 08:02:20
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
Build failed: Validate-DotNet/main #runtime-94593-.NET6
area-Infrastructure untriaged
Build [#runtime-94593-.NET6](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=1193262) partiallySucceeded ## :warning: : internal / Validate-DotNet partiallySucceeded ### Summary **Finished** - Fri, 18 Jun 2021 03:02:28 GMT **Duration** - 233 minutes **Requested for** - DotNet Bot **Reason** - manual ### Details #### Validation Ring - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - (NETCORE_ENGINEERING_TELEMETRY=CheckSymbols) Missing symbols for 2 modules in the package D:\workspace\_work\1\a\signed\shipping\assets\symbols\Microsoft.NETCore.App.Runtime.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - (NETCORE_ENGINEERING_TELEMETRY=CheckSymbols) Missing symbols for 2 modules in the package D:\workspace\_work\1\a\signed\shipping\assets\symbols\Microsoft.NETCore.App.Runtime.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - (NETCORE_ENGINEERING_TELEMETRY=CheckSymbols) Symbols missing for 2/308 packages - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - PowerShell exited with code '1'. #### Required Validation Ring - :warning: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/212) - Number of checksums and assets don't match. Checksums: 182. Assets: 786. Assets with no corresponding checksum are: assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Pipelines.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Management.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Net.Http.WinHttpHandler.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Reflection.Context.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Numerics.Tensors.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Reflection.Metadata.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.CodeDom.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Collections.Immutable.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ComponentModel.Composition.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ComponentModel.Composition.Registration.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.Convention.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.AttributedModel.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.TypedParts.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.Hosting.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.Runtime.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Speech.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ServiceProcess.ServiceController.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ServiceModel.Syndication.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Drawing.Common.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Diagnostics.EventLog.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.DirectoryServices.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Diagnostics.PerformanceCounter.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.DirectoryServices.AccountManagement.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.DirectoryServices.Protocols.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Formats.Asn1.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Formats.Cbor.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Hashing.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Packaging.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Memory.Data.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Net.Http.Json.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Reflection.MetadataLoadContext.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Resources.Extensions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Runtime.CompilerServices.Unsafe.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Runtime.Caching.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Cryptography.Pkcs.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Cryptography.ProtectedData.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Cryptography.Xml.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Text.Encoding.CodePages.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg runtime.linux-arm.Microsoft.NETCore.ILAsm runtime.linux-arm.Microsoft.NETCore.TestHost runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost runtime.linux-arm.runtime.native.System.IO.Ports runtime.linux-arm64.Microsoft.NETCore.DotNetHost runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-arm64.Microsoft.NETCore.ILAsm runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver runtime.linux-arm64.runtime.native.System.IO.Ports runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.osx-x64 runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver Microsoft.NETCore.TestHost Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-arm64 Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-x64 Microsoft.NETCore.App.Runtime.Mono.LLVM.osx-x64 Microsoft.NETCore.App.Runtime.Mono.maccatalyst-arm64 Microsoft.NETCore.App.Runtime.Mono.maccatalyst-x64 Microsoft.NETCore.App.Runtime.win-arm Microsoft.NETCore.App.Runtime.win-x86 Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64 runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver Microsoft.Extensions.Options.ConfigurationExtensions Microsoft.IO.Redist Microsoft.ILVerification Microsoft.Extensions.Primitives Microsoft.NETCore.App.Crossgen2.linux-arm64 Microsoft.NET.Runtime.Android.Sample.Mono Microsoft.NET.Runtime.MonoAOTCompiler.Task Microsoft.NET.Runtime.RuntimeConfigParser.Task Microsoft.NETCore.App.Composite Microsoft.NET.Runtime.WebAssembly.Sdk Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-x64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-x64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x86 assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Runtime.linux-musl-arm64 Microsoft.NETCore.App.Runtime.linux-musl-x64 Microsoft.NETCore.App.Runtime.Mono.android-arm64 Microsoft.NETCore.App.Runtime.linux-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x86 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm assets/symbols/runtime.linux-arm64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Crossgen2.osx-x64 Microsoft.NETCore.App.Crossgen2.win-x64 assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.MonoAOTCompiler.Task.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.RuntimeConfigParser.Task.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.wasm.Sample.Mono.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Sdk.IL.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Workload.Mono.ToolChain.Manifest-6.0.100.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.ios-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NET.Runtime.wasm.Sample.Mono Microsoft.NET.Workload.Mono.ToolChain.Manifest-6.0.100 assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-musl-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-arm64 assets/symbols/System.Text.Json.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Text.Encodings.Web.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Threading.Channels.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Threading.AccessControl.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Threading.Tasks.Dataflow.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Windows.Extensions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Permissions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Diagnostics.DiagnosticSource.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Data.OleDb.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Data.Odbc.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Configuration.ConfigurationManager.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.Extensions.FileSystemGlobbing Microsoft.NETCore.App.Crossgen2.linux-x64 Microsoft.NETCore.App.Runtime.linux-x64 Microsoft.NETCore.App.Runtime.Mono.android-arm Microsoft.NETCore.App.Runtime.Mono.ios-arm Microsoft.NETCore.App.Runtime.Mono.android-x86 Microsoft.NETCore.App.Runtime.Mono.android-x64 Microsoft.NETCore.App.Runtime.Mono.iossimulator-arm64 Microsoft.NETCore.App.Runtime.Mono.ios-arm64 Microsoft.NETCore.App.Crossgen2.win-arm64 Microsoft.NETCore.App.Crossgen2.win-arm Microsoft.NETCore.App.Host.linux-arm64 Microsoft.NETCore.App.Host.linux-arm Microsoft.NETCore.App.Host.linux-musl-arm Microsoft.NETCore.App.Host.linux-musl-x64 Microsoft.NETCore.App.Host.linux-x64 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm assets/symbols/Microsoft.NETCore.App.PGO.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.iOS.Sample.Mono.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.WebAssembly.Sdk.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-musl-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Private.CoreFx.OOB.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Win32.Registry.AccessControl.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Win32.SystemEvents.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Windows.Compatibility.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.iossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.tvos-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg System.Memory.Data System.Net.Http.WinHttpHandler assets/symbols/Microsoft.Net.HostModel.PGO.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.Android.Sample.Mono.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.IO.Redist.6.0.0-preview.7.21317.8.symbols.nupkg System.Numerics.Tensors System.Reflection.Metadata System.Reflection.Context System.Reflection.MetadataLoadContext System.Runtime.Caching System.Resources.Extensions System.Security.Cryptography.Pkcs System.Runtime.CompilerServices.Unsafe System.Security.Cryptography.Xml System.Security.Cryptography.ProtectedData System.Security.Permissions System.ServiceModel.Syndication System.Text.Encoding.CodePages System.Speech System.ServiceProcess.ServiceController System.Text.Json System.Text.Encodings.Web System.Threading.Channels System.Composition System.Composition.AttributedModel System.Composition.Hosting System.Configuration.ConfigurationManager System.Composition.Runtime System.Diagnostics.DiagnosticSource System.Diagnostics.EventLog System.Diagnostics.PerformanceCounter System.DirectoryServices System.Drawing.Common System.DirectoryServices.Protocols assets/symbols/Microsoft.NETCore.App.Runtime.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.tvossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.ios-arm.6.0.0-preview.7.21317.8.symbols.nupkg runtime.win-x86.Microsoft.NETCore.DotNetAppHost assets/symbols/Microsoft.NETCore.App.Runtime.Mono.maccatalyst-x64.6.0.0-preview.7.21317.8.symbols.nupkg System.IO.Hashing System.Composition.TypedParts assets/symbols/Microsoft.Extensions.DependencyInjection.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.DependencyInjection.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.DependencyInjection.Specification.Tests.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.DependencyModel.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileProviders.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileProviders.Composite.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileProviders.Physical.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileSystemGlobbing.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.HostFactoryResolver.Sources.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.Systemd.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.WindowsServices.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.TraceSource.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Options.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Crossgen2.linux-musl-arm Microsoft.Extensions.Http Microsoft.Bcl.AsyncInterfaces Microsoft.NETCore.App.Crossgen2.linux-musl-arm64 Microsoft.Extensions.DependencyInjection Microsoft.Extensions.DependencyInjection.Abstractions Microsoft.Extensions.Configuration.Xml Microsoft.Extensions.DependencyModel Microsoft.Extensions.DependencyInjection.Specification.Tests Microsoft.Extensions.FileProviders.Abstractions Microsoft.Extensions.Hosting Microsoft.Extensions.Configuration.Ini Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x86 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x64 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.browser-wasm Microsoft.NETCore.App.Host.win-arm runtime.win-x64.Microsoft.NETCore.TestHost runtime.win-x64.Microsoft.NETCore.ILDAsm assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-musl-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg System.Net.Http.Json System.Threading.AccessControl System.Threading.Tasks.Dataflow System.Windows.Extensions System.IO.Ports System.Management System.IO.Pipelines assets/symbols/Microsoft.NET.HostModel.6.0.0-preview.7.21317.8.symbols.nupkg runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy runtime.win-x86.Microsoft.NETCore.DotNetHostResolver System.IO.Packaging runtime.win-x86.Microsoft.NETCore.ILAsm System.CodeDom runtime.win-x86.Microsoft.NETCore.TestHost runtime.win-x86.Microsoft.NETCore.ILDAsm System.Formats.Asn1 assets/symbols/Microsoft.Extensions.Configuration.FileExtensions.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Runtime.Mono.tvossimulator-arm64 Microsoft.NETCore.App.Runtime.Mono.tvos-arm64 Microsoft.NETCore.App.Runtime.Mono.osx-arm64 runtime.linux-musl-arm.Microsoft.NETCore.ILAsm Microsoft.NETCore.App.Runtime.win-arm64 Microsoft.NETCore.App.Runtime.win-x64 Microsoft.NETCore.App.Runtime.Mono.win-x64 Microsoft.NETCore.DotNetAppHost Microsoft.NETCore.DotNetHost Microsoft.NETCore.DotNetHostPolicy Microsoft.NETCore.DotNetHostResolver runtime.osx-x64.Microsoft.NETCore.DotNetAppHost Microsoft.NETCore.ILAsm runtime.linux-musl-arm.Microsoft.NETCore.ILDAsm runtime.osx-x64.Microsoft.NETCore.DotNetHost runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy runtime.win-arm.Microsoft.NETCore.DotNetAppHost runtime.win-arm64.Microsoft.NETCore.DotNetAppHost runtime.osx-x64.Microsoft.NETCore.ILAsm runtime.osx-x64.Microsoft.NETCore.ILDAsm runtime.osx-x64.runtime.native.System.IO.Ports runtime.osx-x64.Microsoft.NETCore.TestHost runtime.win-arm.Microsoft.NETCore.DotNetHost runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy runtime.win-arm.Microsoft.NETCore.ILAsm runtime.win-arm.Microsoft.NETCore.DotNetHostResolver runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost runtime.win-arm.Microsoft.NETCore.ILDAsm runtime.win-arm.Microsoft.NETCore.TestHost runtime.win-x64.Microsoft.NETCore.DotNetAppHost runtime.win-arm64.Microsoft.NETCore.DotNetHost runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver runtime.win-arm64.Microsoft.NETCore.ILDAsm runtime.win-arm64.Microsoft.NETCore.ILAsm runtime.win-arm64.Microsoft.NETCore.TestHost runtime.win-x64.Microsoft.NETCore.DotNetHost runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy runtime.win-x64.Microsoft.NETCore.ILAsm runtime.win-x64.Microsoft.NETCore.DotNetHostResolver runtime.osx-arm64.Microsoft.NETCore.TestHost runtime.osx-arm64.Microsoft.NETCore.ILAsm runtime.osx-arm64.Microsoft.NETCore.ILDAsm runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost runtime.linux-musl-arm64.Microsoft.NETCore.ILAsm runtime.linux-musl-arm64.Microsoft.NETCore.ILDAsm runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost runtime.linux-musl-arm64.Microsoft.NETCore.TestHost runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-musl-x64.Microsoft.NETCore.ILAsm runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver runtime.linux-x64.Microsoft.NETCore.DotNetAppHost runtime.linux-musl-x64.Microsoft.NETCore.ILDAsm runtime.linux-musl-arm.Microsoft.NETCore.TestHost runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-x64.Microsoft.NETCore.ILAsm runtime.linux-x64.Microsoft.NETCore.DotNetHost runtime.linux-musl-x64.Microsoft.NETCore.TestHost Microsoft.Extensions.Logging.Abstractions Microsoft.Extensions.Logging.Configuration Microsoft.Extensions.Logging.Console Microsoft.Extensions.Logging Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventSource Microsoft.Extensions.Logging.EventLog Microsoft.Extensions.Logging.TraceSource Microsoft.NET.Sdk.IL Microsoft.NETCore.App.Crossgen2.linux-arm Microsoft.Extensions.Hosting.WindowsServices Microsoft.Extensions.Hosting.Systemd Microsoft.Extensions.Hosting.Abstractions dotnet-ilverify Microsoft.Diagnostics.Tracing.EventSource.Redist Microsoft.Extensions.Caching.Abstractions Microsoft.Extensions.Caching.Memory Microsoft.Extensions.Configuration Microsoft.Extensions.Configuration.Abstractions Microsoft.Extensions.Configuration.Binder Microsoft.Extensions.Configuration.CommandLine Microsoft.Extensions.Configuration.EnvironmentVariables Microsoft.NETCore.App.Crossgen2.linux-musl-x64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm Microsoft.NETCore.App.Runtime.linux-arm Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm Microsoft.NETCore.App.Runtime.linux-musl-arm Microsoft.NETCore.App.Runtime.Mono.browser-wasm Microsoft.NETCore.App.Runtime.Mono.iossimulator-x64 Microsoft.NETCore.App.Crossgen2.osx-arm64 Microsoft.NETCore.App.Crossgen2.win-x86 Microsoft.NETCore.App.Host.linux-musl-arm64 Microsoft.NETCore.App.Host.osx-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.browser-wasm Microsoft.NETCore.App.Host.osx-x64 Microsoft.NETCore.App.Host.win-arm64 Microsoft.NETCore.App.Host.win-x64 Microsoft.NETCore.App.Host.win-x86 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm64 Microsoft.NETCore.App.Ref Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm64 runtime.win-x86.Microsoft.NETCore.DotNetHost assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvos-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-musl-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-musl-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.BrowserDebugHost.Transport.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Http.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Debug.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.EventSource.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Options.ConfigurationExtensions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Options.DataAnnotations.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Primitives.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Xml.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Ini.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.AspNetCore.Internal.Transport.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21317.8.symbols.nupkg Runtime/6.0.0-preview.7.21317.8/productVersion.txt Runtime/6.0.0-preview.7.21317.8/runtime-productVersion.txt assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.Win32.Registry.AccessControl Microsoft.Win32.SystemEvents assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.XmlSerializer.Generator Microsoft.Windows.Compatibility runtime.linux-arm.Microsoft.NETCore.DotNetAppHost runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy runtime.linux-arm.Microsoft.NETCore.DotNetHost runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver runtime.linux-arm.Microsoft.NETCore.ILDAsm runtime.linux-arm64.Microsoft.NETCore.ILDAsm runtime.linux-arm64.Microsoft.NETCore.TestHost Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-x64 runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost Microsoft.NETCore.Platforms Microsoft.NETCore.ILDAsm Microsoft.NETCore.App.Runtime.Mono.linux-x64 Microsoft.NETCore.App.Runtime.Mono.tvossimulator-x64 Microsoft.NETCore.App.Runtime.Mono.osx-x64 Microsoft.NETCore.App.Runtime.osx-arm64 Microsoft.NETCore.App.Runtime.Mono.win-x86 Microsoft.NETCore.App.Runtime.osx-x64 Microsoft.NETCore.App.Runtime.Mono.iossimulator-x86 runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver runtime.linux-x64.Microsoft.NETCore.TestHost runtime.linux-x64.Microsoft.NETCore.ILDAsm runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost runtime.linux-x64.runtime.native.System.IO.Ports runtime.native.System.IO.Ports Microsoft.NETCore.App.Runtime.Mono.linux-arm runtime.osx-arm64.Microsoft.NETCore.DotNetHost Microsoft.NETCore.App.Runtime.Mono.linux-arm64 runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy Microsoft.Extensions.Options.DataAnnotations Microsoft.Extensions.Options Microsoft.NET.Runtime.iOS.Sample.Mono Microsoft.Extensions.Configuration.FileExtensions Microsoft.Extensions.Configuration.Json Microsoft.Extensions.Configuration.UserSecrets Microsoft.Extensions.FileProviders.Composite Microsoft.Extensions.FileProviders.Physical Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvos-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-arm64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm64 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x86 assets/symbols/Microsoft.NETCore.App.Host.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Ref.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Composite.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-musl-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.XmlSerializer.Generator.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.tvossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.iossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.iossimulator-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.maccatalyst-arm64.6.0.0-preview.7.21317.8.symbols.nupkg System.Collections.Immutable System.ComponentModel.Composition.Registration System.ComponentModel.Composition System.Composition.Convention System.Data.Odbc System.Data.OleDb System.DirectoryServices.AccountManagement System.Formats.Cbor assets/symbols/Microsoft.Extensions.Logging.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Console.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Configuration.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.EventLog.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.ILVerification.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.UserSecrets.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Json.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/dotnet-pgo.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/dotnet-ilverify.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.EnvironmentVariables.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.CommandLine.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Diagnostics.Tracing.EventSource.Redist.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Binder.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/ILCompiler.Reflection.ReadyToRun.Experimental.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Caching.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Caching.Memory.6.0.0-preview.7.21317.8.symbols.nupkg ### Changes - [2fe556f6](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/2fe556f620c72df5bf93db2236c67da1f7ecfcd0) - Jon Fortescue - Merged PR 15959: Make the circles orange when you click override
1.0
Build failed: Validate-DotNet/main #runtime-94593-.NET6 - Build [#runtime-94593-.NET6](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=1193262) partiallySucceeded ## :warning: : internal / Validate-DotNet partiallySucceeded ### Summary **Finished** - Fri, 18 Jun 2021 03:02:28 GMT **Duration** - 233 minutes **Requested for** - DotNet Bot **Reason** - manual ### Details #### Validation Ring - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - (NETCORE_ENGINEERING_TELEMETRY=CheckSymbols) Missing symbols for 2 modules in the package D:\workspace\_work\1\a\signed\shipping\assets\symbols\Microsoft.NETCore.App.Runtime.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - (NETCORE_ENGINEERING_TELEMETRY=CheckSymbols) Missing symbols for 2 modules in the package D:\workspace\_work\1\a\signed\shipping\assets\symbols\Microsoft.NETCore.App.Runtime.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - (NETCORE_ENGINEERING_TELEMETRY=CheckSymbols) Symbols missing for 2/308 packages - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/252) - PowerShell exited with code '1'. #### Required Validation Ring - :warning: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1193262/logs/212) - Number of checksums and assets don't match. Checksums: 182. Assets: 786. Assets with no corresponding checksum are: assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Pipelines.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Management.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Net.Http.WinHttpHandler.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Reflection.Context.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Numerics.Tensors.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Reflection.Metadata.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.CodeDom.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Collections.Immutable.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ComponentModel.Composition.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ComponentModel.Composition.Registration.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.Convention.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.AttributedModel.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.TypedParts.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.Hosting.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Composition.Runtime.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Speech.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ServiceProcess.ServiceController.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.ServiceModel.Syndication.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Drawing.Common.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Diagnostics.EventLog.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.DirectoryServices.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Diagnostics.PerformanceCounter.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.DirectoryServices.AccountManagement.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.DirectoryServices.Protocols.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Formats.Asn1.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Formats.Cbor.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Hashing.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.IO.Packaging.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Memory.Data.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Net.Http.Json.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Reflection.MetadataLoadContext.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Resources.Extensions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Runtime.CompilerServices.Unsafe.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Runtime.Caching.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Cryptography.Pkcs.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Cryptography.ProtectedData.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Cryptography.Xml.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Text.Encoding.CodePages.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-musl-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg runtime.linux-arm.Microsoft.NETCore.ILAsm runtime.linux-arm.Microsoft.NETCore.TestHost runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost runtime.linux-arm.runtime.native.System.IO.Ports runtime.linux-arm64.Microsoft.NETCore.DotNetHost runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-arm64.Microsoft.NETCore.ILAsm runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver runtime.linux-arm64.runtime.native.System.IO.Ports runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.osx-x64 runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver Microsoft.NETCore.TestHost Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-arm64 Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-x64 Microsoft.NETCore.App.Runtime.Mono.LLVM.osx-x64 Microsoft.NETCore.App.Runtime.Mono.maccatalyst-arm64 Microsoft.NETCore.App.Runtime.Mono.maccatalyst-x64 Microsoft.NETCore.App.Runtime.win-arm Microsoft.NETCore.App.Runtime.win-x86 Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64 runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver Microsoft.Extensions.Options.ConfigurationExtensions Microsoft.IO.Redist Microsoft.ILVerification Microsoft.Extensions.Primitives Microsoft.NETCore.App.Crossgen2.linux-arm64 Microsoft.NET.Runtime.Android.Sample.Mono Microsoft.NET.Runtime.MonoAOTCompiler.Task Microsoft.NET.Runtime.RuntimeConfigParser.Task Microsoft.NETCore.App.Composite Microsoft.NET.Runtime.WebAssembly.Sdk Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-x64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-x64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x86 assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Runtime.linux-musl-arm64 Microsoft.NETCore.App.Runtime.linux-musl-x64 Microsoft.NETCore.App.Runtime.Mono.android-arm64 Microsoft.NETCore.App.Runtime.linux-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x86 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm assets/symbols/runtime.linux-arm64.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Crossgen2.osx-x64 Microsoft.NETCore.App.Crossgen2.win-x64 assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.MonoAOTCompiler.Task.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.RuntimeConfigParser.Task.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.wasm.Sample.Mono.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Sdk.IL.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Workload.Mono.ToolChain.Manifest-6.0.100.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.ios-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-x64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NET.Runtime.wasm.Sample.Mono Microsoft.NET.Workload.Mono.ToolChain.Manifest-6.0.100 assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-musl-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-arm64 assets/symbols/System.Text.Json.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Text.Encodings.Web.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Threading.Channels.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Threading.AccessControl.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Threading.Tasks.Dataflow.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Windows.Extensions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Security.Permissions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Diagnostics.DiagnosticSource.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Data.OleDb.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Data.Odbc.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/System.Configuration.ConfigurationManager.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.Extensions.FileSystemGlobbing Microsoft.NETCore.App.Crossgen2.linux-x64 Microsoft.NETCore.App.Runtime.linux-x64 Microsoft.NETCore.App.Runtime.Mono.android-arm Microsoft.NETCore.App.Runtime.Mono.ios-arm Microsoft.NETCore.App.Runtime.Mono.android-x86 Microsoft.NETCore.App.Runtime.Mono.android-x64 Microsoft.NETCore.App.Runtime.Mono.iossimulator-arm64 Microsoft.NETCore.App.Runtime.Mono.ios-arm64 Microsoft.NETCore.App.Crossgen2.win-arm64 Microsoft.NETCore.App.Crossgen2.win-arm Microsoft.NETCore.App.Host.linux-arm64 Microsoft.NETCore.App.Host.linux-arm Microsoft.NETCore.App.Host.linux-musl-arm Microsoft.NETCore.App.Host.linux-musl-x64 Microsoft.NETCore.App.Host.linux-x64 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm assets/symbols/Microsoft.NETCore.App.PGO.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.iOS.Sample.Mono.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.WebAssembly.Sdk.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-musl-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Private.CoreFx.OOB.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Win32.Registry.AccessControl.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Win32.SystemEvents.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Windows.Compatibility.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.iossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.tvos-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg System.Memory.Data System.Net.Http.WinHttpHandler assets/symbols/Microsoft.Net.HostModel.PGO.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NET.Runtime.Android.Sample.Mono.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.IO.Redist.6.0.0-preview.7.21317.8.symbols.nupkg System.Numerics.Tensors System.Reflection.Metadata System.Reflection.Context System.Reflection.MetadataLoadContext System.Runtime.Caching System.Resources.Extensions System.Security.Cryptography.Pkcs System.Runtime.CompilerServices.Unsafe System.Security.Cryptography.Xml System.Security.Cryptography.ProtectedData System.Security.Permissions System.ServiceModel.Syndication System.Text.Encoding.CodePages System.Speech System.ServiceProcess.ServiceController System.Text.Json System.Text.Encodings.Web System.Threading.Channels System.Composition System.Composition.AttributedModel System.Composition.Hosting System.Configuration.ConfigurationManager System.Composition.Runtime System.Diagnostics.DiagnosticSource System.Diagnostics.EventLog System.Diagnostics.PerformanceCounter System.DirectoryServices System.Drawing.Common System.DirectoryServices.Protocols assets/symbols/Microsoft.NETCore.App.Runtime.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.tvossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.ios-arm.6.0.0-preview.7.21317.8.symbols.nupkg runtime.win-x86.Microsoft.NETCore.DotNetAppHost assets/symbols/Microsoft.NETCore.App.Runtime.Mono.maccatalyst-x64.6.0.0-preview.7.21317.8.symbols.nupkg System.IO.Hashing System.Composition.TypedParts assets/symbols/Microsoft.Extensions.DependencyInjection.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.DependencyInjection.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.DependencyInjection.Specification.Tests.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.DependencyModel.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileProviders.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileProviders.Composite.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileProviders.Physical.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.FileSystemGlobbing.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.HostFactoryResolver.Sources.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.Systemd.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Hosting.WindowsServices.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.TraceSource.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Options.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Crossgen2.linux-musl-arm Microsoft.Extensions.Http Microsoft.Bcl.AsyncInterfaces Microsoft.NETCore.App.Crossgen2.linux-musl-arm64 Microsoft.Extensions.DependencyInjection Microsoft.Extensions.DependencyInjection.Abstractions Microsoft.Extensions.Configuration.Xml Microsoft.Extensions.DependencyModel Microsoft.Extensions.DependencyInjection.Specification.Tests Microsoft.Extensions.FileProviders.Abstractions Microsoft.Extensions.Hosting Microsoft.Extensions.Configuration.Ini Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x86 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x64 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.browser-wasm Microsoft.NETCore.App.Host.win-arm runtime.win-x64.Microsoft.NETCore.TestHost runtime.win-x64.Microsoft.NETCore.ILDAsm assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-musl-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-musl-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.win-arm.6.0.0-preview.7.21317.8.symbols.nupkg System.Net.Http.Json System.Threading.AccessControl System.Threading.Tasks.Dataflow System.Windows.Extensions System.IO.Ports System.Management System.IO.Pipelines assets/symbols/Microsoft.NET.HostModel.6.0.0-preview.7.21317.8.symbols.nupkg runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy runtime.win-x86.Microsoft.NETCore.DotNetHostResolver System.IO.Packaging runtime.win-x86.Microsoft.NETCore.ILAsm System.CodeDom runtime.win-x86.Microsoft.NETCore.TestHost runtime.win-x86.Microsoft.NETCore.ILDAsm System.Formats.Asn1 assets/symbols/Microsoft.Extensions.Configuration.FileExtensions.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.NETCore.App.Runtime.Mono.tvossimulator-arm64 Microsoft.NETCore.App.Runtime.Mono.tvos-arm64 Microsoft.NETCore.App.Runtime.Mono.osx-arm64 runtime.linux-musl-arm.Microsoft.NETCore.ILAsm Microsoft.NETCore.App.Runtime.win-arm64 Microsoft.NETCore.App.Runtime.win-x64 Microsoft.NETCore.App.Runtime.Mono.win-x64 Microsoft.NETCore.DotNetAppHost Microsoft.NETCore.DotNetHost Microsoft.NETCore.DotNetHostPolicy Microsoft.NETCore.DotNetHostResolver runtime.osx-x64.Microsoft.NETCore.DotNetAppHost Microsoft.NETCore.ILAsm runtime.linux-musl-arm.Microsoft.NETCore.ILDAsm runtime.osx-x64.Microsoft.NETCore.DotNetHost runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy runtime.win-arm.Microsoft.NETCore.DotNetAppHost runtime.win-arm64.Microsoft.NETCore.DotNetAppHost runtime.osx-x64.Microsoft.NETCore.ILAsm runtime.osx-x64.Microsoft.NETCore.ILDAsm runtime.osx-x64.runtime.native.System.IO.Ports runtime.osx-x64.Microsoft.NETCore.TestHost runtime.win-arm.Microsoft.NETCore.DotNetHost runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy runtime.win-arm.Microsoft.NETCore.ILAsm runtime.win-arm.Microsoft.NETCore.DotNetHostResolver runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost runtime.win-arm.Microsoft.NETCore.ILDAsm runtime.win-arm.Microsoft.NETCore.TestHost runtime.win-x64.Microsoft.NETCore.DotNetAppHost runtime.win-arm64.Microsoft.NETCore.DotNetHost runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver runtime.win-arm64.Microsoft.NETCore.ILDAsm runtime.win-arm64.Microsoft.NETCore.ILAsm runtime.win-arm64.Microsoft.NETCore.TestHost runtime.win-x64.Microsoft.NETCore.DotNetHost runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy runtime.win-x64.Microsoft.NETCore.ILAsm runtime.win-x64.Microsoft.NETCore.DotNetHostResolver runtime.osx-arm64.Microsoft.NETCore.TestHost runtime.osx-arm64.Microsoft.NETCore.ILAsm runtime.osx-arm64.Microsoft.NETCore.ILDAsm runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost runtime.linux-musl-arm64.Microsoft.NETCore.ILAsm runtime.linux-musl-arm64.Microsoft.NETCore.ILDAsm runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost runtime.linux-musl-arm64.Microsoft.NETCore.TestHost runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-musl-x64.Microsoft.NETCore.ILAsm runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver runtime.linux-x64.Microsoft.NETCore.DotNetAppHost runtime.linux-musl-x64.Microsoft.NETCore.ILDAsm runtime.linux-musl-arm.Microsoft.NETCore.TestHost runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy runtime.linux-x64.Microsoft.NETCore.ILAsm runtime.linux-x64.Microsoft.NETCore.DotNetHost runtime.linux-musl-x64.Microsoft.NETCore.TestHost Microsoft.Extensions.Logging.Abstractions Microsoft.Extensions.Logging.Configuration Microsoft.Extensions.Logging.Console Microsoft.Extensions.Logging Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventSource Microsoft.Extensions.Logging.EventLog Microsoft.Extensions.Logging.TraceSource Microsoft.NET.Sdk.IL Microsoft.NETCore.App.Crossgen2.linux-arm Microsoft.Extensions.Hosting.WindowsServices Microsoft.Extensions.Hosting.Systemd Microsoft.Extensions.Hosting.Abstractions dotnet-ilverify Microsoft.Diagnostics.Tracing.EventSource.Redist Microsoft.Extensions.Caching.Abstractions Microsoft.Extensions.Caching.Memory Microsoft.Extensions.Configuration Microsoft.Extensions.Configuration.Abstractions Microsoft.Extensions.Configuration.Binder Microsoft.Extensions.Configuration.CommandLine Microsoft.Extensions.Configuration.EnvironmentVariables Microsoft.NETCore.App.Crossgen2.linux-musl-x64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm Microsoft.NETCore.App.Runtime.linux-arm Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm Microsoft.NETCore.App.Runtime.linux-musl-arm Microsoft.NETCore.App.Runtime.Mono.browser-wasm Microsoft.NETCore.App.Runtime.Mono.iossimulator-x64 Microsoft.NETCore.App.Crossgen2.osx-arm64 Microsoft.NETCore.App.Crossgen2.win-x86 Microsoft.NETCore.App.Host.linux-musl-arm64 Microsoft.NETCore.App.Host.osx-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.browser-wasm Microsoft.NETCore.App.Host.osx-x64 Microsoft.NETCore.App.Host.win-arm64 Microsoft.NETCore.App.Host.win-x64 Microsoft.NETCore.App.Host.win-x86 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm64 Microsoft.NETCore.App.Ref Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm64 runtime.win-x86.Microsoft.NETCore.DotNetHost assets/symbols/Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvos-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.linux-musl-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-musl-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Host.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.osx-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.win-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.BrowserDebugHost.Transport.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Http.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Debug.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.EventSource.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Options.ConfigurationExtensions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Options.DataAnnotations.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Primitives.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Xml.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Ini.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.AspNetCore.Internal.Transport.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21317.8.symbols.nupkg Runtime/6.0.0-preview.7.21317.8/productVersion.txt Runtime/6.0.0-preview.7.21317.8/runtime-productVersion.txt assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.Win32.Registry.AccessControl Microsoft.Win32.SystemEvents assets/symbols/runtime.linux-arm64.Microsoft.NETCore.DotNetHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.runtime.native.System.IO.Ports.6.0.0-preview.7.21317.8.symbols.nupkg Microsoft.XmlSerializer.Generator Microsoft.Windows.Compatibility runtime.linux-arm.Microsoft.NETCore.DotNetAppHost runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy runtime.linux-arm.Microsoft.NETCore.DotNetHost runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver runtime.linux-arm.Microsoft.NETCore.ILDAsm runtime.linux-arm64.Microsoft.NETCore.ILDAsm runtime.linux-arm64.Microsoft.NETCore.TestHost Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-x64 runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost Microsoft.NETCore.Platforms Microsoft.NETCore.ILDAsm Microsoft.NETCore.App.Runtime.Mono.linux-x64 Microsoft.NETCore.App.Runtime.Mono.tvossimulator-x64 Microsoft.NETCore.App.Runtime.Mono.osx-x64 Microsoft.NETCore.App.Runtime.osx-arm64 Microsoft.NETCore.App.Runtime.Mono.win-x86 Microsoft.NETCore.App.Runtime.osx-x64 Microsoft.NETCore.App.Runtime.Mono.iossimulator-x86 runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver runtime.linux-x64.Microsoft.NETCore.TestHost runtime.linux-x64.Microsoft.NETCore.ILDAsm runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost runtime.linux-x64.runtime.native.System.IO.Ports runtime.native.System.IO.Ports Microsoft.NETCore.App.Runtime.Mono.linux-arm runtime.osx-arm64.Microsoft.NETCore.DotNetHost Microsoft.NETCore.App.Runtime.Mono.linux-arm64 runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy Microsoft.Extensions.Options.DataAnnotations Microsoft.Extensions.Options Microsoft.NET.Runtime.iOS.Sample.Mono Microsoft.Extensions.Configuration.FileExtensions Microsoft.Extensions.Configuration.Json Microsoft.Extensions.Configuration.UserSecrets Microsoft.Extensions.FileProviders.Composite Microsoft.Extensions.FileProviders.Physical Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvos-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-arm64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x64 Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm64 Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm64 Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x86 assets/symbols/Microsoft.NETCore.App.Host.win-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Ref.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Composite.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Crossgen2.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.linux-musl-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.win-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.XmlSerializer.Generator.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.CrossOsDiag.Private.CoreCLR.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.ILDAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.ILAsm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/runtime.linux-arm.Microsoft.NETCore.TestHost.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.tvossimulator-arm64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.browser-wasm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.iossimulator-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.iossimulator-x86.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.linux-arm.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.osx-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-x64.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.NETCore.App.Runtime.Mono.maccatalyst-arm64.6.0.0-preview.7.21317.8.symbols.nupkg System.Collections.Immutable System.ComponentModel.Composition.Registration System.ComponentModel.Composition System.Composition.Convention System.Data.Odbc System.Data.OleDb System.DirectoryServices.AccountManagement System.Formats.Cbor assets/symbols/Microsoft.Extensions.Logging.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Console.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.Configuration.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Logging.EventLog.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.ILVerification.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.UserSecrets.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Json.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/dotnet-pgo.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/dotnet-ilverify.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.EnvironmentVariables.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.CommandLine.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Diagnostics.Tracing.EventSource.Redist.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Configuration.Binder.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/ILCompiler.Reflection.ReadyToRun.Experimental.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Caching.Abstractions.6.0.0-preview.7.21317.8.symbols.nupkg assets/symbols/Microsoft.Extensions.Caching.Memory.6.0.0-preview.7.21317.8.symbols.nupkg ### Changes - [2fe556f6](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/2fe556f620c72df5bf93db2236c67da1f7ecfcd0) - Jon Fortescue - Merged PR 15959: Make the circles orange when you click override
non_test
build failed validate dotnet main runtime build partiallysucceeded warning internal validate dotnet partiallysucceeded summary finished fri jun gmt duration minutes requested for dotnet bot reason manual details validation ring x netcore engineering telemetry checksymbols missing symbols for modules in the package d workspace work a signed shipping assets symbols microsoft netcore app runtime win preview symbols nupkg x netcore engineering telemetry checksymbols missing symbols for modules in the package d workspace work a signed shipping assets symbols microsoft netcore app runtime win arm preview symbols nupkg x netcore engineering telemetry checksymbols symbols missing for packages x powershell exited with code required validation ring warning number of checksums and assets don t match checksums assets assets with no corresponding checksum are assets symbols runtime linux musl microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime win microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime linux musl microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime linux musl microsoft netcore dotnethost preview symbols nupkg assets symbols runtime linux musl microsoft netcore ilasm preview symbols nupkg assets symbols runtime linux musl microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime linux musl microsoft netcore ildasm preview symbols nupkg assets symbols runtime linux musl microsoft netcore testhost preview symbols nupkg assets symbols runtime linux musl microsoft netcore dotnethost preview symbols nupkg assets symbols runtime win microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols system io ports preview symbols nupkg assets symbols system io pipelines preview symbols nupkg assets symbols system management preview symbols nupkg assets symbols system net http winhttphandler preview symbols nupkg assets symbols system reflection context preview symbols nupkg assets symbols system numerics tensors preview symbols nupkg assets symbols system reflection metadata preview symbols nupkg assets symbols runtime win microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime win microsoft netcore ildasm preview symbols nupkg assets symbols runtime win microsoft netcore testhost preview symbols nupkg assets symbols runtime win microsoft netcore dotnethost preview symbols nupkg assets symbols runtime win microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime win microsoft netcore ilasm preview symbols nupkg assets symbols runtime win microsoft netcore ilasm preview symbols nupkg assets symbols runtime win microsoft netcore ildasm preview symbols nupkg assets symbols runtime win microsoft netcore testhost preview symbols nupkg assets symbols system codedom preview symbols nupkg assets symbols system collections immutable preview symbols nupkg assets symbols system componentmodel composition preview symbols nupkg assets symbols system componentmodel composition registration preview symbols nupkg assets symbols system composition preview symbols nupkg assets symbols system composition convention preview symbols nupkg assets symbols system composition attributedmodel preview symbols nupkg assets symbols system composition typedparts preview symbols nupkg assets symbols system composition hosting preview symbols nupkg assets symbols system composition runtime preview symbols nupkg assets symbols runtime win microsoft netcore dotnethostresolver preview symbols nupkg assets symbols system speech preview symbols nupkg assets symbols system serviceprocess servicecontroller preview symbols nupkg assets symbols system servicemodel syndication preview symbols nupkg assets symbols runtime linux microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime linux microsoft netcore ilasm preview symbols nupkg assets symbols runtime linux microsoft netcore ildasm preview symbols nupkg assets symbols runtime linux microsoft netcore testhost preview symbols nupkg assets symbols runtime osx microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime osx microsoft netcore dotnethost preview symbols nupkg assets symbols runtime osx microsoft netcore ildasm preview symbols nupkg assets symbols runtime win arm microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime win arm microsoft netcore dotnethost preview symbols nupkg assets symbols runtime win arm microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime win arm microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime win arm microsoft netcore ilasm preview symbols nupkg assets symbols runtime win arm microsoft netcore ildasm preview symbols nupkg assets symbols runtime linux musl arm microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime linux musl arm microsoft netcore ildasm preview symbols nupkg assets symbols runtime linux musl arm microsoft netcore ilasm preview symbols nupkg assets symbols runtime linux musl microsoft crossosdiag private coreclr preview symbols nupkg assets symbols runtime win arm microsoft netcore testhost preview symbols nupkg assets symbols runtime linux musl microsoft netcore ildasm preview symbols nupkg assets symbols runtime linux musl microsoft netcore testhost preview symbols nupkg assets symbols runtime linux musl microsoft crossosdiag private coreclr preview symbols nupkg assets symbols system drawing common preview symbols nupkg assets symbols system diagnostics eventlog preview symbols nupkg assets symbols system directoryservices preview symbols nupkg assets symbols system diagnostics performancecounter preview symbols nupkg assets symbols system directoryservices accountmanagement preview symbols nupkg assets symbols system directoryservices protocols preview symbols nupkg assets symbols system formats preview symbols nupkg assets symbols system formats cbor preview symbols nupkg assets symbols system io hashing preview symbols nupkg assets symbols system io packaging preview symbols nupkg assets symbols system memory data preview symbols nupkg assets symbols system net http json preview symbols nupkg assets symbols system reflection metadataloadcontext preview symbols nupkg assets symbols system resources extensions preview symbols nupkg assets symbols system runtime compilerservices unsafe preview symbols nupkg assets symbols system runtime caching preview symbols nupkg assets symbols system security cryptography pkcs preview symbols nupkg assets symbols system security cryptography protecteddata preview symbols nupkg assets symbols system security cryptography xml preview symbols nupkg assets symbols runtime win microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime win microsoft netcore ildasm preview symbols nupkg assets symbols runtime win microsoft netcore testhost preview symbols nupkg assets symbols system text encoding codepages preview symbols nupkg assets symbols runtime osx microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime osx microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime osx microsoft netcore ilasm preview symbols nupkg assets symbols runtime osx microsoft netcore ildasm preview symbols nupkg assets symbols runtime osx microsoft netcore testhost preview symbols nupkg assets symbols runtime osx runtime native system io ports preview symbols nupkg assets symbols runtime linux musl arm microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime linux microsoft crossosdiag private coreclr preview symbols nupkg assets symbols runtime linux musl arm microsoft crossosdiag private coreclr preview symbols nupkg assets symbols runtime linux musl arm microsoft netcore dotnethost preview symbols nupkg assets symbols runtime linux musl arm microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime linux musl arm microsoft netcore testhost preview symbols nupkg assets symbols runtime linux musl microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime linux microsoft netcore ildasm preview symbols nupkg assets symbols runtime osx microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime osx microsoft netcore ilasm preview symbols nupkg assets symbols runtime osx microsoft netcore testhost preview symbols nupkg assets symbols runtime linux musl microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime linux musl microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime linux musl microsoft netcore ilasm preview symbols nupkg assets symbols runtime win microsoft netcore dotnetapphost preview symbols nupkg runtime linux arm microsoft netcore ilasm runtime linux arm microsoft netcore testhost runtime linux microsoft netcore dotnetapphost runtime linux arm runtime native system io ports runtime linux microsoft netcore dotnethost runtime linux microsoft netcore dotnethostpolicy runtime linux microsoft netcore ilasm runtime linux microsoft netcore dotnethostresolver runtime linux runtime native system io ports runtime linux musl arm microsoft netcore dotnetapphost microsoft netcore app runtime mono llvm aot osx runtime linux musl arm microsoft netcore dotnethostpolicy runtime linux musl arm microsoft netcore dotnethostresolver microsoft netcore testhost microsoft netcore app runtime mono llvm linux microsoft netcore app runtime mono llvm linux microsoft netcore app runtime mono llvm osx microsoft netcore app runtime mono maccatalyst microsoft netcore app runtime mono maccatalyst microsoft netcore app runtime win arm microsoft netcore app runtime win microsoft netcore app runtime mono linux musl runtime osx microsoft netcore dotnethostresolver microsoft extensions options configurationextensions microsoft io redist microsoft ilverification microsoft extensions primitives microsoft netcore app linux microsoft net runtime android sample mono microsoft net runtime monoaotcompiler task microsoft net runtime runtimeconfigparser task microsoft netcore app composite microsoft net runtime webassembly sdk microsoft netcore app runtime aot osx cross tvossimulator microsoft netcore app runtime aot osx cross maccatalyst microsoft netcore app runtime aot osx cross maccatalyst microsoft netcore app runtime aot win cross android assets symbols microsoft netcore app runtime aot linux cross android preview symbols nupkg assets symbols microsoft netcore app runtime aot linux cross browser wasm preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross android preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross ios preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross maccatalyst preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross tvossimulator preview symbols nupkg assets symbols microsoft netcore app runtime aot win cross android preview symbols nupkg microsoft netcore app runtime linux musl microsoft netcore app runtime linux musl microsoft netcore app runtime mono android microsoft netcore app runtime linux microsoft netcore app runtime aot osx cross android microsoft netcore app runtime aot osx cross ios arm assets symbols runtime linux microsoft crossosdiag private coreclr preview symbols nupkg microsoft netcore app osx microsoft netcore app win assets symbols microsoft netcore app runtime aot osx cross maccatalyst preview symbols nupkg assets symbols microsoft netcore app linux arm preview symbols nupkg assets symbols microsoft netcore app host osx preview symbols nupkg assets symbols microsoft net runtime monoaotcompiler task preview symbols nupkg assets symbols microsoft net runtime runtimeconfigparser task preview symbols nupkg assets symbols microsoft net runtime wasm sample mono preview symbols nupkg assets symbols microsoft net sdk il preview symbols nupkg assets symbols microsoft net workload mono toolchain manifest preview symbols nupkg assets symbols microsoft netcore app osx preview symbols nupkg assets symbols microsoft netcore app runtime linux preview symbols nupkg assets symbols microsoft netcore app runtime mono win preview symbols nupkg assets symbols microsoft netcore app runtime mono win preview symbols nupkg assets symbols microsoft netcore app runtime linux musl preview symbols nupkg assets symbols microsoft netcore app runtime mono android preview symbols nupkg assets symbols microsoft netcore app runtime mono ios preview symbols nupkg assets symbols runtime linux runtime native system io ports preview symbols nupkg assets symbols runtime native system io ports preview symbols nupkg assets symbols runtime osx microsoft netcore dotnethost preview symbols nupkg assets symbols runtime osx microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime linux microsoft netcore dotnetapphost preview symbols nupkg assets symbols runtime linux microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime linux microsoft netcore dotnethost preview symbols nupkg assets symbols runtime linux microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime linux microsoft netcore ilasm preview symbols nupkg assets symbols runtime linux microsoft netcore testhost preview symbols nupkg assets symbols runtime linux runtime native system io ports preview symbols nupkg microsoft net runtime wasm sample mono microsoft net workload mono toolchain manifest assets symbols microsoft netcore app linux musl preview symbols nupkg assets symbols runtime linux arm microsoft netcore dotnetapphost preview symbols nupkg assets symbols microsoft netcore app runtime linux musl preview symbols nupkg assets symbols microsoft netcore app runtime mono llvm aot linux preview symbols nupkg assets symbols microsoft netcore app runtime mono llvm linux preview symbols nupkg microsoft netcore app runtime mono llvm aot linux assets symbols system text json preview symbols nupkg assets symbols system text encodings web preview symbols nupkg assets symbols system threading channels preview symbols nupkg assets symbols system threading accesscontrol preview symbols nupkg assets symbols system threading tasks dataflow preview symbols nupkg assets symbols system windows extensions preview symbols nupkg assets symbols runtime osx microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols system security permissions preview symbols nupkg assets symbols system diagnostics diagnosticsource preview symbols nupkg assets symbols system data oledb preview symbols nupkg assets symbols system data odbc preview symbols nupkg assets symbols system configuration configurationmanager preview symbols nupkg assets symbols runtime win microsoft netcore dotnethostresolver preview symbols nupkg assets symbols runtime win microsoft netcore ilasm preview symbols nupkg assets symbols runtime win microsoft netcore dotnethost preview symbols nupkg assets symbols runtime win microsoft netcore dotnethost preview symbols nupkg assets symbols runtime win microsoft netcore dotnethostpolicy preview symbols nupkg microsoft extensions filesystemglobbing microsoft netcore app linux microsoft netcore app runtime linux microsoft netcore app runtime mono android arm microsoft netcore app runtime mono ios arm microsoft netcore app runtime mono android microsoft netcore app runtime mono android microsoft netcore app runtime mono iossimulator microsoft netcore app runtime mono ios microsoft netcore app win microsoft netcore app win arm microsoft netcore app host linux microsoft netcore app host linux arm microsoft netcore app host linux musl arm microsoft netcore app host linux musl microsoft netcore app host linux microsoft netcore app runtime aot linux cross android microsoft netcore app runtime aot osx cross android arm assets symbols microsoft netcore app pgo preview symbols nupkg assets symbols microsoft netcore app runtime aot linux cross android preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross android arm preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross iossimulator preview symbols nupkg assets symbols microsoft netcore app linux preview symbols nupkg assets symbols microsoft net runtime ios sample mono preview symbols nupkg assets symbols microsoft net runtime webassembly sdk preview symbols nupkg assets symbols microsoft netcore app linux musl arm preview symbols nupkg assets symbols microsoft netcore app runtime linux arm preview symbols nupkg assets symbols microsoft netcore app runtime osx preview symbols nupkg assets symbols microsoft netcore app runtime win preview symbols nupkg assets symbols microsoft netcore dotnethostresolver preview symbols nupkg assets symbols microsoft netcore ilasm preview symbols nupkg assets symbols microsoft netcore ildasm preview symbols nupkg assets symbols microsoft netcore testhost preview symbols nupkg assets symbols microsoft private corefx oob preview symbols nupkg assets symbols microsoft registry accesscontrol preview symbols nupkg assets symbols microsoft systemevents preview symbols nupkg assets symbols microsoft windows compatibility preview symbols nupkg assets symbols runtime linux arm microsoft netcore dotnethost preview symbols nupkg assets symbols runtime linux arm microsoft netcore dotnethostresolver preview symbols nupkg assets symbols microsoft netcore app runtime linux preview symbols nupkg assets symbols microsoft netcore app runtime mono android preview symbols nupkg assets symbols microsoft netcore app runtime mono iossimulator preview symbols nupkg assets symbols microsoft netcore app runtime mono linux musl preview symbols nupkg assets symbols microsoft netcore app runtime mono linux preview symbols nupkg assets symbols microsoft netcore app runtime mono tvos preview symbols nupkg assets symbols microsoft netcore app runtime mono llvm osx preview symbols nupkg assets symbols microsoft netcore app runtime mono linux preview symbols nupkg assets symbols microsoft netcore app runtime mono osx preview symbols nupkg assets symbols microsoft netcore app runtime mono osx preview symbols nupkg system memory data system net http winhttphandler assets symbols microsoft net hostmodel pgo preview symbols nupkg assets symbols microsoft net runtime android sample mono preview symbols nupkg assets symbols microsoft io redist preview symbols nupkg system numerics tensors system reflection metadata system reflection context system reflection metadataloadcontext system runtime caching system resources extensions system security cryptography pkcs system runtime compilerservices unsafe system security cryptography xml system security cryptography protecteddata system security permissions system servicemodel syndication system text encoding codepages system speech system serviceprocess servicecontroller system text json system text encodings web system threading channels system composition system composition attributedmodel system composition hosting system configuration configurationmanager system composition runtime system diagnostics diagnosticsource system diagnostics eventlog system diagnostics performancecounter system directoryservices system drawing common system directoryservices protocols assets symbols microsoft netcore app runtime win arm preview symbols nupkg assets symbols microsoft netcore app runtime mono tvossimulator preview symbols nupkg assets symbols microsoft netcore app runtime mono android arm preview symbols nupkg assets symbols microsoft netcore app runtime mono android preview symbols nupkg assets symbols microsoft netcore app runtime mono ios arm preview symbols nupkg runtime win microsoft netcore dotnetapphost assets symbols microsoft netcore app runtime mono maccatalyst preview symbols nupkg system io hashing system composition typedparts assets symbols microsoft extensions dependencyinjection preview symbols nupkg assets symbols microsoft extensions dependencyinjection abstractions preview symbols nupkg assets symbols microsoft extensions dependencyinjection specification tests preview symbols nupkg assets symbols microsoft extensions dependencymodel preview symbols nupkg assets symbols microsoft extensions fileproviders abstractions preview symbols nupkg assets symbols microsoft extensions fileproviders composite preview symbols nupkg assets symbols microsoft extensions fileproviders physical preview symbols nupkg assets symbols microsoft extensions filesystemglobbing preview symbols nupkg assets symbols microsoft extensions hostfactoryresolver sources preview symbols nupkg assets symbols microsoft extensions hosting preview symbols nupkg assets symbols microsoft extensions hosting abstractions preview symbols nupkg assets symbols microsoft extensions hosting systemd preview symbols nupkg assets symbols microsoft extensions hosting windowsservices preview symbols nupkg assets symbols microsoft extensions logging abstractions preview symbols nupkg assets symbols microsoft extensions logging tracesource preview symbols nupkg assets symbols microsoft extensions options preview symbols nupkg microsoft netcore app linux musl arm microsoft extensions http microsoft bcl asyncinterfaces microsoft netcore app linux musl microsoft extensions dependencyinjection microsoft extensions dependencyinjection abstractions microsoft extensions configuration xml microsoft extensions dependencymodel microsoft extensions dependencyinjection specification tests microsoft extensions fileproviders abstractions microsoft extensions hosting microsoft extensions configuration ini microsoft netcore app runtime aot osx cross iossimulator microsoft netcore app runtime aot osx cross iossimulator microsoft netcore app runtime aot osx cross iossimulator microsoft netcore app runtime aot osx cross android microsoft netcore app runtime aot linux cross browser wasm microsoft netcore app host win arm runtime win microsoft netcore testhost runtime win microsoft netcore ildasm assets symbols microsoft netcore app runtime aot linux cross android arm preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross android preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross ios arm preview symbols nupkg assets symbols microsoft netcore app runtime aot win cross android preview symbols nupkg assets symbols microsoft netcore app linux preview symbols nupkg assets symbols microsoft netcore app win arm preview symbols nupkg assets symbols microsoft netcore app win preview symbols nupkg assets symbols microsoft netcore app host linux arm preview symbols nupkg assets symbols microsoft netcore app host linux musl arm preview symbols nupkg assets symbols microsoft netcore app host linux musl preview symbols nupkg assets symbols microsoft netcore app host osx preview symbols nupkg assets symbols microsoft netcore app host win arm preview symbols nupkg system net http json system threading accesscontrol system threading tasks dataflow system windows extensions system io ports system management system io pipelines assets symbols microsoft net hostmodel preview symbols nupkg runtime win microsoft netcore dotnethostpolicy runtime win microsoft netcore dotnethostresolver system io packaging runtime win microsoft netcore ilasm system codedom runtime win microsoft netcore testhost runtime win microsoft netcore ildasm system formats assets symbols microsoft extensions configuration fileextensions preview symbols nupkg microsoft netcore app runtime mono tvossimulator microsoft netcore app runtime mono tvos microsoft netcore app runtime mono osx runtime linux musl arm microsoft netcore ilasm microsoft netcore app runtime win microsoft netcore app runtime win microsoft netcore app runtime mono win microsoft netcore dotnetapphost microsoft netcore dotnethost microsoft netcore dotnethostpolicy microsoft netcore dotnethostresolver runtime osx microsoft netcore dotnetapphost microsoft netcore ilasm runtime linux musl arm microsoft netcore ildasm runtime osx microsoft netcore dotnethost runtime osx microsoft netcore dotnethostpolicy runtime win arm microsoft netcore dotnetapphost runtime win microsoft netcore dotnetapphost runtime osx microsoft netcore ilasm runtime osx microsoft netcore ildasm runtime osx runtime native system io ports runtime osx microsoft netcore testhost runtime win arm microsoft netcore dotnethost runtime win arm microsoft netcore dotnethostpolicy runtime win arm microsoft netcore ilasm runtime win arm microsoft netcore dotnethostresolver runtime linux musl microsoft netcore dotnetapphost runtime win arm microsoft netcore ildasm runtime win arm microsoft netcore testhost runtime win microsoft netcore dotnetapphost runtime win microsoft netcore dotnethost runtime win microsoft netcore dotnethostpolicy runtime win microsoft netcore dotnethostresolver runtime win microsoft netcore ildasm runtime win microsoft netcore ilasm runtime win microsoft netcore testhost runtime win microsoft netcore dotnethost runtime win microsoft netcore dotnethostpolicy runtime win microsoft netcore ilasm runtime win microsoft netcore dotnethostresolver runtime osx microsoft netcore testhost runtime osx microsoft netcore ilasm runtime osx microsoft netcore ildasm runtime osx microsoft netcore dotnethostresolver runtime linux musl microsoft netcore dotnethostpolicy runtime linux musl microsoft netcore dotnethostresolver runtime linux musl microsoft netcore dotnethost runtime linux musl microsoft netcore ilasm runtime linux musl microsoft netcore ildasm runtime linux musl microsoft netcore dotnetapphost runtime linux musl microsoft netcore testhost runtime linux musl microsoft netcore dotnethost runtime linux musl microsoft netcore dotnethostpolicy runtime linux musl microsoft netcore ilasm runtime linux musl microsoft netcore dotnethostresolver runtime linux microsoft netcore dotnetapphost runtime linux musl microsoft netcore ildasm runtime linux musl arm microsoft netcore testhost runtime linux microsoft netcore dotnethostpolicy runtime linux microsoft netcore ilasm runtime linux microsoft netcore dotnethost runtime linux musl microsoft netcore testhost microsoft extensions logging abstractions microsoft extensions logging configuration microsoft extensions logging console microsoft extensions logging microsoft extensions logging debug microsoft extensions logging eventsource microsoft extensions logging eventlog microsoft extensions logging tracesource microsoft net sdk il microsoft netcore app linux arm microsoft extensions hosting windowsservices microsoft extensions hosting systemd microsoft extensions hosting abstractions dotnet ilverify microsoft diagnostics tracing eventsource redist microsoft extensions caching abstractions microsoft extensions caching memory microsoft extensions configuration microsoft extensions configuration abstractions microsoft extensions configuration binder microsoft extensions configuration commandline microsoft extensions configuration environmentvariables microsoft netcore app linux musl microsoft netcore app runtime aot win cross android arm microsoft netcore app runtime linux arm microsoft netcore app runtime aot win cross browser wasm microsoft netcore app runtime linux musl arm microsoft netcore app runtime mono browser wasm microsoft netcore app runtime mono iossimulator microsoft netcore app osx microsoft netcore app win microsoft netcore app host linux musl microsoft netcore app host osx microsoft netcore app runtime aot osx cross browser wasm microsoft netcore app host osx microsoft netcore app host win microsoft netcore app host win microsoft netcore app host win microsoft netcore app runtime aot linux cross android microsoft netcore app ref microsoft netcore app runtime aot osx cross android runtime win microsoft netcore dotnethost assets symbols microsoft netcore app runtime aot linux cross android preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross android preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross iossimulator preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross tvos preview symbols nupkg assets symbols microsoft netcore app runtime aot win cross android preview symbols nupkg assets symbols microsoft netcore app host win preview symbols nupkg assets symbols microsoft netcore app runtime aot win cross browser wasm preview symbols nupkg assets symbols microsoft netcore app host win preview symbols nupkg assets symbols microsoft netcore app linux musl preview symbols nupkg assets symbols microsoft netcore app osx preview symbols nupkg assets symbols microsoft netcore app win preview symbols nupkg assets symbols microsoft netcore app host linux preview symbols nupkg assets symbols microsoft netcore app host linux musl preview symbols nupkg assets symbols microsoft netcore app host linux preview symbols nupkg assets symbols microsoft netcore app runtime osx preview symbols nupkg assets symbols microsoft netcore app runtime win preview symbols nupkg assets symbols microsoft netcore dotnetapphost preview symbols nupkg assets symbols microsoft netcore browserdebughost transport preview symbols nupkg assets symbols microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols microsoft netcore dotnethost preview symbols nupkg assets symbols microsoft netcore app runtime mono llvm aot linux preview symbols nupkg assets symbols microsoft extensions http preview symbols nupkg assets symbols microsoft extensions logging debug preview symbols nupkg assets symbols microsoft extensions logging eventsource preview symbols nupkg assets symbols microsoft extensions options configurationextensions preview symbols nupkg assets symbols microsoft extensions options dataannotations preview symbols nupkg assets symbols microsoft extensions primitives preview symbols nupkg assets symbols microsoft extensions configuration xml preview symbols nupkg assets symbols microsoft extensions configuration ini preview symbols nupkg assets symbols microsoft extensions configuration preview symbols nupkg assets symbols microsoft aspnetcore internal transport preview symbols nupkg assets symbols microsoft bcl asyncinterfaces preview symbols nupkg runtime preview productversion txt runtime preview runtime productversion txt assets symbols runtime linux microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime linux microsoft netcore dotnetapphost preview symbols nupkg microsoft registry accesscontrol microsoft systemevents assets symbols runtime linux microsoft netcore dotnethost preview symbols nupkg assets symbols runtime linux arm runtime native system io ports preview symbols nupkg microsoft xmlserializer generator microsoft windows compatibility runtime linux arm microsoft netcore dotnetapphost runtime linux arm microsoft netcore dotnethostpolicy runtime linux arm microsoft netcore dotnethost runtime linux arm microsoft netcore dotnethostresolver runtime linux arm microsoft netcore ildasm runtime linux microsoft netcore ildasm runtime linux microsoft netcore testhost microsoft netcore app runtime mono llvm aot linux runtime linux musl arm microsoft netcore dotnethost microsoft netcore platforms microsoft netcore ildasm microsoft netcore app runtime mono linux microsoft netcore app runtime mono tvossimulator microsoft netcore app runtime mono osx microsoft netcore app runtime osx microsoft netcore app runtime mono win microsoft netcore app runtime osx microsoft netcore app runtime mono iossimulator runtime linux microsoft netcore dotnethostresolver runtime linux microsoft netcore testhost runtime linux microsoft netcore ildasm runtime osx microsoft netcore dotnetapphost runtime linux runtime native system io ports runtime native system io ports microsoft netcore app runtime mono linux arm runtime osx microsoft netcore dotnethost microsoft netcore app runtime mono linux runtime osx microsoft netcore dotnethostpolicy microsoft extensions options dataannotations microsoft extensions options microsoft net runtime ios sample mono microsoft extensions configuration fileextensions microsoft extensions configuration json microsoft extensions configuration usersecrets microsoft extensions fileproviders composite microsoft extensions fileproviders physical microsoft netcore app runtime aot osx cross tvos microsoft netcore app runtime aot osx cross tvossimulator microsoft netcore app runtime aot win cross android microsoft netcore app runtime aot win cross android microsoft netcore app runtime aot osx cross ios microsoft netcore app runtime aot linux cross android arm microsoft netcore app runtime aot linux cross android assets symbols microsoft netcore app host win preview symbols nupkg assets symbols microsoft netcore app ref preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross browser wasm preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross iossimulator preview symbols nupkg assets symbols microsoft netcore app runtime aot osx cross tvossimulator preview symbols nupkg assets symbols microsoft netcore app runtime aot win cross android arm preview symbols nupkg assets symbols microsoft netcore app composite preview symbols nupkg assets symbols microsoft netcore app win preview symbols nupkg assets symbols microsoft netcore app runtime linux musl arm preview symbols nupkg assets symbols microsoft netcore app runtime win preview symbols nupkg assets symbols microsoft xmlserializer generator preview symbols nupkg assets symbols runtime linux arm microsoft crossosdiag private coreclr preview symbols nupkg assets symbols runtime linux arm microsoft netcore dotnethostpolicy preview symbols nupkg assets symbols runtime linux arm microsoft netcore ildasm preview symbols nupkg assets symbols runtime linux arm microsoft netcore ilasm preview symbols nupkg assets symbols runtime linux arm microsoft netcore testhost preview symbols nupkg assets symbols microsoft netcore app runtime mono tvossimulator preview symbols nupkg assets symbols microsoft netcore app runtime mono browser wasm preview symbols nupkg assets symbols microsoft netcore app runtime mono iossimulator preview symbols nupkg assets symbols microsoft netcore app runtime mono iossimulator preview symbols nupkg assets symbols microsoft netcore app runtime mono linux arm preview symbols nupkg assets symbols microsoft netcore app runtime mono llvm aot osx preview symbols nupkg assets symbols microsoft netcore app runtime mono llvm linux preview symbols nupkg assets symbols microsoft netcore app runtime mono maccatalyst preview symbols nupkg system collections immutable system componentmodel composition registration system componentmodel composition system composition convention system data odbc system data oledb system directoryservices accountmanagement system formats cbor assets symbols microsoft extensions logging preview symbols nupkg assets symbols microsoft extensions logging console preview symbols nupkg assets symbols microsoft extensions logging configuration preview symbols nupkg assets symbols microsoft extensions logging eventlog preview symbols nupkg assets symbols microsoft ilverification preview symbols nupkg assets symbols microsoft extensions configuration usersecrets preview symbols nupkg assets symbols microsoft extensions configuration json preview symbols nupkg assets symbols dotnet pgo preview symbols nupkg assets symbols dotnet ilverify preview symbols nupkg assets symbols microsoft extensions configuration environmentvariables preview symbols nupkg assets symbols microsoft extensions configuration commandline preview symbols nupkg assets symbols microsoft extensions configuration abstractions preview symbols nupkg assets symbols microsoft diagnostics tracing eventsource redist preview symbols nupkg assets symbols microsoft extensions configuration binder preview symbols nupkg assets symbols ilcompiler reflection readytorun experimental preview symbols nupkg assets symbols microsoft extensions caching abstractions preview symbols nupkg assets symbols microsoft extensions caching memory preview symbols nupkg changes jon fortescue merged pr make the circles orange when you click override
0
33,028
6,997,900,315
IssuesEvent
2017-12-16 20:17:24
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
Context Menus in table not showing with too many elements properly
6.1.11 defect
Reported By PRO User; > When right clicking on second or third row in a datatable, context menu opens upwards instead of downwards which causes context menu items to go out of visible area and only few menu items are shown.
1.0
Context Menus in table not showing with too many elements properly - Reported By PRO User; > When right clicking on second or third row in a datatable, context menu opens upwards instead of downwards which causes context menu items to go out of visible area and only few menu items are shown.
non_test
context menus in table not showing with too many elements properly reported by pro user when right clicking on second or third row in a datatable context menu opens upwards instead of downwards which causes context menu items to go out of visible area and only few menu items are shown
0
20,622
3,829,373,690
IssuesEvent
2016-03-31 10:23:02
OpenMobileAlliance/OMA-LwM2M-Public-Review
https://api.github.com/repos/OpenMobileAlliance/OMA-LwM2M-Public-Review
closed
TS 8.2.3 Registration Interface : POST or PUT for the 'Update' CoAP Method?
bug Test Case
About the CoAP Method of 'Update' in the TS section 8.2.3, the current TS doc (2015 DEC) is written as 'POST' ( "Registration update is performed by sending a CoAP PUT... "). But the older version of TS ( eg. 2014.NOV) is written as 'PUT'. And '6.1.2.2 LightweightM2M-1.0-int-102 – Registration Update' in the current test specification ( OMA-ETS-LightweightM2M-V1_0-20151208-C) also uses 'PUT'. Which one is the correct one? PUT or POST?
1.0
TS 8.2.3 Registration Interface : POST or PUT for the 'Update' CoAP Method? - About the CoAP Method of 'Update' in the TS section 8.2.3, the current TS doc (2015 DEC) is written as 'POST' ( "Registration update is performed by sending a CoAP PUT... "). But the older version of TS ( eg. 2014.NOV) is written as 'PUT'. And '6.1.2.2 LightweightM2M-1.0-int-102 – Registration Update' in the current test specification ( OMA-ETS-LightweightM2M-V1_0-20151208-C) also uses 'PUT'. Which one is the correct one? PUT or POST?
test
ts registration interface post or put for the update coap method about the coap method of update in the ts section the current ts doc dec is written as post registration update is performed by sending a coap put but the older version of ts eg nov is written as put and int – registration update in the current test specification oma ets c also uses put which one is the correct one put or post
1
8,026
11,302,062,726
IssuesEvent
2020-01-17 16:49:50
dan-solli/ottra
https://api.github.com/repos/dan-solli/ottra
opened
current working dir need to move back to Vuex.
Requirement client server
- It's being passed between OttraDocumentBrowser and OttraNewFolderDialog as prop. - It should be passed on to backend when you upload files - they ought to end up in the right place. - - And server side should act on it. - It should be changed when you double-click on a folder in OttraDocumentBrowser (or underlying component)
1.0
current working dir need to move back to Vuex. - - It's being passed between OttraDocumentBrowser and OttraNewFolderDialog as prop. - It should be passed on to backend when you upload files - they ought to end up in the right place. - - And server side should act on it. - It should be changed when you double-click on a folder in OttraDocumentBrowser (or underlying component)
non_test
current working dir need to move back to vuex it s being passed between ottradocumentbrowser and ottranewfolderdialog as prop it should be passed on to backend when you upload files they ought to end up in the right place and server side should act on it it should be changed when you double click on a folder in ottradocumentbrowser or underlying component
0
670,168
22,678,423,939
IssuesEvent
2022-07-04 07:41:39
aquasecurity/trivy
https://api.github.com/repos/aquasecurity/trivy
closed
Support CycloneDX as input
kind/feature priority/important-longterm
## Description Trivy can generate CycloneDX output, but it can't take CycloneDX as input. It would be great if Trivy supports CycloneDX as input and scans dependencies. ## Related issues - https://github.com/aquasecurity/trivy/issues/1164 ## Example ``` $ trivy sbom --type cyclonedx /path/to/report.cdx ``` ## Implementation (Draft) 1. Define sbom.Artifact - https://github.com/aquasecurity/fanal/tree/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact - The implementation would be similar to fs.Artifact. 2. Parse SBOM inside `Inspect()` - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L78 3. Create `BlobInfo` - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L120-L127 4. Put the blob with a pseudo cache key in cache - Same as fs.Artifact - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L148 6. Return ArtifactReference - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L161-L167
1.0
Support CycloneDX as input - ## Description Trivy can generate CycloneDX output, but it can't take CycloneDX as input. It would be great if Trivy supports CycloneDX as input and scans dependencies. ## Related issues - https://github.com/aquasecurity/trivy/issues/1164 ## Example ``` $ trivy sbom --type cyclonedx /path/to/report.cdx ``` ## Implementation (Draft) 1. Define sbom.Artifact - https://github.com/aquasecurity/fanal/tree/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact - The implementation would be similar to fs.Artifact. 2. Parse SBOM inside `Inspect()` - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L78 3. Create `BlobInfo` - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L120-L127 4. Put the blob with a pseudo cache key in cache - Same as fs.Artifact - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L148 6. Return ArtifactReference - https://github.com/aquasecurity/fanal/blob/b7afb9b29421d18bb508a50c335a2727c799a1e4/artifact/local/fs.go#L161-L167
non_test
support cyclonedx as input description trivy can generate cyclonedx output but it can t take cyclonedx as input it would be great if trivy supports cyclonedx as input and scans dependencies related issues example trivy sbom type cyclonedx path to report cdx implementation draft define sbom artifact the implementation would be similar to fs artifact parse sbom inside inspect create blobinfo put the blob with a pseudo cache key in cache same as fs artifact return artifactreference
0
115,183
9,782,715,011
IssuesEvent
2019-06-08 02:00:37
semperfiwebdesign/all-in-one-seo-pack
https://api.github.com/repos/semperfiwebdesign/all-in-one-seo-pack
opened
Add unit test for notices using multiple user roles
Needs Unit Test
Unit test for admin and non-admin interactions, and make sure they operate correctly.
1.0
Add unit test for notices using multiple user roles - Unit test for admin and non-admin interactions, and make sure they operate correctly.
test
add unit test for notices using multiple user roles unit test for admin and non admin interactions and make sure they operate correctly
1
220,779
17,260,509,313
IssuesEvent
2021-07-22 06:50:57
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
closed
com.hazelcast.client.cache.ClientCacheConfigTest.cacheManagerByLocationClasspathTest
Source: Internal Team: Client Type: Test-Failure
_master_ (commit e3352af34221c58de14ed09dcde0edc9206098c8) Failed on Oracle JDK 11: http://jenkins.hazelcast.com/view/Official%20Builds/job/Hazelcast-master-OracleJDK11/271/testReport/com.hazelcast.client.cache/ClientCacheConfigTest/cacheManagerByLocationClasspathTest/ Stacktrace: ``` java.lang.AssertionError: expected:<0> but was:<4> at org.junit.Assert.fail(Assert.java:89) at org.junit.Assert.failNotEquals(Assert.java:835) at org.junit.Assert.assertEquals(Assert.java:647) at org.junit.Assert.assertEquals(Assert.java:633) at com.hazelcast.client.cache.ClientCacheConfigTest.cacheManagerByLocationClasspathTest(ClientCacheConfigTest.java:88) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:115) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:107) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.lang.Thread.run(Thread.java:834) ``` Standard output: ``` 22:26:41,001 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [LOCAL] [cluster1] [5.0-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1' 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] o o O o---o o--o o o-o O o-o o-O-o o--o o-o | | / \ / | | / / \ | | | o /o O--O o---o -O- O-o | O o---o o-o | o-o | / | | | | | / | | \ | | | | | o/ o o o o o o---o o--o O---o o-o o o o--o o o-o O o-o 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved. 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Hazelcast Platform 5.0-SNAPSHOT (20210605 - e3352af) starting at [127.0.0.1]:5701 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Cluster name: cluster1 22:26:41,004 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled 22:26:41,011 WARN |cacheManagerByLocationClasspathTest| - [CPSubsystem] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees. 22:26:41,016 INFO |cacheManagerByLocationClasspathTest| - [JetServiceBackend] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Setting number of cooperative threads and default parallelism to 8 22:26:41,017 INFO |cacheManagerByLocationClasspathTest| - [Diagnostics] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments. 22:26:41,018 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is STARTING 22:26:41,019 WARN |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] No join method is enabled! Starting standalone. 22:26:41,019 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Jet extension is enabled after the cluster version upgrade. 22:26:41,019 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,019 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Jet extension is enabled 22:26:41,019 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,020 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is STARTED 22:26:41,020 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [LOCAL] [cluster2] [5.0-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1' 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] o o O o---o o--o o o-o O o-o o-O-o o--o o-o | | / \ / | | / / \ | | | o /o O--O o---o -O- O-o | O o---o o-o | o-o | / | | | | | / | | \ | | | | | o/ o o o o o o---o o--o O---o o-o o o o--o o o-o O o-o 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved. 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Hazelcast Platform 5.0-SNAPSHOT (20210605 - e3352af) starting at [127.0.0.1]:5702 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Cluster name: cluster2 22:26:41,023 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled 22:26:41,028 WARN |cacheManagerByLocationClasspathTest| - [CPSubsystem] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees. 22:26:41,032 INFO |cacheManagerByLocationClasspathTest| - [JetServiceBackend] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Setting number of cooperative threads and default parallelism to 8 22:26:41,034 INFO |cacheManagerByLocationClasspathTest| - [Diagnostics] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments. 22:26:41,034 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is STARTING 22:26:41,035 WARN |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] No join method is enabled! Starting standalone. 22:26:41,035 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Jet extension is enabled after the cluster version upgrade. 22:26:41,036 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-3 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,036 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Jet extension is enabled 22:26:41,036 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-3 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,036 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is STARTED 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-1 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-3 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-1 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.fervent_beaver.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Received auth from Connection[id=1, /127.0.0.1:5701->/127.0.0.1:58748, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid ea1abc7e-0178-4072-8fa3-a7cec26eab7b, authentication failed 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.distracted_beaver.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Received auth from Connection[id=1, /127.0.0.1:5702->/127.0.0.1:42848, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid 205e84b0-b83b-41d8-985e-3cb5b80e1499, authentication failed 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.fervent_beaver.generic-operation.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Received auth from Connection[id=2, /127.0.0.1:5701->/127.0.0.1:53606, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid 205e84b0-b83b-41d8-985e-3cb5b80e1499, authentication failed 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.distracted_beaver.generic-operation.thread-0 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Received auth from Connection[id=2, /127.0.0.1:5702->/127.0.0.1:47837, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid ea1abc7e-0178-4072-8fa3-a7cec26eab7b, authentication failed 22:26:41,184 WARN || - [TcpClientConnection] hz.client_180.internal-8 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=21, channel=NioChannel{/127.0.0.1:47837->/127.0.0.1:5702}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,184 WARN || - [TcpClientConnection] hz.client_181.internal-8 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=21, channel=NioChannel{/127.0.0.1:42848->/127.0.0.1:5702}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,184 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.distracted_beaver.IO.thread-in-1 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Connection[id=2, /127.0.0.1:5702->/127.0.0.1:47837, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,184 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.distracted_beaver.IO.thread-in-0 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Connection[id=1, /127.0.0.1:5702->/127.0.0.1:42848, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,184 WARN || - [ClientConnectionManager] hz.client_181.internal-8 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member 61f5f80f-5b1a-4df6-9513-81e625500414, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,184 WARN || - [ClientConnectionManager] hz.client_180.internal-8 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member 61f5f80f-5b1a-4df6-9513-81e625500414, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,184 WARN || - [TcpClientConnection] hz.client_181.internal-6 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=22, channel=NioChannel{/127.0.0.1:53606->/127.0.0.1:5701}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,185 WARN || - [TcpClientConnection] hz.client_180.internal-10 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=22, channel=NioChannel{/127.0.0.1:58748->/127.0.0.1:5701}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,185 WARN || - [ClientConnectionManager] hz.client_181.internal-6 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member a1df6606-8e64-4ddb-94b9-055670dd9871, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,185 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.fervent_beaver.IO.thread-in-0 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Connection[id=1, /127.0.0.1:5701->/127.0.0.1:58748, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,185 WARN || - [ClientConnectionManager] hz.client_180.internal-10 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member a1df6606-8e64-4ddb-94b9-055670dd9871, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,185 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.fervent_beaver.IO.thread-in-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Connection[id=2, /127.0.0.1:5701->/127.0.0.1:53606, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,219 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,220 INFO || - [ClientConnectionManager] hz.client_180.internal-7 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,220 WARN || - [ClientConnectionManager] hz.client_180.internal-7 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,221 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,221 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,221 INFO || - [ClientConnectionManager] hz.client_207.internal-1 - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,221 WARN || - [ClientConnectionManager] hz.client_207.internal-1 - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,228 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,228 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,228 INFO || - [ClientConnectionManager] hz.client_206.internal-1 - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,228 WARN || - [ClientConnectionManager] hz.client_206.internal-1 - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,229 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,230 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,230 INFO || - [ClientConnectionManager] hz.client_181.internal-7 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,230 WARN || - [ClientConnectionManager] hz.client_181.internal-7 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,231 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,232 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is SHUTTING_DOWN 22:26:41,232 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Added a shutting-down member: 80e77843-064b-4fd8-9447-65f147ee9c73 22:26:41,232 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Shutting down connection manager... 22:26:41,234 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Shutting down node engine... 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [NodeExtension] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Destroying node NodeExtension. 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Hazelcast Shutdown is completed in 3 ms. 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is SHUTDOWN 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is SHUTTING_DOWN 22:26:41,235 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Added a shutting-down member: 05f08494-752f-4350-86f4-3af4412c0120 22:26:41,236 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Shutting down connection manager... 22:26:41,236 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Shutting down node engine... 22:26:41,238 INFO |cacheManagerByLocationClasspathTest| - [NodeExtension] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Destroying node NodeExtension. 22:26:41,238 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Hazelcast Shutdown is completed in 3 ms. 22:26:41,238 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is SHUTDOWN BuildInfo right after cacheManagerByLocationClasspathTest(com.hazelcast.client.cache.ClientCacheConfigTest): BuildInfo{version='5.0-SNAPSHOT', build='20210605', buildNumber=20210605, revision=e3352af, enterprise=false, serializationVersion=1, jet=JetBuildInfo{version='5.0-SNAPSHOT', build='20210605', revision='e3352af'}} Hiccups measured while running test 'cacheManagerByLocationClasspathTest(com.hazelcast.client.cache.ClientCacheConfigTest):' 22:26:40, accumulated pauses: 181 ms, max pause: 146 ms, pauses over 1000 ms: 0 ```
1.0
com.hazelcast.client.cache.ClientCacheConfigTest.cacheManagerByLocationClasspathTest - _master_ (commit e3352af34221c58de14ed09dcde0edc9206098c8) Failed on Oracle JDK 11: http://jenkins.hazelcast.com/view/Official%20Builds/job/Hazelcast-master-OracleJDK11/271/testReport/com.hazelcast.client.cache/ClientCacheConfigTest/cacheManagerByLocationClasspathTest/ Stacktrace: ``` java.lang.AssertionError: expected:<0> but was:<4> at org.junit.Assert.fail(Assert.java:89) at org.junit.Assert.failNotEquals(Assert.java:835) at org.junit.Assert.assertEquals(Assert.java:647) at org.junit.Assert.assertEquals(Assert.java:633) at com.hazelcast.client.cache.ClientCacheConfigTest.cacheManagerByLocationClasspathTest(ClientCacheConfigTest.java:88) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:115) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:107) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.lang.Thread.run(Thread.java:834) ``` Standard output: ``` 22:26:41,001 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [LOCAL] [cluster1] [5.0-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1' 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] o o O o---o o--o o o-o O o-o o-O-o o--o o-o | | / \ / | | / / \ | | | o /o O--O o---o -O- O-o | O o---o o-o | o-o | / | | | | | / | | \ | | | | | o/ o o o o o o---o o--o O---o o-o o o o--o o o-o O o-o 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved. 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Hazelcast Platform 5.0-SNAPSHOT (20210605 - e3352af) starting at [127.0.0.1]:5701 22:26:41,003 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Cluster name: cluster1 22:26:41,004 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled 22:26:41,011 WARN |cacheManagerByLocationClasspathTest| - [CPSubsystem] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees. 22:26:41,016 INFO |cacheManagerByLocationClasspathTest| - [JetServiceBackend] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Setting number of cooperative threads and default parallelism to 8 22:26:41,017 INFO |cacheManagerByLocationClasspathTest| - [Diagnostics] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments. 22:26:41,018 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is STARTING 22:26:41,019 WARN |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] No join method is enabled! Starting standalone. 22:26:41,019 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Jet extension is enabled after the cluster version upgrade. 22:26:41,019 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,019 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Jet extension is enabled 22:26:41,019 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,020 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is STARTED 22:26:41,020 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [LOCAL] [cluster2] [5.0-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1' 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] o o O o---o o--o o o-o O o-o o-O-o o--o o-o | | / \ / | | / / \ | | | o /o O--O o---o -O- O-o | O o---o o-o | o-o | / | | | | | / | | \ | | | | | o/ o o o o o o---o o--o O---o o-o o o o--o o o-o O o-o 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved. 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Hazelcast Platform 5.0-SNAPSHOT (20210605 - e3352af) starting at [127.0.0.1]:5702 22:26:41,021 INFO |cacheManagerByLocationClasspathTest| - [system] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Cluster name: cluster2 22:26:41,023 INFO |cacheManagerByLocationClasspathTest| - [MetricsConfigHelper] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled 22:26:41,028 WARN |cacheManagerByLocationClasspathTest| - [CPSubsystem] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees. 22:26:41,032 INFO |cacheManagerByLocationClasspathTest| - [JetServiceBackend] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Setting number of cooperative threads and default parallelism to 8 22:26:41,034 INFO |cacheManagerByLocationClasspathTest| - [Diagnostics] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments. 22:26:41,034 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is STARTING 22:26:41,035 WARN |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] No join method is enabled! Starting standalone. 22:26:41,035 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Jet extension is enabled after the cluster version upgrade. 22:26:41,036 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-3 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,036 INFO |cacheManagerByLocationClasspathTest| - [JetExtension] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Jet extension is enabled 22:26:41,036 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-3 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,036 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is STARTED 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-1 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.fervent_beaver.cached.thread-3 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,183 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] hz.distracted_beaver.cached.thread-1 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Not starting jobs because partitions are not yet initialized. 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.fervent_beaver.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Received auth from Connection[id=1, /127.0.0.1:5701->/127.0.0.1:58748, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid ea1abc7e-0178-4072-8fa3-a7cec26eab7b, authentication failed 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.distracted_beaver.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Received auth from Connection[id=1, /127.0.0.1:5702->/127.0.0.1:42848, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid 205e84b0-b83b-41d8-985e-3cb5b80e1499, authentication failed 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.fervent_beaver.generic-operation.thread-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Received auth from Connection[id=2, /127.0.0.1:5701->/127.0.0.1:53606, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid 205e84b0-b83b-41d8-985e-3cb5b80e1499, authentication failed 22:26:41,184 WARN |cacheManagerByLocationClasspathTest| - [AuthenticationMessageTask] hz.distracted_beaver.generic-operation.thread-0 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Received auth from Connection[id=2, /127.0.0.1:5702->/127.0.0.1:47837, qualifier=null, endpoint=null, alive=true, connectionType=NONE, planeIndex=-1] with clientUuid ea1abc7e-0178-4072-8fa3-a7cec26eab7b, authentication failed 22:26:41,184 WARN || - [TcpClientConnection] hz.client_180.internal-8 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=21, channel=NioChannel{/127.0.0.1:47837->/127.0.0.1:5702}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,184 WARN || - [TcpClientConnection] hz.client_181.internal-8 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=21, channel=NioChannel{/127.0.0.1:42848->/127.0.0.1:5702}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,184 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.distracted_beaver.IO.thread-in-1 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Connection[id=2, /127.0.0.1:5702->/127.0.0.1:47837, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,184 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.distracted_beaver.IO.thread-in-0 - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Connection[id=1, /127.0.0.1:5702->/127.0.0.1:42848, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,184 WARN || - [ClientConnectionManager] hz.client_181.internal-8 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member 61f5f80f-5b1a-4df6-9513-81e625500414, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,184 WARN || - [ClientConnectionManager] hz.client_180.internal-8 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member 61f5f80f-5b1a-4df6-9513-81e625500414, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,184 WARN || - [TcpClientConnection] hz.client_181.internal-6 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=22, channel=NioChannel{/127.0.0.1:53606->/127.0.0.1:5701}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,185 WARN || - [TcpClientConnection] hz.client_180.internal-10 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] ClientConnection{alive=false, connectionId=22, channel=NioChannel{/127.0.0.1:58748->/127.0.0.1:5701}, remoteAddress=null, lastReadTime=2021-06-05 22:26:41.184, lastWriteTime=2021-06-05 22:26:41.184, closedTime=2021-06-05 22:26:41.184, connected server version=null} closed. Reason: Failed to authenticate connection com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.checkAuthenticationResponse(TcpClientConnectionManager.java:982) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.onAuthenticated(TcpClientConnectionManager.java:885) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager.getOrConnectToMember(TcpClientConnectionManager.java:622) ~[classes/:?] at com.hazelcast.client.impl.connection.tcp.TcpClientConnectionManager$ConnectToAllClusterMembersTask.lambda$run$0(TcpClientConnectionManager.java:1169) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [classes/:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [classes/:?] 22:26:41,185 WARN || - [ClientConnectionManager] hz.client_181.internal-6 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member a1df6606-8e64-4ddb-94b9-055670dd9871, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,185 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.fervent_beaver.IO.thread-in-0 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Connection[id=1, /127.0.0.1:5701->/127.0.0.1:58748, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,185 WARN || - [ClientConnectionManager] hz.client_180.internal-10 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to member a1df6606-8e64-4ddb-94b9-055670dd9871, reason com.hazelcast.client.AuthenticationException: Authentication failed. The configured cluster name on the client (see ClientConfig.setClusterName()) does not match the one configured in the cluster or the credentials set in the Client security config could not be authenticated 22:26:41,185 INFO |cacheManagerByLocationClasspathTest| - [TcpServerConnection] hz.fervent_beaver.IO.thread-in-1 - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Connection[id=2, /127.0.0.1:5701->/127.0.0.1:53606, qualifier=null, endpoint=null, alive=false, connectionType=NONE, planeIndex=-1] closed. Reason: Connection closed by the other side 22:26:41,219 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,220 INFO || - [ClientConnectionManager] hz.client_180.internal-7 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,220 WARN || - [ClientConnectionManager] hz.client_180.internal-7 - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,221 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_180 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,221 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,221 INFO || - [ClientConnectionManager] hz.client_207.internal-1 - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,221 WARN || - [ClientConnectionManager] hz.client_207.internal-1 - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,228 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_207 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,228 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,228 INFO || - [ClientConnectionManager] hz.client_206.internal-1 - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,228 WARN || - [ClientConnectionManager] hz.client_206.internal-1 - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,229 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_206 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,230 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTTING_DOWN 22:26:41,230 INFO || - [ClientConnectionManager] hz.client_181.internal-7 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Unable to connect to any address from the cluster with name: 8c360673-7e50-465a-bfab-62d91d5ef3ac. The following addresses were tried: [[127.0.0.1]:5702, [127.0.0.1]:5701] 22:26:41,230 WARN || - [ClientConnectionManager] hz.client_181.internal-7 - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] Could not connect to any cluster, shutting down the client: Client is being shutdown. 22:26:41,231 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - hz.client_181 [8c360673-7e50-465a-bfab-62d91d5ef3ac] [5.0-SNAPSHOT] [5.0-SNAPSHOT] HazelcastClient 5.0-SNAPSHOT (20210605 - e3352af) is SHUTDOWN 22:26:41,232 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is SHUTTING_DOWN 22:26:41,232 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Added a shutting-down member: 80e77843-064b-4fd8-9447-65f147ee9c73 22:26:41,232 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Shutting down connection manager... 22:26:41,234 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Shutting down node engine... 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [NodeExtension] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Destroying node NodeExtension. 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] Hazelcast Shutdown is completed in 3 ms. 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5702 [cluster2] [5.0-SNAPSHOT] [127.0.0.1]:5702 is SHUTDOWN 22:26:41,235 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is SHUTTING_DOWN 22:26:41,235 DEBUG |cacheManagerByLocationClasspathTest| - [JobCoordinationService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Added a shutting-down member: 05f08494-752f-4350-86f4-3af4412c0120 22:26:41,236 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Shutting down connection manager... 22:26:41,236 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Shutting down node engine... 22:26:41,238 INFO |cacheManagerByLocationClasspathTest| - [NodeExtension] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Destroying node NodeExtension. 22:26:41,238 INFO |cacheManagerByLocationClasspathTest| - [Node] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] Hazelcast Shutdown is completed in 3 ms. 22:26:41,238 INFO |cacheManagerByLocationClasspathTest| - [LifecycleService] main - [127.0.0.1]:5701 [cluster1] [5.0-SNAPSHOT] [127.0.0.1]:5701 is SHUTDOWN BuildInfo right after cacheManagerByLocationClasspathTest(com.hazelcast.client.cache.ClientCacheConfigTest): BuildInfo{version='5.0-SNAPSHOT', build='20210605', buildNumber=20210605, revision=e3352af, enterprise=false, serializationVersion=1, jet=JetBuildInfo{version='5.0-SNAPSHOT', build='20210605', revision='e3352af'}} Hiccups measured while running test 'cacheManagerByLocationClasspathTest(com.hazelcast.client.cache.ClientCacheConfigTest):' 22:26:40, accumulated pauses: 181 ms, max pause: 146 ms, pauses over 1000 ms: 0 ```
test
com hazelcast client cache clientcacheconfigtest cachemanagerbylocationclasspathtest master commit failed on oracle jdk stacktrace java lang assertionerror expected but was at org junit assert fail assert java at org junit assert failnotequals assert java at org junit assert assertequals assert java at org junit assert assertequals assert java at com hazelcast client cache clientcacheconfigtest cachemanagerbylocationclasspathtest clientcacheconfigtest java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at org junit internal runners statements invokemethod evaluate invokemethod java at com hazelcast test failontimeoutstatement callablestatement call failontimeoutstatement java at com hazelcast test failontimeoutstatement callablestatement call failontimeoutstatement java at java base java util concurrent futuretask run futuretask java at java base java lang thread run thread java standard output info cachemanagerbylocationclasspathtest main overridden metrics configuration with system property hazelcast metrics collection frequency metricsconfig collectionfrequencyseconds info cachemanagerbylocationclasspathtest main o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o info cachemanagerbylocationclasspathtest main copyright c hazelcast inc all rights reserved info cachemanagerbylocationclasspathtest main hazelcast platform snapshot starting at info cachemanagerbylocationclasspathtest main cluster name info cachemanagerbylocationclasspathtest main collecting debug metrics and sending to diagnostics is enabled warn cachemanagerbylocationclasspathtest main cp subsystem is not enabled cp data structures will operate in unsafe mode please note that unsafe mode will not provide strong consistency guarantees info cachemanagerbylocationclasspathtest main setting number of cooperative threads and default parallelism to info cachemanagerbylocationclasspathtest main diagnostics disabled to enable add dhazelcast diagnostics enabled true to the jvm arguments info cachemanagerbylocationclasspathtest main is starting warn cachemanagerbylocationclasspathtest main no join method is enabled starting standalone info cachemanagerbylocationclasspathtest main jet extension is enabled after the cluster version upgrade debug cachemanagerbylocationclasspathtest hz fervent beaver cached thread not starting jobs because partitions are not yet initialized info cachemanagerbylocationclasspathtest main jet extension is enabled debug cachemanagerbylocationclasspathtest hz fervent beaver cached thread not starting jobs because partitions are not yet initialized info cachemanagerbylocationclasspathtest main is started info cachemanagerbylocationclasspathtest main overridden metrics configuration with system property hazelcast metrics collection frequency metricsconfig collectionfrequencyseconds info cachemanagerbylocationclasspathtest main o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o info cachemanagerbylocationclasspathtest main copyright c hazelcast inc all rights reserved info cachemanagerbylocationclasspathtest main hazelcast platform snapshot starting at info cachemanagerbylocationclasspathtest main cluster name info cachemanagerbylocationclasspathtest main collecting debug metrics and sending to diagnostics is enabled warn cachemanagerbylocationclasspathtest main cp subsystem is not enabled cp data structures will operate in unsafe mode please note that unsafe mode will not provide strong consistency guarantees info cachemanagerbylocationclasspathtest main setting number of cooperative threads and default parallelism to info cachemanagerbylocationclasspathtest main diagnostics disabled to enable add dhazelcast diagnostics enabled true to the jvm arguments info cachemanagerbylocationclasspathtest main is starting warn cachemanagerbylocationclasspathtest main no join method is enabled starting standalone info cachemanagerbylocationclasspathtest main jet extension is enabled after the cluster version upgrade debug cachemanagerbylocationclasspathtest hz distracted beaver cached thread not starting jobs because partitions are not yet initialized info cachemanagerbylocationclasspathtest main jet extension is enabled debug cachemanagerbylocationclasspathtest hz distracted beaver cached thread not starting jobs because partitions are not yet initialized info cachemanagerbylocationclasspathtest main is started debug cachemanagerbylocationclasspathtest hz fervent beaver cached thread not starting jobs because partitions are not yet initialized debug cachemanagerbylocationclasspathtest hz distracted beaver cached thread not starting jobs because partitions are not yet initialized debug cachemanagerbylocationclasspathtest hz fervent beaver cached thread not starting jobs because partitions are not yet initialized debug cachemanagerbylocationclasspathtest hz distracted beaver cached thread not starting jobs because partitions are not yet initialized warn cachemanagerbylocationclasspathtest hz fervent beaver priority generic operation thread received auth from connection with clientuuid authentication failed warn cachemanagerbylocationclasspathtest hz distracted beaver priority generic operation thread received auth from connection with clientuuid authentication failed warn cachemanagerbylocationclasspathtest hz fervent beaver generic operation thread received auth from connection with clientuuid authentication failed warn cachemanagerbylocationclasspathtest hz distracted beaver generic operation thread received auth from connection with clientuuid authentication failed warn hz client internal hz client clientconnection alive false connectionid channel niochannel remoteaddress null lastreadtime lastwritetime closedtime connected server version null closed reason failed to authenticate connection com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated at com hazelcast client impl connection tcp tcpclientconnectionmanager checkauthenticationresponse tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager onauthenticated tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager getorconnecttomember tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager connecttoallclustermemberstask lambda run tcpclientconnectionmanager java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask run scheduledthreadpoolexecutor java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java warn hz client internal hz client clientconnection alive false connectionid channel niochannel remoteaddress null lastreadtime lastwritetime closedtime connected server version null closed reason failed to authenticate connection com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated at com hazelcast client impl connection tcp tcpclientconnectionmanager checkauthenticationresponse tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager onauthenticated tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager getorconnecttomember tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager connecttoallclustermemberstask lambda run tcpclientconnectionmanager java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask run scheduledthreadpoolexecutor java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java info cachemanagerbylocationclasspathtest hz distracted beaver io thread in connection closed reason connection closed by the other side info cachemanagerbylocationclasspathtest hz distracted beaver io thread in connection closed reason connection closed by the other side warn hz client internal hz client could not connect to member reason com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated warn hz client internal hz client could not connect to member reason com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated warn hz client internal hz client clientconnection alive false connectionid channel niochannel remoteaddress null lastreadtime lastwritetime closedtime connected server version null closed reason failed to authenticate connection com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated at com hazelcast client impl connection tcp tcpclientconnectionmanager checkauthenticationresponse tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager onauthenticated tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager getorconnecttomember tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager connecttoallclustermemberstask lambda run tcpclientconnectionmanager java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask run scheduledthreadpoolexecutor java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java warn hz client internal hz client clientconnection alive false connectionid channel niochannel remoteaddress null lastreadtime lastwritetime closedtime connected server version null closed reason failed to authenticate connection com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated at com hazelcast client impl connection tcp tcpclientconnectionmanager checkauthenticationresponse tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager onauthenticated tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager getorconnecttomember tcpclientconnectionmanager java at com hazelcast client impl connection tcp tcpclientconnectionmanager connecttoallclustermemberstask lambda run tcpclientconnectionmanager java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask run scheduledthreadpoolexecutor java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java warn hz client internal hz client could not connect to member reason com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated info cachemanagerbylocationclasspathtest hz fervent beaver io thread in connection closed reason connection closed by the other side warn hz client internal hz client could not connect to member reason com hazelcast client authenticationexception authentication failed the configured cluster name on the client see clientconfig setclustername does not match the one configured in the cluster or the credentials set in the client security config could not be authenticated info cachemanagerbylocationclasspathtest hz fervent beaver io thread in connection closed reason connection closed by the other side info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutting down info hz client internal hz client unable to connect to any address from the cluster with name bfab the following addresses were tried warn hz client internal hz client could not connect to any cluster shutting down the client client is being shutdown info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutdown info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutting down info hz client internal hz client unable to connect to any address from the cluster with name bfab the following addresses were tried warn hz client internal hz client could not connect to any cluster shutting down the client client is being shutdown info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutdown info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutting down info hz client internal hz client unable to connect to any address from the cluster with name bfab the following addresses were tried warn hz client internal hz client could not connect to any cluster shutting down the client client is being shutdown info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutdown info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutting down info hz client internal hz client unable to connect to any address from the cluster with name bfab the following addresses were tried warn hz client internal hz client could not connect to any cluster shutting down the client client is being shutdown info cachemanagerbylocationclasspathtest main hz client hazelcastclient snapshot is shutdown info cachemanagerbylocationclasspathtest main is shutting down debug cachemanagerbylocationclasspathtest main added a shutting down member info cachemanagerbylocationclasspathtest main shutting down connection manager info cachemanagerbylocationclasspathtest main shutting down node engine info cachemanagerbylocationclasspathtest main destroying node nodeextension info cachemanagerbylocationclasspathtest main hazelcast shutdown is completed in ms info cachemanagerbylocationclasspathtest main is shutdown info cachemanagerbylocationclasspathtest main is shutting down debug cachemanagerbylocationclasspathtest main added a shutting down member info cachemanagerbylocationclasspathtest main shutting down connection manager info cachemanagerbylocationclasspathtest main shutting down node engine info cachemanagerbylocationclasspathtest main destroying node nodeextension info cachemanagerbylocationclasspathtest main hazelcast shutdown is completed in ms info cachemanagerbylocationclasspathtest main is shutdown buildinfo right after cachemanagerbylocationclasspathtest com hazelcast client cache clientcacheconfigtest buildinfo version snapshot build buildnumber revision enterprise false serializationversion jet jetbuildinfo version snapshot build revision hiccups measured while running test cachemanagerbylocationclasspathtest com hazelcast client cache clientcacheconfigtest accumulated pauses ms max pause ms pauses over ms
1
650,627
21,411,426,094
IssuesEvent
2022-04-22 06:30:47
magento/magento2
https://api.github.com/repos/magento/magento2
closed
Attribute is returned as aggregation in products query even if Use in Search Results Layered Navigation is set to no
Issue: Confirmed Reproduced on 2.4.x Progress: PR in progress Priority: P1 Severity: S1 Project: GraphQL Area: APIs
<!--- Please review our guidelines before adding a new issue: https://github.com/magento/magento2/wiki/Issue-reporting-guidelines Fields marked with (*) are required. Please don't remove the template. --> ### Preconditions (*) <!--- Provide the exact Magento version (example: 2.4.0) and any important information on the environment where bug is reproducible. --> 1. Magento 2.4.2 ### Steps to reproduce (*) <!--- Important: Provide a set of clear steps to reproduce this bug. We can not provide support without clear instructions on how to reproduce. --> 1. On any attribute set the setting "Use in Search Results Layered Navigation" to no (using price as example here) 2. Execute the following graphql query: ```graphql query searchProducts { products(search: "") { aggregations { label } } } ``` ### Expected result (*) <!--- Tell us what do you expect to happen. --> ![image](https://user-images.githubusercontent.com/53174153/122883660-b64e9080-d33d-11eb-948d-fd9c6a972a72.png) ### Actual result (*) <!--- Tell us what happened instead. Include error messages and issues. --> ![image](https://user-images.githubusercontent.com/53174153/122883487-8acba600-d33d-11eb-9caa-a71775561b93.png) ### Whats the problem about it (*) The huge problem is here that if you build filters based on the aggregation field the user will be able to filter the price. But if you try to filter via the price if it's disabled for layered navigation you'll receive the following error: ![image](https://user-images.githubusercontent.com/53174153/122884112-180efa80-d33e-11eb-8cdf-7d4d8163840c.png) --- Please provide [Severity](https://devdocs.magento.com/guides/v2.4/contributor-guide/contributing.html#backlog) assessment for the Issue as Reporter. This information will help during Confirmation and Issue triage processes. - [ ] Severity: **S0** _- Affects critical data or functionality and leaves users without workaround._ - [x] Severity: **S1** _- Affects critical data or functionality and forces users to employ a workaround._ - [ ] Severity: **S2** _- Affects non-critical data or functionality and forces users to employ a workaround._ - [ ] Severity: **S3** _- Affects non-critical data or functionality and does not force users to employ a workaround._ - [ ] Severity: **S4** _- Affects aesthetics, professional look and feel, “quality” or “usability”._
1.0
Attribute is returned as aggregation in products query even if Use in Search Results Layered Navigation is set to no - <!--- Please review our guidelines before adding a new issue: https://github.com/magento/magento2/wiki/Issue-reporting-guidelines Fields marked with (*) are required. Please don't remove the template. --> ### Preconditions (*) <!--- Provide the exact Magento version (example: 2.4.0) and any important information on the environment where bug is reproducible. --> 1. Magento 2.4.2 ### Steps to reproduce (*) <!--- Important: Provide a set of clear steps to reproduce this bug. We can not provide support without clear instructions on how to reproduce. --> 1. On any attribute set the setting "Use in Search Results Layered Navigation" to no (using price as example here) 2. Execute the following graphql query: ```graphql query searchProducts { products(search: "") { aggregations { label } } } ``` ### Expected result (*) <!--- Tell us what do you expect to happen. --> ![image](https://user-images.githubusercontent.com/53174153/122883660-b64e9080-d33d-11eb-948d-fd9c6a972a72.png) ### Actual result (*) <!--- Tell us what happened instead. Include error messages and issues. --> ![image](https://user-images.githubusercontent.com/53174153/122883487-8acba600-d33d-11eb-9caa-a71775561b93.png) ### Whats the problem about it (*) The huge problem is here that if you build filters based on the aggregation field the user will be able to filter the price. But if you try to filter via the price if it's disabled for layered navigation you'll receive the following error: ![image](https://user-images.githubusercontent.com/53174153/122884112-180efa80-d33e-11eb-8cdf-7d4d8163840c.png) --- Please provide [Severity](https://devdocs.magento.com/guides/v2.4/contributor-guide/contributing.html#backlog) assessment for the Issue as Reporter. This information will help during Confirmation and Issue triage processes. - [ ] Severity: **S0** _- Affects critical data or functionality and leaves users without workaround._ - [x] Severity: **S1** _- Affects critical data or functionality and forces users to employ a workaround._ - [ ] Severity: **S2** _- Affects non-critical data or functionality and forces users to employ a workaround._ - [ ] Severity: **S3** _- Affects non-critical data or functionality and does not force users to employ a workaround._ - [ ] Severity: **S4** _- Affects aesthetics, professional look and feel, “quality” or “usability”._
non_test
attribute is returned as aggregation in products query even if use in search results layered navigation is set to no please review our guidelines before adding a new issue fields marked with are required please don t remove the template preconditions provide the exact magento version example and any important information on the environment where bug is reproducible magento steps to reproduce important provide a set of clear steps to reproduce this bug we can not provide support without clear instructions on how to reproduce on any attribute set the setting use in search results layered navigation to no using price as example here execute the following graphql query graphql query searchproducts products search aggregations label expected result actual result whats the problem about it the huge problem is here that if you build filters based on the aggregation field the user will be able to filter the price but if you try to filter via the price if it s disabled for layered navigation you ll receive the following error please provide assessment for the issue as reporter this information will help during confirmation and issue triage processes severity affects critical data or functionality and leaves users without workaround severity affects critical data or functionality and forces users to employ a workaround severity affects non critical data or functionality and forces users to employ a workaround severity affects non critical data or functionality and does not force users to employ a workaround severity affects aesthetics professional look and feel “quality” or “usability”
0
776,642
27,264,516,151
IssuesEvent
2023-02-22 17:01:31
ascheid/itsg33-pbmm-issue-gen
https://api.github.com/repos/ascheid/itsg33-pbmm-issue-gen
opened
CM-1: Configuration Management Policy And Procedures
Priority: P1 Suggested Assignment: IT Security Function ITSG-33 Class: Operational Control: CM-1
# Control Definition (A) The organization develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]: (a) A configuration management policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and (b) Procedures to facilitate the implementation of the configuration management policy and associated configuration management controls. (B) The organization reviews and updates the current: (a) Configuration management policy [Assignment: organization-defined frequency]; and (b) Configuration management procedures [Assignment: organization-defined frequency]. # Class Operational # Supplemental Guidance This control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the CM family. The configuration management policies and procedures reflect applicable GC legislation and TBS policies, directives and standards. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general (or the IT program) and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures. # References TBS Operational Security Standard - Management of Information Technology Security [Reference 7]. # Suggested Placeholder Values (A) (B) frequency [at a frequency no longer than annually] # Suggested Assignment IT Security Function # Support Teams Learning Center
1.0
CM-1: Configuration Management Policy And Procedures - # Control Definition (A) The organization develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]: (a) A configuration management policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and (b) Procedures to facilitate the implementation of the configuration management policy and associated configuration management controls. (B) The organization reviews and updates the current: (a) Configuration management policy [Assignment: organization-defined frequency]; and (b) Configuration management procedures [Assignment: organization-defined frequency]. # Class Operational # Supplemental Guidance This control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the CM family. The configuration management policies and procedures reflect applicable GC legislation and TBS policies, directives and standards. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general (or the IT program) and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures. # References TBS Operational Security Standard - Management of Information Technology Security [Reference 7]. # Suggested Placeholder Values (A) (B) frequency [at a frequency no longer than annually] # Suggested Assignment IT Security Function # Support Teams Learning Center
non_test
cm configuration management policy and procedures control definition a the organization develops documents and disseminates to a a configuration management policy that addresses purpose scope roles responsibilities management commitment coordination among organizational entities and compliance and b procedures to facilitate the implementation of the configuration management policy and associated configuration management controls b the organization reviews and updates the current a configuration management policy and b configuration management procedures class operational supplemental guidance this control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the cm family the configuration management policies and procedures reflect applicable gc legislation and tbs policies directives and standards security program policies and procedures at the organization level may make the need for system specific policies and procedures unnecessary the policy can be included as part of the general information security policy for organizations or conversely can be represented by multiple policies reflecting the complex nature of certain organizations the procedures can be established for the security program in general or the it program and for particular information systems if needed the organizational risk management strategy is a key factor in establishing policy and procedures references tbs operational security standard management of information technology security suggested placeholder values a b frequency suggested assignment it security function support teams learning center
0