Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 4 112 | repo_url stringlengths 33 141 | action stringclasses 3 values | title stringlengths 1 1.02k | labels stringlengths 4 1.54k | body stringlengths 1 262k | index stringclasses 17 values | text_combine stringlengths 95 262k | label stringclasses 2 values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
199,000 | 15,019,497,689 | IssuesEvent | 2021-02-01 13:37:34 | angular/components | https://api.github.com/repos/angular/components | closed | bug(MatDialogHarness ): tests from the docs fail | P2 area: material/dialog area: material/testing docs has pr | #### Reproduction
Use StackBlitz to reproduce your issue:
- Harnesses: https://stackblitz.com/angular/xokkndljdpx?file=src%2Fapp%2Fdialog-harness-example.ts
##### Steps to reproduce:
1. Open a link to StackBlitz from the [docs](https://material.angular.io/components/dialog/examples)
#### Expected Behavior
There're no failed tests
#### Actual Behavior
Jasmine report shows all (4) tests failed

#### Environment
- Angular: 11.0.0
- CDK/Material: 11.0.0
- Browser(s):
- Operating System (e.g. Windows, macOS, Ubuntu):
| 1.0 | bug(MatDialogHarness ): tests from the docs fail - #### Reproduction
Use StackBlitz to reproduce your issue:
- Harnesses: https://stackblitz.com/angular/xokkndljdpx?file=src%2Fapp%2Fdialog-harness-example.ts
##### Steps to reproduce:
1. Open a link to StackBlitz from the [docs](https://material.angular.io/components/dialog/examples)
#### Expected Behavior
There're no failed tests
#### Actual Behavior
Jasmine report shows all (4) tests failed

#### Environment
- Angular: 11.0.0
- CDK/Material: 11.0.0
- Browser(s):
- Operating System (e.g. Windows, macOS, Ubuntu):
| test | bug matdialogharness tests from the docs fail reproduction use stackblitz to reproduce your issue harnesses steps to reproduce open a link to stackblitz from the expected behavior there re no failed tests actual behavior jasmine report shows all tests failed environment angular cdk material browser s operating system e g windows macos ubuntu | 1 |
53,846 | 28,808,227,365 | IssuesEvent | 2023-05-03 00:52:26 | Kong/blixt | https://api.github.com/repos/Kong/blixt | opened | TCP and UDP performance tests | area/dataplane area/controlplane area/performance | The purpose of this task is to finish the performance test suite we started in #44 and hook it up so that regular performance tests are being run and collected for both `TCPRoute` and `UDPRoute` using `iperf3`. | True | TCP and UDP performance tests - The purpose of this task is to finish the performance test suite we started in #44 and hook it up so that regular performance tests are being run and collected for both `TCPRoute` and `UDPRoute` using `iperf3`. | non_test | tcp and udp performance tests the purpose of this task is to finish the performance test suite we started in and hook it up so that regular performance tests are being run and collected for both tcproute and udproute using | 0 |
191,922 | 14,597,367,863 | IssuesEvent | 2020-12-20 19:49:07 | github-vet/rangeloop-pointer-findings | https://api.github.com/repos/github-vet/rangeloop-pointer-findings | closed | nilsbu/lastfm: pkg/unpack/lastfm_test.go; 20 LoC | fresh small test |
Found a possible issue in [nilsbu/lastfm](https://www.github.com/nilsbu/lastfm) at [pkg/unpack/lastfm_test.go](https://github.com/nilsbu/lastfm/blob/74fbdefafd253dfc715839eda05bd9d9bc5783b1/pkg/unpack/lastfm_test.go#L417-L436)
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 names used in defer or goroutine at line 420
[Click here to see the code in its original context.](https://github.com/nilsbu/lastfm/blob/74fbdefafd253dfc715839eda05bd9d9bc5783b1/pkg/unpack/lastfm_test.go#L417-L436)
<details>
<summary>Click here to show the 20 line(s) of Go which triggered the analyzer.</summary>
```go
for _, names := range c.names {
for i := range names {
go func(i int) {
res, err := buf.LoadTagInfo(names[i])
tags[i+n] = res
feedback <- err
}(i)
}
for range names {
if err := <-feedback; err != nil {
errs = append(errs, err)
if c.ok {
t.Error("unexpected error:", err)
}
}
}
n += len(names)
}
```
</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: 74fbdefafd253dfc715839eda05bd9d9bc5783b1
| 1.0 | nilsbu/lastfm: pkg/unpack/lastfm_test.go; 20 LoC -
Found a possible issue in [nilsbu/lastfm](https://www.github.com/nilsbu/lastfm) at [pkg/unpack/lastfm_test.go](https://github.com/nilsbu/lastfm/blob/74fbdefafd253dfc715839eda05bd9d9bc5783b1/pkg/unpack/lastfm_test.go#L417-L436)
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 names used in defer or goroutine at line 420
[Click here to see the code in its original context.](https://github.com/nilsbu/lastfm/blob/74fbdefafd253dfc715839eda05bd9d9bc5783b1/pkg/unpack/lastfm_test.go#L417-L436)
<details>
<summary>Click here to show the 20 line(s) of Go which triggered the analyzer.</summary>
```go
for _, names := range c.names {
for i := range names {
go func(i int) {
res, err := buf.LoadTagInfo(names[i])
tags[i+n] = res
feedback <- err
}(i)
}
for range names {
if err := <-feedback; err != nil {
errs = append(errs, err)
if c.ok {
t.Error("unexpected error:", err)
}
}
}
n += len(names)
}
```
</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: 74fbdefafd253dfc715839eda05bd9d9bc5783b1
| test | nilsbu lastfm pkg unpack lastfm 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 names used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for names range c names for i range names go func i int res err buf loadtaginfo names tags res feedback err i for range names if err feedback err nil errs append errs err if c ok t error unexpected error err n len names leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 1 |
40,802 | 5,316,590,933 | IssuesEvent | 2017-02-13 20:17:20 | idaholab/moose | https://api.github.com/repos/idaholab/moose | closed | Rerun only failed tests | C: TestHarness P: normal T: task | It would be handy if I could invoke run_tests in a mode that only reran the tests that failed last time.
Maybe:
./run_tests --failed
?
| 1.0 | Rerun only failed tests - It would be handy if I could invoke run_tests in a mode that only reran the tests that failed last time.
Maybe:
./run_tests --failed
?
| test | rerun only failed tests it would be handy if i could invoke run tests in a mode that only reran the tests that failed last time maybe run tests failed | 1 |
698,596 | 23,986,270,555 | IssuesEvent | 2022-09-13 19:22:17 | dmwm/WMCore | https://api.github.com/repos/dmwm/WMCore | closed | Latest stomp library is excessively verbose with regards to the heartbeat feature | High Priority dependencies | **Impact of the bug**
A dependency in WMCore, CMSMonitoring and CRAB*
**Describe the bug**
This is not really a bug, neither anything to be fixed in WMCore, but here is a GH issue to track this issue with the `stomp` library, currently in version `7.0.0` in both cmsdist and CMSMonitoring package.
It makes the logs of AgentStatusWatcher extremely verbose with INFO messages like [1]. Central services are using this version as well, so I think the same log pollution is happening over there(!)
**How to reproduce it**
Use the latest CMSMonitoring python package (0.6.7, I think)
**Expected behavior**
We should update those message log level to DEBUG. It's probably a good idea to provide a PR upstream to the stomp project, such that we can update the `stomp` version in the near future instead of keep applying patches.
**Additional context and error message**
[1]
```
2022-09-09 20:47:08,879:139964385847040:INFO:listener:Starting heartbeat loop
2022-09-09 20:47:08,880:139965237520128:INFO:transport:attempt reconnection (True, None, 0)
2022-09-09 20:47:08,880:139965237520128:INFO:transport:Attempting connection to host xxx, port xxxx
2022-09-09 20:47:08,880:139965237520128:INFO:transport:Established connection to host xxx, port xxxx
2022-09-09 20:47:08,880:139964377454336:INFO:transport:Starting receiver loop (<Thread(Thread-14, started daemon 139964377454336)>)
2022-09-09 20:47:08,880:139965237520128:INFO:transport:Created thread <Thread(Thread-14, started daemon 139964377454336)> using func <function default_create_thread at 0x7f4c3faa1d30>
2022-09-09 20:47:08,881:139965237520128:INFO:transport:Sending frame: 'STOMP'
2022-09-09 20:47:08,882:139964377454336:INFO:transport:Received frame: 'CONNECTED', len(body)=0
2022-09-09 20:47:08,882:139964369061632:INFO:listener:Starting heartbeat loop
2022-09-09 20:47:08,882:139965237520128:INFO:transport:Sending frame: 'SEND'
``` | 1.0 | Latest stomp library is excessively verbose with regards to the heartbeat feature - **Impact of the bug**
A dependency in WMCore, CMSMonitoring and CRAB*
**Describe the bug**
This is not really a bug, neither anything to be fixed in WMCore, but here is a GH issue to track this issue with the `stomp` library, currently in version `7.0.0` in both cmsdist and CMSMonitoring package.
It makes the logs of AgentStatusWatcher extremely verbose with INFO messages like [1]. Central services are using this version as well, so I think the same log pollution is happening over there(!)
**How to reproduce it**
Use the latest CMSMonitoring python package (0.6.7, I think)
**Expected behavior**
We should update those message log level to DEBUG. It's probably a good idea to provide a PR upstream to the stomp project, such that we can update the `stomp` version in the near future instead of keep applying patches.
**Additional context and error message**
[1]
```
2022-09-09 20:47:08,879:139964385847040:INFO:listener:Starting heartbeat loop
2022-09-09 20:47:08,880:139965237520128:INFO:transport:attempt reconnection (True, None, 0)
2022-09-09 20:47:08,880:139965237520128:INFO:transport:Attempting connection to host xxx, port xxxx
2022-09-09 20:47:08,880:139965237520128:INFO:transport:Established connection to host xxx, port xxxx
2022-09-09 20:47:08,880:139964377454336:INFO:transport:Starting receiver loop (<Thread(Thread-14, started daemon 139964377454336)>)
2022-09-09 20:47:08,880:139965237520128:INFO:transport:Created thread <Thread(Thread-14, started daemon 139964377454336)> using func <function default_create_thread at 0x7f4c3faa1d30>
2022-09-09 20:47:08,881:139965237520128:INFO:transport:Sending frame: 'STOMP'
2022-09-09 20:47:08,882:139964377454336:INFO:transport:Received frame: 'CONNECTED', len(body)=0
2022-09-09 20:47:08,882:139964369061632:INFO:listener:Starting heartbeat loop
2022-09-09 20:47:08,882:139965237520128:INFO:transport:Sending frame: 'SEND'
``` | non_test | latest stomp library is excessively verbose with regards to the heartbeat feature impact of the bug a dependency in wmcore cmsmonitoring and crab describe the bug this is not really a bug neither anything to be fixed in wmcore but here is a gh issue to track this issue with the stomp library currently in version in both cmsdist and cmsmonitoring package it makes the logs of agentstatuswatcher extremely verbose with info messages like central services are using this version as well so i think the same log pollution is happening over there how to reproduce it use the latest cmsmonitoring python package i think expected behavior we should update those message log level to debug it s probably a good idea to provide a pr upstream to the stomp project such that we can update the stomp version in the near future instead of keep applying patches additional context and error message info listener starting heartbeat loop info transport attempt reconnection true none info transport attempting connection to host xxx port xxxx info transport established connection to host xxx port xxxx info transport starting receiver loop info transport created thread using func info transport sending frame stomp info transport received frame connected len body info listener starting heartbeat loop info transport sending frame send | 0 |
242,135 | 20,199,095,075 | IssuesEvent | 2022-02-11 13:35:26 | apache/shardingsphere | https://api.github.com/repos/apache/shardingsphere | closed | Add more unit test for ShardingConditions | in: test good first issue | Hi, community:
This issue is to add more unit tests for the ShardingConditions class. Welcome to claim them.
The specific subtasks are as follows:
- [ ] Add unit test for ShardingConditions#isAlwaysFalse
- [ ] Add unit test for ShardingConditions#merge
- [ ] Add unit test for ShardingConditions#isNeedMerge
- [ ] Add unit test for ShardingConditions#isSameShardingCondition
Through this issue, you can understand the process of participating in Apache ShardingSphere, and be familiar with sharding. | 1.0 | Add more unit test for ShardingConditions - Hi, community:
This issue is to add more unit tests for the ShardingConditions class. Welcome to claim them.
The specific subtasks are as follows:
- [ ] Add unit test for ShardingConditions#isAlwaysFalse
- [ ] Add unit test for ShardingConditions#merge
- [ ] Add unit test for ShardingConditions#isNeedMerge
- [ ] Add unit test for ShardingConditions#isSameShardingCondition
Through this issue, you can understand the process of participating in Apache ShardingSphere, and be familiar with sharding. | test | add more unit test for shardingconditions hi community this issue is to add more unit tests for the shardingconditions class welcome to claim them the specific subtasks are as follows add unit test for shardingconditions isalwaysfalse add unit test for shardingconditions merge add unit test for shardingconditions isneedmerge add unit test for shardingconditions issameshardingcondition through this issue you can understand the process of participating in apache shardingsphere and be familiar with sharding | 1 |
74,857 | 7,447,500,106 | IssuesEvent | 2018-03-28 12:45:16 | klpdotorg/ilp | https://api.github.com/repos/klpdotorg/ilp | closed | GKA Monitoring: not all user mappings being migrated from stories_story to UnifyDB | test | @shivangi
```
Select count(aai.id)
From assessments_answergroup_institution aai
where questiongroup_id in (17, 24)
and date_of_visit > '2017-07-01' and aai.created_by_id is null;
count
-----------
1607
dubdubdub=> select user_id from stories_story where id = '415539';
user_id
-------------
56
ilp=> select created_by_id from assessments_answergroup_institution where id = '415539';
created_by_id
-------------- | 1.0 | GKA Monitoring: not all user mappings being migrated from stories_story to UnifyDB - @shivangi
```
Select count(aai.id)
From assessments_answergroup_institution aai
where questiongroup_id in (17, 24)
and date_of_visit > '2017-07-01' and aai.created_by_id is null;
count
-----------
1607
dubdubdub=> select user_id from stories_story where id = '415539';
user_id
-------------
56
ilp=> select created_by_id from assessments_answergroup_institution where id = '415539';
created_by_id
-------------- | test | gka monitoring not all user mappings being migrated from stories story to unifydb shivangi select count aai id from assessments answergroup institution aai where questiongroup id in and date of visit and aai created by id is null count dubdubdub select user id from stories story where id user id ilp select created by id from assessments answergroup institution where id created by id | 1 |
172,401 | 13,305,045,849 | IssuesEvent | 2020-08-25 17:54:21 | mathjax/MathJax | https://api.github.com/repos/mathjax/MathJax | closed | `<mspace linebreak="newline" />` not working with explorer accessibility. | Accepted Merged Test Needed v2 v2.7 | ### Issue Summary
When the accessibility explorer is activated, MathML line break, `<mspace linebreak="newline" />`, won't work.
### Steps to Reproduce:
1. Open https://jsbin.com/sajujukiwe/1/edit?html,js,output
2. Check how math expression is displayed by making accessibility `explorer` property to `false` and `true`.
When `explorer` is set to false there will be a line break which is what I want but I also want the accessibility feature.
### Technical details:
* MathJax Version: 2.7.7
* Client OS: Mac OS X 10.14.6
* Browser: Chrome Version 84.0.4147.105 (Official Build) (64-bit)
### Supporting information:
https://jsbin.com/sajujukiwe/1/edit?html,js,output | 1.0 | `<mspace linebreak="newline" />` not working with explorer accessibility. - ### Issue Summary
When the accessibility explorer is activated, MathML line break, `<mspace linebreak="newline" />`, won't work.
### Steps to Reproduce:
1. Open https://jsbin.com/sajujukiwe/1/edit?html,js,output
2. Check how math expression is displayed by making accessibility `explorer` property to `false` and `true`.
When `explorer` is set to false there will be a line break which is what I want but I also want the accessibility feature.
### Technical details:
* MathJax Version: 2.7.7
* Client OS: Mac OS X 10.14.6
* Browser: Chrome Version 84.0.4147.105 (Official Build) (64-bit)
### Supporting information:
https://jsbin.com/sajujukiwe/1/edit?html,js,output | test | not working with explorer accessibility issue summary when the accessibility explorer is activated mathml line break won t work steps to reproduce open check how math expression is displayed by making accessibility explorer property to false and true when explorer is set to false there will be a line break which is what i want but i also want the accessibility feature technical details mathjax version client os mac os x browser chrome version official build bit supporting information | 1 |
15,036 | 11,303,446,583 | IssuesEvent | 2020-01-17 20:08:16 | dotnet/docker-tools | https://api.github.com/repos/dotnet/docker-tools | closed | Remove 2.2 workaround in build-images.yml | area:infrastructure enhancement triaged | Related to https://github.com/dotnet/dotnet-docker/issues/1520
Need to remove the section of logic at https://github.com/dotnet/docker-tools/blob/0c76b533eb3933106b2e32021620d19c24cfafae/eng/common/templates/jobs/build-images.yml#L32
This is due to 2.2 being EOL. | 1.0 | Remove 2.2 workaround in build-images.yml - Related to https://github.com/dotnet/dotnet-docker/issues/1520
Need to remove the section of logic at https://github.com/dotnet/docker-tools/blob/0c76b533eb3933106b2e32021620d19c24cfafae/eng/common/templates/jobs/build-images.yml#L32
This is due to 2.2 being EOL. | non_test | remove workaround in build images yml related to need to remove the section of logic at this is due to being eol | 0 |
83,499 | 15,710,242,079 | IssuesEvent | 2021-03-27 01:02:04 | wakdotta/seed | https://api.github.com/repos/wakdotta/seed | opened | CVE-2020-14195 (High) detected in jackson-databind-2.2.3.jar | security vulnerability | ## CVE-2020-14195 - 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.2.3.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Path to vulnerable library: seed/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/spring-jndi/WEB-INF/lib/jackson-databind-2.2.3.jar</p>
<p>
Dependency Hierarchy:
- :x: **jackson-databind-2.2.3.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.5 mishandles the interaction between serialization gadgets and typing, related to org.jsecurity.realm.jndi.JndiRealmFactory (aka org.jsecurity).
<p>Publish Date: 2020-06-16
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14195>CVE-2020-14195</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.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: 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-14195">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14195</a></p>
<p>Release Date: 2020-06-16</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.5</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-14195 (High) detected in jackson-databind-2.2.3.jar - ## CVE-2020-14195 - 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.2.3.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Path to vulnerable library: seed/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/spring-jndi/WEB-INF/lib/jackson-databind-2.2.3.jar</p>
<p>
Dependency Hierarchy:
- :x: **jackson-databind-2.2.3.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.5 mishandles the interaction between serialization gadgets and typing, related to org.jsecurity.realm.jndi.JndiRealmFactory (aka org.jsecurity).
<p>Publish Date: 2020-06-16
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14195>CVE-2020-14195</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.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: 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-14195">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14195</a></p>
<p>Release Date: 2020-06-16</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve high detected in jackson databind jar cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api path to vulnerable library seed metadata plugins org eclipse wst server core wtpwebapps spring jndi web inf lib jackson databind jar dependency hierarchy x jackson databind jar vulnerable library found in base branch master vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to org jsecurity realm jndi jndirealmfactory aka org jsecurity publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact 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 step up your open source security game with whitesource | 0 |
294,256 | 22,143,635,948 | IssuesEvent | 2022-06-03 09:33:32 | Nautilus-Cyberneering/opensource | https://api.github.com/repos/Nautilus-Cyberneering/opensource | closed | Include Open Source Research and Sample information | documentation | Review and organize all the previous information gathered on OPEN SOURCE. | 1.0 | Include Open Source Research and Sample information - Review and organize all the previous information gathered on OPEN SOURCE. | non_test | include open source research and sample information review and organize all the previous information gathered on open source | 0 |
124,186 | 26,417,459,265 | IssuesEvent | 2023-01-13 17:05:19 | FerretDB/FerretDB | https://api.github.com/repos/FerretDB/FerretDB | closed | Enable support for arrays in Tigris | code/feature code/tigris | This task is a continuation of #908.
After having arrays in `tjson`, we can integrate them and write tests.
A possible approach could be the following:
- Either creation of a collection or the first insertion of array should define the schema for a particular array field.
- If validation doesn't pass on Tigris side (an array contains various data types, attempt to insert an array of a type different than the one defined before etc), an error should be returned to the client.
### Testing
- Positive test cases can be covered with compat tests.
- Negative test cases can't be written unless we have validation for Mongo collections (where we can enable the same schema rules as the ones we have for Tigris).
- Diff tests are not possible because they don't work with Tigris.
Test case to check manually:
1. I insert an array to a new collection to a field called `tags`: `db.things.insertOne( { tags: ["a", "b", "c"] } );`
2. As the array contains data of the same type, insertion pass. The schema should describe string-based array.
3. I try to insert another array to the same field: `db.things.insertOne( { tags: [1, 2, 3] } );`
4. I should receive an error as the data type doesn't match (I try to insert `int`, not `string`).
### Definition of done
- [x] Add a valid data item to `sharedata.Composites`, something like `DocumentsDocuments`, but for arrays.
- [x] Add compat tests to work with arrays. Try to reuse existing array-related compat tests and shared data. Cases to cover (see TODOs in the code):
- [x] create;
- [x] insert, upsert, update;
- [x] queries - array operations.
- [x] Add negative test cases (invalid or empty arrays) at least for unit tests.
| 2.0 | Enable support for arrays in Tigris - This task is a continuation of #908.
After having arrays in `tjson`, we can integrate them and write tests.
A possible approach could be the following:
- Either creation of a collection or the first insertion of array should define the schema for a particular array field.
- If validation doesn't pass on Tigris side (an array contains various data types, attempt to insert an array of a type different than the one defined before etc), an error should be returned to the client.
### Testing
- Positive test cases can be covered with compat tests.
- Negative test cases can't be written unless we have validation for Mongo collections (where we can enable the same schema rules as the ones we have for Tigris).
- Diff tests are not possible because they don't work with Tigris.
Test case to check manually:
1. I insert an array to a new collection to a field called `tags`: `db.things.insertOne( { tags: ["a", "b", "c"] } );`
2. As the array contains data of the same type, insertion pass. The schema should describe string-based array.
3. I try to insert another array to the same field: `db.things.insertOne( { tags: [1, 2, 3] } );`
4. I should receive an error as the data type doesn't match (I try to insert `int`, not `string`).
### Definition of done
- [x] Add a valid data item to `sharedata.Composites`, something like `DocumentsDocuments`, but for arrays.
- [x] Add compat tests to work with arrays. Try to reuse existing array-related compat tests and shared data. Cases to cover (see TODOs in the code):
- [x] create;
- [x] insert, upsert, update;
- [x] queries - array operations.
- [x] Add negative test cases (invalid or empty arrays) at least for unit tests.
| non_test | enable support for arrays in tigris this task is a continuation of after having arrays in tjson we can integrate them and write tests a possible approach could be the following either creation of a collection or the first insertion of array should define the schema for a particular array field if validation doesn t pass on tigris side an array contains various data types attempt to insert an array of a type different than the one defined before etc an error should be returned to the client testing positive test cases can be covered with compat tests negative test cases can t be written unless we have validation for mongo collections where we can enable the same schema rules as the ones we have for tigris diff tests are not possible because they don t work with tigris test case to check manually i insert an array to a new collection to a field called tags db things insertone tags as the array contains data of the same type insertion pass the schema should describe string based array i try to insert another array to the same field db things insertone tags i should receive an error as the data type doesn t match i try to insert int not string definition of done add a valid data item to sharedata composites something like documentsdocuments but for arrays add compat tests to work with arrays try to reuse existing array related compat tests and shared data cases to cover see todos in the code create insert upsert update queries array operations add negative test cases invalid or empty arrays at least for unit tests | 0 |
808,388 | 30,081,247,408 | IssuesEvent | 2023-06-29 03:42:59 | matrixorigin/matrixone | https://api.github.com/repos/matrixorigin/matrixone | closed | [Feature Request]: CN Detect conflicts up to its own snapshot | priority/p0 kind/feature cn perf-tp perf-ap | ### Is there an existing issue for the same feature request?
- [X] I have checked the existing issues.
### Is your feature request related to a problem?
```Markdown
CN should detect conflicts of its own write against its own snapshot. abort if there are conflicts.
Note that CN must detects if it writes S3 blocks directly (and mix s3/records/deletes)
```
### Describe the feature you'd like
cn resolve most conflicts up to its snapshot. leaving dn to resolve only recent writes.
### Describe implementation you've considered
_No response_
### Documentation, Adoption, Use Case, Migration Strategy
_No response_
### Additional information
_No response_ | 1.0 | [Feature Request]: CN Detect conflicts up to its own snapshot - ### Is there an existing issue for the same feature request?
- [X] I have checked the existing issues.
### Is your feature request related to a problem?
```Markdown
CN should detect conflicts of its own write against its own snapshot. abort if there are conflicts.
Note that CN must detects if it writes S3 blocks directly (and mix s3/records/deletes)
```
### Describe the feature you'd like
cn resolve most conflicts up to its snapshot. leaving dn to resolve only recent writes.
### Describe implementation you've considered
_No response_
### Documentation, Adoption, Use Case, Migration Strategy
_No response_
### Additional information
_No response_ | non_test | cn detect conflicts up to its own snapshot is there an existing issue for the same feature request i have checked the existing issues is your feature request related to a problem markdown cn should detect conflicts of its own write against its own snapshot abort if there are conflicts note that cn must detects if it writes blocks directly and mix records deletes describe the feature you d like cn resolve most conflicts up to its snapshot leaving dn to resolve only recent writes describe implementation you ve considered no response documentation adoption use case migration strategy no response additional information no response | 0 |
663,362 | 22,191,625,947 | IssuesEvent | 2022-06-07 00:03:57 | oppia/oppia-android | https://api.github.com/repos/oppia/oppia-android | closed | ProfileEditFragment Backstack loop error | Type: Bug Priority: Essential Status: Not started | **Describe the bug**
In tablet When we reset or rename the Profile by Administrator controls in ProfileEditFragment and then on Pressing the back button we get stuck in a loop
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Administrator Controls and click on any profile and then reset the pin or rename the name
2. Click on the BackButton
3. Again Click on the back button
4. You get stuck in a loop of ProfileEditFragment and ProfileListFragment
**Expected behavior**
You should go back to administrator controls activity after pressing back button
**Demonstration**
| | | |
| - | - | - |
|  |  |  |
|  |  |
https://user-images.githubusercontent.com/76404817/142893869-2f33edc5-0c89-4267-a5ff-af8bfe17f3e4.mp4
**Environment**
- Device/emulator being used: <device version/emulator>
- Android or SDK version : Android 9 Oreo/ api 28
- App version : latest dev
| 1.0 | ProfileEditFragment Backstack loop error - **Describe the bug**
In tablet When we reset or rename the Profile by Administrator controls in ProfileEditFragment and then on Pressing the back button we get stuck in a loop
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Administrator Controls and click on any profile and then reset the pin or rename the name
2. Click on the BackButton
3. Again Click on the back button
4. You get stuck in a loop of ProfileEditFragment and ProfileListFragment
**Expected behavior**
You should go back to administrator controls activity after pressing back button
**Demonstration**
| | | |
| - | - | - |
|  |  |  |
|  |  |
https://user-images.githubusercontent.com/76404817/142893869-2f33edc5-0c89-4267-a5ff-af8bfe17f3e4.mp4
**Environment**
- Device/emulator being used: <device version/emulator>
- Android or SDK version : Android 9 Oreo/ api 28
- App version : latest dev
| non_test | profileeditfragment backstack loop error describe the bug in tablet when we reset or rename the profile by administrator controls in profileeditfragment and then on pressing the back button we get stuck in a loop to reproduce steps to reproduce the behavior go to administrator controls and click on any profile and then reset the pin or rename the name click on the backbutton again click on the back button you get stuck in a loop of profileeditfragment and profilelistfragment expected behavior you should go back to administrator controls activity after pressing back button demonstration environment device emulator being used android or sdk version android oreo api app version latest dev | 0 |
69,065 | 3,295,304,649 | IssuesEvent | 2015-10-31 20:36:33 | AblionGE/LocPrivLib | https://api.github.com/repos/AblionGE/LocPrivLib | closed | Generate automatically cells around the current position | enhancement high priority | Create automatically cells around the current position with a grid of 20x20.
The ```locId``` created must be stored in the database.
- [x] Compute cell coordinates from any coordinates
- [x] Compute cell id from GPS
- [x] Save only cells with a sensitivity value | 1.0 | Generate automatically cells around the current position - Create automatically cells around the current position with a grid of 20x20.
The ```locId``` created must be stored in the database.
- [x] Compute cell coordinates from any coordinates
- [x] Compute cell id from GPS
- [x] Save only cells with a sensitivity value | non_test | generate automatically cells around the current position create automatically cells around the current position with a grid of the locid created must be stored in the database compute cell coordinates from any coordinates compute cell id from gps save only cells with a sensitivity value | 0 |
194,952 | 14,696,850,834 | IssuesEvent | 2021-01-04 01:03:52 | alynch14/Foxhole | https://api.github.com/repos/alynch14/Foxhole | opened | Research Testing Frameworks for Unity Projects | Testing | **Description**
We want to create tests to make sure that we do not break our game as we make changes to the source code. These include unit, integration, and possible UI tests. We need to do research into what is out there to find what will work best for us as a team.
**Completion Criteria**
* Research is documented on potential testing frameworks in the project's wiki
* README is updated to show which framework is ultimately chosen | 1.0 | Research Testing Frameworks for Unity Projects - **Description**
We want to create tests to make sure that we do not break our game as we make changes to the source code. These include unit, integration, and possible UI tests. We need to do research into what is out there to find what will work best for us as a team.
**Completion Criteria**
* Research is documented on potential testing frameworks in the project's wiki
* README is updated to show which framework is ultimately chosen | test | research testing frameworks for unity projects description we want to create tests to make sure that we do not break our game as we make changes to the source code these include unit integration and possible ui tests we need to do research into what is out there to find what will work best for us as a team completion criteria research is documented on potential testing frameworks in the project s wiki readme is updated to show which framework is ultimately chosen | 1 |
3,716 | 3,521,039,545 | IssuesEvent | 2016-01-12 23:28:00 | sandstorm-io/sandstorm | https://api.github.com/repos/sandstorm-io/sandstorm | closed | More Info on Sign-in Page for First-time Users: Why Use Sandstorm? | usability | Based on user tests:
- they were not sure what to expect after log-in
- they were confused as to why Sandstorm is a much better option than alternatively using equivalent apps (not through Sandstorm)
Since we have the real estate maybe it would make sense to provide some additional context here. | True | More Info on Sign-in Page for First-time Users: Why Use Sandstorm? - Based on user tests:
- they were not sure what to expect after log-in
- they were confused as to why Sandstorm is a much better option than alternatively using equivalent apps (not through Sandstorm)
Since we have the real estate maybe it would make sense to provide some additional context here. | non_test | more info on sign in page for first time users why use sandstorm based on user tests they were not sure what to expect after log in they were confused as to why sandstorm is a much better option than alternatively using equivalent apps not through sandstorm since we have the real estate maybe it would make sense to provide some additional context here | 0 |
378,138 | 26,284,843,761 | IssuesEvent | 2023-01-07 18:14:44 | statelyai/xstate | https://api.github.com/repos/statelyai/xstate | closed | "Root" machine shouldn't produce done event | documentation XState v5 alpha | Leaving this mainly as a reminder for myself to look into this - I believe this case is not handled properly right now, according to the spec:
> In cases where the SCXML Processor generates a 'done' event upon entry into the final state, it must evaluate the <donedata> elements <param> or <content> children and place the resulting data in the _event.data field. The exact format of that data will be determined by the data model (see B Data Models for details). In other cases (namely when the <final> element is a child of <scxml> and the state machine has not been triggered by <invoke>), the SCXML Processor should return the data to the environment in an implementation-dependent manner.
The done data of a final state of the root machine should be given to the user in onDone callback or something. | 1.0 | "Root" machine shouldn't produce done event - Leaving this mainly as a reminder for myself to look into this - I believe this case is not handled properly right now, according to the spec:
> In cases where the SCXML Processor generates a 'done' event upon entry into the final state, it must evaluate the <donedata> elements <param> or <content> children and place the resulting data in the _event.data field. The exact format of that data will be determined by the data model (see B Data Models for details). In other cases (namely when the <final> element is a child of <scxml> and the state machine has not been triggered by <invoke>), the SCXML Processor should return the data to the environment in an implementation-dependent manner.
The done data of a final state of the root machine should be given to the user in onDone callback or something. | non_test | root machine shouldn t produce done event leaving this mainly as a reminder for myself to look into this i believe this case is not handled properly right now according to the spec in cases where the scxml processor generates a done event upon entry into the final state it must evaluate the elements or children and place the resulting data in the event data field the exact format of that data will be determined by the data model see b data models for details in other cases namely when the element is a child of and the state machine has not been triggered by the scxml processor should return the data to the environment in an implementation dependent manner the done data of a final state of the root machine should be given to the user in ondone callback or something | 0 |
266,171 | 28,303,138,271 | IssuesEvent | 2023-04-10 08:17:39 | ghc-staging-automation/8945136_115 | https://api.github.com/repos/ghc-staging-automation/8945136_115 | opened | CVE-2019-20444 (High) detected in netty-all-4.0.42.Final.jar | Mend: dependency security vulnerability | ## CVE-2019-20444 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>netty-all-4.0.42.Final.jar</b></p></summary>
<p>Netty is an asynchronous event-driven network application framework for
rapid development of maintainable high performance protocol servers and
clients.</p>
<p>Library home page: <a href="http://netty.io/">http://netty.io/</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/netty/netty-all/4.0.42.Final/netty-all-4.0.42.Final.jar</p>
<p>
Dependency Hierarchy:
- rocketmq-broker-4.6.0.jar (Root Library)
- rocketmq-remoting-4.6.0.jar
- :x: **netty-all-4.0.42.Final.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ghc-staging-automation/8945136_115/commit/97857aec665be4aca9865e9ac392370abcfdef58">97857aec665be4aca9865e9ac392370abcfdef58</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
HttpObjectDecoder.java in Netty before 4.1.44 allows an HTTP header that lacks a colon, which might be interpreted as a separate header with an incorrect syntax, or might be interpreted as an "invalid fold."
<p>Publish Date: 2020-01-29
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-20444>CVE-2019-20444</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.1</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: High
- 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-2019-20444">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20444</a></p>
<p>Release Date: 2020-01-29</p>
<p>Fix Resolution: io.netty:netty-all:4.1.44.Final</p>
</p>
</details>
<p></p>
| True | CVE-2019-20444 (High) detected in netty-all-4.0.42.Final.jar - ## CVE-2019-20444 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>netty-all-4.0.42.Final.jar</b></p></summary>
<p>Netty is an asynchronous event-driven network application framework for
rapid development of maintainable high performance protocol servers and
clients.</p>
<p>Library home page: <a href="http://netty.io/">http://netty.io/</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/netty/netty-all/4.0.42.Final/netty-all-4.0.42.Final.jar</p>
<p>
Dependency Hierarchy:
- rocketmq-broker-4.6.0.jar (Root Library)
- rocketmq-remoting-4.6.0.jar
- :x: **netty-all-4.0.42.Final.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ghc-staging-automation/8945136_115/commit/97857aec665be4aca9865e9ac392370abcfdef58">97857aec665be4aca9865e9ac392370abcfdef58</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
HttpObjectDecoder.java in Netty before 4.1.44 allows an HTTP header that lacks a colon, which might be interpreted as a separate header with an incorrect syntax, or might be interpreted as an "invalid fold."
<p>Publish Date: 2020-01-29
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-20444>CVE-2019-20444</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.1</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: High
- 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-2019-20444">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20444</a></p>
<p>Release Date: 2020-01-29</p>
<p>Fix Resolution: io.netty:netty-all:4.1.44.Final</p>
</p>
</details>
<p></p>
| non_test | cve high detected in netty all final jar cve high severity vulnerability vulnerable library netty all final jar netty is an asynchronous event driven network application framework for rapid development of maintainable high performance protocol servers and clients library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository io netty netty all final netty all final jar dependency hierarchy rocketmq broker jar root library rocketmq remoting jar x netty all final jar vulnerable library found in head commit a href found in base branch main vulnerability details httpobjectdecoder java in netty before allows an http header that lacks a colon which might be interpreted as a separate header with an incorrect syntax or might be interpreted as an invalid fold 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 high 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 io netty netty all final | 0 |
8,827 | 5,972,197,388 | IssuesEvent | 2017-05-31 06:18:02 | Virtual-Labs/colloid-and-surface-chemistry-iiith | https://api.github.com/repos/Virtual-Labs/colloid-and-surface-chemistry-iiith | opened | QA_Demonstration of the Preparation and Use of Association Colloids (Micelles)_references_unassigned-links | category : Usability Developed by - VLEAD Open-Edx Severity: S2 Status : Open | Defect Description :
In the References page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, all the links are unassigned.
Actual Result :
In the References page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, all the links are unassigned.
Environment :
OS: Windows 7, Ubuntu-16.04,Centos-6
Browsers:Firefox-42.0,Chrome-47.0,chromium-45.0
Bandwidth : 100Mbps
Hardware Configuration:8GBRAM ,
Processor:i5
Attachments:

| True | QA_Demonstration of the Preparation and Use of Association Colloids (Micelles)_references_unassigned-links - Defect Description :
In the References page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, all the links are unassigned.
Actual Result :
In the References page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, all the links are unassigned.
Environment :
OS: Windows 7, Ubuntu-16.04,Centos-6
Browsers:Firefox-42.0,Chrome-47.0,chromium-45.0
Bandwidth : 100Mbps
Hardware Configuration:8GBRAM ,
Processor:i5
Attachments:

| non_test | qa demonstration of the preparation and use of association colloids micelles references unassigned links defect description in the references page of demonstration of the preparation and use of association colloids micelles experiment in this lab all the links are unassigned actual result in the references page of demonstration of the preparation and use of association colloids micelles experiment in this lab all the links are unassigned environment os windows ubuntu centos browsers firefox chrome chromium bandwidth hardware configuration processor attachments | 0 |
126,309 | 10,418,458,314 | IssuesEvent | 2019-09-15 08:48:39 | elastic/kibana | https://api.github.com/repos/elastic/kibana | reopened | Failing test: Server Mocha Tests.src/legacy/ui/ui_settings/create_or_upgrade_saved_config/__tests__/create_or_upgrade_integration·js - createOrUpgradeSavedConfig() "after all" hook | failed-test | A test failed on a tracked branch
```
TypeError: Cannot read property 'stop' of undefined
at Context.stop (src/legacy/ui/ui_settings/create_or_upgrade_saved_config/__tests__/create_or_upgrade_integration.js:70:23)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/JOB=kibana-intake,node=immutable/969/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Server Mocha Tests.src/legacy/ui/ui_settings/create_or_upgrade_saved_config/__tests__/create_or_upgrade_integration·js","test.name":"createOrUpgradeSavedConfig() \"after all\" hook","test.failCount":32}} --> | 1.0 | Failing test: Server Mocha Tests.src/legacy/ui/ui_settings/create_or_upgrade_saved_config/__tests__/create_or_upgrade_integration·js - createOrUpgradeSavedConfig() "after all" hook - A test failed on a tracked branch
```
TypeError: Cannot read property 'stop' of undefined
at Context.stop (src/legacy/ui/ui_settings/create_or_upgrade_saved_config/__tests__/create_or_upgrade_integration.js:70:23)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/JOB=kibana-intake,node=immutable/969/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Server Mocha Tests.src/legacy/ui/ui_settings/create_or_upgrade_saved_config/__tests__/create_or_upgrade_integration·js","test.name":"createOrUpgradeSavedConfig() \"after all\" hook","test.failCount":32}} --> | test | failing test server mocha tests src legacy ui ui settings create or upgrade saved config tests create or upgrade integration·js createorupgradesavedconfig after all hook a test failed on a tracked branch typeerror cannot read property stop of undefined at context stop src legacy ui ui settings create or upgrade saved config tests create or upgrade integration js first failure | 1 |
370,692 | 25,919,479,974 | IssuesEvent | 2022-12-15 20:26:26 | operate-first/community-handbook | https://api.github.com/repos/operate-first/community-handbook | closed | Rebrand to "User and Contributor Handbook" | kind/documentation lifecycle/rotten sig/docs area/user kind/website area/contributor kind/handbook sig/community | Proposal to make it more obvious who this is for.
Description:
- “Guide for how to be a user and contributor.” | 1.0 | Rebrand to "User and Contributor Handbook" - Proposal to make it more obvious who this is for.
Description:
- “Guide for how to be a user and contributor.” | non_test | rebrand to user and contributor handbook proposal to make it more obvious who this is for description “guide for how to be a user and contributor ” | 0 |
326,804 | 9,961,260,621 | IssuesEvent | 2019-07-07 02:06:26 | kubeflow/kubeflow | https://api.github.com/repos/kubeflow/kubeflow | closed | Remove or pin use of a deprecated python package, google-cloud | area/jupyter lifecycle/stale priority/p2 | https://github.com/kubeflow/kubeflow/blob/master/components/tensorflow-notebook-image/requirements.txt#L18
This repository contains a setup.py or requirements.txt file that depends on
the `google-cloud` package. This package is deprecated. If you wish to continue
to use this package, please pin the version to `google-cloud<0.34.0`. If you have
more time to dedicate to this, I would advise sorting out which sub-packages you
actually rely on and depending on them.
For further information please view this package on PyPI, https://pypi.org/project/google-cloud/
| 1.0 | Remove or pin use of a deprecated python package, google-cloud - https://github.com/kubeflow/kubeflow/blob/master/components/tensorflow-notebook-image/requirements.txt#L18
This repository contains a setup.py or requirements.txt file that depends on
the `google-cloud` package. This package is deprecated. If you wish to continue
to use this package, please pin the version to `google-cloud<0.34.0`. If you have
more time to dedicate to this, I would advise sorting out which sub-packages you
actually rely on and depending on them.
For further information please view this package on PyPI, https://pypi.org/project/google-cloud/
| non_test | remove or pin use of a deprecated python package google cloud this repository contains a setup py or requirements txt file that depends on the google cloud package this package is deprecated if you wish to continue to use this package please pin the version to google cloud if you have more time to dedicate to this i would advise sorting out which sub packages you actually rely on and depending on them for further information please view this package on pypi | 0 |
74,282 | 3,437,296,982 | IssuesEvent | 2015-12-13 03:11:09 | jakev/dtf | https://api.github.com/repos/jakev/dtf | closed | Export fails when modules lack version | bug priority-high | ```
06:38:58 /DevTesting$ dtf pm export test.zip
Traceback (most recent call last):
File "/usr/local/bin/dtf", line 185, in <module>
sys.exit(main())
File "/usr/local/bin/dtf", line 149, in main
return pkg.launch_builtin_module('pm', sys.argv)
File "/usr/local/lib/python2.7/dist-packages/dtf/packages.py", line 145, in launch_builtin_module
return __launch_python_module(launch_path, cmd, args)
File "/usr/local/lib/python2.7/dist-packages/dtf/packages.py", line 97, in __launch_python_module
return mod_inst.run(args)
File "/usr/local/lib/python2.7/dist-packages/dtf/module.py", line 62, in run
result = getattr(self, 'execute')(args)
File "/usr/local/lib/python2.7/dist-packages/dtf/core/cmds/pm.py", line 723, in execute
rtn = self.do_export(args)
File "/usr/local/lib/python2.7/dist-packages/dtf/core/cmds/pm.py", line 235, in do_export
rtn = self.generate_export_xml(export_items, export_manifest)
File "/usr/local/lib/python2.7/dist-packages/dtf/core/cmds/pm.py", line 390, in generate_export_xml
item_xml.attrib['majorVersion'] = item.major_version
File "lxml.etree.pyx", line 2245, in lxml.etree._Attrib.__setitem__ (src/lxml/lxml.etree.c:58775)
File "apihelpers.pxi", line 547, in lxml.etree._setAttributeValue (src/lxml/lxml.etree.c:19025)
File "apihelpers.pxi", line 1393, in lxml.etree._utf8 (src/lxml/lxml.etree.c:26460)
TypeError: Argument must be bytes or unicode, got 'NoneType'
``` | 1.0 | Export fails when modules lack version - ```
06:38:58 /DevTesting$ dtf pm export test.zip
Traceback (most recent call last):
File "/usr/local/bin/dtf", line 185, in <module>
sys.exit(main())
File "/usr/local/bin/dtf", line 149, in main
return pkg.launch_builtin_module('pm', sys.argv)
File "/usr/local/lib/python2.7/dist-packages/dtf/packages.py", line 145, in launch_builtin_module
return __launch_python_module(launch_path, cmd, args)
File "/usr/local/lib/python2.7/dist-packages/dtf/packages.py", line 97, in __launch_python_module
return mod_inst.run(args)
File "/usr/local/lib/python2.7/dist-packages/dtf/module.py", line 62, in run
result = getattr(self, 'execute')(args)
File "/usr/local/lib/python2.7/dist-packages/dtf/core/cmds/pm.py", line 723, in execute
rtn = self.do_export(args)
File "/usr/local/lib/python2.7/dist-packages/dtf/core/cmds/pm.py", line 235, in do_export
rtn = self.generate_export_xml(export_items, export_manifest)
File "/usr/local/lib/python2.7/dist-packages/dtf/core/cmds/pm.py", line 390, in generate_export_xml
item_xml.attrib['majorVersion'] = item.major_version
File "lxml.etree.pyx", line 2245, in lxml.etree._Attrib.__setitem__ (src/lxml/lxml.etree.c:58775)
File "apihelpers.pxi", line 547, in lxml.etree._setAttributeValue (src/lxml/lxml.etree.c:19025)
File "apihelpers.pxi", line 1393, in lxml.etree._utf8 (src/lxml/lxml.etree.c:26460)
TypeError: Argument must be bytes or unicode, got 'NoneType'
``` | non_test | export fails when modules lack version devtesting dtf pm export test zip traceback most recent call last file usr local bin dtf line in sys exit main file usr local bin dtf line in main return pkg launch builtin module pm sys argv file usr local lib dist packages dtf packages py line in launch builtin module return launch python module launch path cmd args file usr local lib dist packages dtf packages py line in launch python module return mod inst run args file usr local lib dist packages dtf module py line in run result getattr self execute args file usr local lib dist packages dtf core cmds pm py line in execute rtn self do export args file usr local lib dist packages dtf core cmds pm py line in do export rtn self generate export xml export items export manifest file usr local lib dist packages dtf core cmds pm py line in generate export xml item xml attrib item major version file lxml etree pyx line in lxml etree attrib setitem src lxml lxml etree c file apihelpers pxi line in lxml etree setattributevalue src lxml lxml etree c file apihelpers pxi line in lxml etree src lxml lxml etree c typeerror argument must be bytes or unicode got nonetype | 0 |
295,241 | 25,463,973,470 | IssuesEvent | 2022-11-25 00:38:13 | devssa/onde-codar-em-salvador | https://api.github.com/repos/devssa/onde-codar-em-salvador | closed | [JAVASCRIPT] [REACT] Desenvolvedor Front-End no [Kinvo] | TESTE JAVASCRIPT CSS3 HTML POO REACT REACT NATIVE REDUX INGLÊS Stale | ### Sobre você
* Trabalhar com um time altamente técnico, em ritmo acelerado e com um roadmap altamente desafiador não lhe assusta, pelo contrário, lhe motiva;
* Estar sempre atualizado é uma obrigação pra você. Você tem fome por conhecimento e busca aperfeiçoamento diário;
* Você ama programar e está sempre ansioso por aprender novas tecnologias;
### Sobre a vaga
O [Kinvo](http://kinvo.com.br) é uma fintech da área de investimentos criada em 2017 com missão de empoderar o investidor.
Criamos uma plataforma que permite o investidor cadastrar seus investimentos, independente de qual instituição financeira ele está, consolidar esses dados como uma carteira de investimentos, e a partir daí extrair métricas sobre a saúde dos seus investimentos. Temos um planejamento arrojado e uma série de desafios pela frente. Estamos buscando por um Desenvolvedor(a) júnior para integrar o nosso time de Front-End.
Você irá contribuir diariamente ajudando o nosso time no desenvolvimento da versão Web da nossa plataforma, implementando novas funcionalidades, fazendo revisão de Pull requests e parcticipando de reuniões de planejamento para discutirmos prioridades no desenvolvimento.
### O que esperamos de você
* Pelo menos 1 ano de experiência com desenvolvimento de software;
* Conhecimentos sólidos de Orientação a objetos;
* Conhecimentos em React;
* Experiência com HTML, CSS e Javascript;
* Teste seu código;
* Ler em Inglês;
### O que vai te diferenciar
* Conhecimentos em React Native;
* Conhecientos em Redux;
* Conhecimentos sobre investimentos;
### Regime de contratação
* A negociar
### O que oferecemos?
* Salário à combinar;
* Transporte;
* Plano de saúde;
* Ambiente descontraído;
* Trabalhe de bermuda (se quiser);
* Possibilidades de crescimento;
* <code>while(true){ coffee++; }</code>
### Onde irá trabalhar
O escritório do Kinvo fica localizado em Salvador-BA, na Avenida Trancredo Neves.
## Se interessou?
Envie um e-mail para ```cleidson.franca@kinvo.com.br``` informando ```vaga front-end``` no assunto do e-mail e com as informações necessárias para te conhecermos melhor (currículo, Linkedin, portfolio, site pessoal, Github, Stackoverflow, Codepen, Twitter, Facebook...) | 1.0 | [JAVASCRIPT] [REACT] Desenvolvedor Front-End no [Kinvo] - ### Sobre você
* Trabalhar com um time altamente técnico, em ritmo acelerado e com um roadmap altamente desafiador não lhe assusta, pelo contrário, lhe motiva;
* Estar sempre atualizado é uma obrigação pra você. Você tem fome por conhecimento e busca aperfeiçoamento diário;
* Você ama programar e está sempre ansioso por aprender novas tecnologias;
### Sobre a vaga
O [Kinvo](http://kinvo.com.br) é uma fintech da área de investimentos criada em 2017 com missão de empoderar o investidor.
Criamos uma plataforma que permite o investidor cadastrar seus investimentos, independente de qual instituição financeira ele está, consolidar esses dados como uma carteira de investimentos, e a partir daí extrair métricas sobre a saúde dos seus investimentos. Temos um planejamento arrojado e uma série de desafios pela frente. Estamos buscando por um Desenvolvedor(a) júnior para integrar o nosso time de Front-End.
Você irá contribuir diariamente ajudando o nosso time no desenvolvimento da versão Web da nossa plataforma, implementando novas funcionalidades, fazendo revisão de Pull requests e parcticipando de reuniões de planejamento para discutirmos prioridades no desenvolvimento.
### O que esperamos de você
* Pelo menos 1 ano de experiência com desenvolvimento de software;
* Conhecimentos sólidos de Orientação a objetos;
* Conhecimentos em React;
* Experiência com HTML, CSS e Javascript;
* Teste seu código;
* Ler em Inglês;
### O que vai te diferenciar
* Conhecimentos em React Native;
* Conhecientos em Redux;
* Conhecimentos sobre investimentos;
### Regime de contratação
* A negociar
### O que oferecemos?
* Salário à combinar;
* Transporte;
* Plano de saúde;
* Ambiente descontraído;
* Trabalhe de bermuda (se quiser);
* Possibilidades de crescimento;
* <code>while(true){ coffee++; }</code>
### Onde irá trabalhar
O escritório do Kinvo fica localizado em Salvador-BA, na Avenida Trancredo Neves.
## Se interessou?
Envie um e-mail para ```cleidson.franca@kinvo.com.br``` informando ```vaga front-end``` no assunto do e-mail e com as informações necessárias para te conhecermos melhor (currículo, Linkedin, portfolio, site pessoal, Github, Stackoverflow, Codepen, Twitter, Facebook...) | test | desenvolvedor front end no sobre você trabalhar com um time altamente técnico em ritmo acelerado e com um roadmap altamente desafiador não lhe assusta pelo contrário lhe motiva estar sempre atualizado é uma obrigação pra você você tem fome por conhecimento e busca aperfeiçoamento diário você ama programar e está sempre ansioso por aprender novas tecnologias sobre a vaga o é uma fintech da área de investimentos criada em com missão de empoderar o investidor criamos uma plataforma que permite o investidor cadastrar seus investimentos independente de qual instituição financeira ele está consolidar esses dados como uma carteira de investimentos e a partir daí extrair métricas sobre a saúde dos seus investimentos temos um planejamento arrojado e uma série de desafios pela frente estamos buscando por um desenvolvedor a júnior para integrar o nosso time de front end você irá contribuir diariamente ajudando o nosso time no desenvolvimento da versão web da nossa plataforma implementando novas funcionalidades fazendo revisão de pull requests e parcticipando de reuniões de planejamento para discutirmos prioridades no desenvolvimento o que esperamos de você pelo menos ano de experiência com desenvolvimento de software conhecimentos sólidos de orientação a objetos conhecimentos em react experiência com html css e javascript teste seu código ler em inglês o que vai te diferenciar conhecimentos em react native conhecientos em redux conhecimentos sobre investimentos regime de contratação a negociar o que oferecemos salário à combinar transporte plano de saúde ambiente descontraído trabalhe de bermuda se quiser possibilidades de crescimento while true coffee onde irá trabalhar o escritório do kinvo fica localizado em salvador ba na avenida trancredo neves se interessou envie um e mail para cleidson franca kinvo com br informando vaga front end no assunto do e mail e com as informações necessárias para te conhecermos melhor currículo linkedin portfolio site pessoal github stackoverflow codepen twitter facebook | 1 |
201,500 | 15,209,991,991 | IssuesEvent | 2021-02-17 06:34:46 | FEX-Emu/FEX | https://api.github.com/repos/FEX-Emu/FEX | opened | Expand sar tests | Unittests good first issue | We don't test for sign extension for 8 and 16 bit SARs, possibly 32 and 64 bit ones need to be added too. | 1.0 | Expand sar tests - We don't test for sign extension for 8 and 16 bit SARs, possibly 32 and 64 bit ones need to be added too. | test | expand sar tests we don t test for sign extension for and bit sars possibly and bit ones need to be added too | 1 |
264,498 | 23,120,941,184 | IssuesEvent | 2022-07-27 21:24:48 | microsoft/vscode-pull-request-github | https://api.github.com/repos/microsoft/vscode-pull-request-github | closed | Test Suggested Assignees | testplan-item | Refs: #3627
- [x] anyOS @greazer
- [x] anyOS @lramos15
Complexity: 1
[Create Issue](https://github.com/microsoft/vscode-pull-request-github/issues/new?body=Testing+%233765%0A%0A&assignees=benibenj)
---
Suggests Users when assigning a user to a PR
1. Install the pre-release build of GitHub Pull Requests and Issues.
2. Open a folder in VS Code that contains a GitHub repository.
3. Open a Pull Request Overview of any PR by clicking on the description node of a PR
4. Press on add Assignee
5. A dropdown should appear with suggested users to assign at the top. The first should be the viewer himself and the rest should be participants of the PR. In the second section, all other assignable users are listed sorted alphabetically (not the ones from the suggested list). | 1.0 | Test Suggested Assignees - Refs: #3627
- [x] anyOS @greazer
- [x] anyOS @lramos15
Complexity: 1
[Create Issue](https://github.com/microsoft/vscode-pull-request-github/issues/new?body=Testing+%233765%0A%0A&assignees=benibenj)
---
Suggests Users when assigning a user to a PR
1. Install the pre-release build of GitHub Pull Requests and Issues.
2. Open a folder in VS Code that contains a GitHub repository.
3. Open a Pull Request Overview of any PR by clicking on the description node of a PR
4. Press on add Assignee
5. A dropdown should appear with suggested users to assign at the top. The first should be the viewer himself and the rest should be participants of the PR. In the second section, all other assignable users are listed sorted alphabetically (not the ones from the suggested list). | test | test suggested assignees refs anyos greazer anyos complexity suggests users when assigning a user to a pr install the pre release build of github pull requests and issues open a folder in vs code that contains a github repository open a pull request overview of any pr by clicking on the description node of a pr press on add assignee a dropdown should appear with suggested users to assign at the top the first should be the viewer himself and the rest should be participants of the pr in the second section all other assignable users are listed sorted alphabetically not the ones from the suggested list | 1 |
11,240 | 16,702,648,241 | IssuesEvent | 2021-06-09 06:00:45 | goharbor/harbor | https://api.github.com/repos/goharbor/harbor | closed | Interrogation Services API doesn't supply `tag` value on POST /scan | area/vulnerability-scan kind/requirement target/2.3.0 | **Expected behavior and actual behavior:**
When Harbor sends its POST request to our interrogation service on endpoint `/scan` it always contains empty string for `tag` field. As written in the API spec, it should contain the actual tag of the image.
Please note, that the tag is displayed correctly in the Harbor UI, it's just not send to the interrogation service.
**Steps to reproduce the problem:**
Just inspect the POST request coming from Harbor with image that is not based on `:latest` tag. By the way, `latest` is never contained in the `tag` field as well, but I think this is by convention.
**Versions:**
Harbor 2.2
| 1.0 | Interrogation Services API doesn't supply `tag` value on POST /scan - **Expected behavior and actual behavior:**
When Harbor sends its POST request to our interrogation service on endpoint `/scan` it always contains empty string for `tag` field. As written in the API spec, it should contain the actual tag of the image.
Please note, that the tag is displayed correctly in the Harbor UI, it's just not send to the interrogation service.
**Steps to reproduce the problem:**
Just inspect the POST request coming from Harbor with image that is not based on `:latest` tag. By the way, `latest` is never contained in the `tag` field as well, but I think this is by convention.
**Versions:**
Harbor 2.2
| non_test | interrogation services api doesn t supply tag value on post scan expected behavior and actual behavior when harbor sends its post request to our interrogation service on endpoint scan it always contains empty string for tag field as written in the api spec it should contain the actual tag of the image please note that the tag is displayed correctly in the harbor ui it s just not send to the interrogation service steps to reproduce the problem just inspect the post request coming from harbor with image that is not based on latest tag by the way latest is never contained in the tag field as well but i think this is by convention versions harbor | 0 |
46,001 | 5,774,329,951 | IssuesEvent | 2017-04-28 06:42:17 | miamidade/open311 | https://api.github.com/repos/miamidade/open311 | closed | Apply alerts to 311Direct and 311Online for Other SR and Tethered Dog SR. | Ready in test | See tickets by Liz in mobile and responsive repos. | 1.0 | Apply alerts to 311Direct and 311Online for Other SR and Tethered Dog SR. - See tickets by Liz in mobile and responsive repos. | test | apply alerts to and for other sr and tethered dog sr see tickets by liz in mobile and responsive repos | 1 |
159,011 | 12,451,120,622 | IssuesEvent | 2020-05-27 09:55:25 | python/mypy | https://api.github.com/repos/python/mypy | closed | Drop appveyor | priority-0-high topic-tests | We are running Windows tests using GitHub actions, so there should be no need to keep appveyor around any more. Am I correct?
This is part of #8783. | 1.0 | Drop appveyor - We are running Windows tests using GitHub actions, so there should be no need to keep appveyor around any more. Am I correct?
This is part of #8783. | test | drop appveyor we are running windows tests using github actions so there should be no need to keep appveyor around any more am i correct this is part of | 1 |
281,171 | 24,367,391,083 | IssuesEvent | 2022-10-03 16:12:43 | openfoodfacts/smooth-app | https://api.github.com/repos/openfoodfacts/smooth-app | closed | Create a test for registration and login | User management tests P5 | ### What
- Create a test for registration and login
### Part of
- #1176 | 1.0 | Create a test for registration and login - ### What
- Create a test for registration and login
### Part of
- #1176 | test | create a test for registration and login what create a test for registration and login part of | 1 |
181,583 | 14,058,497,862 | IssuesEvent | 2020-11-03 00:22:04 | backend-br/vagas | https://api.github.com/repos/backend-br/vagas | closed | [Belo Horizonte] Back-end Developer @Parcela Express | AWS Alocado Angular CLT Docker Express Git JavaScript MongoDB MySQL Pleno Python Rest Ruby Scrum Stale Testes Unitários | ## Nossa empresa
Olá, Somos o Parcela Express e queremos você em nosso time!
Somos uma Fintech que atua em soluções de pagamentos e utiliza a tecnologia para eliminar a burocracia, reduzir custos e proporcionar mais agilidade aos serviços financeiros. Nosso foco é ajudar estabelecimentos comerciais a receberem de seus clientes, aumentar suas receitas e possibilidades na realização dos pagamentos. Oferecemos soluções integradas para facilitar a administração e pagamentos nos estabelecimentos.
Chegou a hora de expandir o nosso time de Tech, vamos conquistar juntos novos desafios?!
## Descrição da vaga
Procuramos uma pessoa desenvolvedora, com muita vontade de crescer e desenvolver as suas habilidades em um ambiente dinâmico.
## Local
Belo Horizonte
## Requisitos
**Obrigatórios:**
- Ao menos uma linguagem de alto nível (Node.JS/Javascript, Ruby, Python)
- Banco de dados relacionais e não relacionais (Mysql, Postgres, DynamoDB, MongoDB)
- Integração de APIs REST
- Controle de versão (git)
- Conhecimentos básicos em serviços AWS (S3, EC2, DynamoDB, Lambda)
**Desejáveis:**
- Metodologias ágeis (Scrum, Kanban)
- Processos de integração contínua (CircleCI, Jenkins)
- Testes unitários, mocks, integração, etc
- Ambientes virtualizados (Docker)
- Experiência pelo menos um framework front-end (React, Vue.JS, Angular.JS)
## Benefícios
- Vale Refeição
- Vale Transporte
## Contratação
- Regime CLT a combinar
## Como se candidatar
Por favor envie um email para valeria@enable.ventures com seu CV anexado - enviar no assunto: Vaga Pessoa Desenvolvedora
## Labels
<!-- retire os labels que não fazem sentido à vaga -->
#### Alocação
- Alocado
#### Regime
- CLT
#### Nível
- Pleno
- Sênior
| 1.0 | [Belo Horizonte] Back-end Developer @Parcela Express - ## Nossa empresa
Olá, Somos o Parcela Express e queremos você em nosso time!
Somos uma Fintech que atua em soluções de pagamentos e utiliza a tecnologia para eliminar a burocracia, reduzir custos e proporcionar mais agilidade aos serviços financeiros. Nosso foco é ajudar estabelecimentos comerciais a receberem de seus clientes, aumentar suas receitas e possibilidades na realização dos pagamentos. Oferecemos soluções integradas para facilitar a administração e pagamentos nos estabelecimentos.
Chegou a hora de expandir o nosso time de Tech, vamos conquistar juntos novos desafios?!
## Descrição da vaga
Procuramos uma pessoa desenvolvedora, com muita vontade de crescer e desenvolver as suas habilidades em um ambiente dinâmico.
## Local
Belo Horizonte
## Requisitos
**Obrigatórios:**
- Ao menos uma linguagem de alto nível (Node.JS/Javascript, Ruby, Python)
- Banco de dados relacionais e não relacionais (Mysql, Postgres, DynamoDB, MongoDB)
- Integração de APIs REST
- Controle de versão (git)
- Conhecimentos básicos em serviços AWS (S3, EC2, DynamoDB, Lambda)
**Desejáveis:**
- Metodologias ágeis (Scrum, Kanban)
- Processos de integração contínua (CircleCI, Jenkins)
- Testes unitários, mocks, integração, etc
- Ambientes virtualizados (Docker)
- Experiência pelo menos um framework front-end (React, Vue.JS, Angular.JS)
## Benefícios
- Vale Refeição
- Vale Transporte
## Contratação
- Regime CLT a combinar
## Como se candidatar
Por favor envie um email para valeria@enable.ventures com seu CV anexado - enviar no assunto: Vaga Pessoa Desenvolvedora
## Labels
<!-- retire os labels que não fazem sentido à vaga -->
#### Alocação
- Alocado
#### Regime
- CLT
#### Nível
- Pleno
- Sênior
| test | back end developer parcela express nossa empresa olá somos o parcela express e queremos você em nosso time somos uma fintech que atua em soluções de pagamentos e utiliza a tecnologia para eliminar a burocracia reduzir custos e proporcionar mais agilidade aos serviços financeiros nosso foco é ajudar estabelecimentos comerciais a receberem de seus clientes aumentar suas receitas e possibilidades na realização dos pagamentos oferecemos soluções integradas para facilitar a administração e pagamentos nos estabelecimentos chegou a hora de expandir o nosso time de tech vamos conquistar juntos novos desafios descrição da vaga procuramos uma pessoa desenvolvedora com muita vontade de crescer e desenvolver as suas habilidades em um ambiente dinâmico local belo horizonte requisitos obrigatórios ao menos uma linguagem de alto nível node js javascript ruby python banco de dados relacionais e não relacionais mysql postgres dynamodb mongodb integração de apis rest controle de versão git conhecimentos básicos em serviços aws dynamodb lambda desejáveis metodologias ágeis scrum kanban processos de integração contínua circleci jenkins testes unitários mocks integração etc ambientes virtualizados docker experiência pelo menos um framework front end react vue js angular js benefícios vale refeição vale transporte contratação regime clt a combinar como se candidatar por favor envie um email para valeria enable ventures com seu cv anexado enviar no assunto vaga pessoa desenvolvedora labels alocação alocado regime clt nível pleno sênior | 1 |
193,020 | 14,635,237,956 | IssuesEvent | 2020-12-24 07:42:01 | pingcap/tidb | https://api.github.com/repos/pingcap/tidb | closed | <autogenerated>:tidbTestSerialSuite.SetUpSuite failed | component/test | \<autogenerated>:tidbTestSerialSuite.SetUpSuite
Latest failed builds:
https://internal.pingcap.net/idc-jenkins/job/tidb_ghpr_unit_test/32607/display/redirect
https://internal.pingcap.net/idc-jenkins/job/tidb_ghpr_unit_test/32681/display/redirect
| 1.0 | <autogenerated>:tidbTestSerialSuite.SetUpSuite failed - \<autogenerated>:tidbTestSerialSuite.SetUpSuite
Latest failed builds:
https://internal.pingcap.net/idc-jenkins/job/tidb_ghpr_unit_test/32607/display/redirect
https://internal.pingcap.net/idc-jenkins/job/tidb_ghpr_unit_test/32681/display/redirect
| test | tidbtestserialsuite setupsuite failed tidbtestserialsuite setupsuite latest failed builds | 1 |
384,669 | 26,597,921,394 | IssuesEvent | 2023-01-23 13:51:19 | redpanda-data/documentation | https://api.github.com/repos/redpanda-data/documentation | opened | Doc for new settings: `node_isolation_heartbeat_timeout` | documentation | ### New feature or content gap requests
name: `node_isolation_heartbeat_timeout`
description: 'How long after the last heartbeat request a node will wait before considering itself to be isolated'
In RedPanda we have out of raft mechanism to send heartbeats between nodes. To understand that node is isolated we are using this communication service. New setting is timeout for this heartbits
[PR](https://github.com/redpanda-data/redpanda/pull/7829)
[RFC](https://docs.google.com/document/d/1IYztXGunVHWSJXOKbHodbKtVigT7AQ_6l-XiwLkkOyc/edit?usp=sharing)
### If new feature, in which release is it included or expected?
v23.1.1
| 1.0 | Doc for new settings: `node_isolation_heartbeat_timeout` - ### New feature or content gap requests
name: `node_isolation_heartbeat_timeout`
description: 'How long after the last heartbeat request a node will wait before considering itself to be isolated'
In RedPanda we have out of raft mechanism to send heartbeats between nodes. To understand that node is isolated we are using this communication service. New setting is timeout for this heartbits
[PR](https://github.com/redpanda-data/redpanda/pull/7829)
[RFC](https://docs.google.com/document/d/1IYztXGunVHWSJXOKbHodbKtVigT7AQ_6l-XiwLkkOyc/edit?usp=sharing)
### If new feature, in which release is it included or expected?
v23.1.1
| non_test | doc for new settings node isolation heartbeat timeout new feature or content gap requests name node isolation heartbeat timeout description how long after the last heartbeat request a node will wait before considering itself to be isolated in redpanda we have out of raft mechanism to send heartbeats between nodes to understand that node is isolated we are using this communication service new setting is timeout for this heartbits if new feature in which release is it included or expected | 0 |
131,430 | 12,484,732,276 | IssuesEvent | 2020-05-30 16:10:17 | spectrochempy/test_issues_migration_from_redmine | https://api.github.com/repos/spectrochempy/test_issues_migration_from_redmine | opened | Update of the sphinx version | Category: Documentation Priority: Minor Project: SpectroChemPy Status: New Tracker: Task | Author: Christian Fernandez (Christian Fernandez )
Redmine Issue: 3, https://redmine.spectrochempy.fr/issues/3
---
make of doc is running 1.8.5.
We probably need to update this to a more recent version - and some warning related to autodocsum needs to be solved
```shell
Running Sphinx v1.8.5
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autoclass' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'automodule' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autoattribute' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autodata' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autoattribute' is already registered, it will be overridden
```
| 1.0 | Update of the sphinx version - Author: Christian Fernandez (Christian Fernandez )
Redmine Issue: 3, https://redmine.spectrochempy.fr/issues/3
---
make of doc is running 1.8.5.
We probably need to update this to a more recent version - and some warning related to autodocsum needs to be solved
```shell
Running Sphinx v1.8.5
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autoclass' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'automodule' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autoattribute' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autodata' is already registered, it will be overridden
WARNING: while setting up extension spectrochempy.sphinxext.autodocsumm: directive 'autoattribute' is already registered, it will be overridden
```
| non_test | update of the sphinx version author christian fernandez christian fernandez redmine issue make of doc is running we probably need to update this to a more recent version and some warning related to autodocsum needs to be solved shell running sphinx warning while setting up extension spectrochempy sphinxext autodocsumm directive autoclass is already registered it will be overridden warning while setting up extension spectrochempy sphinxext autodocsumm directive automodule is already registered it will be overridden warning while setting up extension spectrochempy sphinxext autodocsumm directive autoattribute is already registered it will be overridden warning while setting up extension spectrochempy sphinxext autodocsumm directive autodata is already registered it will be overridden warning while setting up extension spectrochempy sphinxext autodocsumm directive autoattribute is already registered it will be overridden | 0 |
37,628 | 10,043,970,831 | IssuesEvent | 2019-07-19 08:53:23 | tensorflow/tensorflow | https://api.github.com/repos/tensorflow/tensorflow | closed | TensorFlow import error | stat:awaiting response subtype:windows type:build/install | **System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 x64
- TensorFlow installed from (source or binary): binary
- TensorFlow version: 1.14.0
- Python version: 3.7.4 x64
- Installed using virtualenv? pip? conda?: pip
- Bazel version (if compiling from source):
- GCC/Compiler version (if compiling from source):
- CUDA/cuDNN version:
- GPU model and memory: Intel core i7 6700, 16GB ram
**Describe the problem**
Hi,
I would like to import tensorflow on pycharm. I checked related posts but I think that I missed a step somewhere. Please excuse me I am new to python and may have forgotten something trivial.
**Provide the exact sequence of commands / steps that you executed before running into the problem**
I installed tensorflow and it succeeded, then run the following code: (I disabled unused import statements but it seems that it is still an issue).
```
from __future__ import absolute_import, division, print_function, unicode_literals
import tensorflow as tf
from tensorflow import keras
import numpy as np
import matplotlib.pyplot as plt
print(tf.__version__)
```
**Any other info / logs**
I get the following error message:
```
Traceback (most recent call last):
File "C:/Users/Leo Picard/PycharmProjects/tensorflow/tensorflow_init.py", line 4, in <module>
import tensorflow as tf
File "C:\Python\lib\site-packages\tensorflow\__init__.py", line 28, in <module>
from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import
File "C:\Python\lib\site-packages\tensorflow\python\__init__.py", line 47, in <module>
import numpy as np
File "C:\Python\lib\site-packages\numpy\__init__.py", line 142, in <module>
from . import core
File "C:\Python\lib\site-packages\numpy\core\__init__.py", line 23, in <module>
WinDLL(os.path.abspath(filename))
File "C:\Python\lib\ctypes\__init__.py", line 364, in __init__
self._handle = _dlopen(self._name, mode)
OSError: [WinError 193] %1 is not a valid Win32 application
```
| 1.0 | TensorFlow import error - **System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 x64
- TensorFlow installed from (source or binary): binary
- TensorFlow version: 1.14.0
- Python version: 3.7.4 x64
- Installed using virtualenv? pip? conda?: pip
- Bazel version (if compiling from source):
- GCC/Compiler version (if compiling from source):
- CUDA/cuDNN version:
- GPU model and memory: Intel core i7 6700, 16GB ram
**Describe the problem**
Hi,
I would like to import tensorflow on pycharm. I checked related posts but I think that I missed a step somewhere. Please excuse me I am new to python and may have forgotten something trivial.
**Provide the exact sequence of commands / steps that you executed before running into the problem**
I installed tensorflow and it succeeded, then run the following code: (I disabled unused import statements but it seems that it is still an issue).
```
from __future__ import absolute_import, division, print_function, unicode_literals
import tensorflow as tf
from tensorflow import keras
import numpy as np
import matplotlib.pyplot as plt
print(tf.__version__)
```
**Any other info / logs**
I get the following error message:
```
Traceback (most recent call last):
File "C:/Users/Leo Picard/PycharmProjects/tensorflow/tensorflow_init.py", line 4, in <module>
import tensorflow as tf
File "C:\Python\lib\site-packages\tensorflow\__init__.py", line 28, in <module>
from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import
File "C:\Python\lib\site-packages\tensorflow\python\__init__.py", line 47, in <module>
import numpy as np
File "C:\Python\lib\site-packages\numpy\__init__.py", line 142, in <module>
from . import core
File "C:\Python\lib\site-packages\numpy\core\__init__.py", line 23, in <module>
WinDLL(os.path.abspath(filename))
File "C:\Python\lib\ctypes\__init__.py", line 364, in __init__
self._handle = _dlopen(self._name, mode)
OSError: [WinError 193] %1 is not a valid Win32 application
```
| non_test | tensorflow import error system information os platform and distribution e g linux ubuntu windows tensorflow installed from source or binary binary tensorflow version python version installed using virtualenv pip conda pip bazel version if compiling from source gcc compiler version if compiling from source cuda cudnn version gpu model and memory intel core ram describe the problem hi i would like to import tensorflow on pycharm i checked related posts but i think that i missed a step somewhere please excuse me i am new to python and may have forgotten something trivial provide the exact sequence of commands steps that you executed before running into the problem i installed tensorflow and it succeeded then run the following code i disabled unused import statements but it seems that it is still an issue from future import absolute import division print function unicode literals import tensorflow as tf from tensorflow import keras import numpy as np import matplotlib pyplot as plt print tf version any other info logs i get the following error message traceback most recent call last file c users leo picard pycharmprojects tensorflow tensorflow init py line in import tensorflow as tf file c python lib site packages tensorflow init py line in from tensorflow python import pywrap tensorflow pylint disable unused import file c python lib site packages tensorflow python init py line in import numpy as np file c python lib site packages numpy init py line in from import core file c python lib site packages numpy core init py line in windll os path abspath filename file c python lib ctypes init py line in init self handle dlopen self name mode oserror is not a valid application | 0 |
21,273 | 4,699,842,023 | IssuesEvent | 2016-10-12 16:48:41 | kubernetes/kubernetes | https://api.github.com/repos/kubernetes/kubernetes | closed | Swagger represents all maps as type "any" | area/api area/swagger area/usability kind/documentation priority/P2 team/CSI-API Machinery SIG | "labels": "v1beta3.ObjectMeta.labels",
Not sure what that means... | 1.0 | Swagger represents all maps as type "any" - "labels": "v1beta3.ObjectMeta.labels",
Not sure what that means... | non_test | swagger represents all maps as type any labels objectmeta labels not sure what that means | 0 |
808,757 | 30,109,570,883 | IssuesEvent | 2023-06-30 06:26:13 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | can01.safelinks.protection.outlook.com - see bug description | browser-firefox priority-critical engine-gecko | <!-- @browser: Firefox 114.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/124231 -->
**URL**: https://can01.safelinks.protection.outlook.com/?url=https%3A%2F%2Furl.avanan.click%2Fv2%2F___https%3A%2F%2Fteams.microsoft.com%2Fl%2Fmeetup-join%2F19%253ameeting_YTc3YWY5MmEtZGRhMS00ZDRjLTk2NDctNmQyNjUzNjFhNDVm%2540thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%2522c61cd524-b8a8-49b4-8460-1f2084055f1d%2522%252c%2522Oid%2522%253a%25224bcc9e10-4eea-49eb-bcfd-01cdf8eee211%2522%252c%2522prid%2522%253a%2522JNUcxqi4tEmEYB8ghAVfHQ%252cl03b_R1ahE6UrkoGQVIHLg%252cVoM0YyJ7mESkmZdnwGR_vA%252cSOtvdB_fVEyJkc_YVCubWA%252c2TQmJ59BdESLPg2y-kk8mg%252cNrg8o0NlY0uFJRcJLv6p7w%252czedDl3lkwjMkVp07AvFxpw%2522%252c%2522isPublic%2522%253atrue%257d___.bXQtcHJvZC1hdi1jYS0yOndoaXRld2F0ZXJ3ZXN0OmE6bzo1ZmQ0ODE2Yjc3YzhiZjA2OTlmNDAwNjZmMDU2YjFmOTo2OmM3MzU6OTAzODhlNDkwY2MzY2E5N2M0ZGViOTQ3NmY5ZDI2YjMyMDBjZTYzM2Q2YzA0Zjg4ZTc4YTM3MTVhOGVjNWU5ZDpoOlQ&data=05%7C01%7Cjim.taylor%40whitewaterwest.com%7Cee2de7e1fd494025aed208db6dd13a32%7C9ce3770353e8441e8fba26704215ed39%7C0%7C0%7C638224517613141817%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=E2%2B7YCDD8ebFH1aZnAPltxyrFC6ObBUwPxHit2fh2dE%3D&reserved=0
**Browser / Version**: Firefox 114.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: Resultant page should give option to open locally installed MS Teams. Only works in Chrome not firefox
**Steps to Reproduce**:
This is a simple online meeting event link.
It appears to offer:
- open ms teams in browser and join event.
- open ms teams locally installed on user's computer.
But both links fail to function through to the desired result if using Firefox.
But it works perfectly in Chrome.
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | can01.safelinks.protection.outlook.com - see bug description - <!-- @browser: Firefox 114.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/124231 -->
**URL**: https://can01.safelinks.protection.outlook.com/?url=https%3A%2F%2Furl.avanan.click%2Fv2%2F___https%3A%2F%2Fteams.microsoft.com%2Fl%2Fmeetup-join%2F19%253ameeting_YTc3YWY5MmEtZGRhMS00ZDRjLTk2NDctNmQyNjUzNjFhNDVm%2540thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%2522c61cd524-b8a8-49b4-8460-1f2084055f1d%2522%252c%2522Oid%2522%253a%25224bcc9e10-4eea-49eb-bcfd-01cdf8eee211%2522%252c%2522prid%2522%253a%2522JNUcxqi4tEmEYB8ghAVfHQ%252cl03b_R1ahE6UrkoGQVIHLg%252cVoM0YyJ7mESkmZdnwGR_vA%252cSOtvdB_fVEyJkc_YVCubWA%252c2TQmJ59BdESLPg2y-kk8mg%252cNrg8o0NlY0uFJRcJLv6p7w%252czedDl3lkwjMkVp07AvFxpw%2522%252c%2522isPublic%2522%253atrue%257d___.bXQtcHJvZC1hdi1jYS0yOndoaXRld2F0ZXJ3ZXN0OmE6bzo1ZmQ0ODE2Yjc3YzhiZjA2OTlmNDAwNjZmMDU2YjFmOTo2OmM3MzU6OTAzODhlNDkwY2MzY2E5N2M0ZGViOTQ3NmY5ZDI2YjMyMDBjZTYzM2Q2YzA0Zjg4ZTc4YTM3MTVhOGVjNWU5ZDpoOlQ&data=05%7C01%7Cjim.taylor%40whitewaterwest.com%7Cee2de7e1fd494025aed208db6dd13a32%7C9ce3770353e8441e8fba26704215ed39%7C0%7C0%7C638224517613141817%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=E2%2B7YCDD8ebFH1aZnAPltxyrFC6ObBUwPxHit2fh2dE%3D&reserved=0
**Browser / Version**: Firefox 114.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: Resultant page should give option to open locally installed MS Teams. Only works in Chrome not firefox
**Steps to Reproduce**:
This is a simple online meeting event link.
It appears to offer:
- open ms teams in browser and join event.
- open ms teams locally installed on user's computer.
But both links fail to function through to the desired result if using Firefox.
But it works perfectly in Chrome.
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_test | safelinks protection outlook com see bug description url browser version firefox operating system windows tested another browser yes chrome problem type something else description resultant page should give option to open locally installed ms teams only works in chrome not firefox steps to reproduce this is a simple online meeting event link it appears to offer open ms teams in browser and join event open ms teams locally installed on user s computer but both links fail to function through to the desired result if using firefox but it works perfectly in chrome browser configuration none from with ❤️ | 0 |
207,817 | 15,837,448,437 | IssuesEvent | 2021-04-06 20:48:11 | spacemeshos/go-spacemesh | https://api.github.com/repos/spacemeshos/go-spacemesh | opened | DEBUG logs appearing in testnet | log testnet | I'm seeing some DEBUG logs appear in kibana from the managed miners. This should not be happening since the [testnet config](https://storage.googleapis.com/spacecraft-data/tweedlelite127-archive/config.json) does not include DEBUG for any module. I suspect there's a bug in the logging.

| 1.0 | DEBUG logs appearing in testnet - I'm seeing some DEBUG logs appear in kibana from the managed miners. This should not be happening since the [testnet config](https://storage.googleapis.com/spacecraft-data/tweedlelite127-archive/config.json) does not include DEBUG for any module. I suspect there's a bug in the logging.

| test | debug logs appearing in testnet i m seeing some debug logs appear in kibana from the managed miners this should not be happening since the does not include debug for any module i suspect there s a bug in the logging | 1 |
132,726 | 10,761,434,058 | IssuesEvent | 2019-10-31 20:46:45 | golang/go | https://api.github.com/repos/golang/go | closed | strings: TestBuilderAllocs flake on freebsd-386-12_0 | NeedsInvestigation Testing | `freebsd-386-12_0` (https://build.golang.org/log/380c04df9641b3e5274073af6c25f56e5607e60d):
```
--- FAIL: TestBuilderAllocs (0.00s)
builder_test.go:193: got 1 alloc(s); want 0
FAIL
FAIL strings 1.570s
```
It's not obvious to me whether this is a bug in the test proper or in `testing.AllocsPerRun`.
CC @bradfitz; see previously #24647. | 1.0 | strings: TestBuilderAllocs flake on freebsd-386-12_0 - `freebsd-386-12_0` (https://build.golang.org/log/380c04df9641b3e5274073af6c25f56e5607e60d):
```
--- FAIL: TestBuilderAllocs (0.00s)
builder_test.go:193: got 1 alloc(s); want 0
FAIL
FAIL strings 1.570s
```
It's not obvious to me whether this is a bug in the test proper or in `testing.AllocsPerRun`.
CC @bradfitz; see previously #24647. | test | strings testbuilderallocs flake on freebsd freebsd fail testbuilderallocs builder test go got alloc s want fail fail strings it s not obvious to me whether this is a bug in the test proper or in testing allocsperrun cc bradfitz see previously | 1 |
214,921 | 16,617,987,209 | IssuesEvent | 2021-06-02 19:25:29 | redwoodjs/redwood | https://api.github.com/repos/redwoodjs/redwood | closed | Allow running a single test by file path | topic/testing v1/for-consideration | It would be nice if you could run only a single file with our test runner… you can normally with Jest, but we’ve intercepted the second argument and require that it either be web or api to run the suite for one whole side:
```
rob$ yarn rw test web/src/components/Article/Article.test.js
Invalid values:
Argument: side, Given: "web/src/components/Article/Article.test.js", Choices: "web", "api"
```
I'm guessing this is a yargs thing...instead of requiring one or the other we should allow *anything* and then do a little additional work to determine if it's a valid side, otherwise assume it's a full path to a file. | 1.0 | Allow running a single test by file path - It would be nice if you could run only a single file with our test runner… you can normally with Jest, but we’ve intercepted the second argument and require that it either be web or api to run the suite for one whole side:
```
rob$ yarn rw test web/src/components/Article/Article.test.js
Invalid values:
Argument: side, Given: "web/src/components/Article/Article.test.js", Choices: "web", "api"
```
I'm guessing this is a yargs thing...instead of requiring one or the other we should allow *anything* and then do a little additional work to determine if it's a valid side, otherwise assume it's a full path to a file. | test | allow running a single test by file path it would be nice if you could run only a single file with our test runner… you can normally with jest but we’ve intercepted the second argument and require that it either be web or api to run the suite for one whole side rob yarn rw test web src components article article test js invalid values argument side given web src components article article test js choices web api i m guessing this is a yargs thing instead of requiring one or the other we should allow anything and then do a little additional work to determine if it s a valid side otherwise assume it s a full path to a file | 1 |
20,622 | 10,852,562,653 | IssuesEvent | 2019-11-13 13:04:13 | wix/stylable | https://api.github.com/repos/wix/stylable | closed | Imports validation is done at a wrong time in the tranpilation flow | core performance | https://github.com/wix/stylable/blob/master/packages/core/src/stylable-transformer.ts#L176
`validateImports` is called within `transformAst`, which is used when merging mixins. This causes excessive re-validation of imports. | True | Imports validation is done at a wrong time in the tranpilation flow - https://github.com/wix/stylable/blob/master/packages/core/src/stylable-transformer.ts#L176
`validateImports` is called within `transformAst`, which is used when merging mixins. This causes excessive re-validation of imports. | non_test | imports validation is done at a wrong time in the tranpilation flow validateimports is called within transformast which is used when merging mixins this causes excessive re validation of imports | 0 |
187,653 | 6,759,975,446 | IssuesEvent | 2017-10-24 18:57:37 | dwyl/hq | https://api.github.com/repos/dwyl/hq | reopened | Where should we be based as a *company*? | in-progress priority-2 | In light of Brexit and our aims of being a [remote-first](https://github.com/dwyl/remote) organisation, where does it make sense to base our company? | 1.0 | Where should we be based as a *company*? - In light of Brexit and our aims of being a [remote-first](https://github.com/dwyl/remote) organisation, where does it make sense to base our company? | non_test | where should we be based as a company in light of brexit and our aims of being a organisation where does it make sense to base our company | 0 |
689,391 | 23,618,639,784 | IssuesEvent | 2022-08-24 18:15:14 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [docs] Test and document how to use channel binding and SCRAM-SHA-256-PLUS | kind/bug area/ysql priority/medium | Jira Link: [DB-1681](https://yugabyte.atlassian.net/browse/DB-1681)
Let's document how to use SCRAM-SHA-256-PLUS with "channel binding" — it appears to be supported in our postgres code (see https://github.com/yugabyte/yugabyte-db/search?q=SCRAM-SHA-256-PLUS&unscoped_q=SCRAM-SHA-256-PLUS). This method is preferred over the regular SCRAM-SHA-256 because it helps prevent man-in-the-middle (MITM) attacks.
Let's test it and see if it works. Then let's document it. It should be a popular option.
Here are some sources of information:
- [Postgres 11 highlight - Channel Binding for SCRAM](https://paquier.xyz/postgresql-2/postgres-11-scram-channel-binding/)
- See "channel_binding" section in the PostgreSQL 13 documentation on ["Database Connection Control Functions"](https://www.postgresql.org/docs/13/libpq-connect.html), where it states: "Channel binding is a method for the server to authenticate itself to the client. It is only **supported over SSL connections with PostgreSQL 11 or later** servers using the SCRAM authentication method." Note that this is not documented in the PostgreSQL 11 docs! I did a search in our code for `channel_binding` and found it (see https://github.com/yugabyte/yugabyte-db/search?q=%22channel_binding%22&unscoped_q=%22channel_binding%22) | 1.0 | [docs] Test and document how to use channel binding and SCRAM-SHA-256-PLUS - Jira Link: [DB-1681](https://yugabyte.atlassian.net/browse/DB-1681)
Let's document how to use SCRAM-SHA-256-PLUS with "channel binding" — it appears to be supported in our postgres code (see https://github.com/yugabyte/yugabyte-db/search?q=SCRAM-SHA-256-PLUS&unscoped_q=SCRAM-SHA-256-PLUS). This method is preferred over the regular SCRAM-SHA-256 because it helps prevent man-in-the-middle (MITM) attacks.
Let's test it and see if it works. Then let's document it. It should be a popular option.
Here are some sources of information:
- [Postgres 11 highlight - Channel Binding for SCRAM](https://paquier.xyz/postgresql-2/postgres-11-scram-channel-binding/)
- See "channel_binding" section in the PostgreSQL 13 documentation on ["Database Connection Control Functions"](https://www.postgresql.org/docs/13/libpq-connect.html), where it states: "Channel binding is a method for the server to authenticate itself to the client. It is only **supported over SSL connections with PostgreSQL 11 or later** servers using the SCRAM authentication method." Note that this is not documented in the PostgreSQL 11 docs! I did a search in our code for `channel_binding` and found it (see https://github.com/yugabyte/yugabyte-db/search?q=%22channel_binding%22&unscoped_q=%22channel_binding%22) | non_test | test and document how to use channel binding and scram sha plus jira link let s document how to use scram sha plus with channel binding — it appears to be supported in our postgres code see this method is preferred over the regular scram sha because it helps prevent man in the middle mitm attacks let s test it and see if it works then let s document it it should be a popular option here are some sources of information see channel binding section in the postgresql documentation on where it states channel binding is a method for the server to authenticate itself to the client it is only supported over ssl connections with postgresql or later servers using the scram authentication method note that this is not documented in the postgresql docs i did a search in our code for channel binding and found it see | 0 |
60,658 | 6,712,418,850 | IssuesEvent | 2017-10-13 09:18:11 | w3c/web-platform-tests | https://api.github.com/repos/w3c/web-platform-tests | opened | Unable to test which cursor is used | css-ui-3 css-ui-4 type:untestable | At the moment, we have no way to test the CSS `cursor` property. We probably need some ability to take a screenshot of the cursor at a specific place.
cc/ @frivoal | 1.0 | Unable to test which cursor is used - At the moment, we have no way to test the CSS `cursor` property. We probably need some ability to take a screenshot of the cursor at a specific place.
cc/ @frivoal | test | unable to test which cursor is used at the moment we have no way to test the css cursor property we probably need some ability to take a screenshot of the cursor at a specific place cc frivoal | 1 |
58,136 | 6,575,377,206 | IssuesEvent | 2017-09-11 15:53:06 | brave/browser-ios | https://api.github.com/repos/brave/browser-ios | closed | Manual test run on iOS11 iPad for 1.4.2 | iPad release-notes/exclude tests | ## Per release specialty tests
- [ ] crash when selecting "New Tab" via 3D touch on Brave icon ([#1136 ](https://github.com/brave/browser-ios/issues/1136))
- [ ] Google Keyboard searching issue ([#1080 ](https://github.com/brave/browser-ios/issues/1080))
- [ ] Keyboard and TextFields Issue with some sites ([#1077 ](https://github.com/brave/browser-ios/issues/1077))
## Installer
1. [ ] Check that installer is close to the size of last release.
2. [ ] Check the Brave version in About and make sure it is EXACTLY as expected.
## Data
1. [ ] Make sure that data from the last version appears in the new version OK.
2. [ ] Test that the previous version's cookies are preserved in the next version.
## Bookmarks
1. [ ] Test that creating a bookmark in the left well works
2. [ ] Test that clicking a bookmark in the left well loads the bookmark
3. [ ] Test that deleting a bookmark in the left well works
4. [ ] Test that creating a bookmark folder works
5. [ ] Test that creating a bookmark inside the created folder works
6. [ ] Test that you are able to add a bookmark directly inside a bookmark folder
7. [ ] Test that you are able to delete a bookmark in edit mode
8. [ ] Test that you are able to delete a bookmark folder with bookmarks inside
9. [ ] Test adding a bookmark domain subpaths is retained and you are successfully able to visit the domain subpath in a new tab
## Context menus
1. [ ] Make sure context menu items in the URL bar work
2. [ ] Make sure context menu items on content work with no selected text.
3. [ ] Make sure context menu items on content work with selected text.
4. [ ] Make sure context menu items on content work inside an editable control (input, textarea, or contenteditable).
5. [ ] Context menu: verify you can Open in Background Tab, and Open in Private Tab
## Find on page
1. [ ] Ensure search box is shown when selected via the share menu
2. [ ] Test successful find
3. [ ] Test forward and backward find navigation
4. [ ] Test failed find shows 0 results
## Private Mode
1. [ ] Create private tab, go to http://google.com, search for 'yumyums', exit private mode, go to http://google.com search box and begin typing 'yumyums' and verify that word is not in the autocomplete list
## Reader Mode
1. [ ] Visit http://m.slashdot.org, open any article, verify the reader mode icon is shown in the URL bar
2. [ ] Verify tapping on the reader mode icon opens the article in reader mode
3. [ ] Edit reader mode settings and open different pages in reader mode and verify if the setting is retained across each article
## History
1. [ ] On youtube.com, thestar.com (or any other site using push state nav), navigate the site and verify history is added. Also note if the progress bar activates and shows progress.
2. [ ] Settings > Clear Private Data, and clear all. Check history is cleared, and top sites are cleared.
## Shields Settings
1. [ ] Enable all switches in settings and visit a site and disable block scripts. Kill and relaunch app and verify if the site shield settings are retained
## Site hacks
1. [ ] Test https://www.twitch.tv/adobe sub-page loads a video and you can play it
## Downloads
1. [ ] Test that you can save an image from a site.
## Fullscreen
1. [ ] Test that entering HTML5 full screen works. And pressing restore to go back exits full screen. (youtube.com)
## Gestures
1. [ ] Test zoom in / out gestures work
2. [ ] Test that navigating to a different origin resets the zoom
3. [ ] Swipe back and forward to navigate, verify this works as expected
## Password Managers
1. [ ] Test tapping on 1Password on the slide out keyboard launches 1Password App and able to select the stored credentials
2. [ ] Test tapping on bitwarden password manager in the autofill field launches the app and autofills the stored data
## Sync
1. [ ] Ensure you are able to scan the QR code and sync with laptop
2. [ ] Ensure the bookmarks from laptop shows up on the mobile after sync completes
3. [ ] Add a bookmark on mobile and check if it gets synced to the laptop
## Bravery settings
1. [ ] Check that HTTPS Everywhere works by loading https://https-everywhere.badssl.com/
2. [ ] Turning HTTPS Everywhere off and shields off both disable the redirect to https://https-everywhere.badssl.com/
3. [ ] Check that block ad and unblock ad works on http://slashdot.org
4. [ ] Check that toggling to blocking and allow ads works as expected.
5. [ ] Test that clicking through a cert error in https://badssl.com/ works.
6. [ ] Test that Safe Browsing works (http://downloadme.org/)
7. [ ] Turning Safe Browsing off and shields off both disable safe browsing for http://downloadme.org/.
8. [ ] Enable block script globally from settings, Visit https://brianbondy.com/, nothing should load. Tap on Shields and disable block script, page should load properly
9. [ ] Test that preferences default Bravery settings take effect on pages with no site settings.
10. [ ] Test that turning on fingerprinting protection in preferences shows 1 fingerprints blocked at https://browserleaks.com/canvas . Test that turning it off in the Bravery menu shows 0 fingerprints blocked.
11. [ ] Test that 3rd party storage results are blank at https://jsfiddle.net/7ke9r14a/7/ when 3rd party cookies are blocked.
12. [ ] Test that audio fingerprint is blocked at https://audiofingerprint.openwpm.com/ when fingerprinting protection is on.
## Content tests
1. [ ] Go to https://brianbondy.com/ and click on the twitter icon on the top right. Test that context menus work in the new twitter tab
2. [ ] Load twitter and click on a tweet so the popup div shows. Click to dismiss and repeat with another div. Make sure it shows
3. [ ] Go to https://trac.torproject.org/projects/tor/login and make sure that the password can be saved. Make sure the saved password is auto-populated when you visit the site again.
4. [ ] Open an email on http://mail.google.com/ or inbox.google.com and click on a link. Make sure it works
5. [ ] Test that PDF is loaded at http://www.orimi.com/pdf-test.pdf
6. [ ] Test that https://mixed-script.badssl.com/ shows up as grey not red (no mixed content scripts are run)
7. [ ] Test that news.google.com sites open in a new tab (due to target being _blank)
## Top sites view
1. [ ] Long-press on top sites to get to deletion mode, and delete a top site (note this will stop that site from showing up again on top sites, so you may not want to do this a site you want to keep there)
## Background
1. [ ] Start loading a page, background the app, wait >5 sec, then bring to front, ensure splash screen is not shown
## Session storage
1. [ ] Test that tabs restore when closed, including active tab.
| 1.0 | Manual test run on iOS11 iPad for 1.4.2 - ## Per release specialty tests
- [ ] crash when selecting "New Tab" via 3D touch on Brave icon ([#1136 ](https://github.com/brave/browser-ios/issues/1136))
- [ ] Google Keyboard searching issue ([#1080 ](https://github.com/brave/browser-ios/issues/1080))
- [ ] Keyboard and TextFields Issue with some sites ([#1077 ](https://github.com/brave/browser-ios/issues/1077))
## Installer
1. [ ] Check that installer is close to the size of last release.
2. [ ] Check the Brave version in About and make sure it is EXACTLY as expected.
## Data
1. [ ] Make sure that data from the last version appears in the new version OK.
2. [ ] Test that the previous version's cookies are preserved in the next version.
## Bookmarks
1. [ ] Test that creating a bookmark in the left well works
2. [ ] Test that clicking a bookmark in the left well loads the bookmark
3. [ ] Test that deleting a bookmark in the left well works
4. [ ] Test that creating a bookmark folder works
5. [ ] Test that creating a bookmark inside the created folder works
6. [ ] Test that you are able to add a bookmark directly inside a bookmark folder
7. [ ] Test that you are able to delete a bookmark in edit mode
8. [ ] Test that you are able to delete a bookmark folder with bookmarks inside
9. [ ] Test adding a bookmark domain subpaths is retained and you are successfully able to visit the domain subpath in a new tab
## Context menus
1. [ ] Make sure context menu items in the URL bar work
2. [ ] Make sure context menu items on content work with no selected text.
3. [ ] Make sure context menu items on content work with selected text.
4. [ ] Make sure context menu items on content work inside an editable control (input, textarea, or contenteditable).
5. [ ] Context menu: verify you can Open in Background Tab, and Open in Private Tab
## Find on page
1. [ ] Ensure search box is shown when selected via the share menu
2. [ ] Test successful find
3. [ ] Test forward and backward find navigation
4. [ ] Test failed find shows 0 results
## Private Mode
1. [ ] Create private tab, go to http://google.com, search for 'yumyums', exit private mode, go to http://google.com search box and begin typing 'yumyums' and verify that word is not in the autocomplete list
## Reader Mode
1. [ ] Visit http://m.slashdot.org, open any article, verify the reader mode icon is shown in the URL bar
2. [ ] Verify tapping on the reader mode icon opens the article in reader mode
3. [ ] Edit reader mode settings and open different pages in reader mode and verify if the setting is retained across each article
## History
1. [ ] On youtube.com, thestar.com (or any other site using push state nav), navigate the site and verify history is added. Also note if the progress bar activates and shows progress.
2. [ ] Settings > Clear Private Data, and clear all. Check history is cleared, and top sites are cleared.
## Shields Settings
1. [ ] Enable all switches in settings and visit a site and disable block scripts. Kill and relaunch app and verify if the site shield settings are retained
## Site hacks
1. [ ] Test https://www.twitch.tv/adobe sub-page loads a video and you can play it
## Downloads
1. [ ] Test that you can save an image from a site.
## Fullscreen
1. [ ] Test that entering HTML5 full screen works. And pressing restore to go back exits full screen. (youtube.com)
## Gestures
1. [ ] Test zoom in / out gestures work
2. [ ] Test that navigating to a different origin resets the zoom
3. [ ] Swipe back and forward to navigate, verify this works as expected
## Password Managers
1. [ ] Test tapping on 1Password on the slide out keyboard launches 1Password App and able to select the stored credentials
2. [ ] Test tapping on bitwarden password manager in the autofill field launches the app and autofills the stored data
## Sync
1. [ ] Ensure you are able to scan the QR code and sync with laptop
2. [ ] Ensure the bookmarks from laptop shows up on the mobile after sync completes
3. [ ] Add a bookmark on mobile and check if it gets synced to the laptop
## Bravery settings
1. [ ] Check that HTTPS Everywhere works by loading https://https-everywhere.badssl.com/
2. [ ] Turning HTTPS Everywhere off and shields off both disable the redirect to https://https-everywhere.badssl.com/
3. [ ] Check that block ad and unblock ad works on http://slashdot.org
4. [ ] Check that toggling to blocking and allow ads works as expected.
5. [ ] Test that clicking through a cert error in https://badssl.com/ works.
6. [ ] Test that Safe Browsing works (http://downloadme.org/)
7. [ ] Turning Safe Browsing off and shields off both disable safe browsing for http://downloadme.org/.
8. [ ] Enable block script globally from settings, Visit https://brianbondy.com/, nothing should load. Tap on Shields and disable block script, page should load properly
9. [ ] Test that preferences default Bravery settings take effect on pages with no site settings.
10. [ ] Test that turning on fingerprinting protection in preferences shows 1 fingerprints blocked at https://browserleaks.com/canvas . Test that turning it off in the Bravery menu shows 0 fingerprints blocked.
11. [ ] Test that 3rd party storage results are blank at https://jsfiddle.net/7ke9r14a/7/ when 3rd party cookies are blocked.
12. [ ] Test that audio fingerprint is blocked at https://audiofingerprint.openwpm.com/ when fingerprinting protection is on.
## Content tests
1. [ ] Go to https://brianbondy.com/ and click on the twitter icon on the top right. Test that context menus work in the new twitter tab
2. [ ] Load twitter and click on a tweet so the popup div shows. Click to dismiss and repeat with another div. Make sure it shows
3. [ ] Go to https://trac.torproject.org/projects/tor/login and make sure that the password can be saved. Make sure the saved password is auto-populated when you visit the site again.
4. [ ] Open an email on http://mail.google.com/ or inbox.google.com and click on a link. Make sure it works
5. [ ] Test that PDF is loaded at http://www.orimi.com/pdf-test.pdf
6. [ ] Test that https://mixed-script.badssl.com/ shows up as grey not red (no mixed content scripts are run)
7. [ ] Test that news.google.com sites open in a new tab (due to target being _blank)
## Top sites view
1. [ ] Long-press on top sites to get to deletion mode, and delete a top site (note this will stop that site from showing up again on top sites, so you may not want to do this a site you want to keep there)
## Background
1. [ ] Start loading a page, background the app, wait >5 sec, then bring to front, ensure splash screen is not shown
## Session storage
1. [ ] Test that tabs restore when closed, including active tab.
| test | manual test run on ipad for per release specialty tests crash when selecting new tab via touch on brave icon google keyboard searching issue keyboard and textfields issue with some sites installer check that installer is close to the size of last release check the brave version in about and make sure it is exactly as expected data make sure that data from the last version appears in the new version ok test that the previous version s cookies are preserved in the next version bookmarks test that creating a bookmark in the left well works test that clicking a bookmark in the left well loads the bookmark test that deleting a bookmark in the left well works test that creating a bookmark folder works test that creating a bookmark inside the created folder works test that you are able to add a bookmark directly inside a bookmark folder test that you are able to delete a bookmark in edit mode test that you are able to delete a bookmark folder with bookmarks inside test adding a bookmark domain subpaths is retained and you are successfully able to visit the domain subpath in a new tab context menus make sure context menu items in the url bar work make sure context menu items on content work with no selected text make sure context menu items on content work with selected text make sure context menu items on content work inside an editable control input textarea or contenteditable context menu verify you can open in background tab and open in private tab find on page ensure search box is shown when selected via the share menu test successful find test forward and backward find navigation test failed find shows results private mode create private tab go to search for yumyums exit private mode go to search box and begin typing yumyums and verify that word is not in the autocomplete list reader mode visit open any article verify the reader mode icon is shown in the url bar verify tapping on the reader mode icon opens the article in reader mode edit reader mode settings and open different pages in reader mode and verify if the setting is retained across each article history on youtube com thestar com or any other site using push state nav navigate the site and verify history is added also note if the progress bar activates and shows progress settings clear private data and clear all check history is cleared and top sites are cleared shields settings enable all switches in settings and visit a site and disable block scripts kill and relaunch app and verify if the site shield settings are retained site hacks test sub page loads a video and you can play it downloads test that you can save an image from a site fullscreen test that entering full screen works and pressing restore to go back exits full screen youtube com gestures test zoom in out gestures work test that navigating to a different origin resets the zoom swipe back and forward to navigate verify this works as expected password managers test tapping on on the slide out keyboard launches app and able to select the stored credentials test tapping on bitwarden password manager in the autofill field launches the app and autofills the stored data sync ensure you are able to scan the qr code and sync with laptop ensure the bookmarks from laptop shows up on the mobile after sync completes add a bookmark on mobile and check if it gets synced to the laptop bravery settings check that https everywhere works by loading turning https everywhere off and shields off both disable the redirect to check that block ad and unblock ad works on check that toggling to blocking and allow ads works as expected test that clicking through a cert error in works test that safe browsing works turning safe browsing off and shields off both disable safe browsing for enable block script globally from settings visit nothing should load tap on shields and disable block script page should load properly test that preferences default bravery settings take effect on pages with no site settings test that turning on fingerprinting protection in preferences shows fingerprints blocked at test that turning it off in the bravery menu shows fingerprints blocked test that party storage results are blank at when party cookies are blocked test that audio fingerprint is blocked at when fingerprinting protection is on content tests go to and click on the twitter icon on the top right test that context menus work in the new twitter tab load twitter and click on a tweet so the popup div shows click to dismiss and repeat with another div make sure it shows go to and make sure that the password can be saved make sure the saved password is auto populated when you visit the site again open an email on or inbox google com and click on a link make sure it works test that pdf is loaded at test that shows up as grey not red no mixed content scripts are run test that news google com sites open in a new tab due to target being blank top sites view long press on top sites to get to deletion mode and delete a top site note this will stop that site from showing up again on top sites so you may not want to do this a site you want to keep there background start loading a page background the app wait sec then bring to front ensure splash screen is not shown session storage test that tabs restore when closed including active tab | 1 |
68,000 | 9,108,023,602 | IssuesEvent | 2019-02-21 07:08:27 | KaTeX/KaTeX | https://api.github.com/repos/KaTeX/KaTeX | closed | Broken link on docs page | bug documentation | The link to the supported table on supported.md: https://katex.org/docs/supported.html is broken.
Thanks for all the great work everyone, KaTeX is amazing! | 1.0 | Broken link on docs page - The link to the supported table on supported.md: https://katex.org/docs/supported.html is broken.
Thanks for all the great work everyone, KaTeX is amazing! | non_test | broken link on docs page the link to the supported table on supported md is broken thanks for all the great work everyone katex is amazing | 0 |
197,475 | 14,926,880,864 | IssuesEvent | 2021-01-24 13:22:17 | self-xdsd/todo-finder-cli | https://api.github.com/repos/self-xdsd/todo-finder-cli | closed | RtImagesITCase.java: Add integration tests for fil... | 30 min puzzle test | The puzzle ``1194770182`` originating from #153 has to be resolved:
https://github.com/self-xdsd/todo-finder-cli/blob/292df3dc71fcdabb704b4ffaa1921fa65cd8cbc9/src/test/resources/RtImagesITCase.java#L42-L42
"Add integration tests for filters.".
Estimation is ``30 minutes``.
If you have any technical questions, don't ask me, I won't be able to help. Open new issues instead. | 1.0 | RtImagesITCase.java: Add integration tests for fil... - The puzzle ``1194770182`` originating from #153 has to be resolved:
https://github.com/self-xdsd/todo-finder-cli/blob/292df3dc71fcdabb704b4ffaa1921fa65cd8cbc9/src/test/resources/RtImagesITCase.java#L42-L42
"Add integration tests for filters.".
Estimation is ``30 minutes``.
If you have any technical questions, don't ask me, I won't be able to help. Open new issues instead. | test | rtimagesitcase java add integration tests for fil the puzzle originating from has to be resolved add integration tests for filters estimation is minutes if you have any technical questions don t ask me i won t be able to help open new issues instead | 1 |
53,191 | 22,674,779,797 | IssuesEvent | 2022-07-04 02:27:16 | filecoin-project/venus | https://api.github.com/repos/filecoin-project/venus | closed | [venus-docker] 在 run in one script 中 ,将snapshot镜像改为可选 | venus BU-chain-service | - [x] update comopse file in venus https://github.com/filecoin-project/venus/pull/5015
- [x] fix docker compose script https://github.com/filecoin-project/venus-docs/pull/329 | 1.0 | [venus-docker] 在 run in one script 中 ,将snapshot镜像改为可选 - - [x] update comopse file in venus https://github.com/filecoin-project/venus/pull/5015
- [x] fix docker compose script https://github.com/filecoin-project/venus-docs/pull/329 | non_test | 在 run in one script 中 ,将snapshot镜像改为可选 update comopse file in venus fix docker compose script | 0 |
274,475 | 23,841,690,652 | IssuesEvent | 2022-09-06 10:46:47 | apache/shardingsphere | https://api.github.com/repos/apache/shardingsphere | closed | Add more unit test for AlterViewStatementHandler | in: test project: OSD2022 | Hi community,
This issue is for https://github.com/apache/shardingsphere/issues/20305.
## Aim
Add more unit tests for `AlterViewStatementHandler` to test its public functions to improve unit test coverage.
Unit test coverage can be viewed at: https://app.codecov.io/gh/apache/shardingsphere/blobs/master/shardingsphere-sql-parser/shardingsphere-sql-parser-statement/src/main/java/org/apache/shardingsphere/sql/parser/sql/dialect/handler/ddl/AlterViewStatementHandler.java
## Basic Qualifications
- Java
- Maven
- Junit
| 1.0 | Add more unit test for AlterViewStatementHandler - Hi community,
This issue is for https://github.com/apache/shardingsphere/issues/20305.
## Aim
Add more unit tests for `AlterViewStatementHandler` to test its public functions to improve unit test coverage.
Unit test coverage can be viewed at: https://app.codecov.io/gh/apache/shardingsphere/blobs/master/shardingsphere-sql-parser/shardingsphere-sql-parser-statement/src/main/java/org/apache/shardingsphere/sql/parser/sql/dialect/handler/ddl/AlterViewStatementHandler.java
## Basic Qualifications
- Java
- Maven
- Junit
| test | add more unit test for alterviewstatementhandler hi community this issue is for aim add more unit tests for alterviewstatementhandler to test its public functions to improve unit test coverage unit test coverage can be viewed at basic qualifications java maven junit | 1 |
140,788 | 11,361,112,634 | IssuesEvent | 2020-01-26 12:44:25 | php-coder/mystamps | https://api.github.com/repos/php-coder/mystamps | closed | Suppress htmlunit log messages in RobotFramework output | area/integration tests area/logging complexity/hard | We need to find a way of how to configure robotframework/htmlunit to disable these logging messages.
See for details: https://github.com/MarkusBernhardt/robotframework-selenium2library-java/issues/85 and https://github.com/robotframework/MavenPlugin/issues/65 | 1.0 | Suppress htmlunit log messages in RobotFramework output - We need to find a way of how to configure robotframework/htmlunit to disable these logging messages.
See for details: https://github.com/MarkusBernhardt/robotframework-selenium2library-java/issues/85 and https://github.com/robotframework/MavenPlugin/issues/65 | test | suppress htmlunit log messages in robotframework output we need to find a way of how to configure robotframework htmlunit to disable these logging messages see for details and | 1 |
376,840 | 26,219,888,443 | IssuesEvent | 2023-01-04 14:04:57 | galasa-dev/projectmanagement | https://api.github.com/repos/galasa-dev/projectmanagement | closed | Documentation to announce release 0.25.0 | documentation |
As a user of Galasa I want to know what is in release 0.25.0
- Release Notes update, include new features and functions and documentation improvements
- Update references to 0.25.0 from 0.24.0 where required eg in code snippets, landing page
- Check that changes are published correctly and that the DfG jar file is created
- Complete the documentation checklist for DfG | 1.0 | Documentation to announce release 0.25.0 -
As a user of Galasa I want to know what is in release 0.25.0
- Release Notes update, include new features and functions and documentation improvements
- Update references to 0.25.0 from 0.24.0 where required eg in code snippets, landing page
- Check that changes are published correctly and that the DfG jar file is created
- Complete the documentation checklist for DfG | non_test | documentation to announce release as a user of galasa i want to know what is in release release notes update include new features and functions and documentation improvements update references to from where required eg in code snippets landing page check that changes are published correctly and that the dfg jar file is created complete the documentation checklist for dfg | 0 |
290,379 | 25,061,225,234 | IssuesEvent | 2022-11-07 02:00:43 | brave/brave-browser | https://api.github.com/repos/brave/brave-browser | closed | Should not scroll Brave News feed in background when `Customize Dashboard` dialog is focused | bug QA/Yes release-notes/exclude QA/Test-Plan-Specified OS/Desktop feature/brave-news | <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description
<!--Provide a brief description of the issue-->
Should not scroll Brave News feed in background when `Customize Dashboard` dialog is focused (credit to @srirambv for the find 👍 )
## Steps to Reproduce
<!--Please add a series of steps to reproduce the issue-->
1. install `1.47.19`
2. launch Brave
3. open a new-tab page
4. set `brave://flags/#brave-news-v2` to `Enabled`
5. click on `Relaunch`
6. click on `Customize`
7. click on `Turn on Brave News`
8. via `Follow`, add a bunch of sources and/or channels (so there's a need to scroll the list in the `Following` pane)
9. hover the mouse/pointer over the `Following` pane
10. scroll using scroll wheel on mouse/trackpad, etc.
11. when you reach the end of the list, keep scrolling
## Actual result:
<!--Please add screenshots if needed-->
After scrolling the `Following` pane's list, you'll start scrolling the Brave News feed in the background
## Expected result:
Should probably *not* scroll the background, too, when a parented-to-current-window dialog is focused?
## Reproduces how often:
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
100%
## Brave version (brave://version info)
<!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details-->
## Version/Channel Information:
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
- Can you reproduce this issue with the current release? `No`
- Can you reproduce this issue with the beta channel? `Yes`
- Can you reproduce this issue with the nightly channel? `Yes`
cc @srirambv @mattmcalister @rebron @fallaciousreasoning @petemill | 1.0 | Should not scroll Brave News feed in background when `Customize Dashboard` dialog is focused - <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description
<!--Provide a brief description of the issue-->
Should not scroll Brave News feed in background when `Customize Dashboard` dialog is focused (credit to @srirambv for the find 👍 )
## Steps to Reproduce
<!--Please add a series of steps to reproduce the issue-->
1. install `1.47.19`
2. launch Brave
3. open a new-tab page
4. set `brave://flags/#brave-news-v2` to `Enabled`
5. click on `Relaunch`
6. click on `Customize`
7. click on `Turn on Brave News`
8. via `Follow`, add a bunch of sources and/or channels (so there's a need to scroll the list in the `Following` pane)
9. hover the mouse/pointer over the `Following` pane
10. scroll using scroll wheel on mouse/trackpad, etc.
11. when you reach the end of the list, keep scrolling
## Actual result:
<!--Please add screenshots if needed-->
After scrolling the `Following` pane's list, you'll start scrolling the Brave News feed in the background
## Expected result:
Should probably *not* scroll the background, too, when a parented-to-current-window dialog is focused?
## Reproduces how often:
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
100%
## Brave version (brave://version info)
<!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details-->
## Version/Channel Information:
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
- Can you reproduce this issue with the current release? `No`
- Can you reproduce this issue with the beta channel? `Yes`
- Can you reproduce this issue with the nightly channel? `Yes`
cc @srirambv @mattmcalister @rebron @fallaciousreasoning @petemill | test | should not scroll brave news feed in background when customize dashboard dialog is focused have you searched for similar issues before submitting this issue please check the open issues and add a note before logging a new issue please use the template below to provide information about the issue insufficient info will get the issue closed it will only be reopened after sufficient info is provided description should not scroll brave news feed in background when customize dashboard dialog is focused credit to srirambv for the find 👍 steps to reproduce install launch brave open a new tab page set brave flags brave news to enabled click on relaunch click on customize click on turn on brave news via follow add a bunch of sources and or channels so there s a need to scroll the list in the following pane hover the mouse pointer over the following pane scroll using scroll wheel on mouse trackpad etc when you reach the end of the list keep scrolling actual result after scrolling the following pane s list you ll start scrolling the brave news feed in the background expected result should probably not scroll the background too when a parented to current window dialog is focused reproduces how often brave version brave version info version channel information can you reproduce this issue with the current release no can you reproduce this issue with the beta channel yes can you reproduce this issue with the nightly channel yes cc srirambv mattmcalister rebron fallaciousreasoning petemill | 1 |
80,679 | 7,753,627,383 | IssuesEvent | 2018-05-31 01:48:37 | dotnet/corefxlab | https://api.github.com/repos/dotnet/corefxlab | opened | Cleanup Json PerfSmokeTests and port to BDN | area-System.Text.Json test-enhancement | - Remove flaky aspects of the tests (that using GC APis to measure allocations).
- Port the performance measurement parts to use BDN.
https://github.com/dotnet/corefxlab/blob/89ea88c64f2dabe362c0a3df21d07313542c1d80/tests/System.Text.JsonLab.Tests/PerfSmokeTests.cs#L18 | 1.0 | Cleanup Json PerfSmokeTests and port to BDN - - Remove flaky aspects of the tests (that using GC APis to measure allocations).
- Port the performance measurement parts to use BDN.
https://github.com/dotnet/corefxlab/blob/89ea88c64f2dabe362c0a3df21d07313542c1d80/tests/System.Text.JsonLab.Tests/PerfSmokeTests.cs#L18 | test | cleanup json perfsmoketests and port to bdn remove flaky aspects of the tests that using gc apis to measure allocations port the performance measurement parts to use bdn | 1 |
31,913 | 4,728,810,434 | IssuesEvent | 2016-10-18 16:56:56 | 18F/doi-extractives-data | https://api.github.com/repos/18F/doi-extractives-data | closed | Content: Schedule C info | workflow:testing | Moved over from #905: p.74 of the Executive Summary includes bea schedule c info; where does this belong on the site? | 1.0 | Content: Schedule C info - Moved over from #905: p.74 of the Executive Summary includes bea schedule c info; where does this belong on the site? | test | content schedule c info moved over from p of the executive summary includes bea schedule c info where does this belong on the site | 1 |
45,101 | 13,103,733,836 | IssuesEvent | 2020-08-04 09:04:02 | Lyasen/Escalade | https://api.github.com/repos/Lyasen/Escalade | closed | CVE-2019-1010266 (Medium) detected in lodash-2.4.2.tgz | security vulnerability | ## CVE-2019-1010266 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-2.4.2.tgz</b></p></summary>
<p>A utility library delivering consistency, customization, performance, & extras.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz">https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/Escalade/bootstrap/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/Escalade/bootstrap/node_modules/form-data2/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- broken-link-checker-0.7.8.tgz (Root Library)
- bhttp-1.2.4.tgz
- :x: **lodash-2.4.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Lyasen/Escalade/commit/829eb68c09fb38b1de18b866575edd871aa14b5b">829eb68c09fb38b1de18b866575edd871aa14b5b</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>
lodash prior to 4.17.11 is affected by: CWE-400: Uncontrolled Resource Consumption. The impact is: Denial of service. The component is: Date handler. The attack vector is: Attacker provides very long strings, which the library attempts to match using a regular expression. The fixed version is: 4.17.11.
<p>Publish Date: 2019-07-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-1010266>CVE-2019-1010266</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: Low
- 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-2019-1010266">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266</a></p>
<p>Release Date: 2019-07-17</p>
<p>Fix Resolution: 4.17.11</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-2019-1010266 (Medium) detected in lodash-2.4.2.tgz - ## CVE-2019-1010266 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-2.4.2.tgz</b></p></summary>
<p>A utility library delivering consistency, customization, performance, & extras.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz">https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/Escalade/bootstrap/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/Escalade/bootstrap/node_modules/form-data2/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- broken-link-checker-0.7.8.tgz (Root Library)
- bhttp-1.2.4.tgz
- :x: **lodash-2.4.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Lyasen/Escalade/commit/829eb68c09fb38b1de18b866575edd871aa14b5b">829eb68c09fb38b1de18b866575edd871aa14b5b</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>
lodash prior to 4.17.11 is affected by: CWE-400: Uncontrolled Resource Consumption. The impact is: Denial of service. The component is: Date handler. The attack vector is: Attacker provides very long strings, which the library attempts to match using a regular expression. The fixed version is: 4.17.11.
<p>Publish Date: 2019-07-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-1010266>CVE-2019-1010266</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: Low
- 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-2019-1010266">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266</a></p>
<p>Release Date: 2019-07-17</p>
<p>Fix Resolution: 4.17.11</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve medium detected in lodash tgz cve medium severity vulnerability vulnerable library lodash tgz a utility library delivering consistency customization performance extras library home page a href path to dependency file tmp ws scm escalade bootstrap package json path to vulnerable library tmp ws scm escalade bootstrap node modules form node modules lodash package json dependency hierarchy broken link checker tgz root library bhttp tgz x lodash tgz vulnerable library found in head commit a href vulnerability details lodash prior to is affected by cwe uncontrolled resource consumption the impact is denial of service the component is date handler the attack vector is attacker provides very long strings which the library attempts to match using a regular expression the fixed version is publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low 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 |
5,275 | 3,551,034,544 | IssuesEvent | 2016-01-21 00:50:09 | MNoya/DotaCraft | https://api.github.com/repos/MNoya/DotaCraft | closed | Revived(possibly created) heroes do not go to altar rallypoint | abilities bug buildings | Heroes that are revived (possibly created) do not go towards the rally point set by the altar. | 1.0 | Revived(possibly created) heroes do not go to altar rallypoint - Heroes that are revived (possibly created) do not go towards the rally point set by the altar. | non_test | revived possibly created heroes do not go to altar rallypoint heroes that are revived possibly created do not go towards the rally point set by the altar | 0 |
72,175 | 9,558,037,875 | IssuesEvent | 2019-05-03 13:18:55 | SwissDataScienceCenter/renku | https://api.github.com/repos/SwissDataScienceCenter/renku | closed | update first-steps documentation | documentation | Natalie has gone through the first-steps tutorial. These are her comments:
---
1. General note: maybe it would be nice to link to a general data science project pipeline tutorial of sorts at the beginning? Or some useful resources for setting up a general working environment?
2. Launch JupyterLab button in top right is missing (instructions are misleading)
3. No info about the (default) settings to launch JupyterLab is included in the instructions - maybe some recommended configurations depending on scope of project?
4. "Transition" loading page for JupyterLab is not so friendly (was wondering if it was loading or if it hung up?)
5. Small detail, but this instruction should have a comma after the first clause, otherwise kind of confusing: "To start working with the bicycle data, we have already created a sample notebook that does some data cleaning and visualization."
6. Before the section "Reuse your work", I got the message: "Error: The repository is dirty. Please use the "git" command to clean it." Maybe add instructions/tips to regularly commit and push changes to keep the repository clean?
7. A GNU screen comes up sometimes if you don't include message with git commit - maybe link to a tutorial for this?
8. After running "renku status", I get this message which differs from output instructions:
```
/home/jovyan/.local/pipx/venvs/renku/lib/python3.6/site-packages/renku/models/provenance/activities.py:597: YAMLLoadWarning:
*** Calling yaml.load() without Loader=... is deprecated.
*** The default Loader is unsafe.
*** Please read https://msg.pyyaml.org/load for full details.
process = CWLClass.from_cwl(yaml.load(data))
/home/jovyan/.local/pipx/venvs/renku/lib/python3.6/site-packages/renku/models/provenance/activities.py:597: YAMLLoadWarning:
*** Calling yaml.load() without Loader=... is deprecated.
*** The default Loader is unsafe.
*** Please read https://msg.pyyaml.org/load for full details.
process = CWLClass.from_cwl(yaml.load(data))
On branch master
All files were generated from the latest inputs.
``` | 1.0 | update first-steps documentation - Natalie has gone through the first-steps tutorial. These are her comments:
---
1. General note: maybe it would be nice to link to a general data science project pipeline tutorial of sorts at the beginning? Or some useful resources for setting up a general working environment?
2. Launch JupyterLab button in top right is missing (instructions are misleading)
3. No info about the (default) settings to launch JupyterLab is included in the instructions - maybe some recommended configurations depending on scope of project?
4. "Transition" loading page for JupyterLab is not so friendly (was wondering if it was loading or if it hung up?)
5. Small detail, but this instruction should have a comma after the first clause, otherwise kind of confusing: "To start working with the bicycle data, we have already created a sample notebook that does some data cleaning and visualization."
6. Before the section "Reuse your work", I got the message: "Error: The repository is dirty. Please use the "git" command to clean it." Maybe add instructions/tips to regularly commit and push changes to keep the repository clean?
7. A GNU screen comes up sometimes if you don't include message with git commit - maybe link to a tutorial for this?
8. After running "renku status", I get this message which differs from output instructions:
```
/home/jovyan/.local/pipx/venvs/renku/lib/python3.6/site-packages/renku/models/provenance/activities.py:597: YAMLLoadWarning:
*** Calling yaml.load() without Loader=... is deprecated.
*** The default Loader is unsafe.
*** Please read https://msg.pyyaml.org/load for full details.
process = CWLClass.from_cwl(yaml.load(data))
/home/jovyan/.local/pipx/venvs/renku/lib/python3.6/site-packages/renku/models/provenance/activities.py:597: YAMLLoadWarning:
*** Calling yaml.load() without Loader=... is deprecated.
*** The default Loader is unsafe.
*** Please read https://msg.pyyaml.org/load for full details.
process = CWLClass.from_cwl(yaml.load(data))
On branch master
All files were generated from the latest inputs.
``` | non_test | update first steps documentation natalie has gone through the first steps tutorial these are her comments general note maybe it would be nice to link to a general data science project pipeline tutorial of sorts at the beginning or some useful resources for setting up a general working environment launch jupyterlab button in top right is missing instructions are misleading no info about the default settings to launch jupyterlab is included in the instructions maybe some recommended configurations depending on scope of project transition loading page for jupyterlab is not so friendly was wondering if it was loading or if it hung up small detail but this instruction should have a comma after the first clause otherwise kind of confusing to start working with the bicycle data we have already created a sample notebook that does some data cleaning and visualization before the section reuse your work i got the message error the repository is dirty please use the git command to clean it maybe add instructions tips to regularly commit and push changes to keep the repository clean a gnu screen comes up sometimes if you don t include message with git commit maybe link to a tutorial for this after running renku status i get this message which differs from output instructions home jovyan local pipx venvs renku lib site packages renku models provenance activities py yamlloadwarning calling yaml load without loader is deprecated the default loader is unsafe please read for full details process cwlclass from cwl yaml load data home jovyan local pipx venvs renku lib site packages renku models provenance activities py yamlloadwarning calling yaml load without loader is deprecated the default loader is unsafe please read for full details process cwlclass from cwl yaml load data on branch master all files were generated from the latest inputs | 0 |
398,103 | 11,737,876,883 | IssuesEvent | 2020-03-11 15:15:46 | AY1920S2-CS2103-T09-4/main | https://api.github.com/repos/AY1920S2-CS2103-T09-4/main | closed | Replace `Address Book 3` attributes with `FitHelper` attributes | priority.High | * Finally erase the previous models, commands, and parsers
* plug `FitHelper` attributes into the logic | 1.0 | Replace `Address Book 3` attributes with `FitHelper` attributes - * Finally erase the previous models, commands, and parsers
* plug `FitHelper` attributes into the logic | non_test | replace address book attributes with fithelper attributes finally erase the previous models commands and parsers plug fithelper attributes into the logic | 0 |
351,714 | 10,522,561,573 | IssuesEvent | 2019-09-30 09:01:03 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.washingtonpost.com - site is not usable | browser-fenix engine-gecko priority-important | <!-- @browser: Firefox Mobile 70.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:70.0) Gecko/70.0 Firefox/70.0 -->
<!-- @reported_with: -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.washingtonpost.com/sports/2019/09/25/nfls-search-next-sean-mcvay-has-created-new-role-head-coach-defense/
**Browser / Version**: Firefox Mobile 70.0
**Operating System**: Android
**Tested Another Browser**: Yes
**Problem type**: Site is not usable
**Description**: can't read articles with tracking protection on
**Steps to Reproduce**:
Loaded an article
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
Submitted in the name of `@uvayankee`
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.washingtonpost.com - site is not usable - <!-- @browser: Firefox Mobile 70.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:70.0) Gecko/70.0 Firefox/70.0 -->
<!-- @reported_with: -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.washingtonpost.com/sports/2019/09/25/nfls-search-next-sean-mcvay-has-created-new-role-head-coach-defense/
**Browser / Version**: Firefox Mobile 70.0
**Operating System**: Android
**Tested Another Browser**: Yes
**Problem type**: Site is not usable
**Description**: can't read articles with tracking protection on
**Steps to Reproduce**:
Loaded an article
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
Submitted in the name of `@uvayankee`
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_test | site is not usable url browser version firefox mobile operating system android tested another browser yes problem type site is not usable description can t read articles with tracking protection on steps to reproduce loaded an article browser configuration none submitted in the name of uvayankee from with ❤️ | 0 |
56,407 | 14,078,428,734 | IssuesEvent | 2020-11-04 13:33:38 | themagicalmammal/android_kernel_samsung_j7xlte | https://api.github.com/repos/themagicalmammal/android_kernel_samsung_j7xlte | opened | CVE-2016-2143 (High) detected in linuxv3.10 | security vulnerability | ## CVE-2016-2143 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxv3.10</b></p></summary>
<p>
<p>Linux kernel source tree</p>
<p>Library home page: <a href=https://github.com/torvalds/linux.git>https://github.com/torvalds/linux.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/themagicalmammal/android_kernel_samsung_j7xlte/commit/439d18b77a020411b95770ba08a9229eed466cde">439d18b77a020411b95770ba08a9229eed466cde</a></p>
<p>Found in base branch: <b>xsentinel-1.6-clean</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (3)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>android_kernel_samsung_j7xlte/arch/s390/include/asm/mmu_context.h</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>android_kernel_samsung_j7xlte/arch/s390/include/asm/mmu_context.h</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>android_kernel_samsung_j7xlte/arch/s390/include/asm/mmu_context.h</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The fork implementation in the Linux kernel before 4.5 on s390 platforms mishandles the case of four page-table levels, which allows local users to cause a denial of service (system crash) or possibly have unspecified other impact via a crafted application, related to arch/s390/include/asm/mmu_context.h and arch/s390/include/asm/pgalloc.h.
<p>Publish Date: 2016-04-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-2143>CVE-2016-2143</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: 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://nvd.nist.gov/vuln/detail/CVE-2016-2143">https://nvd.nist.gov/vuln/detail/CVE-2016-2143</a></p>
<p>Release Date: 2016-04-27</p>
<p>Fix Resolution: 4.5</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-2016-2143 (High) detected in linuxv3.10 - ## CVE-2016-2143 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxv3.10</b></p></summary>
<p>
<p>Linux kernel source tree</p>
<p>Library home page: <a href=https://github.com/torvalds/linux.git>https://github.com/torvalds/linux.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/themagicalmammal/android_kernel_samsung_j7xlte/commit/439d18b77a020411b95770ba08a9229eed466cde">439d18b77a020411b95770ba08a9229eed466cde</a></p>
<p>Found in base branch: <b>xsentinel-1.6-clean</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (3)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>android_kernel_samsung_j7xlte/arch/s390/include/asm/mmu_context.h</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>android_kernel_samsung_j7xlte/arch/s390/include/asm/mmu_context.h</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>android_kernel_samsung_j7xlte/arch/s390/include/asm/mmu_context.h</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The fork implementation in the Linux kernel before 4.5 on s390 platforms mishandles the case of four page-table levels, which allows local users to cause a denial of service (system crash) or possibly have unspecified other impact via a crafted application, related to arch/s390/include/asm/mmu_context.h and arch/s390/include/asm/pgalloc.h.
<p>Publish Date: 2016-04-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-2143>CVE-2016-2143</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: 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://nvd.nist.gov/vuln/detail/CVE-2016-2143">https://nvd.nist.gov/vuln/detail/CVE-2016-2143</a></p>
<p>Release Date: 2016-04-27</p>
<p>Fix Resolution: 4.5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve high detected in cve high severity vulnerability vulnerable library linux kernel source tree library home page a href found in head commit a href found in base branch xsentinel clean vulnerable source files android kernel samsung arch include asm mmu context h android kernel samsung arch include asm mmu context h android kernel samsung arch include asm mmu context h vulnerability details the fork implementation in the linux kernel before on platforms mishandles the case of four page table levels which allows local users to cause a denial of service system crash or possibly have unspecified other impact via a crafted application related to arch include asm mmu context h and arch include asm pgalloc h publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact 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 step up your open source security game with whitesource | 0 |
540,638 | 15,815,108,489 | IssuesEvent | 2021-04-05 10:39:46 | WarEmu/WarBugs | https://api.github.com/repos/WarEmu/WarBugs | closed | Ellyrion, possible exploit. | High Priority Map/Area | 

If u climb the small rock and move further u get system message (The gods are angry..) and killed eventually. After that u respawn in order wc in unreachable for 55 champs defenders spot, which can lead to possible exploit for destro players. Coordinates 0, 11150. | 1.0 | Ellyrion, possible exploit. - 

If u climb the small rock and move further u get system message (The gods are angry..) and killed eventually. After that u respawn in order wc in unreachable for 55 champs defenders spot, which can lead to possible exploit for destro players. Coordinates 0, 11150. | non_test | ellyrion possible exploit if u climb the small rock and move further u get system message the gods are angry and killed eventually after that u respawn in order wc in unreachable for champs defenders spot which can lead to possible exploit for destro players coordinates | 0 |
312,829 | 26,880,499,081 | IssuesEvent | 2023-02-05 15:25:39 | spring-projects/spring-shell | https://api.github.com/repos/spring-projects/spring-shell | closed | Test terminal should support setting initial dimension | type/enhancement area/tests for/backport branch/3.0.x | When using `ShellTest` its emulation should support setting initial terminal dimensions which currently defaults to width 80 and height 24. While dimensions itself doesn't matter it would make testing easier as you'd be able to set width wider so that you can assert line(s) text as is without those spanning to multiple lines.
Spanning text as a separate lines is how default behaviour in jediterm works as it doesn't have a concept of a line span. | 1.0 | Test terminal should support setting initial dimension - When using `ShellTest` its emulation should support setting initial terminal dimensions which currently defaults to width 80 and height 24. While dimensions itself doesn't matter it would make testing easier as you'd be able to set width wider so that you can assert line(s) text as is without those spanning to multiple lines.
Spanning text as a separate lines is how default behaviour in jediterm works as it doesn't have a concept of a line span. | test | test terminal should support setting initial dimension when using shelltest its emulation should support setting initial terminal dimensions which currently defaults to width and height while dimensions itself doesn t matter it would make testing easier as you d be able to set width wider so that you can assert line s text as is without those spanning to multiple lines spanning text as a separate lines is how default behaviour in jediterm works as it doesn t have a concept of a line span | 1 |
204,665 | 15,526,658,188 | IssuesEvent | 2021-03-13 02:08:21 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | roachtest: tpccbench/nodes=3/cpu=16 failed | C-test-failure O-roachtest O-robot branch-master release-blocker | [(roachtest).tpccbench/nodes=3/cpu=16 failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615395&tab=buildLog) on [master@d86781c07065421f4a4d8bf5d988900ab07fdce5](https://github.com/cockroachdb/cockroach/commits/d86781c07065421f4a4d8bf5d988900ab07fdce5):
```
Error types: (1) *main.withCommandDetails (2) *exec.ExitError
cluster.go:1666,context.go:140,cluster.go:1655,test_runner.go:848: dead node detection: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod monitor teamcity-2615395-1611644173-19-n4cpu16 --oneshot --ignore-empty-nodes: exit status 1 4: skipped
3: dead
2: dead
1: 12227
Error: UNCLASSIFIED_PROBLEM: 3: dead
(1) UNCLASSIFIED_PROBLEM
Wraps: (2) secondary error attachment
| 2: dead
| (1) attached stack trace
| -- stack trace:
| | main.glob..func14
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| | main.wrap.func1
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| | github.com/spf13/cobra.(*Command).execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| | github.com/spf13/cobra.(*Command).ExecuteC
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| | github.com/spf13/cobra.(*Command).Execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| | main.main
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| | runtime.main
| | /usr/local/go/src/runtime/proc.go:204
| | runtime.goexit
| | /usr/local/go/src/runtime/asm_amd64.s:1374
| Wraps: (2) 2: dead
| Error types: (1) *withstack.withStack (2) *errutil.leafError
Wraps: (3) attached stack trace
-- stack trace:
| main.glob..func14
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| main.wrap.func1
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| github.com/spf13/cobra.(*Command).execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| github.com/spf13/cobra.(*Command).ExecuteC
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| github.com/spf13/cobra.(*Command).Execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| main.main
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| runtime.main
| /usr/local/go/src/runtime/proc.go:204
| runtime.goexit
| /usr/local/go/src/runtime/asm_amd64.s:1374
Wraps: (4) 3: dead
Error types: (1) errors.Unclassified (2) *secondary.withSecondaryError (3) *withstack.withStack (4) *errutil.leafError
```
<details><summary>More</summary><p>
Artifacts: [/tpccbench/nodes=3/cpu=16](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615395&tab=artifacts#/tpccbench/nodes=3/cpu=16)
Related:
- #55802 roachtest: tpccbench/nodes=3/cpu=16 failed [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [T-bulkio](https://api.github.com/repos/cockroachdb/cockroach/labels/T-bulkio) [branch-release-20.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.1)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpccbench%2Fnodes%3D3%2Fcpu%3D16.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| 2.0 | roachtest: tpccbench/nodes=3/cpu=16 failed - [(roachtest).tpccbench/nodes=3/cpu=16 failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615395&tab=buildLog) on [master@d86781c07065421f4a4d8bf5d988900ab07fdce5](https://github.com/cockroachdb/cockroach/commits/d86781c07065421f4a4d8bf5d988900ab07fdce5):
```
Error types: (1) *main.withCommandDetails (2) *exec.ExitError
cluster.go:1666,context.go:140,cluster.go:1655,test_runner.go:848: dead node detection: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod monitor teamcity-2615395-1611644173-19-n4cpu16 --oneshot --ignore-empty-nodes: exit status 1 4: skipped
3: dead
2: dead
1: 12227
Error: UNCLASSIFIED_PROBLEM: 3: dead
(1) UNCLASSIFIED_PROBLEM
Wraps: (2) secondary error attachment
| 2: dead
| (1) attached stack trace
| -- stack trace:
| | main.glob..func14
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| | main.wrap.func1
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| | github.com/spf13/cobra.(*Command).execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| | github.com/spf13/cobra.(*Command).ExecuteC
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| | github.com/spf13/cobra.(*Command).Execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| | main.main
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| | runtime.main
| | /usr/local/go/src/runtime/proc.go:204
| | runtime.goexit
| | /usr/local/go/src/runtime/asm_amd64.s:1374
| Wraps: (2) 2: dead
| Error types: (1) *withstack.withStack (2) *errutil.leafError
Wraps: (3) attached stack trace
-- stack trace:
| main.glob..func14
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| main.wrap.func1
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| github.com/spf13/cobra.(*Command).execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| github.com/spf13/cobra.(*Command).ExecuteC
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| github.com/spf13/cobra.(*Command).Execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| main.main
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| runtime.main
| /usr/local/go/src/runtime/proc.go:204
| runtime.goexit
| /usr/local/go/src/runtime/asm_amd64.s:1374
Wraps: (4) 3: dead
Error types: (1) errors.Unclassified (2) *secondary.withSecondaryError (3) *withstack.withStack (4) *errutil.leafError
```
<details><summary>More</summary><p>
Artifacts: [/tpccbench/nodes=3/cpu=16](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615395&tab=artifacts#/tpccbench/nodes=3/cpu=16)
Related:
- #55802 roachtest: tpccbench/nodes=3/cpu=16 failed [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [T-bulkio](https://api.github.com/repos/cockroachdb/cockroach/labels/T-bulkio) [branch-release-20.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.1)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpccbench%2Fnodes%3D3%2Fcpu%3D16.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| test | roachtest tpccbench nodes cpu failed on error types main withcommanddetails exec exiterror cluster go context go cluster go test runner go dead node detection home agent work go src github com cockroachdb cockroach bin roachprod monitor teamcity oneshot ignore empty nodes exit status skipped dead dead error unclassified problem dead unclassified problem wraps secondary error attachment dead attached stack trace stack trace main glob home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go main wrap home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command executec home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go main main home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go runtime main usr local go src runtime proc go runtime goexit usr local go src runtime asm s wraps dead error types withstack withstack errutil leaferror wraps attached stack trace stack trace main glob home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go main wrap home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command executec home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go main main home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go runtime main usr local go src runtime proc go runtime goexit usr local go src runtime asm s wraps dead error types errors unclassified secondary withsecondaryerror withstack withstack errutil leaferror more artifacts related roachtest tpccbench nodes cpu failed powered by | 1 |
138,100 | 18,771,456,950 | IssuesEvent | 2021-11-06 22:47:42 | samqws-marketing/box_mojito | https://api.github.com/repos/samqws-marketing/box_mojito | opened | CVE-2021-22118 (High) detected in spring-web-5.2.9.RELEASE.jar | security vulnerability | ## CVE-2021-22118 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-web-5.2.9.RELEASE.jar</b></p></summary>
<p>Spring Web</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: box_mojito/webapp/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,/home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,/home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,/home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-web-5.2.9.RELEASE.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/samqws-marketing/box_mojito/commit/65290aeb818102fa2443a637efdccebebfed1eb9">65290aeb818102fa2443a637efdccebebfed1eb9</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Spring Framework, versions 5.2.x prior to 5.2.15 and versions 5.3.x prior to 5.3.7, a WebFlux application is vulnerable to a privilege escalation: by (re)creating the temporary storage directory, a locally authenticated malicious user can read or modify files that have been uploaded to the WebFlux application, or overwrite arbitrary files with multipart request data.
<p>Publish Date: 2021-05-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-22118>CVE-2021-22118</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2021-22118">https://tanzu.vmware.com/security/cve-2021-22118</a></p>
<p>Release Date: 2021-05-27</p>
<p>Fix Resolution: org.springframework:spring-web:5.2.15,5.3.7</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-web","packageVersion":"5.2.9.RELEASE","packageFilePaths":["/webapp/pom.xml","/common/pom.xml","/cli/pom.xml","/mavenplugin/pom.xml","/restclient/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.springframework:spring-web:5.2.9.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-web:5.2.15,5.3.7"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-22118","vulnerabilityDetails":"In Spring Framework, versions 5.2.x prior to 5.2.15 and versions 5.3.x prior to 5.3.7, a WebFlux application is vulnerable to a privilege escalation: by (re)creating the temporary storage directory, a locally authenticated malicious user can read or modify files that have been uploaded to the WebFlux application, or overwrite arbitrary files with multipart request data.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-22118","cvss3Severity":"high","cvss3Score":"7.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> --> | True | CVE-2021-22118 (High) detected in spring-web-5.2.9.RELEASE.jar - ## CVE-2021-22118 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-web-5.2.9.RELEASE.jar</b></p></summary>
<p>Spring Web</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: box_mojito/webapp/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,/home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,/home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar,/home/wss-scanner/.m2/repository/org/springframework/spring-web/5.2.9.RELEASE/spring-web-5.2.9.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-web-5.2.9.RELEASE.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/samqws-marketing/box_mojito/commit/65290aeb818102fa2443a637efdccebebfed1eb9">65290aeb818102fa2443a637efdccebebfed1eb9</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Spring Framework, versions 5.2.x prior to 5.2.15 and versions 5.3.x prior to 5.3.7, a WebFlux application is vulnerable to a privilege escalation: by (re)creating the temporary storage directory, a locally authenticated malicious user can read or modify files that have been uploaded to the WebFlux application, or overwrite arbitrary files with multipart request data.
<p>Publish Date: 2021-05-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-22118>CVE-2021-22118</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2021-22118">https://tanzu.vmware.com/security/cve-2021-22118</a></p>
<p>Release Date: 2021-05-27</p>
<p>Fix Resolution: org.springframework:spring-web:5.2.15,5.3.7</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-web","packageVersion":"5.2.9.RELEASE","packageFilePaths":["/webapp/pom.xml","/common/pom.xml","/cli/pom.xml","/mavenplugin/pom.xml","/restclient/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.springframework:spring-web:5.2.9.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-web:5.2.15,5.3.7"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-22118","vulnerabilityDetails":"In Spring Framework, versions 5.2.x prior to 5.2.15 and versions 5.3.x prior to 5.3.7, a WebFlux application is vulnerable to a privilege escalation: by (re)creating the temporary storage directory, a locally authenticated malicious user can read or modify files that have been uploaded to the WebFlux application, or overwrite arbitrary files with multipart request data.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-22118","cvss3Severity":"high","cvss3Score":"7.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> --> | non_test | cve high detected in spring web release jar cve high severity vulnerability vulnerable library spring web release jar spring web library home page a href path to dependency file box mojito webapp pom xml path to vulnerable library home wss scanner repository org springframework spring web release spring web release jar repository org springframework spring web release spring web release jar home wss scanner repository org springframework spring web release spring web release jar home wss scanner repository org springframework spring web release spring web release jar home wss scanner repository org springframework spring web release spring web release jar dependency hierarchy x spring web release jar vulnerable library found in head commit a href found in base branch master vulnerability details in spring framework versions x prior to and versions x prior to a webflux application is vulnerable to a privilege escalation by re creating the temporary storage directory a locally authenticated malicious user can read or modify files that have been uploaded to the webflux application or overwrite arbitrary files with multipart request data publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring web check this box to open an automated fix pr isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree org springframework spring web release isminimumfixversionavailable true minimumfixversion org springframework spring web basebranches vulnerabilityidentifier cve vulnerabilitydetails in spring framework versions x prior to and versions x prior to a webflux application is vulnerable to a privilege escalation by re creating the temporary storage directory a locally authenticated malicious user can read or modify files that have been uploaded to the webflux application or overwrite arbitrary files with multipart request data vulnerabilityurl | 0 |
242,398 | 26,269,372,553 | IssuesEvent | 2023-01-06 15:32:55 | dmyers87/headerstrip | https://api.github.com/repos/dmyers87/headerstrip | opened | CVE-2022-0691 (High) detected in url-parse-1.4.1.tgz | security vulnerability | ## CVE-2022-0691 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>url-parse-1.4.1.tgz</b></p></summary>
<p>Small footprint URL parser that works seamlessly across Node.js and browser environments</p>
<p>Library home page: <a href="https://registry.npmjs.org/url-parse/-/url-parse-1.4.1.tgz">https://registry.npmjs.org/url-parse/-/url-parse-1.4.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/url-parse</p>
<p>
Dependency Hierarchy:
- react-3.4.8.tgz (Root Library)
- react-dev-utils-5.0.1.tgz
- sockjs-client-1.1.4.tgz
- :x: **url-parse-1.4.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/dmyers87/headerstrip/commit/8442716a2567dd4d8cfb426df6ecf4129181aacc">8442716a2567dd4d8cfb426df6ecf4129181aacc</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.9.
<p>Publish Date: 2022-02-21
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-0691>CVE-2022-0691</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</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: 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-2022-0691">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0691</a></p>
<p>Release Date: 2022-02-21</p>
<p>Fix Resolution (url-parse): 1.5.9</p>
<p>Direct dependency fix Resolution (@storybook/react): 3.4.10</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
| True | CVE-2022-0691 (High) detected in url-parse-1.4.1.tgz - ## CVE-2022-0691 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>url-parse-1.4.1.tgz</b></p></summary>
<p>Small footprint URL parser that works seamlessly across Node.js and browser environments</p>
<p>Library home page: <a href="https://registry.npmjs.org/url-parse/-/url-parse-1.4.1.tgz">https://registry.npmjs.org/url-parse/-/url-parse-1.4.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/url-parse</p>
<p>
Dependency Hierarchy:
- react-3.4.8.tgz (Root Library)
- react-dev-utils-5.0.1.tgz
- sockjs-client-1.1.4.tgz
- :x: **url-parse-1.4.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/dmyers87/headerstrip/commit/8442716a2567dd4d8cfb426df6ecf4129181aacc">8442716a2567dd4d8cfb426df6ecf4129181aacc</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.9.
<p>Publish Date: 2022-02-21
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-0691>CVE-2022-0691</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</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: 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-2022-0691">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0691</a></p>
<p>Release Date: 2022-02-21</p>
<p>Fix Resolution (url-parse): 1.5.9</p>
<p>Direct dependency fix Resolution (@storybook/react): 3.4.10</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
| non_test | cve high detected in url parse tgz cve high severity vulnerability vulnerable library url parse tgz small footprint url parser that works seamlessly across node js and browser environments library home page a href path to dependency file package json path to vulnerable library node modules url parse dependency hierarchy react tgz root library react dev utils tgz sockjs client tgz x url parse tgz vulnerable library found in head commit a href found in base branch master vulnerability details authorization bypass through user controlled key in npm url parse prior to publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact 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 url parse direct dependency fix resolution storybook react check this box to open an automated fix pr | 0 |
17,334 | 12,302,821,320 | IssuesEvent | 2020-05-11 17:37:27 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | reopened | TestWrappers get built to wrong location | area-Infrastructure-coreclr untriaged | After a coreclr test build, the following directories exist (Windows, x64, Checked):
```
f:\gh\runtime2\artifacts\tests>dir /b f:\gh\runtime2\artifacts\tests\coreclr\Windows_NT.x64.Checked\TestWrappers\JIT.SIMD
JIT.SIMD.XUnitWrapper.cs
JIT.SIMD.XUnitWrapper.csproj
f:\gh\runtime2\artifacts\tests>dir /b f:\gh\runtime2\artifacts\tests\artifacts\tests\coreclr\Windows_NT.x64.Checked\TestWrappers\JIT.SIMD\JIT.SIMD.XUnitWrapper
JIT.SIMD.XUnitWrapper.AssemblyInfo.cs
JIT.SIMD.XUnitWrapper.AssemblyInfoInputs.cache
JIT.SIMD.XUnitWrapper.assets.cache
JIT.SIMD.XUnitWrapper.csproj.CopyComplete
JIT.SIMD.XUnitWrapper.csproj.FileListAbsolute.txt
JIT.SIMD.XUnitWrapper.csproj.nuget.cache
JIT.SIMD.XUnitWrapper.csproj.nuget.dgspec.json
JIT.SIMD.XUnitWrapper.csproj.nuget.g.props
JIT.SIMD.XUnitWrapper.csproj.nuget.g.targets
JIT.SIMD.XUnitWrapper.dll
project.assets.json
```
The built version of the wrappers are getting the wrong directory.
@dotnet/runtime-infrastructure | 1.0 | TestWrappers get built to wrong location - After a coreclr test build, the following directories exist (Windows, x64, Checked):
```
f:\gh\runtime2\artifacts\tests>dir /b f:\gh\runtime2\artifacts\tests\coreclr\Windows_NT.x64.Checked\TestWrappers\JIT.SIMD
JIT.SIMD.XUnitWrapper.cs
JIT.SIMD.XUnitWrapper.csproj
f:\gh\runtime2\artifacts\tests>dir /b f:\gh\runtime2\artifacts\tests\artifacts\tests\coreclr\Windows_NT.x64.Checked\TestWrappers\JIT.SIMD\JIT.SIMD.XUnitWrapper
JIT.SIMD.XUnitWrapper.AssemblyInfo.cs
JIT.SIMD.XUnitWrapper.AssemblyInfoInputs.cache
JIT.SIMD.XUnitWrapper.assets.cache
JIT.SIMD.XUnitWrapper.csproj.CopyComplete
JIT.SIMD.XUnitWrapper.csproj.FileListAbsolute.txt
JIT.SIMD.XUnitWrapper.csproj.nuget.cache
JIT.SIMD.XUnitWrapper.csproj.nuget.dgspec.json
JIT.SIMD.XUnitWrapper.csproj.nuget.g.props
JIT.SIMD.XUnitWrapper.csproj.nuget.g.targets
JIT.SIMD.XUnitWrapper.dll
project.assets.json
```
The built version of the wrappers are getting the wrong directory.
@dotnet/runtime-infrastructure | non_test | testwrappers get built to wrong location after a coreclr test build the following directories exist windows checked f gh artifacts tests dir b f gh artifacts tests coreclr windows nt checked testwrappers jit simd jit simd xunitwrapper cs jit simd xunitwrapper csproj f gh artifacts tests dir b f gh artifacts tests artifacts tests coreclr windows nt checked testwrappers jit simd jit simd xunitwrapper jit simd xunitwrapper assemblyinfo cs jit simd xunitwrapper assemblyinfoinputs cache jit simd xunitwrapper assets cache jit simd xunitwrapper csproj copycomplete jit simd xunitwrapper csproj filelistabsolute txt jit simd xunitwrapper csproj nuget cache jit simd xunitwrapper csproj nuget dgspec json jit simd xunitwrapper csproj nuget g props jit simd xunitwrapper csproj nuget g targets jit simd xunitwrapper dll project assets json the built version of the wrappers are getting the wrong directory dotnet runtime infrastructure | 0 |
105,849 | 11,460,529,282 | IssuesEvent | 2020-02-07 09:56:08 | snowplow/snowplow-javascript-tracker | https://api.github.com/repos/snowplow/snowplow-javascript-tracker | closed | Use local sp.js for example pages | category:setup priority:low status:completed type:documentation | So that the example pages are able to send events, include a sp.js file in the example folder and point the <script> in the example pages to this.
This will be superseeded by #775 but is an easy stop gap to give us working example pages again | 1.0 | Use local sp.js for example pages - So that the example pages are able to send events, include a sp.js file in the example folder and point the <script> in the example pages to this.
This will be superseeded by #775 but is an easy stop gap to give us working example pages again | non_test | use local sp js for example pages so that the example pages are able to send events include a sp js file in the example folder and point the in the example pages to this this will be superseeded by but is an easy stop gap to give us working example pages again | 0 |
318,464 | 27,305,730,462 | IssuesEvent | 2023-02-24 08:01:18 | massalabs/massa | https://api.github.com/repos/massalabs/massa | closed | retry intermittant failures on reinstated tests | test | some tests were reinstated in #3507
the reinstated tests occassionally fail for reasons outside the scope of what is being tested (#3509) . This is handled in CI through our use of cargo nextest with automatic retries, but locally, you could run into some false fails.
Until I find an upstream fix (i.e. you can run cargo test -F testing, and things just work), the downstream sollution is to retry those tests manually, or use nextest run --retries 5.
A intermittant fix should allow `cargo test` to run `nextest run --retries 5`
| 1.0 | retry intermittant failures on reinstated tests - some tests were reinstated in #3507
the reinstated tests occassionally fail for reasons outside the scope of what is being tested (#3509) . This is handled in CI through our use of cargo nextest with automatic retries, but locally, you could run into some false fails.
Until I find an upstream fix (i.e. you can run cargo test -F testing, and things just work), the downstream sollution is to retry those tests manually, or use nextest run --retries 5.
A intermittant fix should allow `cargo test` to run `nextest run --retries 5`
| test | retry intermittant failures on reinstated tests some tests were reinstated in the reinstated tests occassionally fail for reasons outside the scope of what is being tested this is handled in ci through our use of cargo nextest with automatic retries but locally you could run into some false fails until i find an upstream fix i e you can run cargo test f testing and things just work the downstream sollution is to retry those tests manually or use nextest run retries a intermittant fix should allow cargo test to run nextest run retries | 1 |
1,385 | 3,952,516,495 | IssuesEvent | 2016-04-29 09:11:15 | nodejs/node | https://api.github.com/repos/nodejs/node | reopened | stdout/stderr buffering considerations | discuss libuv net process | _I tried to discuss this some time ago at IRC, but postponed it for quite a long time. Also I started the discussion of this in #1741, but I would like to extract the more specific discussion to a separate issue._
I could miss some details, but will try to give a quick overview here.
Several issues here:
1. Many calls to `console.log` (e.g. calling it in a loop) could chew up all the memory and die — #1741, #2970, #3171.
2. `console.log` has different behavior while printing to a terminal and being redirected to a file. — https://github.com/nodejs/node/issues/1741#issuecomment-105333932.
3. Output is sometimes truncated — #6297, there were other ones as far as I remember.
4. The behaviour seems to differ across platforms.
As I understand it — the output has an implicit write buffer (as it's non-blocking) of unlimited size.
One approach to fixing this would be to:
1. Introduce an explicit cyclic write buffer.
2. Make writes to that cyclic buffer blocking.
3. Make writes from the buffer to the actual output non blocking.
4. When the cyclic buffer reaches it's maximum size (e.g. 10 MiB) — block further writes to the buffer until a corresponding part of it is freed.
5. On (normal) exit, make sure the buffer is flushed.
For almost all cases, except for the ones that are currently broken, this would behave as a non-blocking buffer (because writes to the buffer are considerably faster than writes from the buffer to file/terminal).
For cases when the data is being piped to the output too quickly and when the output file/terminal does not manage to output it at the same rate — the write would turn into a blocking operation. It would also be blocking at the exit until all the data is written.
--
Another approach would be to monitor (and limit) the size of data that is contained in the implicit buffer coming from the async queue, and make the operations block when that limit is reached. | 1.0 | stdout/stderr buffering considerations - _I tried to discuss this some time ago at IRC, but postponed it for quite a long time. Also I started the discussion of this in #1741, but I would like to extract the more specific discussion to a separate issue._
I could miss some details, but will try to give a quick overview here.
Several issues here:
1. Many calls to `console.log` (e.g. calling it in a loop) could chew up all the memory and die — #1741, #2970, #3171.
2. `console.log` has different behavior while printing to a terminal and being redirected to a file. — https://github.com/nodejs/node/issues/1741#issuecomment-105333932.
3. Output is sometimes truncated — #6297, there were other ones as far as I remember.
4. The behaviour seems to differ across platforms.
As I understand it — the output has an implicit write buffer (as it's non-blocking) of unlimited size.
One approach to fixing this would be to:
1. Introduce an explicit cyclic write buffer.
2. Make writes to that cyclic buffer blocking.
3. Make writes from the buffer to the actual output non blocking.
4. When the cyclic buffer reaches it's maximum size (e.g. 10 MiB) — block further writes to the buffer until a corresponding part of it is freed.
5. On (normal) exit, make sure the buffer is flushed.
For almost all cases, except for the ones that are currently broken, this would behave as a non-blocking buffer (because writes to the buffer are considerably faster than writes from the buffer to file/terminal).
For cases when the data is being piped to the output too quickly and when the output file/terminal does not manage to output it at the same rate — the write would turn into a blocking operation. It would also be blocking at the exit until all the data is written.
--
Another approach would be to monitor (and limit) the size of data that is contained in the implicit buffer coming from the async queue, and make the operations block when that limit is reached. | non_test | stdout stderr buffering considerations i tried to discuss this some time ago at irc but postponed it for quite a long time also i started the discussion of this in but i would like to extract the more specific discussion to a separate issue i could miss some details but will try to give a quick overview here several issues here many calls to console log e g calling it in a loop could chew up all the memory and die — console log has different behavior while printing to a terminal and being redirected to a file — output is sometimes truncated — there were other ones as far as i remember the behaviour seems to differ across platforms as i understand it — the output has an implicit write buffer as it s non blocking of unlimited size one approach to fixing this would be to introduce an explicit cyclic write buffer make writes to that cyclic buffer blocking make writes from the buffer to the actual output non blocking when the cyclic buffer reaches it s maximum size e g mib — block further writes to the buffer until a corresponding part of it is freed on normal exit make sure the buffer is flushed for almost all cases except for the ones that are currently broken this would behave as a non blocking buffer because writes to the buffer are considerably faster than writes from the buffer to file terminal for cases when the data is being piped to the output too quickly and when the output file terminal does not manage to output it at the same rate — the write would turn into a blocking operation it would also be blocking at the exit until all the data is written another approach would be to monitor and limit the size of data that is contained in the implicit buffer coming from the async queue and make the operations block when that limit is reached | 0 |
212,646 | 16,471,858,592 | IssuesEvent | 2021-05-23 15:20:27 | urapadmin/kiosk | https://api.github.com/repos/urapadmin/kiosk | closed | prepare for field in sync manager starts at 50% | bug kiosk test-stage | This is just cosmetics. The percentage starts at 50% for a bit and is then reset.
Also there is still the issue in step 2 with preparing images or so. That also starts at a much higher percentage until it actually drops to something around 50. | 1.0 | prepare for field in sync manager starts at 50% - This is just cosmetics. The percentage starts at 50% for a bit and is then reset.
Also there is still the issue in step 2 with preparing images or so. That also starts at a much higher percentage until it actually drops to something around 50. | test | prepare for field in sync manager starts at this is just cosmetics the percentage starts at for a bit and is then reset also there is still the issue in step with preparing images or so that also starts at a much higher percentage until it actually drops to something around | 1 |
289,939 | 25,025,452,297 | IssuesEvent | 2022-11-04 07:26:29 | ubtue/DatenProbleme | https://api.github.com/repos/ubtue/DatenProbleme | closed | ISSN 0029-4845 | Nouvelle revue théologique (Cairn.info) | ISSN wird nicht übernommen | ready for testing Zotero_SEMI-AUTO | #### URL
https://www.cairn.info/revue-nouvelle-revue-theologique-2022-4.htm
#### Import-Translator
Einzel- und Mehrfachimport:
ubtue_Cairn.info.js
### Problembeschreibung
ISSN wird beim Import in Zotero nicht übernommen
| 1.0 | ISSN 0029-4845 | Nouvelle revue théologique (Cairn.info) | ISSN wird nicht übernommen - #### URL
https://www.cairn.info/revue-nouvelle-revue-theologique-2022-4.htm
#### Import-Translator
Einzel- und Mehrfachimport:
ubtue_Cairn.info.js
### Problembeschreibung
ISSN wird beim Import in Zotero nicht übernommen
| test | issn nouvelle revue théologique cairn info issn wird nicht übernommen url import translator einzel und mehrfachimport ubtue cairn info js problembeschreibung issn wird beim import in zotero nicht übernommen | 1 |
302,345 | 9,257,207,966 | IssuesEvent | 2019-03-17 03:23:17 | CS2113-AY1819S2-M11-2/main | https://api.github.com/repos/CS2113-AY1819S2-M11-2/main | opened | As a user, I want to be able to sort my tasks by task module | priority.Medium type.Enhancement type.Story | ... so that I can view my tasks by module code in lexicographical order. | 1.0 | As a user, I want to be able to sort my tasks by task module - ... so that I can view my tasks by module code in lexicographical order. | non_test | as a user i want to be able to sort my tasks by task module so that i can view my tasks by module code in lexicographical order | 0 |
99,654 | 8,707,411,231 | IssuesEvent | 2018-12-06 07:41:48 | INL/corpus-frontend | https://api.github.com/repos/INL/corpus-frontend | closed | Content escaping vulnerability on all inline onclick handlers | bug finished/testing | Things like showCitation/showProperties have unescaped data embedded as an onclick handler, essentially calling eval() on untrusted data when the user clicks the element. Not only is this a vulnerability, it also just plain breaks whenever the source content contains any quote or special character.
We need to either bind click handlers after drawing the content, or use Mustache.js to render dynamic page content. Preferrably both. | 1.0 | Content escaping vulnerability on all inline onclick handlers - Things like showCitation/showProperties have unescaped data embedded as an onclick handler, essentially calling eval() on untrusted data when the user clicks the element. Not only is this a vulnerability, it also just plain breaks whenever the source content contains any quote or special character.
We need to either bind click handlers after drawing the content, or use Mustache.js to render dynamic page content. Preferrably both. | test | content escaping vulnerability on all inline onclick handlers things like showcitation showproperties have unescaped data embedded as an onclick handler essentially calling eval on untrusted data when the user clicks the element not only is this a vulnerability it also just plain breaks whenever the source content contains any quote or special character we need to either bind click handlers after drawing the content or use mustache js to render dynamic page content preferrably both | 1 |
747,147 | 26,074,730,781 | IssuesEvent | 2022-12-24 10:20:38 | LiteLDev/LiteLoaderBDS | https://api.github.com/repos/LiteLDev/LiteLoaderBDS | closed | Crashed | type: bug status: need review priority: normal | ### 异常模块
LiteLoader (本体)
### 操作系统
Windows Server 2016
### LiteLoader 版本
2.9.0
### BDS 版本
1.19.51
### 发生了什么?
特定的人进服会立刻崩服
### 复现此问题的步骤
_No response_
### 有关的日志/输出
```raw
[Crashed!]
-- Unhandled Exception in -> bedrock_server_mod.exe
-- Exception Code: 0xC0000005
-- C++ STL Exception detected!
[StackTrace] Function Level::addBlockSourceForValidityTracking at 0x7FF6B0AED450 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0AED4A3 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BlockSource::BlockSource at 0x7FF6B0C85800 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0C85A12 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function OverworldGenerator::postProcess at 0x7FF6AFAC2320 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6AFAC2588 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function DBChunkStorage::postProcess at 0x7FF6B114AF80 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B114B00E [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function ChunkSource::_postProcessingTask at 0x7FF6B0DB2610 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0DB26C3 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function std::_Func_impl_no_alloc<<lambda_3fbe062d51921b58f3b350d9b02970aa>,TaskResult>::_Do_call at 0x7FF6B0DAEC20 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0DAEC3A [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function TaskDetails::BackgroundTaskDetails<TaskResult,void,void>::_invoke at 0x7FF6B1234E00 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B1234E1F [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BackgroundTask<TaskResult,void>::run at 0x7FF6B122E340 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B122E428 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BackgroundWorker::_runOneTask at 0x7FF6B12839C0 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B1283B26 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BackgroundWorker::_processNextTask at 0x7FF6B12837E0 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B128383F [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function <lambda_cde11e6861000de3a6036b8215c0b617>::operator() at 0x7FF6B1283450 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B12834FB [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function std::thread::_Invoke<std::tuple<<lambda_cde11e6861000de3a6036b8215c0b617> >,0> at 0x7FF6B1283230 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B128323E [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function o_exp at 0x7FFFF6A01FA0 [ucrtbase.dll<6.2.17763.348>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FFFF6A01FFA [ucrtbase.dll<6.2.17763.348>]
[StackTrace] Function BaseThreadInitThunk at 0x7FFFF89E81E0 [KERNEL32.DLL<6.2.17763.379>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FFFF89E81F4 [KERNEL32.DLL<6.2.17763.379>]
[StackTrace] Function RtlUserThreadStart at 0x7FFFFA80A230 [ntdll.dll<6.2.17763.348>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FFFFA80A251 [ntdll.dll<6.2.17763.348>]
```
### 插件列表
```raw
15:27:07 INFO [Server] 插件列表 [14]
15:27:07 INFO [Server] - BackupHelper [v3.0.0] (BackupHelper.dll)
15:27:07 INFO [Server] One command to backup your level
15:27:07 INFO [Server] - BDSLM [v0.3.4] (BDSLM.dll)
15:27:07 INFO [Server] Satellite Map for Bedrock Dedicated Server
15:27:07 INFO [Server] - BETweaker [v1.2.3] (BETweaker.dll)
15:27:07 INFO [Server] adds features to the game, giving survival players a very rich and useful feature set.
15:27:07 INFO [Server] - ScriptEngine-Lua [v2.9.0] (LiteLoader.Lua.dll)
15:27:07 INFO [Server] Lua ScriptEngine for LiteLoaderBDS
15:27:07 INFO [Server] - LLMoney [v2.9.0] (LLMoney.dll)
15:27:07 INFO [Server] EconomyCore for LiteLoaderBDS
15:27:07 INFO [Server] - Trapdoor [v0.21.0] (trapdoor-0.21.0-1.19.50.02.dll)
15:27:07 INFO [Server] Useful mod for technical players
15:27:07 INFO [Server] - PermissionAPI [v2.9.0] (PermissionAPI.dll)
15:27:07 INFO [Server] Builtin & Powerful permission API for LiteLoaderBDS
15:27:07 INFO [Server] - ScriptEngine-QuickJs [v2.9.0] (LiteLoader.Js.dll)
15:27:07 INFO [Server] Javascript ScriptEngine for LiteLoaderBDS
15:27:07 INFO [Server] - BehaviorLog [v2.1.4] (BehaviorLog.lxl.js)
15:27:07 INFO [Server] Behavior Log for LiteLoaderBDS
15:27:07 INFO [Server] - GoCQSync [v0.4.3] (GoCQSync.lxl.js)
15:27:07 INFO [Server] 依赖GoCQHTTP的群服互通
15:27:07 INFO [Server] - JoinTips [v1.3.2] (JoinTips.lls.js)
15:27:07 INFO [Server] 进服提醒
15:27:07 INFO [Server] - LxlCheckBag [v1.0.0] (LxlCheckBag.lxl.js)
15:27:07 INFO [Server] LxlCheckBag
15:27:07 INFO [Server] - Ranking [v2.0.0] (Ranking.js)
15:27:07 INFO [Server] 排行榜
15:27:07 INFO [Server] - ScriptEngine-NodeJs [v2.9.0] (LiteLoader.NodeJs.dll)
```
| 1.0 | Crashed - ### 异常模块
LiteLoader (本体)
### 操作系统
Windows Server 2016
### LiteLoader 版本
2.9.0
### BDS 版本
1.19.51
### 发生了什么?
特定的人进服会立刻崩服
### 复现此问题的步骤
_No response_
### 有关的日志/输出
```raw
[Crashed!]
-- Unhandled Exception in -> bedrock_server_mod.exe
-- Exception Code: 0xC0000005
-- C++ STL Exception detected!
[StackTrace] Function Level::addBlockSourceForValidityTracking at 0x7FF6B0AED450 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0AED4A3 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BlockSource::BlockSource at 0x7FF6B0C85800 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0C85A12 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function OverworldGenerator::postProcess at 0x7FF6AFAC2320 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6AFAC2588 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function DBChunkStorage::postProcess at 0x7FF6B114AF80 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B114B00E [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function ChunkSource::_postProcessingTask at 0x7FF6B0DB2610 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0DB26C3 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function std::_Func_impl_no_alloc<<lambda_3fbe062d51921b58f3b350d9b02970aa>,TaskResult>::_Do_call at 0x7FF6B0DAEC20 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B0DAEC3A [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function TaskDetails::BackgroundTaskDetails<TaskResult,void,void>::_invoke at 0x7FF6B1234E00 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B1234E1F [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BackgroundTask<TaskResult,void>::run at 0x7FF6B122E340 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B122E428 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BackgroundWorker::_runOneTask at 0x7FF6B12839C0 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B1283B26 [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function BackgroundWorker::_processNextTask at 0x7FF6B12837E0 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B128383F [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function <lambda_cde11e6861000de3a6036b8215c0b617>::operator() at 0x7FF6B1283450 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B12834FB [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function std::thread::_Invoke<std::tuple<<lambda_cde11e6861000de3a6036b8215c0b617> >,0> at 0x7FF6B1283230 [bedrock_server_mod.exe<1.19.51.01>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FF6B128323E [bedrock_server_mod.exe<1.19.51.01>]
[StackTrace] Function o_exp at 0x7FFFF6A01FA0 [ucrtbase.dll<6.2.17763.348>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FFFF6A01FFA [ucrtbase.dll<6.2.17763.348>]
[StackTrace] Function BaseThreadInitThunk at 0x7FFFF89E81E0 [KERNEL32.DLL<6.2.17763.379>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FFFF89E81F4 [KERNEL32.DLL<6.2.17763.379>]
[StackTrace] Function RtlUserThreadStart at 0x7FFFFA80A230 [ntdll.dll<6.2.17763.348>]
-- At File (null) : Line 0
[StackTrace] Function ???????? at 0x7FFFFA80A251 [ntdll.dll<6.2.17763.348>]
```
### 插件列表
```raw
15:27:07 INFO [Server] 插件列表 [14]
15:27:07 INFO [Server] - BackupHelper [v3.0.0] (BackupHelper.dll)
15:27:07 INFO [Server] One command to backup your level
15:27:07 INFO [Server] - BDSLM [v0.3.4] (BDSLM.dll)
15:27:07 INFO [Server] Satellite Map for Bedrock Dedicated Server
15:27:07 INFO [Server] - BETweaker [v1.2.3] (BETweaker.dll)
15:27:07 INFO [Server] adds features to the game, giving survival players a very rich and useful feature set.
15:27:07 INFO [Server] - ScriptEngine-Lua [v2.9.0] (LiteLoader.Lua.dll)
15:27:07 INFO [Server] Lua ScriptEngine for LiteLoaderBDS
15:27:07 INFO [Server] - LLMoney [v2.9.0] (LLMoney.dll)
15:27:07 INFO [Server] EconomyCore for LiteLoaderBDS
15:27:07 INFO [Server] - Trapdoor [v0.21.0] (trapdoor-0.21.0-1.19.50.02.dll)
15:27:07 INFO [Server] Useful mod for technical players
15:27:07 INFO [Server] - PermissionAPI [v2.9.0] (PermissionAPI.dll)
15:27:07 INFO [Server] Builtin & Powerful permission API for LiteLoaderBDS
15:27:07 INFO [Server] - ScriptEngine-QuickJs [v2.9.0] (LiteLoader.Js.dll)
15:27:07 INFO [Server] Javascript ScriptEngine for LiteLoaderBDS
15:27:07 INFO [Server] - BehaviorLog [v2.1.4] (BehaviorLog.lxl.js)
15:27:07 INFO [Server] Behavior Log for LiteLoaderBDS
15:27:07 INFO [Server] - GoCQSync [v0.4.3] (GoCQSync.lxl.js)
15:27:07 INFO [Server] 依赖GoCQHTTP的群服互通
15:27:07 INFO [Server] - JoinTips [v1.3.2] (JoinTips.lls.js)
15:27:07 INFO [Server] 进服提醒
15:27:07 INFO [Server] - LxlCheckBag [v1.0.0] (LxlCheckBag.lxl.js)
15:27:07 INFO [Server] LxlCheckBag
15:27:07 INFO [Server] - Ranking [v2.0.0] (Ranking.js)
15:27:07 INFO [Server] 排行榜
15:27:07 INFO [Server] - ScriptEngine-NodeJs [v2.9.0] (LiteLoader.NodeJs.dll)
```
| non_test | crashed 异常模块 liteloader 本体 操作系统 windows server liteloader 版本 bds 版本 发生了什么 特定的人进服会立刻崩服 复现此问题的步骤 no response 有关的日志 输出 raw unhandled exception in bedrock server mod exe exception code c stl exception detected function level addblocksourceforvaliditytracking at at file null line function at function blocksource blocksource at at file null line function at function overworldgenerator postprocess at at file null line function at function dbchunkstorage postprocess at at file null line function at function chunksource postprocessingtask at at file null line function at function std func impl no alloc taskresult do call at at file null line function at function taskdetails backgroundtaskdetails invoke at at file null line function at function backgroundtask run at at file null line function at function backgroundworker runonetask at at file null line function at function backgroundworker processnexttask at at file null line function at function operator at at file null line function at function std thread invoke at at file null line function at function o exp at at file null line function at function basethreadinitthunk at at file null line function at function rtluserthreadstart at at file null line function at 插件列表 raw info 插件列表 info backuphelper backuphelper dll info one command to backup your level info bdslm bdslm dll info satellite map for bedrock dedicated server info betweaker betweaker dll info adds features to the game giving survival players a very rich and useful feature set info scriptengine lua liteloader lua dll info lua scriptengine for liteloaderbds info llmoney llmoney dll info economycore for liteloaderbds info trapdoor trapdoor dll info useful mod for technical players info permissionapi permissionapi dll info builtin powerful permission api for liteloaderbds info scriptengine quickjs liteloader js dll info javascript scriptengine for liteloaderbds info behaviorlog behaviorlog lxl js info behavior log for liteloaderbds info gocqsync gocqsync lxl js info 依赖gocqhttp的群服互通 info jointips jointips lls js info 进服提醒 info lxlcheckbag lxlcheckbag lxl js info lxlcheckbag info ranking ranking js info 排行榜 info scriptengine nodejs liteloader nodejs dll | 0 |
199,220 | 15,029,263,564 | IssuesEvent | 2021-02-02 05:08:29 | kubernetes/autoscaler | https://api.github.com/repos/kubernetes/autoscaler | closed | Azure unit test TestGetSubscriptionIdFromInstanceMetadata is failing with nil pointer | area/provider/azure kind/bug test | Logs are below:
```
W0201 08:28:22.137334 16230 azure_util.go:337] Template improperly formatted
W0201 08:28:22.141498 16230 azure_util.go:337] Template improperly formatted
E0201 08:28:22.151560 16230 azure_agent_pool.go:409] Get name for instance {"/subscriptions/sub/resourceGroups/rg/providers/provider/virtualMachines/as-vm-0/"} failed: resource name was missing from identifier
W0201 08:28:22.153655 16230 azure_agent_pool.go:546] NIC ID is not set for VM (rg/as-vm-0)
I0201 08:28:22.153723 16230 azure_agent_pool.go:555] deleting VM: rg/as-vm-0
I0201 08:28:22.153800 16230 azure_agent_pool.go:559] waiting for VirtualMachine deletion: rg/as-vm-0
I0201 08:28:22.153883 16230 azure_agent_pool.go:586] found os disk storage reference: foo vhds bar.vhd
I0201 08:28:22.153942 16230 azure_agent_pool.go:588] deleting blob: vhds/bar.vhd
E0201 08:28:22.918923 16230 azure_agent_pool.go:415] Delete virtual machine "as-vm-0" failed: storage: service returned error: StatusCode=403, ErrorCode=AccountIsDisabled, ErrorMessage=The specified account is disabled.
RequestId:48aef6ef-f01e-011e-1974-f8c979000000
Time:2021-02-01T08:28:22.8930697Z, RequestInitiated=Mon, 01 Feb 2021 08:28:21 GMT, RequestId=48aef6ef-f01e-011e-1974-f8c979000000, API Version=, QueryParameterName=, QueryParameterValue=
W0201 08:28:22.922843 16230 azure_agent_pool.go:546] NIC ID is not set for VM (rg/as-vm-0)
I0201 08:28:22.922911 16230 azure_agent_pool.go:555] deleting VM: rg/as-vm-0
I0201 08:28:22.922943 16230 azure_agent_pool.go:559] waiting for VirtualMachine deletion: rg/as-vm-0
I0201 08:28:22.923007 16230 azure_agent_pool.go:586] found os disk storage reference: foo vhds bar.vhd
I0201 08:28:22.923035 16230 azure_agent_pool.go:588] deleting blob: vhds/bar.vhd
E0201 08:28:22.972393 16230 azure_agent_pool.go:415] Delete virtual machine "as-vm-0" failed: storage: service returned error: StatusCode=403, ErrorCode=AccountIsDisabled, ErrorMessage=The specified account is disabled.
RequestId:48aef715-f01e-011e-3b74-f8c979000000
Time:2021-02-01T08:28:22.9461082Z, RequestInitiated=Mon, 01 Feb 2021 08:28:22 GMT, RequestId=48aef715-f01e-011e-3b74-f8c979000000, API Version=, QueryParameterName=, QueryParameterValue=
--- FAIL: TestGetSubscriptionIdFromInstanceMetadata (0.01s)
panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x1eb0412]
goroutine 61 [running]:
testing.tRunner.func1.1(0x2091bc0, 0x34b9920)
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:999 +0x461
testing.tRunner.func1(0xc0001fb680)
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:1002 +0x606
panic(0x2091bc0, 0x34b9920)
/opt/hostedtoolcache/go/1.14.14/x64/src/runtime/panic.go:975 +0x3e3
k8s.io/autoscaler/cluster-autoscaler/cloudprovider/azure.TestGetSubscriptionIdFromInstanceMetadata(0xc0001fb680)
/home/runner/work/autoscaler/autoscaler/go/src/k8s.io/autoscaler/cluster-autoscaler/cloudprovider/azure/azure_config_test.go:243 +0x62
testing.tRunner(0xc0001fb680, 0x2343968)
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:1050 +0x1ec
created by testing.(*T).Run
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:1095 +0x538
FAIL k8s.io/autoscaler/cluster-autoscaler/cloudprovider/azure 0.955s
``` | 1.0 | Azure unit test TestGetSubscriptionIdFromInstanceMetadata is failing with nil pointer - Logs are below:
```
W0201 08:28:22.137334 16230 azure_util.go:337] Template improperly formatted
W0201 08:28:22.141498 16230 azure_util.go:337] Template improperly formatted
E0201 08:28:22.151560 16230 azure_agent_pool.go:409] Get name for instance {"/subscriptions/sub/resourceGroups/rg/providers/provider/virtualMachines/as-vm-0/"} failed: resource name was missing from identifier
W0201 08:28:22.153655 16230 azure_agent_pool.go:546] NIC ID is not set for VM (rg/as-vm-0)
I0201 08:28:22.153723 16230 azure_agent_pool.go:555] deleting VM: rg/as-vm-0
I0201 08:28:22.153800 16230 azure_agent_pool.go:559] waiting for VirtualMachine deletion: rg/as-vm-0
I0201 08:28:22.153883 16230 azure_agent_pool.go:586] found os disk storage reference: foo vhds bar.vhd
I0201 08:28:22.153942 16230 azure_agent_pool.go:588] deleting blob: vhds/bar.vhd
E0201 08:28:22.918923 16230 azure_agent_pool.go:415] Delete virtual machine "as-vm-0" failed: storage: service returned error: StatusCode=403, ErrorCode=AccountIsDisabled, ErrorMessage=The specified account is disabled.
RequestId:48aef6ef-f01e-011e-1974-f8c979000000
Time:2021-02-01T08:28:22.8930697Z, RequestInitiated=Mon, 01 Feb 2021 08:28:21 GMT, RequestId=48aef6ef-f01e-011e-1974-f8c979000000, API Version=, QueryParameterName=, QueryParameterValue=
W0201 08:28:22.922843 16230 azure_agent_pool.go:546] NIC ID is not set for VM (rg/as-vm-0)
I0201 08:28:22.922911 16230 azure_agent_pool.go:555] deleting VM: rg/as-vm-0
I0201 08:28:22.922943 16230 azure_agent_pool.go:559] waiting for VirtualMachine deletion: rg/as-vm-0
I0201 08:28:22.923007 16230 azure_agent_pool.go:586] found os disk storage reference: foo vhds bar.vhd
I0201 08:28:22.923035 16230 azure_agent_pool.go:588] deleting blob: vhds/bar.vhd
E0201 08:28:22.972393 16230 azure_agent_pool.go:415] Delete virtual machine "as-vm-0" failed: storage: service returned error: StatusCode=403, ErrorCode=AccountIsDisabled, ErrorMessage=The specified account is disabled.
RequestId:48aef715-f01e-011e-3b74-f8c979000000
Time:2021-02-01T08:28:22.9461082Z, RequestInitiated=Mon, 01 Feb 2021 08:28:22 GMT, RequestId=48aef715-f01e-011e-3b74-f8c979000000, API Version=, QueryParameterName=, QueryParameterValue=
--- FAIL: TestGetSubscriptionIdFromInstanceMetadata (0.01s)
panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x1eb0412]
goroutine 61 [running]:
testing.tRunner.func1.1(0x2091bc0, 0x34b9920)
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:999 +0x461
testing.tRunner.func1(0xc0001fb680)
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:1002 +0x606
panic(0x2091bc0, 0x34b9920)
/opt/hostedtoolcache/go/1.14.14/x64/src/runtime/panic.go:975 +0x3e3
k8s.io/autoscaler/cluster-autoscaler/cloudprovider/azure.TestGetSubscriptionIdFromInstanceMetadata(0xc0001fb680)
/home/runner/work/autoscaler/autoscaler/go/src/k8s.io/autoscaler/cluster-autoscaler/cloudprovider/azure/azure_config_test.go:243 +0x62
testing.tRunner(0xc0001fb680, 0x2343968)
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:1050 +0x1ec
created by testing.(*T).Run
/opt/hostedtoolcache/go/1.14.14/x64/src/testing/testing.go:1095 +0x538
FAIL k8s.io/autoscaler/cluster-autoscaler/cloudprovider/azure 0.955s
``` | test | azure unit test testgetsubscriptionidfrominstancemetadata is failing with nil pointer logs are below azure util go template improperly formatted azure util go template improperly formatted azure agent pool go get name for instance subscriptions sub resourcegroups rg providers provider virtualmachines as vm failed resource name was missing from identifier azure agent pool go nic id is not set for vm rg as vm azure agent pool go deleting vm rg as vm azure agent pool go waiting for virtualmachine deletion rg as vm azure agent pool go found os disk storage reference foo vhds bar vhd azure agent pool go deleting blob vhds bar vhd azure agent pool go delete virtual machine as vm failed storage service returned error statuscode errorcode accountisdisabled errormessage the specified account is disabled requestid time requestinitiated mon feb gmt requestid api version queryparametername queryparametervalue azure agent pool go nic id is not set for vm rg as vm azure agent pool go deleting vm rg as vm azure agent pool go waiting for virtualmachine deletion rg as vm azure agent pool go found os disk storage reference foo vhds bar vhd azure agent pool go deleting blob vhds bar vhd azure agent pool go delete virtual machine as vm failed storage service returned error statuscode errorcode accountisdisabled errormessage the specified account is disabled requestid time requestinitiated mon feb gmt requestid api version queryparametername queryparametervalue fail testgetsubscriptionidfrominstancemetadata panic runtime error invalid memory address or nil pointer dereference panic runtime error invalid memory address or nil pointer dereference goroutine testing trunner opt hostedtoolcache go src testing testing go testing trunner opt hostedtoolcache go src testing testing go panic opt hostedtoolcache go src runtime panic go io autoscaler cluster autoscaler cloudprovider azure testgetsubscriptionidfrominstancemetadata home runner work autoscaler autoscaler go src io autoscaler cluster autoscaler cloudprovider azure azure config test go testing trunner opt hostedtoolcache go src testing testing go created by testing t run opt hostedtoolcache go src testing testing go fail io autoscaler cluster autoscaler cloudprovider azure | 1 |
220,479 | 17,198,103,167 | IssuesEvent | 2021-07-16 20:57:05 | elastic/kibana | https://api.github.com/repos/elastic/kibana | opened | Failing test: Chrome X-Pack Cloud Integration Functional Tests (SAML).x-pack/test/cloud_integration/tests/fullstory - Cloud FullStory integration records a FullStory session with the associated SAML user | failed-test | A test failed on a tracked branch
```
Error: expected undefined to not equal undefined
at Assertion.assert (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/expect/expect.js:100:11)
at Assertion.be.Assertion.equal (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/expect/expect.js:227:8)
at Assertion.be (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/expect/expect.js:69:22)
at Context.<anonymous> (test/cloud_integration/tests/fullstory.ts:64:74)
at runMicrotasks (<anonymous>)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
at Object.apply (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/15432/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Chrome X-Pack Cloud Integration Functional Tests (SAML).x-pack/test/cloud_integration/tests/fullstory","test.name":"Cloud FullStory integration records a FullStory session with the associated SAML user","test.failCount":1}} --> | 1.0 | Failing test: Chrome X-Pack Cloud Integration Functional Tests (SAML).x-pack/test/cloud_integration/tests/fullstory - Cloud FullStory integration records a FullStory session with the associated SAML user - A test failed on a tracked branch
```
Error: expected undefined to not equal undefined
at Assertion.assert (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/expect/expect.js:100:11)
at Assertion.be.Assertion.equal (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/expect/expect.js:227:8)
at Assertion.be (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/expect/expect.js:69:22)
at Context.<anonymous> (test/cloud_integration/tests/fullstory.ts:64:74)
at runMicrotasks (<anonymous>)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
at Object.apply (/dev/shm/workspace/parallel/20/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/15432/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Chrome X-Pack Cloud Integration Functional Tests (SAML).x-pack/test/cloud_integration/tests/fullstory","test.name":"Cloud FullStory integration records a FullStory session with the associated SAML user","test.failCount":1}} --> | test | failing test chrome x pack cloud integration functional tests saml x pack test cloud integration tests fullstory cloud fullstory integration records a fullstory session with the associated saml user a test failed on a tracked branch error expected undefined to not equal undefined at assertion assert dev shm workspace parallel kibana node modules kbn expect expect js at assertion be assertion equal dev shm workspace parallel kibana node modules kbn expect expect js at assertion be dev shm workspace parallel kibana node modules kbn expect expect js at context test cloud integration tests fullstory ts at runmicrotasks at processticksandrejections internal process task queues js at object apply dev shm workspace parallel kibana node modules kbn test target node functional test runner lib mocha wrap function js first failure | 1 |
10,696 | 9,049,139,991 | IssuesEvent | 2019-02-12 03:09:15 | Azure/azure-powershell | https://api.github.com/repos/Azure/azure-powershell | closed | New-AzResourceGroupDeployment unable to add API Management policy | API Management Service Attention | <!--
If this issue is a bug report:
- Upgrade to the latest version of Az and verify you are able to reproduce the issue
- You can install the latest version of Az from the PowerShell Gallery
- https://www.powershellgallery.com/packages/Az
- You can also install the latest version from the Releases section
- https://github.com/Azure/azure-powershell/releases
- Ensure that you repro the issue with $DebugPreference = "Continue" to receive the debug stream
- If this bug involves an exception being thrown, please run Resolve-AzError to receive extended information on the error
- Fill out the below template
If this issue is not a bug report, please remove the below template
-->
### Description
I cannot figure out how to add an Azure API Management policy using New-AzResourceGroupDeployment.
New-AzResourceGroupDeployment displays no useful information when an error is returned.
This might be an issue with the Azure REST API itself, but I can't find how to raise an issue for that (can someone tell me)?
The error returned is unhelpful:
```
"error": {
"code": "BadRequest",
"message": ""
}
}
```
### Script/Steps for Reproduction
<!-- Please provide the necessary script(s) that reproduce the issue -->
```powershell
New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -TemplateFile .\Mobile.Provisioning.ApiManagementPolicy.ARM.Local.json -TemplateParameterFile .\Mobile.Provisioning.ApiManagement.ARM.Params.Local.json -Mode Incremental
```
where the template contains the following:
```
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"APIManagementInstanceName": {
"type": "string",
"metadata": {
"description": "The name of the existing API Management instance"
}
}
},
"variables": {},
"resources": [
{
"name": "[concat(parameters('APIManagementInstanceName'), '/wireless-mobile-provisioning-dev/basic-auth-policy')]",
"type": "Microsoft.ApiManagement/service/apis/policies",
"apiVersion": "2017-03-01",
"properties": {
"policyContent": "<policies><inbound><base \/><authentication-basic username='username' password='password' \/><\/inbound><backend><base \/><\/backend><outbound><base \/><\/outbound><on-error><base \/><\/on-error><\/policies>"
}
}
]
}
```
### Module Version
<!-- Please run (Get-Module -ListAvailable) to get the version(s) of all modules, including Azure installed on your machine -->
```powershell
Get-Module -ListAvailable
Script 1.0.0 Az.Accounts Core,Desk {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...}
Script 1.0.0 Az.Aks Core,Desk {Get-AzAks, New-AzAks, Remove-AzAks, Import-AzAksCredential...}
Script 1.0.0 Az.AnalysisServices Core,Desk {Resume-AzAnalysisServicesServer, Suspend-AzAnalysisServicesServer, Get-AzAnalysisServicesServer, Remove-AzAnalysisServicesServer...}
Script 1.0.0 Az.ApiManagement Core,Desk {Add-AzApiManagementRegion, Get-AzApiManagementSsoToken, New-AzApiManagementCustomHostnameConfiguration, New-AzApiManagementSystemCertificate...}
Script 1.0.0 Az.ApplicationInsights Core,Desk {Get-AzApplicationInsights, New-AzApplicationInsights, Remove-AzApplicationInsights, Set-AzApplicationInsightsPricingPlan...}
Script 1.0.0 Az.Automation Core,Desk {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...}
Script 1.0.0 Az.Batch Core,Desk {Remove-AzBatchAccount, Get-AzBatchAccount, Get-AzBatchAccountKeys, New-AzBatchAccount...}
Script 1.0.0 Az.Billing Core,Desk {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...}
Script 1.0.0 Az.Cdn Core,Desk {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...}
Script 1.0.0 Az.CognitiveServices Core,Desk {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSkus, Get-AzCognitiveServicesAccountType...}
Script 1.0.0 Az.Compute Core,Desk {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...}
Script 1.0.0 Az.ContainerInstance Core,Desk {New-AzContainerGroup, Get-AzContainerGroup, Remove-AzContainerGroup, Get-AzContainerInstanceLog}
Script 1.0.0 Az.ContainerRegistry Core,Desk {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...}
Script 1.0.0 Az.DataFactory Core,Desk {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...}
Script 1.0.0 Az.DataLakeAnalytics Core,Desk {Get-AzDataLakeAnalyticsDataSource, New-AzDataLakeAnalyticsCatalogCredential, Remove-AzDataLakeAnalyticsCatalogCredential, Set-AzDataLakeAnalyticsCatalogCredential...}
Script 1.0.0 Az.DataLakeStore Core,Desk {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...}
Script 1.0.0 Az.DevTestLabs Core,Desk {Get-AzDtlAllowedVMSizesPolicy, Get-AzDtlAutoShutdownPolicy, Get-AzDtlAutoStartPolicy, Get-AzDtlVMsPerLabPolicy...}
Script 1.0.0 Az.Dns Core,Desk {Get-AzDnsRecordSet, New-AzDnsRecordConfig, Remove-AzDnsRecordSet, Set-AzDnsRecordSet...}
Script 1.0.0 Az.EventGrid Core,Desk {New-AzEventGridTopic, Get-AzEventGridTopic, Set-AzEventGridTopic, New-AzEventGridTopicKey...}
Script 1.0.0 Az.EventHub Core,Desk {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...}
Script 1.0.0 Az.HDInsight Core,Desk {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...}
Script 1.0.0 Az.IotHub Core,Desk {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...}
Script 1.0.0 Az.KeyVault Core,Desk {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...}
Script 1.0.0 Az.LogicApp Core,Desk {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountCallbackUrl, Get-AzIntegrationAccountCertificate, Get-AzIntegrationAccount...}
Script 1.0.0 Az.MachineLearning Core,Desk {Move-AzMlCommitmentAssociation, Get-AzMlCommitmentAssociation, Get-AzMlCommitmentPlanUsageHistory, Remove-AzMlCommitmentPlan...}
Script 1.0.0 Az.MarketplaceOrdering Core,Desk {Get-AzMarketplaceTerms, Set-AzMarketplaceTerms}
Script 1.0.0 Az.Media Core,Desk {Sync-AzMediaServiceStorageKeys, Set-AzMediaServiceKey, Get-AzMediaServiceKeys, Get-AzMediaServiceNameAvailability...}
Script 1.0.0 Az.Monitor Core,Desk {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...}
Script 1.0.0 Az.Network Core,Desk {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzAp...
Script 1.0.0 Az.NotificationHubs Core,Desk {Get-AzNotificationHub, Get-AzNotificationHubAuthorizationRules, Get-AzNotificationHubListKeys, Get-AzNotificationHubPNSCredentials...}
Script 1.0.0 Az.OperationalInsights Core,Desk {New-AzOperationalInsightsAzureActivityLogDataSource, New-AzOperationalInsightsCustomLogDataSource, Disable-AzOperationalInsightsLinuxCustomLogCollection, Disable-Az...
Script 1.0.0 Az.PolicyInsights Core,Desk {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...}
Script 1.0.0 Az.PowerBIEmbedded Core,Desk {Remove-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollectionAccessKeys, Get-AzPowerBIWorkspace...}
Script 1.0.0 Az.RecoveryServices Core,Desk {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...}
Script 1.0.0 Az.RedisCache Core,Desk {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...}
Script 1.0.0 Az.Relay Core,Desk {New-AzRelayNamespace, Get-AzRelayNamespace, Set-AzRelayNamespace, Remove-AzRelayNamespace...}
Script 1.0.0 Az.Resources Core,Desk {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...}
Script 1.0.0 Az.ServiceBus Core,Desk {New-AzServiceBusNamespace, Get-AzServiceBusNamespace, Set-AzServiceBusNamespace, Remove-AzServiceBusNamespace...}
Script 1.0.0 Az.ServiceFabric Core,Desk {Add-AzServiceFabricApplicationCertificate, Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode...}
Script 1.0.0 Az.SignalR Core,Desk {New-AzSignalR, Get-AzSignalR, Get-AzSignalRKey, New-AzSignalRKey...}
Script 1.0.0 Az.Sql Core,Desk {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgrade...
Script 1.0.0 Az.Storage Core,Desk {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...}
Script 1.0.0 Az.StreamAnalytics Core,Desk {Get-AzStreamAnalyticsFunction, Get-AzStreamAnalyticsDefaultFunctionDefinition, New-AzStreamAnalyticsFunction, Remove-AzStreamAnalyticsFunction...}
Script 1.0.0 Az.TrafficManager Core,Desk {Add-AzTrafficManagerCustomHeaderToEndpoint, Remove-AzTrafficManagerCustomHeaderFromEndpoint, Add-AzTrafficManagerCustomHeaderToProfile, Remove-AzTrafficManagerCusto...
Script 1.0.0 Az.Websites Core,Desk {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...}
```
### Environment Data
<!-- Please run $PSVersionTable to get the necessary environment data -->
```powershell
$PSVersionTable
Name Value
---- -----
PSVersion 6.1.1
PSEdition Core
GitCommitId 6.1.1
OS Microsoft Windows 10.0.17763
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
```
### Debug Output
<!-- Please run the above script with $DebugPreference='Continue' and paste the resulting debug stream in the below code block -->
```
New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -TemplateFile .\Mobile.Provisioning.ApiManagementPolicy.ARM.Local.json -TemplateParameterFile .\Mobile.Provisioning.ApiManagement.ARM.Params.Local.json -Mode Incremental
DEBUG: 12:49:29 PM - NewAzureResourceGroupDeploymentCmdlet begin processing with ParameterSet 'ByTemplateFileAndParameterFile'.
DEBUG: 12:49:29 PM - using account id 'matt.frear@blah.co.nz'...
DEBUG: [Common.Authentication]: Authenticating using Account: 'matt.frear@blah.co.nz', environment: 'AzureCloud', tenant: 'e22c8ca7-6fa8-44fb-8918-2d0f869f4858'
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
POST
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/validate?api-version=2018-05-01
Headers:
x-ms-client-request-id : 7e6a6029-f4a7-4a2c-b824-9becc0a17d28
Accept-Language : en-US
Body:
{
"properties": {
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"APIManagementInstanceName": {
"type": "string",
"metadata": {
"description": "The name of the existing API Management instance"
}
}
},
"variables": {},
"resources": [
{
"name": "[concat(parameters('APIManagementInstanceName'), '/wireless-mobile-provisioning-dev/basic-auth-policy')]",
"type": "Microsoft.ApiManagement/service/apis/policies",
"apiVersion": "2017-03-01",
"properties": {
"policyContent": "<policies><inbound><base /><authentication-basic username='blah' password='password' /></inbound><backend><base /></backend><outbound><base /></outbound><on-error><base /></on-error></policies>"
}
}
]
},
"parameters": {
"APIManagementInstanceName": {
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental"
}
}
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-writes: 1199
x-ms-request-id : 80276059-e6ab-42ab-bf2e-013d24d73613
x-ms-correlation-request-id : 80276059-e6ab-42ab-bf2e-013d24d73613
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234931Z:80276059-e6ab-42ab-bf2e-013d24d73613
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:30 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Succeeded",
"timestamp": "2019-01-21T23:49:31.1940415Z",
"duration": "PT0S",
"correlationId": "80276059-e6ab-42ab-bf2e-013d24d73613",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": [],
"validatedResources": [
{
"apiVersion": "2017-03-01",
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.ApiManagement/service/tpwapimgmtdev/apis/wireless-mobile-provisioning-dev/policies/basic-auth-policy",
"name": "tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy",
"type": "Microsoft.ApiManagement/service/apis/policies",
"properties": {
"policyContent": "<policies><inbound><base /><authentication-basic username='blah' password='bassword' /></inbound><backend><base /></backend><outbound><base /></outbound><on-error><base /></on-error></policies>"
}
}
]
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
PUT
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : ddf0fb8f-3a68-4f3e-819a-c3aa9cd396df
Accept-Language : en-US
Body:
{
"properties": {
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"APIManagementInstanceName": {
"type": "string",
"metadata": {
"description": "The name of the existing API Management instance"
}
}
},
"variables": {},
"resources": [
{
"name": "[concat(parameters('APIManagementInstanceName'), '/wireless-mobile-provisioning-dev/basic-auth-policy')]",
"type": "Microsoft.ApiManagement/service/apis/policies",
"apiVersion": "2017-03-01",
"properties": {
"policyContent": "<policies><inbound><base /><authentication-basic username='blah' password='password' /></inbound><backend><base /></backend><outbound><base /></outbound><on-error><base /></on-error></policies>"
}
}
]
},
"parameters": {
"APIManagementInstanceName": {
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental"
}
}
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
Azure-AsyncOperation : https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operationStatuses/08586534923127259919?api-version=2018-05-01
x-ms-ratelimit-remaining-subscription-writes: 1199
x-ms-request-id : c1846720-40a5-4975-89d2-c5bc1b7658b8
x-ms-correlation-request-id : c1846720-40a5-4975-89d2-c5bc1b7658b8
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234932Z:c1846720-40a5-4975-89d2-c5bc1b7658b8
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:32 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Accepted",
"timestamp": "2019-01-21T23:49:32.9015515Z",
"duration": "PT0.1499321S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": []
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations?api-version=2018-05-01
Headers:
x-ms-client-request-id : e5d66a9e-2742-42a3-bc06-c88500f93c65
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11998
x-ms-request-id : 52798fa3-e810-4039-b96d-0ba7f16993e2
x-ms-correlation-request-id : 52798fa3-e810-4039-b96d-0ba7f16993e2
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234938Z:52798fa3-e810-4039-b96d-0ba7f16993e2
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:37 GMT
Body:
{
"value": []
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : 6d51aefc-8232-433e-9406-16b05b02ad9b
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
Retry-After : 5
x-ms-ratelimit-remaining-subscription-reads: 11997
x-ms-request-id : de07b520-7072-47ae-b73f-a11bccbb16b1
x-ms-correlation-request-id : de07b520-7072-47ae-b73f-a11bccbb16b1
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234938Z:de07b520-7072-47ae-b73f-a11bccbb16b1
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:37 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Running",
"timestamp": "2019-01-21T23:49:35.0298383Z",
"duration": "PT2.2782189S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": []
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations?api-version=2018-05-01
Headers:
x-ms-client-request-id : f8b15bd1-fc7d-4c33-a74a-f565b7f0bf71
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11996
x-ms-request-id : 245891e7-4948-4f2a-8f94-a1a3fcd286ec
x-ms-correlation-request-id : 245891e7-4948-4f2a-8f94-a1a3fcd286ec
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234943Z:245891e7-4948-4f2a-8f94-a1a3fcd286ec
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:43 GMT
Body:
{
"value": [
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations/18376D4394BF0848",
"operationId": "18376D4394BF0848",
"properties": {
"provisioningOperation": "Create",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:41.6866663Z",
"duration": "PT6.4854464S",
"trackingId": "cb0952cc-8b13-4f69-a0f1-b62acc06640f",
"serviceRequestId": "125650b1-039d-4006-9379-af19b2a5bc72",
"statusCode": "NotAcceptable",
"statusMessage": {
"error": {
"code": "BadRequest",
"message": ""
}
},
"targetResource": {
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.ApiManagement/service/tpwapimgmtdev/apis/wireless-mobile-provisioning-dev/policies/basic-auth-policy",
"resourceType": "Microsoft.ApiManagement/service/apis/policies",
"resourceName": "tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy"
}
}
}
]
}
New-AzResourceGroupDeployment : 12:49:43 PM - Resource Microsoft.ApiManagement/service/apis/policies 'tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy' failed with message '{
"error": {
"code": "BadRequest",
"message": ""
}
}'
At line:1 char:1
+ New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -Templat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [New-AzResourceGroupDeployment], Exception
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : fc8d53c3-aeec-4157-92ed-f4668c292138
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
Retry-After : 5
x-ms-ratelimit-remaining-subscription-reads: 11995
x-ms-request-id : c4b6cddd-34ce-4408-a2fa-cdb0cb15e85b
x-ms-correlation-request-id : c4b6cddd-34ce-4408-a2fa-cdb0cb15e85b
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234943Z:c4b6cddd-34ce-4408-a2fa-cdb0cb15e85b
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:43 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Running",
"timestamp": "2019-01-21T23:49:35.0298383Z",
"duration": "PT2.2782189S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": []
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations?api-version=2018-05-01
Headers:
x-ms-client-request-id : 7fcc1c7d-2bd4-4843-a500-feccb905d461
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11994
x-ms-request-id : fff77f6a-5c80-4b3d-a504-4b78e8f1bee6
x-ms-correlation-request-id : fff77f6a-5c80-4b3d-a504-4b78e8f1bee6
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234948Z:fff77f6a-5c80-4b3d-a504-4b78e8f1bee6
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:48 GMT
Body:
{
"value": [
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations/18376D4394BF0848",
"operationId": "18376D4394BF0848",
"properties": {
"provisioningOperation": "Create",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:41.6866663Z",
"duration": "PT6.4854464S",
"trackingId": "cb0952cc-8b13-4f69-a0f1-b62acc06640f",
"serviceRequestId": "125650b1-039d-4006-9379-af19b2a5bc72",
"statusCode": "NotAcceptable",
"statusMessage": {
"error": {
"code": "BadRequest",
"message": ""
}
},
"targetResource": {
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.ApiManagement/service/tpwapimgmtdev/apis/wireless-mobile-provisioning-dev/policies/basic-auth-policy",
"resourceType": "Microsoft.ApiManagement/service/apis/policies",
"resourceName": "tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy"
}
}
},
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations/08586534923127259919",
"operationId": "08586534923127259919",
"properties": {
"provisioningOperation": "EvaluateDeploymentOutput",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:45.151966Z",
"duration": "PT3.4290984S",
"trackingId": "3502030a-e8a0-4036-80ba-5b88a4268946",
"statusCode": "Conflict",
"statusMessage": "Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details."
}
}
]
}
New-AzResourceGroupDeployment : 12:49:48 PM - Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.
At line:1 char:1
+ New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -Templat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [New-AzResourceGroupDeployment], Exception
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet
New-AzResourceGroupDeployment : 12:49:48 PM - Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.
At line:1 char:1
+ New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -Templat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [New-AzResourceGroupDeployment], Exception
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : f85fa57e-0ce7-49be-9641-4f641d2735ac
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11993
x-ms-request-id : 214b4cc1-0e70-43a9-b7ad-207248b64e5e
x-ms-correlation-request-id : 214b4cc1-0e70-43a9-b7ad-207248b64e5e
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234948Z:214b4cc1-0e70-43a9-b7ad-207248b64e5e
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:48 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:45.2220986Z",
"duration": "PT12.4704792S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": [],
"error": {
"code": "DeploymentFailed",
"message": "At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.",
"details": [
{
"code": "NotAcceptable",
"message": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"\"\r\n }\r\n}"
}
]
}
}
}
DeploymentName : Mobile.Provisioning.ApiManagementPolicy.ARM.Local
ResourceGroupName : api-mgmt-rg
ProvisioningState : Failed
Timestamp : 1/21/2019 11:49:45 PM
Mode : Incremental
TemplateLink :
Parameters :
Name Type Value
=============== ========================= ==========
apiManagementInstanceName String tpwapimgmtdev
Outputs :
DeploymentDebugLogLevel :
DEBUG: AzureQoSEvent: CommandName - New-AzResourceGroupDeployment; IsSuccess - False; Duration - 00:00:19.0177127; Exception - System.Exception: 12:49:48 PM - Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.;
DEBUG: Finish sending metric.
DEBUG: 12:49:49 PM - NewAzureResourceGroupDeploymentCmdlet end processing.
DEBUG: 12:49:49 PM - NewAzureResourceGroupDeploymentCmdlet end processing.
```
| 1.0 | New-AzResourceGroupDeployment unable to add API Management policy - <!--
If this issue is a bug report:
- Upgrade to the latest version of Az and verify you are able to reproduce the issue
- You can install the latest version of Az from the PowerShell Gallery
- https://www.powershellgallery.com/packages/Az
- You can also install the latest version from the Releases section
- https://github.com/Azure/azure-powershell/releases
- Ensure that you repro the issue with $DebugPreference = "Continue" to receive the debug stream
- If this bug involves an exception being thrown, please run Resolve-AzError to receive extended information on the error
- Fill out the below template
If this issue is not a bug report, please remove the below template
-->
### Description
I cannot figure out how to add an Azure API Management policy using New-AzResourceGroupDeployment.
New-AzResourceGroupDeployment displays no useful information when an error is returned.
This might be an issue with the Azure REST API itself, but I can't find how to raise an issue for that (can someone tell me)?
The error returned is unhelpful:
```
"error": {
"code": "BadRequest",
"message": ""
}
}
```
### Script/Steps for Reproduction
<!-- Please provide the necessary script(s) that reproduce the issue -->
```powershell
New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -TemplateFile .\Mobile.Provisioning.ApiManagementPolicy.ARM.Local.json -TemplateParameterFile .\Mobile.Provisioning.ApiManagement.ARM.Params.Local.json -Mode Incremental
```
where the template contains the following:
```
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"APIManagementInstanceName": {
"type": "string",
"metadata": {
"description": "The name of the existing API Management instance"
}
}
},
"variables": {},
"resources": [
{
"name": "[concat(parameters('APIManagementInstanceName'), '/wireless-mobile-provisioning-dev/basic-auth-policy')]",
"type": "Microsoft.ApiManagement/service/apis/policies",
"apiVersion": "2017-03-01",
"properties": {
"policyContent": "<policies><inbound><base \/><authentication-basic username='username' password='password' \/><\/inbound><backend><base \/><\/backend><outbound><base \/><\/outbound><on-error><base \/><\/on-error><\/policies>"
}
}
]
}
```
### Module Version
<!-- Please run (Get-Module -ListAvailable) to get the version(s) of all modules, including Azure installed on your machine -->
```powershell
Get-Module -ListAvailable
Script 1.0.0 Az.Accounts Core,Desk {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...}
Script 1.0.0 Az.Aks Core,Desk {Get-AzAks, New-AzAks, Remove-AzAks, Import-AzAksCredential...}
Script 1.0.0 Az.AnalysisServices Core,Desk {Resume-AzAnalysisServicesServer, Suspend-AzAnalysisServicesServer, Get-AzAnalysisServicesServer, Remove-AzAnalysisServicesServer...}
Script 1.0.0 Az.ApiManagement Core,Desk {Add-AzApiManagementRegion, Get-AzApiManagementSsoToken, New-AzApiManagementCustomHostnameConfiguration, New-AzApiManagementSystemCertificate...}
Script 1.0.0 Az.ApplicationInsights Core,Desk {Get-AzApplicationInsights, New-AzApplicationInsights, Remove-AzApplicationInsights, Set-AzApplicationInsightsPricingPlan...}
Script 1.0.0 Az.Automation Core,Desk {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...}
Script 1.0.0 Az.Batch Core,Desk {Remove-AzBatchAccount, Get-AzBatchAccount, Get-AzBatchAccountKeys, New-AzBatchAccount...}
Script 1.0.0 Az.Billing Core,Desk {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...}
Script 1.0.0 Az.Cdn Core,Desk {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...}
Script 1.0.0 Az.CognitiveServices Core,Desk {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSkus, Get-AzCognitiveServicesAccountType...}
Script 1.0.0 Az.Compute Core,Desk {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...}
Script 1.0.0 Az.ContainerInstance Core,Desk {New-AzContainerGroup, Get-AzContainerGroup, Remove-AzContainerGroup, Get-AzContainerInstanceLog}
Script 1.0.0 Az.ContainerRegistry Core,Desk {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...}
Script 1.0.0 Az.DataFactory Core,Desk {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...}
Script 1.0.0 Az.DataLakeAnalytics Core,Desk {Get-AzDataLakeAnalyticsDataSource, New-AzDataLakeAnalyticsCatalogCredential, Remove-AzDataLakeAnalyticsCatalogCredential, Set-AzDataLakeAnalyticsCatalogCredential...}
Script 1.0.0 Az.DataLakeStore Core,Desk {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...}
Script 1.0.0 Az.DevTestLabs Core,Desk {Get-AzDtlAllowedVMSizesPolicy, Get-AzDtlAutoShutdownPolicy, Get-AzDtlAutoStartPolicy, Get-AzDtlVMsPerLabPolicy...}
Script 1.0.0 Az.Dns Core,Desk {Get-AzDnsRecordSet, New-AzDnsRecordConfig, Remove-AzDnsRecordSet, Set-AzDnsRecordSet...}
Script 1.0.0 Az.EventGrid Core,Desk {New-AzEventGridTopic, Get-AzEventGridTopic, Set-AzEventGridTopic, New-AzEventGridTopicKey...}
Script 1.0.0 Az.EventHub Core,Desk {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...}
Script 1.0.0 Az.HDInsight Core,Desk {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...}
Script 1.0.0 Az.IotHub Core,Desk {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...}
Script 1.0.0 Az.KeyVault Core,Desk {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...}
Script 1.0.0 Az.LogicApp Core,Desk {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountCallbackUrl, Get-AzIntegrationAccountCertificate, Get-AzIntegrationAccount...}
Script 1.0.0 Az.MachineLearning Core,Desk {Move-AzMlCommitmentAssociation, Get-AzMlCommitmentAssociation, Get-AzMlCommitmentPlanUsageHistory, Remove-AzMlCommitmentPlan...}
Script 1.0.0 Az.MarketplaceOrdering Core,Desk {Get-AzMarketplaceTerms, Set-AzMarketplaceTerms}
Script 1.0.0 Az.Media Core,Desk {Sync-AzMediaServiceStorageKeys, Set-AzMediaServiceKey, Get-AzMediaServiceKeys, Get-AzMediaServiceNameAvailability...}
Script 1.0.0 Az.Monitor Core,Desk {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...}
Script 1.0.0 Az.Network Core,Desk {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzAp...
Script 1.0.0 Az.NotificationHubs Core,Desk {Get-AzNotificationHub, Get-AzNotificationHubAuthorizationRules, Get-AzNotificationHubListKeys, Get-AzNotificationHubPNSCredentials...}
Script 1.0.0 Az.OperationalInsights Core,Desk {New-AzOperationalInsightsAzureActivityLogDataSource, New-AzOperationalInsightsCustomLogDataSource, Disable-AzOperationalInsightsLinuxCustomLogCollection, Disable-Az...
Script 1.0.0 Az.PolicyInsights Core,Desk {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...}
Script 1.0.0 Az.PowerBIEmbedded Core,Desk {Remove-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollectionAccessKeys, Get-AzPowerBIWorkspace...}
Script 1.0.0 Az.RecoveryServices Core,Desk {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...}
Script 1.0.0 Az.RedisCache Core,Desk {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...}
Script 1.0.0 Az.Relay Core,Desk {New-AzRelayNamespace, Get-AzRelayNamespace, Set-AzRelayNamespace, Remove-AzRelayNamespace...}
Script 1.0.0 Az.Resources Core,Desk {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...}
Script 1.0.0 Az.ServiceBus Core,Desk {New-AzServiceBusNamespace, Get-AzServiceBusNamespace, Set-AzServiceBusNamespace, Remove-AzServiceBusNamespace...}
Script 1.0.0 Az.ServiceFabric Core,Desk {Add-AzServiceFabricApplicationCertificate, Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode...}
Script 1.0.0 Az.SignalR Core,Desk {New-AzSignalR, Get-AzSignalR, Get-AzSignalRKey, New-AzSignalRKey...}
Script 1.0.0 Az.Sql Core,Desk {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgrade...
Script 1.0.0 Az.Storage Core,Desk {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...}
Script 1.0.0 Az.StreamAnalytics Core,Desk {Get-AzStreamAnalyticsFunction, Get-AzStreamAnalyticsDefaultFunctionDefinition, New-AzStreamAnalyticsFunction, Remove-AzStreamAnalyticsFunction...}
Script 1.0.0 Az.TrafficManager Core,Desk {Add-AzTrafficManagerCustomHeaderToEndpoint, Remove-AzTrafficManagerCustomHeaderFromEndpoint, Add-AzTrafficManagerCustomHeaderToProfile, Remove-AzTrafficManagerCusto...
Script 1.0.0 Az.Websites Core,Desk {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...}
```
### Environment Data
<!-- Please run $PSVersionTable to get the necessary environment data -->
```powershell
$PSVersionTable
Name Value
---- -----
PSVersion 6.1.1
PSEdition Core
GitCommitId 6.1.1
OS Microsoft Windows 10.0.17763
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
```
### Debug Output
<!-- Please run the above script with $DebugPreference='Continue' and paste the resulting debug stream in the below code block -->
```
New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -TemplateFile .\Mobile.Provisioning.ApiManagementPolicy.ARM.Local.json -TemplateParameterFile .\Mobile.Provisioning.ApiManagement.ARM.Params.Local.json -Mode Incremental
DEBUG: 12:49:29 PM - NewAzureResourceGroupDeploymentCmdlet begin processing with ParameterSet 'ByTemplateFileAndParameterFile'.
DEBUG: 12:49:29 PM - using account id 'matt.frear@blah.co.nz'...
DEBUG: [Common.Authentication]: Authenticating using Account: 'matt.frear@blah.co.nz', environment: 'AzureCloud', tenant: 'e22c8ca7-6fa8-44fb-8918-2d0f869f4858'
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
POST
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/validate?api-version=2018-05-01
Headers:
x-ms-client-request-id : 7e6a6029-f4a7-4a2c-b824-9becc0a17d28
Accept-Language : en-US
Body:
{
"properties": {
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"APIManagementInstanceName": {
"type": "string",
"metadata": {
"description": "The name of the existing API Management instance"
}
}
},
"variables": {},
"resources": [
{
"name": "[concat(parameters('APIManagementInstanceName'), '/wireless-mobile-provisioning-dev/basic-auth-policy')]",
"type": "Microsoft.ApiManagement/service/apis/policies",
"apiVersion": "2017-03-01",
"properties": {
"policyContent": "<policies><inbound><base /><authentication-basic username='blah' password='password' /></inbound><backend><base /></backend><outbound><base /></outbound><on-error><base /></on-error></policies>"
}
}
]
},
"parameters": {
"APIManagementInstanceName": {
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental"
}
}
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-writes: 1199
x-ms-request-id : 80276059-e6ab-42ab-bf2e-013d24d73613
x-ms-correlation-request-id : 80276059-e6ab-42ab-bf2e-013d24d73613
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234931Z:80276059-e6ab-42ab-bf2e-013d24d73613
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:30 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Succeeded",
"timestamp": "2019-01-21T23:49:31.1940415Z",
"duration": "PT0S",
"correlationId": "80276059-e6ab-42ab-bf2e-013d24d73613",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": [],
"validatedResources": [
{
"apiVersion": "2017-03-01",
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.ApiManagement/service/tpwapimgmtdev/apis/wireless-mobile-provisioning-dev/policies/basic-auth-policy",
"name": "tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy",
"type": "Microsoft.ApiManagement/service/apis/policies",
"properties": {
"policyContent": "<policies><inbound><base /><authentication-basic username='blah' password='bassword' /></inbound><backend><base /></backend><outbound><base /></outbound><on-error><base /></on-error></policies>"
}
}
]
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
PUT
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : ddf0fb8f-3a68-4f3e-819a-c3aa9cd396df
Accept-Language : en-US
Body:
{
"properties": {
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"APIManagementInstanceName": {
"type": "string",
"metadata": {
"description": "The name of the existing API Management instance"
}
}
},
"variables": {},
"resources": [
{
"name": "[concat(parameters('APIManagementInstanceName'), '/wireless-mobile-provisioning-dev/basic-auth-policy')]",
"type": "Microsoft.ApiManagement/service/apis/policies",
"apiVersion": "2017-03-01",
"properties": {
"policyContent": "<policies><inbound><base /><authentication-basic username='blah' password='password' /></inbound><backend><base /></backend><outbound><base /></outbound><on-error><base /></on-error></policies>"
}
}
]
},
"parameters": {
"APIManagementInstanceName": {
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental"
}
}
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
Azure-AsyncOperation : https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operationStatuses/08586534923127259919?api-version=2018-05-01
x-ms-ratelimit-remaining-subscription-writes: 1199
x-ms-request-id : c1846720-40a5-4975-89d2-c5bc1b7658b8
x-ms-correlation-request-id : c1846720-40a5-4975-89d2-c5bc1b7658b8
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234932Z:c1846720-40a5-4975-89d2-c5bc1b7658b8
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:32 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Accepted",
"timestamp": "2019-01-21T23:49:32.9015515Z",
"duration": "PT0.1499321S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": []
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations?api-version=2018-05-01
Headers:
x-ms-client-request-id : e5d66a9e-2742-42a3-bc06-c88500f93c65
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11998
x-ms-request-id : 52798fa3-e810-4039-b96d-0ba7f16993e2
x-ms-correlation-request-id : 52798fa3-e810-4039-b96d-0ba7f16993e2
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234938Z:52798fa3-e810-4039-b96d-0ba7f16993e2
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:37 GMT
Body:
{
"value": []
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : 6d51aefc-8232-433e-9406-16b05b02ad9b
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
Retry-After : 5
x-ms-ratelimit-remaining-subscription-reads: 11997
x-ms-request-id : de07b520-7072-47ae-b73f-a11bccbb16b1
x-ms-correlation-request-id : de07b520-7072-47ae-b73f-a11bccbb16b1
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234938Z:de07b520-7072-47ae-b73f-a11bccbb16b1
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:37 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Running",
"timestamp": "2019-01-21T23:49:35.0298383Z",
"duration": "PT2.2782189S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": []
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations?api-version=2018-05-01
Headers:
x-ms-client-request-id : f8b15bd1-fc7d-4c33-a74a-f565b7f0bf71
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11996
x-ms-request-id : 245891e7-4948-4f2a-8f94-a1a3fcd286ec
x-ms-correlation-request-id : 245891e7-4948-4f2a-8f94-a1a3fcd286ec
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234943Z:245891e7-4948-4f2a-8f94-a1a3fcd286ec
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:43 GMT
Body:
{
"value": [
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations/18376D4394BF0848",
"operationId": "18376D4394BF0848",
"properties": {
"provisioningOperation": "Create",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:41.6866663Z",
"duration": "PT6.4854464S",
"trackingId": "cb0952cc-8b13-4f69-a0f1-b62acc06640f",
"serviceRequestId": "125650b1-039d-4006-9379-af19b2a5bc72",
"statusCode": "NotAcceptable",
"statusMessage": {
"error": {
"code": "BadRequest",
"message": ""
}
},
"targetResource": {
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.ApiManagement/service/tpwapimgmtdev/apis/wireless-mobile-provisioning-dev/policies/basic-auth-policy",
"resourceType": "Microsoft.ApiManagement/service/apis/policies",
"resourceName": "tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy"
}
}
}
]
}
New-AzResourceGroupDeployment : 12:49:43 PM - Resource Microsoft.ApiManagement/service/apis/policies 'tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy' failed with message '{
"error": {
"code": "BadRequest",
"message": ""
}
}'
At line:1 char:1
+ New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -Templat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [New-AzResourceGroupDeployment], Exception
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : fc8d53c3-aeec-4157-92ed-f4668c292138
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
Retry-After : 5
x-ms-ratelimit-remaining-subscription-reads: 11995
x-ms-request-id : c4b6cddd-34ce-4408-a2fa-cdb0cb15e85b
x-ms-correlation-request-id : c4b6cddd-34ce-4408-a2fa-cdb0cb15e85b
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234943Z:c4b6cddd-34ce-4408-a2fa-cdb0cb15e85b
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:43 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Running",
"timestamp": "2019-01-21T23:49:35.0298383Z",
"duration": "PT2.2782189S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": []
}
}
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations?api-version=2018-05-01
Headers:
x-ms-client-request-id : 7fcc1c7d-2bd4-4843-a500-feccb905d461
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11994
x-ms-request-id : fff77f6a-5c80-4b3d-a504-4b78e8f1bee6
x-ms-correlation-request-id : fff77f6a-5c80-4b3d-a504-4b78e8f1bee6
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234948Z:fff77f6a-5c80-4b3d-a504-4b78e8f1bee6
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:48 GMT
Body:
{
"value": [
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations/18376D4394BF0848",
"operationId": "18376D4394BF0848",
"properties": {
"provisioningOperation": "Create",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:41.6866663Z",
"duration": "PT6.4854464S",
"trackingId": "cb0952cc-8b13-4f69-a0f1-b62acc06640f",
"serviceRequestId": "125650b1-039d-4006-9379-af19b2a5bc72",
"statusCode": "NotAcceptable",
"statusMessage": {
"error": {
"code": "BadRequest",
"message": ""
}
},
"targetResource": {
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.ApiManagement/service/tpwapimgmtdev/apis/wireless-mobile-provisioning-dev/policies/basic-auth-policy",
"resourceType": "Microsoft.ApiManagement/service/apis/policies",
"resourceName": "tpwapimgmtdev/wireless-mobile-provisioning-dev/basic-auth-policy"
}
}
},
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local/operations/08586534923127259919",
"operationId": "08586534923127259919",
"properties": {
"provisioningOperation": "EvaluateDeploymentOutput",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:45.151966Z",
"duration": "PT3.4290984S",
"trackingId": "3502030a-e8a0-4036-80ba-5b88a4268946",
"statusCode": "Conflict",
"statusMessage": "Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details."
}
}
]
}
New-AzResourceGroupDeployment : 12:49:48 PM - Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.
At line:1 char:1
+ New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -Templat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [New-AzResourceGroupDeployment], Exception
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet
New-AzResourceGroupDeployment : 12:49:48 PM - Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.
At line:1 char:1
+ New-AzResourceGroupDeployment -ResourceGroupName api-mgmt-rg -Templat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [New-AzResourceGroupDeployment], Exception
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
GET
Absolute Uri:
https://management.azure.com/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourcegroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local?api-version=2018-05-01
Headers:
x-ms-client-request-id : f85fa57e-0ce7-49be-9641-4f641d2735ac
Accept-Language : en-US
Body:
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
OK
Headers:
Cache-Control : no-cache
Pragma : no-cache
x-ms-ratelimit-remaining-subscription-reads: 11993
x-ms-request-id : 214b4cc1-0e70-43a9-b7ad-207248b64e5e
x-ms-correlation-request-id : 214b4cc1-0e70-43a9-b7ad-207248b64e5e
x-ms-routing-request-id : AUSTRALIAEAST:20190121T234948Z:214b4cc1-0e70-43a9-b7ad-207248b64e5e
Strict-Transport-Security : max-age=31536000; includeSubDomains
X-Content-Type-Options : nosniff
Date : Mon, 21 Jan 2019 23:49:48 GMT
Body:
{
"id": "/subscriptions/f2b1b88a-3e07-4528-a9e1-99a96d8b95f4/resourceGroups/api-mgmt-rg/providers/Microsoft.Resources/deployments/Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"name": "Mobile.Provisioning.ApiManagementPolicy.ARM.Local",
"properties": {
"templateHash": "2028037340681726330",
"parameters": {
"apiManagementInstanceName": {
"type": "String",
"value": "tpwapimgmtdev"
}
},
"mode": "Incremental",
"provisioningState": "Failed",
"timestamp": "2019-01-21T23:49:45.2220986Z",
"duration": "PT12.4704792S",
"correlationId": "c1846720-40a5-4975-89d2-c5bc1b7658b8",
"providers": [
{
"namespace": "Microsoft.ApiManagement",
"resourceTypes": [
{
"resourceType": "service/apis/policies",
"locations": [
null
]
}
]
}
],
"dependencies": [],
"error": {
"code": "DeploymentFailed",
"message": "At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.",
"details": [
{
"code": "NotAcceptable",
"message": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"\"\r\n }\r\n}"
}
]
}
}
}
DeploymentName : Mobile.Provisioning.ApiManagementPolicy.ARM.Local
ResourceGroupName : api-mgmt-rg
ProvisioningState : Failed
Timestamp : 1/21/2019 11:49:45 PM
Mode : Incremental
TemplateLink :
Parameters :
Name Type Value
=============== ========================= ==========
apiManagementInstanceName String tpwapimgmtdev
Outputs :
DeploymentDebugLogLevel :
DEBUG: AzureQoSEvent: CommandName - New-AzResourceGroupDeployment; IsSuccess - False; Duration - 00:00:19.0177127; Exception - System.Exception: 12:49:48 PM - Template output evaluation skipped: at least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.;
DEBUG: Finish sending metric.
DEBUG: 12:49:49 PM - NewAzureResourceGroupDeploymentCmdlet end processing.
DEBUG: 12:49:49 PM - NewAzureResourceGroupDeploymentCmdlet end processing.
```
| non_test | new azresourcegroupdeployment unable to add api management policy if this issue is a bug report upgrade to the latest version of az and verify you are able to reproduce the issue you can install the latest version of az from the powershell gallery you can also install the latest version from the releases section ensure that you repro the issue with debugpreference continue to receive the debug stream if this bug involves an exception being thrown please run resolve azerror to receive extended information on the error fill out the below template if this issue is not a bug report please remove the below template description i cannot figure out how to add an azure api management policy using new azresourcegroupdeployment new azresourcegroupdeployment displays no useful information when an error is returned this might be an issue with the azure rest api itself but i can t find how to raise an issue for that can someone tell me the error returned is unhelpful error code badrequest message script steps for reproduction powershell new azresourcegroupdeployment resourcegroupname api mgmt rg templatefile mobile provisioning apimanagementpolicy arm local json templateparameterfile mobile provisioning apimanagement arm params local json mode incremental where the template contains the following schema contentversion parameters apimanagementinstancename type string metadata description the name of the existing api management instance variables resources name type microsoft apimanagement service apis policies apiversion properties policycontent module version powershell get module listavailable script az accounts core desk disable azdatacollection disable azcontextautosave enable azdatacollection enable azcontextautosave script az aks core desk get azaks new azaks remove azaks import azakscredential script az analysisservices core desk resume azanalysisservicesserver suspend azanalysisservicesserver get azanalysisservicesserver remove azanalysisservicesserver script az apimanagement core desk add azapimanagementregion get azapimanagementssotoken new azapimanagementcustomhostnameconfiguration new azapimanagementsystemcertificate script az applicationinsights core desk get azapplicationinsights new azapplicationinsights remove azapplicationinsights set azapplicationinsightspricingplan script az automation core desk get azautomationhybridworkergroup remove azautomationhybridworkergroup get azautomationjoboutputrecord import azautomationdscnodeconfiguration script az batch core desk remove azbatchaccount get azbatchaccount get azbatchaccountkeys new azbatchaccount script az billing core desk get azbillinginvoice get azbillingperiod get azenrollmentaccount get azconsumptionbudget script az cdn core desk get azcdnprofile get azcdnprofilessourl new azcdnprofile remove azcdnprofile script az cognitiveservices core desk get azcognitiveservicesaccount get azcognitiveservicesaccountkey get azcognitiveservicesaccountskus get azcognitiveservicesaccounttype script az compute core desk remove azavailabilityset get azavailabilityset new azavailabilityset update azavailabilityset script az containerinstance core desk new azcontainergroup get azcontainergroup remove azcontainergroup get azcontainerinstancelog script az containerregistry core desk new azcontainerregistry get azcontainerregistry update azcontainerregistry remove azcontainerregistry script az datafactory core desk set update get remove script az datalakeanalytics core desk get azdatalakeanalyticsdatasource new azdatalakeanalyticscatalogcredential remove azdatalakeanalyticscatalogcredential set azdatalakeanalyticscatalogcredential script az datalakestore core desk get azdatalakestoretrustedidprovider remove azdatalakestoretrustedidprovider remove azdatalakestorefirewallrule set azdatalakestoretrustedidprovider script az devtestlabs core desk get azdtlallowedvmsizespolicy get azdtlautoshutdownpolicy get azdtlautostartpolicy get azdtlvmsperlabpolicy script az dns core desk get azdnsrecordset new azdnsrecordconfig remove azdnsrecordset set azdnsrecordset script az eventgrid core desk new azeventgridtopic get azeventgridtopic set azeventgridtopic new azeventgridtopickey script az eventhub core desk new azeventhubnamespace get azeventhubnamespace set azeventhubnamespace remove azeventhubnamespace script az hdinsight core desk get azhdinsightjob new azhdinsightsqoopjobdefinition wait azhdinsightjob new azhdinsightstreamingmapreducejobdefinition script az iothub core desk add aziothubkey get aziothubeventhubconsumergroup get aziothubconnectionstring get aziothubjob script az keyvault core desk add azkeyvaultcertificate update azkeyvaultcertificate stop azkeyvaultcertificateoperation get azkeyvaultcertificateoperation script az logicapp core desk get azintegrationaccountagreement get azintegrationaccountcallbackurl get azintegrationaccountcertificate get azintegrationaccount script az machinelearning core desk move azmlcommitmentassociation get azmlcommitmentassociation get azmlcommitmentplanusagehistory remove azmlcommitmentplan script az marketplaceordering core desk get azmarketplaceterms set azmarketplaceterms script az media core desk sync azmediaservicestoragekeys set azmediaservicekey get azmediaservicekeys get azmediaservicenameavailability script az monitor core desk get azmetricdefinition get azmetric remove azlogprofile get azlogprofile script az network core desk add azapplicationgatewayauthenticationcertificate get azapplicationgatewayauthenticationcertificate new azapplicationgatewayauthenticationcertificate remove azap script az notificationhubs core desk get aznotificationhub get aznotificationhubauthorizationrules get aznotificationhublistkeys get aznotificationhubpnscredentials script az operationalinsights core desk new azoperationalinsightsazureactivitylogdatasource new azoperationalinsightscustomlogdatasource disable azoperationalinsightslinuxcustomlogcollection disable az script az policyinsights core desk get azpolicyevent get azpolicystate get azpolicystatesummary get azpolicyremediation script az powerbiembedded core desk remove azpowerbiworkspacecollection get azpowerbiworkspacecollection get azpowerbiworkspacecollectionaccesskeys get azpowerbiworkspace script az recoveryservices core desk get azrecoveryservicesbackupproperty get azrecoveryservicesvault get azrecoveryservicesvaultsettingsfile new azrecoveryservicesvault script az rediscache core desk remove azrediscachepatchschedule new azrediscachescheduleentry get azrediscachepatchschedule new azrediscachepatchschedule script az relay core desk new azrelaynamespace get azrelaynamespace set azrelaynamespace remove azrelaynamespace script az resources core desk get azprovideroperation remove azroleassignment get azroleassignment new azroleassignment script az servicebus core desk new azservicebusnamespace get azservicebusnamespace set azservicebusnamespace remove azservicebusnamespace script az servicefabric core desk add azservicefabricapplicationcertificate add azservicefabricclientcertificate add azservicefabricclustercertificate add azservicefabricnode script az signalr core desk new azsignalr get azsignalr get azsignalrkey new azsignalrkey script az sql core desk get azsqldatabasetransparentdataencryption get azsqldatabasetransparentdataencryptionactivity set azsqldatabasetransparentdataencryption get azsqldatabaseupgrade script az storage core desk get azstorageaccount get azstorageaccountkey new azstorageaccount new azstorageaccountkey script az streamanalytics core desk get azstreamanalyticsfunction get azstreamanalyticsdefaultfunctiondefinition new azstreamanalyticsfunction remove azstreamanalyticsfunction script az trafficmanager core desk add aztrafficmanagercustomheadertoendpoint remove aztrafficmanagercustomheaderfromendpoint add aztrafficmanagercustomheadertoprofile remove aztrafficmanagercusto script az websites core desk get azappserviceplan set azappserviceplan new azappserviceplan remove azappserviceplan environment data powershell psversiontable name value psversion psedition core gitcommitid os microsoft windows platform pscompatibleversions psremotingprotocolversion serializationversion wsmanstackversion debug output new azresourcegroupdeployment resourcegroupname api mgmt rg templatefile mobile provisioning apimanagementpolicy arm local json templateparameterfile mobile provisioning apimanagement arm params local json mode incremental debug pm newazureresourcegroupdeploymentcmdlet begin processing with parameterset bytemplatefileandparameterfile debug pm using account id matt frear blah co nz debug authenticating using account matt frear blah co nz environment azurecloud tenant debug http request http method post absolute uri headers x ms client request id accept language en us body properties template schema contentversion parameters apimanagementinstancename type string metadata description the name of the existing api management instance variables resources name type microsoft apimanagement service apis policies apiversion properties policycontent parameters apimanagementinstancename value tpwapimgmtdev mode incremental debug http response status code ok headers cache control no cache pragma no cache x ms ratelimit remaining subscription writes x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local name mobile provisioning apimanagementpolicy arm local properties templatehash parameters apimanagementinstancename type string value tpwapimgmtdev mode incremental provisioningstate succeeded timestamp duration correlationid providers namespace microsoft apimanagement resourcetypes resourcetype service apis policies locations null dependencies validatedresources apiversion id subscriptions resourcegroups api mgmt rg providers microsoft apimanagement service tpwapimgmtdev apis wireless mobile provisioning dev policies basic auth policy name tpwapimgmtdev wireless mobile provisioning dev basic auth policy type microsoft apimanagement service apis policies properties policycontent debug http request http method put absolute uri headers x ms client request id accept language en us body properties template schema contentversion parameters apimanagementinstancename type string metadata description the name of the existing api management instance variables resources name type microsoft apimanagement service apis policies apiversion properties policycontent parameters apimanagementinstancename value tpwapimgmtdev mode incremental debug http response status code ok headers cache control no cache pragma no cache azure asyncoperation x ms ratelimit remaining subscription writes x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local name mobile provisioning apimanagementpolicy arm local properties templatehash parameters apimanagementinstancename type string value tpwapimgmtdev mode incremental provisioningstate accepted timestamp duration correlationid providers namespace microsoft apimanagement resourcetypes resourcetype service apis policies locations null dependencies debug http request http method get absolute uri headers x ms client request id accept language en us body debug http response status code ok headers cache control no cache pragma no cache x ms ratelimit remaining subscription reads x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body value debug http request http method get absolute uri headers x ms client request id accept language en us body debug http response status code ok headers cache control no cache pragma no cache retry after x ms ratelimit remaining subscription reads x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local name mobile provisioning apimanagementpolicy arm local properties templatehash parameters apimanagementinstancename type string value tpwapimgmtdev mode incremental provisioningstate running timestamp duration correlationid providers namespace microsoft apimanagement resourcetypes resourcetype service apis policies locations null dependencies debug http request http method get absolute uri headers x ms client request id accept language en us body debug http response status code ok headers cache control no cache pragma no cache x ms ratelimit remaining subscription reads x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body value id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local operations operationid properties provisioningoperation create provisioningstate failed timestamp duration trackingid servicerequestid statuscode notacceptable statusmessage error code badrequest message targetresource id subscriptions resourcegroups api mgmt rg providers microsoft apimanagement service tpwapimgmtdev apis wireless mobile provisioning dev policies basic auth policy resourcetype microsoft apimanagement service apis policies resourcename tpwapimgmtdev wireless mobile provisioning dev basic auth policy new azresourcegroupdeployment pm resource microsoft apimanagement service apis policies tpwapimgmtdev wireless mobile provisioning dev basic auth policy failed with message error code badrequest message at line char new azresourcegroupdeployment resourcegroupname api mgmt rg templat categoryinfo notspecified exception fullyqualifiederrorid microsoft azure commands resourcemanager cmdlets implementation newazureresourcegroupdeploymentcmdlet debug http request http method get absolute uri headers x ms client request id aeec accept language en us body debug http response status code ok headers cache control no cache pragma no cache retry after x ms ratelimit remaining subscription reads x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local name mobile provisioning apimanagementpolicy arm local properties templatehash parameters apimanagementinstancename type string value tpwapimgmtdev mode incremental provisioningstate running timestamp duration correlationid providers namespace microsoft apimanagement resourcetypes resourcetype service apis policies locations null dependencies debug http request http method get absolute uri headers x ms client request id accept language en us body debug http response status code ok headers cache control no cache pragma no cache x ms ratelimit remaining subscription reads x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body value id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local operations operationid properties provisioningoperation create provisioningstate failed timestamp duration trackingid servicerequestid statuscode notacceptable statusmessage error code badrequest message targetresource id subscriptions resourcegroups api mgmt rg providers microsoft apimanagement service tpwapimgmtdev apis wireless mobile provisioning dev policies basic auth policy resourcetype microsoft apimanagement service apis policies resourcename tpwapimgmtdev wireless mobile provisioning dev basic auth policy id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local operations operationid properties provisioningoperation evaluatedeploymentoutput provisioningstate failed timestamp duration trackingid statuscode conflict statusmessage template output evaluation skipped at least one resource deployment operation failed please list deployment operations for details please see for usage details new azresourcegroupdeployment pm template output evaluation skipped at least one resource deployment operation failed please list deployment operations for details please see for usage details at line char new azresourcegroupdeployment resourcegroupname api mgmt rg templat categoryinfo notspecified exception fullyqualifiederrorid microsoft azure commands resourcemanager cmdlets implementation newazureresourcegroupdeploymentcmdlet new azresourcegroupdeployment pm template output evaluation skipped at least one resource deployment operation failed please list deployment operations for details please see for usage details at line char new azresourcegroupdeployment resourcegroupname api mgmt rg templat categoryinfo notspecified exception fullyqualifiederrorid microsoft azure commands resourcemanager cmdlets implementation newazureresourcegroupdeploymentcmdlet debug http request http method get absolute uri headers x ms client request id accept language en us body debug http response status code ok headers cache control no cache pragma no cache x ms ratelimit remaining subscription reads x ms request id x ms correlation request id x ms routing request id australiaeast strict transport security max age includesubdomains x content type options nosniff date mon jan gmt body id subscriptions resourcegroups api mgmt rg providers microsoft resources deployments mobile provisioning apimanagementpolicy arm local name mobile provisioning apimanagementpolicy arm local properties templatehash parameters apimanagementinstancename type string value tpwapimgmtdev mode incremental provisioningstate failed timestamp duration correlationid providers namespace microsoft apimanagement resourcetypes resourcetype service apis policies locations null dependencies error code deploymentfailed message at least one resource deployment operation failed please list deployment operations for details please see for usage details details code notacceptable message r n error r n code badrequest r n message r n r n deploymentname mobile provisioning apimanagementpolicy arm local resourcegroupname api mgmt rg provisioningstate failed timestamp pm mode incremental templatelink parameters name type value apimanagementinstancename string tpwapimgmtdev outputs deploymentdebugloglevel debug azureqosevent commandname new azresourcegroupdeployment issuccess false duration exception system exception pm template output evaluation skipped at least one resource deployment operation failed please list deployment operations for details please see for usage details debug finish sending metric debug pm newazureresourcegroupdeploymentcmdlet end processing debug pm newazureresourcegroupdeploymentcmdlet end processing | 0 |
96,888 | 8,636,005,517 | IssuesEvent | 2018-11-23 04:03:20 | elastic/elasticsearch | https://api.github.com/repos/elastic/elasticsearch | closed | ExplainLifecycleRequestTests.testEqualsAndHashcode fails on master | :Core/Features/ILM >test-failure | https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+intake/276/console
this reproduces
```
./gradlew :client:rest-high-level:test \
-Dtests.seed=DA450AA7DCF525A1 \
-Dtests.class=org.elasticsearch.client.indexlifecycle.ExplainLifecycleRequestTests \
-Dtests.method="testEqualsAndHashcode" \
-Dtests.security.manager=true \
-Dtests.locale=be-BY \
-Dtests.timezone=Atlantic/Cape_Verde \
-Dcompiler.java=11 \
-Druntime.java=8
```
@talevy seems like you ventured last in these nooks , mind taking a look? | 1.0 | ExplainLifecycleRequestTests.testEqualsAndHashcode fails on master - https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+intake/276/console
this reproduces
```
./gradlew :client:rest-high-level:test \
-Dtests.seed=DA450AA7DCF525A1 \
-Dtests.class=org.elasticsearch.client.indexlifecycle.ExplainLifecycleRequestTests \
-Dtests.method="testEqualsAndHashcode" \
-Dtests.security.manager=true \
-Dtests.locale=be-BY \
-Dtests.timezone=Atlantic/Cape_Verde \
-Dcompiler.java=11 \
-Druntime.java=8
```
@talevy seems like you ventured last in these nooks , mind taking a look? | test | explainlifecyclerequesttests testequalsandhashcode fails on master this reproduces gradlew client rest high level test dtests seed dtests class org elasticsearch client indexlifecycle explainlifecyclerequesttests dtests method testequalsandhashcode dtests security manager true dtests locale be by dtests timezone atlantic cape verde dcompiler java druntime java talevy seems like you ventured last in these nooks mind taking a look | 1 |
150,559 | 11,966,285,957 | IssuesEvent | 2020-04-06 02:53:19 | samiha-rahman/soen390 | https://api.github.com/repos/samiha-rahman/soen390 | opened | AT-11: Find classroom in specific floor | Acceptance Test | As a user, I want to be able to find my classroom on a specific floor in the shortest distance possible.
**Associated epic:** #11
**Acceptance Criteria:**
Step # | Execution Procedure or Input | Expected Results/Outputs | Passed/Failed
--- | --- | --- | ---
1 | User inputs a starting classroom and a destination classroom | Path from starting point to end destination is clearly displayed on the indoor map | Passed | 1.0 | AT-11: Find classroom in specific floor - As a user, I want to be able to find my classroom on a specific floor in the shortest distance possible.
**Associated epic:** #11
**Acceptance Criteria:**
Step # | Execution Procedure or Input | Expected Results/Outputs | Passed/Failed
--- | --- | --- | ---
1 | User inputs a starting classroom and a destination classroom | Path from starting point to end destination is clearly displayed on the indoor map | Passed | test | at find classroom in specific floor as a user i want to be able to find my classroom on a specific floor in the shortest distance possible associated epic acceptance criteria step execution procedure or input expected results outputs passed failed user inputs a starting classroom and a destination classroom path from starting point to end destination is clearly displayed on the indoor map passed | 1 |
133,351 | 10,819,034,401 | IssuesEvent | 2019-11-08 13:32:28 | elastic/kibana | https://api.github.com/repos/elastic/kibana | reopened | Failing test: Chrome UI Functional Tests.test/functional/apps/visualize/_tsvb_chart·ts - visualize app visual builder metric should show correct data with Math Aggregation | Feature:TSVB Team:KibanaApp failed-test skipped-test | A test failed on a tracked branch
```
{ StaleElementReferenceError: stale element reference: element is not attached to the page document
(Session info: headless chrome=77.0.3865.75)
(Driver info: chromedriver=76.0.3809.68 (420c9498db8ce8fcd190a954d51297672c1515d5-refs/branch-heads/3809@{#864}),platform=Linux 4.15.0-1042-gcp x86_64)
at Object.checkLegacyResponse (node_modules/selenium-webdriver/lib/error.js:585:15)
at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:551:13)
at Executor.execute (node_modules/selenium-webdriver/lib/http.js:486:26)
at process._tickCallback (internal/process/next_tick.js:68:7) name: 'StaleElementReferenceError', remoteStacktrace: '' }
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/JOB=kibana-ciGroup6,node=linux-immutable/220/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Chrome UI Functional Tests.test/functional/apps/visualize/_tsvb_chart·ts","test.name":"visualize app visual builder metric should show correct data with Math Aggregation","test.failCount":8}} --> | 2.0 | Failing test: Chrome UI Functional Tests.test/functional/apps/visualize/_tsvb_chart·ts - visualize app visual builder metric should show correct data with Math Aggregation - A test failed on a tracked branch
```
{ StaleElementReferenceError: stale element reference: element is not attached to the page document
(Session info: headless chrome=77.0.3865.75)
(Driver info: chromedriver=76.0.3809.68 (420c9498db8ce8fcd190a954d51297672c1515d5-refs/branch-heads/3809@{#864}),platform=Linux 4.15.0-1042-gcp x86_64)
at Object.checkLegacyResponse (node_modules/selenium-webdriver/lib/error.js:585:15)
at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:551:13)
at Executor.execute (node_modules/selenium-webdriver/lib/http.js:486:26)
at process._tickCallback (internal/process/next_tick.js:68:7) name: 'StaleElementReferenceError', remoteStacktrace: '' }
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/JOB=kibana-ciGroup6,node=linux-immutable/220/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Chrome UI Functional Tests.test/functional/apps/visualize/_tsvb_chart·ts","test.name":"visualize app visual builder metric should show correct data with Math Aggregation","test.failCount":8}} --> | test | failing test chrome ui functional tests test functional apps visualize tsvb chart·ts visualize app visual builder metric should show correct data with math aggregation a test failed on a tracked branch staleelementreferenceerror stale element reference element is not attached to the page document session info headless chrome driver info chromedriver refs branch heads platform linux gcp at object checklegacyresponse node modules selenium webdriver lib error js at parsehttpresponse node modules selenium webdriver lib http js at executor execute node modules selenium webdriver lib http js at process tickcallback internal process next tick js name staleelementreferenceerror remotestacktrace first failure | 1 |
79,724 | 7,723,939,900 | IssuesEvent | 2018-05-24 13:51:34 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | roachtest: upgrade/oldVersion=v2.0.0/nodes=5 failed on master | C-test-failure O-robot | SHA: https://github.com/cockroachdb/cockroach/commits/9c197a359cf35d495425365cd22c3169e8cc0335
Parameters:
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=676291&tab=buildLog
```
cluster.go:468: /home/agent/work/.go/bin/roachprod create teamcity-676291-upgrade-oldversion-v2-0-0-nodes-5 -n 5 --gce-machine-type=n1-standard-4: exit status 1
``` | 1.0 | roachtest: upgrade/oldVersion=v2.0.0/nodes=5 failed on master - SHA: https://github.com/cockroachdb/cockroach/commits/9c197a359cf35d495425365cd22c3169e8cc0335
Parameters:
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=676291&tab=buildLog
```
cluster.go:468: /home/agent/work/.go/bin/roachprod create teamcity-676291-upgrade-oldversion-v2-0-0-nodes-5 -n 5 --gce-machine-type=n1-standard-4: exit status 1
``` | test | roachtest upgrade oldversion nodes failed on master sha parameters failed test cluster go home agent work go bin roachprod create teamcity upgrade oldversion nodes n gce machine type standard exit status | 1 |
216,699 | 24,291,658,580 | IssuesEvent | 2022-09-29 06:41:22 | vasind/try-ember | https://api.github.com/repos/vasind/try-ember | closed | CVE-2021-23364 (Medium) detected in browserslist-4.12.0.tgz | security vulnerability no-issue-activity | ## CVE-2021-23364 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>browserslist-4.12.0.tgz</b></p></summary>
<p>Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset</p>
<p>Library home page: <a href="https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz">https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/@babel/helper-compilation-targets/node_modules/browserslist/package.json</p>
<p>
Dependency Hierarchy:
- ember-cli-stylelint-2.2.0.tgz (Root Library)
- broccoli-stylelint-2.3.0.tgz
- stylelint-9.10.1.tgz
- autoprefixer-9.7.6.tgz
- :x: **browserslist-4.12.0.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The package browserslist from 4.0.0 and before 4.16.5 are vulnerable to Regular Expression Denial of Service (ReDoS) during parsing of queries.
<p>Publish Date: 2021-04-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23364>CVE-2021-23364</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</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: Low
</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-2021-23364">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23364</a></p>
<p>Release Date: 2021-04-28</p>
<p>Fix Resolution (browserslist): 4.16.5</p>
<p>Direct dependency fix Resolution (ember-cli-stylelint): 3.0.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2021-23364 (Medium) detected in browserslist-4.12.0.tgz - ## CVE-2021-23364 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>browserslist-4.12.0.tgz</b></p></summary>
<p>Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset</p>
<p>Library home page: <a href="https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz">https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/@babel/helper-compilation-targets/node_modules/browserslist/package.json</p>
<p>
Dependency Hierarchy:
- ember-cli-stylelint-2.2.0.tgz (Root Library)
- broccoli-stylelint-2.3.0.tgz
- stylelint-9.10.1.tgz
- autoprefixer-9.7.6.tgz
- :x: **browserslist-4.12.0.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The package browserslist from 4.0.0 and before 4.16.5 are vulnerable to Regular Expression Denial of Service (ReDoS) during parsing of queries.
<p>Publish Date: 2021-04-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23364>CVE-2021-23364</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</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: Low
</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-2021-23364">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23364</a></p>
<p>Release Date: 2021-04-28</p>
<p>Fix Resolution (browserslist): 4.16.5</p>
<p>Direct dependency fix Resolution (ember-cli-stylelint): 3.0.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve medium detected in browserslist tgz cve medium severity vulnerability vulnerable library browserslist tgz share target browsers between different front end tools like autoprefixer stylelint and babel env preset library home page a href path to dependency file package json path to vulnerable library node modules babel helper compilation targets node modules browserslist package json dependency hierarchy ember cli stylelint tgz root library broccoli stylelint tgz stylelint tgz autoprefixer tgz x browserslist tgz vulnerable library vulnerability details the package browserslist from and before are vulnerable to regular expression denial of service redos during parsing of queries 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 low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution browserslist direct dependency fix resolution ember cli stylelint step up your open source security game with mend | 0 |
55,622 | 3,074,011,153 | IssuesEvent | 2015-08-20 02:45:48 | RedstoneLamp/RedstoneLamp | https://api.github.com/repos/RedstoneLamp/RedstoneLamp | opened | Players can't see each other build. | Bug Help Wanted High Priority Network v0.11.0 | Players can't see each other build blocks on branch ```anvil-level-support```
This issue has been reproduced on @SuperstarGamer's server, and the RedstoneLamp public testing server. | 1.0 | Players can't see each other build. - Players can't see each other build blocks on branch ```anvil-level-support```
This issue has been reproduced on @SuperstarGamer's server, and the RedstoneLamp public testing server. | non_test | players can t see each other build players can t see each other build blocks on branch anvil level support this issue has been reproduced on superstargamer s server and the redstonelamp public testing server | 0 |
194,299 | 14,674,828,256 | IssuesEvent | 2020-12-30 16:10:24 | github-vet/rangeloop-pointer-findings | https://api.github.com/repos/github-vet/rangeloop-pointer-findings | closed | renproject/mpc: inv/inv_test.go; 3 LoC | fresh test tiny |
Found a possible issue in [renproject/mpc](https://www.github.com/renproject/mpc) at [inv/inv_test.go](https://github.com/renproject/mpc/blob/71f4e68af86fbd95962cbe3424e49127a0a9ee22/inv/inv_test.go#L118-L120)
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.
>
[Click here to see the code in its original context.](https://github.com/renproject/mpc/blob/71f4e68af86fbd95962cbe3424e49127a0a9ee22/inv/inv_test.go#L118-L120)
<details>
<summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary>
```go
for _, vshare := range vshares {
Expect(shamir.IsValid(h, &commitment, &vshare)).To(BeTrue())
}
```
</details>
<details>
<summary>Click here to show extra information the analyzer produced.</summary>
```
No path was found through the callgraph that could lead to a function which writes a pointer argument.
No path was found through the callgraph that could lead to a function which passes a pointer to third-party code.
root signature {IsValid 3} was not found in the callgraph; reference was passed directly to third-party code
```
</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: 71f4e68af86fbd95962cbe3424e49127a0a9ee22
| 1.0 | renproject/mpc: inv/inv_test.go; 3 LoC -
Found a possible issue in [renproject/mpc](https://www.github.com/renproject/mpc) at [inv/inv_test.go](https://github.com/renproject/mpc/blob/71f4e68af86fbd95962cbe3424e49127a0a9ee22/inv/inv_test.go#L118-L120)
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.
>
[Click here to see the code in its original context.](https://github.com/renproject/mpc/blob/71f4e68af86fbd95962cbe3424e49127a0a9ee22/inv/inv_test.go#L118-L120)
<details>
<summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary>
```go
for _, vshare := range vshares {
Expect(shamir.IsValid(h, &commitment, &vshare)).To(BeTrue())
}
```
</details>
<details>
<summary>Click here to show extra information the analyzer produced.</summary>
```
No path was found through the callgraph that could lead to a function which writes a pointer argument.
No path was found through the callgraph that could lead to a function which passes a pointer to third-party code.
root signature {IsValid 3} was not found in the callgraph; reference was passed directly to third-party code
```
</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: 71f4e68af86fbd95962cbe3424e49127a0a9ee22
| test | renproject mpc inv inv 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 click here to show the line s of go which triggered the analyzer go for vshare range vshares expect shamir isvalid h commitment vshare to betrue click here to show extra information the analyzer produced no path was found through the callgraph that could lead to a function which writes a pointer argument no path was found through the callgraph that could lead to a function which passes a pointer to third party code root signature isvalid was not found in the callgraph reference was passed directly to third party code leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 1 |
185,941 | 14,394,532,603 | IssuesEvent | 2020-12-03 01:30:58 | github-vet/rangeclosure-findings | https://api.github.com/repos/github-vet/rangeclosure-findings | closed | Bytom/vapor: vendor/github.com/ugorji/go/codec/codec_test.go; 32 LoC | fresh small test vendored |
Found a possible issue in [Bytom/vapor](https://www.github.com/Bytom/vapor) at [vendor/github.com/ugorji/go/codec/codec_test.go](https://github.com/Bytom/vapor/blob/22935aca7df26afaa19f5147b57d08259fdf7a05/vendor/github.com/ugorji/go/codec/codec_test.go#L1697-L1728)
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.
> function call which takes a reference to r at line 1701 may start a goroutine
[Click here to see the code in its original context.](https://github.com/Bytom/vapor/blob/22935aca7df26afaa19f5147b57d08259fdf7a05/vendor/github.com/ugorji/go/codec/codec_test.go#L1697-L1728)
<details>
<summary>Click here to show the 32 line(s) of Go which triggered the analyzer.</summary>
```go
for _, r := range []RawExt{
{Tag: 99, Value: "9999", Data: []byte("9999")},
} {
e := NewEncoderBytes(&b, h)
e.MustEncode(&r)
// fmt.Printf(">>>> rawext: isnil? %v, %d - %v\n", b == nil, len(b), b)
d := NewDecoderBytes(b, h)
d.MustDecode(&v)
var r2 = r
switch {
case isJson:
r2.Tag = 0
r2.Data = nil
case isCbor:
r2.Data = nil
default:
r2.Value = nil
}
testDeepEqualErr(v, r2, t, "rawext-default")
// switch h.(type) {
// case *JsonHandle:
// testDeepEqualErr(r.Value, v, t, "rawext-json")
// default:
// var r2 = r
// if isValuer {
// r2.Data = nil
// } else {
// r2.Value = nil
// }
// testDeepEqualErr(v, r2, t, "rawext-default")
// }
}
```
</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: 22935aca7df26afaa19f5147b57d08259fdf7a05
| 1.0 | Bytom/vapor: vendor/github.com/ugorji/go/codec/codec_test.go; 32 LoC -
Found a possible issue in [Bytom/vapor](https://www.github.com/Bytom/vapor) at [vendor/github.com/ugorji/go/codec/codec_test.go](https://github.com/Bytom/vapor/blob/22935aca7df26afaa19f5147b57d08259fdf7a05/vendor/github.com/ugorji/go/codec/codec_test.go#L1697-L1728)
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.
> function call which takes a reference to r at line 1701 may start a goroutine
[Click here to see the code in its original context.](https://github.com/Bytom/vapor/blob/22935aca7df26afaa19f5147b57d08259fdf7a05/vendor/github.com/ugorji/go/codec/codec_test.go#L1697-L1728)
<details>
<summary>Click here to show the 32 line(s) of Go which triggered the analyzer.</summary>
```go
for _, r := range []RawExt{
{Tag: 99, Value: "9999", Data: []byte("9999")},
} {
e := NewEncoderBytes(&b, h)
e.MustEncode(&r)
// fmt.Printf(">>>> rawext: isnil? %v, %d - %v\n", b == nil, len(b), b)
d := NewDecoderBytes(b, h)
d.MustDecode(&v)
var r2 = r
switch {
case isJson:
r2.Tag = 0
r2.Data = nil
case isCbor:
r2.Data = nil
default:
r2.Value = nil
}
testDeepEqualErr(v, r2, t, "rawext-default")
// switch h.(type) {
// case *JsonHandle:
// testDeepEqualErr(r.Value, v, t, "rawext-json")
// default:
// var r2 = r
// if isValuer {
// r2.Data = nil
// } else {
// r2.Value = nil
// }
// testDeepEqualErr(v, r2, t, "rawext-default")
// }
}
```
</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: 22935aca7df26afaa19f5147b57d08259fdf7a05
| test | bytom vapor vendor github com ugorji go codec codec 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 function call which takes a reference to r at line may start a goroutine click here to show the line s of go which triggered the analyzer go for r range rawext tag value data byte e newencoderbytes b h e mustencode r fmt printf rawext isnil v d v n b nil len b b d newdecoderbytes b h d mustdecode v var r switch case isjson tag data nil case iscbor data nil default value nil testdeepequalerr v t rawext default switch h type case jsonhandle testdeepequalerr r value v t rawext json default var r if isvaluer data nil else value nil testdeepequalerr v t rawext default leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 1 |
192,384 | 14,615,643,294 | IssuesEvent | 2020-12-22 11:54:40 | WPChill/strong-testimonials | https://api.github.com/repos/WPChill/strong-testimonials | closed | Slider not working properly on firefox | bug can't replicate tested | **Describe the bug**
https://wordpress.org/support/topic/firefox-browser-only-displaying-navigation-controls/
On firefox, even when the respective page in the ticket is opened, more precisely http://duncansdrivingschool.co.uk/ it does not load but after the first refresh it works correctly.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to firefox
2. paste this link http://duncansdrivingschool.co.uk/
3. Scroll down to Testimonial slider
4. See error -> not working
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
https://gyazo.com/d757dec9de4ef08d1249cd06766e8a79
<!-- You can check these boxes once you've created the issue. -->
* Which addons do you have installed:
- [ ] Country Selector
- [ ] Assignment
- [ ] SEO-friendly Markup
- [ ] Custom Properties
- [ ] Advanced Views
- [ ] Spam Control
- [ ] Pro Templates
- [ ] External Platform Importer
- [ ] Custom Form Fields
- [ ] Multiple Forms
<!-- You can check these boxes once you've created the issue. -->
* Which browser is affected (or browsers):
- [ ] Chrome
- [ x] Firefox
- [ ] Safari
- [ ] Other <!-- please specify -->
<!-- You can check these boxes once you've created the issue. -->
* Which device is affected (or devices):
- [ ] Desktop
- [ ] Tablet
- [ ] Mobile
- [ ] Other <!-- please specify -->
| 1.0 | Slider not working properly on firefox - **Describe the bug**
https://wordpress.org/support/topic/firefox-browser-only-displaying-navigation-controls/
On firefox, even when the respective page in the ticket is opened, more precisely http://duncansdrivingschool.co.uk/ it does not load but after the first refresh it works correctly.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to firefox
2. paste this link http://duncansdrivingschool.co.uk/
3. Scroll down to Testimonial slider
4. See error -> not working
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
https://gyazo.com/d757dec9de4ef08d1249cd06766e8a79
<!-- You can check these boxes once you've created the issue. -->
* Which addons do you have installed:
- [ ] Country Selector
- [ ] Assignment
- [ ] SEO-friendly Markup
- [ ] Custom Properties
- [ ] Advanced Views
- [ ] Spam Control
- [ ] Pro Templates
- [ ] External Platform Importer
- [ ] Custom Form Fields
- [ ] Multiple Forms
<!-- You can check these boxes once you've created the issue. -->
* Which browser is affected (or browsers):
- [ ] Chrome
- [ x] Firefox
- [ ] Safari
- [ ] Other <!-- please specify -->
<!-- You can check these boxes once you've created the issue. -->
* Which device is affected (or devices):
- [ ] Desktop
- [ ] Tablet
- [ ] Mobile
- [ ] Other <!-- please specify -->
| test | slider not working properly on firefox describe the bug on firefox even when the respective page in the ticket is opened more precisely it does not load but after the first refresh it works correctly to reproduce steps to reproduce the behavior go to firefox paste this link scroll down to testimonial slider see error not working expected behavior a clear and concise description of what you expected to happen screenshots which addons do you have installed country selector assignment seo friendly markup custom properties advanced views spam control pro templates external platform importer custom form fields multiple forms which browser is affected or browsers chrome firefox safari other which device is affected or devices desktop tablet mobile other | 1 |
49,143 | 6,010,612,624 | IssuesEvent | 2017-06-06 13:35:53 | LDMW/app | https://api.github.com/repos/LDMW/app | closed | Hidden tags that are only in CMS | please-test priority-2 T2h | As an admin, I would like to be able to add tags to the CMS which are not shown to users on London Minds so that in future we can use these to detect users and personalise content for them.
- [x] Ability to a tag to a resource in the CMS which is not seen by the users
Note: there was discussion of having tags that display in the filter sidebar but not on the resources (because they might be too long for example, but this was tabled for now). | 1.0 | Hidden tags that are only in CMS - As an admin, I would like to be able to add tags to the CMS which are not shown to users on London Minds so that in future we can use these to detect users and personalise content for them.
- [x] Ability to a tag to a resource in the CMS which is not seen by the users
Note: there was discussion of having tags that display in the filter sidebar but not on the resources (because they might be too long for example, but this was tabled for now). | test | hidden tags that are only in cms as an admin i would like to be able to add tags to the cms which are not shown to users on london minds so that in future we can use these to detect users and personalise content for them ability to a tag to a resource in the cms which is not seen by the users note there was discussion of having tags that display in the filter sidebar but not on the resources because they might be too long for example but this was tabled for now | 1 |
50,344 | 3,006,337,885 | IssuesEvent | 2015-07-27 09:43:59 | Itseez/opencv | https://api.github.com/repos/Itseez/opencv | opened | GenericIndex lsh parameters wrong | affected: 2.4 auto-transferred bug category: flann priority: high | Transferred from http://code.opencv.org/issues/3038
```
|| caron lee on 2013-05-20 02:14
|| Priority: High
|| Affected: 2.4.5 (latest release)
|| Category: flann
|| Tracker: Bug
|| Difficulty: None
|| PR:
|| Platform: None / None
```
GenericIndex lsh parameters wrong
-----------
```
Code:
cvflann::LshIndexParams params;
pIndex = new GenericIndex<D_L2_float>(feature, params);
I tried the default LshIndexParams constructor or with parameters: LshIndexParams params(xx,xx,xx), but all those lead to a exception in :
modules/flann/include/opencv2/flann/params.h:63
the line is :
return it->second.cast<T>();
When I used gdb to get more information, I found that in the function get_param [modules/flann/include/opencv2/flann/params.h:59]
the params variable was right:
{
...
["key_size"] = {policy = 0xbdec68, object = 0x14},
["multi_probe_level"] = {policy = 0xbdec68, object = 0x2},
["table_number"] = {policy = 0xbdec68, object = 0xc}
}
but when I print the 'it' variable, I got:
p it
$16 = {first = "table_number", second = {policy = , object = }}
the second attribute was missing, and the it->second raised exception.
```
History
-------
##### Andrey Pavlenko on 2013-05-22 07:07
```
- Start date deleted (2013-05-20)
- Priority changed from Blocker to High
- Assignee set to Marius Muja
- Category set to flann
``` | 1.0 | GenericIndex lsh parameters wrong - Transferred from http://code.opencv.org/issues/3038
```
|| caron lee on 2013-05-20 02:14
|| Priority: High
|| Affected: 2.4.5 (latest release)
|| Category: flann
|| Tracker: Bug
|| Difficulty: None
|| PR:
|| Platform: None / None
```
GenericIndex lsh parameters wrong
-----------
```
Code:
cvflann::LshIndexParams params;
pIndex = new GenericIndex<D_L2_float>(feature, params);
I tried the default LshIndexParams constructor or with parameters: LshIndexParams params(xx,xx,xx), but all those lead to a exception in :
modules/flann/include/opencv2/flann/params.h:63
the line is :
return it->second.cast<T>();
When I used gdb to get more information, I found that in the function get_param [modules/flann/include/opencv2/flann/params.h:59]
the params variable was right:
{
...
["key_size"] = {policy = 0xbdec68, object = 0x14},
["multi_probe_level"] = {policy = 0xbdec68, object = 0x2},
["table_number"] = {policy = 0xbdec68, object = 0xc}
}
but when I print the 'it' variable, I got:
p it
$16 = {first = "table_number", second = {policy = , object = }}
the second attribute was missing, and the it->second raised exception.
```
History
-------
##### Andrey Pavlenko on 2013-05-22 07:07
```
- Start date deleted (2013-05-20)
- Priority changed from Blocker to High
- Assignee set to Marius Muja
- Category set to flann
``` | non_test | genericindex lsh parameters wrong transferred from caron lee on priority high affected latest release category flann tracker bug difficulty none pr platform none none genericindex lsh parameters wrong code cvflann lshindexparams params pindex new genericindex feature params i tried the default lshindexparams constructor or with parameters lshindexparams params xx xx xx but all those lead to a exception in modules flann include flann params h the line is return it second cast when i used gdb to get more information i found that in the function get param the params variable was right policy object policy object policy object but when i print the it variable i got p it first table number second policy object the second attribute was missing and the it second raised exception history andrey pavlenko on start date deleted priority changed from blocker to high assignee set to marius muja category set to flann | 0 |
33,277 | 9,086,050,171 | IssuesEvent | 2019-02-18 09:57:44 | tensorflow/tensorflow | https://api.github.com/repos/tensorflow/tensorflow | closed | Compile issue for TF Lite for Android NDK wit TF ops enabled | comp:lite stat:awaiting tensorflower type:build/install | **System information**
- OS Platform and Distribution: Ubuntu 16.04
- TensorFlow installed from (source or binary): source
- TensorFlow version: v1.13.0-rc0
- Python version: 3
- Bazel version: 0.21.0
- GCC/Compiler version (if compiling from source): NDK r14b, r18b, clang
- CUDA/cuDNN version: -
- GPU model and memory: -
- Android SDK/NDK API level: 21
**When trying to build TFlite as shared library for Android with the experimental TF ops enabled, I get an compile error**
**Steps**
Added the Android target to the _tensorflow/lite/BUILD_:
```
cc_binary(
name = "libtensorflowLite.so",
linkopts=[
"-shared",
"-Wl,-soname=libtensorflowLite.so",
],
linkshared = 1,
copts = tflite_copts(),
deps = [
":framework",
"//tensorflow/lite/kernels:builtin_ops",
"//tensorflow/lite/delegates/flex:delegate"
],
)
```
I added the _flex_delegate_ as documented [here](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/using_select_tf_ops.md)
Build with command:
```
bazel build //tensorflow/lite:libtensorflowLite.so --crosstool_top=//external:android/crosstool --cpu=armeabi-v7a --host_crosstool_top=@bazel_tools//tools/cpp:toolchain --cxxopt="-std=c++11"
```
I tried with NDK version r18b and r14b
**Any other info / logs**
This is the important part of the log:
```
[0m [91m[562 / 928] Compiling tensorflow/core/kernels/cwise_op_add_1.cc; 46s local ... (2 actions, 1 running)
[0m [91m[573 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 22s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 152s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 301s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 474s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 672s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 900s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 1223s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 1552s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 1971s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 2415s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 2923s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 3507s local ... (2 actions running)
[0m [91mERROR: /tensorflow_src/tensorflow/core/kernels/BUILD:5770:1: C++ compilation of rule '//tensorflow/core/kernels:android_tensorflow_kernels' failed (Exit 254)
clang: error: unable to execute command: Killed
clang: error: clang frontend command failed due to signal (use -v to see invocation)
Android (4751641 based on r328903) clang version 7.0.2 (https://android.googlesource.com/toolchain/clang 003100370607242ddd5815e4a043907ea9004281) (https://android.googlesource.com/toolchain/llvm 1d739ffb0366421d383e04ff80ec2ee591315116) (based on LLVM 7.0.2svn)
Target: armv7-none-linux-android
Thread model: posix
InstalledDir: external/androidndk/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin
clang: note: diagnostic msg: PLEASE submit a bug report to https://bugs.llvm.org/ and include the crash backtrace, preprocessed source, and associated run script.
clang: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang: note: diagnostic msg: /tmp/cwise_op_mul_1-574804.cpp
clang: note: diagnostic msg: /tmp/cwise_op_mul_1-574804.sh
clang: note: diagnostic msg:
********************
[0m [91mTarget //tensorflow/lite:libtensorflowLite.so failed to build
[0m [91mUse --verbose_failures to see the command lines of failed build steps.
[0m [91mINFO: Elapsed time: 4707.414s, Critical Path: 3871.01s
INFO: 564 processes: 564 local.
[0m [91mFAILED: Build did NOT complete successfully
[0m [91mFAILED: Build did NOT complete successfully
```
I am looking forward to any advice if this is even possible in the current experimental stage
Thanks,
Thomas | 1.0 | Compile issue for TF Lite for Android NDK wit TF ops enabled - **System information**
- OS Platform and Distribution: Ubuntu 16.04
- TensorFlow installed from (source or binary): source
- TensorFlow version: v1.13.0-rc0
- Python version: 3
- Bazel version: 0.21.0
- GCC/Compiler version (if compiling from source): NDK r14b, r18b, clang
- CUDA/cuDNN version: -
- GPU model and memory: -
- Android SDK/NDK API level: 21
**When trying to build TFlite as shared library for Android with the experimental TF ops enabled, I get an compile error**
**Steps**
Added the Android target to the _tensorflow/lite/BUILD_:
```
cc_binary(
name = "libtensorflowLite.so",
linkopts=[
"-shared",
"-Wl,-soname=libtensorflowLite.so",
],
linkshared = 1,
copts = tflite_copts(),
deps = [
":framework",
"//tensorflow/lite/kernels:builtin_ops",
"//tensorflow/lite/delegates/flex:delegate"
],
)
```
I added the _flex_delegate_ as documented [here](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/using_select_tf_ops.md)
Build with command:
```
bazel build //tensorflow/lite:libtensorflowLite.so --crosstool_top=//external:android/crosstool --cpu=armeabi-v7a --host_crosstool_top=@bazel_tools//tools/cpp:toolchain --cxxopt="-std=c++11"
```
I tried with NDK version r18b and r14b
**Any other info / logs**
This is the important part of the log:
```
[0m [91m[562 / 928] Compiling tensorflow/core/kernels/cwise_op_add_1.cc; 46s local ... (2 actions, 1 running)
[0m [91m[573 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 22s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 152s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 301s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 474s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 672s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 900s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 1223s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 1552s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 1971s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 2415s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 2923s local ... (2 actions running)
[0m [91m[574 / 928] Compiling tensorflow/core/kernels/cwise_op_mul_1.cc; 3507s local ... (2 actions running)
[0m [91mERROR: /tensorflow_src/tensorflow/core/kernels/BUILD:5770:1: C++ compilation of rule '//tensorflow/core/kernels:android_tensorflow_kernels' failed (Exit 254)
clang: error: unable to execute command: Killed
clang: error: clang frontend command failed due to signal (use -v to see invocation)
Android (4751641 based on r328903) clang version 7.0.2 (https://android.googlesource.com/toolchain/clang 003100370607242ddd5815e4a043907ea9004281) (https://android.googlesource.com/toolchain/llvm 1d739ffb0366421d383e04ff80ec2ee591315116) (based on LLVM 7.0.2svn)
Target: armv7-none-linux-android
Thread model: posix
InstalledDir: external/androidndk/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin
clang: note: diagnostic msg: PLEASE submit a bug report to https://bugs.llvm.org/ and include the crash backtrace, preprocessed source, and associated run script.
clang: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang: note: diagnostic msg: /tmp/cwise_op_mul_1-574804.cpp
clang: note: diagnostic msg: /tmp/cwise_op_mul_1-574804.sh
clang: note: diagnostic msg:
********************
[0m [91mTarget //tensorflow/lite:libtensorflowLite.so failed to build
[0m [91mUse --verbose_failures to see the command lines of failed build steps.
[0m [91mINFO: Elapsed time: 4707.414s, Critical Path: 3871.01s
INFO: 564 processes: 564 local.
[0m [91mFAILED: Build did NOT complete successfully
[0m [91mFAILED: Build did NOT complete successfully
```
I am looking forward to any advice if this is even possible in the current experimental stage
Thanks,
Thomas | non_test | compile issue for tf lite for android ndk wit tf ops enabled system information os platform and distribution ubuntu tensorflow installed from source or binary source tensorflow version python version bazel version gcc compiler version if compiling from source ndk clang cuda cudnn version gpu model and memory android sdk ndk api level when trying to build tflite as shared library for android with the experimental tf ops enabled i get an compile error steps added the android target to the tensorflow lite build cc binary name libtensorflowlite so linkopts shared wl soname libtensorflowlite so linkshared copts tflite copts deps framework tensorflow lite kernels builtin ops tensorflow lite delegates flex delegate i added the flex delegate as documented build with command bazel build tensorflow lite libtensorflowlite so crosstool top external android crosstool cpu armeabi host crosstool top bazel tools tools cpp toolchain cxxopt std c i tried with ndk version and any other info logs this is the important part of the log compiling tensorflow core kernels cwise op add cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running compiling tensorflow core kernels cwise op mul cc local actions running tensorflow src tensorflow core kernels build c compilation of rule tensorflow core kernels android tensorflow kernels failed exit clang error unable to execute command killed clang error clang frontend command failed due to signal use v to see invocation android based on clang version based on llvm target none linux android thread model posix installeddir external androidndk ndk toolchains llvm prebuilt linux bin clang note diagnostic msg please submit a bug report to and include the crash backtrace preprocessed source and associated run script clang note diagnostic msg please attach the following files to the bug report preprocessed source s and associated run script s are located at clang note diagnostic msg tmp cwise op mul cpp clang note diagnostic msg tmp cwise op mul sh clang note diagnostic msg tensorflow lite libtensorflowlite so failed to build verbose failures to see the command lines of failed build steps elapsed time critical path info processes local build did not complete successfully build did not complete successfully i am looking forward to any advice if this is even possible in the current experimental stage thanks thomas | 0 |
254,664 | 27,405,794,380 | IssuesEvent | 2023-03-01 06:37:46 | okTurtles/group-income | https://api.github.com/repos/okTurtles/group-income | opened | A new way needed to identify GIMessages | Kind:Enhancement Note:Security Kind:Core Note:Contracts | ### Problem
For the discussion on the following link, we pointed that there should be a way to identify GIMessages which is not possible at the moment.
https://github.com/okTurtles/group-income/issues/1487#issuecomment-1449429880
### Solution
Make a static GIMessage function to make a GIMessage instance with a provided `nonce`. The function works almost similar to `createV1_0` but the only different would be using `nonce`. | True | A new way needed to identify GIMessages - ### Problem
For the discussion on the following link, we pointed that there should be a way to identify GIMessages which is not possible at the moment.
https://github.com/okTurtles/group-income/issues/1487#issuecomment-1449429880
### Solution
Make a static GIMessage function to make a GIMessage instance with a provided `nonce`. The function works almost similar to `createV1_0` but the only different would be using `nonce`. | non_test | a new way needed to identify gimessages problem for the discussion on the following link we pointed that there should be a way to identify gimessages which is not possible at the moment solution make a static gimessage function to make a gimessage instance with a provided nonce the function works almost similar to but the only different would be using nonce | 0 |
183,263 | 14,219,601,844 | IssuesEvent | 2020-11-17 13:30:48 | eclipse/openj9 | https://api.github.com/repos/eclipse/openj9 | opened | jdk15 NullPointerException.constructor Cannot invoke "java.lang.Throwable.fillInStackTrace() | jdk15 test failure | https://ci.eclipse.org/openj9/job/Test_openjdk15_j9_sanity.system_ppc64le_linux_Nightly/106/
MauveMultiThreadLoadTest_0
https://ci.eclipse.org/openj9/job/Test_openjdk15_j9_sanity.system_x86-64_linux_Nightly/103/
MauveSingleThreadLoadTest_OpenJ9_0
```
LT 03:29:27.451 - Test failed
LT Failure num. = 1
LT Test number = 2208
LT Test details = 'Mauve[gnu.testlet.java.lang.NullPointerException.constructor]'
LT Suite number = 0
LT Thread number = 13
LT >>> Captured test output >>>
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 0)
LT FAIL: gnu.testlet.java.lang.NullPointerException.constructor (number 1)
LT got java.lang.NullPointerException: Cannot invoke "java.lang.Throwable.fillInStackTrace()" because "this" is null but expected java.lang.NullPointerException
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 2)
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 3)
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 4)
LT FAIL: gnu.testlet.java.lang.NullPointerException.constructor (number 5)
LT got java.lang.NullPointerException: Cannot invoke "java.lang.Throwable.fillInStackTrace()" because "this" is null but expected java.lang.NullPointerException
``` | 1.0 | jdk15 NullPointerException.constructor Cannot invoke "java.lang.Throwable.fillInStackTrace() - https://ci.eclipse.org/openj9/job/Test_openjdk15_j9_sanity.system_ppc64le_linux_Nightly/106/
MauveMultiThreadLoadTest_0
https://ci.eclipse.org/openj9/job/Test_openjdk15_j9_sanity.system_x86-64_linux_Nightly/103/
MauveSingleThreadLoadTest_OpenJ9_0
```
LT 03:29:27.451 - Test failed
LT Failure num. = 1
LT Test number = 2208
LT Test details = 'Mauve[gnu.testlet.java.lang.NullPointerException.constructor]'
LT Suite number = 0
LT Thread number = 13
LT >>> Captured test output >>>
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 0)
LT FAIL: gnu.testlet.java.lang.NullPointerException.constructor (number 1)
LT got java.lang.NullPointerException: Cannot invoke "java.lang.Throwable.fillInStackTrace()" because "this" is null but expected java.lang.NullPointerException
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 2)
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 3)
LT PASS: gnu.testlet.java.lang.NullPointerException.constructor (number 4)
LT FAIL: gnu.testlet.java.lang.NullPointerException.constructor (number 5)
LT got java.lang.NullPointerException: Cannot invoke "java.lang.Throwable.fillInStackTrace()" because "this" is null but expected java.lang.NullPointerException
``` | test | nullpointerexception constructor cannot invoke java lang throwable fillinstacktrace mauvemultithreadloadtest mauvesinglethreadloadtest lt test failed lt failure num lt test number lt test details mauve lt suite number lt thread number lt captured test output lt pass gnu testlet java lang nullpointerexception constructor number lt fail gnu testlet java lang nullpointerexception constructor number lt got java lang nullpointerexception cannot invoke java lang throwable fillinstacktrace because this is null but expected java lang nullpointerexception lt pass gnu testlet java lang nullpointerexception constructor number lt pass gnu testlet java lang nullpointerexception constructor number lt pass gnu testlet java lang nullpointerexception constructor number lt fail gnu testlet java lang nullpointerexception constructor number lt got java lang nullpointerexception cannot invoke java lang throwable fillinstacktrace because this is null but expected java lang nullpointerexception | 1 |
129,723 | 10,583,601,108 | IssuesEvent | 2019-10-08 14:00:31 | ddvlanck/Flemish-URI-Standard-Validator | https://api.github.com/repos/ddvlanck/Flemish-URI-Standard-Validator | closed | Dereferentie controleren | enhancement testing | Nagaan of bij het meegeven van een URI met {type} id als eerste een 303 wordt teruggestuurd die verwijst naar dezelfde URI, maar met {type} doc.
Vervolgens moeten we ook controleren of de URI één van de ondersteunde serializaties teruggeeft (html, jsonld, turtle, n-triples, rdf-xml) | 1.0 | Dereferentie controleren - Nagaan of bij het meegeven van een URI met {type} id als eerste een 303 wordt teruggestuurd die verwijst naar dezelfde URI, maar met {type} doc.
Vervolgens moeten we ook controleren of de URI één van de ondersteunde serializaties teruggeeft (html, jsonld, turtle, n-triples, rdf-xml) | test | dereferentie controleren nagaan of bij het meegeven van een uri met type id als eerste een wordt teruggestuurd die verwijst naar dezelfde uri maar met type doc vervolgens moeten we ook controleren of de uri één van de ondersteunde serializaties teruggeeft html jsonld turtle n triples rdf xml | 1 |
554,922 | 16,442,515,976 | IssuesEvent | 2021-05-20 15:46:00 | CredentialEngine/CredentialRegistry | https://api.github.com/repos/CredentialEngine/CredentialRegistry | closed | Many SPARQL resources do not have credreg:__recordPublishedBy data | Blocker High Priority SPARQL Search bug question | When I do the following query:
```
https://staging.credentialengineregistry.org/sparql/
```
```
PREFIX credreg: <https://credreg.net/> PREFIX ceasn: <https://purl.org/ctdlasn/terms/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT * WHERE { ?id (credreg:__recordPublishedBy) ?recordPublishedBy . } LIMIT 100
```
I get no results. Running the same query against sandbox or production produces results. Using `credreg:__recordOwnedBy` instead of `credreg:__recordPublishedBy` also produces results.
I thought we didn't have a staging instance of SPARQL(?) - What is this actually querying against? | 1.0 | Many SPARQL resources do not have credreg:__recordPublishedBy data - When I do the following query:
```
https://staging.credentialengineregistry.org/sparql/
```
```
PREFIX credreg: <https://credreg.net/> PREFIX ceasn: <https://purl.org/ctdlasn/terms/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT * WHERE { ?id (credreg:__recordPublishedBy) ?recordPublishedBy . } LIMIT 100
```
I get no results. Running the same query against sandbox or production produces results. Using `credreg:__recordOwnedBy` instead of `credreg:__recordPublishedBy` also produces results.
I thought we didn't have a staging instance of SPARQL(?) - What is this actually querying against? | non_test | many sparql resources do not have credreg recordpublishedby data when i do the following query prefix credreg prefix ceasn prefix ceterms select where id credreg recordpublishedby recordpublishedby limit i get no results running the same query against sandbox or production produces results using credreg recordownedby instead of credreg recordpublishedby also produces results i thought we didn t have a staging instance of sparql what is this actually querying against | 0 |
204,716 | 15,528,702,969 | IssuesEvent | 2021-03-13 12:09:19 | esbmc/esbmc | https://api.github.com/repos/esbmc/esbmc | opened | Port CBMC unit tests to ESBMC | test | CBMC contains lots of unit tests using the `catch` framework. Most of those tests could be reused at ESBMC with minor changes. https://github.com/diffblue/cbmc/tree/develop/unit
Not only that would create a good base suite, it would be helpful to create [property-based](https://github.com/emil-e/rapidcheck) tests and fuzzing targets.
Also, although we already use Boost.Test I wouldn't mind changing it to catch2 since it is way simpler to understand. | 1.0 | Port CBMC unit tests to ESBMC - CBMC contains lots of unit tests using the `catch` framework. Most of those tests could be reused at ESBMC with minor changes. https://github.com/diffblue/cbmc/tree/develop/unit
Not only that would create a good base suite, it would be helpful to create [property-based](https://github.com/emil-e/rapidcheck) tests and fuzzing targets.
Also, although we already use Boost.Test I wouldn't mind changing it to catch2 since it is way simpler to understand. | test | port cbmc unit tests to esbmc cbmc contains lots of unit tests using the catch framework most of those tests could be reused at esbmc with minor changes not only that would create a good base suite it would be helpful to create tests and fuzzing targets also although we already use boost test i wouldn t mind changing it to since it is way simpler to understand | 1 |
77,430 | 7,574,312,055 | IssuesEvent | 2018-04-23 20:34:02 | jessicagmarshall/Distribute | https://api.github.com/repos/jessicagmarshall/Distribute | closed | figure out why `await returnProject.staked_R(projectCost, stakingPeriod + (fastForwards * 604800), ipfsHash)` fails the second time it's called in 2-stakedTest.js | tests | Have checked and it's not because the token stakers and reputation stakers run out of tokens / reputation. What else could it be? | 1.0 | figure out why `await returnProject.staked_R(projectCost, stakingPeriod + (fastForwards * 604800), ipfsHash)` fails the second time it's called in 2-stakedTest.js - Have checked and it's not because the token stakers and reputation stakers run out of tokens / reputation. What else could it be? | test | figure out why await returnproject staked r projectcost stakingperiod fastforwards ipfshash fails the second time it s called in stakedtest js have checked and it s not because the token stakers and reputation stakers run out of tokens reputation what else could it be | 1 |
343,995 | 30,705,519,555 | IssuesEvent | 2023-07-27 05:42:13 | microsoft/AzureStorageExplorer | https://api.github.com/repos/microsoft/AzureStorageExplorer | closed | 'Download All…' is enabled under Versions/Snapshots/Tag query view in new blob explorer | :heavy_check_mark: merged 🧪 testing :gear: blobs :beetle: regression | **Storage Explorer Version**: 1.31.0-dev
**Build Number**: 20230726.3
**Branch**: main
**Platform/OS**: Windows 10/Linux Ubuntu 20.04/MacOS Ventura 13.4.1 (Apple M1 Pro)
**Architecture**: x64/x64/arm64
**How Found**: From running test cases
**Regression From**: Previous release (1.30.2)
## Steps to Reproduce ##
1. Expand one storage account -> Blob Containers.
2. Create a blob container -> Right click it -> Click 'Open in React'.
3. Upload one blob -> Right click the blob.
4. Click 'Manage History -> Manage Versions'.
5. Right click the blob -> Click 'Download'.
6. Check whether the action 'Download All...' is disabled.
## Expected Experience ##
The action 'Download All...' is disabled.

## Actual Experience ##
The action 'Download All...' is enabled.

## Additional Context #
1. This issue also reproduces for snapshots view.
2. The action 'Download All...' is enabled when viewing filter by tag query results.

| 1.0 | 'Download All…' is enabled under Versions/Snapshots/Tag query view in new blob explorer - **Storage Explorer Version**: 1.31.0-dev
**Build Number**: 20230726.3
**Branch**: main
**Platform/OS**: Windows 10/Linux Ubuntu 20.04/MacOS Ventura 13.4.1 (Apple M1 Pro)
**Architecture**: x64/x64/arm64
**How Found**: From running test cases
**Regression From**: Previous release (1.30.2)
## Steps to Reproduce ##
1. Expand one storage account -> Blob Containers.
2. Create a blob container -> Right click it -> Click 'Open in React'.
3. Upload one blob -> Right click the blob.
4. Click 'Manage History -> Manage Versions'.
5. Right click the blob -> Click 'Download'.
6. Check whether the action 'Download All...' is disabled.
## Expected Experience ##
The action 'Download All...' is disabled.

## Actual Experience ##
The action 'Download All...' is enabled.

## Additional Context #
1. This issue also reproduces for snapshots view.
2. The action 'Download All...' is enabled when viewing filter by tag query results.

| test | download all… is enabled under versions snapshots tag query view in new blob explorer storage explorer version dev build number branch main platform os windows linux ubuntu macos ventura apple pro architecture how found from running test cases regression from previous release steps to reproduce expand one storage account blob containers create a blob container right click it click open in react upload one blob right click the blob click manage history manage versions right click the blob click download check whether the action download all is disabled expected experience the action download all is disabled actual experience the action download all is enabled additional context this issue also reproduces for snapshots view the action download all is enabled when viewing filter by tag query results | 1 |
78,956 | 7,688,760,467 | IssuesEvent | 2018-05-17 10:26:33 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | ccl/partitionccl: TestInitialPartitioning/multi_col_list_partitioning_-_DEFAULT failed under stress | C-test-failure O-robot | SHA: https://github.com/cockroachdb/cockroach/commits/9376ca50f874e475189b1fe1f7ef8f4e0f6c18b4
Parameters:
```
TAGS=
GOFLAGS=
```
Stress build found a failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=658828&tab=buildLog
```
partition_test.go:1145: error executing 'ALTER INDEX "multi col list partitioning"@primary EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n1]';ALTER PARTITION p34 OF TABLE "multi col list partitioning" EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n2]';ALTER PARTITION p56 OF TABLE "multi col list partitioning" EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n3]';ALTER PARTITION p57 OF TABLE "multi col list partitioning" EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n1]';': pq: constraint "+n3" matches no existing nodes within the cluster - did you enter it correctly?
``` | 1.0 | ccl/partitionccl: TestInitialPartitioning/multi_col_list_partitioning_-_DEFAULT failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/9376ca50f874e475189b1fe1f7ef8f4e0f6c18b4
Parameters:
```
TAGS=
GOFLAGS=
```
Stress build found a failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=658828&tab=buildLog
```
partition_test.go:1145: error executing 'ALTER INDEX "multi col list partitioning"@primary EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n1]';ALTER PARTITION p34 OF TABLE "multi col list partitioning" EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n2]';ALTER PARTITION p56 OF TABLE "multi col list partitioning" EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n3]';ALTER PARTITION p57 OF TABLE "multi col list partitioning" EXPERIMENTAL CONFIGURE ZONE 'constraints: [+n1]';': pq: constraint "+n3" matches no existing nodes within the cluster - did you enter it correctly?
``` | test | ccl partitionccl testinitialpartitioning multi col list partitioning default failed under stress sha parameters tags goflags stress build found a failed test partition test go error executing alter index multi col list partitioning primary experimental configure zone constraints alter partition of table multi col list partitioning experimental configure zone constraints alter partition of table multi col list partitioning experimental configure zone constraints alter partition of table multi col list partitioning experimental configure zone constraints pq constraint matches no existing nodes within the cluster did you enter it correctly | 1 |
128,676 | 27,306,611,456 | IssuesEvent | 2023-02-24 08:48:37 | Joystream/pioneer | https://api.github.com/repos/Joystream/pioneer | closed | Fix icon on the Polkadot Block Explorer Menu item | bug community-dev qa-tested-ready-for-prod jsg-code-review SP:2 release:1.3.0 | ## Context
Explorer menu tab needs to match the designs
Expected:
Default mode:

On Hover:

Currently:

## Scope
- [ ] Update Icon styling to match Figma designs
[Link to Figma > ](https://www.figma.com/file/GlgN8uBRtvtMJtiOsdtDF7/Pioneer-design?node-id=9977%3A407524&t=jcJpTbfVIxdkeUYw-1) | 1.0 | Fix icon on the Polkadot Block Explorer Menu item - ## Context
Explorer menu tab needs to match the designs
Expected:
Default mode:

On Hover:

Currently:

## Scope
- [ ] Update Icon styling to match Figma designs
[Link to Figma > ](https://www.figma.com/file/GlgN8uBRtvtMJtiOsdtDF7/Pioneer-design?node-id=9977%3A407524&t=jcJpTbfVIxdkeUYw-1) | non_test | fix icon on the polkadot block explorer menu item context explorer menu tab needs to match the designs expected default mode on hover currently scope update icon styling to match figma designs | 0 |
48,997 | 7,468,778,664 | IssuesEvent | 2018-04-02 20:14:04 | galenframework/galen | https://api.github.com/repos/galenframework/galen | closed | Allow section filtering by name when checking layout | c3 clarify enhancement needs documentation p3 ready for test | It would be nice to test only a specific section of spec by providing simple section regex
- [x] Implement section filtering in SectionValidation
- [x] Add support for section filter in test suites (GalenPageActionCheck)
- [x] Add support for section filter in JS api
- [x] Add section filter in command line `check` command | 1.0 | Allow section filtering by name when checking layout - It would be nice to test only a specific section of spec by providing simple section regex
- [x] Implement section filtering in SectionValidation
- [x] Add support for section filter in test suites (GalenPageActionCheck)
- [x] Add support for section filter in JS api
- [x] Add section filter in command line `check` command | non_test | allow section filtering by name when checking layout it would be nice to test only a specific section of spec by providing simple section regex implement section filtering in sectionvalidation add support for section filter in test suites galenpageactioncheck add support for section filter in js api add section filter in command line check command | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.