Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 757 | labels stringlengths 4 664 | body stringlengths 3 261k | index stringclasses 10 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 232k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
29,929 | 5,959,485,381 | IssuesEvent | 2017-05-29 11:13:44 | bridgedotnet/Bridge | https://api.github.com/repos/bridgedotnet/Bridge | closed | Wrong handling of namespaces/classes names. | defect in progress | ### Steps To Reproduce
https://deck.net/204e21afc5fdab5bf940870dbaf86f02
```c#
using System;
using Base = Problem.Classes.A;
namespace Problem.Classes
{
public abstract class A
{
public enum Mode
{
Value1,
Value2
}
public abstract void Test(Mode mode);
}
}
namespace Derived.Classes
{
public class B : Base
{
public override void Test(Mode mode)
{
switch (mode)
{
case Mode.Value1:
break;
case Mode.Value2:
break;
default:
throw new ArgumentOutOfRangeException(nameof(mode), mode, null);
}
Console.WriteLine(mode);
}
}
}
namespace Derived
{
using Derived.Classes;
public sealed class Problem
{
private readonly B b = new B();
public void Test()
{
this.b.Test(Base.Mode.Value2);
}
}
}
public class Program
{
public static void Main()
{
Derived.Problem problem = new Derived.Problem();
problem.Test();
}
}
```
### Expected Result
```js
Names should be like this:
Problem.Classes.A.Mode.Value1
Problem.Classes.A.Mode.Value2
```
### Actual Result
```js
Exception due to wrong names.
case Derived.Problem.classes.a.mode.value1:
break;
case Derived.Problem.classes.a.mode.value2:
break;
```
| 1.0 | Wrong handling of namespaces/classes names. - ### Steps To Reproduce
https://deck.net/204e21afc5fdab5bf940870dbaf86f02
```c#
using System;
using Base = Problem.Classes.A;
namespace Problem.Classes
{
public abstract class A
{
public enum Mode
{
Value1,
Value2
}
public abstract void Test(Mode mode);
}
}
namespace Derived.Classes
{
public class B : Base
{
public override void Test(Mode mode)
{
switch (mode)
{
case Mode.Value1:
break;
case Mode.Value2:
break;
default:
throw new ArgumentOutOfRangeException(nameof(mode), mode, null);
}
Console.WriteLine(mode);
}
}
}
namespace Derived
{
using Derived.Classes;
public sealed class Problem
{
private readonly B b = new B();
public void Test()
{
this.b.Test(Base.Mode.Value2);
}
}
}
public class Program
{
public static void Main()
{
Derived.Problem problem = new Derived.Problem();
problem.Test();
}
}
```
### Expected Result
```js
Names should be like this:
Problem.Classes.A.Mode.Value1
Problem.Classes.A.Mode.Value2
```
### Actual Result
```js
Exception due to wrong names.
case Derived.Problem.classes.a.mode.value1:
break;
case Derived.Problem.classes.a.mode.value2:
break;
```
| defect | wrong handling of namespaces classes names steps to reproduce c using system using base problem classes a namespace problem classes public abstract class a public enum mode public abstract void test mode mode namespace derived classes public class b base public override void test mode mode switch mode case mode break case mode break default throw new argumentoutofrangeexception nameof mode mode null console writeline mode namespace derived using derived classes public sealed class problem private readonly b b new b public void test this b test base mode public class program public static void main derived problem problem new derived problem problem test expected result js names should be like this problem classes a mode problem classes a mode actual result js exception due to wrong names case derived problem classes a mode break case derived problem classes a mode break | 1 |
322,723 | 9,822,264,410 | IssuesEvent | 2019-06-14 09:21:53 | dotkom/onlineweb-frontend | https://api.github.com/repos/dotkom/onlineweb-frontend | closed | Create an 'apps' folder | Priority: Low Type: Refactor | Apps should have its own folder.
Maybe parts of core and common should be taken out of the apps context. | 1.0 | Create an 'apps' folder - Apps should have its own folder.
Maybe parts of core and common should be taken out of the apps context. | non_defect | create an apps folder apps should have its own folder maybe parts of core and common should be taken out of the apps context | 0 |
186,108 | 14,394,638,206 | IssuesEvent | 2020-12-03 01:46:13 | github-vet/rangeclosure-findings | https://api.github.com/repos/github-vet/rangeclosure-findings | closed | google/certificate-transparency-go: fixchain/logger_test.go; 32 LoC | fresh small test |
Found a possible issue in [google/certificate-transparency-go](https://www.github.com/google/certificate-transparency-go) at [fixchain/logger_test.go](https://github.com/google/certificate-transparency-go/blob/7710282e49162cbd95c500777522f436fd5fc279/fixchain/logger_test.go#L31-L62)
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 i used in defer or goroutine at line 37
[Click here to see the code in its original context.](https://github.com/google/certificate-transparency-go/blob/7710282e49162cbd95c500777522f436fd5fc279/fixchain/logger_test.go#L31-L62)
<details>
<summary>Click here to show the 32 line(s) of Go which triggered the analyzer.</summary>
```go
for i, test := range postTests {
errors := make(chan *FixError)
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
testErrors(t, i, test.expectedErrs, errors)
}()
c := &http.Client{Transport: &postTestRoundTripper{t: t, test: &test, testIndex: i}}
logClient, err := client.New(test.url, c, jsonclient.Options{})
if err != nil {
t.Fatalf("failed to create LogClient: %v", err)
}
l := NewLogger(ctx, 1, errors, logClient, newNilLimiter(), false)
l.QueueChain(extractTestChain(t, i, test.chain))
l.Wait()
close(l.errors)
wg.Wait()
// Check logger caching.
if test.chain != nil {
if test.ferr.Type == None && !l.postCertCache.get(hash(GetTestCertificateFromPEM(t, test.chain[0]))) {
t.Errorf("#%d: leaf certificate not cached", i)
}
if !l.postChainCache.get(hashChain(extractTestChain(t, i, test.chain))) {
t.Errorf("#%d: chain not cached", i)
}
}
}
```
</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: 7710282e49162cbd95c500777522f436fd5fc279
| 1.0 | google/certificate-transparency-go: fixchain/logger_test.go; 32 LoC -
Found a possible issue in [google/certificate-transparency-go](https://www.github.com/google/certificate-transparency-go) at [fixchain/logger_test.go](https://github.com/google/certificate-transparency-go/blob/7710282e49162cbd95c500777522f436fd5fc279/fixchain/logger_test.go#L31-L62)
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 i used in defer or goroutine at line 37
[Click here to see the code in its original context.](https://github.com/google/certificate-transparency-go/blob/7710282e49162cbd95c500777522f436fd5fc279/fixchain/logger_test.go#L31-L62)
<details>
<summary>Click here to show the 32 line(s) of Go which triggered the analyzer.</summary>
```go
for i, test := range postTests {
errors := make(chan *FixError)
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
testErrors(t, i, test.expectedErrs, errors)
}()
c := &http.Client{Transport: &postTestRoundTripper{t: t, test: &test, testIndex: i}}
logClient, err := client.New(test.url, c, jsonclient.Options{})
if err != nil {
t.Fatalf("failed to create LogClient: %v", err)
}
l := NewLogger(ctx, 1, errors, logClient, newNilLimiter(), false)
l.QueueChain(extractTestChain(t, i, test.chain))
l.Wait()
close(l.errors)
wg.Wait()
// Check logger caching.
if test.chain != nil {
if test.ferr.Type == None && !l.postCertCache.get(hash(GetTestCertificateFromPEM(t, test.chain[0]))) {
t.Errorf("#%d: leaf certificate not cached", i)
}
if !l.postChainCache.get(hashChain(extractTestChain(t, i, test.chain))) {
t.Errorf("#%d: chain not cached", i)
}
}
}
```
</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: 7710282e49162cbd95c500777522f436fd5fc279
| non_defect | google certificate transparency go fixchain logger 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 i used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for i test range posttests errors make chan fixerror var wg sync waitgroup wg add go func defer wg done testerrors t i test expectederrs errors c http client transport posttestroundtripper t t test test testindex i logclient err client new test url c jsonclient options if err nil t fatalf failed to create logclient v err l newlogger ctx errors logclient newnillimiter false l queuechain extracttestchain t i test chain l wait close l errors wg wait check logger caching if test chain nil if test ferr type none l postcertcache get hash gettestcertificatefrompem t test chain t errorf d leaf certificate not cached i if l postchaincache get hashchain extracttestchain t i test chain t errorf d chain not cached i 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 | 0 |
34,358 | 14,379,841,782 | IssuesEvent | 2020-12-02 01:20:00 | Azure/azure-sdk-for-net | https://api.github.com/repos/Azure/azure-sdk-for-net | closed | Unable to use the SBSuscription.ForwardTo property to forward messages to another Topic | Mgmt Service Attention Service Bus customer-reported needs-team-attention question | **Describe the bug**
Unable to use the SBSuscription.ForwardTo property to forward messages to another Topic.
Both source and target topics are in the same service bus namespace.
**Expected behavior**
It should just work 🙏
**Actual behavior (include Exception or Stack Trace)**
```
{
"error": {
"code": "LinkedAuthorizationFailed",
"message": "The client '<client-id>' ... has permission to perform action 'write' on scope
'/subscriptions/<subscription-id>/resourceGroups/service-bus/providers/Microsoft.ServiceBus/namespaces/<namespace-name>/topics/<topic-name>/subscriptions/<subscription-name>';
however, it does not have permission to perform action 'write' on the linked scope(s)
'/subscriptions/<subscription-id>/resourceGroups/service-bus/providers/Microsoft.ServiceBus/queues/<forwarded-to-topic-name>'
or the linked scope(s) are invalid."
}
}
```
Please, note the `/queues/<forwarded-to-topic-name>` section in the error message.
For the record, I tried forwarding to Service Bus Queue instead, but with no success.
I also tried `<namespace-name>/<forwarded-topic-name` with no avail.
**To Reproduce**
```
await client.Subscriptions.CreateOrUpdateAsync(
resourceGroupName,
namespaceName,
topicName,
subscriptionName,
SBSubscription = new SBSubscription
{
ForwardTo = ForwardedToTopicName,
},
cancellationToken
);
```
**Environment:**
- `<PackageReference Include="Microsoft.Azure.Management.ServiceBus" Version="2.1.0" />`
- Windows 10 - .net core 3.1
SDK .NET Core (reflétant tous les global.json) :
Version: 3.1.403
Commit: 9e895200cd
Environnement d'exécution :
OS Name: Windows
OS Version: 10.0.17763
OS Platform: Windows
RID: win10-x64
Base Path: c:\program files\dotnet\sdk\3.1.403\
Host (useful for support):
Version: 3.1.9
Commit: 774fc3d6a9
.NET Core SDKs installed:
3.1.401 [c:\program files\dotnet\sdk]
3.1.403 [c:\program files\dotnet\sdk]
.NET Core runtimes installed:
Microsoft.AspNetCore.All 2.1.23 [c:\program files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.App 2.1.23 [c:\program files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.1.9 [c:\program files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 1.0.16 [c:\program files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.23 [c:\program files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.1.9 [c:\program files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 3.1.9 [c:\program files\dotnet\shared\Microsoft.WindowsDesktop.App]
To install additional .NET Core runtimes or SDKs:
https://aka.ms/dotnet-download
| 2.0 | Unable to use the SBSuscription.ForwardTo property to forward messages to another Topic - **Describe the bug**
Unable to use the SBSuscription.ForwardTo property to forward messages to another Topic.
Both source and target topics are in the same service bus namespace.
**Expected behavior**
It should just work 🙏
**Actual behavior (include Exception or Stack Trace)**
```
{
"error": {
"code": "LinkedAuthorizationFailed",
"message": "The client '<client-id>' ... has permission to perform action 'write' on scope
'/subscriptions/<subscription-id>/resourceGroups/service-bus/providers/Microsoft.ServiceBus/namespaces/<namespace-name>/topics/<topic-name>/subscriptions/<subscription-name>';
however, it does not have permission to perform action 'write' on the linked scope(s)
'/subscriptions/<subscription-id>/resourceGroups/service-bus/providers/Microsoft.ServiceBus/queues/<forwarded-to-topic-name>'
or the linked scope(s) are invalid."
}
}
```
Please, note the `/queues/<forwarded-to-topic-name>` section in the error message.
For the record, I tried forwarding to Service Bus Queue instead, but with no success.
I also tried `<namespace-name>/<forwarded-topic-name` with no avail.
**To Reproduce**
```
await client.Subscriptions.CreateOrUpdateAsync(
resourceGroupName,
namespaceName,
topicName,
subscriptionName,
SBSubscription = new SBSubscription
{
ForwardTo = ForwardedToTopicName,
},
cancellationToken
);
```
**Environment:**
- `<PackageReference Include="Microsoft.Azure.Management.ServiceBus" Version="2.1.0" />`
- Windows 10 - .net core 3.1
SDK .NET Core (reflétant tous les global.json) :
Version: 3.1.403
Commit: 9e895200cd
Environnement d'exécution :
OS Name: Windows
OS Version: 10.0.17763
OS Platform: Windows
RID: win10-x64
Base Path: c:\program files\dotnet\sdk\3.1.403\
Host (useful for support):
Version: 3.1.9
Commit: 774fc3d6a9
.NET Core SDKs installed:
3.1.401 [c:\program files\dotnet\sdk]
3.1.403 [c:\program files\dotnet\sdk]
.NET Core runtimes installed:
Microsoft.AspNetCore.All 2.1.23 [c:\program files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.App 2.1.23 [c:\program files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.1.9 [c:\program files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 1.0.16 [c:\program files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.23 [c:\program files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.1.9 [c:\program files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 3.1.9 [c:\program files\dotnet\shared\Microsoft.WindowsDesktop.App]
To install additional .NET Core runtimes or SDKs:
https://aka.ms/dotnet-download
| non_defect | unable to use the sbsuscription forwardto property to forward messages to another topic describe the bug unable to use the sbsuscription forwardto property to forward messages to another topic both source and target topics are in the same service bus namespace expected behavior it should just work 🙏 actual behavior include exception or stack trace error code linkedauthorizationfailed message the client has permission to perform action write on scope subscriptions resourcegroups service bus providers microsoft servicebus namespaces topics subscriptions however it does not have permission to perform action write on the linked scope s subscriptions resourcegroups service bus providers microsoft servicebus queues or the linked scope s are invalid please note the queues section in the error message for the record i tried forwarding to service bus queue instead but with no success i also tried forwarded topic name with no avail to reproduce await client subscriptions createorupdateasync resourcegroupname namespacename topicname subscriptionname sbsubscription new sbsubscription forwardto forwardedtotopicname cancellationtoken environment windows net core sdk net core reflétant tous les global json version commit environnement d exécution os name windows os version os platform windows rid base path c program files dotnet sdk host useful for support version commit net core sdks installed net core runtimes installed microsoft aspnetcore all microsoft aspnetcore app microsoft aspnetcore app microsoft netcore app microsoft netcore app microsoft netcore app microsoft windowsdesktop app to install additional net core runtimes or sdks | 0 |
217,979 | 7,329,652,615 | IssuesEvent | 2018-03-05 06:27:47 | JianweiCxyz/UIL_webpages | https://api.github.com/repos/JianweiCxyz/UIL_webpages | closed | Add Pitt Additional Data to Map | Medium Priority | # @JianweiCxyz how should we do this? Should I use add the Pitt data to the Access DB or should I send you like an excel file with the data? Thanks | 1.0 | Add Pitt Additional Data to Map - # @JianweiCxyz how should we do this? Should I use add the Pitt data to the Access DB or should I send you like an excel file with the data? Thanks | non_defect | add pitt additional data to map jianweicxyz how should we do this should i use add the pitt data to the access db or should i send you like an excel file with the data thanks | 0 |
4,923 | 3,104,908,305 | IssuesEvent | 2015-08-31 18:16:31 | NREL/OpenStudio | https://api.github.com/repos/NREL/OpenStudio | closed | Documentation for removeSupplyBranchWithComponent is incorrect | component - Code In Progress severity - Normal Bug | This method says that it does not remove the selected component but I believe that it does, https://github.com/NREL/OpenStudio/blob/develop/openstudiocore/src/model/PlantLoop.hpp#L169
Needs some more unit testing and for documentation to match behavior | 1.0 | Documentation for removeSupplyBranchWithComponent is incorrect - This method says that it does not remove the selected component but I believe that it does, https://github.com/NREL/OpenStudio/blob/develop/openstudiocore/src/model/PlantLoop.hpp#L169
Needs some more unit testing and for documentation to match behavior | non_defect | documentation for removesupplybranchwithcomponent is incorrect this method says that it does not remove the selected component but i believe that it does needs some more unit testing and for documentation to match behavior | 0 |
312,802 | 9,553,246,265 | IssuesEvent | 2019-05-02 18:44:31 | Criptext/Criptext-Email-React-Client | https://api.github.com/repos/Criptext/Criptext-Email-React-Client | opened | Mailbox: Fix incoming email labels | bug priority | Logic:
1. Am I sender? Add Sent
1.1 Am I recipient? Add Inbox
3. Default: Add Inbox
Test Cases:
- Sent email to another recipient
- Receive email from recipient
- Sent email to myself
- Receive autoomatic forwarded email (I'm not sender nor recipient) | 1.0 | Mailbox: Fix incoming email labels - Logic:
1. Am I sender? Add Sent
1.1 Am I recipient? Add Inbox
3. Default: Add Inbox
Test Cases:
- Sent email to another recipient
- Receive email from recipient
- Sent email to myself
- Receive autoomatic forwarded email (I'm not sender nor recipient) | non_defect | mailbox fix incoming email labels logic am i sender add sent am i recipient add inbox default add inbox test cases sent email to another recipient receive email from recipient sent email to myself receive autoomatic forwarded email i m not sender nor recipient | 0 |
177,135 | 21,464,571,639 | IssuesEvent | 2022-04-26 01:23:43 | raindigi/site-landing | https://api.github.com/repos/raindigi/site-landing | closed | CVE-2020-28477 (High) detected in immer-1.10.0.tgz - autoclosed | security vulnerability | ## CVE-2020-28477 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>immer-1.10.0.tgz</b></p></summary>
<p>Create your next immutable state by mutating the current one</p>
<p>Library home page: <a href="https://registry.npmjs.org/immer/-/immer-1.10.0.tgz">https://registry.npmjs.org/immer/-/immer-1.10.0.tgz</a></p>
<p>Path to dependency file: site-landing/package.json</p>
<p>Path to vulnerable library: site-landing/node_modules/immer/package.json</p>
<p>
Dependency Hierarchy:
- gatsby-2.20.21.tgz (Root Library)
- react-refresh-webpack-plugin-0.2.0.tgz
- react-dev-utils-9.1.0.tgz
- :x: **immer-1.10.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/raindigi/site-landing/commit/28b6a6a94edc7f7f4ce50d78e71074d48062387d">28b6a6a94edc7f7f4ce50d78e71074d48062387d</a></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>
This affects all versions of package immer.
<p>Publish Date: 2021-01-19
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28477>CVE-2020-28477</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/immerjs/immer/releases/tag/v8.0.1">https://github.com/immerjs/immer/releases/tag/v8.0.1</a></p>
<p>Release Date: 2021-01-19</p>
<p>Fix Resolution: v8.0.1</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-28477 (High) detected in immer-1.10.0.tgz - autoclosed - ## CVE-2020-28477 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>immer-1.10.0.tgz</b></p></summary>
<p>Create your next immutable state by mutating the current one</p>
<p>Library home page: <a href="https://registry.npmjs.org/immer/-/immer-1.10.0.tgz">https://registry.npmjs.org/immer/-/immer-1.10.0.tgz</a></p>
<p>Path to dependency file: site-landing/package.json</p>
<p>Path to vulnerable library: site-landing/node_modules/immer/package.json</p>
<p>
Dependency Hierarchy:
- gatsby-2.20.21.tgz (Root Library)
- react-refresh-webpack-plugin-0.2.0.tgz
- react-dev-utils-9.1.0.tgz
- :x: **immer-1.10.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/raindigi/site-landing/commit/28b6a6a94edc7f7f4ce50d78e71074d48062387d">28b6a6a94edc7f7f4ce50d78e71074d48062387d</a></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>
This affects all versions of package immer.
<p>Publish Date: 2021-01-19
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28477>CVE-2020-28477</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/immerjs/immer/releases/tag/v8.0.1">https://github.com/immerjs/immer/releases/tag/v8.0.1</a></p>
<p>Release Date: 2021-01-19</p>
<p>Fix Resolution: v8.0.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_defect | cve high detected in immer tgz autoclosed cve high severity vulnerability vulnerable library immer tgz create your next immutable state by mutating the current one library home page a href path to dependency file site landing package json path to vulnerable library site landing node modules immer package json dependency hierarchy gatsby tgz root library react refresh webpack plugin tgz react dev utils tgz x immer tgz vulnerable library found in head commit a href vulnerability details this affects all versions of package immer 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 step up your open source security game with whitesource | 0 |
14,449 | 3,399,374,469 | IssuesEvent | 2015-12-02 10:34:17 | hazelcast/hazelcast | https://api.github.com/repos/hazelcast/hazelcast | opened | MapLockTest failures | Team: Core Type: Test-Failure | **com.hazelcast.map.MapLockTest.testLockEviction
com.hazelcast.map.MapLockTest.testLockOwnership
com.hazelcast.map.MapLockTest.testAbsentKeyIsLocked**
```
org.junit.runners.model.TestTimedOutException: test timed out after 20000 milliseconds
at java.lang.Thread.setPriority0(Native Method)
at java.lang.Thread.setPriority(Thread.java:1131)
at java.lang.Thread.init(Thread.java:414)
at java.lang.Thread.init(Thread.java:349)
at java.lang.Thread.<init>(Thread.java:532)
at com.hazelcast.util.executor.HazelcastManagedThread.<init>(HazelcastManagedThread.java:46)
at com.hazelcast.spi.impl.operationexecutor.classic.OperationThread.<init>(OperationThread.java:71)
at com.hazelcast.spi.impl.operationexecutor.classic.PartitionOperationThread.<init>(PartitionOperationThread.java:37)
at com.hazelcast.spi.impl.operationexecutor.classic.ClassicOperationExecutor.initPartitionThreads(ClassicOperationExecutor.java:154)
at com.hazelcast.spi.impl.operationexecutor.classic.ClassicOperationExecutor.<init>(ClassicOperationExecutor.java:100)
at com.hazelcast.spi.impl.operationservice.impl.OperationServiceImpl.<init>(OperationServiceImpl.java:167)
at com.hazelcast.spi.impl.NodeEngineImpl.<init>(NodeEngineImpl.java:102)
```
**com.hazelcast.map.MapLockTest.com.hazelcast.map.MapLockTest**]
```
ava.lang.IllegalStateException: Instances haven't been shut down: [HazelcastInstance{name='_hzInstance_4065_dev', node=Address[127.0.0.1]:9026}]
at com.hazelcast.test.AbstractHazelcastClassRunner$1.evaluate(AbstractHazelcastClassRunner.java:190)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
```
https://hazelcast-l337.ci.cloudbees.com/view/Hazelcast/job/Hazelcast-3.x-ZuluJDK7/com.hazelcast$hazelcast/38/ | 1.0 | MapLockTest failures - **com.hazelcast.map.MapLockTest.testLockEviction
com.hazelcast.map.MapLockTest.testLockOwnership
com.hazelcast.map.MapLockTest.testAbsentKeyIsLocked**
```
org.junit.runners.model.TestTimedOutException: test timed out after 20000 milliseconds
at java.lang.Thread.setPriority0(Native Method)
at java.lang.Thread.setPriority(Thread.java:1131)
at java.lang.Thread.init(Thread.java:414)
at java.lang.Thread.init(Thread.java:349)
at java.lang.Thread.<init>(Thread.java:532)
at com.hazelcast.util.executor.HazelcastManagedThread.<init>(HazelcastManagedThread.java:46)
at com.hazelcast.spi.impl.operationexecutor.classic.OperationThread.<init>(OperationThread.java:71)
at com.hazelcast.spi.impl.operationexecutor.classic.PartitionOperationThread.<init>(PartitionOperationThread.java:37)
at com.hazelcast.spi.impl.operationexecutor.classic.ClassicOperationExecutor.initPartitionThreads(ClassicOperationExecutor.java:154)
at com.hazelcast.spi.impl.operationexecutor.classic.ClassicOperationExecutor.<init>(ClassicOperationExecutor.java:100)
at com.hazelcast.spi.impl.operationservice.impl.OperationServiceImpl.<init>(OperationServiceImpl.java:167)
at com.hazelcast.spi.impl.NodeEngineImpl.<init>(NodeEngineImpl.java:102)
```
**com.hazelcast.map.MapLockTest.com.hazelcast.map.MapLockTest**]
```
ava.lang.IllegalStateException: Instances haven't been shut down: [HazelcastInstance{name='_hzInstance_4065_dev', node=Address[127.0.0.1]:9026}]
at com.hazelcast.test.AbstractHazelcastClassRunner$1.evaluate(AbstractHazelcastClassRunner.java:190)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
```
https://hazelcast-l337.ci.cloudbees.com/view/Hazelcast/job/Hazelcast-3.x-ZuluJDK7/com.hazelcast$hazelcast/38/ | non_defect | maplocktest failures com hazelcast map maplocktest testlockeviction com hazelcast map maplocktest testlockownership com hazelcast map maplocktest testabsentkeyislocked org junit runners model testtimedoutexception test timed out after milliseconds at java lang thread native method at java lang thread setpriority thread java at java lang thread init thread java at java lang thread init thread java at java lang thread thread java at com hazelcast util executor hazelcastmanagedthread hazelcastmanagedthread java at com hazelcast spi impl operationexecutor classic operationthread operationthread java at com hazelcast spi impl operationexecutor classic partitionoperationthread partitionoperationthread java at com hazelcast spi impl operationexecutor classic classicoperationexecutor initpartitionthreads classicoperationexecutor java at com hazelcast spi impl operationexecutor classic classicoperationexecutor classicoperationexecutor java at com hazelcast spi impl operationservice impl operationserviceimpl operationserviceimpl java at com hazelcast spi impl nodeengineimpl nodeengineimpl java com hazelcast map maplocktest com hazelcast map maplocktest ava lang illegalstateexception instances haven t been shut down at com hazelcast test abstracthazelcastclassrunner evaluate abstracthazelcastclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java | 0 |
151,823 | 5,828,258,405 | IssuesEvent | 2017-05-08 11:29:26 | GoogleCloudPlatform/google-cloud-eclipse | https://api.github.com/repos/GoogleCloudPlatform/google-cloud-eclipse | opened | Read facet to set Java version for local run | bug high priority | When running a local server we need to check whether the project has the Java 8 or Java 7 facet and set javaHomePath in the CloudSDK accordingly. We need to set it in LocalAppEngineServerBehavior here
```
private void initializeDevServer(MessageConsoleStream console) {
MessageConsoleWriterOutputLineListener outputListener =
new MessageConsoleWriterOutputLineListener(console);
// dev_appserver output goes to stderr
// todo here if project is Java 8 pick a correct VM
Path javaHomePath = Paths.get(System.getProperty("java.home"));
```
We'll need to get it somewhere else where we have the project and pass it along somehow to this point.
Or maybe give the devappserver the ability to change the JVM before running. Right now it's immutable after construction. | 1.0 | Read facet to set Java version for local run - When running a local server we need to check whether the project has the Java 8 or Java 7 facet and set javaHomePath in the CloudSDK accordingly. We need to set it in LocalAppEngineServerBehavior here
```
private void initializeDevServer(MessageConsoleStream console) {
MessageConsoleWriterOutputLineListener outputListener =
new MessageConsoleWriterOutputLineListener(console);
// dev_appserver output goes to stderr
// todo here if project is Java 8 pick a correct VM
Path javaHomePath = Paths.get(System.getProperty("java.home"));
```
We'll need to get it somewhere else where we have the project and pass it along somehow to this point.
Or maybe give the devappserver the ability to change the JVM before running. Right now it's immutable after construction. | non_defect | read facet to set java version for local run when running a local server we need to check whether the project has the java or java facet and set javahomepath in the cloudsdk accordingly we need to set it in localappengineserverbehavior here private void initializedevserver messageconsolestream console messageconsolewriteroutputlinelistener outputlistener new messageconsolewriteroutputlinelistener console dev appserver output goes to stderr todo here if project is java pick a correct vm path javahomepath paths get system getproperty java home we ll need to get it somewhere else where we have the project and pass it along somehow to this point or maybe give the devappserver the ability to change the jvm before running right now it s immutable after construction | 0 |
30,739 | 6,262,066,797 | IssuesEvent | 2017-07-15 06:32:40 | networkx/networkx | https://api.github.com/repos/networkx/networkx | closed | networkx/readwrite/gml.py stringize() does not implement an action to 'tuple' basic type. | Defect | stringize() function in generate_gml(), line 579, implements all actions for basic types, such as str, unicode, int, long, float, dict, and list, but not for 'tuple'.
Optional function stringizer() is not provided with the full recursion context, thus its use is limited.
It has been observed in networkx version 1.10, 1.11 and 2.0 (Python 3.4.3, Anaconda 2.3.0 (64-bit).
| 1.0 | networkx/readwrite/gml.py stringize() does not implement an action to 'tuple' basic type. - stringize() function in generate_gml(), line 579, implements all actions for basic types, such as str, unicode, int, long, float, dict, and list, but not for 'tuple'.
Optional function stringizer() is not provided with the full recursion context, thus its use is limited.
It has been observed in networkx version 1.10, 1.11 and 2.0 (Python 3.4.3, Anaconda 2.3.0 (64-bit).
| defect | networkx readwrite gml py stringize does not implement an action to tuple basic type stringize function in generate gml line implements all actions for basic types such as str unicode int long float dict and list but not for tuple optional function stringizer is not provided with the full recursion context thus its use is limited it has been observed in networkx version and python anaconda bit | 1 |
42,406 | 11,017,488,757 | IssuesEvent | 2019-12-05 08:33:47 | hazelcast/hazelcast-jet | https://api.github.com/repos/hazelcast/hazelcast-jet | opened | CP subsystem options missing in jet-cluster-admin | cli defect | Options for managing CP subsystem are missing `jet-cluster-admin` | 1.0 | CP subsystem options missing in jet-cluster-admin - Options for managing CP subsystem are missing `jet-cluster-admin` | defect | cp subsystem options missing in jet cluster admin options for managing cp subsystem are missing jet cluster admin | 1 |
100,372 | 8,737,507,305 | IssuesEvent | 2018-12-11 22:49:37 | freeCodeCamp/freeCodeCamp | https://api.github.com/repos/freeCodeCamp/freeCodeCamp | opened | Testing non-english challenges | scope: tests scope: translation status: discussing | Maybe I'm misreading the code, but it looks like we're running the curriculum tests only over the English version, as no locale is specified for travis.
https://github.com/freeCodeCamp/freeCodeCamp/blob/5aa27ee364ea9567c86476caf59b6f217be9563c/curriculum/test/test-challenges.js#L28
With #30709 in mind, the tests should do some introspection first to see which language needs testing in the first place. Unfortunately in some cases PRs fix tests in all languages, so it would ideally need to loop and test all.
| 1.0 | Testing non-english challenges - Maybe I'm misreading the code, but it looks like we're running the curriculum tests only over the English version, as no locale is specified for travis.
https://github.com/freeCodeCamp/freeCodeCamp/blob/5aa27ee364ea9567c86476caf59b6f217be9563c/curriculum/test/test-challenges.js#L28
With #30709 in mind, the tests should do some introspection first to see which language needs testing in the first place. Unfortunately in some cases PRs fix tests in all languages, so it would ideally need to loop and test all.
| non_defect | testing non english challenges maybe i m misreading the code but it looks like we re running the curriculum tests only over the english version as no locale is specified for travis with in mind the tests should do some introspection first to see which language needs testing in the first place unfortunately in some cases prs fix tests in all languages so it would ideally need to loop and test all | 0 |
363,469 | 25,452,805,405 | IssuesEvent | 2022-11-24 11:50:11 | DioxusLabs/taffy | https://api.github.com/repos/DioxusLabs/taffy | closed | Update misleading doc comment | documentation good first issue | Too late, but this is what I wanted to have changed ^
_Originally posted by @Weibye in https://github.com/DioxusLabs/taffy/pull/253#discussion_r1030885593_
| 1.0 | Update misleading doc comment - Too late, but this is what I wanted to have changed ^
_Originally posted by @Weibye in https://github.com/DioxusLabs/taffy/pull/253#discussion_r1030885593_
| non_defect | update misleading doc comment too late but this is what i wanted to have changed originally posted by weibye in | 0 |
53,095 | 13,260,885,099 | IssuesEvent | 2020-08-20 18:55:48 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | closed | I3File does not correctly follow Python iterator interface (Trac #688) | Migrated from Trac dataio defect | The Python binding for an I3File, implemented in C++ as I3SequentialFile, provides methods `next()` and `__iter__()` to implement the Python iterator interface. However, it does not support the iterator interface correctly, because an I3File is '''both''' a container and an iterator. A correct implementation would provide a separate iterator class that implemented `next()` and `__iter__()`, while I3File itself would only provide `__iter__()`.
Reference: http://docs.python.org/library/stdtypes.html#iterator-types
In rare cases, this issue can cause unexpected iterator behavior. For example:
```text
1 it = iter(i3file)
2 frame1 = it.next()
3 for frame in it:
4 # attempt to act on second and all subsequent frames...
```
On the first run through the loop, at line 4, `frame` will equal `frame1`.
I'm giving this a low priority, but figured it should be documented.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/688">https://code.icecube.wisc.edu/projects/icecube/ticket/688</a>, reported by sjacksoand owned by sjackso</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2014-03-22T04:28:38",
"_ts": "1395462518000000",
"description": "The Python binding for an I3File, implemented in C++ as I3SequentialFile, provides methods `next()` and `__iter__()` to implement the Python iterator interface. However, it does not support the iterator interface correctly, because an I3File is '''both''' a container and an iterator. A correct implementation would provide a separate iterator class that implemented `next()` and `__iter__()`, while I3File itself would only provide `__iter__()`.\n\nReference: http://docs.python.org/library/stdtypes.html#iterator-types\n\nIn rare cases, this issue can cause unexpected iterator behavior. For example:\n\n{{{\n1 it = iter(i3file)\n2 frame1 = it.next()\n3 for frame in it:\n4 # attempt to act on second and all subsequent frames...\n}}}\n\nOn the first run through the loop, at line 4, `frame` will equal `frame1`.\n\nI'm giving this a low priority, but figured it should be documented.",
"reporter": "sjackso",
"cc": "",
"resolution": "fixed",
"time": "2012-09-27T19:52:15",
"component": "dataio",
"summary": "I3File does not correctly follow Python iterator interface",
"priority": "minor",
"keywords": "I3File I3SequentialFile iterator",
"milestone": "",
"owner": "sjackso",
"type": "defect"
}
```
</p>
</details>
| 1.0 | I3File does not correctly follow Python iterator interface (Trac #688) - The Python binding for an I3File, implemented in C++ as I3SequentialFile, provides methods `next()` and `__iter__()` to implement the Python iterator interface. However, it does not support the iterator interface correctly, because an I3File is '''both''' a container and an iterator. A correct implementation would provide a separate iterator class that implemented `next()` and `__iter__()`, while I3File itself would only provide `__iter__()`.
Reference: http://docs.python.org/library/stdtypes.html#iterator-types
In rare cases, this issue can cause unexpected iterator behavior. For example:
```text
1 it = iter(i3file)
2 frame1 = it.next()
3 for frame in it:
4 # attempt to act on second and all subsequent frames...
```
On the first run through the loop, at line 4, `frame` will equal `frame1`.
I'm giving this a low priority, but figured it should be documented.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/688">https://code.icecube.wisc.edu/projects/icecube/ticket/688</a>, reported by sjacksoand owned by sjackso</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2014-03-22T04:28:38",
"_ts": "1395462518000000",
"description": "The Python binding for an I3File, implemented in C++ as I3SequentialFile, provides methods `next()` and `__iter__()` to implement the Python iterator interface. However, it does not support the iterator interface correctly, because an I3File is '''both''' a container and an iterator. A correct implementation would provide a separate iterator class that implemented `next()` and `__iter__()`, while I3File itself would only provide `__iter__()`.\n\nReference: http://docs.python.org/library/stdtypes.html#iterator-types\n\nIn rare cases, this issue can cause unexpected iterator behavior. For example:\n\n{{{\n1 it = iter(i3file)\n2 frame1 = it.next()\n3 for frame in it:\n4 # attempt to act on second and all subsequent frames...\n}}}\n\nOn the first run through the loop, at line 4, `frame` will equal `frame1`.\n\nI'm giving this a low priority, but figured it should be documented.",
"reporter": "sjackso",
"cc": "",
"resolution": "fixed",
"time": "2012-09-27T19:52:15",
"component": "dataio",
"summary": "I3File does not correctly follow Python iterator interface",
"priority": "minor",
"keywords": "I3File I3SequentialFile iterator",
"milestone": "",
"owner": "sjackso",
"type": "defect"
}
```
</p>
</details>
| defect | does not correctly follow python iterator interface trac the python binding for an implemented in c as provides methods next and iter to implement the python iterator interface however it does not support the iterator interface correctly because an is both a container and an iterator a correct implementation would provide a separate iterator class that implemented next and iter while itself would only provide iter reference in rare cases this issue can cause unexpected iterator behavior for example text it iter it next for frame in it attempt to act on second and all subsequent frames on the first run through the loop at line frame will equal i m giving this a low priority but figured it should be documented migrated from json status closed changetime ts description the python binding for an implemented in c as provides methods next and iter to implement the python iterator interface however it does not support the iterator interface correctly because an is both a container and an iterator a correct implementation would provide a separate iterator class that implemented next and iter while itself would only provide iter n nreference rare cases this issue can cause unexpected iterator behavior for example n n it iter it next for frame in it attempt to act on second and all subsequent frames n n non the first run through the loop at line frame will equal n ni m giving this a low priority but figured it should be documented reporter sjackso cc resolution fixed time component dataio summary does not correctly follow python iterator interface priority minor keywords iterator milestone owner sjackso type defect | 1 |
30,134 | 11,800,346,927 | IssuesEvent | 2020-03-18 17:23:07 | jgeraigery/kraft-heinz-merger | https://api.github.com/repos/jgeraigery/kraft-heinz-merger | opened | CVE-2018-20190 (Medium) detected in node-sass-4.13.1.tgz, node-sass-v4.13.1 | security vulnerability | ## CVE-2018-20190 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-sass-4.13.1.tgz</b></p></summary>
<p>
<details><summary><b>node-sass-4.13.1.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.13.1.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.13.1.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/kraft-heinz-merger/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/kraft-heinz-merger/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- gulp-sass-3.2.1.tgz (Root Library)
- :x: **node-sass-4.13.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/kraft-heinz-merger/commit/72632c58d3cc93458a56d547f4fc315bfa457ab5">72632c58d3cc93458a56d547f4fc315bfa457ab5</a></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 NULL Pointer Dereference in the function Sass::Eval::operator()(Sass::Supports_Operator*) in eval.cpp may cause a Denial of Service (application crash) via a crafted sass input file.
<p>Publish Date: 2018-12-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20190>CVE-2018-20190</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-2018-20190">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20190</a></p>
<p>Release Date: 2018-12-17</p>
<p>Fix Resolution: 3.6.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.13.1","isTransitiveDependency":true,"dependencyTree":"gulp-sass:3.2.1;node-sass:4.13.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.6.0"}],"vulnerabilityIdentifier":"CVE-2018-20190","vulnerabilityDetails":"In LibSass 3.5.5, a NULL Pointer Dereference in the function Sass::Eval::operator()(Sass::Supports_Operator*) in eval.cpp may cause a Denial of Service (application crash) via a crafted sass input file.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20190","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2018-20190 (Medium) detected in node-sass-4.13.1.tgz, node-sass-v4.13.1 - ## CVE-2018-20190 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-sass-4.13.1.tgz</b></p></summary>
<p>
<details><summary><b>node-sass-4.13.1.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.13.1.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.13.1.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/kraft-heinz-merger/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/kraft-heinz-merger/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- gulp-sass-3.2.1.tgz (Root Library)
- :x: **node-sass-4.13.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/kraft-heinz-merger/commit/72632c58d3cc93458a56d547f4fc315bfa457ab5">72632c58d3cc93458a56d547f4fc315bfa457ab5</a></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 NULL Pointer Dereference in the function Sass::Eval::operator()(Sass::Supports_Operator*) in eval.cpp may cause a Denial of Service (application crash) via a crafted sass input file.
<p>Publish Date: 2018-12-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20190>CVE-2018-20190</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-2018-20190">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20190</a></p>
<p>Release Date: 2018-12-17</p>
<p>Fix Resolution: 3.6.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.13.1","isTransitiveDependency":true,"dependencyTree":"gulp-sass:3.2.1;node-sass:4.13.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.6.0"}],"vulnerabilityIdentifier":"CVE-2018-20190","vulnerabilityDetails":"In LibSass 3.5.5, a NULL Pointer Dereference in the function Sass::Eval::operator()(Sass::Supports_Operator*) in eval.cpp may cause a Denial of Service (application crash) via a crafted sass input file.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20190","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_defect | cve medium detected in node sass tgz node sass cve medium severity vulnerability vulnerable libraries node sass tgz node sass tgz wrapper around libsass library home page a href path to dependency file tmp ws scm kraft heinz merger package json path to vulnerable library tmp ws scm kraft heinz merger node modules node sass package json dependency hierarchy gulp sass tgz root library x node sass tgz vulnerable library found in head commit a href vulnerability details in libsass a null pointer dereference in the function sass eval operator sass supports operator in eval cpp may cause a denial of service application crash via a crafted sass input file 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 isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails in libsass a null pointer dereference in the function sass eval operator sass supports operator in eval cpp may cause a denial of service application crash via a crafted sass input file vulnerabilityurl | 0 |
22,058 | 30,574,812,976 | IssuesEvent | 2023-07-21 03:49:07 | h4sh5/pypi-auto-scanner | https://api.github.com/repos/h4sh5/pypi-auto-scanner | opened | roblox-pyc 1.19.78 has 4 GuardDog issues | guarddog silent-process-execution | https://pypi.org/project/roblox-pyc
https://inspector.pypi.io/project/roblox-pyc
```{
"dependency": "roblox-pyc",
"version": "1.19.78",
"result": {
"issues": 4,
"errors": {},
"results": {
"silent-process-execution": [
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:123",
"code": " subprocess.call([\"npm\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
},
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:129",
"code": " subprocess.call([\"rbxtsc\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
},
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:168",
"code": " subprocess.call([\"luarocks\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
},
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:175",
"code": " subprocess.call([\"moonc\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
}
]
},
"path": "/tmp/tmph5w0c3ew/roblox-pyc"
}
}``` | 1.0 | roblox-pyc 1.19.78 has 4 GuardDog issues - https://pypi.org/project/roblox-pyc
https://inspector.pypi.io/project/roblox-pyc
```{
"dependency": "roblox-pyc",
"version": "1.19.78",
"result": {
"issues": 4,
"errors": {},
"results": {
"silent-process-execution": [
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:123",
"code": " subprocess.call([\"npm\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
},
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:129",
"code": " subprocess.call([\"rbxtsc\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
},
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:168",
"code": " subprocess.call([\"luarocks\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
},
{
"location": "roblox-pyc-1.19.78/robloxpyc/robloxpy.py:175",
"code": " subprocess.call([\"moonc\", \"--version\"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL)",
"message": "This package is silently executing an external binary, redirecting stdout, stderr and stdin to /dev/null"
}
]
},
"path": "/tmp/tmph5w0c3ew/roblox-pyc"
}
}``` | non_defect | roblox pyc has guarddog issues dependency roblox pyc version result issues errors results silent process execution location roblox pyc robloxpyc robloxpy py code subprocess call stdout subprocess devnull stderr subprocess devnull stdin subprocess devnull message this package is silently executing an external binary redirecting stdout stderr and stdin to dev null location roblox pyc robloxpyc robloxpy py code subprocess call stdout subprocess devnull stderr subprocess devnull stdin subprocess devnull message this package is silently executing an external binary redirecting stdout stderr and stdin to dev null location roblox pyc robloxpyc robloxpy py code subprocess call stdout subprocess devnull stderr subprocess devnull stdin subprocess devnull message this package is silently executing an external binary redirecting stdout stderr and stdin to dev null location roblox pyc robloxpyc robloxpy py code subprocess call stdout subprocess devnull stderr subprocess devnull stdin subprocess devnull message this package is silently executing an external binary redirecting stdout stderr and stdin to dev null path tmp roblox pyc | 0 |
51,869 | 13,211,325,116 | IssuesEvent | 2020-08-15 22:19:17 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | opened | [wavedeform] docs need updating (Trac #1193) | Incomplete Migration Migrated from Trac combo reconstruction defect | <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1193">https://code.icecube.wisc.edu/projects/icecube/ticket/1193</a>, reported by david.schultzand owned by jbraun</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:11:57",
"_ts": "1550067117911749",
"description": "I can tell the docs need updating because they mention DOMSimulator hacks, which are not in the code anymore.",
"reporter": "david.schultz",
"cc": "",
"resolution": "fixed",
"time": "2015-08-19T16:59:56",
"component": "combo reconstruction",
"summary": "[wavedeform] docs need updating",
"priority": "major",
"keywords": "",
"milestone": "",
"owner": "jbraun",
"type": "defect"
}
```
</p>
</details>
| 1.0 | [wavedeform] docs need updating (Trac #1193) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1193">https://code.icecube.wisc.edu/projects/icecube/ticket/1193</a>, reported by david.schultzand owned by jbraun</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:11:57",
"_ts": "1550067117911749",
"description": "I can tell the docs need updating because they mention DOMSimulator hacks, which are not in the code anymore.",
"reporter": "david.schultz",
"cc": "",
"resolution": "fixed",
"time": "2015-08-19T16:59:56",
"component": "combo reconstruction",
"summary": "[wavedeform] docs need updating",
"priority": "major",
"keywords": "",
"milestone": "",
"owner": "jbraun",
"type": "defect"
}
```
</p>
</details>
| defect | docs need updating trac migrated from json status closed changetime ts description i can tell the docs need updating because they mention domsimulator hacks which are not in the code anymore reporter david schultz cc resolution fixed time component combo reconstruction summary docs need updating priority major keywords milestone owner jbraun type defect | 1 |
215,559 | 7,295,262,701 | IssuesEvent | 2018-02-26 05:47:49 | kubernetes/kubernetes | https://api.github.com/repos/kubernetes/kubernetes | closed | kubectl code cleanup: overhaul the resource alias introduced #6573 | area/kubectl kind/bug lifecycle/rotten priority/backlog sig/cli | https://github.com/kubernetes/kubernetes/pull/6573 introduces the alias for resources. As our code base evolves, this code needs overhaul. I've noticed several problems:
1. `aliasToResource` is a global variable, so every `DefaultRESTMapper` has the same alias map. https://github.com/kubernetes/kubernetes/blob/master/pkg/api/meta/restmapper.go#L492
(This hasn't caused any bug yet because the problem is hidden by `SplitResourceArgument`)
2. So far the only alias we have is "all", added in https://github.com/kubernetes/kubernetes/blob/master/pkg/api/install/install.go#L119, which will be translated to `"rc", "svc", "pods", "pvc"`. I think this map needs to be updated. And I'd suggest use another alias, because kubectl also has a flag `--all`, which is confusing.
FWIW, I thought about using our ShortcutExpander to replace the alias code, but it doesn't seem to work because they are in different stages of the cmdline argument processing.
@kargakis @janetkuo
| 1.0 | kubectl code cleanup: overhaul the resource alias introduced #6573 - https://github.com/kubernetes/kubernetes/pull/6573 introduces the alias for resources. As our code base evolves, this code needs overhaul. I've noticed several problems:
1. `aliasToResource` is a global variable, so every `DefaultRESTMapper` has the same alias map. https://github.com/kubernetes/kubernetes/blob/master/pkg/api/meta/restmapper.go#L492
(This hasn't caused any bug yet because the problem is hidden by `SplitResourceArgument`)
2. So far the only alias we have is "all", added in https://github.com/kubernetes/kubernetes/blob/master/pkg/api/install/install.go#L119, which will be translated to `"rc", "svc", "pods", "pvc"`. I think this map needs to be updated. And I'd suggest use another alias, because kubectl also has a flag `--all`, which is confusing.
FWIW, I thought about using our ShortcutExpander to replace the alias code, but it doesn't seem to work because they are in different stages of the cmdline argument processing.
@kargakis @janetkuo
| non_defect | kubectl code cleanup overhaul the resource alias introduced introduces the alias for resources as our code base evolves this code needs overhaul i ve noticed several problems aliastoresource is a global variable so every defaultrestmapper has the same alias map this hasn t caused any bug yet because the problem is hidden by splitresourceargument so far the only alias we have is all added in which will be translated to rc svc pods pvc i think this map needs to be updated and i d suggest use another alias because kubectl also has a flag all which is confusing fwiw i thought about using our shortcutexpander to replace the alias code but it doesn t seem to work because they are in different stages of the cmdline argument processing kargakis janetkuo | 0 |
249,900 | 7,965,161,803 | IssuesEvent | 2018-07-14 04:01:15 | socialappslab/appcivist | https://api.github.com/repos/socialappslab/appcivist | opened | Change wording of Public Draft status change warning | Location: unifesp Priority: High enhancement | Wording of Rascunho Público change waring should read:
"Esta proposta tem o status de Rascunho Público. Toda a comunidade universitário pode ver e comentar sobre um Rascunho Público, mas só quem está compartilhado pode editar."
-- We don't use the concept of authors during Phase 1.
-- Add period to end of sentence.

| 1.0 | Change wording of Public Draft status change warning - Wording of Rascunho Público change waring should read:
"Esta proposta tem o status de Rascunho Público. Toda a comunidade universitário pode ver e comentar sobre um Rascunho Público, mas só quem está compartilhado pode editar."
-- We don't use the concept of authors during Phase 1.
-- Add period to end of sentence.

| non_defect | change wording of public draft status change warning wording of rascunho público change waring should read esta proposta tem o status de rascunho público toda a comunidade universitário pode ver e comentar sobre um rascunho público mas só quem está compartilhado pode editar we don t use the concept of authors during phase add period to end of sentence | 0 |
29,518 | 5,713,668,726 | IssuesEvent | 2017-04-19 08:25:51 | contao/core-bundle | https://api.github.com/repos/contao/core-bundle | closed | Issue “Delete single files and empty folders“ for user groups | defect | If I check “Delete single files and empty folders“ for user groups, login as a user of this group, then go to file manager, the red cross on empty folders isn't activ and I can't delete empty folders.
But if I try “Edit multiple“ I can check the folder and press button “Delete“. | 1.0 | Issue “Delete single files and empty folders“ for user groups - If I check “Delete single files and empty folders“ for user groups, login as a user of this group, then go to file manager, the red cross on empty folders isn't activ and I can't delete empty folders.
But if I try “Edit multiple“ I can check the folder and press button “Delete“. | defect | issue “delete single files and empty folders“ for user groups if i check “delete single files and empty folders“ for user groups login as a user of this group then go to file manager the red cross on empty folders isn t activ and i can t delete empty folders but if i try “edit multiple“ i can check the folder and press button “delete“ | 1 |
88,383 | 25,388,262,259 | IssuesEvent | 2022-11-22 00:28:26 | GoogleContainerTools/skaffold | https://api.github.com/repos/GoogleContainerTools/skaffold | closed | Docker images with Java 17 JDK | kind/feature-request area/build priority/p2 java area/ci-cd release/new-feature |
### Expected behavior
I would like to be able to select a Docker image of Skaffold, example: v1.35.2 with Java 17 JDK as there is a potential need to use the latest LTS version of Java for a project I'm working on
### Actual behavior
The image only works with JDK 11 currently. Would it be possibly to have images made with Java 17 JDK?
### Information
- Skaffold version: v1.35.2
- Operating system: Linux | 1.0 | Docker images with Java 17 JDK -
### Expected behavior
I would like to be able to select a Docker image of Skaffold, example: v1.35.2 with Java 17 JDK as there is a potential need to use the latest LTS version of Java for a project I'm working on
### Actual behavior
The image only works with JDK 11 currently. Would it be possibly to have images made with Java 17 JDK?
### Information
- Skaffold version: v1.35.2
- Operating system: Linux | non_defect | docker images with java jdk expected behavior i would like to be able to select a docker image of skaffold example with java jdk as there is a potential need to use the latest lts version of java for a project i m working on actual behavior the image only works with jdk currently would it be possibly to have images made with java jdk information skaffold version operating system linux | 0 |
469,324 | 13,506,090,354 | IssuesEvent | 2020-09-14 01:51:09 | cbta/cbtallc.com | https://api.github.com/repos/cbta/cbtallc.com | closed | Allow other therapists to schedule appointments | enhancement high-priority | When the make an appointment is clicked, It shows my availability, should I put my name on all those slots? Since nobody else uses the calendar how can we let people know the others may have availability
| 1.0 | Allow other therapists to schedule appointments - When the make an appointment is clicked, It shows my availability, should I put my name on all those slots? Since nobody else uses the calendar how can we let people know the others may have availability
| non_defect | allow other therapists to schedule appointments when the make an appointment is clicked it shows my availability should i put my name on all those slots since nobody else uses the calendar how can we let people know the others may have availability | 0 |
24,000 | 3,896,716,568 | IssuesEvent | 2016-04-16 00:39:41 | oshoukry/openpojo | https://api.github.com/repos/oshoukry/openpojo | closed | IncompatibleClassChangeError on Getter/SetterTester() on POJO with ZonedDateTime member | Type-Defect | I have a Pojo that contains a member variable of the Java 8 Date type "ZonedDateTime".
When running an OpenPojo test case on this class, I get an exception:
```
com.openpojo.reflection.exception.ReflectionException: Failed to create instance for class [com.openpojo.reflection.impl.PojoClassImpl [clazz=class java.time.ZonedDateTime, pojoFields=[PojoFieldImpl [field=private static final long java.time.ZonedDateTime.serialVersionUID, fieldGetter=null, fieldSetter=null], PojoFieldImpl [field=private final java.time.LocalDateTime java.time.ZonedDateTime.dateTime, fieldGetter=null, fieldSetter=null], PojoFieldImpl [field=private final java.time.ZoneOffset java.time.ZonedDateTime.offset, fieldGetter=PojoMethodImpl [method=getOffset args=[] return=class java.time.ZoneOffset], fieldSetter=null], PojoFieldImpl [field=private final java.time.ZoneId java.time.ZonedDateTime.zone, fieldGetter=PojoMethodImpl [method=getZone args=[] return=class java.time.ZoneId], fieldSetter=null]], pojoMethods=[PojoMethodImpl [constructor=java.time.ZonedDateTime args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=get args=[interface java.time.temporal.TemporalField] return=int], PojoMethodImpl [method=equals args=[class java.lang.Object] return=boolean], PojoMethodImpl [method=toString args=[] return=class java.lang.String], PojoMethodImpl [method=hashCode args=[] return=int], PojoMethodImpl [method=getLong args=[interface java.time.temporal.TemporalField] return=long], PojoMethodImpl [method=format args=[class java.time.format.DateTimeFormatter] return=class java.lang.String], PojoMethodImpl [method=readObject args=[class java.io.ObjectInputStream] return=void], PojoMethodImpl [method=create args=[long, int, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=query args=[interface java.time.temporal.TemporalQuery] return=class java.lang.Object], PojoMethodImpl [method=of args=[class java.time.LocalDate, class java.time.LocalTime, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=of args=[int, int, int, int, int, int, int, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=of args=[class java.time.LocalDateTime, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=getOffset args=[] return=class java.time.ZoneOffset], PojoMethodImpl [method=writeReplace args=[] return=class java.lang.Object], PojoMethodImpl [method=isSupported args=[interface java.time.temporal.TemporalField] return=boolean], PojoMethodImpl [method=isSupported args=[interface java.time.temporal.TemporalUnit] return=boolean], PojoMethodImpl [method=parse args=[interface java.lang.CharSequence, class java.time.format.DateTimeFormatter] return=class java.time.ZonedDateTime], PojoMethodImpl [method=parse args=[interface java.lang.CharSequence] return=class java.time.ZonedDateTime], PojoMethodImpl [method=range args=[interface java.time.temporal.TemporalField] return=class java.time.temporal.ValueRange], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalField, long] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalAdjuster] return=class java.time.ZonedDateTime], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalField, long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalAdjuster] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalAdjuster] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalField, long] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=now args=[class java.time.Clock] return=class java.time.ZonedDateTime], PojoMethodImpl [method=now args=[class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=now args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusSeconds args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=toLocalTime args=[] return=class java.time.LocalTime], PojoMethodImpl [method=ofInstant args=[class java.time.Instant, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=ofInstant args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plus args=[long, interface java.time.temporal.TemporalUnit] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plus args=[interface java.time.temporal.TemporalAmount] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=plus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=plus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=plus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=toLocalDateTime args=[] return=class java.time.LocalDateTime], PojoMethodImpl [method=toLocalDateTime args=[] return=interface java.time.chrono.ChronoLocalDateTime], PojoMethodImpl [method=getMonthValue args=[] return=int], PojoMethodImpl [method=getHour args=[] return=int], PojoMethodImpl [method=getMinute args=[] return=int], PojoMethodImpl [method=getSecond args=[] return=int], PojoMethodImpl [method=getNano args=[] return=int], PojoMethodImpl [method=from args=[interface java.time.temporal.TemporalAccessor] return=class java.time.ZonedDateTime], PojoMethodImpl [method=writeExternal args=[interface java.io.DataOutput] return=void], PojoMethodImpl [method=readExternal args=[interface java.io.ObjectInput] return=class java.time.ZonedDateTime], PojoMethodImpl [method=getYear args=[] return=int], PojoMethodImpl [method=getMonth args=[] return=class java.time.Month], PojoMethodImpl [method=getDayOfMonth args=[] return=int], PojoMethodImpl [method=getDayOfWeek args=[] return=class java.time.DayOfWeek], PojoMethodImpl [method=getZone args=[] return=class java.time.ZoneId], PojoMethodImpl [method=getDayOfYear args=[] return=int], PojoMethodImpl [method=toLocalDate args=[] return=interface java.time.chrono.ChronoLocalDate], PojoMethodImpl [method=toLocalDate args=[] return=class java.time.LocalDate], PojoMethodImpl [method=withYear args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withMonth args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withDayOfMonth args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withDayOfYear args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withHour args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withMinute args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withSecond args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withNano args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=truncatedTo args=[interface java.time.temporal.TemporalUnit] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusYears args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusMonths args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusWeeks args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusDays args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusHours args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusMinutes args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusNanos args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=minus args=[long, interface java.time.temporal.TemporalUnit] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=minus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=minus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=minus args=[interface java.time.temporal.TemporalAmount] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusYears args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusMonths args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusWeeks args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusDays args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusHours args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusMinutes args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusSeconds args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusNanos args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=until args=[interface java.time.temporal.Temporal, interface java.time.temporal.TemporalUnit] return=long], PojoMethodImpl [method=ofLocal args=[class java.time.LocalDateTime, class java.time.ZoneId, class java.time.ZoneOffset] return=class java.time.ZonedDateTime], PojoMethodImpl [method=ofStrict args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=ofLenient args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=resolveLocal args=[class java.time.LocalDateTime] return=class java.time.ZonedDateTime], PojoMethodImpl [method=resolveInstant args=[class java.time.LocalDateTime] return=class java.time.ZonedDateTime], PojoMethodImpl [method=resolveOffset args=[class java.time.ZoneOffset] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withEarlierOffsetAtOverlap args=[] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withEarlierOffsetAtOverlap args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withLaterOffsetAtOverlap args=[] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withLaterOffsetAtOverlap args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withZoneSameLocal args=[class java.time.ZoneId] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withZoneSameLocal args=[class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withZoneSameInstant args=[class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withZoneSameInstant args=[class java.time.ZoneId] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withFixedOffsetZone args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=toOffsetDateTime args=[] return=class java.time.OffsetDateTime]]]] using constructor [PojoMethodImpl [constructor=java.time.ZonedDateTime args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime]]
at com.openpojo.reflection.exception.ReflectionException.getInstance(ReflectionException.java:51)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:227)
at com.openpojo.reflection.construct.InstanceFactory.getLeastCompleteInstance(InstanceFactory.java:165)
at com.openpojo.random.impl.DefaultRandomGenerator.doGenerate(DefaultRandomGenerator.java:63)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:99)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:107)
at com.openpojo.validation.test.impl.GetterTester.run(GetterTester.java:44)
at com.openpojo.validation.utils.ValidationHelper.runValidation(ValidationHelper.java:101)
at com.openpojo.validation.impl.DefaultValidator.validate(DefaultValidator.java:46)
at com.PojoTest.validate(PojoTest.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:234)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:74)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
Caused by: com.openpojo.reflection.exception.ReflectionException: Failed to create instance for class [com.openpojo.reflection.impl.PojoClassImpl [clazz=class java.time.ZoneId, pojoFields=[PojoFieldImpl [field=public static final java.util.Map java.time.ZoneId.SHORT_IDS, fieldGetter=null, fieldSetter=null], PojoFieldImpl [field=private static final long java.time.ZoneId.serialVersionUID, fieldGetter=null, fieldSetter=null]], pojoMethods=[PojoMethodImpl [constructor=java.time.ZoneId args=[] return=class java.time.ZoneId], PojoMethodImpl [method=equals args=[class java.lang.Object] return=boolean], PojoMethodImpl [method=toString args=[] return=class java.lang.String], PojoMethodImpl [method=hashCode args=[] return=int], PojoMethodImpl [method=write args=[interface java.io.DataOutput] return=void], PojoMethodImpl [method=readObject args=[class java.io.ObjectInputStream] return=void], PojoMethodImpl [method=getId args=[] return=class java.lang.String], PojoMethodImpl [method=of args=[class java.lang.String] return=class java.time.ZoneId], PojoMethodImpl [method=of args=[class java.lang.String, interface java.util.Map] return=class java.time.ZoneId], PojoMethodImpl [method=of args=[class java.lang.String, boolean] return=class java.time.ZoneId], PojoMethodImpl [method=writeReplace args=[] return=class java.lang.Object], PojoMethodImpl [method=getDisplayName args=[class java.time.format.TextStyle, class java.util.Locale] return=class java.lang.String], PojoMethodImpl [method=normalized args=[] return=class java.time.ZoneId], PojoMethodImpl [method=systemDefault args=[] return=class java.time.ZoneId], PojoMethodImpl [method=getAvailableZoneIds args=[] return=interface java.util.Set], PojoMethodImpl [method=ofOffset args=[class java.lang.String, class java.time.ZoneOffset] return=class java.time.ZoneId], PojoMethodImpl [method=ofWithPrefix args=[class java.lang.String, int, boolean] return=class java.time.ZoneId], PojoMethodImpl [method=toTemporal args=[] return=interface java.time.temporal.TemporalAccessor], PojoMethodImpl [method=getRules args=[] return=class java.time.zone.ZoneRules], PojoMethodImpl [method=from args=[interface java.time.temporal.TemporalAccessor] return=class java.time.ZoneId]]]] using constructor [PojoMethodImpl [constructor=java.time.ZoneId args=[] return=class java.time.ZoneId]]
at com.openpojo.reflection.exception.ReflectionException.getInstance(ReflectionException.java:51)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:227)
at com.openpojo.reflection.construct.InstanceFactory.getLeastCompleteInstance(InstanceFactory.java:165)
at com.openpojo.random.impl.DefaultRandomGenerator.doGenerate(DefaultRandomGenerator.java:63)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:99)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:107)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:222)
... 35 more
Caused by: com.openpojo.reflection.exception.ReflectionException: Failed to create subclass for class: class java.time.ZoneId
at com.openpojo.reflection.exception.ReflectionException.getInstance(ReflectionException.java:51)
at com.openpojo.reflection.java.bytecode.asm.ASMService.createSubclassFor(ASMService.java:61)
at com.openpojo.reflection.java.bytecode.asm.ASMService.createSubclassFor(ASMService.java:46)
at com.openpojo.reflection.java.bytecode.ByteCodeFactory.getSubClass(ByteCodeFactory.java:54)
at com.openpojo.reflection.construct.InstanceFactory.wrapAbstractClass(InstanceFactory.java:83)
at com.openpojo.reflection.construct.InstanceFactory.getInstance(InstanceFactory.java:78)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:225)
... 40 more
Caused by: java.lang.IncompatibleClassChangeError: class com.openpojo.reflection.java.bytecode.asm.SubClassCreator has interface org.objectweb.asm.ClassVisitor as super class
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:760)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:467)
at java.net.URLClassLoader.access$100(URLClassLoader.java:73)
at java.net.URLClassLoader$1.run(URLClassLoader.java:368)
at java.net.URLClassLoader$1.run(URLClassLoader.java:362)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:361)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at com.openpojo.reflection.java.bytecode.asm.ASMService.getSubClassByteCode(ASMService.java:72)
at com.openpojo.reflection.java.bytecode.asm.ASMService.createSubclassFor(ASMService.java:57)
... 45 more
```
If I convert the type to the LocalDateTime class, the test case is green. It seems like the ZoneId object internal to the ZoneDateTime is actually the one causing the problem.
| 1.0 | IncompatibleClassChangeError on Getter/SetterTester() on POJO with ZonedDateTime member - I have a Pojo that contains a member variable of the Java 8 Date type "ZonedDateTime".
When running an OpenPojo test case on this class, I get an exception:
```
com.openpojo.reflection.exception.ReflectionException: Failed to create instance for class [com.openpojo.reflection.impl.PojoClassImpl [clazz=class java.time.ZonedDateTime, pojoFields=[PojoFieldImpl [field=private static final long java.time.ZonedDateTime.serialVersionUID, fieldGetter=null, fieldSetter=null], PojoFieldImpl [field=private final java.time.LocalDateTime java.time.ZonedDateTime.dateTime, fieldGetter=null, fieldSetter=null], PojoFieldImpl [field=private final java.time.ZoneOffset java.time.ZonedDateTime.offset, fieldGetter=PojoMethodImpl [method=getOffset args=[] return=class java.time.ZoneOffset], fieldSetter=null], PojoFieldImpl [field=private final java.time.ZoneId java.time.ZonedDateTime.zone, fieldGetter=PojoMethodImpl [method=getZone args=[] return=class java.time.ZoneId], fieldSetter=null]], pojoMethods=[PojoMethodImpl [constructor=java.time.ZonedDateTime args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=get args=[interface java.time.temporal.TemporalField] return=int], PojoMethodImpl [method=equals args=[class java.lang.Object] return=boolean], PojoMethodImpl [method=toString args=[] return=class java.lang.String], PojoMethodImpl [method=hashCode args=[] return=int], PojoMethodImpl [method=getLong args=[interface java.time.temporal.TemporalField] return=long], PojoMethodImpl [method=format args=[class java.time.format.DateTimeFormatter] return=class java.lang.String], PojoMethodImpl [method=readObject args=[class java.io.ObjectInputStream] return=void], PojoMethodImpl [method=create args=[long, int, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=query args=[interface java.time.temporal.TemporalQuery] return=class java.lang.Object], PojoMethodImpl [method=of args=[class java.time.LocalDate, class java.time.LocalTime, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=of args=[int, int, int, int, int, int, int, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=of args=[class java.time.LocalDateTime, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=getOffset args=[] return=class java.time.ZoneOffset], PojoMethodImpl [method=writeReplace args=[] return=class java.lang.Object], PojoMethodImpl [method=isSupported args=[interface java.time.temporal.TemporalField] return=boolean], PojoMethodImpl [method=isSupported args=[interface java.time.temporal.TemporalUnit] return=boolean], PojoMethodImpl [method=parse args=[interface java.lang.CharSequence, class java.time.format.DateTimeFormatter] return=class java.time.ZonedDateTime], PojoMethodImpl [method=parse args=[interface java.lang.CharSequence] return=class java.time.ZonedDateTime], PojoMethodImpl [method=range args=[interface java.time.temporal.TemporalField] return=class java.time.temporal.ValueRange], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalField, long] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalAdjuster] return=class java.time.ZonedDateTime], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalField, long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalAdjuster] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalAdjuster] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=with args=[interface java.time.temporal.TemporalField, long] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=now args=[class java.time.Clock] return=class java.time.ZonedDateTime], PojoMethodImpl [method=now args=[class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=now args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusSeconds args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=toLocalTime args=[] return=class java.time.LocalTime], PojoMethodImpl [method=ofInstant args=[class java.time.Instant, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=ofInstant args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plus args=[long, interface java.time.temporal.TemporalUnit] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plus args=[interface java.time.temporal.TemporalAmount] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=plus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=plus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=plus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=toLocalDateTime args=[] return=class java.time.LocalDateTime], PojoMethodImpl [method=toLocalDateTime args=[] return=interface java.time.chrono.ChronoLocalDateTime], PojoMethodImpl [method=getMonthValue args=[] return=int], PojoMethodImpl [method=getHour args=[] return=int], PojoMethodImpl [method=getMinute args=[] return=int], PojoMethodImpl [method=getSecond args=[] return=int], PojoMethodImpl [method=getNano args=[] return=int], PojoMethodImpl [method=from args=[interface java.time.temporal.TemporalAccessor] return=class java.time.ZonedDateTime], PojoMethodImpl [method=writeExternal args=[interface java.io.DataOutput] return=void], PojoMethodImpl [method=readExternal args=[interface java.io.ObjectInput] return=class java.time.ZonedDateTime], PojoMethodImpl [method=getYear args=[] return=int], PojoMethodImpl [method=getMonth args=[] return=class java.time.Month], PojoMethodImpl [method=getDayOfMonth args=[] return=int], PojoMethodImpl [method=getDayOfWeek args=[] return=class java.time.DayOfWeek], PojoMethodImpl [method=getZone args=[] return=class java.time.ZoneId], PojoMethodImpl [method=getDayOfYear args=[] return=int], PojoMethodImpl [method=toLocalDate args=[] return=interface java.time.chrono.ChronoLocalDate], PojoMethodImpl [method=toLocalDate args=[] return=class java.time.LocalDate], PojoMethodImpl [method=withYear args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withMonth args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withDayOfMonth args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withDayOfYear args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withHour args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withMinute args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withSecond args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withNano args=[int] return=class java.time.ZonedDateTime], PojoMethodImpl [method=truncatedTo args=[interface java.time.temporal.TemporalUnit] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusYears args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusMonths args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusWeeks args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusDays args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusHours args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusMinutes args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=plusNanos args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=minus args=[long, interface java.time.temporal.TemporalUnit] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=minus args=[long, interface java.time.temporal.TemporalUnit] return=interface java.time.temporal.Temporal], PojoMethodImpl [method=minus args=[interface java.time.temporal.TemporalAmount] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=minus args=[interface java.time.temporal.TemporalAmount] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusYears args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusMonths args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusWeeks args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusDays args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusHours args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusMinutes args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusSeconds args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=minusNanos args=[long] return=class java.time.ZonedDateTime], PojoMethodImpl [method=until args=[interface java.time.temporal.Temporal, interface java.time.temporal.TemporalUnit] return=long], PojoMethodImpl [method=ofLocal args=[class java.time.LocalDateTime, class java.time.ZoneId, class java.time.ZoneOffset] return=class java.time.ZonedDateTime], PojoMethodImpl [method=ofStrict args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=ofLenient args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=resolveLocal args=[class java.time.LocalDateTime] return=class java.time.ZonedDateTime], PojoMethodImpl [method=resolveInstant args=[class java.time.LocalDateTime] return=class java.time.ZonedDateTime], PojoMethodImpl [method=resolveOffset args=[class java.time.ZoneOffset] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withEarlierOffsetAtOverlap args=[] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withEarlierOffsetAtOverlap args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withLaterOffsetAtOverlap args=[] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withLaterOffsetAtOverlap args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withZoneSameLocal args=[class java.time.ZoneId] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withZoneSameLocal args=[class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withZoneSameInstant args=[class java.time.ZoneId] return=class java.time.ZonedDateTime], PojoMethodImpl [method=withZoneSameInstant args=[class java.time.ZoneId] return=interface java.time.chrono.ChronoZonedDateTime], PojoMethodImpl [method=withFixedOffsetZone args=[] return=class java.time.ZonedDateTime], PojoMethodImpl [method=toOffsetDateTime args=[] return=class java.time.OffsetDateTime]]]] using constructor [PojoMethodImpl [constructor=java.time.ZonedDateTime args=[class java.time.LocalDateTime, class java.time.ZoneOffset, class java.time.ZoneId] return=class java.time.ZonedDateTime]]
at com.openpojo.reflection.exception.ReflectionException.getInstance(ReflectionException.java:51)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:227)
at com.openpojo.reflection.construct.InstanceFactory.getLeastCompleteInstance(InstanceFactory.java:165)
at com.openpojo.random.impl.DefaultRandomGenerator.doGenerate(DefaultRandomGenerator.java:63)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:99)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:107)
at com.openpojo.validation.test.impl.GetterTester.run(GetterTester.java:44)
at com.openpojo.validation.utils.ValidationHelper.runValidation(ValidationHelper.java:101)
at com.openpojo.validation.impl.DefaultValidator.validate(DefaultValidator.java:46)
at com.PojoTest.validate(PojoTest.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:234)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:74)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
Caused by: com.openpojo.reflection.exception.ReflectionException: Failed to create instance for class [com.openpojo.reflection.impl.PojoClassImpl [clazz=class java.time.ZoneId, pojoFields=[PojoFieldImpl [field=public static final java.util.Map java.time.ZoneId.SHORT_IDS, fieldGetter=null, fieldSetter=null], PojoFieldImpl [field=private static final long java.time.ZoneId.serialVersionUID, fieldGetter=null, fieldSetter=null]], pojoMethods=[PojoMethodImpl [constructor=java.time.ZoneId args=[] return=class java.time.ZoneId], PojoMethodImpl [method=equals args=[class java.lang.Object] return=boolean], PojoMethodImpl [method=toString args=[] return=class java.lang.String], PojoMethodImpl [method=hashCode args=[] return=int], PojoMethodImpl [method=write args=[interface java.io.DataOutput] return=void], PojoMethodImpl [method=readObject args=[class java.io.ObjectInputStream] return=void], PojoMethodImpl [method=getId args=[] return=class java.lang.String], PojoMethodImpl [method=of args=[class java.lang.String] return=class java.time.ZoneId], PojoMethodImpl [method=of args=[class java.lang.String, interface java.util.Map] return=class java.time.ZoneId], PojoMethodImpl [method=of args=[class java.lang.String, boolean] return=class java.time.ZoneId], PojoMethodImpl [method=writeReplace args=[] return=class java.lang.Object], PojoMethodImpl [method=getDisplayName args=[class java.time.format.TextStyle, class java.util.Locale] return=class java.lang.String], PojoMethodImpl [method=normalized args=[] return=class java.time.ZoneId], PojoMethodImpl [method=systemDefault args=[] return=class java.time.ZoneId], PojoMethodImpl [method=getAvailableZoneIds args=[] return=interface java.util.Set], PojoMethodImpl [method=ofOffset args=[class java.lang.String, class java.time.ZoneOffset] return=class java.time.ZoneId], PojoMethodImpl [method=ofWithPrefix args=[class java.lang.String, int, boolean] return=class java.time.ZoneId], PojoMethodImpl [method=toTemporal args=[] return=interface java.time.temporal.TemporalAccessor], PojoMethodImpl [method=getRules args=[] return=class java.time.zone.ZoneRules], PojoMethodImpl [method=from args=[interface java.time.temporal.TemporalAccessor] return=class java.time.ZoneId]]]] using constructor [PojoMethodImpl [constructor=java.time.ZoneId args=[] return=class java.time.ZoneId]]
at com.openpojo.reflection.exception.ReflectionException.getInstance(ReflectionException.java:51)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:227)
at com.openpojo.reflection.construct.InstanceFactory.getLeastCompleteInstance(InstanceFactory.java:165)
at com.openpojo.random.impl.DefaultRandomGenerator.doGenerate(DefaultRandomGenerator.java:63)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:99)
at com.openpojo.random.RandomFactory.getRandomValue(RandomFactory.java:107)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:222)
... 35 more
Caused by: com.openpojo.reflection.exception.ReflectionException: Failed to create subclass for class: class java.time.ZoneId
at com.openpojo.reflection.exception.ReflectionException.getInstance(ReflectionException.java:51)
at com.openpojo.reflection.java.bytecode.asm.ASMService.createSubclassFor(ASMService.java:61)
at com.openpojo.reflection.java.bytecode.asm.ASMService.createSubclassFor(ASMService.java:46)
at com.openpojo.reflection.java.bytecode.ByteCodeFactory.getSubClass(ByteCodeFactory.java:54)
at com.openpojo.reflection.construct.InstanceFactory.wrapAbstractClass(InstanceFactory.java:83)
at com.openpojo.reflection.construct.InstanceFactory.getInstance(InstanceFactory.java:78)
at com.openpojo.reflection.construct.InstanceFactory.createInstance(InstanceFactory.java:225)
... 40 more
Caused by: java.lang.IncompatibleClassChangeError: class com.openpojo.reflection.java.bytecode.asm.SubClassCreator has interface org.objectweb.asm.ClassVisitor as super class
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:760)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:467)
at java.net.URLClassLoader.access$100(URLClassLoader.java:73)
at java.net.URLClassLoader$1.run(URLClassLoader.java:368)
at java.net.URLClassLoader$1.run(URLClassLoader.java:362)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:361)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at com.openpojo.reflection.java.bytecode.asm.ASMService.getSubClassByteCode(ASMService.java:72)
at com.openpojo.reflection.java.bytecode.asm.ASMService.createSubclassFor(ASMService.java:57)
... 45 more
```
If I convert the type to the LocalDateTime class, the test case is green. It seems like the ZoneId object internal to the ZoneDateTime is actually the one causing the problem.
| defect | incompatibleclasschangeerror on getter settertester on pojo with zoneddatetime member i have a pojo that contains a member variable of the java date type zoneddatetime when running an openpojo test case on this class i get an exception com openpojo reflection exception reflectionexception failed to create instance for class pojofieldimpl pojofieldimpl return class java time zoneoffset fieldsetter null pojofieldimpl return class java time zoneid fieldsetter null pojomethods return class java time zoneddatetime pojomethodimpl return int pojomethodimpl return boolean pojomethodimpl return class java lang string pojomethodimpl return int pojomethodimpl return long pojomethodimpl return class java lang string pojomethodimpl return void pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java lang object pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneoffset pojomethodimpl return class java lang object pojomethodimpl return boolean pojomethodimpl return boolean pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time temporal valuerange pojomethodimpl return interface java time temporal temporal pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return interface java time temporal temporal pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time localtime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return interface java time temporal temporal pojomethodimpl return interface java time temporal temporal pojomethodimpl return class java time localdatetime pojomethodimpl return interface java time chrono chronolocaldatetime pojomethodimpl return int pojomethodimpl return int pojomethodimpl return int pojomethodimpl return int pojomethodimpl return int pojomethodimpl return class java time zoneddatetime pojomethodimpl return void pojomethodimpl return class java time zoneddatetime pojomethodimpl return int pojomethodimpl return class java time month pojomethodimpl return int pojomethodimpl return class java time dayofweek pojomethodimpl return class java time zoneid pojomethodimpl return int pojomethodimpl return interface java time chrono chronolocaldate pojomethodimpl return class java time localdate pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time temporal temporal pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return interface java time temporal temporal pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return long pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return interface java time chrono chronozoneddatetime pojomethodimpl return class java time zoneddatetime pojomethodimpl return class java time offsetdatetime using constructor return class java time zoneddatetime at com openpojo reflection exception reflectionexception getinstance reflectionexception java at com openpojo reflection construct instancefactory createinstance instancefactory java at com openpojo reflection construct instancefactory getleastcompleteinstance instancefactory java at com openpojo random impl defaultrandomgenerator dogenerate defaultrandomgenerator java at com openpojo random randomfactory getrandomvalue randomfactory java at com openpojo random randomfactory getrandomvalue randomfactory java at com openpojo validation test impl gettertester run gettertester java at com openpojo validation utils validationhelper runvalidation validationhelper java at com openpojo validation impl defaultvalidator validate defaultvalidator java at com pojotest validate pojotest java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at 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 org junit internal runners statements runbefores evaluate runbefores java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at org junit runners runchild java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runner junitcore run junitcore java at com intellij startrunnerwithargs java at com intellij rt execution junit junitstarter preparestreamsandstart junitstarter java at com intellij rt execution junit junitstarter main junitstarter java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at com intellij rt execution application appmain main appmain java caused by com openpojo reflection exception reflectionexception failed to create instance for class pojofieldimpl pojomethods return class java time zoneid pojomethodimpl return boolean pojomethodimpl return class java lang string pojomethodimpl return int pojomethodimpl return void pojomethodimpl return void pojomethodimpl return class java lang string pojomethodimpl return class java time zoneid pojomethodimpl return class java time zoneid pojomethodimpl return class java time zoneid pojomethodimpl return class java lang object pojomethodimpl return class java lang string pojomethodimpl return class java time zoneid pojomethodimpl return class java time zoneid pojomethodimpl return interface java util set pojomethodimpl return class java time zoneid pojomethodimpl return class java time zoneid pojomethodimpl return interface java time temporal temporalaccessor pojomethodimpl return class java time zone zonerules pojomethodimpl return class java time zoneid using constructor return class java time zoneid at com openpojo reflection exception reflectionexception getinstance reflectionexception java at com openpojo reflection construct instancefactory createinstance instancefactory java at com openpojo reflection construct instancefactory getleastcompleteinstance instancefactory java at com openpojo random impl defaultrandomgenerator dogenerate defaultrandomgenerator java at com openpojo random randomfactory getrandomvalue randomfactory java at com openpojo random randomfactory getrandomvalue randomfactory java at com openpojo reflection construct instancefactory createinstance instancefactory java more caused by com openpojo reflection exception reflectionexception failed to create subclass for class class java time zoneid at com openpojo reflection exception reflectionexception getinstance reflectionexception java at com openpojo reflection java bytecode asm asmservice createsubclassfor asmservice java at com openpojo reflection java bytecode asm asmservice createsubclassfor asmservice java at com openpojo reflection java bytecode bytecodefactory getsubclass bytecodefactory java at com openpojo reflection construct instancefactory wrapabstractclass instancefactory java at com openpojo reflection construct instancefactory getinstance instancefactory java at com openpojo reflection construct instancefactory createinstance instancefactory java more caused by java lang incompatibleclasschangeerror class com openpojo reflection java bytecode asm subclasscreator has interface org objectweb asm classvisitor as super class at java lang classloader native method at java lang classloader defineclass classloader java at java security secureclassloader defineclass secureclassloader java at java net urlclassloader defineclass urlclassloader java at java net urlclassloader access urlclassloader java at java net urlclassloader run urlclassloader java at java net urlclassloader run urlclassloader java at java security accesscontroller doprivileged native method at java net urlclassloader findclass urlclassloader java at java lang classloader loadclass classloader java at sun misc launcher appclassloader loadclass launcher java at java lang classloader loadclass classloader java at com openpojo reflection java bytecode asm asmservice getsubclassbytecode asmservice java at com openpojo reflection java bytecode asm asmservice createsubclassfor asmservice java more if i convert the type to the localdatetime class the test case is green it seems like the zoneid object internal to the zonedatetime is actually the one causing the problem | 1 |
166,229 | 14,045,140,682 | IssuesEvent | 2020-11-02 00:22:40 | java-arpana/adya | https://api.github.com/repos/java-arpana/adya | closed | Update README.md with the latest list of supported docker images. | documentation | The current README.md is outdated. Update it to reflect all supported docker images. | 1.0 | Update README.md with the latest list of supported docker images. - The current README.md is outdated. Update it to reflect all supported docker images. | non_defect | update readme md with the latest list of supported docker images the current readme md is outdated update it to reflect all supported docker images | 0 |
32,104 | 6,715,476,975 | IssuesEvent | 2017-10-13 21:20:32 | ironjan/metal-only | https://api.github.com/repos/ironjan/metal-only | closed | Plan json exception introduced in v0.6.16 | defect | 
---
Metal Only
Version: 0.6.16
Android: 7.0
Model: HTC 10
| 1.0 | Plan json exception introduced in v0.6.16 - 
---
Metal Only
Version: 0.6.16
Android: 7.0
Model: HTC 10
| defect | plan json exception introduced in metal only version android model htc | 1 |
201,028 | 15,801,880,255 | IssuesEvent | 2021-04-03 06:59:27 | nhzaci/ped | https://api.github.com/repos/nhzaci/ped | opened | Case Sensitive command parameters not mentioned | severity.Medium type.DocumentationBug | No mention inside UG of command parameters being case sensitive.

<!--session: 1617429433868-1a7e532b-59bd-416f-87bd-791f3969a436--> | 1.0 | Case Sensitive command parameters not mentioned - No mention inside UG of command parameters being case sensitive.

<!--session: 1617429433868-1a7e532b-59bd-416f-87bd-791f3969a436--> | non_defect | case sensitive command parameters not mentioned no mention inside ug of command parameters being case sensitive | 0 |
23,309 | 3,788,694,258 | IssuesEvent | 2016-03-21 15:31:50 | arskom/spyne | https://api.github.com/repos/arskom/spyne | closed | Converting DateTime objects to String if year is below 1900 | Defect | Hi @plq
I've encountered an issue in some older version of your library while converting dates to string with year below 1900.
I'm not sure if the issue occurs in the newest version of spyne but I can see that it's still using strftime method (which is causing the issue) in a few places.
You can check how I've fixed it here:
https://github.com/konradqburst/spyne/commit/7bc8434bd33f8567ae8143f053f139b71dc9afcd
More info on this http://stackoverflow.com/a/32206673 or http://code.activestate.com/recipes/306860-proleptic-gregorian-dates-and-strftime-before-1900/
I don't have spare time to check if the issue occurs in the latest spyne version so I'm sorry if the bug does no longer occur and then you are free to delete this report. | 1.0 | Converting DateTime objects to String if year is below 1900 - Hi @plq
I've encountered an issue in some older version of your library while converting dates to string with year below 1900.
I'm not sure if the issue occurs in the newest version of spyne but I can see that it's still using strftime method (which is causing the issue) in a few places.
You can check how I've fixed it here:
https://github.com/konradqburst/spyne/commit/7bc8434bd33f8567ae8143f053f139b71dc9afcd
More info on this http://stackoverflow.com/a/32206673 or http://code.activestate.com/recipes/306860-proleptic-gregorian-dates-and-strftime-before-1900/
I don't have spare time to check if the issue occurs in the latest spyne version so I'm sorry if the bug does no longer occur and then you are free to delete this report. | defect | converting datetime objects to string if year is below hi plq i ve encountered an issue in some older version of your library while converting dates to string with year below i m not sure if the issue occurs in the newest version of spyne but i can see that it s still using strftime method which is causing the issue in a few places you can check how i ve fixed it here more info on this or i don t have spare time to check if the issue occurs in the latest spyne version so i m sorry if the bug does no longer occur and then you are free to delete this report | 1 |
69,099 | 22,155,367,234 | IssuesEvent | 2022-06-03 21:53:30 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | opened | /goto permalink of threaded message just switched to the room and did not scroll anywhere or open the thread panel | T-Defect S-Minor A-Timeline O-Uncommon A-Threads | ### Steps to reproduce
1. Visit a permalink to a threaded message `/goto matrix.to`.
- The message in this case was a bit old and probably not cached locally.
3. Notice the room switches correctly
4. Notice how it doesn't scroll anywhere or open the thread panel
### Outcome
#### What did you expect?
The permalink opens to the message in the thread.
#### What happened instead?
It only switched to the correct room. And just sat at the latest messages.
Logs: https://github.com/matrix-org/element-web-rageshakes/issues/13395
### Operating system
Windows 10
### Browser information
Chrome Version 102.0.5005.63
### URL for webapp
https://develop.element.io/
### Application version
Element version: 76c95352559d-react-54239464fa20-js-871149912102 Olm version: 3.2.8
### Homeserver
matrix.org
### Will you send logs?
Yes | 1.0 | /goto permalink of threaded message just switched to the room and did not scroll anywhere or open the thread panel - ### Steps to reproduce
1. Visit a permalink to a threaded message `/goto matrix.to`.
- The message in this case was a bit old and probably not cached locally.
3. Notice the room switches correctly
4. Notice how it doesn't scroll anywhere or open the thread panel
### Outcome
#### What did you expect?
The permalink opens to the message in the thread.
#### What happened instead?
It only switched to the correct room. And just sat at the latest messages.
Logs: https://github.com/matrix-org/element-web-rageshakes/issues/13395
### Operating system
Windows 10
### Browser information
Chrome Version 102.0.5005.63
### URL for webapp
https://develop.element.io/
### Application version
Element version: 76c95352559d-react-54239464fa20-js-871149912102 Olm version: 3.2.8
### Homeserver
matrix.org
### Will you send logs?
Yes | defect | goto permalink of threaded message just switched to the room and did not scroll anywhere or open the thread panel steps to reproduce visit a permalink to a threaded message goto matrix to the message in this case was a bit old and probably not cached locally notice the room switches correctly notice how it doesn t scroll anywhere or open the thread panel outcome what did you expect the permalink opens to the message in the thread what happened instead it only switched to the correct room and just sat at the latest messages logs operating system windows browser information chrome version url for webapp application version element version react js olm version homeserver matrix org will you send logs yes | 1 |
303,426 | 26,206,114,607 | IssuesEvent | 2023-01-03 22:52:18 | PIFSCstockassessments/ss3diags | https://api.github.com/repos/PIFSCstockassessments/ss3diags | closed | r-setup action (push) needs v2 update | bug topic: test workflow | Getting errors from "setup-r" github actions script
Failed to get R 4.2.2: Failed to get R 4.2.2: Failed to install R: Error: The process '/usr/bin/sudo' failed with exit code 100
log hints to update the script:
```
2023-01-03T20:46:57.4632590Z GITHUB_PAT: ***
2023-01-03T20:46:57.4632815Z ##[endgroup]
2023-01-03T20:46:57.5427942Z ##[warning]r-lib/actions/setup-r@v1 is deprecated. Please update your workflow to use the 'v2' version. Also look at the examples at https://github.com/r-lib/actions/tree/v2/examples because '@v2' workflows are much simpler than 'v1' workflows.
2023-01-03T20:46:59.0638546Z [command]/usr/bin/sudo DEBIAN_FRONTEND=noninteractive add-apt-repository -y ppa:cran/travis
2023-01-03T20:47:03.7363526Z Hit:1 http://azure.archive.ubuntu.com/ubuntu jammy InRelease
2023-01-03T20:47:03.7364436Z Get:2 http://azure.archive.ubuntu.com/ubuntu jammy-updates InRelease [114 kB]
2023-01-03T20:47:03.7393884Z Get:3 http://azure.archive.ubuntu.com/ubuntu jammy-backports InRelease [99.8 kB]
2023-01-03T20:47:03.7394750Z Get:4 http://azure.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
2023-01-03T20:47:03.7395571Z Get:5 https://packages.microsoft.com/ubuntu/22.04/prod jammy InRelease [10.5 kB]
2023-01-03T20:47:04.0647294Z Get:6 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [769 kB]
2023-01-03T20:47:04.0817459Z Get:7 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [172 kB]
2023-01-03T20:47:04.0833026Z Get:8 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [11.5 kB]
2023-01-03T20:47:04.0852013Z Get:9 http://azure.archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [498 kB]
2023-01-03T20:47:04.0914495Z Get:10 http://azure.archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [76.3 kB]
2023-01-03T20:47:04.0957640Z Get:11 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [767 kB]
2023-01-03T20:47:04.1055813Z Get:12 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [130 kB]
2023-01-03T20:47:04.1073279Z Get:13 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [14.2 kB]
2023-01-03T20:47:04.1870290Z Get:14 http://azure.archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [6752 B]
2023-01-03T20:47:04.1891268Z Get:15 http://azure.archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [348 B]
2023-01-03T20:47:04.3452707Z Get:16 http://azure.archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [532 kB]
2023-01-03T20:47:04.3504413Z Get:17 http://azure.archive.ubuntu.com/ubuntu jammy-security/main Translation-en [114 kB]
2023-01-03T20:47:04.3531175Z Get:18 http://azure.archive.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [7388 B]
2023-01-03T20:47:04.3549339Z Get:19 http://azure.archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [460 kB]
2023-01-03T20:47:04.3608538Z Get:20 http://azure.archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [70.5 kB]
2023-01-03T20:47:04.3625593Z Get:21 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [622 kB]
2023-01-03T20:47:04.3730223Z Get:22 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe Translation-en [82.9 kB]
2023-01-03T20:47:04.3754208Z Get:23 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [11.0 kB]
2023-01-03T20:47:04.4203058Z Get:24 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main amd64 Packages [66.0 kB]
2023-01-03T20:47:04.4230895Z Get:25 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main armhf Packages [11.1 kB]
2023-01-03T20:47:04.4265998Z Get:26 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main arm64 Packages [17.3 kB]
2023-01-03T20:47:04.4494579Z Ign:27 https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy InRelease
2023-01-03T20:47:05.0227572Z Hit:28 https://ppa.launchpadcontent.net/ubuntu-toolchain-r/test/ubuntu jammy InRelease
2023-01-03T20:47:05.5982045Z Err:29 https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy Release
2023-01-03T20:47:05.5982577Z 404 Not Found [IP: **REMOVED** ]
2023-01-03T20:47:11.9413105Z Reading package lists...
2023-01-03T20:47:11.9560021Z E: The repository 'https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy Release' does not have a Release file.
2023-01-03T20:47:11.9564623Z Repository: 'deb https://ppa.launchpadcontent.net/cran/travis/ubuntu/ jammy main'
2023-01-03T20:47:11.9565386Z Description:
2023-01-03T20:47:11.9566681Z Backports of important libraries used by R packages on Travis
2023-01-03T20:47:11.9567267Z More info: https://launchpad.net/~cran/+archive/ubuntu/travis
2023-01-03T20:47:11.9567727Z Adding repository.
2023-01-03T20:47:11.9618805Z Adding deb entry to /etc/apt/sources.list.d/cran-ubuntu-travis-jammy.list
2023-01-03T20:47:11.9619371Z Adding disabled deb-src entry to /etc/apt/sources.list.d/cran-ubuntu-travis-jammy.list
2023-01-03T20:47:11.9620023Z Adding key to /etc/apt/trusted.gpg.d/cran-ubuntu-travis.gpg with fingerprint 4A0C193118803EB4A561E569B3CF35C315B55A9F
2023-01-03T20:47:12.0398502Z [command]/usr/bin/sudo DEBIAN_FRONTEND=noninteractive apt-get update -y -qq
2023-01-03T20:47:14.9129104Z E: The repository 'https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy Release' does not have a Release file.
2023-01-03T20:47:14.9164884Z ##[error]Failed to get R 4.2.2: Failed to get R 4.2.2: Failed to install R: Error: The process '/usr/bin/sudo' failed with exit code 100
```
| 1.0 | r-setup action (push) needs v2 update - Getting errors from "setup-r" github actions script
Failed to get R 4.2.2: Failed to get R 4.2.2: Failed to install R: Error: The process '/usr/bin/sudo' failed with exit code 100
log hints to update the script:
```
2023-01-03T20:46:57.4632590Z GITHUB_PAT: ***
2023-01-03T20:46:57.4632815Z ##[endgroup]
2023-01-03T20:46:57.5427942Z ##[warning]r-lib/actions/setup-r@v1 is deprecated. Please update your workflow to use the 'v2' version. Also look at the examples at https://github.com/r-lib/actions/tree/v2/examples because '@v2' workflows are much simpler than 'v1' workflows.
2023-01-03T20:46:59.0638546Z [command]/usr/bin/sudo DEBIAN_FRONTEND=noninteractive add-apt-repository -y ppa:cran/travis
2023-01-03T20:47:03.7363526Z Hit:1 http://azure.archive.ubuntu.com/ubuntu jammy InRelease
2023-01-03T20:47:03.7364436Z Get:2 http://azure.archive.ubuntu.com/ubuntu jammy-updates InRelease [114 kB]
2023-01-03T20:47:03.7393884Z Get:3 http://azure.archive.ubuntu.com/ubuntu jammy-backports InRelease [99.8 kB]
2023-01-03T20:47:03.7394750Z Get:4 http://azure.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
2023-01-03T20:47:03.7395571Z Get:5 https://packages.microsoft.com/ubuntu/22.04/prod jammy InRelease [10.5 kB]
2023-01-03T20:47:04.0647294Z Get:6 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [769 kB]
2023-01-03T20:47:04.0817459Z Get:7 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [172 kB]
2023-01-03T20:47:04.0833026Z Get:8 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [11.5 kB]
2023-01-03T20:47:04.0852013Z Get:9 http://azure.archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [498 kB]
2023-01-03T20:47:04.0914495Z Get:10 http://azure.archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [76.3 kB]
2023-01-03T20:47:04.0957640Z Get:11 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [767 kB]
2023-01-03T20:47:04.1055813Z Get:12 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [130 kB]
2023-01-03T20:47:04.1073279Z Get:13 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [14.2 kB]
2023-01-03T20:47:04.1870290Z Get:14 http://azure.archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [6752 B]
2023-01-03T20:47:04.1891268Z Get:15 http://azure.archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [348 B]
2023-01-03T20:47:04.3452707Z Get:16 http://azure.archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [532 kB]
2023-01-03T20:47:04.3504413Z Get:17 http://azure.archive.ubuntu.com/ubuntu jammy-security/main Translation-en [114 kB]
2023-01-03T20:47:04.3531175Z Get:18 http://azure.archive.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [7388 B]
2023-01-03T20:47:04.3549339Z Get:19 http://azure.archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [460 kB]
2023-01-03T20:47:04.3608538Z Get:20 http://azure.archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [70.5 kB]
2023-01-03T20:47:04.3625593Z Get:21 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [622 kB]
2023-01-03T20:47:04.3730223Z Get:22 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe Translation-en [82.9 kB]
2023-01-03T20:47:04.3754208Z Get:23 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [11.0 kB]
2023-01-03T20:47:04.4203058Z Get:24 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main amd64 Packages [66.0 kB]
2023-01-03T20:47:04.4230895Z Get:25 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main armhf Packages [11.1 kB]
2023-01-03T20:47:04.4265998Z Get:26 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main arm64 Packages [17.3 kB]
2023-01-03T20:47:04.4494579Z Ign:27 https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy InRelease
2023-01-03T20:47:05.0227572Z Hit:28 https://ppa.launchpadcontent.net/ubuntu-toolchain-r/test/ubuntu jammy InRelease
2023-01-03T20:47:05.5982045Z Err:29 https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy Release
2023-01-03T20:47:05.5982577Z 404 Not Found [IP: **REMOVED** ]
2023-01-03T20:47:11.9413105Z Reading package lists...
2023-01-03T20:47:11.9560021Z E: The repository 'https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy Release' does not have a Release file.
2023-01-03T20:47:11.9564623Z Repository: 'deb https://ppa.launchpadcontent.net/cran/travis/ubuntu/ jammy main'
2023-01-03T20:47:11.9565386Z Description:
2023-01-03T20:47:11.9566681Z Backports of important libraries used by R packages on Travis
2023-01-03T20:47:11.9567267Z More info: https://launchpad.net/~cran/+archive/ubuntu/travis
2023-01-03T20:47:11.9567727Z Adding repository.
2023-01-03T20:47:11.9618805Z Adding deb entry to /etc/apt/sources.list.d/cran-ubuntu-travis-jammy.list
2023-01-03T20:47:11.9619371Z Adding disabled deb-src entry to /etc/apt/sources.list.d/cran-ubuntu-travis-jammy.list
2023-01-03T20:47:11.9620023Z Adding key to /etc/apt/trusted.gpg.d/cran-ubuntu-travis.gpg with fingerprint 4A0C193118803EB4A561E569B3CF35C315B55A9F
2023-01-03T20:47:12.0398502Z [command]/usr/bin/sudo DEBIAN_FRONTEND=noninteractive apt-get update -y -qq
2023-01-03T20:47:14.9129104Z E: The repository 'https://ppa.launchpadcontent.net/cran/travis/ubuntu jammy Release' does not have a Release file.
2023-01-03T20:47:14.9164884Z ##[error]Failed to get R 4.2.2: Failed to get R 4.2.2: Failed to install R: Error: The process '/usr/bin/sudo' failed with exit code 100
```
| non_defect | r setup action push needs update getting errors from setup r github actions script failed to get r failed to get r failed to install r error the process usr bin sudo failed with exit code log hints to update the script github pat r lib actions setup r is deprecated please update your workflow to use the version also look at the examples at because workflows are much simpler than workflows usr bin sudo debian frontend noninteractive add apt repository y ppa cran travis hit jammy inrelease get jammy updates inrelease get jammy backports inrelease get jammy security inrelease get jammy inrelease get jammy updates main packages get jammy updates main translation en get jammy updates main c n f metadata get jammy updates restricted packages get jammy updates restricted translation en get jammy updates universe packages get jammy updates universe translation en get jammy updates universe c n f metadata get jammy backports universe packages get jammy backports universe c n f metadata get jammy security main packages get jammy security main translation en get jammy security main c n f metadata get jammy security restricted packages get jammy security restricted translation en get jammy security universe packages get jammy security universe translation en get jammy security universe c n f metadata get jammy main packages get jammy main armhf packages get jammy main packages ign jammy inrelease hit jammy inrelease err jammy release not found reading package lists e the repository jammy release does not have a release file repository deb jammy main description backports of important libraries used by r packages on travis more info adding repository adding deb entry to etc apt sources list d cran ubuntu travis jammy list adding disabled deb src entry to etc apt sources list d cran ubuntu travis jammy list adding key to etc apt trusted gpg d cran ubuntu travis gpg with fingerprint usr bin sudo debian frontend noninteractive apt get update y qq e the repository jammy release does not have a release file failed to get r failed to get r failed to install r error the process usr bin sudo failed with exit code | 0 |
70,607 | 23,262,692,464 | IssuesEvent | 2022-08-04 14:41:53 | vector-im/element-ios | https://api.github.com/repos/vector-im/element-ios | closed | Unable to tap room links for rooms that have not yet been joined | T-Defect A-Navigation S-Major O-Occasional | ### Steps to reproduce
1. Have a message with a public room address that you have not yet joined (`#someroom:example.com`)
2. Tap the room
### Outcome
#### What did you expect?
I should be able to join the room
#### What happened instead?
Nothing
### Your phone model
_No response_
### Operating system version
_No response_
### Application version
v1.8.22
### Homeserver
_No response_
### Will you send logs?
No | 1.0 | Unable to tap room links for rooms that have not yet been joined - ### Steps to reproduce
1. Have a message with a public room address that you have not yet joined (`#someroom:example.com`)
2. Tap the room
### Outcome
#### What did you expect?
I should be able to join the room
#### What happened instead?
Nothing
### Your phone model
_No response_
### Operating system version
_No response_
### Application version
v1.8.22
### Homeserver
_No response_
### Will you send logs?
No | defect | unable to tap room links for rooms that have not yet been joined steps to reproduce have a message with a public room address that you have not yet joined someroom example com tap the room outcome what did you expect i should be able to join the room what happened instead nothing your phone model no response operating system version no response application version homeserver no response will you send logs no | 1 |
37,564 | 6,621,326,845 | IssuesEvent | 2017-09-21 18:44:24 | F5Networks/f5-openstack-heat-plugins | https://api.github.com/repos/F5Networks/f5-openstack-heat-plugins | closed | Add `sudo` to installation instructions | bug documentation P3 S3 | I need to add `sudo` to the installation instructions. Unless the user is logged in as root, they will get permission denied errors when running most or all of these commands.
```
Install the F5® Heat plugins.
$ pip install f5-openstack-heat-plugins
Make the Heat plugins directory (NOTE: this may already exist).
$ mkdir -p /usr/lib/heat
Create a link to the F5® plugins in the Heat plugins directory.
$ ln -s /usr/lib/python2.7/site-packages/f5_heat /usr/lib/heat/f5_heat
Restart the Heat engine service.
$ systemctl restart openstack-heat-engine.service
```
| 1.0 | Add `sudo` to installation instructions - I need to add `sudo` to the installation instructions. Unless the user is logged in as root, they will get permission denied errors when running most or all of these commands.
```
Install the F5® Heat plugins.
$ pip install f5-openstack-heat-plugins
Make the Heat plugins directory (NOTE: this may already exist).
$ mkdir -p /usr/lib/heat
Create a link to the F5® plugins in the Heat plugins directory.
$ ln -s /usr/lib/python2.7/site-packages/f5_heat /usr/lib/heat/f5_heat
Restart the Heat engine service.
$ systemctl restart openstack-heat-engine.service
```
| non_defect | add sudo to installation instructions i need to add sudo to the installation instructions unless the user is logged in as root they will get permission denied errors when running most or all of these commands install the ® heat plugins pip install openstack heat plugins make the heat plugins directory note this may already exist mkdir p usr lib heat create a link to the ® plugins in the heat plugins directory ln s usr lib site packages heat usr lib heat heat restart the heat engine service systemctl restart openstack heat engine service | 0 |
53,803 | 13,262,339,245 | IssuesEvent | 2020-08-20 21:34:54 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | closed | [tpx] does not check for icetop tanks (Trac #2117) | Migrated from Trac combo reconstruction defect | TPX failed with a lexical_cast because the scintillators data was included in with the icetop data but scintillators do not have an impedance in their calibration (see slack discussion : https://icecube-spno.slack.com/archives/C02KQL9KN/p1510687520000565)
Chris Weaver provided a fix: r159503/IceCube but both Timo and Javier (see #2107) were unhappy with this.
I suggested that tpx only attempt do do anything to known icetop doms with a check of the nature `I3OMGeo::OMType==IceTop`. What ever happens the lexical_cast has to stay gone
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/2117">https://code.icecube.wisc.edu/projects/icecube/ticket/2117</a>, reported by kjmeagherand owned by karg</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:14:55",
"_ts": "1550067295757382",
"description": "TPX failed with a lexical_cast because the scintillators data was included in with the icetop data but scintillators do not have an impedance in their calibration (see slack discussion : https://icecube-spno.slack.com/archives/C02KQL9KN/p1510687520000565)\n\nChris Weaver provided a fix: r159503/IceCube but both Timo and Javier (see #2115) were unhappy with this.\nI suggested that tpx only attempt do do anything to known icetop doms with a check of the nature `I3OMGeo::OMType==IceTop`. What ever happens the lexical_cast has to stay gone",
"reporter": "kjmeagher",
"cc": "jgonzalez, kjmeagher, cweaver",
"resolution": "fixed",
"time": "2017-11-29T11:30:51",
"component": "combo reconstruction",
"summary": "[tpx] does not check for icetop tanks",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "karg",
"type": "defect"
}
```
</p>
</details>
| 1.0 | [tpx] does not check for icetop tanks (Trac #2117) - TPX failed with a lexical_cast because the scintillators data was included in with the icetop data but scintillators do not have an impedance in their calibration (see slack discussion : https://icecube-spno.slack.com/archives/C02KQL9KN/p1510687520000565)
Chris Weaver provided a fix: r159503/IceCube but both Timo and Javier (see #2107) were unhappy with this.
I suggested that tpx only attempt do do anything to known icetop doms with a check of the nature `I3OMGeo::OMType==IceTop`. What ever happens the lexical_cast has to stay gone
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/2117">https://code.icecube.wisc.edu/projects/icecube/ticket/2117</a>, reported by kjmeagherand owned by karg</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:14:55",
"_ts": "1550067295757382",
"description": "TPX failed with a lexical_cast because the scintillators data was included in with the icetop data but scintillators do not have an impedance in their calibration (see slack discussion : https://icecube-spno.slack.com/archives/C02KQL9KN/p1510687520000565)\n\nChris Weaver provided a fix: r159503/IceCube but both Timo and Javier (see #2115) were unhappy with this.\nI suggested that tpx only attempt do do anything to known icetop doms with a check of the nature `I3OMGeo::OMType==IceTop`. What ever happens the lexical_cast has to stay gone",
"reporter": "kjmeagher",
"cc": "jgonzalez, kjmeagher, cweaver",
"resolution": "fixed",
"time": "2017-11-29T11:30:51",
"component": "combo reconstruction",
"summary": "[tpx] does not check for icetop tanks",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "karg",
"type": "defect"
}
```
</p>
</details>
| defect | does not check for icetop tanks trac tpx failed with a lexical cast because the scintillators data was included in with the icetop data but scintillators do not have an impedance in their calibration see slack discussion chris weaver provided a fix icecube but both timo and javier see were unhappy with this i suggested that tpx only attempt do do anything to known icetop doms with a check of the nature omtype icetop what ever happens the lexical cast has to stay gone migrated from json status closed changetime ts description tpx failed with a lexical cast because the scintillators data was included in with the icetop data but scintillators do not have an impedance in their calibration see slack discussion weaver provided a fix icecube but both timo and javier see were unhappy with this ni suggested that tpx only attempt do do anything to known icetop doms with a check of the nature omtype icetop what ever happens the lexical cast has to stay gone reporter kjmeagher cc jgonzalez kjmeagher cweaver resolution fixed time component combo reconstruction summary does not check for icetop tanks priority normal keywords milestone owner karg type defect | 1 |
23,872 | 3,863,516,886 | IssuesEvent | 2016-04-08 09:45:42 | iamxavier/elmah | https://api.github.com/repos/iamxavier/elmah | closed | Logging out of sequence when using XmlFileErrorLog | auto-migrated Component-Persistence Priority-Medium Type-Defect | ```
What steps will reproduce the problem?
1. Log a set of messages in step by step process. Make sure the messages are
able to show the order in which they were logged
2. View the xml log file (elmah.axd)
What is the expected output? What do you see instead?
messages were logged out of sequence
What version of the product are you using? On what operating system?
1.2.13605
Please provide any additional information below.
relevant post in SO:
http://stackoverflow.com/questions/7789501/out-of-sequence-logging-by-elmah
```
Original issue reported on code.google.com by `andrew.a...@gmail.com` on 20 Oct 2011 at 5:41 | 1.0 | Logging out of sequence when using XmlFileErrorLog - ```
What steps will reproduce the problem?
1. Log a set of messages in step by step process. Make sure the messages are
able to show the order in which they were logged
2. View the xml log file (elmah.axd)
What is the expected output? What do you see instead?
messages were logged out of sequence
What version of the product are you using? On what operating system?
1.2.13605
Please provide any additional information below.
relevant post in SO:
http://stackoverflow.com/questions/7789501/out-of-sequence-logging-by-elmah
```
Original issue reported on code.google.com by `andrew.a...@gmail.com` on 20 Oct 2011 at 5:41 | defect | logging out of sequence when using xmlfileerrorlog what steps will reproduce the problem log a set of messages in step by step process make sure the messages are able to show the order in which they were logged view the xml log file elmah axd what is the expected output what do you see instead messages were logged out of sequence what version of the product are you using on what operating system please provide any additional information below relevant post in so original issue reported on code google com by andrew a gmail com on oct at | 1 |
11,195 | 3,475,608,546 | IssuesEvent | 2015-12-25 21:28:45 | asciidoctor/asciidoctor-epub3 | https://api.github.com/repos/asciidoctor/asciidoctor-epub3 | closed | Document how to install gem (prerelease) | documentation | Document how to install Asciidoctor EPUB3 from a prerelease gem in the README. | 1.0 | Document how to install gem (prerelease) - Document how to install Asciidoctor EPUB3 from a prerelease gem in the README. | non_defect | document how to install gem prerelease document how to install asciidoctor from a prerelease gem in the readme | 0 |
46,914 | 10,001,079,832 | IssuesEvent | 2019-07-12 14:49:35 | sourcegraph/sourcegraph | https://api.github.com/repos/sourcegraph/sourcegraph | closed | Code modification 3.6 Tracking Issue | code-mod roadmap | **Goals**
- MVP search-and-replace functionality (backend and client PR integration)
**Work items**
- [x] Add backend Replacer service (analog to Searcher) #3580
- [x] Stream back results (diff content) for change previews #3580
- [x] Add diff generation support for external replacer tool(s)
- [x] A Sourcegraph CodeMod extension
- Issue PRs: https://github.com/sourcegraph/pull-request-extension-exp/pull/1
- Run a CodeMod Query and patch on PR: https://github.com/sourcegraph/pull-request-extension-exp/pull/4
- PR window to fill out commits and PR metadata. https://github.com/sourcegraph/pull-request-extension-exp/pull/4
- [x] Frontend previews w/ `replace:` qualifier (GQL) #4464
Proposal Document: https://docs.google.com/document/d/14A0bfQ9Nef2JBmovlCrIRalTEc_U14K2roQjHKnOvzo
[**Figma mocks**](https://www.figma.com/file/hAZG4YTH7OmJKob8cxoOcNlh/Large-scale-code-modification?node-id=0%3A1) | 1.0 | Code modification 3.6 Tracking Issue - **Goals**
- MVP search-and-replace functionality (backend and client PR integration)
**Work items**
- [x] Add backend Replacer service (analog to Searcher) #3580
- [x] Stream back results (diff content) for change previews #3580
- [x] Add diff generation support for external replacer tool(s)
- [x] A Sourcegraph CodeMod extension
- Issue PRs: https://github.com/sourcegraph/pull-request-extension-exp/pull/1
- Run a CodeMod Query and patch on PR: https://github.com/sourcegraph/pull-request-extension-exp/pull/4
- PR window to fill out commits and PR metadata. https://github.com/sourcegraph/pull-request-extension-exp/pull/4
- [x] Frontend previews w/ `replace:` qualifier (GQL) #4464
Proposal Document: https://docs.google.com/document/d/14A0bfQ9Nef2JBmovlCrIRalTEc_U14K2roQjHKnOvzo
[**Figma mocks**](https://www.figma.com/file/hAZG4YTH7OmJKob8cxoOcNlh/Large-scale-code-modification?node-id=0%3A1) | non_defect | code modification tracking issue goals mvp search and replace functionality backend and client pr integration work items add backend replacer service analog to searcher stream back results diff content for change previews add diff generation support for external replacer tool s a sourcegraph codemod extension issue prs run a codemod query and patch on pr pr window to fill out commits and pr metadata frontend previews w replace qualifier gql proposal document | 0 |
1,989 | 2,869,084,920 | IssuesEvent | 2015-06-05 23:12:41 | dart-lang/sdk | https://api.github.com/repos/dart-lang/sdk | closed | be more robust when resolution is not complete | Area-Pkg Pkg-PolymerBuild PolymerMilestone-Next Priority-High Triaged Type-Defect | For example, if people have broken code that doesn't resolve, smoke/recorder.dart might not be able to copy correctly the annotation. Right now this gives a terrible error message. | 1.0 | be more robust when resolution is not complete - For example, if people have broken code that doesn't resolve, smoke/recorder.dart might not be able to copy correctly the annotation. Right now this gives a terrible error message. | non_defect | be more robust when resolution is not complete for example if people have broken code that doesn t resolve smoke recorder dart might not be able to copy correctly the annotation right now this gives a terrible error message | 0 |
34,199 | 7,395,661,710 | IssuesEvent | 2018-03-18 01:05:15 | pyscripter/MustangpeakCommonLib | https://api.github.com/repos/pyscripter/MustangpeakCommonLib | closed | Delphi XE 8 | Priority-Medium Type-Defect auto-migrated | ```
What steps will reproduce the problem?
1.
2.
3.
Are there any Plans for a Port to Delphi XE8 ?
```
Original issue reported on code.google.com by `chris.tr...@gmail.com` on 7 Jun 2015 at 6:16
| 1.0 | Delphi XE 8 - ```
What steps will reproduce the problem?
1.
2.
3.
Are there any Plans for a Port to Delphi XE8 ?
```
Original issue reported on code.google.com by `chris.tr...@gmail.com` on 7 Jun 2015 at 6:16
| defect | delphi xe what steps will reproduce the problem are there any plans for a port to delphi original issue reported on code google com by chris tr gmail com on jun at | 1 |
57,651 | 15,894,066,370 | IssuesEvent | 2021-04-11 08:50:00 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | ordering of my favs is now out of sync between ios and web | T-Defect X-Cannot-Reproduce X-Needs-Info | top item on web is now bottom item on ios | 1.0 | ordering of my favs is now out of sync between ios and web - top item on web is now bottom item on ios | defect | ordering of my favs is now out of sync between ios and web top item on web is now bottom item on ios | 1 |
4,233 | 6,476,964,152 | IssuesEvent | 2017-08-18 01:01:07 | JasperFx/jasper | https://api.github.com/repos/JasperFx/jasper | closed | Consul Backed "Service Mesh" | invalid service bus | Way more detail necessary, but the general idea is to have different service broadcast via Consul:
1. What messages they publish
1. What messages they want to subscribe to
1. What query endpoints they supply for request/reply messaging
In all cases, the capabilities and subscriptions would include the content type's supported or accepted for each message type (de facto API versioning). The general idea is to completely decouple the services from one another and discover all connectivity through the shared Consul data. I'd also hope that we could use the Consul registry to help understand how information flows through the ecosystem and spot service requirements that are incompatible, either at runtime or at deployment time. | 1.0 | Consul Backed "Service Mesh" - Way more detail necessary, but the general idea is to have different service broadcast via Consul:
1. What messages they publish
1. What messages they want to subscribe to
1. What query endpoints they supply for request/reply messaging
In all cases, the capabilities and subscriptions would include the content type's supported or accepted for each message type (de facto API versioning). The general idea is to completely decouple the services from one another and discover all connectivity through the shared Consul data. I'd also hope that we could use the Consul registry to help understand how information flows through the ecosystem and spot service requirements that are incompatible, either at runtime or at deployment time. | non_defect | consul backed service mesh way more detail necessary but the general idea is to have different service broadcast via consul what messages they publish what messages they want to subscribe to what query endpoints they supply for request reply messaging in all cases the capabilities and subscriptions would include the content type s supported or accepted for each message type de facto api versioning the general idea is to completely decouple the services from one another and discover all connectivity through the shared consul data i d also hope that we could use the consul registry to help understand how information flows through the ecosystem and spot service requirements that are incompatible either at runtime or at deployment time | 0 |
49,047 | 13,185,206,060 | IssuesEvent | 2020-08-12 20:56:09 | icecube-trac/tix3 | https://api.github.com/repos/icecube-trac/tix3 | opened | Reported that "make tarball" is broken (Trac #649) | Incomplete Migration Migrated from Trac cmake defect | <details>
<summary><em>Migrated from https://code.icecube.wisc.edu/ticket/649
, reported by blaufuss and owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2011-08-26T19:02:41",
"description": "Henrike reports that items are missing from tarball. Check.\n\n",
"reporter": "blaufuss",
"cc": "",
"resolution": "duplicate",
"_ts": "1314385361000000",
"component": "cmake",
"summary": "Reported that \"make tarball\" is broken",
"priority": "normal",
"keywords": "",
"time": "2011-08-26T18:55:29",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| 1.0 | Reported that "make tarball" is broken (Trac #649) - <details>
<summary><em>Migrated from https://code.icecube.wisc.edu/ticket/649
, reported by blaufuss and owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2011-08-26T19:02:41",
"description": "Henrike reports that items are missing from tarball. Check.\n\n",
"reporter": "blaufuss",
"cc": "",
"resolution": "duplicate",
"_ts": "1314385361000000",
"component": "cmake",
"summary": "Reported that \"make tarball\" is broken",
"priority": "normal",
"keywords": "",
"time": "2011-08-26T18:55:29",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| defect | reported that make tarball is broken trac migrated from reported by blaufuss and owned by nega json status closed changetime description henrike reports that items are missing from tarball check n n reporter blaufuss cc resolution duplicate ts component cmake summary reported that make tarball is broken priority normal keywords time milestone owner nega type defect | 1 |
574,724 | 17,023,864,492 | IssuesEvent | 2021-07-03 04:15:08 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | Add "markerlink" to main map view | Component: website Priority: minor Resolution: fixed Type: enhancement | **[Submitted to the original trac issue database at 12.05pm, Monday, 3rd June 2013]**
Following a short discussion on the OSM-talk list (topic: Permalink with marker), which had generally positive responses, I am proposing an enhancement to the OSM main map.
On the main map at osm.org there is a 'permalink' hyperlink, which generates a URL encoding the current view of the map. I think it would be very useful to have another similar link called 'markerlink' which builds a marker link in the same way as 'permalink', but changes "lat" and "lon" to "mlat" and "mlon". Users can then quickly make a URL that can be pasted into email or chat sessions to indicate a point on the map.
Thank you. | 1.0 | Add "markerlink" to main map view - **[Submitted to the original trac issue database at 12.05pm, Monday, 3rd June 2013]**
Following a short discussion on the OSM-talk list (topic: Permalink with marker), which had generally positive responses, I am proposing an enhancement to the OSM main map.
On the main map at osm.org there is a 'permalink' hyperlink, which generates a URL encoding the current view of the map. I think it would be very useful to have another similar link called 'markerlink' which builds a marker link in the same way as 'permalink', but changes "lat" and "lon" to "mlat" and "mlon". Users can then quickly make a URL that can be pasted into email or chat sessions to indicate a point on the map.
Thank you. | non_defect | add markerlink to main map view following a short discussion on the osm talk list topic permalink with marker which had generally positive responses i am proposing an enhancement to the osm main map on the main map at osm org there is a permalink hyperlink which generates a url encoding the current view of the map i think it would be very useful to have another similar link called markerlink which builds a marker link in the same way as permalink but changes lat and lon to mlat and mlon users can then quickly make a url that can be pasted into email or chat sessions to indicate a point on the map thank you | 0 |
80,547 | 30,335,446,389 | IssuesEvent | 2023-07-11 09:16:42 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | opened | Timeline flickers | T-Defect | ### Steps to reproduce
1. Jump a few 100 messages back in the timeline
2. Scroll down
3. Stop scrolling
### Outcome
#### What did you expect?
Can read messages
#### What happened instead?
Timeline flickers, keeps going blank, shows different messages every time it loads. If I wait long enough (10-15 seconds), it stops flickering
### Operating system
_No response_
### Browser information
Version 114.0.5735.198 (Official Build) Arch Linux
### URL for webapp
develop.element.io
### Application version
Element version: 311c5fec664d-react-186497a67d09-js-e68a1471c12c Olm version: 3.2.14
### Homeserver
matrix.org
### Will you send logs?
Yes | 1.0 | Timeline flickers - ### Steps to reproduce
1. Jump a few 100 messages back in the timeline
2. Scroll down
3. Stop scrolling
### Outcome
#### What did you expect?
Can read messages
#### What happened instead?
Timeline flickers, keeps going blank, shows different messages every time it loads. If I wait long enough (10-15 seconds), it stops flickering
### Operating system
_No response_
### Browser information
Version 114.0.5735.198 (Official Build) Arch Linux
### URL for webapp
develop.element.io
### Application version
Element version: 311c5fec664d-react-186497a67d09-js-e68a1471c12c Olm version: 3.2.14
### Homeserver
matrix.org
### Will you send logs?
Yes | defect | timeline flickers steps to reproduce jump a few messages back in the timeline scroll down stop scrolling outcome what did you expect can read messages what happened instead timeline flickers keeps going blank shows different messages every time it loads if i wait long enough seconds it stops flickering operating system no response browser information version official build arch linux url for webapp develop element io application version element version react js olm version homeserver matrix org will you send logs yes | 1 |
47,481 | 13,237,571,356 | IssuesEvent | 2020-08-18 21:58:43 | benchabot/NSwag | https://api.github.com/repos/benchabot/NSwag | opened | CVE-2020-8203 (High) detected in lodash-4.17.4.tgz, lodash-3.10.1.tgz | security vulnerability | ## CVE-2020-8203 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>lodash-4.17.4.tgz</b>, <b>lodash-3.10.1.tgz</b></p></summary>
<p>
<details><summary><b>lodash-4.17.4.tgz</b></p></summary>
<p>Lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAngular/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/lodash/package.json,/tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- awesome-typescript-loader-3.1.3.tgz (Root Library)
- :x: **lodash-4.17.4.tgz** (Vulnerable Library)
</details>
<details><summary><b>lodash-3.10.1.tgz</b></p></summary>
<p>The modern build of lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz">https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAngular/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/upath/node_modules/lodash/package.json,/tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/upath/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- karma-1.7.0.tgz (Root Library)
- :x: **lodash-3.10.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/benchabot/NSwag/commit/8db6af2594d3efef9fa2f40f467925d2039d81ee">8db6af2594d3efef9fa2f40f467925d2039d81ee</a></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>
Prototype pollution attack when using _.zipObjectDeep in lodash <= 4.17.15.
<p>Publish Date: 2020-07-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8203>CVE-2020-8203</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.4</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: None
- 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://www.npmjs.com/advisories/1523">https://www.npmjs.com/advisories/1523</a></p>
<p>Release Date: 2020-07-23</p>
<p>Fix Resolution: lodash - 4.17.19</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-8203 (High) detected in lodash-4.17.4.tgz, lodash-3.10.1.tgz - ## CVE-2020-8203 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>lodash-4.17.4.tgz</b>, <b>lodash-3.10.1.tgz</b></p></summary>
<p>
<details><summary><b>lodash-4.17.4.tgz</b></p></summary>
<p>Lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAngular/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/lodash/package.json,/tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- awesome-typescript-loader-3.1.3.tgz (Root Library)
- :x: **lodash-4.17.4.tgz** (Vulnerable Library)
</details>
<details><summary><b>lodash-3.10.1.tgz</b></p></summary>
<p>The modern build of lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz">https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAngular/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/upath/node_modules/lodash/package.json,/tmp/ws-scm/NSwag/src/NSwag.Sample.NetCoreAurelia/node_modules/upath/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- karma-1.7.0.tgz (Root Library)
- :x: **lodash-3.10.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/benchabot/NSwag/commit/8db6af2594d3efef9fa2f40f467925d2039d81ee">8db6af2594d3efef9fa2f40f467925d2039d81ee</a></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>
Prototype pollution attack when using _.zipObjectDeep in lodash <= 4.17.15.
<p>Publish Date: 2020-07-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8203>CVE-2020-8203</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.4</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: None
- 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://www.npmjs.com/advisories/1523">https://www.npmjs.com/advisories/1523</a></p>
<p>Release Date: 2020-07-23</p>
<p>Fix Resolution: lodash - 4.17.19</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_defect | cve high detected in lodash tgz lodash tgz cve high severity vulnerability vulnerable libraries lodash tgz lodash tgz lodash tgz lodash modular utilities library home page a href path to dependency file tmp ws scm nswag src nswag sample netcoreangular package json path to vulnerable library tmp ws scm nswag src nswag sample netcoreaurelia node modules lodash package json tmp ws scm nswag src nswag sample netcoreaurelia node modules lodash package json dependency hierarchy awesome typescript loader tgz root library x lodash tgz vulnerable library lodash tgz the modern build of lodash modular utilities library home page a href path to dependency file tmp ws scm nswag src nswag sample netcoreangular package json path to vulnerable library tmp ws scm nswag src nswag sample netcoreaurelia node modules upath node modules lodash package json tmp ws scm nswag src nswag sample netcoreaurelia node modules upath node modules lodash package json dependency hierarchy karma tgz root library x lodash tgz vulnerable library found in head commit a href vulnerability details prototype pollution attack when using zipobjectdeep in lodash 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 none 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 lodash step up your open source security game with whitesource | 0 |
15,142 | 2,850,239,203 | IssuesEvent | 2015-05-31 11:55:46 | damonkohler/sl4a | https://api.github.com/repos/damonkohler/sl4a | opened | broken link on android-scripting/wiki/SharingScripts | auto-migrated Priority-Medium Type-Defect | _From @GoogleCodeExporter on May 31, 2015 11:31_
```
Link on
https://code.google.com/p/android-scripting/wiki/SharingScripts#Scripts_as_APKs
to
"template project archive."
[http://android-scripting.googlecode.com/hg/android/script_for_android_template.
zip]
is 404.
```
Original issue reported on code.google.com by `xlr888...@gmail.com` on 20 May 2015 at 11:38
_Copied from original issue: damonkohler/android-scripting#715_ | 1.0 | broken link on android-scripting/wiki/SharingScripts - _From @GoogleCodeExporter on May 31, 2015 11:31_
```
Link on
https://code.google.com/p/android-scripting/wiki/SharingScripts#Scripts_as_APKs
to
"template project archive."
[http://android-scripting.googlecode.com/hg/android/script_for_android_template.
zip]
is 404.
```
Original issue reported on code.google.com by `xlr888...@gmail.com` on 20 May 2015 at 11:38
_Copied from original issue: damonkohler/android-scripting#715_ | defect | broken link on android scripting wiki sharingscripts from googlecodeexporter on may link on to template project archive zip is original issue reported on code google com by gmail com on may at copied from original issue damonkohler android scripting | 1 |
170,257 | 20,842,086,827 | IssuesEvent | 2022-03-21 02:14:45 | Thezone1975/send | https://api.github.com/repos/Thezone1975/send | opened | CVE-2022-24771 (High) detected in node-forge-0.8.4.tgz, node-forge-0.7.5.tgz | security vulnerability | ## CVE-2022-24771 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-forge-0.8.4.tgz</b>, <b>node-forge-0.7.5.tgz</b></p></summary>
<p>
<details><summary><b>node-forge-0.8.4.tgz</b></p></summary>
<p>JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.8.4.tgz">https://registry.npmjs.org/node-forge/-/node-forge-0.8.4.tgz</a></p>
<p>Path to dependency file: /send/package.json</p>
<p>Path to vulnerable library: /node_modules/node-forge/package.json</p>
<p>
Dependency Hierarchy:
- storage-3.0.1.tgz (Root Library)
- common-2.0.1.tgz
- google-auth-library-4.2.1.tgz
- gtoken-3.0.1.tgz
- google-p12-pem-2.0.0.tgz
- :x: **node-forge-0.8.4.tgz** (Vulnerable Library)
</details>
<details><summary><b>node-forge-0.7.5.tgz</b></p></summary>
<p>JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz">https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz</a></p>
<p>Path to dependency file: /send/package.json</p>
<p>Path to vulnerable library: /node_modules/selfsigned/node_modules/node-forge/package.json</p>
<p>
Dependency Hierarchy:
- webpack-dev-server-3.7.1.tgz (Root Library)
- selfsigned-1.10.4.tgz
- :x: **node-forge-0.7.5.tgz** (Vulnerable Library)
</details>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.3.0, RSA PKCS#1 v1.5 signature verification code is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used. The issue has been addressed in `node-forge` version 1.3.0. There are currently no known workarounds.
<p>Publish Date: 2022-03-18
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-24771>CVE-2022-24771</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: High
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771</a></p>
<p>Release Date: 2022-03-18</p>
<p>Fix Resolution: node-forge - 1.3.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-2022-24771 (High) detected in node-forge-0.8.4.tgz, node-forge-0.7.5.tgz - ## CVE-2022-24771 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-forge-0.8.4.tgz</b>, <b>node-forge-0.7.5.tgz</b></p></summary>
<p>
<details><summary><b>node-forge-0.8.4.tgz</b></p></summary>
<p>JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.8.4.tgz">https://registry.npmjs.org/node-forge/-/node-forge-0.8.4.tgz</a></p>
<p>Path to dependency file: /send/package.json</p>
<p>Path to vulnerable library: /node_modules/node-forge/package.json</p>
<p>
Dependency Hierarchy:
- storage-3.0.1.tgz (Root Library)
- common-2.0.1.tgz
- google-auth-library-4.2.1.tgz
- gtoken-3.0.1.tgz
- google-p12-pem-2.0.0.tgz
- :x: **node-forge-0.8.4.tgz** (Vulnerable Library)
</details>
<details><summary><b>node-forge-0.7.5.tgz</b></p></summary>
<p>JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz">https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz</a></p>
<p>Path to dependency file: /send/package.json</p>
<p>Path to vulnerable library: /node_modules/selfsigned/node_modules/node-forge/package.json</p>
<p>
Dependency Hierarchy:
- webpack-dev-server-3.7.1.tgz (Root Library)
- selfsigned-1.10.4.tgz
- :x: **node-forge-0.7.5.tgz** (Vulnerable Library)
</details>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.3.0, RSA PKCS#1 v1.5 signature verification code is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used. The issue has been addressed in `node-forge` version 1.3.0. There are currently no known workarounds.
<p>Publish Date: 2022-03-18
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-24771>CVE-2022-24771</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: High
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771</a></p>
<p>Release Date: 2022-03-18</p>
<p>Fix Resolution: node-forge - 1.3.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_defect | cve high detected in node forge tgz node forge tgz cve high severity vulnerability vulnerable libraries node forge tgz node forge tgz node forge tgz javascript implementations of network transports cryptography ciphers pki message digests and various utilities library home page a href path to dependency file send package json path to vulnerable library node modules node forge package json dependency hierarchy storage tgz root library common tgz google auth library tgz gtoken tgz google pem tgz x node forge tgz vulnerable library node forge tgz javascript implementations of network transports cryptography ciphers pki message digests and various utilities library home page a href path to dependency file send package json path to vulnerable library node modules selfsigned node modules node forge package json dependency hierarchy webpack dev server tgz root library selfsigned tgz x node forge tgz vulnerable library vulnerability details forge also called node forge is a native implementation of transport layer security in javascript prior to version rsa pkcs signature verification code is lenient in checking the digest algorithm structure this can allow a crafted structure that steals padding bytes and uses unchecked portion of the pkcs encoded message to forge a signature when a low public exponent is being used the issue has been addressed in node forge version there are currently no known workarounds 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 high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution node forge step up your open source security game with whitesource | 0 |
24,547 | 11,046,988,641 | IssuesEvent | 2019-12-09 17:59:22 | LevyForchh/webdataconnector | https://api.github.com/repos/LevyForchh/webdataconnector | opened | CVE-2017-18214 (High) detected in multiple libraries | security vulnerability | ## CVE-2017-18214 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>moment-with-locales-2.8.1.min.js</b>, <b>moment-2.11.2.tgz</b>, <b>moment-with-locales-2.18.1.min.js</b>, <b>moment-2.8.4.min.js</b>, <b>moment-2.10.6.min.js</b>, <b>moment-2.10.6.tgz</b></p></summary>
<p>
<details><summary><b>moment-with-locales-2.8.1.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment-with-locales.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment-with-locales.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/vis/examples/graph2d/13_localization.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/vis/examples/graph2d/13_localization.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-with-locales-2.8.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.11.2.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.11.2.tgz">https://registry.npmjs.org/moment/-/moment-2.11.2.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/webdataconnector/node_modules/good-console/node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- corsproxy-1.5.0.tgz (Root Library)
- good-console-5.3.2.tgz
- :x: **moment-2.11.2.tgz** (Vulnerable Library)
</details>
<details><summary><b>moment-with-locales-2.18.1.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/vis/examples/timeline/styling/weekStyling.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/vis/examples/timeline/styling/weekStyling.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-with-locales-2.18.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.8.4.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/vis/examples/timeline/other/stressPerformance.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/vis/examples/timeline/other/stressPerformance.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-2.8.4.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.10.6.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/validate.js/index.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/validate.js/index.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-2.10.6.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.10.6.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.10.6.tgz">https://registry.npmjs.org/moment/-/moment-2.10.6.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/webdataconnector/node_modules/hapi/node_modules/joi/node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- corsproxy-1.5.0.tgz (Root Library)
- hapi-9.5.1.tgz
- joi-6.8.1.tgz
- :x: **moment-2.10.6.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/LevyForchh/webdataconnector/commit/5e5d2c912c2a10aa798a92712142633ee3a0580f">5e5d2c912c2a10aa798a92712142633ee3a0580f</a></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>
The moment module before 2.19.3 for Node.js is prone to a regular expression denial of service via a crafted date string, a different vulnerability than CVE-2016-4055.
<p>Publish Date: 2018-03-04
<p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18214>CVE-2017-18214</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18214">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18214</a></p>
<p>Release Date: 2018-03-04</p>
<p>Fix Resolution: 2.19.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.8.1","isTransitiveDependency":false,"dependencyTree":"moment.js:2.8.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"javascript/Node.js","packageName":"moment","packageVersion":"2.11.2","isTransitiveDependency":true,"dependencyTree":"corsproxy:1.5.0;good-console:5.3.2;moment:2.11.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.18.1","isTransitiveDependency":false,"dependencyTree":"moment.js:2.18.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.8.4","isTransitiveDependency":false,"dependencyTree":"moment.js:2.8.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.10.6","isTransitiveDependency":false,"dependencyTree":"moment.js:2.10.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"javascript/Node.js","packageName":"moment","packageVersion":"2.10.6","isTransitiveDependency":true,"dependencyTree":"corsproxy:1.5.0;hapi:9.5.1;joi:6.8.1;moment:2.10.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"}],"vulnerabilityIdentifier":"CVE-2017-18214","vulnerabilityDetails":"The moment module before 2.19.3 for Node.js is prone to a regular expression denial of service via a crafted date string, a different vulnerability than CVE-2016-4055.","vulnerabilityUrl":"https://cve.mitre.org/cgi-bin/cvename.cgi?name\u003dCVE-2017-18214","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2017-18214 (High) detected in multiple libraries - ## CVE-2017-18214 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>moment-with-locales-2.8.1.min.js</b>, <b>moment-2.11.2.tgz</b>, <b>moment-with-locales-2.18.1.min.js</b>, <b>moment-2.8.4.min.js</b>, <b>moment-2.10.6.min.js</b>, <b>moment-2.10.6.tgz</b></p></summary>
<p>
<details><summary><b>moment-with-locales-2.8.1.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment-with-locales.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment-with-locales.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/vis/examples/graph2d/13_localization.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/vis/examples/graph2d/13_localization.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-with-locales-2.8.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.11.2.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.11.2.tgz">https://registry.npmjs.org/moment/-/moment-2.11.2.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/webdataconnector/node_modules/good-console/node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- corsproxy-1.5.0.tgz (Root Library)
- good-console-5.3.2.tgz
- :x: **moment-2.11.2.tgz** (Vulnerable Library)
</details>
<details><summary><b>moment-with-locales-2.18.1.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/vis/examples/timeline/styling/weekStyling.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/vis/examples/timeline/styling/weekStyling.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-with-locales-2.18.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.8.4.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/vis/examples/timeline/other/stressPerformance.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/vis/examples/timeline/other/stressPerformance.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-2.8.4.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.10.6.min.js</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js">https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/node_modules/validate.js/index.html</p>
<p>Path to vulnerable library: /webdataconnector/node_modules/validate.js/index.html</p>
<p>
Dependency Hierarchy:
- :x: **moment-2.10.6.min.js** (Vulnerable Library)
</details>
<details><summary><b>moment-2.10.6.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.10.6.tgz">https://registry.npmjs.org/moment/-/moment-2.10.6.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/webdataconnector/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/webdataconnector/node_modules/hapi/node_modules/joi/node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- corsproxy-1.5.0.tgz (Root Library)
- hapi-9.5.1.tgz
- joi-6.8.1.tgz
- :x: **moment-2.10.6.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/LevyForchh/webdataconnector/commit/5e5d2c912c2a10aa798a92712142633ee3a0580f">5e5d2c912c2a10aa798a92712142633ee3a0580f</a></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>
The moment module before 2.19.3 for Node.js is prone to a regular expression denial of service via a crafted date string, a different vulnerability than CVE-2016-4055.
<p>Publish Date: 2018-03-04
<p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18214>CVE-2017-18214</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18214">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18214</a></p>
<p>Release Date: 2018-03-04</p>
<p>Fix Resolution: 2.19.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.8.1","isTransitiveDependency":false,"dependencyTree":"moment.js:2.8.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"javascript/Node.js","packageName":"moment","packageVersion":"2.11.2","isTransitiveDependency":true,"dependencyTree":"corsproxy:1.5.0;good-console:5.3.2;moment:2.11.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.18.1","isTransitiveDependency":false,"dependencyTree":"moment.js:2.18.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.8.4","isTransitiveDependency":false,"dependencyTree":"moment.js:2.8.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"JavaScript","packageName":"moment.js","packageVersion":"2.10.6","isTransitiveDependency":false,"dependencyTree":"moment.js:2.10.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"},{"packageType":"javascript/Node.js","packageName":"moment","packageVersion":"2.10.6","isTransitiveDependency":true,"dependencyTree":"corsproxy:1.5.0;hapi:9.5.1;joi:6.8.1;moment:2.10.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.19.3"}],"vulnerabilityIdentifier":"CVE-2017-18214","vulnerabilityDetails":"The moment module before 2.19.3 for Node.js is prone to a regular expression denial of service via a crafted date string, a different vulnerability than CVE-2016-4055.","vulnerabilityUrl":"https://cve.mitre.org/cgi-bin/cvename.cgi?name\u003dCVE-2017-18214","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_defect | cve high detected in multiple libraries cve high severity vulnerability vulnerable libraries moment with locales min js moment tgz moment with locales min js moment min js moment min js moment tgz moment with locales min js parse validate manipulate and display dates library home page a href path to dependency file tmp ws scm webdataconnector node modules vis examples localization html path to vulnerable library webdataconnector node modules vis examples localization html dependency hierarchy x moment with locales min js vulnerable library moment tgz parse validate manipulate and display dates library home page a href path to dependency file tmp ws scm webdataconnector package json path to vulnerable library tmp ws scm webdataconnector node modules good console node modules moment package json dependency hierarchy corsproxy tgz root library good console tgz x moment tgz vulnerable library moment with locales min js parse validate manipulate and display dates library home page a href path to dependency file tmp ws scm webdataconnector node modules vis examples timeline styling weekstyling html path to vulnerable library webdataconnector node modules vis examples timeline styling weekstyling html dependency hierarchy x moment with locales min js vulnerable library moment min js parse validate manipulate and display dates library home page a href path to dependency file tmp ws scm webdataconnector node modules vis examples timeline other stressperformance html path to vulnerable library webdataconnector node modules vis examples timeline other stressperformance html dependency hierarchy x moment min js vulnerable library moment min js parse validate manipulate and display dates library home page a href path to dependency file tmp ws scm webdataconnector node modules validate js index html path to vulnerable library webdataconnector node modules validate js index html dependency hierarchy x moment min js vulnerable library moment tgz parse validate manipulate and display dates library home page a href path to dependency file tmp ws scm webdataconnector package json path to vulnerable library tmp ws scm webdataconnector node modules hapi node modules joi node modules moment package json dependency hierarchy corsproxy tgz root library hapi tgz joi tgz x moment tgz vulnerable library found in head commit a href vulnerability details the moment module before for node js is prone to a regular expression denial of service via a crafted date string a different vulnerability than cve 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 isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails the moment module before for node js is prone to a regular expression denial of service via a crafted date string a different vulnerability than cve vulnerabilityurl | 0 |
130,221 | 18,052,542,923 | IssuesEvent | 2021-09-20 00:38:05 | StevensSEC/monocle | https://api.github.com/repos/StevensSEC/monocle | opened | Add styling to photo button | enhancement difficulty/easy interface design | The photo button should be styled to give the users a better experience. Preferably, the photo button should float over the camera view port at the bottom of the screen, be circular, and contain the monocle logo in the center. | 1.0 | Add styling to photo button - The photo button should be styled to give the users a better experience. Preferably, the photo button should float over the camera view port at the bottom of the screen, be circular, and contain the monocle logo in the center. | non_defect | add styling to photo button the photo button should be styled to give the users a better experience preferably the photo button should float over the camera view port at the bottom of the screen be circular and contain the monocle logo in the center | 0 |
35,227 | 7,661,223,559 | IssuesEvent | 2018-05-11 13:35:20 | CompEvol/beast2 | https://api.github.com/repos/CompEvol/beast2 | closed | GuessPatternDialog help appears behind dialog | BEAUti LOW priority defect | This is no-doubt due to the parent component argument of the help dialog creation method being set incorrectly. | 1.0 | GuessPatternDialog help appears behind dialog - This is no-doubt due to the parent component argument of the help dialog creation method being set incorrectly. | defect | guesspatterndialog help appears behind dialog this is no doubt due to the parent component argument of the help dialog creation method being set incorrectly | 1 |
38,990 | 9,116,148,737 | IssuesEvent | 2019-02-22 08:06:17 | hazelcast/hazelcast-go-client | https://api.github.com/repos/hazelcast/hazelcast-go-client | closed | Compile issues during `go get` | Type: Defect Type: Question | Go version: `go version go1.10.1 windows/amd64`
Hazelcast Go Client version: Latest commit: `0df91da3f327f8df8e0b05ead439a271484f7407`
Hazelcast server version: /
Number of the clients: /
Cluster size, i.e. the number of Hazelcast cluster members: /
OS version : Windows 10 Pro 1803
#### Expected behaviour
Successfull download and compile of the `hazelcast-go-client` package
#### Actual behaviour
The download seems to be successful, but during the compile step I get the following error:
```
# github.com/hazelcast/hazelcast-go-client/internal
..\..\hazelcast\hazelcast-go-client\internal\statistics.go:154:12: undefined: syscall.Rlimit
..\..\hazelcast\hazelcast-go-client\internal\statistics.go:155:12: undefined: syscall.Getrlimit
..\..\hazelcast\hazelcast-go-client\internal\statistics.go:155:30: undefined: syscall.RLIMIT_NOFILE
```
#### Steps to reproduce the behaviour
`go get -u "github.com/hazelcast/hazelcast-go-client"`
I also tried just downloading the package first, then cd into the package directory and then compile, but that should be the same so it also leads to the same error:
1. `go get -d "github.com/hazelcast/hazelcast-go-client"`
2. `cd $(go env GOPATH)/src/github.com/hazelcast/hazelcast-go-client`
3. `go build` | 1.0 | Compile issues during `go get` - Go version: `go version go1.10.1 windows/amd64`
Hazelcast Go Client version: Latest commit: `0df91da3f327f8df8e0b05ead439a271484f7407`
Hazelcast server version: /
Number of the clients: /
Cluster size, i.e. the number of Hazelcast cluster members: /
OS version : Windows 10 Pro 1803
#### Expected behaviour
Successfull download and compile of the `hazelcast-go-client` package
#### Actual behaviour
The download seems to be successful, but during the compile step I get the following error:
```
# github.com/hazelcast/hazelcast-go-client/internal
..\..\hazelcast\hazelcast-go-client\internal\statistics.go:154:12: undefined: syscall.Rlimit
..\..\hazelcast\hazelcast-go-client\internal\statistics.go:155:12: undefined: syscall.Getrlimit
..\..\hazelcast\hazelcast-go-client\internal\statistics.go:155:30: undefined: syscall.RLIMIT_NOFILE
```
#### Steps to reproduce the behaviour
`go get -u "github.com/hazelcast/hazelcast-go-client"`
I also tried just downloading the package first, then cd into the package directory and then compile, but that should be the same so it also leads to the same error:
1. `go get -d "github.com/hazelcast/hazelcast-go-client"`
2. `cd $(go env GOPATH)/src/github.com/hazelcast/hazelcast-go-client`
3. `go build` | defect | compile issues during go get go version go version windows hazelcast go client version latest commit hazelcast server version number of the clients cluster size i e the number of hazelcast cluster members os version windows pro expected behaviour successfull download and compile of the hazelcast go client package actual behaviour the download seems to be successful but during the compile step i get the following error github com hazelcast hazelcast go client internal hazelcast hazelcast go client internal statistics go undefined syscall rlimit hazelcast hazelcast go client internal statistics go undefined syscall getrlimit hazelcast hazelcast go client internal statistics go undefined syscall rlimit nofile steps to reproduce the behaviour go get u github com hazelcast hazelcast go client i also tried just downloading the package first then cd into the package directory and then compile but that should be the same so it also leads to the same error go get d github com hazelcast hazelcast go client cd go env gopath src github com hazelcast hazelcast go client go build | 1 |
77,043 | 26,738,654,386 | IssuesEvent | 2023-01-30 11:19:07 | matrix-org/synapse | https://api.github.com/repos/matrix-org/synapse | closed | Forward extremity event missing from database, leading to `No state group for unknown or outlier event` | S-Major T-Defect A-Database O-Uncommon A-Corruption | <!--
**THIS IS NOT A SUPPORT CHANNEL!**
**IF YOU HAVE SUPPORT QUESTIONS ABOUT RUNNING OR CONFIGURING YOUR OWN HOME SERVER**,
please ask in **#synapse:matrix.org** (using a matrix.org account if necessary)
If you want to report a security issue, please see https://matrix.org/security-disclosure-policy/
This is a bug report template. By following the instructions below and
filling out the sections with your information, you will help the us to get all
the necessary data to fix your issue.
You can also preview your report before submitting it. You may remove sections
that aren't relevant to your particular case.
Text between <!-- and --> marks will be invisible in the report.
-->
### Description
<!-- Describe here the problem that you are experiencing -->
After upgrading to Synapse v1.57.0, one direct room is not working anymore. Cannot post new messages from any client or member.
Cannot roll back history more than the screen, then its stuck.
Cannot leave room "Internal Server Error 500"
### Steps to reproduce
Tried rebooting the server, even tried to remove the room with Synapse-Admin - still get an error, room cannot be deleted.
<!--
Describe how what happens differs from what you expected.
If you can identify any relevant log snippets from _homeserver.log_, please include
those (please be careful to remove any personal or private data). Please surround them with
``` (three backticks, on a line on their own), so that they are formatted legibly.
-->
### Version information
<!-- IMPORTANT: please answer the following questions, to help us narrow down the problem -->
<!-- Was this issue identified on matrix.org or another homeserver? -->
- **Homeserver**:
If not matrix.org:
matrix.flyar.net
<!--
What version of Synapse is running?
You can find the Synapse version with this command:
$ curl http://localhost:8008/_synapse/admin/v1/server_version
(You may need to replace `localhost:8008` if Synapse is not configured to
listen on that port.)
-->
- **Version**:
{"server_version":"1.57.0","python_version":"3.9.2"}
- **Install method**:
<!-- examples: package manager/git clone/pip -->
Debian repo
- **Platform**:
<!--
Tell us about the environment in which your homeserver is operating
distro, hardware, if it's running in a vm/container, etc.
-->
Debian 11.3 VM x64
This is how the logfile looks like:
```
2022-04-20 10:03:34,130 - synapse.http.server - 100 - ERROR - GET-0- Failed handle request via 'RoomMessageListRestServlet': <XForwardedForRequest at 0x7f28d07d3730 method>
Traceback (most recent call last):
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
StopIteration: [{'event_id': '$1650209062194EQOlf:matrix.flyar.net', 'state_group': 1277497}]
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/storage/databases/main/state.py", line 331, in _get_state_group_for_events
raise RuntimeError("No state group for unknown or outlier event %s" % e)
RuntimeError: No state group for unknown or outlier event $1638282339138PTbRx:matrix.flyar.net
2022-04-20 10:03:34,508 - synapse.http.server - 100 - ERROR - GET-1- Failed handle request via 'RoomMessageListRestServlet': <XForwardedForRequest at 0x7f28d07e3be0 method>
Traceback (most recent call last):
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
StopIteration: [{'event_id': '$1650209062194EQOlf:matrix.flyar.net', 'state_group': 1277497}]
```
The part after "During handling" is repeated. It seems one event is blocking everything? How can I get rid of this? | 1.0 | Forward extremity event missing from database, leading to `No state group for unknown or outlier event` - <!--
**THIS IS NOT A SUPPORT CHANNEL!**
**IF YOU HAVE SUPPORT QUESTIONS ABOUT RUNNING OR CONFIGURING YOUR OWN HOME SERVER**,
please ask in **#synapse:matrix.org** (using a matrix.org account if necessary)
If you want to report a security issue, please see https://matrix.org/security-disclosure-policy/
This is a bug report template. By following the instructions below and
filling out the sections with your information, you will help the us to get all
the necessary data to fix your issue.
You can also preview your report before submitting it. You may remove sections
that aren't relevant to your particular case.
Text between <!-- and --> marks will be invisible in the report.
-->
### Description
<!-- Describe here the problem that you are experiencing -->
After upgrading to Synapse v1.57.0, one direct room is not working anymore. Cannot post new messages from any client or member.
Cannot roll back history more than the screen, then its stuck.
Cannot leave room "Internal Server Error 500"
### Steps to reproduce
Tried rebooting the server, even tried to remove the room with Synapse-Admin - still get an error, room cannot be deleted.
<!--
Describe how what happens differs from what you expected.
If you can identify any relevant log snippets from _homeserver.log_, please include
those (please be careful to remove any personal or private data). Please surround them with
``` (three backticks, on a line on their own), so that they are formatted legibly.
-->
### Version information
<!-- IMPORTANT: please answer the following questions, to help us narrow down the problem -->
<!-- Was this issue identified on matrix.org or another homeserver? -->
- **Homeserver**:
If not matrix.org:
matrix.flyar.net
<!--
What version of Synapse is running?
You can find the Synapse version with this command:
$ curl http://localhost:8008/_synapse/admin/v1/server_version
(You may need to replace `localhost:8008` if Synapse is not configured to
listen on that port.)
-->
- **Version**:
{"server_version":"1.57.0","python_version":"3.9.2"}
- **Install method**:
<!-- examples: package manager/git clone/pip -->
Debian repo
- **Platform**:
<!--
Tell us about the environment in which your homeserver is operating
distro, hardware, if it's running in a vm/container, etc.
-->
Debian 11.3 VM x64
This is how the logfile looks like:
```
2022-04-20 10:03:34,130 - synapse.http.server - 100 - ERROR - GET-0- Failed handle request via 'RoomMessageListRestServlet': <XForwardedForRequest at 0x7f28d07d3730 method>
Traceback (most recent call last):
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
StopIteration: [{'event_id': '$1650209062194EQOlf:matrix.flyar.net', 'state_group': 1277497}]
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/storage/databases/main/state.py", line 331, in _get_state_group_for_events
raise RuntimeError("No state group for unknown or outlier event %s" % e)
RuntimeError: No state group for unknown or outlier event $1638282339138PTbRx:matrix.flyar.net
2022-04-20 10:03:34,508 - synapse.http.server - 100 - ERROR - GET-1- Failed handle request via 'RoomMessageListRestServlet': <XForwardedForRequest at 0x7f28d07e3be0 method>
Traceback (most recent call last):
File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
StopIteration: [{'event_id': '$1650209062194EQOlf:matrix.flyar.net', 'state_group': 1277497}]
```
The part after "During handling" is repeated. It seems one event is blocking everything? How can I get rid of this? | defect | forward extremity event missing from database leading to no state group for unknown or outlier event this is not a support channel if you have support questions about running or configuring your own home server please ask in synapse matrix org using a matrix org account if necessary if you want to report a security issue please see this is a bug report template by following the instructions below and filling out the sections with your information you will help the us to get all the necessary data to fix your issue you can also preview your report before submitting it you may remove sections that aren t relevant to your particular case text between marks will be invisible in the report description after upgrading to synapse one direct room is not working anymore cannot post new messages from any client or member cannot roll back history more than the screen then its stuck cannot leave room internal server error steps to reproduce tried rebooting the server even tried to remove the room with synapse admin still get an error room cannot be deleted describe how what happens differs from what you expected if you can identify any relevant log snippets from homeserver log please include those please be careful to remove any personal or private data please surround them with three backticks on a line on their own so that they are formatted legibly version information homeserver if not matrix org matrix flyar net what version of synapse is running you can find the synapse version with this command curl you may need to replace localhost if synapse is not configured to listen on that port version server version python version install method debian repo platform tell us about the environment in which your homeserver is operating distro hardware if it s running in a vm container etc debian vm this is how the logfile looks like synapse http server error get failed handle request via roommessagelistrestservlet traceback most recent call last file opt venvs matrix synapse lib site packages twisted internet defer py line in inlinecallbacks result current context run gen send result stopiteration during handling of the above exception another exception occurred traceback most recent call last file opt venvs matrix synapse lib site packages twisted internet defer py line in inlinecallbacks result current context run gen send result file opt venvs matrix synapse lib site packages synapse storage databases main state py line in get state group for events raise runtimeerror no state group for unknown or outlier event s e runtimeerror no state group for unknown or outlier event matrix flyar net synapse http server error get failed handle request via roommessagelistrestservlet traceback most recent call last file opt venvs matrix synapse lib site packages twisted internet defer py line in inlinecallbacks result current context run gen send result stopiteration the part after during handling is repeated it seems one event is blocking everything how can i get rid of this | 1 |
67,690 | 14,886,275,392 | IssuesEvent | 2021-01-20 16:44:07 | kadirselcuk/angularjs-realworld-example-app | https://api.github.com/repos/kadirselcuk/angularjs-realworld-example-app | opened | CVE-2020-11022 (Medium) detected in multiple libraries | security vulnerability | ## CVE-2020-11022 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.7.2.min.js</b>, <b>jquery-1.7.1.min.js</b>, <b>jquery-1.8.1.min.js</b></p></summary>
<p>
<details><summary><b>jquery-1.7.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.7.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.2/jquery.min.js</a></p>
<p>Path to dependency file: angularjs-realworld-example-app/node_modules/marked/www/demo.html</p>
<p>Path to vulnerable library: angularjs-realworld-example-app/node_modules/marked/www/demo.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.7.2.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.7.1.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.7.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js</a></p>
<p>Path to dependency file: angularjs-realworld-example-app/node_modules/vm-browserify/example/run/index.html</p>
<p>Path to vulnerable library: angularjs-realworld-example-app/node_modules/vm-browserify/example/run/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.7.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.8.1.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.8.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.1/jquery.min.js</a></p>
<p>Path to dependency file: angularjs-realworld-example-app/node_modules/redeyed/examples/browser/index.html</p>
<p>Path to vulnerable library: angularjs-realworld-example-app/node_modules/redeyed/examples/browser/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.8.1.min.js** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/kadirselcuk/angularjs-realworld-example-app/commit/96c72a666271672f2f980c3e6278b9c958747c3f">96c72a666271672f2f980c3e6278b9c958747c3f</a></p>
<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>
In jQuery versions greater than or equal to 1.2 and before 3.5.0, passing HTML from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0.
<p>Publish Date: 2020-04-29
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11022>CVE-2020-11022</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://blog.jquery.com/2020/04/10/jquery-3-5-0-released/">https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/</a></p>
<p>Release Date: 2020-04-29</p>
<p>Fix Resolution: jQuery - 3.5.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-2020-11022 (Medium) detected in multiple libraries - ## CVE-2020-11022 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.7.2.min.js</b>, <b>jquery-1.7.1.min.js</b>, <b>jquery-1.8.1.min.js</b></p></summary>
<p>
<details><summary><b>jquery-1.7.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.7.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.2/jquery.min.js</a></p>
<p>Path to dependency file: angularjs-realworld-example-app/node_modules/marked/www/demo.html</p>
<p>Path to vulnerable library: angularjs-realworld-example-app/node_modules/marked/www/demo.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.7.2.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.7.1.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.7.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js</a></p>
<p>Path to dependency file: angularjs-realworld-example-app/node_modules/vm-browserify/example/run/index.html</p>
<p>Path to vulnerable library: angularjs-realworld-example-app/node_modules/vm-browserify/example/run/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.7.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.8.1.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.8.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.1/jquery.min.js</a></p>
<p>Path to dependency file: angularjs-realworld-example-app/node_modules/redeyed/examples/browser/index.html</p>
<p>Path to vulnerable library: angularjs-realworld-example-app/node_modules/redeyed/examples/browser/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.8.1.min.js** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/kadirselcuk/angularjs-realworld-example-app/commit/96c72a666271672f2f980c3e6278b9c958747c3f">96c72a666271672f2f980c3e6278b9c958747c3f</a></p>
<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>
In jQuery versions greater than or equal to 1.2 and before 3.5.0, passing HTML from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0.
<p>Publish Date: 2020-04-29
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11022>CVE-2020-11022</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://blog.jquery.com/2020/04/10/jquery-3-5-0-released/">https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/</a></p>
<p>Release Date: 2020-04-29</p>
<p>Fix Resolution: jQuery - 3.5.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_defect | cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries jquery min js jquery min js jquery min js jquery min js javascript library for dom operations library home page a href path to dependency file angularjs realworld example app node modules marked www demo html path to vulnerable library angularjs realworld example app node modules marked www demo html dependency hierarchy x jquery min js vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file angularjs realworld example app node modules vm browserify example run index html path to vulnerable library angularjs realworld example app node modules vm browserify example run index html dependency hierarchy x jquery min js vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file angularjs realworld example app node modules redeyed examples browser index html path to vulnerable library angularjs realworld example app node modules redeyed examples browser index html dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch master vulnerability details in jquery versions greater than or equal to and before passing html from untrusted sources even after sanitizing it to one of jquery s dom manipulation methods i e html append and others may execute untrusted code this problem is patched in jquery 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 |
4,165 | 4,227,153,872 | IssuesEvent | 2016-07-03 00:18:51 | tmpvar/jsdom | https://api.github.com/repos/tmpvar/jsdom | closed | Performance Regression? | performance | From my test suite, it seems like there are some performance regressions between v0.8.10 and v0.11.0. In every test, a new dom is constructed. There is also heavy client-side rendering and interaction with DOM events. I'm using jQuery, backbonejs, & handlebars.
The run times of my test suites are the following:
v0.8.10 - 290 seconds
v0.11.0 - 500 seconds
| True | Performance Regression? - From my test suite, it seems like there are some performance regressions between v0.8.10 and v0.11.0. In every test, a new dom is constructed. There is also heavy client-side rendering and interaction with DOM events. I'm using jQuery, backbonejs, & handlebars.
The run times of my test suites are the following:
v0.8.10 - 290 seconds
v0.11.0 - 500 seconds
| non_defect | performance regression from my test suite it seems like there are some performance regressions between and in every test a new dom is constructed there is also heavy client side rendering and interaction with dom events i m using jquery backbonejs handlebars the run times of my test suites are the following seconds seconds | 0 |
18,763 | 11,047,596,516 | IssuesEvent | 2019-12-09 19:18:57 | cityofaustin/atd-data-tech | https://api.github.com/repos/cityofaustin/atd-data-tech | closed | Link to Assignment Page in calendar modal | Need: 3-Could Have Project: VZA App Service: Apps Type: Enhancement Workgroup: AMD Workgroup: VZ | As an officer I would like to be able to open the Assignment Details from the calendar modal so that I can easily get to this page without having to scroll.
Something like this (not sure about text):
 | 1.0 | Link to Assignment Page in calendar modal - As an officer I would like to be able to open the Assignment Details from the calendar modal so that I can easily get to this page without having to scroll.
Something like this (not sure about text):
 | non_defect | link to assignment page in calendar modal as an officer i would like to be able to open the assignment details from the calendar modal so that i can easily get to this page without having to scroll something like this not sure about text | 0 |
31,568 | 6,550,120,701 | IssuesEvent | 2017-09-05 09:44:57 | andrewhayden/archive-patcher | https://api.github.com/repos/andrewhayden/archive-patcher | closed | Both-way dependency. | Priority-Low Type-Defect | It seems that `share` module depends on `sharetest` as well as `sharetest` depends on `share`. | 1.0 | Both-way dependency. - It seems that `share` module depends on `sharetest` as well as `sharetest` depends on `share`. | defect | both way dependency it seems that share module depends on sharetest as well as sharetest depends on share | 1 |
109,374 | 13,765,830,445 | IssuesEvent | 2020-10-07 13:52:54 | unchartedelixir/uncharted | https://api.github.com/repos/unchartedelixir/uncharted | closed | Add Tree Map Chart | Design Elixir New Chart | **Wikipedia Definition**: In information visualization and computing, treemapping is a method for displaying hierarchical data using nested figures, usually rectangles. | 1.0 | Add Tree Map Chart - **Wikipedia Definition**: In information visualization and computing, treemapping is a method for displaying hierarchical data using nested figures, usually rectangles. | non_defect | add tree map chart wikipedia definition in information visualization and computing treemapping is a method for displaying hierarchical data using nested figures usually rectangles | 0 |
22,333 | 3,953,709,222 | IssuesEvent | 2016-04-29 14:27:10 | flamingo-geocms/flamingo | https://api.github.com/repos/flamingo-geocms/flamingo | closed | bookmark field sizes | Testen | If the bookmark and compact link screens would be higher the complete bookmark could be shown | 1.0 | bookmark field sizes - If the bookmark and compact link screens would be higher the complete bookmark could be shown | non_defect | bookmark field sizes if the bookmark and compact link screens would be higher the complete bookmark could be shown | 0 |
106,207 | 23,193,281,440 | IssuesEvent | 2022-08-01 14:20:06 | open-contracting/standard | https://api.github.com/repos/open-contracting/standard | closed | Fix markup to avoid unwanted links | Schema Codelist: Open quick | linkify automatically hyperlinks URLs. We need to:
* Add backticks around release.id in the schema
* Remove the sentence about buyandsell.gc.ca from itemClassificationScheme.csv (no other code has a similar sentence)
Once that's done, we can remove the lines in `conf.py` that ignore the auto-created links. | 1.0 | Fix markup to avoid unwanted links - linkify automatically hyperlinks URLs. We need to:
* Add backticks around release.id in the schema
* Remove the sentence about buyandsell.gc.ca from itemClassificationScheme.csv (no other code has a similar sentence)
Once that's done, we can remove the lines in `conf.py` that ignore the auto-created links. | non_defect | fix markup to avoid unwanted links linkify automatically hyperlinks urls we need to add backticks around release id in the schema remove the sentence about buyandsell gc ca from itemclassificationscheme csv no other code has a similar sentence once that s done we can remove the lines in conf py that ignore the auto created links | 0 |
73,529 | 9,669,754,465 | IssuesEvent | 2019-05-21 18:09:46 | pravega/pravega-operator | https://api.github.com/repos/pravega/pravega-operator | closed | Documentation: Add a section for manual uninstallation of Pravega cluster and Operator | area/documentation | There is a section for uninstallation of Pravega cluster (https://github.com/pravega/pravega-operator/tree/0.3.2#uninstall-the-pravega-cluster) and Pravega Operator (https://github.com/pravega/pravega-operator/tree/0.3.2#uninstall-the-operator) in `README.md` file of `0.3.2` release.
But after restructuring the documentation in `0.4.0-rc1` release, the above sections for manual uninstallation of Pravega cluster and Pravega Operator are missing.
**Suggestion to Improvement**
It would be good to have a steps for manual uninstallation of Pravega cluster and Pravega Operator in separate `manual-uninstallation.md` file and give a hyperlink to point from `README.md` file.
| 1.0 | Documentation: Add a section for manual uninstallation of Pravega cluster and Operator - There is a section for uninstallation of Pravega cluster (https://github.com/pravega/pravega-operator/tree/0.3.2#uninstall-the-pravega-cluster) and Pravega Operator (https://github.com/pravega/pravega-operator/tree/0.3.2#uninstall-the-operator) in `README.md` file of `0.3.2` release.
But after restructuring the documentation in `0.4.0-rc1` release, the above sections for manual uninstallation of Pravega cluster and Pravega Operator are missing.
**Suggestion to Improvement**
It would be good to have a steps for manual uninstallation of Pravega cluster and Pravega Operator in separate `manual-uninstallation.md` file and give a hyperlink to point from `README.md` file.
| non_defect | documentation add a section for manual uninstallation of pravega cluster and operator there is a section for uninstallation of pravega cluster and pravega operator in readme md file of release but after restructuring the documentation in release the above sections for manual uninstallation of pravega cluster and pravega operator are missing suggestion to improvement it would be good to have a steps for manual uninstallation of pravega cluster and pravega operator in separate manual uninstallation md file and give a hyperlink to point from readme md file | 0 |
765,375 | 26,843,276,105 | IssuesEvent | 2023-02-03 03:35:03 | milvus-io/milvus | https://api.github.com/repos/milvus-io/milvus | closed | [Bug]: Search failed with error `reason=target node id not match target id = 3, node id = 12` after pulsar pod kill chaos test | kind/bug priority/critical-urgent severity/critical triage/accepted | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Environment
```markdown
- Milvus version: master-20221206-f8cff798
- Deployment mode(standalone or cluster): cluster
- SDK version(e.g. pymilvus v2.0.0rc2): pymilvus==2.3.0.dev15
- OS(Ubuntu or CentOS):
- CPU/Memory:
- GPU:
- Others:
```
### Current Behavior
```
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - DEBUG - ci_test]: (api_request) : [Collection.load] args: [None, 1, 120], kwargs: {} (api_request.py:56)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - DEBUG - ci_test]: (api_response) : None (api_request.py:31)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - INFO - ci_test]: [test][2022-12-06T22:16:29Z] [0.00333510s] DeleteChecker__huJONjuF load -> None (wrapper.py:30)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - DEBUG - ci_test]: (api_request) : [Collection.search] args: [[[0.01373642304506658, 0.09407661457501135, 0.037831905386391126, 0.028200136389675192, 0.1333814968391419, 0.11025818933976621, 0.10980963426000147, 0.13031918810532903, 0.03308945619420152, 0.11283760831918727, 0.023766451770019223, 0.019642186799281227, 0.12117970130462996, 0.06948829826502975, ......, kwargs: {} (api_request.py:56)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - ERROR - pymilvus.decorators]: RPC error: [search], <MilvusException: (code=1, message=fail to search on all shard leaders, err=fail to Search, QueryNode ID=3, reason=target node id not match target id = 3, node id = 12)>, <Time:{'RPC start': '2022-12-06 22:16:29.318095', 'RPC error': '2022-12-06 22:16:29.439993'}> (decorators.py:108)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - ERROR - ci_test]: Traceback (most recent call last):
[2022-12-06T22:16:38.598Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 26, in inner_wrapper
[2022-12-06T22:16:38.598Z] res = func(*args, **_kwargs)
[2022-12-06T22:16:38.598Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 57, in api_request
[2022-12-06T22:16:38.598Z] return func(*arg, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/orm/collection.py", line 610, in search
[2022-12-06T22:16:38.598Z] res = conn.search(self._name, data, anns_field, param, limit, expr,
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 109, in handler
[2022-12-06T22:16:38.598Z] raise e
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 105, in handler
[2022-12-06T22:16:38.598Z] return func(*args, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 136, in handler
[2022-12-06T22:16:38.598Z] ret = func(self, *args, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 85, in handler
[2022-12-06T22:16:38.598Z] raise e
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 50, in handler
[2022-12-06T22:16:38.598Z] return func(self, *args, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/client/grpc_handler.py", line 469, in search
[2022-12-06T22:16:38.598Z] return self._execute_search_requests(requests, timeout, round_decimal=round_decimal, auto_id=auto_id, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/client/grpc_handler.py", line 438, in _execute_search_requests
[2022-12-06T22:16:38.598Z] raise pre_err
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/client/grpc_handler.py", line 429, in _execute_search_requests
[2022-12-06T22:16:38.598Z] raise MilvusException(response.status.error_code, response.status.reason)
[2022-12-06T22:16:38.599Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=fail to search on all shard leaders, err=fail to Search, QueryNode ID=3, reason=target node id not match target id = 3, node id = 12)>
[2022-12-06T22:16:38.599Z] (api_request.py:39)
[2022-12-06T22:16:38.599Z] [2022-12-06 22:16:29 - ERROR - ci_test]: (api_response) : <MilvusException: (code=1, message=fail to search on all shard leaders, err=fail to Search, QueryNode ID=3, reason=target node id not match target id = 3, node id = 12)> (api_request.py:40)
```
### Expected Behavior
all test cases passed
### Steps To Reproduce
_No response_
### Milvus Log
failed job: https://qa-jenkins.milvus.io/blue/organizations/jenkins/chaos-test-cron/detail/chaos-test-cron/369/pipeline
log:
[artifacts-pulsar-pod-kill-369-server-logs.tar.gz](https://github.com/milvus-io/milvus/files/10172389/artifacts-pulsar-pod-kill-369-server-logs.tar.gz)
[artifacts-pulsar-pod-kill-369-pytest-logs.tar.gz](https://github.com/milvus-io/milvus/files/10172390/artifacts-pulsar-pod-kill-369-pytest-logs.tar.gz)
### Anything else?
_No response_ | 1.0 | [Bug]: Search failed with error `reason=target node id not match target id = 3, node id = 12` after pulsar pod kill chaos test - ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Environment
```markdown
- Milvus version: master-20221206-f8cff798
- Deployment mode(standalone or cluster): cluster
- SDK version(e.g. pymilvus v2.0.0rc2): pymilvus==2.3.0.dev15
- OS(Ubuntu or CentOS):
- CPU/Memory:
- GPU:
- Others:
```
### Current Behavior
```
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - DEBUG - ci_test]: (api_request) : [Collection.load] args: [None, 1, 120], kwargs: {} (api_request.py:56)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - DEBUG - ci_test]: (api_response) : None (api_request.py:31)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - INFO - ci_test]: [test][2022-12-06T22:16:29Z] [0.00333510s] DeleteChecker__huJONjuF load -> None (wrapper.py:30)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - DEBUG - ci_test]: (api_request) : [Collection.search] args: [[[0.01373642304506658, 0.09407661457501135, 0.037831905386391126, 0.028200136389675192, 0.1333814968391419, 0.11025818933976621, 0.10980963426000147, 0.13031918810532903, 0.03308945619420152, 0.11283760831918727, 0.023766451770019223, 0.019642186799281227, 0.12117970130462996, 0.06948829826502975, ......, kwargs: {} (api_request.py:56)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - ERROR - pymilvus.decorators]: RPC error: [search], <MilvusException: (code=1, message=fail to search on all shard leaders, err=fail to Search, QueryNode ID=3, reason=target node id not match target id = 3, node id = 12)>, <Time:{'RPC start': '2022-12-06 22:16:29.318095', 'RPC error': '2022-12-06 22:16:29.439993'}> (decorators.py:108)
[2022-12-06T22:16:38.598Z] [2022-12-06 22:16:29 - ERROR - ci_test]: Traceback (most recent call last):
[2022-12-06T22:16:38.598Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 26, in inner_wrapper
[2022-12-06T22:16:38.598Z] res = func(*args, **_kwargs)
[2022-12-06T22:16:38.598Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 57, in api_request
[2022-12-06T22:16:38.598Z] return func(*arg, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/orm/collection.py", line 610, in search
[2022-12-06T22:16:38.598Z] res = conn.search(self._name, data, anns_field, param, limit, expr,
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 109, in handler
[2022-12-06T22:16:38.598Z] raise e
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 105, in handler
[2022-12-06T22:16:38.598Z] return func(*args, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 136, in handler
[2022-12-06T22:16:38.598Z] ret = func(self, *args, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 85, in handler
[2022-12-06T22:16:38.598Z] raise e
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/decorators.py", line 50, in handler
[2022-12-06T22:16:38.598Z] return func(self, *args, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/client/grpc_handler.py", line 469, in search
[2022-12-06T22:16:38.598Z] return self._execute_search_requests(requests, timeout, round_decimal=round_decimal, auto_id=auto_id, **kwargs)
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/client/grpc_handler.py", line 438, in _execute_search_requests
[2022-12-06T22:16:38.598Z] raise pre_err
[2022-12-06T22:16:38.598Z] File "/usr/local/lib/python3.8/dist-packages/pymilvus/client/grpc_handler.py", line 429, in _execute_search_requests
[2022-12-06T22:16:38.598Z] raise MilvusException(response.status.error_code, response.status.reason)
[2022-12-06T22:16:38.599Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=fail to search on all shard leaders, err=fail to Search, QueryNode ID=3, reason=target node id not match target id = 3, node id = 12)>
[2022-12-06T22:16:38.599Z] (api_request.py:39)
[2022-12-06T22:16:38.599Z] [2022-12-06 22:16:29 - ERROR - ci_test]: (api_response) : <MilvusException: (code=1, message=fail to search on all shard leaders, err=fail to Search, QueryNode ID=3, reason=target node id not match target id = 3, node id = 12)> (api_request.py:40)
```
### Expected Behavior
all test cases passed
### Steps To Reproduce
_No response_
### Milvus Log
failed job: https://qa-jenkins.milvus.io/blue/organizations/jenkins/chaos-test-cron/detail/chaos-test-cron/369/pipeline
log:
[artifacts-pulsar-pod-kill-369-server-logs.tar.gz](https://github.com/milvus-io/milvus/files/10172389/artifacts-pulsar-pod-kill-369-server-logs.tar.gz)
[artifacts-pulsar-pod-kill-369-pytest-logs.tar.gz](https://github.com/milvus-io/milvus/files/10172390/artifacts-pulsar-pod-kill-369-pytest-logs.tar.gz)
### Anything else?
_No response_ | non_defect | search failed with error reason target node id not match target id node id after pulsar pod kill chaos test is there an existing issue for this i have searched the existing issues environment markdown milvus version master deployment mode standalone or cluster cluster sdk version e g pymilvus pymilvus os ubuntu or centos cpu memory gpu others current behavior api request args kwargs api request py api response none api request py deletechecker hujonjuf load none wrapper py api request args kwargs api request py rpc error decorators py traceback most recent call last file home jenkins agent workspace tests python client utils api request py line in inner wrapper res func args kwargs file home jenkins agent workspace tests python client utils api request py line in api request return func arg kwargs file usr local lib dist packages pymilvus orm collection py line in search res conn search self name data anns field param limit expr file usr local lib dist packages pymilvus decorators py line in handler raise e file usr local lib dist packages pymilvus decorators py line in handler return func args kwargs file usr local lib dist packages pymilvus decorators py line in handler ret func self args kwargs file usr local lib dist packages pymilvus decorators py line in handler raise e file usr local lib dist packages pymilvus decorators py line in handler return func self args kwargs file usr local lib dist packages pymilvus client grpc handler py line in search return self execute search requests requests timeout round decimal round decimal auto id auto id kwargs file usr local lib dist packages pymilvus client grpc handler py line in execute search requests raise pre err file usr local lib dist packages pymilvus client grpc handler py line in execute search requests raise milvusexception response status error code response status reason pymilvus exceptions milvusexception api request py api response api request py expected behavior all test cases passed steps to reproduce no response milvus log failed job log anything else no response | 0 |
629,069 | 20,022,495,134 | IssuesEvent | 2022-02-01 17:40:17 | ballerina-platform/ballerina-dev-website | https://api.github.com/repos/ballerina-platform/ballerina-dev-website | closed | Add the Blog Post on the Swan Lake GA Release to B.io | Priority/Highest Area/Docs Type/Task Points/0.5 | **Description:**
Need to add the blog post on the Swan Lake GA release to B.io
**Describe your task(s)**
**Related Issues (optional):**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
**Suggested Labels (optional):**
<!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees (optional):**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
| 1.0 | Add the Blog Post on the Swan Lake GA Release to B.io - **Description:**
Need to add the blog post on the Swan Lake GA release to B.io
**Describe your task(s)**
**Related Issues (optional):**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
**Suggested Labels (optional):**
<!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees (optional):**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
| non_defect | add the blog post on the swan lake ga release to b io description need to add the blog post on the swan lake ga release to b io describe your task s related issues optional suggested labels optional suggested assignees optional | 0 |
73,296 | 24,553,300,440 | IssuesEvent | 2022-10-12 14:07:44 | jOOQ/jOOQ | https://api.github.com/repos/jOOQ/jOOQ | opened | Add parser support for statement batches containing multiple blocks | T: Defect P: Medium E: Professional Edition E: Enterprise Edition C: Parser | This is valid in SQL Server:
```sql
BEGIN
DECLARE @i INT;
END
BEGIN
DECLARE @j INT;
END
BEGIN
DECLARE @k INT;
END
```
We currently cannot parse this, producing the following error:
```
Unsupported query type: [7:1] ...DECLARE @i INT;
END
BEGIN
DECLARE @j INT;
[*]END
BEGIN
DECLARE @k INT;
END
```
Wrapping everything in `BEGIN .. END` also doesn't work:
```sql
BEGIN
BEGIN
DECLARE @i INT;
END
BEGIN
DECLARE @j INT;
END
BEGIN
DECLARE @k INT;
END
END
```
Still the same error, though elsewhere:
```
Unsupported query type: [12:3] ...@j INT;
END
BEGIN
DECLARE @k INT;
[*]END
END
```
Things work if we add the optional `;`:
```sql
BEGIN
BEGIN
DECLARE @i INT;
END;
BEGIN
DECLARE @j INT;
END;
BEGIN
DECLARE @k INT;
END;
END;
``` | 1.0 | Add parser support for statement batches containing multiple blocks - This is valid in SQL Server:
```sql
BEGIN
DECLARE @i INT;
END
BEGIN
DECLARE @j INT;
END
BEGIN
DECLARE @k INT;
END
```
We currently cannot parse this, producing the following error:
```
Unsupported query type: [7:1] ...DECLARE @i INT;
END
BEGIN
DECLARE @j INT;
[*]END
BEGIN
DECLARE @k INT;
END
```
Wrapping everything in `BEGIN .. END` also doesn't work:
```sql
BEGIN
BEGIN
DECLARE @i INT;
END
BEGIN
DECLARE @j INT;
END
BEGIN
DECLARE @k INT;
END
END
```
Still the same error, though elsewhere:
```
Unsupported query type: [12:3] ...@j INT;
END
BEGIN
DECLARE @k INT;
[*]END
END
```
Things work if we add the optional `;`:
```sql
BEGIN
BEGIN
DECLARE @i INT;
END;
BEGIN
DECLARE @j INT;
END;
BEGIN
DECLARE @k INT;
END;
END;
``` | defect | add parser support for statement batches containing multiple blocks this is valid in sql server sql begin declare i int end begin declare j int end begin declare k int end we currently cannot parse this producing the following error unsupported query type declare i int end begin declare j int end begin declare k int end wrapping everything in begin end also doesn t work sql begin begin declare i int end begin declare j int end begin declare k int end end still the same error though elsewhere unsupported query type j int end begin declare k int end end things work if we add the optional sql begin begin declare i int end begin declare j int end begin declare k int end end | 1 |
37,510 | 12,483,392,156 | IssuesEvent | 2020-05-30 09:05:19 | benchmarkdebricked/spring-boot | https://api.github.com/repos/benchmarkdebricked/spring-boot | opened | CVE-2020-10969 (High) detected in jackson-databind-2.9.9.jar | security vulnerability | ## CVE-2020-10969 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.9.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: /tmp/ws-scm/spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-websocket/pom.xml</p>
<p>Path to vulnerable library: /root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar</p>
<p>
Dependency Hierarchy:
- activemq-broker-5.15.9.jar (Root Library)
- :x: **jackson-databind-2.9.9.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/benchmarkdebricked/spring-boot/commit/93626af7cefc084e72fbb68374961911c1a808cc">93626af7cefc084e72fbb68374961911c1a808cc</a></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>
FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to javax.swing.JEditorPane.
<p>Publish Date: 2020-03-26
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-10969>CVE-2020-10969</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>8.8</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: 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10969">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10969</a></p>
<p>Release Date: 2020-03-26</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.8.11.6;com.fasterxml.jackson.core:jackson-databind:2.7.9.7</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-10969 (High) detected in jackson-databind-2.9.9.jar - ## CVE-2020-10969 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.9.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: /tmp/ws-scm/spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-websocket/pom.xml</p>
<p>Path to vulnerable library: /root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,epository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar,/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar</p>
<p>
Dependency Hierarchy:
- activemq-broker-5.15.9.jar (Root Library)
- :x: **jackson-databind-2.9.9.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/benchmarkdebricked/spring-boot/commit/93626af7cefc084e72fbb68374961911c1a808cc">93626af7cefc084e72fbb68374961911c1a808cc</a></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>
FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to javax.swing.JEditorPane.
<p>Publish Date: 2020-03-26
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-10969>CVE-2020-10969</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>8.8</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: 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10969">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10969</a></p>
<p>Release Date: 2020-03-26</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.8.11.6;com.fasterxml.jackson.core:jackson-databind:2.7.9.7</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_defect | cve high detected in jackson databind jar cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file tmp ws scm spring boot spring boot project spring boot starters spring boot starter websocket pom xml path to vulnerable library root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar epository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar root repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy activemq broker jar root library x jackson databind jar vulnerable library found in head commit a href vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to javax swing jeditorpane 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 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 com fasterxml jackson core jackson databind com fasterxml jackson core jackson databind step up your open source security game with whitesource | 0 |
534,295 | 15,613,867,214 | IssuesEvent | 2021-03-19 17:00:22 | ushibutatory/umamusume-birthdays | https://api.github.com/repos/ushibutatory/umamusume-birthdays | closed | [WARN] you don't need @types/moment installed | Priority/Middle Type/Bug | https://github.com/ushibutatory/umamusume-birthdays/runs/2150277730?check_suite_focus=true#step:3:65
ローカルで開発してる時にこんな警告出てたかな……。見落としたのかもしれない。
ともかく、不要なパッケージをインストールしてしまっている模様。 | 1.0 | [WARN] you don't need @types/moment installed - https://github.com/ushibutatory/umamusume-birthdays/runs/2150277730?check_suite_focus=true#step:3:65
ローカルで開発してる時にこんな警告出てたかな……。見落としたのかもしれない。
ともかく、不要なパッケージをインストールしてしまっている模様。 | non_defect | you don t need types moment installed ローカルで開発してる時にこんな警告出てたかな……。見落としたのかもしれない。 ともかく、不要なパッケージをインストールしてしまっている模様。 | 0 |
7,013 | 2,610,322,004 | IssuesEvent | 2015-02-26 19:43:51 | chrsmith/republic-at-war | https://api.github.com/repos/chrsmith/republic-at-war | closed | Map Issue | auto-migrated Priority-Medium Type-Defect | ```
Issue: The Republics barracks is covering one of the turret build pads. Doesn't
affect being able to build turrets though.
On Custom Map skirmish "Clash on Tatoonie"
This is a minor issue though it just looks weird having the turret build up
into the barracks.
```
-----
Original issue reported on code.google.com by `z3r0...@gmail.com` on 10 May 2011 at 12:51 | 1.0 | Map Issue - ```
Issue: The Republics barracks is covering one of the turret build pads. Doesn't
affect being able to build turrets though.
On Custom Map skirmish "Clash on Tatoonie"
This is a minor issue though it just looks weird having the turret build up
into the barracks.
```
-----
Original issue reported on code.google.com by `z3r0...@gmail.com` on 10 May 2011 at 12:51 | defect | map issue issue the republics barracks is covering one of the turret build pads doesn t affect being able to build turrets though on custom map skirmish clash on tatoonie this is a minor issue though it just looks weird having the turret build up into the barracks original issue reported on code google com by gmail com on may at | 1 |
66,377 | 16,602,359,099 | IssuesEvent | 2021-06-01 21:27:26 | microsoft/react-native-windows | https://api.github.com/repos/microsoft/react-native-windows | closed | CI Pipeline Fails to Publish Appx | Area: Build Infrastructure Needs: Triage :mag: | https://dev.azure.com/ms/react-native-windows/_build/results?buildId=173035&view=logs&j=0b7bc0b1-3390-5293-5a9c-af2a4f48175a&t=aa9d9956-6ab4-51e6-4386-c0420d719046&l=10
```
Starting: Upload App Package
==============================================================================
Task : Publish build artifacts
Description : Publish build artifacts to Azure Pipelines or a Windows file share
Version : 1.186.0
Author : Microsoft Corporation
Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/publish-build-artifacts
==============================================================================
##[error]Publishing build artifacts failed with an error: Not found PathtoPublish: D:\a\_work\1\s\packages\playground\windows\AppPackages\playground
Finishing: Upload App Package
```
@chiaramooney made recent changes to AppX signing logic in this project, which may be related. | 1.0 | CI Pipeline Fails to Publish Appx - https://dev.azure.com/ms/react-native-windows/_build/results?buildId=173035&view=logs&j=0b7bc0b1-3390-5293-5a9c-af2a4f48175a&t=aa9d9956-6ab4-51e6-4386-c0420d719046&l=10
```
Starting: Upload App Package
==============================================================================
Task : Publish build artifacts
Description : Publish build artifacts to Azure Pipelines or a Windows file share
Version : 1.186.0
Author : Microsoft Corporation
Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/publish-build-artifacts
==============================================================================
##[error]Publishing build artifacts failed with an error: Not found PathtoPublish: D:\a\_work\1\s\packages\playground\windows\AppPackages\playground
Finishing: Upload App Package
```
@chiaramooney made recent changes to AppX signing logic in this project, which may be related. | non_defect | ci pipeline fails to publish appx starting upload app package task publish build artifacts description publish build artifacts to azure pipelines or a windows file share version author microsoft corporation help publishing build artifacts failed with an error not found pathtopublish d a work s packages playground windows apppackages playground finishing upload app package chiaramooney made recent changes to appx signing logic in this project which may be related | 0 |
41,058 | 6,889,393,342 | IssuesEvent | 2017-11-22 10:13:13 | ipython/ipython | https://api.github.com/repos/ipython/ipython | closed | 'graphviz' warning when building docs | bug documentation good first issue testing | When Travis builds the docs, there is following warning:
WARNING: dot command 'dot' cannot be run (needed for graphviz output), check the graphviz_dot setting
(See https://github.com/ipython/ipython/issues/10895 for the whole story. This issue is to address that remaining warning.) | 1.0 | 'graphviz' warning when building docs - When Travis builds the docs, there is following warning:
WARNING: dot command 'dot' cannot be run (needed for graphviz output), check the graphviz_dot setting
(See https://github.com/ipython/ipython/issues/10895 for the whole story. This issue is to address that remaining warning.) | non_defect | graphviz warning when building docs when travis builds the docs there is following warning warning dot command dot cannot be run needed for graphviz output check the graphviz dot setting see for the whole story this issue is to address that remaining warning | 0 |
149,685 | 11,911,485,935 | IssuesEvent | 2020-03-31 08:42:41 | WoWManiaUK/Redemption | https://api.github.com/repos/WoWManiaUK/Redemption | closed | [NPC/Spell] Salia (Cause Insanity) | Fix - Confirmed by Tester Fix - Ready to Test | **Links:**https://www.wowhead.com/npc=9860/salia#abilities
https://www.wowhead.com/quest=5242/deprecated-a-final-blow
https://www.wowhead.com/spell=12888/cause-insanity
**What is Happening:** [Salia](https://www.wowhead.com/npc=9860/salia), an enemy demon objective of the quest [[A Final Blow]
](https://www.wowhead.com/quest=5242/deprecated-a-final-blow) seems to prioritize casting her ability [Cause Insanity](https://www.wowhead.com/spell=12888/cause-insanity) every ~6 seconds regardless of how many players are engaged in combat with her. If a single player is fighting her, it causes all 3 mini-bosses to get out of combat and reset completely. This makes the quest and encounter much more frustrating and nearly impossible to do. (The only way is to burst Salia before she gets to cast her mind control even once, after which you can kill the other 2 mobs normally).
**What Should happen:** Salia should not cast her mind control ability, [Cause Insanity](https://www.wowhead.com/spell=12888/cause-insanity), if she is engaged in combat by a single player.
Edit: [Jadefire Tricksters](https://www.wowhead.com/npc=7107/jadefire-trickster) in the same area also cast the same spell with the same issue. Probably exact same spellID.
| 2.0 | [NPC/Spell] Salia (Cause Insanity) - **Links:**https://www.wowhead.com/npc=9860/salia#abilities
https://www.wowhead.com/quest=5242/deprecated-a-final-blow
https://www.wowhead.com/spell=12888/cause-insanity
**What is Happening:** [Salia](https://www.wowhead.com/npc=9860/salia), an enemy demon objective of the quest [[A Final Blow]
](https://www.wowhead.com/quest=5242/deprecated-a-final-blow) seems to prioritize casting her ability [Cause Insanity](https://www.wowhead.com/spell=12888/cause-insanity) every ~6 seconds regardless of how many players are engaged in combat with her. If a single player is fighting her, it causes all 3 mini-bosses to get out of combat and reset completely. This makes the quest and encounter much more frustrating and nearly impossible to do. (The only way is to burst Salia before she gets to cast her mind control even once, after which you can kill the other 2 mobs normally).
**What Should happen:** Salia should not cast her mind control ability, [Cause Insanity](https://www.wowhead.com/spell=12888/cause-insanity), if she is engaged in combat by a single player.
Edit: [Jadefire Tricksters](https://www.wowhead.com/npc=7107/jadefire-trickster) in the same area also cast the same spell with the same issue. Probably exact same spellID.
| non_defect | salia cause insanity links what is happening an enemy demon objective of the quest seems to prioritize casting her ability every seconds regardless of how many players are engaged in combat with her if a single player is fighting her it causes all mini bosses to get out of combat and reset completely this makes the quest and encounter much more frustrating and nearly impossible to do the only way is to burst salia before she gets to cast her mind control even once after which you can kill the other mobs normally what should happen salia should not cast her mind control ability if she is engaged in combat by a single player edit in the same area also cast the same spell with the same issue probably exact same spellid | 0 |
81,613 | 10,243,651,732 | IssuesEvent | 2019-08-20 08:40:18 | SuddenMovements/NEAB | https://api.github.com/repos/SuddenMovements/NEAB | opened | Creating Better Argparse | documentation enhancement | Currently the `Argparse` is in the format
```python
parser = argparse.ArgumentParser()
parser.add_argument("total_bot_count")
...
spawn(int(args.total_bot_count), int(args.recording_bot_count), int(args.total_frames))
```
We can add typing, default value, and description. | 1.0 | Creating Better Argparse - Currently the `Argparse` is in the format
```python
parser = argparse.ArgumentParser()
parser.add_argument("total_bot_count")
...
spawn(int(args.total_bot_count), int(args.recording_bot_count), int(args.total_frames))
```
We can add typing, default value, and description. | non_defect | creating better argparse currently the argparse is in the format python parser argparse argumentparser parser add argument total bot count spawn int args total bot count int args recording bot count int args total frames we can add typing default value and description | 0 |
34,919 | 7,878,671,505 | IssuesEvent | 2018-06-26 11:00:36 | Jackie1210/Planet | https://api.github.com/repos/Jackie1210/Planet | opened | 合并两个有序数组 | easy leetcode search | 给定两个有序整数数组 nums1 和 nums2,将 nums2 合并到 nums1 中,使得 num1 成为一个有序数组。
说明:
初始化 nums1 和 nums2 的元素数量分别为 m 和 n。
你可以假设 nums1 有足够的空间(空间大小大于或等于 m + n)来保存 nums2 中的元素。
示例:
输入:
```
nums1 = [1,2,3,0,0,0], m = 3
nums2 = [2,5,6], n = 3
```
输出:
```
[1,2,2,3,5,6]
```
```js
/**
* @param {number[]} nums1
* @param {number} m
* @param {number[]} nums2
* @param {number} n
* @return {void} Do not return anything, modify nums1 in-place instead.
*/
var merge = function(nums1, m, nums2, n) {
let i=m-1;
let j=n-1;
let index=m+n-1;
while(j>=0&&i>=0){
if(nums1[i]>nums2[j]){
nums1[index]=nums1[i];
i--;
}else{
nums1[index]=nums2[j];
j--;
}
index--;
}
while(j>=0){
nums1[index--]=nums2[j--];
}
};
``` | 1.0 | 合并两个有序数组 - 给定两个有序整数数组 nums1 和 nums2,将 nums2 合并到 nums1 中,使得 num1 成为一个有序数组。
说明:
初始化 nums1 和 nums2 的元素数量分别为 m 和 n。
你可以假设 nums1 有足够的空间(空间大小大于或等于 m + n)来保存 nums2 中的元素。
示例:
输入:
```
nums1 = [1,2,3,0,0,0], m = 3
nums2 = [2,5,6], n = 3
```
输出:
```
[1,2,2,3,5,6]
```
```js
/**
* @param {number[]} nums1
* @param {number} m
* @param {number[]} nums2
* @param {number} n
* @return {void} Do not return anything, modify nums1 in-place instead.
*/
var merge = function(nums1, m, nums2, n) {
let i=m-1;
let j=n-1;
let index=m+n-1;
while(j>=0&&i>=0){
if(nums1[i]>nums2[j]){
nums1[index]=nums1[i];
i--;
}else{
nums1[index]=nums2[j];
j--;
}
index--;
}
while(j>=0){
nums1[index--]=nums2[j--];
}
};
``` | non_defect | 合并两个有序数组 给定两个有序整数数组 和 ,将 合并到 中,使得 成为一个有序数组。 说明 初始化 和 的元素数量分别为 m 和 n。 你可以假设 有足够的空间(空间大小大于或等于 m n)来保存 中的元素。 示例 输入 m n 输出 js param number param number m param number param number n return void do not return anything modify in place instead var merge function m n let i m let j n let index m n while j i if i else j index while j | 0 |
428,187 | 29,932,881,696 | IssuesEvent | 2023-06-22 10:42:23 | Azure/Industrial-IoT | https://api.github.com/repos/Azure/Industrial-IoT | closed | OPC Publisher Direct Methods Reference (Publish, Twin, Discovery) | documentation OPC Publisher | Is there any documentation about the direct methods which can be used to access the edge modules? I just deployed the minimal srcript and was wondering how to call the twin moduls without the opc-cloud-microservices running. I know that there is a lot of documentation about the rest api which cant be to far off the direct mehtod calls. | 1.0 | OPC Publisher Direct Methods Reference (Publish, Twin, Discovery) - Is there any documentation about the direct methods which can be used to access the edge modules? I just deployed the minimal srcript and was wondering how to call the twin moduls without the opc-cloud-microservices running. I know that there is a lot of documentation about the rest api which cant be to far off the direct mehtod calls. | non_defect | opc publisher direct methods reference publish twin discovery is there any documentation about the direct methods which can be used to access the edge modules i just deployed the minimal srcript and was wondering how to call the twin moduls without the opc cloud microservices running i know that there is a lot of documentation about the rest api which cant be to far off the direct mehtod calls | 0 |
66,707 | 20,597,710,251 | IssuesEvent | 2022-03-05 19:26:51 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | opened | Description on SpaceRoomView.tsx | T-Defect | ### Steps to reproduce
1. Create a space inside a space (BETA)
### Outcome
#### What did you expect?
According to https://github.com/matrix-org/matrix-react-sdk/blob/develop/src/components/structures/SpaceRoomView.tsx#L901, the description should be separated in two lines.

#### What happened instead?

### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
localhost
### Application version
develop branch
### Homeserver
_No response_
### Will you send logs?
No | 1.0 | Description on SpaceRoomView.tsx - ### Steps to reproduce
1. Create a space inside a space (BETA)
### Outcome
#### What did you expect?
According to https://github.com/matrix-org/matrix-react-sdk/blob/develop/src/components/structures/SpaceRoomView.tsx#L901, the description should be separated in two lines.

#### What happened instead?

### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
localhost
### Application version
develop branch
### Homeserver
_No response_
### Will you send logs?
No | defect | description on spaceroomview tsx steps to reproduce create a space inside a space beta outcome what did you expect according to the description should be separated in two lines what happened instead operating system no response browser information no response url for webapp localhost application version develop branch homeserver no response will you send logs no | 1 |
76,787 | 26,598,647,241 | IssuesEvent | 2023-01-23 14:18:59 | SeleniumHQ/selenium | https://api.github.com/repos/SeleniumHQ/selenium | closed | Exception "Unknown HttpClient factory jdk-http-client" with "jdk http client" in fat jar | C-java I-defect | ### What happened?
I have a java project with dependencies
```
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.7.2</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-http-jdk-client</artifactId>
<version>4.7.2</version>
</dependency>
```
I create fat jar using maven-assembly-plugin running command "clean compile assembly:single"
```
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>test.Run</mainClass>
</manifest>
<manifestEntries>
<Class-Path>.</Class-Path>
</manifestEntries>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>TestSelenium</finalName>
</configuration>
</plugin>
```
My test code
```
public static void main(String[] args) throws Exception {
System.setProperty("webdriver.http.factory", "jdk-http-client");
System.out.println("START");
DesiredCapabilities caps = new DesiredCapabilities();
caps.setBrowserName("chrome");
String url = "http://grid.url/wd/hub";
WebDriver driver = new RemoteWebDriver(
new URL(url), caps
);
driver.get("https://www.selenium.dev/");
Thread.sleep(2000);
driver.quit();
System.out.println("END");
}
```
After run jar
```
java -jar TestSelenium-jar-with-dependencies.jar
START
Exception in thread "main" java.lang.IllegalArgumentException: Unknown HttpClient factory jdk-http-client
at org.openqa.selenium.remote.http.HttpClient$Factory.create(HttpClient.java:57)
at org.openqa.selenium.remote.http.HttpClient$Factory.createDefault(HttpClient.java:73)
at org.openqa.selenium.remote.RemoteWebDriver.createExecutor(RemoteWebDriver.java:183)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:138)
at test.Run.main(Run.java:20)
```
### How can we reproduce the issue?
```shell
Run fat jar
```
### Relevant log output
```shell
java -jar TestSelenium-jar-with-dependencies.jar
START
Exception in thread "main" java.lang.IllegalArgumentException: Unknown HttpClient factory jdk-http-client
at org.openqa.selenium.remote.http.HttpClient$Factory.create(HttpClient.java:57)
at org.openqa.selenium.remote.http.HttpClient$Factory.createDefault(HttpClient.java:73)
at org.openqa.selenium.remote.RemoteWebDriver.createExecutor(RemoteWebDriver.java:183)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:138)
at test.Run.main(Run.java:20)
```
### Operating System
Linux, Mac OS
### Selenium version
4.7.2
### What are the browser(s) and version(s) where you see this issue?
Any
### What are the browser driver(s) and version(s) where you see this issue?
Any
### Are you using Selenium Grid?
4.7.2
### Java version?
14.0.2 | 1.0 | Exception "Unknown HttpClient factory jdk-http-client" with "jdk http client" in fat jar - ### What happened?
I have a java project with dependencies
```
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.7.2</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-http-jdk-client</artifactId>
<version>4.7.2</version>
</dependency>
```
I create fat jar using maven-assembly-plugin running command "clean compile assembly:single"
```
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>test.Run</mainClass>
</manifest>
<manifestEntries>
<Class-Path>.</Class-Path>
</manifestEntries>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>TestSelenium</finalName>
</configuration>
</plugin>
```
My test code
```
public static void main(String[] args) throws Exception {
System.setProperty("webdriver.http.factory", "jdk-http-client");
System.out.println("START");
DesiredCapabilities caps = new DesiredCapabilities();
caps.setBrowserName("chrome");
String url = "http://grid.url/wd/hub";
WebDriver driver = new RemoteWebDriver(
new URL(url), caps
);
driver.get("https://www.selenium.dev/");
Thread.sleep(2000);
driver.quit();
System.out.println("END");
}
```
After run jar
```
java -jar TestSelenium-jar-with-dependencies.jar
START
Exception in thread "main" java.lang.IllegalArgumentException: Unknown HttpClient factory jdk-http-client
at org.openqa.selenium.remote.http.HttpClient$Factory.create(HttpClient.java:57)
at org.openqa.selenium.remote.http.HttpClient$Factory.createDefault(HttpClient.java:73)
at org.openqa.selenium.remote.RemoteWebDriver.createExecutor(RemoteWebDriver.java:183)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:138)
at test.Run.main(Run.java:20)
```
### How can we reproduce the issue?
```shell
Run fat jar
```
### Relevant log output
```shell
java -jar TestSelenium-jar-with-dependencies.jar
START
Exception in thread "main" java.lang.IllegalArgumentException: Unknown HttpClient factory jdk-http-client
at org.openqa.selenium.remote.http.HttpClient$Factory.create(HttpClient.java:57)
at org.openqa.selenium.remote.http.HttpClient$Factory.createDefault(HttpClient.java:73)
at org.openqa.selenium.remote.RemoteWebDriver.createExecutor(RemoteWebDriver.java:183)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:138)
at test.Run.main(Run.java:20)
```
### Operating System
Linux, Mac OS
### Selenium version
4.7.2
### What are the browser(s) and version(s) where you see this issue?
Any
### What are the browser driver(s) and version(s) where you see this issue?
Any
### Are you using Selenium Grid?
4.7.2
### Java version?
14.0.2 | defect | exception unknown httpclient factory jdk http client with jdk http client in fat jar what happened i have a java project with dependencies org seleniumhq selenium selenium java org seleniumhq selenium selenium http jdk client i create fat jar using maven assembly plugin running command clean compile assembly single maven assembly plugin test run jar with dependencies testselenium my test code public static void main string args throws exception system setproperty webdriver http factory jdk http client system out println start desiredcapabilities caps new desiredcapabilities caps setbrowsername chrome string url webdriver driver new remotewebdriver new url url caps driver get thread sleep driver quit system out println end after run jar java jar testselenium jar with dependencies jar start exception in thread main java lang illegalargumentexception unknown httpclient factory jdk http client at org openqa selenium remote http httpclient factory create httpclient java at org openqa selenium remote http httpclient factory createdefault httpclient java at org openqa selenium remote remotewebdriver createexecutor remotewebdriver java at org openqa selenium remote remotewebdriver remotewebdriver java at test run main run java how can we reproduce the issue shell run fat jar relevant log output shell java jar testselenium jar with dependencies jar start exception in thread main java lang illegalargumentexception unknown httpclient factory jdk http client at org openqa selenium remote http httpclient factory create httpclient java at org openqa selenium remote http httpclient factory createdefault httpclient java at org openqa selenium remote remotewebdriver createexecutor remotewebdriver java at org openqa selenium remote remotewebdriver remotewebdriver java at test run main run java operating system linux mac os selenium version what are the browser s and version s where you see this issue any what are the browser driver s and version s where you see this issue any are you using selenium grid java version | 1 |
54,488 | 13,735,148,058 | IssuesEvent | 2020-10-05 09:43:37 | hazelcast/hazelcast | https://api.github.com/repos/hazelcast/hazelcast | closed | Parse error on 4.1-BETA new style SQL, single-quotes | Module: SQL Source: Internal Team: Core Type: Defect | On 4.1-BETA-1
These work
```
String query = "SELECT firstName FROM " + mapName + " WHERE lastName = 'Stevenson'";
String query = "SELECT firstName FROM \"" + mapName + "\" WHERE lastName = 'Stevenson'";
```
But this fails
```
String query = "SELECT firstName FROM '" + mapName + "' WHERE lastName = 'Stevenson'";
```
with
```
Was expecting one of:
"LATERAL" ...
"TABLE" ...
"UNNEST" ...
<IDENTIFIER> ...
<QUOTED_IDENTIFIER> ...
<BACK_QUOTED_IDENTIFIER> ...
<BRACKET_QUOTED_IDENTIFIER> ...
<UNICODE_QUOTED_IDENTIFIER> ...
"(" ...
```
Map name should be able to be surrounded by single quotes to be consistent with field values.
| 1.0 | Parse error on 4.1-BETA new style SQL, single-quotes - On 4.1-BETA-1
These work
```
String query = "SELECT firstName FROM " + mapName + " WHERE lastName = 'Stevenson'";
String query = "SELECT firstName FROM \"" + mapName + "\" WHERE lastName = 'Stevenson'";
```
But this fails
```
String query = "SELECT firstName FROM '" + mapName + "' WHERE lastName = 'Stevenson'";
```
with
```
Was expecting one of:
"LATERAL" ...
"TABLE" ...
"UNNEST" ...
<IDENTIFIER> ...
<QUOTED_IDENTIFIER> ...
<BACK_QUOTED_IDENTIFIER> ...
<BRACKET_QUOTED_IDENTIFIER> ...
<UNICODE_QUOTED_IDENTIFIER> ...
"(" ...
```
Map name should be able to be surrounded by single quotes to be consistent with field values.
| defect | parse error on beta new style sql single quotes on beta these work string query select firstname from mapname where lastname stevenson string query select firstname from mapname where lastname stevenson but this fails string query select firstname from mapname where lastname stevenson with was expecting one of lateral table unnest map name should be able to be surrounded by single quotes to be consistent with field values | 1 |
80,041 | 23,098,001,951 | IssuesEvent | 2022-07-26 21:46:30 | lightninglabs/lnc-web | https://api.github.com/repos/lightninglabs/lnc-web | closed | Package is being built in development environment | troubleshooting build system | Hey folks, I am experimenting with lnc-web and ran into eval() issues with a web extension. I was running WASM in the wrong script but noticed this package isn't being built in production mode.
```
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
```
This makes sense but you are not setting NODE_ENV anywhere in the CI pipeline which results in the mode being set to `development`. This mode results in the following: https://github.com/webpack/webpack/blob/c181294865dca01b28e6e316636fef5f2aad4eb6/lib/config/defaults.js#L155
devtool running in `eval` mode is not ideal and it is not recommended for production to use `false`. (https://webpack.js.org/configuration/devtool/#devtool)
Solution:
Change `"prepare": "npm run build"` --> `"prepare": "NODE_ENV=production npm run build",`
Can submit a PR unless I am missing something.
| 1.0 | Package is being built in development environment - Hey folks, I am experimenting with lnc-web and ran into eval() issues with a web extension. I was running WASM in the wrong script but noticed this package isn't being built in production mode.
```
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
```
This makes sense but you are not setting NODE_ENV anywhere in the CI pipeline which results in the mode being set to `development`. This mode results in the following: https://github.com/webpack/webpack/blob/c181294865dca01b28e6e316636fef5f2aad4eb6/lib/config/defaults.js#L155
devtool running in `eval` mode is not ideal and it is not recommended for production to use `false`. (https://webpack.js.org/configuration/devtool/#devtool)
Solution:
Change `"prepare": "npm run build"` --> `"prepare": "NODE_ENV=production npm run build",`
Can submit a PR unless I am missing something.
| non_defect | package is being built in development environment hey folks i am experimenting with lnc web and ran into eval issues with a web extension i was running wasm in the wrong script but noticed this package isn t being built in production mode mode process env node env production production development this makes sense but you are not setting node env anywhere in the ci pipeline which results in the mode being set to development this mode results in the following devtool running in eval mode is not ideal and it is not recommended for production to use false solution change prepare npm run build prepare node env production npm run build can submit a pr unless i am missing something | 0 |
659,437 | 21,927,847,177 | IssuesEvent | 2022-05-23 06:59:04 | papaya-insurtech/mango-bug-report | https://api.github.com/repos/papaya-insurtech/mango-bug-report | closed | UAT/ UI hoa hồng: thoát app sau đó vào lại báo lỗi tại thẻ hoa hồng | bug fixed priority/high f/mobile | UAT/ UI hoa hồng: thoát app sau đó vào lại báo lỗi tại thẻ hoa hồng

| 1.0 | UAT/ UI hoa hồng: thoát app sau đó vào lại báo lỗi tại thẻ hoa hồng - UAT/ UI hoa hồng: thoát app sau đó vào lại báo lỗi tại thẻ hoa hồng

| non_defect | uat ui hoa hồng thoát app sau đó vào lại báo lỗi tại thẻ hoa hồng uat ui hoa hồng thoát app sau đó vào lại báo lỗi tại thẻ hoa hồng | 0 |
54,696 | 13,886,161,125 | IssuesEvent | 2020-10-18 23:22:37 | ascott18/TellMeWhen | https://api.github.com/repos/ascott18/TellMeWhen | closed | [Shadowlands] [Bug] Crash when trying to edit text icons' displays | S: cantfix T: defect V: retail | **What version of TellMeWhen are you using? **
<!-- Found in-game at the top of TMW's configuration window. "The latest" is not a version. -->
9.0 PTR
**What steps will reproduce the problem?**
1.When the mouse moves to the box under the text display scheme, the game will exit directly
2.
3.
<!-- Add more steps if needed -->
**What do you expect to happen? What happens instead?**
**Screenshots and Export Strings**
<!-- If your issue pertains to a specific icon or group, please post the relevant export string(s).
To get an export string, open the icon editor, and click the button labeled "Import/Export/Backup". Select the "To String" option for the appropriate export type (icon, group, or profile), and then press CTRL+C to copy it to your clipboard.
Additionally, if applicable, add screenshots to help explain your problem. You can paste images directly into GitHub issues, or you can upload files as well. -->
**Additional Info**
<!-- Please add any additional information you think will be useful in reproducing and/or solving the issue. -->
| 1.0 | [Shadowlands] [Bug] Crash when trying to edit text icons' displays - **What version of TellMeWhen are you using? **
<!-- Found in-game at the top of TMW's configuration window. "The latest" is not a version. -->
9.0 PTR
**What steps will reproduce the problem?**
1.When the mouse moves to the box under the text display scheme, the game will exit directly
2.
3.
<!-- Add more steps if needed -->
**What do you expect to happen? What happens instead?**
**Screenshots and Export Strings**
<!-- If your issue pertains to a specific icon or group, please post the relevant export string(s).
To get an export string, open the icon editor, and click the button labeled "Import/Export/Backup". Select the "To String" option for the appropriate export type (icon, group, or profile), and then press CTRL+C to copy it to your clipboard.
Additionally, if applicable, add screenshots to help explain your problem. You can paste images directly into GitHub issues, or you can upload files as well. -->
**Additional Info**
<!-- Please add any additional information you think will be useful in reproducing and/or solving the issue. -->
| defect | crash when trying to edit text icons displays what version of tellmewhen are you using ptr what steps will reproduce the problem when the mouse moves to the box under the text display scheme the game will exit directly what do you expect to happen what happens instead screenshots and export strings if your issue pertains to a specific icon or group please post the relevant export string s to get an export string open the icon editor and click the button labeled import export backup select the to string option for the appropriate export type icon group or profile and then press ctrl c to copy it to your clipboard additionally if applicable add screenshots to help explain your problem you can paste images directly into github issues or you can upload files as well additional info | 1 |
41,914 | 10,705,798,973 | IssuesEvent | 2019-10-24 14:19:45 | idaholab/moose | https://api.github.com/repos/idaholab/moose | closed | `ADDensity` and `Density` required variables are not the same | T: defect | ## Bug Description
<!--A clear and concise description of the problem (Note: A missing feature is not a bug).-->
`ADDensity` has displacements as required coupled variables. `Density` does not, but has them as optional coupled variables. For thermal only simulations, required displacements does not work.
## Steps to Reproduce
<!--Steps to reproduce the behavior (input file, or modifications to an existing input file, etc.)-->
Find any thermal only tests that has `Density` and convert it to an automatic differentiation (AD) approach; this usually requires changing the kernels to AD as well.
## Impact
<!--Does this prevent you from getting your work done, or is it more of an annoyance?-->
I am currently converting non-AD material models to AD. In doing the tests, ADDensity did not behave as I expected it to. The required displacements are preventing the converted tests from running. | 1.0 | `ADDensity` and `Density` required variables are not the same - ## Bug Description
<!--A clear and concise description of the problem (Note: A missing feature is not a bug).-->
`ADDensity` has displacements as required coupled variables. `Density` does not, but has them as optional coupled variables. For thermal only simulations, required displacements does not work.
## Steps to Reproduce
<!--Steps to reproduce the behavior (input file, or modifications to an existing input file, etc.)-->
Find any thermal only tests that has `Density` and convert it to an automatic differentiation (AD) approach; this usually requires changing the kernels to AD as well.
## Impact
<!--Does this prevent you from getting your work done, or is it more of an annoyance?-->
I am currently converting non-AD material models to AD. In doing the tests, ADDensity did not behave as I expected it to. The required displacements are preventing the converted tests from running. | defect | addensity and density required variables are not the same bug description addensity has displacements as required coupled variables density does not but has them as optional coupled variables for thermal only simulations required displacements does not work steps to reproduce find any thermal only tests that has density and convert it to an automatic differentiation ad approach this usually requires changing the kernels to ad as well impact i am currently converting non ad material models to ad in doing the tests addensity did not behave as i expected it to the required displacements are preventing the converted tests from running | 1 |
36,987 | 8,198,677,414 | IssuesEvent | 2018-08-31 17:16:25 | google/googletest | https://api.github.com/repos/google/googletest | closed | Building fails on r477 | Priority-Medium Type-Defect auto-migrated | _From @GoogleCodeExporter on August 24, 2015 22:40_
```
$ cat
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock-stamp/googlemock-
build-err.log
In file included from
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/src/gmock-all.cc:
40:
In file included from
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/gmo
ck.h:58:
In file included from
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/gmo
ck-actions.h:46:
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:453:27: error: use of undeclared identifier
'RelationToSourceReference'
return type(array, N, RelationToSourceReference());
^
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:460:27: error: use of undeclared identifier
'RelationToSourceCopy'
return type(array, N, RelationToSourceCopy());
^
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:477:47: error: use of undeclared identifier
'RelationToSourceReference'
return type(get<0>(array), get<1>(array), RelationToSourceReference());
^
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:480:47: error: use of undeclared identifier
'RelationToSourceCopy'
return type(get<0>(array), get<1>(array), RelationToSourceCopy());
^
4 errors generated.
make[5]: *** [CMakeFiles/gmock.dir/src/gmock-all.cc.o] Error 1
make[4]: *** [CMakeFiles/gmock.dir/all] Error 2
make[3]: *** [all] Error 2
```
Original issue reported on code.google.com by `Octavius@gmail.com` on 16 Jun 2014 at 2:56
_Copied from original issue: google/googlemock#167_
| 1.0 | Building fails on r477 - _From @GoogleCodeExporter on August 24, 2015 22:40_
```
$ cat
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock-stamp/googlemock-
build-err.log
In file included from
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/src/gmock-all.cc:
40:
In file included from
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/gmo
ck.h:58:
In file included from
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/gmo
ck-actions.h:46:
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:453:27: error: use of undeclared identifier
'RelationToSourceReference'
return type(array, N, RelationToSourceReference());
^
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:460:27: error: use of undeclared identifier
'RelationToSourceCopy'
return type(array, N, RelationToSourceCopy());
^
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:477:47: error: use of undeclared identifier
'RelationToSourceReference'
return type(get<0>(array), get<1>(array), RelationToSourceReference());
^
/Library/Caches/Homebrew/zmqcpp--git/ThirdParty/src/googlemock/include/gmock/int
ernal/gmock-internal-utils.h:480:47: error: use of undeclared identifier
'RelationToSourceCopy'
return type(get<0>(array), get<1>(array), RelationToSourceCopy());
^
4 errors generated.
make[5]: *** [CMakeFiles/gmock.dir/src/gmock-all.cc.o] Error 1
make[4]: *** [CMakeFiles/gmock.dir/all] Error 2
make[3]: *** [all] Error 2
```
Original issue reported on code.google.com by `Octavius@gmail.com` on 16 Jun 2014 at 2:56
_Copied from original issue: google/googlemock#167_
| defect | building fails on from googlecodeexporter on august cat library caches homebrew zmqcpp git thirdparty src googlemock stamp googlemock build err log in file included from library caches homebrew zmqcpp git thirdparty src googlemock src gmock all cc in file included from library caches homebrew zmqcpp git thirdparty src googlemock include gmock gmo ck h in file included from library caches homebrew zmqcpp git thirdparty src googlemock include gmock gmo ck actions h library caches homebrew zmqcpp git thirdparty src googlemock include gmock int ernal gmock internal utils h error use of undeclared identifier relationtosourcereference return type array n relationtosourcereference library caches homebrew zmqcpp git thirdparty src googlemock include gmock int ernal gmock internal utils h error use of undeclared identifier relationtosourcecopy return type array n relationtosourcecopy library caches homebrew zmqcpp git thirdparty src googlemock include gmock int ernal gmock internal utils h error use of undeclared identifier relationtosourcereference return type get array get array relationtosourcereference library caches homebrew zmqcpp git thirdparty src googlemock include gmock int ernal gmock internal utils h error use of undeclared identifier relationtosourcecopy return type get array get array relationtosourcecopy errors generated make error make error make error original issue reported on code google com by octavius gmail com on jun at copied from original issue google googlemock | 1 |
56,584 | 15,190,212,381 | IssuesEvent | 2021-02-15 17:33:35 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | opened | 508-defect-2❗ [COGNITION, SEMANTIC MARKUP]: Form field instructions should be descriptive and MUST be associated with inputs and buttons | 508-defect-2 508-issue-cognition 508-issue-semantic-markup 508/Accessibility direct deposit staging-review | # [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2)
<!--
Enter an issue title using the format [ERROR TYPE]: Brief description of the problem
---
[SCREENREADER]: Edit buttons need aria-label for context
[KEYBOARD]: Add another user link will not receive keyboard focus
[AXE-CORE]: Heading levels should increase by one
[COGNITION]: Error messages should be more specific
[COLOR]: Blue button on blue background does not have sufficient contrast ratio
---
-->
<!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. -->
## Feedback framework
- **❗️ Must** for if the feedback must be applied
- **⚠️ Should** if the feedback is best practice
- **✔️ Consider** for suggestions/enhancements
## Definition of done
1. Review and acknowledge feedback.
1. Fix and/or document decisions made.
1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix.
## Point of Contact
<!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. -->
**VFS Point of Contact:** _Josh_
## User Story or Problem Statement
As a screen reader user, I want to know which fields are grouped together so that I can have an equivalent experience to sighted users when navigating my direct deposit options.
## Details
> Using the right HTML elements when implementing forms is essential to ensure they can be used by as many people as possible including screen reader users.
Sighted users will be able to _visually_ determine that fields are grouped together thanks to the grey border. However, screen reader users will not have access to the same information for the following reasons:
- Upon clicking "edit," screen reader users may likely tab to the first item expecting a form field. Screen reader users will hear "Where can I find these numbers," which has no meaning on its own without a group label (What numbers?). The first set of instructions will be skipped, and will not be described to the user upon landing on the help accordion.
- Upon tabbing again and entering the first input field, users will hear "Routing number (Your bank’s name will appear after you add the 9-digit routing number)," but no other information to help contextualize the task. Screen reader users with cognitive disabilities may struggle to remember why they are providing this information.
- Upon tabbing again, users will hear "Account number (This should be no more than 17 digits)(*Required)." Screen reader users may struggle to understand that this is grouped with the first input field as they would not have heard the initial instructions "Please enter your bank’s routing and account numbers and your account type" while tabbing.
## Acceptance Criteria
- [ ] Fields are semantically grouped and labelled
- [ ] Instructions are descriptive
## Environment
* Operating System: any
* Browser: all
* Screenreading device: any
* Server destination: all
## Steps to Recreate
1. Enter `https://staging.va.gov/profile` in browser
2. Start any screenreader
3. Tab to the first edit button and select it
4. Confirm the screen reader announces some variation of "Where can I find these numbers, button"-- but _does not_ announce a group label (e.g. edit bank account for disability compensation and pension benefits)
## Ideal Solution
Ideally, a preferred semantic approach to solving this problem would be to, upon activating edit mode,
- extend the `form` to before the `dfn` "Account" in the DOM
- wrap the `form` contents within a `fieldset`
- convert the `dfn` "Account" to a `legend` labelled "Edit bank account for disability compensation and pension benefits"
- ensure the `legend` is the first child of the `fieldset`
```html
<form>
<fieldset>
<legend> <!-- Must be the first child in order to be announced -->
Edit bank account
</legend
<!-- fields go here -->
</fieldset>
</form>
```
This would add a semantic group label to all fields within the fieldset. If a screen reader were to tab to the first button "Where can I find these numbers..." the screen reader would also announce, "edit bank account" which contextualizes its use (bonus points if we can rewrite "where can I find these numbers" to "where can I find my bank account numbers" to meet link purpose). This would apply to all other fields, including the update and cancel buttons. We would not need to rely on `aria`, which meets the first rule of `aria` which is to _not_ use `aria` when it can be avoided with pure semantic html.
## Band Aid Solution
That being said, the ideal solution may require extensive changes to the form design system. An alternative, and less change-heavy method of meeting the acceptance criteria _might_ be to use `role="group"` and `aria-label`, but more testing would be needed.
```html
<div role="group" aria-label="Edit bank account for disability compensation and pension benefits">
<span>
<div id="errors"></div>
<p class="vads-u-margin-top--0">Please enter your bank’s routing and account numbers and your account type.</p>
<!-- etc -->
</span>
</div>
```
## WCAG or Vendor Guidance (optional)
* [Using the fieldset and legend elements, gov.uk](https://accessibility.blog.gov.uk/2016/07/22/using-the-fieldset-and-legend-elements/)
* [Grouping controls, WCAG guidance](https://www.w3.org/WAI/tutorials/forms/grouping/)
## Screenshots or Trace Logs
### Existing Issues
<img width="1792" alt="Screen Shot 2021-02-05 at 1 51 08 PM" src="https://user-images.githubusercontent.com/14154792/107076821-f8759c00-67b9-11eb-9a66-300a887b53cc.png">
<img width="1792" alt="Screen Shot 2021-02-05 at 1 41 31 PM" src="https://user-images.githubusercontent.com/14154792/107076824-fad7f600-67b9-11eb-817d-9be18f921b65.png">
### Proposed Ideal Solution
<img width="1717" alt="Screen Shot 2021-02-05 at 2 37 09 PM" src="https://user-images.githubusercontent.com/14154792/107080852-d0893700-67bf-11eb-86a0-3147153221d4.png">
https://user-images.githubusercontent.com/14154792/107080854-d252fa80-67bf-11eb-831a-083a019d6dc2.mov
| 1.0 | 508-defect-2❗ [COGNITION, SEMANTIC MARKUP]: Form field instructions should be descriptive and MUST be associated with inputs and buttons - # [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2)
<!--
Enter an issue title using the format [ERROR TYPE]: Brief description of the problem
---
[SCREENREADER]: Edit buttons need aria-label for context
[KEYBOARD]: Add another user link will not receive keyboard focus
[AXE-CORE]: Heading levels should increase by one
[COGNITION]: Error messages should be more specific
[COLOR]: Blue button on blue background does not have sufficient contrast ratio
---
-->
<!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. -->
## Feedback framework
- **❗️ Must** for if the feedback must be applied
- **⚠️ Should** if the feedback is best practice
- **✔️ Consider** for suggestions/enhancements
## Definition of done
1. Review and acknowledge feedback.
1. Fix and/or document decisions made.
1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix.
## Point of Contact
<!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. -->
**VFS Point of Contact:** _Josh_
## User Story or Problem Statement
As a screen reader user, I want to know which fields are grouped together so that I can have an equivalent experience to sighted users when navigating my direct deposit options.
## Details
> Using the right HTML elements when implementing forms is essential to ensure they can be used by as many people as possible including screen reader users.
Sighted users will be able to _visually_ determine that fields are grouped together thanks to the grey border. However, screen reader users will not have access to the same information for the following reasons:
- Upon clicking "edit," screen reader users may likely tab to the first item expecting a form field. Screen reader users will hear "Where can I find these numbers," which has no meaning on its own without a group label (What numbers?). The first set of instructions will be skipped, and will not be described to the user upon landing on the help accordion.
- Upon tabbing again and entering the first input field, users will hear "Routing number (Your bank’s name will appear after you add the 9-digit routing number)," but no other information to help contextualize the task. Screen reader users with cognitive disabilities may struggle to remember why they are providing this information.
- Upon tabbing again, users will hear "Account number (This should be no more than 17 digits)(*Required)." Screen reader users may struggle to understand that this is grouped with the first input field as they would not have heard the initial instructions "Please enter your bank’s routing and account numbers and your account type" while tabbing.
## Acceptance Criteria
- [ ] Fields are semantically grouped and labelled
- [ ] Instructions are descriptive
## Environment
* Operating System: any
* Browser: all
* Screenreading device: any
* Server destination: all
## Steps to Recreate
1. Enter `https://staging.va.gov/profile` in browser
2. Start any screenreader
3. Tab to the first edit button and select it
4. Confirm the screen reader announces some variation of "Where can I find these numbers, button"-- but _does not_ announce a group label (e.g. edit bank account for disability compensation and pension benefits)
## Ideal Solution
Ideally, a preferred semantic approach to solving this problem would be to, upon activating edit mode,
- extend the `form` to before the `dfn` "Account" in the DOM
- wrap the `form` contents within a `fieldset`
- convert the `dfn` "Account" to a `legend` labelled "Edit bank account for disability compensation and pension benefits"
- ensure the `legend` is the first child of the `fieldset`
```html
<form>
<fieldset>
<legend> <!-- Must be the first child in order to be announced -->
Edit bank account
</legend
<!-- fields go here -->
</fieldset>
</form>
```
This would add a semantic group label to all fields within the fieldset. If a screen reader were to tab to the first button "Where can I find these numbers..." the screen reader would also announce, "edit bank account" which contextualizes its use (bonus points if we can rewrite "where can I find these numbers" to "where can I find my bank account numbers" to meet link purpose). This would apply to all other fields, including the update and cancel buttons. We would not need to rely on `aria`, which meets the first rule of `aria` which is to _not_ use `aria` when it can be avoided with pure semantic html.
## Band Aid Solution
That being said, the ideal solution may require extensive changes to the form design system. An alternative, and less change-heavy method of meeting the acceptance criteria _might_ be to use `role="group"` and `aria-label`, but more testing would be needed.
```html
<div role="group" aria-label="Edit bank account for disability compensation and pension benefits">
<span>
<div id="errors"></div>
<p class="vads-u-margin-top--0">Please enter your bank’s routing and account numbers and your account type.</p>
<!-- etc -->
</span>
</div>
```
## WCAG or Vendor Guidance (optional)
* [Using the fieldset and legend elements, gov.uk](https://accessibility.blog.gov.uk/2016/07/22/using-the-fieldset-and-legend-elements/)
* [Grouping controls, WCAG guidance](https://www.w3.org/WAI/tutorials/forms/grouping/)
## Screenshots or Trace Logs
### Existing Issues
<img width="1792" alt="Screen Shot 2021-02-05 at 1 51 08 PM" src="https://user-images.githubusercontent.com/14154792/107076821-f8759c00-67b9-11eb-9a66-300a887b53cc.png">
<img width="1792" alt="Screen Shot 2021-02-05 at 1 41 31 PM" src="https://user-images.githubusercontent.com/14154792/107076824-fad7f600-67b9-11eb-817d-9be18f921b65.png">
### Proposed Ideal Solution
<img width="1717" alt="Screen Shot 2021-02-05 at 2 37 09 PM" src="https://user-images.githubusercontent.com/14154792/107080852-d0893700-67bf-11eb-86a0-3147153221d4.png">
https://user-images.githubusercontent.com/14154792/107080854-d252fa80-67bf-11eb-831a-083a019d6dc2.mov
| defect | defect ❗ form field instructions should be descriptive and must be associated with inputs and buttons enter an issue title using the format brief description of the problem edit buttons need aria label for context add another user link will not receive keyboard focus heading levels should increase by one error messages should be more specific blue button on blue background does not have sufficient contrast ratio feedback framework ❗️ must for if the feedback must be applied ⚠️ should if the feedback is best practice ✔️ consider for suggestions enhancements definition of done review and acknowledge feedback fix and or document decisions made accessibility specialist will close ticket after reviewing documented decisions validating fix point of contact vfs point of contact josh user story or problem statement as a screen reader user i want to know which fields are grouped together so that i can have an equivalent experience to sighted users when navigating my direct deposit options details using the right html elements when implementing forms is essential to ensure they can be used by as many people as possible including screen reader users sighted users will be able to visually determine that fields are grouped together thanks to the grey border however screen reader users will not have access to the same information for the following reasons upon clicking edit screen reader users may likely tab to the first item expecting a form field screen reader users will hear where can i find these numbers which has no meaning on its own without a group label what numbers the first set of instructions will be skipped and will not be described to the user upon landing on the help accordion upon tabbing again and entering the first input field users will hear routing number your bank’s name will appear after you add the digit routing number but no other information to help contextualize the task screen reader users with cognitive disabilities may struggle to remember why they are providing this information upon tabbing again users will hear account number this should be no more than digits required screen reader users may struggle to understand that this is grouped with the first input field as they would not have heard the initial instructions please enter your bank’s routing and account numbers and your account type while tabbing acceptance criteria fields are semantically grouped and labelled instructions are descriptive environment operating system any browser all screenreading device any server destination all steps to recreate enter in browser start any screenreader tab to the first edit button and select it confirm the screen reader announces some variation of where can i find these numbers button but does not announce a group label e g edit bank account for disability compensation and pension benefits ideal solution ideally a preferred semantic approach to solving this problem would be to upon activating edit mode extend the form to before the dfn account in the dom wrap the form contents within a fieldset convert the dfn account to a legend labelled edit bank account for disability compensation and pension benefits ensure the legend is the first child of the fieldset html edit bank account legend this would add a semantic group label to all fields within the fieldset if a screen reader were to tab to the first button where can i find these numbers the screen reader would also announce edit bank account which contextualizes its use bonus points if we can rewrite where can i find these numbers to where can i find my bank account numbers to meet link purpose this would apply to all other fields including the update and cancel buttons we would not need to rely on aria which meets the first rule of aria which is to not use aria when it can be avoided with pure semantic html band aid solution that being said the ideal solution may require extensive changes to the form design system an alternative and less change heavy method of meeting the acceptance criteria might be to use role group and aria label but more testing would be needed html please enter your bank’s routing and account numbers and your account type wcag or vendor guidance optional screenshots or trace logs existing issues img width alt screen shot at pm src img width alt screen shot at pm src proposed ideal solution img width alt screen shot at pm src | 1 |
30,773 | 25,064,820,553 | IssuesEvent | 2022-11-07 07:14:05 | ansible-collections/community.general | https://api.github.com/repos/ansible-collections/community.general | closed | Variables sent via 'environment' when using 'django_manage' and 'become_user' are not present in host | bug module has_pr traceback plugins web_infrastructure | ### Summary
have a file with a list of variables and their values, originally templated but now static as I try to debug this issue. It contains a number of variables that are required by Django, such as `DJANGO_SECRET_KEY`, `DJANGO_SITE_NAME`, and so on.
I use `ansible.builtin.include_vars` to load these variables into a variable in the playbook.
I use `community.general.django_manage` to run the `migrate` command, using the `environment:` option to pass the previously loaded variables, but Django complains that it cannot find them.
I've checked with `ansible-playbook -vvv` and, apparently, they are being sent to the host.
I am not sure whether it has to do with `environment:` or with using such directive when also using `become`, `become_user` and `become_method`. I have tried with `become_method: sudo` and the end result is the same.
I've found issue 2568 [1] from 2013 where the proposed solution was using the `environment:` directive, which is also backed by [the docs](name: envvars), if I've read correctly.
[1] https://github.com/ansible/ansible/issues/2568
Thanks in advance.
### Issue Type
Bug Report
### Component Name
community.general.django_manage
### Ansible Version
```console
$ ansible --version
ansible [core 2.12.9]
config file = /etc/ansible/ansible.cfg
configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python3/dist-packages/ansible
ansible collection location = /root/.ansible/collections:/usr/share/ansible/collections
executable location = /usr/bin/ansible
python version = 3.9.2 (default, Feb 28 2021, 17:03:44) [GCC 10.2.1 20210110]
jinja version = 2.11.3
libyaml = True
```
### Community.general Version
```console
$ ansible-galaxy collection list community.general
# /usr/lib/python3/dist-packages/ansible_collections
Collection Version
----------------- -------
community.general 4.8.3
# /root/.ansible/collections/ansible_collections
Collection Version
----------------- -------
community.general 5.2.0
```
### Configuration
```console (paste below)
$ ansible-config dump --only-changed
ANSIBLE_PIPELINING(/etc/ansible/ansible.cfg) = True
CACHE_PLUGIN(/etc/ansible/ansible.cfg) = jsonfile
CACHE_PLUGIN_CONNECTION(/etc/ansible/ansible.cfg) = /var/cache/ansible
DEFAULT_HOST_LIST(/etc/ansible/ansible.cfg) = ['/etc/ansible/hosts']
DEFAULT_PRIVATE_KEY_FILE(/etc/ansible/ansible.cfg) = /root/.ssh/ansible
DEFAULT_REMOTE_PORT(/etc/ansible/ansible.cfg) = 22
DEFAULT_REMOTE_USER(/etc/ansible/ansible.cfg) = root
HOST_KEY_CHECKING(/etc/ansible/ansible.cfg) = False
BECOME:
======
CACHE:
=====
jsonfile:
________
_uri(/etc/ansible/ansible.cfg) = /var/cache/ansible
CALLBACK:
========
CLICONF:
=======
CONNECTION:
==========
local:
_____
pipelining(/etc/ansible/ansible.cfg) = True
paramiko_ssh:
____________
host_key_checking(/etc/ansible/ansible.cfg) = False
remote_user(/etc/ansible/ansible.cfg) = root
psrp:
____
pipelining(/etc/ansible/ansible.cfg) = True
ssh:
___
host_key_checking(/etc/ansible/ansible.cfg) = False
port(/etc/ansible/ansible.cfg) = 22
private_key_file(/etc/ansible/ansible.cfg) = /root/.ssh/ansible
remote_user(/etc/ansible/ansible.cfg) = root
ssh_args(/etc/ansible/ansible.cfg) = -o ControlMaster=auto -o ControlPersist=60s
winrm:
_____
pipelining(/etc/ansible/ansible.cfg) = True
HTTPAPI:
=======
INVENTORY:
=========
LOOKUP:
======
NETCONF:
=======
SHELL:
=====
VARS:
====
```
```
### OS / Environment
Debian 11 Bullseye x86_64 running inside a LXC on the latest version of Proxmox 7. The container was created using Proxmox's Debian 11 template, then updated and configured with locales and so on.
### Steps to Reproduce
<!--- Paste example playbooks or commands between quotes below -->
This is my `host_vars/django1.yml` file:
```yaml
---
# Host variables to be set as environment variables in tasks that need it
POSTGRES_PASSWORD: "<password>"
POSTGRES_USER: "dbuser"
POSTGRES_DB: "dbname"
POSTGRES_HOST: "dbhost"
POSTGRES_PORT: 5432
POSTGRES_SSLMODE: "verify-full"
POSTGRES_SSLCA: "/etc/ssl/certs/ISRG_Root_X1.pem"
POSTGRES_APPNAME: "myproject"
DJANGO_SITE_NAME: "mysite"
DJANGO_SITE_PASSWORD: "mypassword"
DJANGO_SITE_USER: "myuser"
DJANGO_SITE_ID: 2
DJANGO_SECRET_KEY: "<very-long-and-random-secret>"
[..]
```
This is my playbook:
```yaml
---
- hosts: django
tasks:
- name: builtin | include_vars | load host vars
ansible.builtin.include_vars:
file: "host_vars/{{ inventory_hostname_short }}.yml"
name: envvars
- name: community.general | django_manage | update database schema
community.general.django_manage:
command: migrate
settings: myproject.settings
project_path: "/opt/django/src"
virtualenv: "/opt/django/venv"
become: true
become_user: django
become_method: su
environment: "{{ envvars }}"
```
`django` is a group of hosts, defined in the `/etc/ansible/hosts` as:
```ini
[all]
ansible[1:1].domain.com ansible_connection=local
django[1:3].domain.com
[django]
django1.domain.com ansible_host=192.168.0.112
django2.domain.com ansible_host=192.168.0.119
django3.domain.com ansible_host=192.168.0.120
```
The playbook is being executed like this:
```ansible-playbook django-test.yml --limit django1.domain.com```
### Expected Results
I expected the command to execute without issues, finding the environment variables sent to do its job.
### Actual Results
```console
root@ansible1:~/ansible/playbooks# ansible-playbook django-test.yml --limit django1.domain.com
PLAY [django] ***************************************************************************************************************
TASK [Gathering Facts] ******************************************************************************************************
ok: [django1.domain.com]
TASK [builtin | include_vars | load host vars] ******************************************************************************
ok: [django1.domain.com]
TASK [community.general | django_manage | update database schema] ***********************************************************
fatal: [django1.domain.com]: FAILED! => {"changed": false, "cmd": ["./manage.py", "migrate", "--noinput", "--settings=myproject.settings"], "msg": "\n:stderr: Traceback (most recent call last):\n File \"/opt/django/src/./manage.py\", line 22, in <module>\n execute_from_command_line(sys.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 381, in execute_from_command_line\n utility.execute()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 375, in execute\n self.fetch_command(subcommand).run_from_argv(self.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 224, in fetch_command\n klass = load_command_class(app_name, subcommand)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 36, in load_command_class\n module = import_module('%s.management.commands.%s' % (app_name, name))\n File \"/usr/lib/python3.9/importlib/__init__.py\", line 127, in import_module\n return _bootstrap._gcd_import(name[level:], package, level)\n File \"<frozen importlib._bootstrap>\", line 1030, in _gcd_import\n File \"<frozen importlib._bootstrap>\", line 1007, in _find_and_load\n File \"<frozen importlib._bootstrap>\", line 986, in _find_and_load_unlocked\n File \"<frozen importlib._bootstrap>\", line 680, in _load_unlocked\n File \"<frozen importlib._bootstrap_external>\", line 790, in exec_module\n File \"<frozen importlib._bootstrap>\", line 228, in _call_with_frames_removed\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/commands/migrate.py\", line 14, in <module>\n from django.db.migrations.autodetector import MigrationAutodetector\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/autodetector.py\", line 11, in <module>\n from django.db.migrations.questioner import MigrationQuestioner\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/questioner.py\", line 9, in <module>\n from .loader import MigrationLoader\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/loader.py\", line 8, in <module>\n from django.db.migrations.recorder import MigrationRecorder\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 9, in <module>\n class MigrationRecorder:\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 22, in MigrationRecorder\n class Migration(models.Model):\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/models/base.py\", line 87, in __new__\n app_config = apps.get_containing_app_config(module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 249, in get_containing_app_config\n self.check_apps_ready()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 131, in check_apps_ready\n settings.INSTALLED_APPS\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 57, in __getattr__\n self._setup(name)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 44, in _setup\n self._wrapped = Settings(settings_module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 126, in __init__\n raise ImproperlyConfigured(\"The SECRET_KEY setting must not be empty.\")\ndjango.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.\n", "path": "/opt/django/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "syspath": ["/tmp/ansible_community.general.django_manage_payload_73j09wsy/ansible_community.general.django_manage_payload.zip", "/usr/lib/python39.zip", "/usr/lib/python3.9", "/usr/lib/python3.9/lib-dynload", "/usr/local/lib/python3.9/dist-packages", "/usr/lib/python3/dist-packages"]}
PLAY RECAP ******************************************************************************************************************
django1.domain.com : ok=2 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0
```
This is an excerpt of the output using `-vvv`:
```console
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' 192.168.0.112 '/bin/sh -c '"'"'chmod u+x /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/ /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/AnsiballZ_django_manage.py && sleep 0'"'"''
<192.168.0.112> (0, b'', b'')
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' 192.168.0.112 '/bin/sh -c '"'"'chown django /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/ /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/AnsiballZ_django_manage.py && sleep 0'"'"''
<192.168.0.112> (0, b'', b'')
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' -tt 192.168.0.112 '/bin/sh -c '"'"'su django -c '"'"'"'"'"'"'"'"'/bin/sh -c '"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'echo BECOME-SUCCESS-ptxrsvpoyqfxqmgdubcktnnnaljwmagj ; POSTGRES_PASSWORD=<password> POSTGRES_USER=django_mysite POSTGRES_DB=django_mysite POSTGRES_HOST=dbhost.domain.com POSTGRES_PORT=5432 POSTGRES_SSLMODE=verify-full POSTGRES_SSLCA=/etc/ssl/certs/ISRG_Root_X1.pem POSTGRES_APPNAME=myproject DJANGO_SITE_NAME=mysite DJANGO_SITE_PASSWORD=mysite DJANGO_SITE_USER=mysite DJANGO_SITE_ID=2 DJANGO_SECRET_KEY='"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'<very-long-and-random-secret>'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"' META_SITE_PROTOCOL=https PUBLIC_URL=https://mysite.customer.com GOOGLE_MAPS_API_KEY=<api-key> RECAPTCHA_PUBLIC_KEY=<recaptcha-api-key> RECAPTCHA_PRIVATE_KEY=<recaptcha-private-key> RECAPTCHA_SCORE_THRESHOLD=0.6 PREFIX_DEFAULT_LANGUAGE=1 INSTALLED_CUSTOM_APPS=None INSTALLED_CUSTOM_REPOS=None DJANGO_DEBUG=0 DJANGO_SETTINGS_MODULE=myproject.settings.production DJANGO_LOGS_DIR=/opt/django/logs DJANGO_STATIC_mysite=/opt/django/static DJANGO_MEDIA_mysite=/opt/django/media /usr/bin/python3 /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/AnsiballZ_django_manage.py'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"''"'"'"'"'"'"'"'"' && sleep 0'"'"''
Escalation succeeded
<192.168.0.112> (1, b'\r\n{"cmd": ["./manage.py", "migrate", "--noinput", "--settings=myproject.settings"], "path": "/opt/django/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "syspath": ["/tmp/ansible_community.general.django_manage_payload_tjoxkqd3/ansible_community.general.django_manage_payload.zip", "/usr/lib/python39.zip", "/usr/lib/python3.9", "/usr/lib/python3.9/lib-dynload", "/usr/local/lib/python3.9/dist-packages", "/usr/lib/python3/dist-packages"], "failed": true, "msg": "\\n:stderr: Traceback (most recent call last):\\n File \\"/opt/django/src/./manage.py\\", line 22, in <module>\\n execute_from_command_line(sys.argv)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 381, in execute_from_command_line\\n utility.execute()\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 375, in execute\\n self.fetch_command(subcommand).run_from_argv(self.argv)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 224, in fetch_command\\n klass = load_command_class(app_name, subcommand)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 36, in load_command_class\\n module = import_module(\'%s.management.commands.%s\' % (app_name, name))\\n File \\"/usr/lib/python3.9/importlib/__init__.py\\", line 127, in import_module\\n return _bootstrap._gcd_import(name[level:], package, level)\\n File \\"<frozen importlib._bootstrap>\\", line 1030, in _gcd_import\\n File \\"<frozen importlib._bootstrap>\\", line 1007, in _find_and_load\\n File \\"<frozen importlib._bootstrap>\\", line 986, in _find_and_load_unlocked\\n File \\"<frozen importlib._bootstrap>\\", line 680, in _load_unlocked\\n File \\"<frozen importlib._bootstrap_external>\\", line 790, in exec_module\\n File \\"<frozen importlib._bootstrap>\\", line 228, in _call_with_frames_removed\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/commands/migrate.py\\", line 14, in <module>\\n from django.db.migrations.autodetector import MigrationAutodetector\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/autodetector.py\\", line 11, in <module>\\n from django.db.migrations.questioner import MigrationQuestioner\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/questioner.py\\", line 9, in <module>\\n from .loader import MigrationLoader\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/loader.py\\", line 8, in <module>\\n from django.db.migrations.recorder import MigrationRecorder\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\\", line 9, in <module>\\n class MigrationRecorder:\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\\", line 22, in MigrationRecorder\\n class Migration(models.Model):\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/models/mysite.py\\", line 87, in __new__\\n app_config = apps.get_containing_app_config(module)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\\", line 249, in get_containing_app_config\\n self.check_apps_ready()\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\\", line 131, in check_apps_ready\\n settings.INSTALLED_APPS\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\\", line 57, in __getattr__\\n self._setup(name)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\\", line 44, in _setup\\n self._wrapped = Settings(settings_module)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\\", line 126, in __init__\\n raise ImproperlyConfigured(\\"The SECRET_KEY setting must not be empty.\\")\\ndjango.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.\\n", "invocation": {"module_args": {"command": "migrate", "settings": "myproject.settings", "project_path": "/opt/django/src", "virtualenv": "/opt/django/venv", "clear": false, "failfast": false, "pythonpath": null, "apps": null, "cache_table": null, "datamysite": null, "fixtures": null, "testrunner": null, "skip": null, "merge": null, "link": null}}}\r\n', b'Shared connection to 192.168.0.112 closed.\r\n')
<192.168.0.112> Failed to connect to the host via ssh: Shared connection to 192.168.0.112 closed.
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' 192.168.0.112 '/bin/sh -c '"'"'rm -f -r /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/ > /dev/null 2>&1 && sleep 0'"'"''
<192.168.0.112> (0, b'', b'')
fatal: [django1.domain.com]: FAILED! => {
"changed": false,
"cmd": [
"./manage.py",
"migrate",
"--noinput",
"--settings=myproject.settings"
],
"invocation": {
"module_args": {
"apps": null,
"cache_table": null,
"clear": false,
"command": "migrate",
"datamysite": null,
"failfast": false,
"fixtures": null,
"link": null,
"merge": null,
"project_path": "/opt/django/src",
"pythonpath": null,
"settings": "myproject.settings",
"skip": null,
"testrunner": null,
"virtualenv": "/opt/django/venv"
}
},
"msg": "\n:stderr: Traceback (most recent call last):\n File \"/opt/django/src/./manage.py\", line 22, in <module>\n execute_from_command_line(sys.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 381, in execute_from_command_line\n utility.execute()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 375, in execute\n self.fetch_command(subcommand).run_from_argv(self.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 224, in fetch_command\n klass = load_command_class(app_name, subcommand)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 36, in load_command_class\n module = import_module('%s.management.commands.%s' % (app_name, name))\n File \"/usr/lib/python3.9/importlib/__init__.py\", line 127, in import_module\n return _bootstrap._gcd_import(name[level:], package, level)\n File \"<frozen importlib._bootstrap>\", line 1030, in _gcd_import\n File \"<frozen importlib._bootstrap>\", line 1007, in _find_and_load\n File \"<frozen importlib._bootstrap>\", line 986, in _find_and_load_unlocked\n File \"<frozen importlib._bootstrap>\", line 680, in _load_unlocked\n File \"<frozen importlib._bootstrap_external>\", line 790, in exec_module\n File \"<frozen importlib._bootstrap>\", line 228, in _call_with_frames_removed\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/commands/migrate.py\", line 14, in <module>\n from django.db.migrations.autodetector import MigrationAutodetector\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/autodetector.py\", line 11, in <module>\n from django.db.migrations.questioner import MigrationQuestioner\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/questioner.py\", line 9, in <module>\n from .loader import MigrationLoader\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/loader.py\", line 8, in <module>\n from django.db.migrations.recorder import MigrationRecorder\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 9, in <module>\n class MigrationRecorder:\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 22, in MigrationRecorder\n class Migration(models.Model):\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/models/mysite.py\", line 87, in __new__\n app_config = apps.get_containing_app_config(module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 249, in get_containing_app_config\n self.check_apps_ready()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 131, in check_apps_ready\n settings.INSTALLED_APPS\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 57, in __getattr__\n self._setup(name)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 44, in _setup\n self._wrapped = Settings(settings_module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 126, in __init__\n raise ImproperlyConfigured(\"The SECRET_KEY setting must not be empty.\")\ndjango.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.\n",
"path": "/opt/django/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"syspath": [
"/tmp/ansible_community.general.django_manage_payload_tjoxkqd3/ansible_community.general.django_manage_payload.zip",
"/usr/lib/python39.zip",
"/usr/lib/python3.9",
"/usr/lib/python3.9/lib-dynload",
"/usr/local/lib/python3.9/dist-packages",
"/usr/lib/python3/dist-packages"
]
}
```
### Code of Conduct
- [X] I agree to follow the Ansible Code of Conduct | 1.0 | Variables sent via 'environment' when using 'django_manage' and 'become_user' are not present in host - ### Summary
have a file with a list of variables and their values, originally templated but now static as I try to debug this issue. It contains a number of variables that are required by Django, such as `DJANGO_SECRET_KEY`, `DJANGO_SITE_NAME`, and so on.
I use `ansible.builtin.include_vars` to load these variables into a variable in the playbook.
I use `community.general.django_manage` to run the `migrate` command, using the `environment:` option to pass the previously loaded variables, but Django complains that it cannot find them.
I've checked with `ansible-playbook -vvv` and, apparently, they are being sent to the host.
I am not sure whether it has to do with `environment:` or with using such directive when also using `become`, `become_user` and `become_method`. I have tried with `become_method: sudo` and the end result is the same.
I've found issue 2568 [1] from 2013 where the proposed solution was using the `environment:` directive, which is also backed by [the docs](name: envvars), if I've read correctly.
[1] https://github.com/ansible/ansible/issues/2568
Thanks in advance.
### Issue Type
Bug Report
### Component Name
community.general.django_manage
### Ansible Version
```console
$ ansible --version
ansible [core 2.12.9]
config file = /etc/ansible/ansible.cfg
configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python3/dist-packages/ansible
ansible collection location = /root/.ansible/collections:/usr/share/ansible/collections
executable location = /usr/bin/ansible
python version = 3.9.2 (default, Feb 28 2021, 17:03:44) [GCC 10.2.1 20210110]
jinja version = 2.11.3
libyaml = True
```
### Community.general Version
```console
$ ansible-galaxy collection list community.general
# /usr/lib/python3/dist-packages/ansible_collections
Collection Version
----------------- -------
community.general 4.8.3
# /root/.ansible/collections/ansible_collections
Collection Version
----------------- -------
community.general 5.2.0
```
### Configuration
```console (paste below)
$ ansible-config dump --only-changed
ANSIBLE_PIPELINING(/etc/ansible/ansible.cfg) = True
CACHE_PLUGIN(/etc/ansible/ansible.cfg) = jsonfile
CACHE_PLUGIN_CONNECTION(/etc/ansible/ansible.cfg) = /var/cache/ansible
DEFAULT_HOST_LIST(/etc/ansible/ansible.cfg) = ['/etc/ansible/hosts']
DEFAULT_PRIVATE_KEY_FILE(/etc/ansible/ansible.cfg) = /root/.ssh/ansible
DEFAULT_REMOTE_PORT(/etc/ansible/ansible.cfg) = 22
DEFAULT_REMOTE_USER(/etc/ansible/ansible.cfg) = root
HOST_KEY_CHECKING(/etc/ansible/ansible.cfg) = False
BECOME:
======
CACHE:
=====
jsonfile:
________
_uri(/etc/ansible/ansible.cfg) = /var/cache/ansible
CALLBACK:
========
CLICONF:
=======
CONNECTION:
==========
local:
_____
pipelining(/etc/ansible/ansible.cfg) = True
paramiko_ssh:
____________
host_key_checking(/etc/ansible/ansible.cfg) = False
remote_user(/etc/ansible/ansible.cfg) = root
psrp:
____
pipelining(/etc/ansible/ansible.cfg) = True
ssh:
___
host_key_checking(/etc/ansible/ansible.cfg) = False
port(/etc/ansible/ansible.cfg) = 22
private_key_file(/etc/ansible/ansible.cfg) = /root/.ssh/ansible
remote_user(/etc/ansible/ansible.cfg) = root
ssh_args(/etc/ansible/ansible.cfg) = -o ControlMaster=auto -o ControlPersist=60s
winrm:
_____
pipelining(/etc/ansible/ansible.cfg) = True
HTTPAPI:
=======
INVENTORY:
=========
LOOKUP:
======
NETCONF:
=======
SHELL:
=====
VARS:
====
```
```
### OS / Environment
Debian 11 Bullseye x86_64 running inside a LXC on the latest version of Proxmox 7. The container was created using Proxmox's Debian 11 template, then updated and configured with locales and so on.
### Steps to Reproduce
<!--- Paste example playbooks or commands between quotes below -->
This is my `host_vars/django1.yml` file:
```yaml
---
# Host variables to be set as environment variables in tasks that need it
POSTGRES_PASSWORD: "<password>"
POSTGRES_USER: "dbuser"
POSTGRES_DB: "dbname"
POSTGRES_HOST: "dbhost"
POSTGRES_PORT: 5432
POSTGRES_SSLMODE: "verify-full"
POSTGRES_SSLCA: "/etc/ssl/certs/ISRG_Root_X1.pem"
POSTGRES_APPNAME: "myproject"
DJANGO_SITE_NAME: "mysite"
DJANGO_SITE_PASSWORD: "mypassword"
DJANGO_SITE_USER: "myuser"
DJANGO_SITE_ID: 2
DJANGO_SECRET_KEY: "<very-long-and-random-secret>"
[..]
```
This is my playbook:
```yaml
---
- hosts: django
tasks:
- name: builtin | include_vars | load host vars
ansible.builtin.include_vars:
file: "host_vars/{{ inventory_hostname_short }}.yml"
name: envvars
- name: community.general | django_manage | update database schema
community.general.django_manage:
command: migrate
settings: myproject.settings
project_path: "/opt/django/src"
virtualenv: "/opt/django/venv"
become: true
become_user: django
become_method: su
environment: "{{ envvars }}"
```
`django` is a group of hosts, defined in the `/etc/ansible/hosts` as:
```ini
[all]
ansible[1:1].domain.com ansible_connection=local
django[1:3].domain.com
[django]
django1.domain.com ansible_host=192.168.0.112
django2.domain.com ansible_host=192.168.0.119
django3.domain.com ansible_host=192.168.0.120
```
The playbook is being executed like this:
```ansible-playbook django-test.yml --limit django1.domain.com```
### Expected Results
I expected the command to execute without issues, finding the environment variables sent to do its job.
### Actual Results
```console
root@ansible1:~/ansible/playbooks# ansible-playbook django-test.yml --limit django1.domain.com
PLAY [django] ***************************************************************************************************************
TASK [Gathering Facts] ******************************************************************************************************
ok: [django1.domain.com]
TASK [builtin | include_vars | load host vars] ******************************************************************************
ok: [django1.domain.com]
TASK [community.general | django_manage | update database schema] ***********************************************************
fatal: [django1.domain.com]: FAILED! => {"changed": false, "cmd": ["./manage.py", "migrate", "--noinput", "--settings=myproject.settings"], "msg": "\n:stderr: Traceback (most recent call last):\n File \"/opt/django/src/./manage.py\", line 22, in <module>\n execute_from_command_line(sys.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 381, in execute_from_command_line\n utility.execute()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 375, in execute\n self.fetch_command(subcommand).run_from_argv(self.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 224, in fetch_command\n klass = load_command_class(app_name, subcommand)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 36, in load_command_class\n module = import_module('%s.management.commands.%s' % (app_name, name))\n File \"/usr/lib/python3.9/importlib/__init__.py\", line 127, in import_module\n return _bootstrap._gcd_import(name[level:], package, level)\n File \"<frozen importlib._bootstrap>\", line 1030, in _gcd_import\n File \"<frozen importlib._bootstrap>\", line 1007, in _find_and_load\n File \"<frozen importlib._bootstrap>\", line 986, in _find_and_load_unlocked\n File \"<frozen importlib._bootstrap>\", line 680, in _load_unlocked\n File \"<frozen importlib._bootstrap_external>\", line 790, in exec_module\n File \"<frozen importlib._bootstrap>\", line 228, in _call_with_frames_removed\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/commands/migrate.py\", line 14, in <module>\n from django.db.migrations.autodetector import MigrationAutodetector\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/autodetector.py\", line 11, in <module>\n from django.db.migrations.questioner import MigrationQuestioner\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/questioner.py\", line 9, in <module>\n from .loader import MigrationLoader\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/loader.py\", line 8, in <module>\n from django.db.migrations.recorder import MigrationRecorder\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 9, in <module>\n class MigrationRecorder:\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 22, in MigrationRecorder\n class Migration(models.Model):\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/models/base.py\", line 87, in __new__\n app_config = apps.get_containing_app_config(module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 249, in get_containing_app_config\n self.check_apps_ready()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 131, in check_apps_ready\n settings.INSTALLED_APPS\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 57, in __getattr__\n self._setup(name)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 44, in _setup\n self._wrapped = Settings(settings_module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 126, in __init__\n raise ImproperlyConfigured(\"The SECRET_KEY setting must not be empty.\")\ndjango.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.\n", "path": "/opt/django/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "syspath": ["/tmp/ansible_community.general.django_manage_payload_73j09wsy/ansible_community.general.django_manage_payload.zip", "/usr/lib/python39.zip", "/usr/lib/python3.9", "/usr/lib/python3.9/lib-dynload", "/usr/local/lib/python3.9/dist-packages", "/usr/lib/python3/dist-packages"]}
PLAY RECAP ******************************************************************************************************************
django1.domain.com : ok=2 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0
```
This is an excerpt of the output using `-vvv`:
```console
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' 192.168.0.112 '/bin/sh -c '"'"'chmod u+x /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/ /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/AnsiballZ_django_manage.py && sleep 0'"'"''
<192.168.0.112> (0, b'', b'')
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' 192.168.0.112 '/bin/sh -c '"'"'chown django /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/ /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/AnsiballZ_django_manage.py && sleep 0'"'"''
<192.168.0.112> (0, b'', b'')
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' -tt 192.168.0.112 '/bin/sh -c '"'"'su django -c '"'"'"'"'"'"'"'"'/bin/sh -c '"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'echo BECOME-SUCCESS-ptxrsvpoyqfxqmgdubcktnnnaljwmagj ; POSTGRES_PASSWORD=<password> POSTGRES_USER=django_mysite POSTGRES_DB=django_mysite POSTGRES_HOST=dbhost.domain.com POSTGRES_PORT=5432 POSTGRES_SSLMODE=verify-full POSTGRES_SSLCA=/etc/ssl/certs/ISRG_Root_X1.pem POSTGRES_APPNAME=myproject DJANGO_SITE_NAME=mysite DJANGO_SITE_PASSWORD=mysite DJANGO_SITE_USER=mysite DJANGO_SITE_ID=2 DJANGO_SECRET_KEY='"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'<very-long-and-random-secret>'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"' META_SITE_PROTOCOL=https PUBLIC_URL=https://mysite.customer.com GOOGLE_MAPS_API_KEY=<api-key> RECAPTCHA_PUBLIC_KEY=<recaptcha-api-key> RECAPTCHA_PRIVATE_KEY=<recaptcha-private-key> RECAPTCHA_SCORE_THRESHOLD=0.6 PREFIX_DEFAULT_LANGUAGE=1 INSTALLED_CUSTOM_APPS=None INSTALLED_CUSTOM_REPOS=None DJANGO_DEBUG=0 DJANGO_SETTINGS_MODULE=myproject.settings.production DJANGO_LOGS_DIR=/opt/django/logs DJANGO_STATIC_mysite=/opt/django/static DJANGO_MEDIA_mysite=/opt/django/media /usr/bin/python3 /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/AnsiballZ_django_manage.py'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"''"'"'"'"'"'"'"'"' && sleep 0'"'"''
Escalation succeeded
<192.168.0.112> (1, b'\r\n{"cmd": ["./manage.py", "migrate", "--noinput", "--settings=myproject.settings"], "path": "/opt/django/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "syspath": ["/tmp/ansible_community.general.django_manage_payload_tjoxkqd3/ansible_community.general.django_manage_payload.zip", "/usr/lib/python39.zip", "/usr/lib/python3.9", "/usr/lib/python3.9/lib-dynload", "/usr/local/lib/python3.9/dist-packages", "/usr/lib/python3/dist-packages"], "failed": true, "msg": "\\n:stderr: Traceback (most recent call last):\\n File \\"/opt/django/src/./manage.py\\", line 22, in <module>\\n execute_from_command_line(sys.argv)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 381, in execute_from_command_line\\n utility.execute()\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 375, in execute\\n self.fetch_command(subcommand).run_from_argv(self.argv)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 224, in fetch_command\\n klass = load_command_class(app_name, subcommand)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\\", line 36, in load_command_class\\n module = import_module(\'%s.management.commands.%s\' % (app_name, name))\\n File \\"/usr/lib/python3.9/importlib/__init__.py\\", line 127, in import_module\\n return _bootstrap._gcd_import(name[level:], package, level)\\n File \\"<frozen importlib._bootstrap>\\", line 1030, in _gcd_import\\n File \\"<frozen importlib._bootstrap>\\", line 1007, in _find_and_load\\n File \\"<frozen importlib._bootstrap>\\", line 986, in _find_and_load_unlocked\\n File \\"<frozen importlib._bootstrap>\\", line 680, in _load_unlocked\\n File \\"<frozen importlib._bootstrap_external>\\", line 790, in exec_module\\n File \\"<frozen importlib._bootstrap>\\", line 228, in _call_with_frames_removed\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/core/management/commands/migrate.py\\", line 14, in <module>\\n from django.db.migrations.autodetector import MigrationAutodetector\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/autodetector.py\\", line 11, in <module>\\n from django.db.migrations.questioner import MigrationQuestioner\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/questioner.py\\", line 9, in <module>\\n from .loader import MigrationLoader\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/loader.py\\", line 8, in <module>\\n from django.db.migrations.recorder import MigrationRecorder\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\\", line 9, in <module>\\n class MigrationRecorder:\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\\", line 22, in MigrationRecorder\\n class Migration(models.Model):\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/db/models/mysite.py\\", line 87, in __new__\\n app_config = apps.get_containing_app_config(module)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\\", line 249, in get_containing_app_config\\n self.check_apps_ready()\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\\", line 131, in check_apps_ready\\n settings.INSTALLED_APPS\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\\", line 57, in __getattr__\\n self._setup(name)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\\", line 44, in _setup\\n self._wrapped = Settings(settings_module)\\n File \\"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\\", line 126, in __init__\\n raise ImproperlyConfigured(\\"The SECRET_KEY setting must not be empty.\\")\\ndjango.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.\\n", "invocation": {"module_args": {"command": "migrate", "settings": "myproject.settings", "project_path": "/opt/django/src", "virtualenv": "/opt/django/venv", "clear": false, "failfast": false, "pythonpath": null, "apps": null, "cache_table": null, "datamysite": null, "fixtures": null, "testrunner": null, "skip": null, "merge": null, "link": null}}}\r\n', b'Shared connection to 192.168.0.112 closed.\r\n')
<192.168.0.112> Failed to connect to the host via ssh: Shared connection to 192.168.0.112 closed.
<192.168.0.112> ESTABLISH SSH CONNECTION FOR USER: root
<192.168.0.112> SSH: EXEC ssh -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o Port=22 -o 'IdentityFile="/root/.ssh/ansible"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostmysited,publickey -o PasswordAuthentication=no -o 'User="root"' -o ConnectTimeout=10 -o 'ControlPath="/root/.ansible/cp/c2c620c89f"' 192.168.0.112 '/bin/sh -c '"'"'rm -f -r /var/tmp/ansible-tmp-1665912071.0601845-67543-122560791410458/ > /dev/null 2>&1 && sleep 0'"'"''
<192.168.0.112> (0, b'', b'')
fatal: [django1.domain.com]: FAILED! => {
"changed": false,
"cmd": [
"./manage.py",
"migrate",
"--noinput",
"--settings=myproject.settings"
],
"invocation": {
"module_args": {
"apps": null,
"cache_table": null,
"clear": false,
"command": "migrate",
"datamysite": null,
"failfast": false,
"fixtures": null,
"link": null,
"merge": null,
"project_path": "/opt/django/src",
"pythonpath": null,
"settings": "myproject.settings",
"skip": null,
"testrunner": null,
"virtualenv": "/opt/django/venv"
}
},
"msg": "\n:stderr: Traceback (most recent call last):\n File \"/opt/django/src/./manage.py\", line 22, in <module>\n execute_from_command_line(sys.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 381, in execute_from_command_line\n utility.execute()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 375, in execute\n self.fetch_command(subcommand).run_from_argv(self.argv)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 224, in fetch_command\n klass = load_command_class(app_name, subcommand)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/__init__.py\", line 36, in load_command_class\n module = import_module('%s.management.commands.%s' % (app_name, name))\n File \"/usr/lib/python3.9/importlib/__init__.py\", line 127, in import_module\n return _bootstrap._gcd_import(name[level:], package, level)\n File \"<frozen importlib._bootstrap>\", line 1030, in _gcd_import\n File \"<frozen importlib._bootstrap>\", line 1007, in _find_and_load\n File \"<frozen importlib._bootstrap>\", line 986, in _find_and_load_unlocked\n File \"<frozen importlib._bootstrap>\", line 680, in _load_unlocked\n File \"<frozen importlib._bootstrap_external>\", line 790, in exec_module\n File \"<frozen importlib._bootstrap>\", line 228, in _call_with_frames_removed\n File \"/opt/django/venv/lib/python3.9/site-packages/django/core/management/commands/migrate.py\", line 14, in <module>\n from django.db.migrations.autodetector import MigrationAutodetector\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/autodetector.py\", line 11, in <module>\n from django.db.migrations.questioner import MigrationQuestioner\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/questioner.py\", line 9, in <module>\n from .loader import MigrationLoader\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/loader.py\", line 8, in <module>\n from django.db.migrations.recorder import MigrationRecorder\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 9, in <module>\n class MigrationRecorder:\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/migrations/recorder.py\", line 22, in MigrationRecorder\n class Migration(models.Model):\n File \"/opt/django/venv/lib/python3.9/site-packages/django/db/models/mysite.py\", line 87, in __new__\n app_config = apps.get_containing_app_config(module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 249, in get_containing_app_config\n self.check_apps_ready()\n File \"/opt/django/venv/lib/python3.9/site-packages/django/apps/registry.py\", line 131, in check_apps_ready\n settings.INSTALLED_APPS\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 57, in __getattr__\n self._setup(name)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 44, in _setup\n self._wrapped = Settings(settings_module)\n File \"/opt/django/venv/lib/python3.9/site-packages/django/conf/__init__.py\", line 126, in __init__\n raise ImproperlyConfigured(\"The SECRET_KEY setting must not be empty.\")\ndjango.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.\n",
"path": "/opt/django/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"syspath": [
"/tmp/ansible_community.general.django_manage_payload_tjoxkqd3/ansible_community.general.django_manage_payload.zip",
"/usr/lib/python39.zip",
"/usr/lib/python3.9",
"/usr/lib/python3.9/lib-dynload",
"/usr/local/lib/python3.9/dist-packages",
"/usr/lib/python3/dist-packages"
]
}
```
### Code of Conduct
- [X] I agree to follow the Ansible Code of Conduct | non_defect | variables sent via environment when using django manage and become user are not present in host summary have a file with a list of variables and their values originally templated but now static as i try to debug this issue it contains a number of variables that are required by django such as django secret key django site name and so on i use ansible builtin include vars to load these variables into a variable in the playbook i use community general django manage to run the migrate command using the environment option to pass the previously loaded variables but django complains that it cannot find them i ve checked with ansible playbook vvv and apparently they are being sent to the host i am not sure whether it has to do with environment or with using such directive when also using become become user and become method i have tried with become method sudo and the end result is the same i ve found issue from where the proposed solution was using the environment directive which is also backed by name envvars if i ve read correctly thanks in advance issue type bug report component name community general django manage ansible version console ansible version ansible config file etc ansible ansible cfg configured module search path ansible python module location usr lib dist packages ansible ansible collection location root ansible collections usr share ansible collections executable location usr bin ansible python version default feb jinja version libyaml true community general version console ansible galaxy collection list community general usr lib dist packages ansible collections collection version community general root ansible collections ansible collections collection version community general configuration console paste below ansible config dump only changed ansible pipelining etc ansible ansible cfg true cache plugin etc ansible ansible cfg jsonfile cache plugin connection etc ansible ansible cfg var cache ansible default host list etc ansible ansible cfg default private key file etc ansible ansible cfg root ssh ansible default remote port etc ansible ansible cfg default remote user etc ansible ansible cfg root host key checking etc ansible ansible cfg false become cache jsonfile uri etc ansible ansible cfg var cache ansible callback cliconf connection local pipelining etc ansible ansible cfg true paramiko ssh host key checking etc ansible ansible cfg false remote user etc ansible ansible cfg root psrp pipelining etc ansible ansible cfg true ssh host key checking etc ansible ansible cfg false port etc ansible ansible cfg private key file etc ansible ansible cfg root ssh ansible remote user etc ansible ansible cfg root ssh args etc ansible ansible cfg o controlmaster auto o controlpersist winrm pipelining etc ansible ansible cfg true httpapi inventory lookup netconf shell vars os environment debian bullseye running inside a lxc on the latest version of proxmox the container was created using proxmox s debian template then updated and configured with locales and so on steps to reproduce this is my host vars yml file yaml host variables to be set as environment variables in tasks that need it postgres password postgres user dbuser postgres db dbname postgres host dbhost postgres port postgres sslmode verify full postgres sslca etc ssl certs isrg root pem postgres appname myproject django site name mysite django site password mypassword django site user myuser django site id django secret key this is my playbook yaml hosts django tasks name builtin include vars load host vars ansible builtin include vars file host vars inventory hostname short yml name envvars name community general django manage update database schema community general django manage command migrate settings myproject settings project path opt django src virtualenv opt django venv become true become user django become method su environment envvars django is a group of hosts defined in the etc ansible hosts as ini ansible domain com ansible connection local django domain com domain com ansible host domain com ansible host domain com ansible host the playbook is being executed like this ansible playbook django test yml limit domain com expected results i expected the command to execute without issues finding the environment variables sent to do its job actual results console root ansible playbooks ansible playbook django test yml limit domain com play task ok task ok task fatal failed changed false cmd msg n stderr traceback most recent call last n file opt django src manage py line in n execute from command line sys argv n file opt django venv lib site packages django core management init py line in execute from command line n utility execute n file opt django venv lib site packages django core management init py line in execute n self fetch command subcommand run from argv self argv n file opt django venv lib site packages django core management init py line in fetch command n klass load command class app name subcommand n file opt django venv lib site packages django core management init py line in load command class n module import module s management commands s app name name n file usr lib importlib init py line in import module n return bootstrap gcd import name package level n file line in gcd import n file line in find and load n file line in find and load unlocked n file line in load unlocked n file line in exec module n file line in call with frames removed n file opt django venv lib site packages django core management commands migrate py line in n from django db migrations autodetector import migrationautodetector n file opt django venv lib site packages django db migrations autodetector py line in n from django db migrations questioner import migrationquestioner n file opt django venv lib site packages django db migrations questioner py line in n from loader import migrationloader n file opt django venv lib site packages django db migrations loader py line in n from django db migrations recorder import migrationrecorder n file opt django venv lib site packages django db migrations recorder py line in n class migrationrecorder n file opt django venv lib site packages django db migrations recorder py line in migrationrecorder n class migration models model n file opt django venv lib site packages django db models base py line in new n app config apps get containing app config module n file opt django venv lib site packages django apps registry py line in get containing app config n self check apps ready n file opt django venv lib site packages django apps registry py line in check apps ready n settings installed apps n file opt django venv lib site packages django conf init py line in getattr n self setup name n file opt django venv lib site packages django conf init py line in setup n self wrapped settings settings module n file opt django venv lib site packages django conf init py line in init n raise improperlyconfigured the secret key setting must not be empty ndjango core exceptions improperlyconfigured the secret key setting must not be empty n path opt django venv bin usr local sbin usr local bin usr sbin usr bin sbin bin syspath play recap domain com ok changed unreachable failed skipped rescued ignored this is an excerpt of the output using vvv console establish ssh connection for user root ssh exec ssh o controlmaster auto o controlpersist o stricthostkeychecking no o port o identityfile root ssh ansible o kbdinteractiveauthentication no o preferredauthentications gssapi with mic gssapi keyex hostmysited publickey o passwordauthentication no o user root o connecttimeout o controlpath root ansible cp bin sh c chmod u x var tmp ansible tmp var tmp ansible tmp ansiballz django manage py sleep b b establish ssh connection for user root ssh exec ssh o controlmaster auto o controlpersist o stricthostkeychecking no o port o identityfile root ssh ansible o kbdinteractiveauthentication no o preferredauthentications gssapi with mic gssapi keyex hostmysited publickey o passwordauthentication no o user root o connecttimeout o controlpath root ansible cp bin sh c chown django var tmp ansible tmp var tmp ansible tmp ansiballz django manage py sleep b b establish ssh connection for user root ssh exec ssh o controlmaster auto o controlpersist o stricthostkeychecking no o port o identityfile root ssh ansible o kbdinteractiveauthentication no o preferredauthentications gssapi with mic gssapi keyex hostmysited publickey o passwordauthentication no o user root o connecttimeout o controlpath root ansible cp tt bin sh c su django c bin sh c echo become success ptxrsvpoyqfxqmgdubcktnnnaljwmagj postgres password postgres user django mysite postgres db django mysite postgres host dbhost domain com postgres port postgres sslmode verify full postgres sslca etc ssl certs isrg root pem postgres appname myproject django site name mysite django site password mysite django site user mysite django site id django secret key meta site protocol https public url google maps api key recaptcha public key recaptcha private key recaptcha score threshold prefix default language installed custom apps none installed custom repos none django debug django settings module myproject settings production django logs dir opt django logs django static mysite opt django static django media mysite opt django media usr bin var tmp ansible tmp ansiballz django manage py sleep escalation succeeded b r n cmd path opt django venv bin usr local sbin usr local bin usr sbin usr bin sbin bin syspath failed true msg n stderr traceback most recent call last n file opt django src manage py line in n execute from command line sys argv n file opt django venv lib site packages django core management init py line in execute from command line n utility execute n file opt django venv lib site packages django core management init py line in execute n self fetch command subcommand run from argv self argv n file opt django venv lib site packages django core management init py line in fetch command n klass load command class app name subcommand n file opt django venv lib site packages django core management init py line in load command class n module import module s management commands s app name name n file usr lib importlib init py line in import module n return bootstrap gcd import name package level n file line in gcd import n file line in find and load n file line in find and load unlocked n file line in load unlocked n file line in exec module n file line in call with frames removed n file opt django venv lib site packages django core management commands migrate py line in n from django db migrations autodetector import migrationautodetector n file opt django venv lib site packages django db migrations autodetector py line in n from django db migrations questioner import migrationquestioner n file opt django venv lib site packages django db migrations questioner py line in n from loader import migrationloader n file opt django venv lib site packages django db migrations loader py line in n from django db migrations recorder import migrationrecorder n file opt django venv lib site packages django db migrations recorder py line in n class migrationrecorder n file opt django venv lib site packages django db migrations recorder py line in migrationrecorder n class migration models model n file opt django venv lib site packages django db models mysite py line in new n app config apps get containing app config module n file opt django venv lib site packages django apps registry py line in get containing app config n self check apps ready n file opt django venv lib site packages django apps registry py line in check apps ready n settings installed apps n file opt django venv lib site packages django conf init py line in getattr n self setup name n file opt django venv lib site packages django conf init py line in setup n self wrapped settings settings module n file opt django venv lib site packages django conf init py line in init n raise improperlyconfigured the secret key setting must not be empty ndjango core exceptions improperlyconfigured the secret key setting must not be empty n invocation module args command migrate settings myproject settings project path opt django src virtualenv opt django venv clear false failfast false pythonpath null apps null cache table null datamysite null fixtures null testrunner null skip null merge null link null r n b shared connection to closed r n failed to connect to the host via ssh shared connection to closed establish ssh connection for user root ssh exec ssh o controlmaster auto o controlpersist o stricthostkeychecking no o port o identityfile root ssh ansible o kbdinteractiveauthentication no o preferredauthentications gssapi with mic gssapi keyex hostmysited publickey o passwordauthentication no o user root o connecttimeout o controlpath root ansible cp bin sh c rm f r var tmp ansible tmp dev null sleep b b fatal failed changed false cmd manage py migrate noinput settings myproject settings invocation module args apps null cache table null clear false command migrate datamysite null failfast false fixtures null link null merge null project path opt django src pythonpath null settings myproject settings skip null testrunner null virtualenv opt django venv msg n stderr traceback most recent call last n file opt django src manage py line in n execute from command line sys argv n file opt django venv lib site packages django core management init py line in execute from command line n utility execute n file opt django venv lib site packages django core management init py line in execute n self fetch command subcommand run from argv self argv n file opt django venv lib site packages django core management init py line in fetch command n klass load command class app name subcommand n file opt django venv lib site packages django core management init py line in load command class n module import module s management commands s app name name n file usr lib importlib init py line in import module n return bootstrap gcd import name package level n file line in gcd import n file line in find and load n file line in find and load unlocked n file line in load unlocked n file line in exec module n file line in call with frames removed n file opt django venv lib site packages django core management commands migrate py line in n from django db migrations autodetector import migrationautodetector n file opt django venv lib site packages django db migrations autodetector py line in n from django db migrations questioner import migrationquestioner n file opt django venv lib site packages django db migrations questioner py line in n from loader import migrationloader n file opt django venv lib site packages django db migrations loader py line in n from django db migrations recorder import migrationrecorder n file opt django venv lib site packages django db migrations recorder py line in n class migrationrecorder n file opt django venv lib site packages django db migrations recorder py line in migrationrecorder n class migration models model n file opt django venv lib site packages django db models mysite py line in new n app config apps get containing app config module n file opt django venv lib site packages django apps registry py line in get containing app config n self check apps ready n file opt django venv lib site packages django apps registry py line in check apps ready n settings installed apps n file opt django venv lib site packages django conf init py line in getattr n self setup name n file opt django venv lib site packages django conf init py line in setup n self wrapped settings settings module n file opt django venv lib site packages django conf init py line in init n raise improperlyconfigured the secret key setting must not be empty ndjango core exceptions improperlyconfigured the secret key setting must not be empty n path opt django venv bin usr local sbin usr local bin usr sbin usr bin sbin bin syspath tmp ansible community general django manage payload ansible community general django manage payload zip usr lib zip usr lib usr lib lib dynload usr local lib dist packages usr lib dist packages code of conduct i agree to follow the ansible code of conduct | 0 |
60,108 | 17,023,336,553 | IssuesEvent | 2021-07-03 01:29:59 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | Osmarender: Two labels for one feature (fix included) | Component: osmarender Priority: major Resolution: fixed Type: defect | **[Submitted to the original trac issue database at 12.32am, Monday, 22nd December 2008]**
Currently areas which have both
building=yes
and
amenity=library
or
amenity=restaurant
are rendered incorrectly (name is shown twice).
Example:
http://www.openstreetmap.org/?lat=49.00331&lon=12.09514&zoom=17&layers=0B00FTF
This also happens with amenitys that also have an landuse tag set
e.g.
amenity=restaurant
landuse=construction
like here http://www.openstreetmap.org/?lat=48.99808&lon=12.09269&zoom=17&layers=0B00FTF
The attached patch fixes this problem. | 1.0 | Osmarender: Two labels for one feature (fix included) - **[Submitted to the original trac issue database at 12.32am, Monday, 22nd December 2008]**
Currently areas which have both
building=yes
and
amenity=library
or
amenity=restaurant
are rendered incorrectly (name is shown twice).
Example:
http://www.openstreetmap.org/?lat=49.00331&lon=12.09514&zoom=17&layers=0B00FTF
This also happens with amenitys that also have an landuse tag set
e.g.
amenity=restaurant
landuse=construction
like here http://www.openstreetmap.org/?lat=48.99808&lon=12.09269&zoom=17&layers=0B00FTF
The attached patch fixes this problem. | defect | osmarender two labels for one feature fix included currently areas which have both building yes and amenity library or amenity restaurant are rendered incorrectly name is shown twice example this also happens with amenitys that also have an landuse tag set e g amenity restaurant landuse construction like here the attached patch fixes this problem | 1 |
63,412 | 17,633,278,674 | IssuesEvent | 2021-08-19 10:40:25 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | Dedupe groups for flair on users | T-Defect P2 S-Major A-Spaces | <!-- This is a bug report template. By following the instructions below and
filling out the sections with your information, you will help the us to get all
the necessary data to fix your issue.
You can also preview your report before submitting it. You may remove sections
that aren't relevant to your particular case.
Text between <!-- and --> marks will be invisible in the report.
-->
### Description
Issue described here: https://github.com/matrix-org/synapse/issues/2905
Riot should probably also protect against this in the event of a server returning strange data.
### Version information
<!-- IMPORTANT: please answer the following questions, to help us narrow down the problem -->
- **Platform**: web (in-browser)
- **Browser**: Chrome 64
- **OS**: Windows 10
- **URL**: riot.im/develop | 1.0 | Dedupe groups for flair on users - <!-- This is a bug report template. By following the instructions below and
filling out the sections with your information, you will help the us to get all
the necessary data to fix your issue.
You can also preview your report before submitting it. You may remove sections
that aren't relevant to your particular case.
Text between <!-- and --> marks will be invisible in the report.
-->
### Description
Issue described here: https://github.com/matrix-org/synapse/issues/2905
Riot should probably also protect against this in the event of a server returning strange data.
### Version information
<!-- IMPORTANT: please answer the following questions, to help us narrow down the problem -->
- **Platform**: web (in-browser)
- **Browser**: Chrome 64
- **OS**: Windows 10
- **URL**: riot.im/develop | defect | dedupe groups for flair on users this is a bug report template by following the instructions below and filling out the sections with your information you will help the us to get all the necessary data to fix your issue you can also preview your report before submitting it you may remove sections that aren t relevant to your particular case text between marks will be invisible in the report description issue described here riot should probably also protect against this in the event of a server returning strange data version information platform web in browser browser chrome os windows url riot im develop | 1 |
71,669 | 23,753,354,125 | IssuesEvent | 2022-08-31 23:09:14 | dkfans/keeperfx | https://api.github.com/repos/dkfans/keeperfx | closed | Dotted line to heart on minimap overshoots heart | Type-Defect | The minimap shows a dotted line to where the heart is, to help the player orientate. However, it overshoots the heart making it confusing when the player is relatively close to the heart.
See image:

The blue box is the hear and the green box shows the dotted line. The dotted line should end in the center of the blue box.
From the original game:

| 1.0 | Dotted line to heart on minimap overshoots heart - The minimap shows a dotted line to where the heart is, to help the player orientate. However, it overshoots the heart making it confusing when the player is relatively close to the heart.
See image:

The blue box is the hear and the green box shows the dotted line. The dotted line should end in the center of the blue box.
From the original game:

| defect | dotted line to heart on minimap overshoots heart the minimap shows a dotted line to where the heart is to help the player orientate however it overshoots the heart making it confusing when the player is relatively close to the heart see image the blue box is the hear and the green box shows the dotted line the dotted line should end in the center of the blue box from the original game | 1 |
313 | 2,525,083,705 | IssuesEvent | 2015-01-20 22:03:57 | CocoaPods/CocoaPods | https://api.github.com/repos/CocoaPods/CocoaPods | closed | RuntimeError - [Xcodeproj] Consistency issue: build setting `IPHONEOS_DEPLOYMENT_TARGET` has multiple values | t2:defect | Is there any way to debug the following error message any further? Without any information as to what target it is seeing the inconsistency for/where it is getting these values from, it's impossible for me to debug,
```
RuntimeError - [Xcodeproj] Consistency issue: build setting `IPHONEOS_DEPLOYMENT_TARGET` has multiple values: `{"Release"=>"8.0", "Debug"=>"8.0", "Profile"=>"7.1", "App Store"=>"7.1", "In House"=>"7.1"}`
```
My project and app targets have deployment targets of 7.1. My share extension target has a deployment target of 8.0.
My Podfile looks more or less as follows (`platform :iOS, '8.0'` is required under `target :share_extension`, or else I get an error about being unable to install `PodThatOnlyWorksOn8`):
```
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.1'
target :app do
link_with 'App'
pod 'FooBarBaz'
end
target :share_extension do
platform :ios, '8.0'
link_with 'ShareExtension'
pod 'PodThatOnlyWorksOn8'
end
```
When I created a brand new Xcode project and set it up similarly, it worked just fine. This error occurs when trying to `pod install` on my existing, much more complicated project. | 1.0 | RuntimeError - [Xcodeproj] Consistency issue: build setting `IPHONEOS_DEPLOYMENT_TARGET` has multiple values - Is there any way to debug the following error message any further? Without any information as to what target it is seeing the inconsistency for/where it is getting these values from, it's impossible for me to debug,
```
RuntimeError - [Xcodeproj] Consistency issue: build setting `IPHONEOS_DEPLOYMENT_TARGET` has multiple values: `{"Release"=>"8.0", "Debug"=>"8.0", "Profile"=>"7.1", "App Store"=>"7.1", "In House"=>"7.1"}`
```
My project and app targets have deployment targets of 7.1. My share extension target has a deployment target of 8.0.
My Podfile looks more or less as follows (`platform :iOS, '8.0'` is required under `target :share_extension`, or else I get an error about being unable to install `PodThatOnlyWorksOn8`):
```
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.1'
target :app do
link_with 'App'
pod 'FooBarBaz'
end
target :share_extension do
platform :ios, '8.0'
link_with 'ShareExtension'
pod 'PodThatOnlyWorksOn8'
end
```
When I created a brand new Xcode project and set it up similarly, it worked just fine. This error occurs when trying to `pod install` on my existing, much more complicated project. | defect | runtimeerror consistency issue build setting iphoneos deployment target has multiple values is there any way to debug the following error message any further without any information as to what target it is seeing the inconsistency for where it is getting these values from it s impossible for me to debug runtimeerror consistency issue build setting iphoneos deployment target has multiple values release debug profile app store in house my project and app targets have deployment targets of my share extension target has a deployment target of my podfile looks more or less as follows platform ios is required under target share extension or else i get an error about being unable to install source platform ios target app do link with app pod foobarbaz end target share extension do platform ios link with shareextension pod end when i created a brand new xcode project and set it up similarly it worked just fine this error occurs when trying to pod install on my existing much more complicated project | 1 |
48,325 | 20,105,176,938 | IssuesEvent | 2022-02-07 09:47:53 | c0c0n3/kitt4sme.anomaly | https://api.github.com/repos/c0c0n3/kitt4sme.anomaly | closed | Scaffolding for outputting anomaly prediction | AI / app services | ### Summary
Put in place some basic infra to be able to process incoming shop floor data and output a forecast about possible anomalies.
### Intended outcome
On receiving shop floor data form Context Broker, the service writes a prediction back to Context Broker. The prediction is encoded in an NGSI entity. Note we don't need to implement the actual ML logic for this task. All we need is a `predict` stub function that takes in the NGSI entity sent by Context Broker and outputs a prediction NGSI entity.
### How will it work?
Similar to what we've done for [roughnator][roughnator].
[roughnator]: https://github.com/c0c0n3/kitt4sme.roughnator
| 1.0 | Scaffolding for outputting anomaly prediction - ### Summary
Put in place some basic infra to be able to process incoming shop floor data and output a forecast about possible anomalies.
### Intended outcome
On receiving shop floor data form Context Broker, the service writes a prediction back to Context Broker. The prediction is encoded in an NGSI entity. Note we don't need to implement the actual ML logic for this task. All we need is a `predict` stub function that takes in the NGSI entity sent by Context Broker and outputs a prediction NGSI entity.
### How will it work?
Similar to what we've done for [roughnator][roughnator].
[roughnator]: https://github.com/c0c0n3/kitt4sme.roughnator
| non_defect | scaffolding for outputting anomaly prediction summary put in place some basic infra to be able to process incoming shop floor data and output a forecast about possible anomalies intended outcome on receiving shop floor data form context broker the service writes a prediction back to context broker the prediction is encoded in an ngsi entity note we don t need to implement the actual ml logic for this task all we need is a predict stub function that takes in the ngsi entity sent by context broker and outputs a prediction ngsi entity how will it work similar to what we ve done for | 0 |
54,226 | 6,370,949,846 | IssuesEvent | 2017-08-01 15:08:12 | rsyslog/rsyslog | https://api.github.com/repos/rsyslog/rsyslog | closed | test-suite hangs in pmsnare.sh | bug testbench | Version: 8.28.0
librelp: 1.2.4
I tried to build the latest upstream release 8.28.0. The test-suite (make check) does not succeed and get's stuck after
```
...
PASS: uxsock_simple.sh
PASS: sndrcv_relp.sh
SKIP: sndrcv_relp_dflt_pt.sh
PASS: imrelp-basic.sh
PASS: imrelp-manyconn.sh
PASS: sndrcv_relp_tls.sh
```
The ps output of the hanging process is:
```
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
michael 15170 0.0 0.0 14660 3176 pts/4 S+ 01:33 0:00 /bin/bash -c p='pmsnare.sh'; \ b='pmsnare.sh'; \ case $- in *e*) set +e;; esac; srcdirstrip=`echo "." | sed 's|.|.|g'`; case $p in ./*) f=`echo "$p" | sed "s|^$srcdirstrip/||"`;; *) f=$p;; esac; { mgn= red= grn= lgn= blu= brg= std=; am__color_tests=no; if test "X" = Xno; then am__color_tests=no; elif test "X" = Xalways; then am__color_tests=yes; elif test "X$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then am__color_tests=yes; fi; if test $am__color_tests = yes; then red='?[0;31m'; grn='?[0;32m'; lgn='?[1;32m'; blu='?[1;34m'; mgn='?[0;35m'; brg='?[1m'; std='?[m'; fi; }; srcdir=.; export srcdir; case "pmsnare.sh.log" in */*) am__odir=`echo "./pmsnare.sh.log" | sed 's|/[^/]*$||'`;; *) am__odir=.;; esac; test "x$am__odir" = x"." || test -d "$am__odir" || /bin/mkdir -p "$am__odir" || exit $?; if test -f "./$f"; then dir=./; elif test -f "$f"; then dir=; else dir="./"; fi; tst=$dir$f; log='pmsnare.sh.log'; if test -n ''; then am__enable_hard_errors=no; else am__enable_hard_errors=yes; fi; case " " in *[\ \?]$f[\ \?]* | *[\ \?]$dir$f[\ \?]*) am__expect_failure=yes;; *) am__expect_failure=no;; esac; RSYSLOG_MODDIR='/home/michael/debian/build-area/rsyslog-8.28.0'/runtime/.libs/ /bin/bash ../test-driver --test-name "$f" \ --log-file $b.log --trs-file $b.trs \ --color-tests "$am__color_tests" --enable-hard-errors "$am__enable_hard_errors" --expect-failure "$am__expect_failure" -- \ "$tst"»
michael 15174 0.0 0.0 14660 3188 pts/4 S+ 01:33 0:00 /bin/bash ../test-driver --test-name pmsnare.sh --log-file pmsnare.sh.log --trs-file pmsnare.sh.trs --color-tests no --enable-hard-errors yes --expect-failure no -- ./pmsnare.sh
michael 15175 0.0 0.0 15528 3996 pts/4 S+ 01:33 0:00 /bin/bash ./pmsnare.sh
michael 15272 0.0 0.0 4204 696 pts/4 S+ 01:33 0:00 ./nettester -tpmsnare_default -iudp
michael 15273 0.0 0.0 172276 2760 pts/4 Sl+ 01:33 0:00 ../tools/rsyslogd -f./testsuites/pmsnare_default.conf -C -n -irsyslog.pid -M../runtime/.libs:../.libs
root 15298 0.3 0.0 0 0 ? S 01:34 0:00 [kworker/0:0]
michael 15734 0.0 0.0 11520 2008 pts/4 S+ 01:11 0:00 /usr/bin/make -f debian/rules override_dh_auto_test
michael 15735 0.0 0.0 4292 772 pts/4 S+ 01:11 0:00 /bin/sh -c make check || ( cat tests/test-suite.log; exit 1; )
michael 15736 0.0 0.0 11648 2288 pts/4 S+ 01:11 0:00 make check
michael 15737 0.0 0.0 14544 2940 pts/4 S+ 01:11 0:00 /bin/bash -c fail=; \ if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_with_option: internal error: invalid" "target option '${target_option-}' specified" >&2; exit 1;; esac; has_opt=no; sane_makeflags=$MAKEFLAGS; if { if test -z '2'; then false; elif test -n 'x86_64-pc-linux-gnu'; then true; elif test -n '4.1' && test -n '/home/michael/debian/build-area/rsyslog-8.28.0'; then true; else false; fi; }; then sane_makeflags=$MFLAGS; else case $MAKEFLAGS in *\\[\ \?]*) bs=\\; sane_makeflags=`printf '%s\n' "$MAKEFLAGS" | sed "s/$bs$bs[$bs $bs?]*//g"`;; esac; fi; skip_next=no; strip_trailopt () { flg=`printf '%s\n' "$flg" | sed "s/$1.*$//"`; }; for flg in $sane_makeflags; do test $skip_next = yes && { skip_next=no; continue; }; case $flg in *=*|--*) continue;; -*I) strip_trailopt 'I'; skip_next=yes;; -*I?*) strip_trailopt 'I';; -*O) strip_trailopt 'O'; skip_next=yes;; -*O?*) strip_trailopt 'O';; -*l) strip_trailopt 'l'; skip_next=yes;; -*l?*) strip_trailopt 'l';; -[dEDm]) skip_next=yes;; -[JT]) skip_next=yes;; esac; case $flg in *$target_option*) has_opt=yes; break;; esac; done; test $has_opt = yes); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo check-recursive | sed s/-recursive//`; \ case "check-recursive" in \ distclean-* | maintainer-clean-*) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/imsolaris plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/omlibdbi plugins/ompgsql plugins/omsnmp plugins/omstdout contrib/pmcisconames plugins/pmciscoios plugins/pmnull contrib/pmaixforwardedfrom contrib/pmsnare contrib/pmpanngfw plugins/pmlastmsg plugins/omruleset plugins/omudpspoof plugins/ommongodb contrib/omhiredis contrib/omzmq3 contrib/omczmq contrib/omrabbitmq contrib/imzmq3 contrib/imczmq plugins/omuxsock plugins/omhdfs plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/mmsnmptrapd plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/im3195 plugins/mmnormalize plugins/mmjsonparse contrib/mmgrok plugins/mmaudit plugins/mmanon plugins/mmrm1stspace plugins/mmutf8fix contrib/mmcount contrib/mmsequence plugins/mmdblookup plugins/mmfields plugins/mmpstrucdata contrib/mmrfc5424addhmac contrib/omhttpfs contrib/omamqp1 contrib/omtcl tests' ;; \ *) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/ompgsql contrib/pmcisconames contrib/pmaixforwardedfrom contrib/pmsnare plugins/pmlastmsg plugins/ommongodb contrib/omhiredis contrib/omczmq contrib/imczmq plugins/omuxsock plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/mmnormalize plugins/mmjsonparse plugins/mmanon plugins/mmutf8fix contrib/mmsequence plugins/mmfields plugins/mmpstrucdata tests' ;; \ esac; \ for subdir in $list; do \ echo "Making $target in $subdir"; \ if test "$subdir" = "."; then \ dot_seen=yes; \ local_target="$target-am"; \ else \ local_target="$target"; \ fi; \ (CDPATH="${ZSH_VERSION+.}:" && cd $subdir && make $local_target) \ || eval $failcom; \ done; \ if test "$dot_seen" = "no"; then \ make "$target-am" || exit 1; \ fi; test -z "$fail"
michael 15837 0.0 0.0 14548 2396 pts/4 S+ 01:11 0:00 /bin/bash -c fail=; \ if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_with_option: internal error: invalid" "target option '${target_option-}' specified" >&2; exit 1;; esac; has_opt=no; sane_makeflags=$MAKEFLAGS; if { if test -z '2'; then false; elif test -n 'x86_64-pc-linux-gnu'; then true; elif test -n '4.1' && test -n '/home/michael/debian/build-area/rsyslog-8.28.0'; then true; else false; fi; }; then sane_makeflags=$MFLAGS; else case $MAKEFLAGS in *\\[\ \?]*) bs=\\; sane_makeflags=`printf '%s\n' "$MAKEFLAGS" | sed "s/$bs$bs[$bs $bs?]*//g"`;; esac; fi; skip_next=no; strip_trailopt () { flg=`printf '%s\n' "$flg" | sed "s/$1.*$//"`; }; for flg in $sane_makeflags; do test $skip_next = yes && { skip_next=no; continue; }; case $flg in *=*|--*) continue;; -*I) strip_trailopt 'I'; skip_next=yes;; -*I?*) strip_trailopt 'I';; -*O) strip_trailopt 'O'; skip_next=yes;; -*O?*) strip_trailopt 'O';; -*l) strip_trailopt 'l'; skip_next=yes;; -*l?*) strip_trailopt 'l';; -[dEDm]) skip_next=yes;; -[JT]) skip_next=yes;; esac; case $flg in *$target_option*) has_opt=yes; break;; esac; done; test $has_opt = yes); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo check-recursive | sed s/-recursive//`; \ case "check-recursive" in \ distclean-* | maintainer-clean-*) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/imsolaris plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/omlibdbi plugins/ompgsql plugins/omsnmp plugins/omstdout contrib/pmcisconames plugins/pmciscoios plugins/pmnull contrib/pmaixforwardedfrom contrib/pmsnare contrib/pmpanngfw plugins/pmlastmsg plugins/omruleset plugins/omudpspoof plugins/ommongodb contrib/omhiredis contrib/omzmq3 contrib/omczmq contrib/omrabbitmq contrib/imzmq3 contrib/imczmq plugins/omuxsock plugins/omhdfs plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/mmsnmptrapd plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/im3195 plugins/mmnormalize plugins/mmjsonparse contrib/mmgrok plugins/mmaudit plugins/mmanon plugins/mmrm1stspace plugins/mmutf8fix contrib/mmcount contrib/mmsequence plugins/mmdblookup plugins/mmfields plugins/mmpstrucdata contrib/mmrfc5424addhmac contrib/omhttpfs contrib/omamqp1 contrib/omtcl tests' ;; \ *) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/ompgsql contrib/pmcisconames contrib/pmaixforwardedfrom contrib/pmsnare plugins/pmlastmsg plugins/ommongodb contrib/omhiredis contrib/omczmq contrib/imczmq plugins/omuxsock plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/mmnormalize plugins/mmjsonparse plugins/mmanon plugins/mmutf8fix contrib/mmsequence plugins/mmfields plugins/mmpstrucdata tests' ;; \ esac; \ for subdir in $list; do \ echo "Making $target in $subdir"; \ if test "$subdir" = "."; then \ dot_seen=yes; \ local_target="$target-am"; \ else \ local_target="$target"; \ fi; \ (CDPATH="${ZSH_VERSION+.}:" && cd $subdir && make $local_target) \ || eval $failcom; \ done; \ if test "$dot_seen" = "no"; then \ make "$target-am" || exit 1; \ fi; test -z "$fail"
michael 15838 0.0 0.0 12304 2936 pts/4 S+ 01:11 0:00 make check
michael 16326 0.0 0.0 12364 3144 pts/4 S+ 01:11 0:00 make check-TESTS
```
| 1.0 | test-suite hangs in pmsnare.sh - Version: 8.28.0
librelp: 1.2.4
I tried to build the latest upstream release 8.28.0. The test-suite (make check) does not succeed and get's stuck after
```
...
PASS: uxsock_simple.sh
PASS: sndrcv_relp.sh
SKIP: sndrcv_relp_dflt_pt.sh
PASS: imrelp-basic.sh
PASS: imrelp-manyconn.sh
PASS: sndrcv_relp_tls.sh
```
The ps output of the hanging process is:
```
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
michael 15170 0.0 0.0 14660 3176 pts/4 S+ 01:33 0:00 /bin/bash -c p='pmsnare.sh'; \ b='pmsnare.sh'; \ case $- in *e*) set +e;; esac; srcdirstrip=`echo "." | sed 's|.|.|g'`; case $p in ./*) f=`echo "$p" | sed "s|^$srcdirstrip/||"`;; *) f=$p;; esac; { mgn= red= grn= lgn= blu= brg= std=; am__color_tests=no; if test "X" = Xno; then am__color_tests=no; elif test "X" = Xalways; then am__color_tests=yes; elif test "X$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then am__color_tests=yes; fi; if test $am__color_tests = yes; then red='?[0;31m'; grn='?[0;32m'; lgn='?[1;32m'; blu='?[1;34m'; mgn='?[0;35m'; brg='?[1m'; std='?[m'; fi; }; srcdir=.; export srcdir; case "pmsnare.sh.log" in */*) am__odir=`echo "./pmsnare.sh.log" | sed 's|/[^/]*$||'`;; *) am__odir=.;; esac; test "x$am__odir" = x"." || test -d "$am__odir" || /bin/mkdir -p "$am__odir" || exit $?; if test -f "./$f"; then dir=./; elif test -f "$f"; then dir=; else dir="./"; fi; tst=$dir$f; log='pmsnare.sh.log'; if test -n ''; then am__enable_hard_errors=no; else am__enable_hard_errors=yes; fi; case " " in *[\ \?]$f[\ \?]* | *[\ \?]$dir$f[\ \?]*) am__expect_failure=yes;; *) am__expect_failure=no;; esac; RSYSLOG_MODDIR='/home/michael/debian/build-area/rsyslog-8.28.0'/runtime/.libs/ /bin/bash ../test-driver --test-name "$f" \ --log-file $b.log --trs-file $b.trs \ --color-tests "$am__color_tests" --enable-hard-errors "$am__enable_hard_errors" --expect-failure "$am__expect_failure" -- \ "$tst"»
michael 15174 0.0 0.0 14660 3188 pts/4 S+ 01:33 0:00 /bin/bash ../test-driver --test-name pmsnare.sh --log-file pmsnare.sh.log --trs-file pmsnare.sh.trs --color-tests no --enable-hard-errors yes --expect-failure no -- ./pmsnare.sh
michael 15175 0.0 0.0 15528 3996 pts/4 S+ 01:33 0:00 /bin/bash ./pmsnare.sh
michael 15272 0.0 0.0 4204 696 pts/4 S+ 01:33 0:00 ./nettester -tpmsnare_default -iudp
michael 15273 0.0 0.0 172276 2760 pts/4 Sl+ 01:33 0:00 ../tools/rsyslogd -f./testsuites/pmsnare_default.conf -C -n -irsyslog.pid -M../runtime/.libs:../.libs
root 15298 0.3 0.0 0 0 ? S 01:34 0:00 [kworker/0:0]
michael 15734 0.0 0.0 11520 2008 pts/4 S+ 01:11 0:00 /usr/bin/make -f debian/rules override_dh_auto_test
michael 15735 0.0 0.0 4292 772 pts/4 S+ 01:11 0:00 /bin/sh -c make check || ( cat tests/test-suite.log; exit 1; )
michael 15736 0.0 0.0 11648 2288 pts/4 S+ 01:11 0:00 make check
michael 15737 0.0 0.0 14544 2940 pts/4 S+ 01:11 0:00 /bin/bash -c fail=; \ if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_with_option: internal error: invalid" "target option '${target_option-}' specified" >&2; exit 1;; esac; has_opt=no; sane_makeflags=$MAKEFLAGS; if { if test -z '2'; then false; elif test -n 'x86_64-pc-linux-gnu'; then true; elif test -n '4.1' && test -n '/home/michael/debian/build-area/rsyslog-8.28.0'; then true; else false; fi; }; then sane_makeflags=$MFLAGS; else case $MAKEFLAGS in *\\[\ \?]*) bs=\\; sane_makeflags=`printf '%s\n' "$MAKEFLAGS" | sed "s/$bs$bs[$bs $bs?]*//g"`;; esac; fi; skip_next=no; strip_trailopt () { flg=`printf '%s\n' "$flg" | sed "s/$1.*$//"`; }; for flg in $sane_makeflags; do test $skip_next = yes && { skip_next=no; continue; }; case $flg in *=*|--*) continue;; -*I) strip_trailopt 'I'; skip_next=yes;; -*I?*) strip_trailopt 'I';; -*O) strip_trailopt 'O'; skip_next=yes;; -*O?*) strip_trailopt 'O';; -*l) strip_trailopt 'l'; skip_next=yes;; -*l?*) strip_trailopt 'l';; -[dEDm]) skip_next=yes;; -[JT]) skip_next=yes;; esac; case $flg in *$target_option*) has_opt=yes; break;; esac; done; test $has_opt = yes); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo check-recursive | sed s/-recursive//`; \ case "check-recursive" in \ distclean-* | maintainer-clean-*) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/imsolaris plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/omlibdbi plugins/ompgsql plugins/omsnmp plugins/omstdout contrib/pmcisconames plugins/pmciscoios plugins/pmnull contrib/pmaixforwardedfrom contrib/pmsnare contrib/pmpanngfw plugins/pmlastmsg plugins/omruleset plugins/omudpspoof plugins/ommongodb contrib/omhiredis contrib/omzmq3 contrib/omczmq contrib/omrabbitmq contrib/imzmq3 contrib/imczmq plugins/omuxsock plugins/omhdfs plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/mmsnmptrapd plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/im3195 plugins/mmnormalize plugins/mmjsonparse contrib/mmgrok plugins/mmaudit plugins/mmanon plugins/mmrm1stspace plugins/mmutf8fix contrib/mmcount contrib/mmsequence plugins/mmdblookup plugins/mmfields plugins/mmpstrucdata contrib/mmrfc5424addhmac contrib/omhttpfs contrib/omamqp1 contrib/omtcl tests' ;; \ *) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/ompgsql contrib/pmcisconames contrib/pmaixforwardedfrom contrib/pmsnare plugins/pmlastmsg plugins/ommongodb contrib/omhiredis contrib/omczmq contrib/imczmq plugins/omuxsock plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/mmnormalize plugins/mmjsonparse plugins/mmanon plugins/mmutf8fix contrib/mmsequence plugins/mmfields plugins/mmpstrucdata tests' ;; \ esac; \ for subdir in $list; do \ echo "Making $target in $subdir"; \ if test "$subdir" = "."; then \ dot_seen=yes; \ local_target="$target-am"; \ else \ local_target="$target"; \ fi; \ (CDPATH="${ZSH_VERSION+.}:" && cd $subdir && make $local_target) \ || eval $failcom; \ done; \ if test "$dot_seen" = "no"; then \ make "$target-am" || exit 1; \ fi; test -z "$fail"
michael 15837 0.0 0.0 14548 2396 pts/4 S+ 01:11 0:00 /bin/bash -c fail=; \ if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_with_option: internal error: invalid" "target option '${target_option-}' specified" >&2; exit 1;; esac; has_opt=no; sane_makeflags=$MAKEFLAGS; if { if test -z '2'; then false; elif test -n 'x86_64-pc-linux-gnu'; then true; elif test -n '4.1' && test -n '/home/michael/debian/build-area/rsyslog-8.28.0'; then true; else false; fi; }; then sane_makeflags=$MFLAGS; else case $MAKEFLAGS in *\\[\ \?]*) bs=\\; sane_makeflags=`printf '%s\n' "$MAKEFLAGS" | sed "s/$bs$bs[$bs $bs?]*//g"`;; esac; fi; skip_next=no; strip_trailopt () { flg=`printf '%s\n' "$flg" | sed "s/$1.*$//"`; }; for flg in $sane_makeflags; do test $skip_next = yes && { skip_next=no; continue; }; case $flg in *=*|--*) continue;; -*I) strip_trailopt 'I'; skip_next=yes;; -*I?*) strip_trailopt 'I';; -*O) strip_trailopt 'O'; skip_next=yes;; -*O?*) strip_trailopt 'O';; -*l) strip_trailopt 'l'; skip_next=yes;; -*l?*) strip_trailopt 'l';; -[dEDm]) skip_next=yes;; -[JT]) skip_next=yes;; esac; case $flg in *$target_option*) has_opt=yes; break;; esac; done; test $has_opt = yes); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo check-recursive | sed s/-recursive//`; \ case "check-recursive" in \ distclean-* | maintainer-clean-*) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/imsolaris plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/omlibdbi plugins/ompgsql plugins/omsnmp plugins/omstdout contrib/pmcisconames plugins/pmciscoios plugins/pmnull contrib/pmaixforwardedfrom contrib/pmsnare contrib/pmpanngfw plugins/pmlastmsg plugins/omruleset plugins/omudpspoof plugins/ommongodb contrib/omhiredis contrib/omzmq3 contrib/omczmq contrib/omrabbitmq contrib/imzmq3 contrib/imczmq plugins/omuxsock plugins/omhdfs plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/mmsnmptrapd plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/im3195 plugins/mmnormalize plugins/mmjsonparse contrib/mmgrok plugins/mmaudit plugins/mmanon plugins/mmrm1stspace plugins/mmutf8fix contrib/mmcount contrib/mmsequence plugins/mmdblookup plugins/mmfields plugins/mmpstrucdata contrib/mmrfc5424addhmac contrib/omhttpfs contrib/omamqp1 contrib/omtcl tests' ;; \ *) list='compat runtime grammar . plugins/immark plugins/imuxsock plugins/imtcp plugins/imudp plugins/omtesting plugins/mmexternal tools plugins/imklog contrib/imkmsg plugins/impstats plugins/omgssapi plugins/imgssapi plugins/omrelp plugins/imrelp plugins/ommysql plugins/ompgsql contrib/pmcisconames contrib/pmaixforwardedfrom contrib/pmsnare plugins/pmlastmsg plugins/ommongodb contrib/omhiredis contrib/omczmq contrib/imczmq plugins/omuxsock plugins/omjournal plugins/imjournal plugins/omelasticsearch plugins/imfile plugins/imptcp plugins/imdiag plugins/ommail plugins/omkafka plugins/imkafka plugins/omprog plugins/mmnormalize plugins/mmjsonparse plugins/mmanon plugins/mmutf8fix contrib/mmsequence plugins/mmfields plugins/mmpstrucdata tests' ;; \ esac; \ for subdir in $list; do \ echo "Making $target in $subdir"; \ if test "$subdir" = "."; then \ dot_seen=yes; \ local_target="$target-am"; \ else \ local_target="$target"; \ fi; \ (CDPATH="${ZSH_VERSION+.}:" && cd $subdir && make $local_target) \ || eval $failcom; \ done; \ if test "$dot_seen" = "no"; then \ make "$target-am" || exit 1; \ fi; test -z "$fail"
michael 15838 0.0 0.0 12304 2936 pts/4 S+ 01:11 0:00 make check
michael 16326 0.0 0.0 12364 3144 pts/4 S+ 01:11 0:00 make check-TESTS
```
| non_defect | test suite hangs in pmsnare sh version librelp i tried to build the latest upstream release the test suite make check does not succeed and get s stuck after pass uxsock simple sh pass sndrcv relp sh skip sndrcv relp dflt pt sh pass imrelp basic sh pass imrelp manyconn sh pass sndrcv relp tls sh the ps output of the hanging process is user pid cpu mem vsz rss tty stat start time command michael pts s bin bash c p pmsnare sh b pmsnare sh case in e set e esac srcdirstrip echo sed s g case p in f echo p sed s srcdirstrip f p esac mgn red grn lgn blu brg std am color tests no if test x xno then am color tests no elif test x xalways then am color tests yes elif test x term xdumb test t dev null then am color tests yes fi if test am color tests yes then red am odir esac test x am odir x test d am odir bin mkdir p am odir exit if test f f then dir elif test f f then dir else dir fi tst dir f log pmsnare sh log if test n then am enable hard errors no else am enable hard errors yes fi case in f dir f am expect failure yes am expect failure no esac rsyslog moddir home michael debian build area rsyslog runtime libs bin bash test driver test name f log file b log trs file b trs color tests am color tests enable hard errors am enable hard errors expect failure am expect failure tst » michael pts s bin bash test driver test name pmsnare sh log file pmsnare sh log trs file pmsnare sh trs color tests no enable hard errors yes expect failure no pmsnare sh michael pts s bin bash pmsnare sh michael pts s nettester tpmsnare default iudp michael pts sl tools rsyslogd f testsuites pmsnare default conf c n irsyslog pid m runtime libs libs root s michael pts s usr bin make f debian rules override dh auto test michael pts s bin sh c make check cat tests test suite log exit michael pts s make check michael pts s bin bash c fail if target option k case target option in echo am make running with option internal error invalid target option target option specified exit esac has opt no sane makeflags makeflags if if test z then false elif test n pc linux gnu then true elif test n test n home michael debian build area rsyslog then true else false fi then sane makeflags mflags else case makeflags in bs sane makeflags printf s n makeflags sed s bs bs g esac fi skip next no strip trailopt flg printf s n flg sed s for flg in sane makeflags do test skip next yes skip next no continue case flg in continue i strip trailopt i skip next yes i strip trailopt i o strip trailopt o skip next yes o strip trailopt o l strip trailopt l skip next yes l strip trailopt l skip next yes skip next yes esac case flg in target option has opt yes break esac done test has opt yes then failcom fail yes else failcom exit fi dot seen no target echo check recursive sed s recursive case check recursive in distclean maintainer clean list compat runtime grammar plugins immark plugins imuxsock plugins imtcp plugins imudp plugins omtesting plugins mmexternal tools plugins imklog contrib imkmsg plugins impstats plugins imsolaris plugins omgssapi plugins imgssapi plugins omrelp plugins imrelp plugins ommysql plugins omlibdbi plugins ompgsql plugins omsnmp plugins omstdout contrib pmcisconames plugins pmciscoios plugins pmnull contrib pmaixforwardedfrom contrib pmsnare contrib pmpanngfw plugins pmlastmsg plugins omruleset plugins omudpspoof plugins ommongodb contrib omhiredis contrib contrib omczmq contrib omrabbitmq contrib contrib imczmq plugins omuxsock plugins omhdfs plugins omjournal plugins imjournal plugins omelasticsearch plugins mmsnmptrapd plugins imfile plugins imptcp plugins imdiag plugins ommail plugins omkafka plugins imkafka plugins omprog plugins plugins mmnormalize plugins mmjsonparse contrib mmgrok plugins mmaudit plugins mmanon plugins plugins contrib mmcount contrib mmsequence plugins mmdblookup plugins mmfields plugins mmpstrucdata contrib contrib omhttpfs contrib contrib omtcl tests list compat runtime grammar plugins immark plugins imuxsock plugins imtcp plugins imudp plugins omtesting plugins mmexternal tools plugins imklog contrib imkmsg plugins impstats plugins omgssapi plugins imgssapi plugins omrelp plugins imrelp plugins ommysql plugins ompgsql contrib pmcisconames contrib pmaixforwardedfrom contrib pmsnare plugins pmlastmsg plugins ommongodb contrib omhiredis contrib omczmq contrib imczmq plugins omuxsock plugins omjournal plugins imjournal plugins omelasticsearch plugins imfile plugins imptcp plugins imdiag plugins ommail plugins omkafka plugins imkafka plugins omprog plugins mmnormalize plugins mmjsonparse plugins mmanon plugins contrib mmsequence plugins mmfields plugins mmpstrucdata tests esac for subdir in list do echo making target in subdir if test subdir then dot seen yes local target target am else local target target fi cdpath zsh version cd subdir make local target eval failcom done if test dot seen no then make target am exit fi test z fail michael pts s bin bash c fail if target option k case target option in echo am make running with option internal error invalid target option target option specified exit esac has opt no sane makeflags makeflags if if test z then false elif test n pc linux gnu then true elif test n test n home michael debian build area rsyslog then true else false fi then sane makeflags mflags else case makeflags in bs sane makeflags printf s n makeflags sed s bs bs g esac fi skip next no strip trailopt flg printf s n flg sed s for flg in sane makeflags do test skip next yes skip next no continue case flg in continue i strip trailopt i skip next yes i strip trailopt i o strip trailopt o skip next yes o strip trailopt o l strip trailopt l skip next yes l strip trailopt l skip next yes skip next yes esac case flg in target option has opt yes break esac done test has opt yes then failcom fail yes else failcom exit fi dot seen no target echo check recursive sed s recursive case check recursive in distclean maintainer clean list compat runtime grammar plugins immark plugins imuxsock plugins imtcp plugins imudp plugins omtesting plugins mmexternal tools plugins imklog contrib imkmsg plugins impstats plugins imsolaris plugins omgssapi plugins imgssapi plugins omrelp plugins imrelp plugins ommysql plugins omlibdbi plugins ompgsql plugins omsnmp plugins omstdout contrib pmcisconames plugins pmciscoios plugins pmnull contrib pmaixforwardedfrom contrib pmsnare contrib pmpanngfw plugins pmlastmsg plugins omruleset plugins omudpspoof plugins ommongodb contrib omhiredis contrib contrib omczmq contrib omrabbitmq contrib contrib imczmq plugins omuxsock plugins omhdfs plugins omjournal plugins imjournal plugins omelasticsearch plugins mmsnmptrapd plugins imfile plugins imptcp plugins imdiag plugins ommail plugins omkafka plugins imkafka plugins omprog plugins plugins mmnormalize plugins mmjsonparse contrib mmgrok plugins mmaudit plugins mmanon plugins plugins contrib mmcount contrib mmsequence plugins mmdblookup plugins mmfields plugins mmpstrucdata contrib contrib omhttpfs contrib contrib omtcl tests list compat runtime grammar plugins immark plugins imuxsock plugins imtcp plugins imudp plugins omtesting plugins mmexternal tools plugins imklog contrib imkmsg plugins impstats plugins omgssapi plugins imgssapi plugins omrelp plugins imrelp plugins ommysql plugins ompgsql contrib pmcisconames contrib pmaixforwardedfrom contrib pmsnare plugins pmlastmsg plugins ommongodb contrib omhiredis contrib omczmq contrib imczmq plugins omuxsock plugins omjournal plugins imjournal plugins omelasticsearch plugins imfile plugins imptcp plugins imdiag plugins ommail plugins omkafka plugins imkafka plugins omprog plugins mmnormalize plugins mmjsonparse plugins mmanon plugins contrib mmsequence plugins mmfields plugins mmpstrucdata tests esac for subdir in list do echo making target in subdir if test subdir then dot seen yes local target target am else local target target fi cdpath zsh version cd subdir make local target eval failcom done if test dot seen no then make target am exit fi test z fail michael pts s make check michael pts s make check tests | 0 |
7,639 | 2,610,408,271 | IssuesEvent | 2015-02-26 20:12:39 | chrsmith/republic-at-war | https://api.github.com/repos/chrsmith/republic-at-war | opened | Spelling mistake | auto-migrated Priority-Medium Type-Defect | ```
TEXT_TOOLTIP_NU_SHUTTLE:
"the" instead of "he"
```
-----
Original issue reported on code.google.com by `Ana...@gmx-topmail.de` on 28 May 2012 at 9:44 | 1.0 | Spelling mistake - ```
TEXT_TOOLTIP_NU_SHUTTLE:
"the" instead of "he"
```
-----
Original issue reported on code.google.com by `Ana...@gmx-topmail.de` on 28 May 2012 at 9:44 | defect | spelling mistake text tooltip nu shuttle the instead of he original issue reported on code google com by ana gmx topmail de on may at | 1 |
8,034 | 2,611,424,757 | IssuesEvent | 2015-02-27 04:38:49 | chrsmith/codesearch | https://api.github.com/repos/chrsmith/codesearch | opened | IndexWriter always writes logs | auto-migrated Priority-Medium Type-Defect | ```
Would be great to wrap these in if ix.Verbose { ... } and allow for silent use.
In Flush:
log.Printf("%d data bytes, %d index bytes", ix.totalBytes, ix.main.offset())
In mergePost:
log.Printf("merge %d files + mem", len(ix.postFile))
```
Original issue reported on code.google.com by `n...@daaku.org` on 7 Dec 2012 at 8:08 | 1.0 | IndexWriter always writes logs - ```
Would be great to wrap these in if ix.Verbose { ... } and allow for silent use.
In Flush:
log.Printf("%d data bytes, %d index bytes", ix.totalBytes, ix.main.offset())
In mergePost:
log.Printf("merge %d files + mem", len(ix.postFile))
```
Original issue reported on code.google.com by `n...@daaku.org` on 7 Dec 2012 at 8:08 | defect | indexwriter always writes logs would be great to wrap these in if ix verbose and allow for silent use in flush log printf d data bytes d index bytes ix totalbytes ix main offset in mergepost log printf merge d files mem len ix postfile original issue reported on code google com by n daaku org on dec at | 1 |
56,693 | 15,300,449,648 | IssuesEvent | 2021-02-24 12:19:57 | jOOQ/jOOQ | https://api.github.com/repos/jOOQ/jOOQ | closed | Unnecessarily slow AbstractQuery.bind(int, Object) | C: Functionality P: Medium T: Defect | ### Expected behavior and actual behavior:
fast vs slow
### Steps to reproduce the problem:
this method in AbstractQuery creates an array on each invocation:
```java
public Query bind(int index, Object value) {
Param<?>[] params = getParams().values().toArray(EMPTY_PARAM);
...
```
Now if your query contains _lots_ of parameters, this becomes very, very slow
Time these two snippets against each other and see:
```java
private int numParams = 1000;
Select<Record> createSelectQuery(int params) {
SelectField[] fields = new Field[params];
for (int i = 0;i < params;i++) {
fields[i] = DSL.val(0L).as("param" + i);
}
return dsl.select(fields).from(table());
}
private ResultQuery query = createSelectQuery(numParams);
@Test
public void bindLoop() {
ResultQuery<Record> resultQuery = query;
for (int paramIdx = 1;paramIdx <= numParams;paramIdx++) {
resultQuery.bind(paramIdx, paramIdx);
}
}
@Test
public void bindArray() {
BatchBindStep batchBindStep = create.batch(query);
Object[] paramValues = new Object[numParams];
for (int paramIdx = 0;paramIdx < numParams;paramIdx++) {
paramValues[paramIdx] = paramIdx;
}
batchBindStep.bind(paramValues);
}
```
Unfortunately, BatchBindStep is of no use if you actually want your query to return something.
### Versions:
- jOOQ:3.10.5
- Java:1.8.0
- Database (include vendor): none, irrelevant to this issue
- OS: Windows 7
- JDBC Driver (include name if inofficial driver): n/a
| 1.0 | Unnecessarily slow AbstractQuery.bind(int, Object) - ### Expected behavior and actual behavior:
fast vs slow
### Steps to reproduce the problem:
this method in AbstractQuery creates an array on each invocation:
```java
public Query bind(int index, Object value) {
Param<?>[] params = getParams().values().toArray(EMPTY_PARAM);
...
```
Now if your query contains _lots_ of parameters, this becomes very, very slow
Time these two snippets against each other and see:
```java
private int numParams = 1000;
Select<Record> createSelectQuery(int params) {
SelectField[] fields = new Field[params];
for (int i = 0;i < params;i++) {
fields[i] = DSL.val(0L).as("param" + i);
}
return dsl.select(fields).from(table());
}
private ResultQuery query = createSelectQuery(numParams);
@Test
public void bindLoop() {
ResultQuery<Record> resultQuery = query;
for (int paramIdx = 1;paramIdx <= numParams;paramIdx++) {
resultQuery.bind(paramIdx, paramIdx);
}
}
@Test
public void bindArray() {
BatchBindStep batchBindStep = create.batch(query);
Object[] paramValues = new Object[numParams];
for (int paramIdx = 0;paramIdx < numParams;paramIdx++) {
paramValues[paramIdx] = paramIdx;
}
batchBindStep.bind(paramValues);
}
```
Unfortunately, BatchBindStep is of no use if you actually want your query to return something.
### Versions:
- jOOQ:3.10.5
- Java:1.8.0
- Database (include vendor): none, irrelevant to this issue
- OS: Windows 7
- JDBC Driver (include name if inofficial driver): n/a
| defect | unnecessarily slow abstractquery bind int object expected behavior and actual behavior fast vs slow steps to reproduce the problem this method in abstractquery creates an array on each invocation java public query bind int index object value param params getparams values toarray empty param now if your query contains lots of parameters this becomes very very slow time these two snippets against each other and see java private int numparams select createselectquery int params selectfield fields new field for int i i params i fields dsl val as param i return dsl select fields from table private resultquery query createselectquery numparams test public void bindloop resultquery resultquery query for int paramidx paramidx numparams paramidx resultquery bind paramidx paramidx test public void bindarray batchbindstep batchbindstep create batch query object paramvalues new object for int paramidx paramidx numparams paramidx paramvalues paramidx batchbindstep bind paramvalues unfortunately batchbindstep is of no use if you actually want your query to return something versions jooq java database include vendor none irrelevant to this issue os windows jdbc driver include name if inofficial driver n a | 1 |
17,853 | 3,013,534,768 | IssuesEvent | 2015-07-29 09:34:43 | yawlfoundation/yawl | https://api.github.com/repos/yawlfoundation/yawl | closed | Further possibility for multiple atomic task to be converted to single one (see original #394 fix): patch included | auto-migrated Priority-High Type-Defect | ```
Issue #394 showed how a multiple atomic task could be converted to a single one
if certain settings were made.
This also still (rev 1654) occurs if infinite max. instances is used (the most
common case) and Done is clicked whilst a Bounds field has focus. Because
switching from the Queries to Bounds tab also results in the first field
getting focus (unlike in the initial dialog view with no focus), this also
happens if the Queries tab is entered, but the Bounds one is switched to before
hitting Done.
As with #394, this is a serious problem because it only shows up once the spec
is saved and reloaded, with the user having lost all the 'coding' in the
multiple atomic task.
Fix attached. The problem is that, when closing the dialog with Done, a focus
lost event occurs. The code therein (in MultipleInstanceBoundsPanel) is wrong:
it doesn't check for infinite values being set and thus sets erroneous values
of 1 (converting to a single instance task).
Infinite values are synonymous with the numeric bounds fields being disabled,
so I check for these and avoid task updates if so (see my SPR comments).
Revised class and rev 1654 diff file attached.
```
Original issue reported on code.google.com by `monsieur...@gmail.com` on 3 Feb 2011 at 11:24
Attachments:
* [MultipleInstanceBoundsPanel.diff](https://storage.googleapis.com/google-code-attachments/yawl/issue-413/comment-0/MultipleInstanceBoundsPanel.diff)
* [MultipleInstanceBoundsPanel.java](https://storage.googleapis.com/google-code-attachments/yawl/issue-413/comment-0/MultipleInstanceBoundsPanel.java)
| 1.0 | Further possibility for multiple atomic task to be converted to single one (see original #394 fix): patch included - ```
Issue #394 showed how a multiple atomic task could be converted to a single one
if certain settings were made.
This also still (rev 1654) occurs if infinite max. instances is used (the most
common case) and Done is clicked whilst a Bounds field has focus. Because
switching from the Queries to Bounds tab also results in the first field
getting focus (unlike in the initial dialog view with no focus), this also
happens if the Queries tab is entered, but the Bounds one is switched to before
hitting Done.
As with #394, this is a serious problem because it only shows up once the spec
is saved and reloaded, with the user having lost all the 'coding' in the
multiple atomic task.
Fix attached. The problem is that, when closing the dialog with Done, a focus
lost event occurs. The code therein (in MultipleInstanceBoundsPanel) is wrong:
it doesn't check for infinite values being set and thus sets erroneous values
of 1 (converting to a single instance task).
Infinite values are synonymous with the numeric bounds fields being disabled,
so I check for these and avoid task updates if so (see my SPR comments).
Revised class and rev 1654 diff file attached.
```
Original issue reported on code.google.com by `monsieur...@gmail.com` on 3 Feb 2011 at 11:24
Attachments:
* [MultipleInstanceBoundsPanel.diff](https://storage.googleapis.com/google-code-attachments/yawl/issue-413/comment-0/MultipleInstanceBoundsPanel.diff)
* [MultipleInstanceBoundsPanel.java](https://storage.googleapis.com/google-code-attachments/yawl/issue-413/comment-0/MultipleInstanceBoundsPanel.java)
| defect | further possibility for multiple atomic task to be converted to single one see original fix patch included issue showed how a multiple atomic task could be converted to a single one if certain settings were made this also still rev occurs if infinite max instances is used the most common case and done is clicked whilst a bounds field has focus because switching from the queries to bounds tab also results in the first field getting focus unlike in the initial dialog view with no focus this also happens if the queries tab is entered but the bounds one is switched to before hitting done as with this is a serious problem because it only shows up once the spec is saved and reloaded with the user having lost all the coding in the multiple atomic task fix attached the problem is that when closing the dialog with done a focus lost event occurs the code therein in multipleinstanceboundspanel is wrong it doesn t check for infinite values being set and thus sets erroneous values of converting to a single instance task infinite values are synonymous with the numeric bounds fields being disabled so i check for these and avoid task updates if so see my spr comments revised class and rev diff file attached original issue reported on code google com by monsieur gmail com on feb at attachments | 1 |
381,683 | 11,278,459,062 | IssuesEvent | 2020-01-15 06:50:11 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | closed | Invalid position calculation for Chained invocations | Area/Language Priority/Blocker Type/Bug | **Description:**
Consider the following expression
`var s = columnHeaders.'map(s => s.toLowerAscii()).indexOf("district");`
In this example, the start column of `columnHeaders.'map(s => s.toLowerAscii()).indexOf("district")` and `indexOf("district")` are both same which leads to failing proper position calculation for hover, rename and related LS operations
**Affected Versions:**
1.0.0-alpha at least
| 1.0 | Invalid position calculation for Chained invocations - **Description:**
Consider the following expression
`var s = columnHeaders.'map(s => s.toLowerAscii()).indexOf("district");`
In this example, the start column of `columnHeaders.'map(s => s.toLowerAscii()).indexOf("district")` and `indexOf("district")` are both same which leads to failing proper position calculation for hover, rename and related LS operations
**Affected Versions:**
1.0.0-alpha at least
| non_defect | invalid position calculation for chained invocations description consider the following expression var s columnheaders map s s tolowerascii indexof district in this example the start column of columnheaders map s s tolowerascii indexof district and indexof district are both same which leads to failing proper position calculation for hover rename and related ls operations affected versions alpha at least | 0 |
45,891 | 9,828,461,107 | IssuesEvent | 2019-06-15 11:52:43 | Regalis11/Barotrauma | https://api.github.com/repos/Regalis11/Barotrauma | closed | Game crashes whilst finishing a mission on singleplayer campaign mode | Bug Code Crash Help wanted Need more info Needs testing | **Description**
When ending a mission, or entering an outpost, the game crashes
**Steps To Reproduce**
- Start a mission on singleplayer campaign mode
- Get to the end of the level
- Click on "Enter [Station name]"
**Version**
Windows 10 Enterprise version 1809 [Build: 17763.529]
[crashreport.log](https://github.com/Regalis11/Barotrauma/files/3265453/crashreport.log)
[crashreport (2).log](https://github.com/Regalis11/Barotrauma/files/3265447/crashreport.2.log)
[crashreport (3).log](https://github.com/Regalis11/Barotrauma/files/3265448/crashreport.3.log)
[crashreport (4).log](https://github.com/Regalis11/Barotrauma/files/3265449/crashreport.4.log) | 1.0 | Game crashes whilst finishing a mission on singleplayer campaign mode - **Description**
When ending a mission, or entering an outpost, the game crashes
**Steps To Reproduce**
- Start a mission on singleplayer campaign mode
- Get to the end of the level
- Click on "Enter [Station name]"
**Version**
Windows 10 Enterprise version 1809 [Build: 17763.529]
[crashreport.log](https://github.com/Regalis11/Barotrauma/files/3265453/crashreport.log)
[crashreport (2).log](https://github.com/Regalis11/Barotrauma/files/3265447/crashreport.2.log)
[crashreport (3).log](https://github.com/Regalis11/Barotrauma/files/3265448/crashreport.3.log)
[crashreport (4).log](https://github.com/Regalis11/Barotrauma/files/3265449/crashreport.4.log) | non_defect | game crashes whilst finishing a mission on singleplayer campaign mode description when ending a mission or entering an outpost the game crashes steps to reproduce start a mission on singleplayer campaign mode get to the end of the level click on enter version windows enterprise version | 0 |
75,172 | 25,568,102,525 | IssuesEvent | 2022-11-30 15:39:42 | galasa-dev/projectmanagement | https://api.github.com/repos/galasa-dev/projectmanagement | opened | REST interface getProperty(...) gets wrong key with the right value. | defect 5-Framework | ## Symptom
There is a bug in the AccessCps code such that when you ask the rest interface for a property, it returns
a key-value pair such that the value is actually what you wanted to look up, but the key is incorrect.
## Background
This bug was found by inspection, while writing unit tests.
No evidence on whether this bug has broken anything is available.
## Worked example
So if you have the following properties in reality.
`mynetwork.myplexA.mylpar.myregion.admin.port=98`
and
`mynetwork.myplexA.mylpar.myregion.port=98`
You might do the query:
```
prefix=mynetwork
suffix=port
infixes=[myplexA,mylpar,myregion,admin]
```
So the call to getProperty searches:
`mynetwork.myplexA.mylpar.myregion.admin.port`, finds the value of 98 immediately, returns it to the servlet code.
The servlet code then wants the key, so tries to guess what the key could be by searching all the values in the namespace.
From this point, it's kinda random as to which key it decides goes along with the value of 98, as it erroneously attempts a value->key lookup, which may yield multiple results in no preference order.
One is picked at random (as a hashmap is being used), and the output of
```
{ "key"="mynetwork.myplexA.mylpar.myregion.port","value"="98"}
```
ie: The correct value, but the wrong key.
It should have been this:
{ "key"="mynetwork.myplexA.mylpar.myregion.admin.port", "value"="98"}
... so there is our bug. | 1.0 | REST interface getProperty(...) gets wrong key with the right value. - ## Symptom
There is a bug in the AccessCps code such that when you ask the rest interface for a property, it returns
a key-value pair such that the value is actually what you wanted to look up, but the key is incorrect.
## Background
This bug was found by inspection, while writing unit tests.
No evidence on whether this bug has broken anything is available.
## Worked example
So if you have the following properties in reality.
`mynetwork.myplexA.mylpar.myregion.admin.port=98`
and
`mynetwork.myplexA.mylpar.myregion.port=98`
You might do the query:
```
prefix=mynetwork
suffix=port
infixes=[myplexA,mylpar,myregion,admin]
```
So the call to getProperty searches:
`mynetwork.myplexA.mylpar.myregion.admin.port`, finds the value of 98 immediately, returns it to the servlet code.
The servlet code then wants the key, so tries to guess what the key could be by searching all the values in the namespace.
From this point, it's kinda random as to which key it decides goes along with the value of 98, as it erroneously attempts a value->key lookup, which may yield multiple results in no preference order.
One is picked at random (as a hashmap is being used), and the output of
```
{ "key"="mynetwork.myplexA.mylpar.myregion.port","value"="98"}
```
ie: The correct value, but the wrong key.
It should have been this:
{ "key"="mynetwork.myplexA.mylpar.myregion.admin.port", "value"="98"}
... so there is our bug. | defect | rest interface getproperty gets wrong key with the right value symptom there is a bug in the accesscps code such that when you ask the rest interface for a property it returns a key value pair such that the value is actually what you wanted to look up but the key is incorrect background this bug was found by inspection while writing unit tests no evidence on whether this bug has broken anything is available worked example so if you have the following properties in reality mynetwork myplexa mylpar myregion admin port and mynetwork myplexa mylpar myregion port you might do the query prefix mynetwork suffix port infixes so the call to getproperty searches mynetwork myplexa mylpar myregion admin port finds the value of immediately returns it to the servlet code the servlet code then wants the key so tries to guess what the key could be by searching all the values in the namespace from this point it s kinda random as to which key it decides goes along with the value of as it erroneously attempts a value key lookup which may yield multiple results in no preference order one is picked at random as a hashmap is being used and the output of key mynetwork myplexa mylpar myregion port value ie the correct value but the wrong key it should have been this key mynetwork myplexa mylpar myregion admin port value so there is our bug | 1 |
26,760 | 27,166,227,505 | IssuesEvent | 2023-02-17 15:32:50 | bevyengine/bevy | https://api.github.com/repos/bevyengine/bevy | closed | `ScheduleBuildSettings` should have a `use_shortnames` field | A-ECS C-Usability | ## What problem does this solve or what need does it fill?
System names can be very long and challenging to read when resolving
## What solution would you like?
Add the field, set to `false` by default.
Use the existing short_name code in bevy_utils to parse the system and component names if that field is set to `true`.
## Additional context
Please don't do this until #7267 is merged for the sake of my sanity.
| True | `ScheduleBuildSettings` should have a `use_shortnames` field - ## What problem does this solve or what need does it fill?
System names can be very long and challenging to read when resolving
## What solution would you like?
Add the field, set to `false` by default.
Use the existing short_name code in bevy_utils to parse the system and component names if that field is set to `true`.
## Additional context
Please don't do this until #7267 is merged for the sake of my sanity.
| non_defect | schedulebuildsettings should have a use shortnames field what problem does this solve or what need does it fill system names can be very long and challenging to read when resolving what solution would you like add the field set to false by default use the existing short name code in bevy utils to parse the system and component names if that field is set to true additional context please don t do this until is merged for the sake of my sanity | 0 |
810,772 | 30,259,336,370 | IssuesEvent | 2023-07-07 06:55:10 | matrixorigin/mo_ctl_standalone | https://api.github.com/repos/matrixorigin/mo_ctl_standalone | closed | [Feature Request]: implement function 'connect' | priority/p0 function/connect type/feature | ### Is there an existing issue for the feature request?
- [X] I have checked the existing issues.
### Feature Description
```bash
Usage : mo_ctl connect # connect to mo via mysql client using connection info configured
```
### Feature Implementation
1. Use `mysql` client to connect to local mo-service with the connection info provied(`MO_USER`/`MO_PW`/`MO_PORT`/`MO_HOST`)
2. Test the connectivity first, and if failed exit 1, otherwise connect for user
### Additional information
none | 1.0 | [Feature Request]: implement function 'connect' - ### Is there an existing issue for the feature request?
- [X] I have checked the existing issues.
### Feature Description
```bash
Usage : mo_ctl connect # connect to mo via mysql client using connection info configured
```
### Feature Implementation
1. Use `mysql` client to connect to local mo-service with the connection info provied(`MO_USER`/`MO_PW`/`MO_PORT`/`MO_HOST`)
2. Test the connectivity first, and if failed exit 1, otherwise connect for user
### Additional information
none | non_defect | implement function connect is there an existing issue for the feature request i have checked the existing issues feature description bash usage mo ctl connect connect to mo via mysql client using connection info configured feature implementation use mysql client to connect to local mo service with the connection info provied mo user mo pw mo port mo host test the connectivity first and if failed exit otherwise connect for user additional information none | 0 |
248,026 | 7,926,712,120 | IssuesEvent | 2018-07-06 03:58:33 | ilmtest/search-engine | https://api.github.com/repos/ilmtest/search-engine | closed | Remove search result from Tags when it is picked into the selection | bug fixed priority/medium technical-logic | Move from bottom to the top, and move back down to the bottom when deselected. | 1.0 | Remove search result from Tags when it is picked into the selection - Move from bottom to the top, and move back down to the bottom when deselected. | non_defect | remove search result from tags when it is picked into the selection move from bottom to the top and move back down to the bottom when deselected | 0 |
72,627 | 13,894,945,054 | IssuesEvent | 2020-10-19 15:16:11 | confluentinc/ksql | https://api.github.com/repos/confluentinc/ksql | closed | Integrate code paths for schema compatibility checks for AVRO and other formats | Code Quality fix-it-week user-experience | ksqlDB supports two new formats that integrate with the schema register: `JSON_SR` and `PROTOBUF`, yet it only checks that a new schema abides by the schema compatibility rules for `AVRO` formats.
Given QTT test cases added to `serdes.json`:
```json
[
{
"name": "serialization should fail if primitive schema not compatible with existing value schema - JSON_SR",
"statements": [
"CREATE STREAM INPUT (K STRING KEY, foo STRING) WITH (kafka_topic='input_topic', value_format='JSON_SR');",
"CREATE STREAM OUTPUT WITH (wrap_single_value=false) AS SELECT * FROM INPUT;"
],
"topics": [
{"name": "OUTPUT", "schema": {"name": "KsqlRecord", "type": "record", "fields": [{"name": "FOO", "type": "string"}]}}
],
"expectedException": {
"type": "io.confluent.ksql.util.KsqlStatementException",
"message": "Cannot register JSON schema for OUTPUT as the schema is incompatible with the current schema version registered for the topic."
}
},
{
"name": "serialization should fail if primitive schema not compatible with existing value schema - PROTOBUF",
"statements": [
"CREATE STREAM INPUT (K STRING KEY, foo STRING) WITH (kafka_topic='input_topic', value_format='PROTOBUF');",
"CREATE STREAM OUTPUT WITH (wrap_single_value=false) AS SELECT * FROM INPUT;"
],
"topics": [
{"name": "OUTPUT", "schema": {"name": "KsqlRecord", "type": "record", "fields": [{"name": "FOO", "type": "string"}]}}
],
"expectedException": {
"type": "io.confluent.ksql.util.KsqlStatementException",
"message": "Cannot register protobuf schema for OUTPUT as the schema is incompatible with the current schema version registered for the topic."
}
}
]
```
### Expected result:
Tests pass, i.e. invalid schema evolution is detected.,
### Actual result:
Tests fail, as no exception is thrown.
The implications of this would be that we could start producing data to a topic with a different schema to other producers, breaking downstream processes. | 1.0 | Integrate code paths for schema compatibility checks for AVRO and other formats - ksqlDB supports two new formats that integrate with the schema register: `JSON_SR` and `PROTOBUF`, yet it only checks that a new schema abides by the schema compatibility rules for `AVRO` formats.
Given QTT test cases added to `serdes.json`:
```json
[
{
"name": "serialization should fail if primitive schema not compatible with existing value schema - JSON_SR",
"statements": [
"CREATE STREAM INPUT (K STRING KEY, foo STRING) WITH (kafka_topic='input_topic', value_format='JSON_SR');",
"CREATE STREAM OUTPUT WITH (wrap_single_value=false) AS SELECT * FROM INPUT;"
],
"topics": [
{"name": "OUTPUT", "schema": {"name": "KsqlRecord", "type": "record", "fields": [{"name": "FOO", "type": "string"}]}}
],
"expectedException": {
"type": "io.confluent.ksql.util.KsqlStatementException",
"message": "Cannot register JSON schema for OUTPUT as the schema is incompatible with the current schema version registered for the topic."
}
},
{
"name": "serialization should fail if primitive schema not compatible with existing value schema - PROTOBUF",
"statements": [
"CREATE STREAM INPUT (K STRING KEY, foo STRING) WITH (kafka_topic='input_topic', value_format='PROTOBUF');",
"CREATE STREAM OUTPUT WITH (wrap_single_value=false) AS SELECT * FROM INPUT;"
],
"topics": [
{"name": "OUTPUT", "schema": {"name": "KsqlRecord", "type": "record", "fields": [{"name": "FOO", "type": "string"}]}}
],
"expectedException": {
"type": "io.confluent.ksql.util.KsqlStatementException",
"message": "Cannot register protobuf schema for OUTPUT as the schema is incompatible with the current schema version registered for the topic."
}
}
]
```
### Expected result:
Tests pass, i.e. invalid schema evolution is detected.,
### Actual result:
Tests fail, as no exception is thrown.
The implications of this would be that we could start producing data to a topic with a different schema to other producers, breaking downstream processes. | non_defect | integrate code paths for schema compatibility checks for avro and other formats ksqldb supports two new formats that integrate with the schema register json sr and protobuf yet it only checks that a new schema abides by the schema compatibility rules for avro formats given qtt test cases added to serdes json json name serialization should fail if primitive schema not compatible with existing value schema json sr statements create stream input k string key foo string with kafka topic input topic value format json sr create stream output with wrap single value false as select from input topics name output schema name ksqlrecord type record fields expectedexception type io confluent ksql util ksqlstatementexception message cannot register json schema for output as the schema is incompatible with the current schema version registered for the topic name serialization should fail if primitive schema not compatible with existing value schema protobuf statements create stream input k string key foo string with kafka topic input topic value format protobuf create stream output with wrap single value false as select from input topics name output schema name ksqlrecord type record fields expectedexception type io confluent ksql util ksqlstatementexception message cannot register protobuf schema for output as the schema is incompatible with the current schema version registered for the topic expected result tests pass i e invalid schema evolution is detected actual result tests fail as no exception is thrown the implications of this would be that we could start producing data to a topic with a different schema to other producers breaking downstream processes | 0 |
816,869 | 30,615,116,428 | IssuesEvent | 2023-07-24 01:56:12 | FairwindsOps/charts | https://api.github.com/repos/FairwindsOps/charts | closed | [vpa] Inadequate template condition checks for some templates | bug good first issue stale priority: should | ### What happened?
Some of the VPA chart templates have inadequate checks for resource provisioning. For example:
- Even when `.Values.admissionController.enabled` is `false`, if `admissionController.cleanupOnDelete.enabled` is `true`, then the resources in the template admission-controller-cleanup.yaml are still deployed.
- Similarly, PDB templates such as recommender-pdb.yaml are not checking if the relevant VPA component is enabled or not
This is similar to issue #722 - looks like the bug got reintroduced.
### What did you expect to happen?
If a component is disabled, all resources related to that component should not be provisioned. All templates related to a component should contain a check for the component's `enabled` flag - e.g. `{{- if .Values.admissionController.enabled }}` should exist in admission-controller-cleanup.yaml.
### How can we reproduce this?
Inspect the code of templates mentioned above or deploy the current stable version of the VPA chart and observe what resources are provisioned.
### Version
vpa - 1.7.2
### Search
- [X] I did search for other open and closed issues before opening this.
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct
### Additional context
_No response_ | 1.0 | [vpa] Inadequate template condition checks for some templates - ### What happened?
Some of the VPA chart templates have inadequate checks for resource provisioning. For example:
- Even when `.Values.admissionController.enabled` is `false`, if `admissionController.cleanupOnDelete.enabled` is `true`, then the resources in the template admission-controller-cleanup.yaml are still deployed.
- Similarly, PDB templates such as recommender-pdb.yaml are not checking if the relevant VPA component is enabled or not
This is similar to issue #722 - looks like the bug got reintroduced.
### What did you expect to happen?
If a component is disabled, all resources related to that component should not be provisioned. All templates related to a component should contain a check for the component's `enabled` flag - e.g. `{{- if .Values.admissionController.enabled }}` should exist in admission-controller-cleanup.yaml.
### How can we reproduce this?
Inspect the code of templates mentioned above or deploy the current stable version of the VPA chart and observe what resources are provisioned.
### Version
vpa - 1.7.2
### Search
- [X] I did search for other open and closed issues before opening this.
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct
### Additional context
_No response_ | non_defect | inadequate template condition checks for some templates what happened some of the vpa chart templates have inadequate checks for resource provisioning for example even when values admissioncontroller enabled is false if admissioncontroller cleanupondelete enabled is true then the resources in the template admission controller cleanup yaml are still deployed similarly pdb templates such as recommender pdb yaml are not checking if the relevant vpa component is enabled or not this is similar to issue looks like the bug got reintroduced what did you expect to happen if a component is disabled all resources related to that component should not be provisioned all templates related to a component should contain a check for the component s enabled flag e g if values admissioncontroller enabled should exist in admission controller cleanup yaml how can we reproduce this inspect the code of templates mentioned above or deploy the current stable version of the vpa chart and observe what resources are provisioned version vpa search i did search for other open and closed issues before opening this code of conduct i agree to follow this project s code of conduct additional context no response | 0 |
388,849 | 26,784,465,085 | IssuesEvent | 2023-02-01 00:53:03 | Incapamentum/Exalted-Sage | https://api.github.com/repos/Incapamentum/Exalted-Sage | closed | Documentation - Versioning Standard | documentation | Considering that, with the possibility of different target frameworks breaking code from a prior one (i.e. such as .NET 5.0 to .NET 6.0), it'll perhaps be necessary to come up with a versioning standard.
This could probably be written in the `docs/` directory from root, as with other major pieces. | 1.0 | Documentation - Versioning Standard - Considering that, with the possibility of different target frameworks breaking code from a prior one (i.e. such as .NET 5.0 to .NET 6.0), it'll perhaps be necessary to come up with a versioning standard.
This could probably be written in the `docs/` directory from root, as with other major pieces. | non_defect | documentation versioning standard considering that with the possibility of different target frameworks breaking code from a prior one i e such as net to net it ll perhaps be necessary to come up with a versioning standard this could probably be written in the docs directory from root as with other major pieces | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.