Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 1k | labels stringlengths 4 1.38k | body stringlengths 1 262k | index stringclasses 16 values | text_combine stringlengths 96 262k | label stringclasses 2 values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
234,323 | 7,719,757,541 | IssuesEvent | 2018-05-23 20:29:59 | osulp/Scholars-Archive | https://api.github.com/repos/osulp/Scholars-Archive | closed | Rich (?) text in Review and Approval area | Priority: High | the Review and Approval window allows for text to be added that can be used to communicate along a workflow. Currently, however, the field the text is entered in does not allow for any kind of formatting, line breaks, paragraphs, etc., making long comments and review notes difficult to use.
Could there be a better text editor here? | 1.0 | Rich (?) text in Review and Approval area - the Review and Approval window allows for text to be added that can be used to communicate along a workflow. Currently, however, the field the text is entered in does not allow for any kind of formatting, line breaks, paragraphs, etc., making long comments and review notes difficult to use.
Could there be a better text editor here? | priority | rich text in review and approval area the review and approval window allows for text to be added that can be used to communicate along a workflow currently however the field the text is entered in does not allow for any kind of formatting line breaks paragraphs etc making long comments and review notes difficult to use could there be a better text editor here | 1 |
10,986 | 3,448,857,613 | IssuesEvent | 2015-12-16 10:39:03 | jamoma/JamomaMax | https://api.github.com/repos/jamoma/JamomaMax | opened | mapperBCF.model.maxhelp is not clear | type/documentation | there is a [p address] between the mapperBCF.model and the movie.view but it is not clear how this should work and what is the expected result. | 1.0 | mapperBCF.model.maxhelp is not clear - there is a [p address] between the mapperBCF.model and the movie.view but it is not clear how this should work and what is the expected result. | non_priority | mapperbcf model maxhelp is not clear there is a between the mapperbcf model and the movie view but it is not clear how this should work and what is the expected result | 0 |
259,663 | 19,608,853,517 | IssuesEvent | 2022-01-06 13:04:18 | TheThingsIndustries/lorawan-stack-docs | https://api.github.com/repos/TheThingsIndustries/lorawan-stack-docs | closed | Document enabling & disabling of Storage Integration via the API | documentation | #### Summary
Currently, there are instructions to enable and disable the Storage Integration for applications via Console and CLI. Also, we can enable & disable via the APIs. It would be helpful to document these APIs in the storage integration API documentation.
Ref: https://www.thethingsindustries.com/docs/reference/api/storage_integration/
#### Why do we need this ?
To let users know that storage integration can also be enabled and disabled via APIs.
#### What is already there? What do you see now?
An API to retrieve the data from storage integration.
Ref: https://www.thethingsindustries.com/docs/reference/api/storage_integration/#message:GetStoredApplicationUpRequest
#### What is missing? What do you want to see?
Documentation for Enabling & Disabling the storage integration using API.
**Example cURL commands:**
- Enabling Storage Integration for an application:
```
curl 'https://<domian address>/api/v3/as/applications/<application-id>/packages/associations/100' \
-X 'PUT' \
-H 'content-type: application/json' \
-H 'authorization: Bearer <Application API Key>' \
--data-raw '{"default":{"package_name":"storage-integration"},"field_mask":{"paths":["package_name"]}}'
```
- Disabling Storage Integration of an application:
```
curl 'https://<domian address>/api/v3/as/applications/<application-id>/packages/associations/100' \
-X 'DELETE' \
-H 'accept: application/json' \
-H 'authorization: Bearer <Application API Key>'
```
- Enabling Storage Integration for a device:
```
curl 'https://<domain-address>/api/v3/as/applications/<application-id>/devices/<device-id>/packages/associations/100' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <Application API Key>' \
-H 'Content-Type: application/json' \
--data-raw '{"association": {"package_name": "storage-integration"},"field_mask": {"paths": ["package_name"]}}'
```
- Disabling Storage Integration for a device
```
curl 'https://<domain-address>/api/v3/as/applications/<application-id>/devices/<device-id>/packages/associations/100' \
-X 'DELETE' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <Application API Key>'
```
#### How do you propose to document this?
...
#### Can you do this yourself and submit a Pull Request?
No | 1.0 | Document enabling & disabling of Storage Integration via the API - #### Summary
Currently, there are instructions to enable and disable the Storage Integration for applications via Console and CLI. Also, we can enable & disable via the APIs. It would be helpful to document these APIs in the storage integration API documentation.
Ref: https://www.thethingsindustries.com/docs/reference/api/storage_integration/
#### Why do we need this ?
To let users know that storage integration can also be enabled and disabled via APIs.
#### What is already there? What do you see now?
An API to retrieve the data from storage integration.
Ref: https://www.thethingsindustries.com/docs/reference/api/storage_integration/#message:GetStoredApplicationUpRequest
#### What is missing? What do you want to see?
Documentation for Enabling & Disabling the storage integration using API.
**Example cURL commands:**
- Enabling Storage Integration for an application:
```
curl 'https://<domian address>/api/v3/as/applications/<application-id>/packages/associations/100' \
-X 'PUT' \
-H 'content-type: application/json' \
-H 'authorization: Bearer <Application API Key>' \
--data-raw '{"default":{"package_name":"storage-integration"},"field_mask":{"paths":["package_name"]}}'
```
- Disabling Storage Integration of an application:
```
curl 'https://<domian address>/api/v3/as/applications/<application-id>/packages/associations/100' \
-X 'DELETE' \
-H 'accept: application/json' \
-H 'authorization: Bearer <Application API Key>'
```
- Enabling Storage Integration for a device:
```
curl 'https://<domain-address>/api/v3/as/applications/<application-id>/devices/<device-id>/packages/associations/100' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <Application API Key>' \
-H 'Content-Type: application/json' \
--data-raw '{"association": {"package_name": "storage-integration"},"field_mask": {"paths": ["package_name"]}}'
```
- Disabling Storage Integration for a device
```
curl 'https://<domain-address>/api/v3/as/applications/<application-id>/devices/<device-id>/packages/associations/100' \
-X 'DELETE' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <Application API Key>'
```
#### How do you propose to document this?
...
#### Can you do this yourself and submit a Pull Request?
No | non_priority | document enabling disabling of storage integration via the api summary currently there are instructions to enable and disable the storage integration for applications via console and cli also we can enable disable via the apis it would be helpful to document these apis in the storage integration api documentation ref why do we need this to let users know that storage integration can also be enabled and disabled via apis what is already there what do you see now an api to retrieve the data from storage integration ref what is missing what do you want to see documentation for enabling disabling the storage integration using api example curl commands enabling storage integration for an application curl address api as applications packages associations x put h content type application json h authorization bearer data raw default package name storage integration field mask paths disabling storage integration of an application curl address api as applications packages associations x delete h accept application json h authorization bearer enabling storage integration for a device curl h accept application json h authorization bearer h content type application json data raw association package name storage integration field mask paths disabling storage integration for a device curl x delete h accept application json h authorization bearer how do you propose to document this can you do this yourself and submit a pull request no | 0 |
200,887 | 22,916,011,792 | IssuesEvent | 2022-07-17 01:08:25 | Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2022-0492 | https://api.github.com/repos/Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2022-0492 | closed | CVE-2022-1852 (Medium) detected in linuxlinux-4.19.241 - autoclosed | security vulnerability | ## CVE-2022-1852 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.241</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2022-0492/commit/8d2169763c8858bce8d07fbb569f01ef9b30383b">8d2169763c8858bce8d07fbb569f01ef9b30383b</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/arch/x86/kvm/x86.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A NULL pointer dereference flaw was found in the Linux kernel’s KVM module, which can lead to a denial of service in the x86_emulate_insn in arch/x86/kvm/emulate.c. This flaw occurs while executing an illegal instruction in guest in the Intel CPU.
<p>Publish Date: 2022-06-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-1852>CVE-2022-1852</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: 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://www.linuxkernelcves.com/cves/CVE-2022-1852">https://www.linuxkernelcves.com/cves/CVE-2022-1852</a></p>
<p>Release Date: 2022-05-24</p>
<p>Fix Resolution: v5.10.120,v5.15.45,v5.17.13,v5.18.2,v5.19-rc1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2022-1852 (Medium) detected in linuxlinux-4.19.241 - autoclosed - ## CVE-2022-1852 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.241</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2022-0492/commit/8d2169763c8858bce8d07fbb569f01ef9b30383b">8d2169763c8858bce8d07fbb569f01ef9b30383b</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/arch/x86/kvm/x86.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A NULL pointer dereference flaw was found in the Linux kernel’s KVM module, which can lead to a denial of service in the x86_emulate_insn in arch/x86/kvm/emulate.c. This flaw occurs while executing an illegal instruction in guest in the Intel CPU.
<p>Publish Date: 2022-06-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-1852>CVE-2022-1852</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: 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://www.linuxkernelcves.com/cves/CVE-2022-1852">https://www.linuxkernelcves.com/cves/CVE-2022-1852</a></p>
<p>Release Date: 2022-05-24</p>
<p>Fix Resolution: v5.10.120,v5.15.45,v5.17.13,v5.18.2,v5.19-rc1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve medium detected in linuxlinux autoclosed cve medium severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch master vulnerable source files arch kvm c vulnerability details a null pointer dereference flaw was found in the linux kernel’s kvm module which can lead to a denial of service in the emulate insn in arch kvm emulate c this flaw occurs while executing an illegal instruction in guest in the intel cpu 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 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 mend | 0 |
63,678 | 15,700,994,824 | IssuesEvent | 2021-03-26 10:35:07 | PlasmaLang/plasma | https://api.github.com/repos/PlasmaLang/plasma | closed | Make programs detect if they're in the path | component: build meta: no-domain-knowledge meta: triaged skill: C++ skill: mercury status: blocked type: enhancement | Make programs detect if they're in the path and plzbuild should be able to find the other programs when executed from relative or absolute path. | 1.0 | Make programs detect if they're in the path - Make programs detect if they're in the path and plzbuild should be able to find the other programs when executed from relative or absolute path. | non_priority | make programs detect if they re in the path make programs detect if they re in the path and plzbuild should be able to find the other programs when executed from relative or absolute path | 0 |
678,023 | 23,184,088,298 | IssuesEvent | 2022-08-01 06:43:29 | tradingstrategy-ai/frontend | https://api.github.com/repos/tradingstrategy-ai/frontend | closed | 4h candles rendered incorrect | priority: P1 | Steps to repeat
1. Visit https://tradingstrategy.ai/trading-view/binance/pancakeswap-v2/bnb-busd#4h
<img width="1263" alt="image" src="https://user-images.githubusercontent.com/49922/179684994-3c9f4415-2464-4ba9-a7e4-0b2904eac2ce.png">
You see that every other candle is zero.
You will also see that 4h candles go in wrong steplock:
```
00:00
03:00
0:400
```

The source JSON looks good:
<img width="707" alt="image" src="https://user-images.githubusercontent.com/49922/179684961-75001207-3f89-4483-9622-dce64b02fedf.png">
| 1.0 | 4h candles rendered incorrect - Steps to repeat
1. Visit https://tradingstrategy.ai/trading-view/binance/pancakeswap-v2/bnb-busd#4h
<img width="1263" alt="image" src="https://user-images.githubusercontent.com/49922/179684994-3c9f4415-2464-4ba9-a7e4-0b2904eac2ce.png">
You see that every other candle is zero.
You will also see that 4h candles go in wrong steplock:
```
00:00
03:00
0:400
```

The source JSON looks good:
<img width="707" alt="image" src="https://user-images.githubusercontent.com/49922/179684961-75001207-3f89-4483-9622-dce64b02fedf.png">
| priority | candles rendered incorrect steps to repeat visit img width alt image src you see that every other candle is zero you will also see that candles go in wrong steplock the source json looks good img width alt image src | 1 |
480,129 | 13,823,701,954 | IssuesEvent | 2020-10-13 07:25:18 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.livescore.com - site is not usable | browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important | <!-- @browser: Firefox 65.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/59800 -->
**URL**: https://www.livescore.com/
**Browser / Version**: Firefox 65.0
**Operating System**: Windows 7
**Tested Another Browser**: Yes Other
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20190211233335</li><li>channel: release</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/10/5ab46c23-39c1-48f7-b966-578fdd2f1e18)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.livescore.com - site is not usable - <!-- @browser: Firefox 65.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/59800 -->
**URL**: https://www.livescore.com/
**Browser / Version**: Firefox 65.0
**Operating System**: Windows 7
**Tested Another Browser**: Yes Other
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20190211233335</li><li>channel: release</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/10/5ab46c23-39c1-48f7-b966-578fdd2f1e18)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | site is not usable url browser version firefox operating system windows tested another browser yes other problem type site is not usable description browser unsupported steps to reproduce browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel release hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
795,592 | 28,078,606,717 | IssuesEvent | 2023-03-30 03:17:13 | AY2223S2-CS2103T-T13-2/tp | https://api.github.com/repos/AY2223S2-CS2103T-T13-2/tp | closed | V1.3: UI new features (Styling, fonts, toolbars, keyboard shortcut help prompts, better looking help window/recipe card/recipe popup | type.Enhancement priority.High | - [x] Main Window
- [x] List View
- [x] Recipe Cards
- [ ] Help Window
- [ ] Recipe Form
- [ ] KB shortcut
- [ ] KB Shortcut floating help prompt | 1.0 | V1.3: UI new features (Styling, fonts, toolbars, keyboard shortcut help prompts, better looking help window/recipe card/recipe popup - - [x] Main Window
- [x] List View
- [x] Recipe Cards
- [ ] Help Window
- [ ] Recipe Form
- [ ] KB shortcut
- [ ] KB Shortcut floating help prompt | priority | ui new features styling fonts toolbars keyboard shortcut help prompts better looking help window recipe card recipe popup main window list view recipe cards help window recipe form kb shortcut kb shortcut floating help prompt | 1 |
256,438 | 27,561,673,409 | IssuesEvent | 2023-03-07 22:39:14 | samqws-marketing/amzn-ion-hive-serde | https://api.github.com/repos/samqws-marketing/amzn-ion-hive-serde | closed | CVE-2021-22569 (Medium) detected in protobuf-java-2.5.0.jar - autoclosed | Mend: dependency security vulnerability | ## CVE-2021-22569 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>protobuf-java-2.5.0.jar</b></p></summary>
<p>Protocol Buffers are a way of encoding structured data in an efficient yet
extensible format.</p>
<p>Library home page: <a href="http://code.google.com/p/protobuf">http://code.google.com/p/protobuf</a></p>
<p>Path to dependency file: /serde/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/com.google.protobuf/protobuf-java/2.5.0/a10732c76bfacdbd633a7eb0f7968b1059a65dfa/protobuf-java-2.5.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/com.google.protobuf/protobuf-java/2.5.0/a10732c76bfacdbd633a7eb0f7968b1059a65dfa/protobuf-java-2.5.0.jar</p>
<p>
Dependency Hierarchy:
- hadoop-common-2.7.1.jar (Root Library)
- :x: **protobuf-java-2.5.0.jar** (Vulnerable Library)
<p>Found in base branch: <b>0.3.0</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue in protobuf-java allowed the interleaving of com.google.protobuf.UnknownFieldSet fields in such a way that would be processed out of order. A small malicious payload can occupy the parser for several minutes by creating large numbers of short-lived objects that cause frequent, repeated pauses. We recommend upgrading libraries beyond the vulnerable versions.
<p>Publish Date: 2022-01-10
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-22569>CVE-2021-22569</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-wrvw-hg22-4m67">https://github.com/advisories/GHSA-wrvw-hg22-4m67</a></p>
<p>Release Date: 2022-01-10</p>
<p>Fix Resolution (com.google.protobuf:protobuf-java): 3.16.1</p>
<p>Direct dependency fix Resolution (org.apache.hadoop:hadoop-common): 2.7.2</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
| True | CVE-2021-22569 (Medium) detected in protobuf-java-2.5.0.jar - autoclosed - ## CVE-2021-22569 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>protobuf-java-2.5.0.jar</b></p></summary>
<p>Protocol Buffers are a way of encoding structured data in an efficient yet
extensible format.</p>
<p>Library home page: <a href="http://code.google.com/p/protobuf">http://code.google.com/p/protobuf</a></p>
<p>Path to dependency file: /serde/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/com.google.protobuf/protobuf-java/2.5.0/a10732c76bfacdbd633a7eb0f7968b1059a65dfa/protobuf-java-2.5.0.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/com.google.protobuf/protobuf-java/2.5.0/a10732c76bfacdbd633a7eb0f7968b1059a65dfa/protobuf-java-2.5.0.jar</p>
<p>
Dependency Hierarchy:
- hadoop-common-2.7.1.jar (Root Library)
- :x: **protobuf-java-2.5.0.jar** (Vulnerable Library)
<p>Found in base branch: <b>0.3.0</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue in protobuf-java allowed the interleaving of com.google.protobuf.UnknownFieldSet fields in such a way that would be processed out of order. A small malicious payload can occupy the parser for several minutes by creating large numbers of short-lived objects that cause frequent, repeated pauses. We recommend upgrading libraries beyond the vulnerable versions.
<p>Publish Date: 2022-01-10
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-22569>CVE-2021-22569</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-wrvw-hg22-4m67">https://github.com/advisories/GHSA-wrvw-hg22-4m67</a></p>
<p>Release Date: 2022-01-10</p>
<p>Fix Resolution (com.google.protobuf:protobuf-java): 3.16.1</p>
<p>Direct dependency fix Resolution (org.apache.hadoop:hadoop-common): 2.7.2</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
| non_priority | cve medium detected in protobuf java jar autoclosed cve medium severity vulnerability vulnerable library protobuf java jar protocol buffers are a way of encoding structured data in an efficient yet extensible format library home page a href path to dependency file serde build gradle path to vulnerable library home wss scanner gradle caches modules files com google protobuf protobuf java protobuf java jar home wss scanner gradle caches modules files com google protobuf protobuf java protobuf java jar dependency hierarchy hadoop common jar root library x protobuf java jar vulnerable library found in base branch vulnerability details an issue in protobuf java allowed the interleaving of com google protobuf unknownfieldset fields in such a way that would be processed out of order a small malicious payload can occupy the parser for several minutes by creating large numbers of short lived objects that cause frequent repeated pauses we recommend upgrading libraries beyond the vulnerable versions publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com google protobuf protobuf java direct dependency fix resolution org apache hadoop hadoop common check this box to open an automated fix pr | 0 |
417,453 | 28,110,507,977 | IssuesEvent | 2023-03-31 06:44:39 | chongweiguan/ped | https://api.github.com/repos/chongweiguan/ped | opened | Having clear and exit commands in the middle of the commands related to meetings | severity.Medium type.DocumentationBug | Another UG bug that makes it not well formatted
while reading through the commands relating to meetings, I realised that clear and exit commands are placed in the middle of them
perhaps you can move them towards the end of the UG and mark them as commands that affect QuickContacts as a whole

<!--session: 1680242060967-7b977883-8594-4e18-947b-b7d134a83f6d-->
<!--Version: Web v3.4.7--> | 1.0 | Having clear and exit commands in the middle of the commands related to meetings - Another UG bug that makes it not well formatted
while reading through the commands relating to meetings, I realised that clear and exit commands are placed in the middle of them
perhaps you can move them towards the end of the UG and mark them as commands that affect QuickContacts as a whole

<!--session: 1680242060967-7b977883-8594-4e18-947b-b7d134a83f6d-->
<!--Version: Web v3.4.7--> | non_priority | having clear and exit commands in the middle of the commands related to meetings another ug bug that makes it not well formatted while reading through the commands relating to meetings i realised that clear and exit commands are placed in the middle of them perhaps you can move them towards the end of the ug and mark them as commands that affect quickcontacts as a whole | 0 |
344,149 | 24,799,615,649 | IssuesEvent | 2022-10-24 20:26:01 | microsoftgraph/microsoft-graph-docs | https://api.github.com/repos/microsoftgraph/microsoft-graph-docs | closed | Please mention in the documentation to send entire blob | request: documentation area: intune area: corporate management |
Please mention in the documentation that You cannot edit just one platform via the API (that's restricted to the portal). You have to send the entire blob like the reference article shows
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 59316f14-80cf-ba8a-ad4f-5f98d874196c
* Version Independent ID: dca718f9-4622-9688-f007-f06f86991bec
* Content: [Update deviceEnrollmentPlatformRestrictionsConfiguration - Microsoft Graph v1.0](https://docs.microsoft.com/en-us/graph/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update?view=graph-rest-1.0)
* Content Source: [api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update.md](https://github.com/microsoftgraph/microsoft-graph-docs/blob/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update.md)
* Product: **intune**
* Technology: **microsoft-graph**
* GitHub Login: @dougeby
* Microsoft Alias: **MSGraphDocsVteam** | 1.0 | Please mention in the documentation to send entire blob -
Please mention in the documentation that You cannot edit just one platform via the API (that's restricted to the portal). You have to send the entire blob like the reference article shows
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 59316f14-80cf-ba8a-ad4f-5f98d874196c
* Version Independent ID: dca718f9-4622-9688-f007-f06f86991bec
* Content: [Update deviceEnrollmentPlatformRestrictionsConfiguration - Microsoft Graph v1.0](https://docs.microsoft.com/en-us/graph/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update?view=graph-rest-1.0)
* Content Source: [api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update.md](https://github.com/microsoftgraph/microsoft-graph-docs/blob/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update.md)
* Product: **intune**
* Technology: **microsoft-graph**
* GitHub Login: @dougeby
* Microsoft Alias: **MSGraphDocsVteam** | non_priority | please mention in the documentation to send entire blob please mention in the documentation that you cannot edit just one platform via the api that s restricted to the portal you have to send the entire blob like the reference article shows document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source product intune technology microsoft graph github login dougeby microsoft alias msgraphdocsvteam | 0 |
769,502 | 27,009,623,309 | IssuesEvent | 2023-02-10 14:27:10 | TalaoDAO/AltMe | https://api.github.com/repos/TalaoDAO/AltMe | opened | EBSI : Add ed25519d key for EBSI | Priority | Derive from wallet passphrase . this key is the one we use for did:key today | 1.0 | EBSI : Add ed25519d key for EBSI - Derive from wallet passphrase . this key is the one we use for did:key today | priority | ebsi add key for ebsi derive from wallet passphrase this key is the one we use for did key today | 1 |
273,216 | 20,777,128,386 | IssuesEvent | 2022-03-16 11:33:09 | n-ce/ytify | https://api.github.com/repos/n-ce/ytify | closed | Provide Links to Readme thanks section | documentation help wanted good first issue | In the thanks to list, every title should link to each and every corresponding official website
For example
[youtube.com](https://youtube.com) | 1.0 | Provide Links to Readme thanks section - In the thanks to list, every title should link to each and every corresponding official website
For example
[youtube.com](https://youtube.com) | non_priority | provide links to readme thanks section in the thanks to list every title should link to each and every corresponding official website for example | 0 |
134,901 | 5,239,481,262 | IssuesEvent | 2017-01-31 09:58:45 | rails-girls-summer-of-code/rgsoc-teams | https://api.github.com/repos/rails-girls-summer-of-code/rgsoc-teams | closed | Application Form: Make separate fields about Motivation and Tasks for 1st and 2nd choice Projects | high-priority | The section “Project Goals” in the application form was confusing to some applicants, because the fields did not specifically refer to a first choice or second choice project. As we now wish to involve the mentors more in the application “review”, the students should submit motivation and tasks for both project 1 and project 2.
**Implementation**
- Rename fields “Project1” and “Project2” to “Project (1st choice)” and “Project (2nd choice)” (or similar)
- add new database columns `:why_selected_project2` and `:project_plan2` (or similar) to have extra, separate motivation and task fields for the 2nd choice project. (This is especially required since the mentors will need access to this) Note: these two fields should be optional, as we might have students who do not provide / choose a second project.
- update labels of `:why_selected_project` and `:project_plan` accordingly (specify 1st choice project)
| 1.0 | Application Form: Make separate fields about Motivation and Tasks for 1st and 2nd choice Projects - The section “Project Goals” in the application form was confusing to some applicants, because the fields did not specifically refer to a first choice or second choice project. As we now wish to involve the mentors more in the application “review”, the students should submit motivation and tasks for both project 1 and project 2.
**Implementation**
- Rename fields “Project1” and “Project2” to “Project (1st choice)” and “Project (2nd choice)” (or similar)
- add new database columns `:why_selected_project2` and `:project_plan2` (or similar) to have extra, separate motivation and task fields for the 2nd choice project. (This is especially required since the mentors will need access to this) Note: these two fields should be optional, as we might have students who do not provide / choose a second project.
- update labels of `:why_selected_project` and `:project_plan` accordingly (specify 1st choice project)
| priority | application form make separate fields about motivation and tasks for and choice projects the section “project goals” in the application form was confusing to some applicants because the fields did not specifically refer to a first choice or second choice project as we now wish to involve the mentors more in the application “review” the students should submit motivation and tasks for both project and project implementation rename fields “ ” and “ ” to “project choice ” and “project choice ” or similar add new database columns why selected and project or similar to have extra separate motivation and task fields for the choice project this is especially required since the mentors will need access to this note these two fields should be optional as we might have students who do not provide choose a second project update labels of why selected project and project plan accordingly specify choice project | 1 |
65,464 | 16,358,906,269 | IssuesEvent | 2021-05-14 06:00:00 | tensorflow/tensorflow | https://api.github.com/repos/tensorflow/tensorflow | closed | Documentation instructions on installing tensorflow with CUDA support doesn't work | stalled stat:awaiting response subtype: ubuntu/linux type:build/install type:docs-bug | OS: Ubuntu 18.04
Graphics card: Nvidia 1050Ti
**Problem**
Following the instructions under https://www.tensorflow.org/install/gpu#install_cuda_with_apt gives the following error:
```ssh
...
Unpacking libcudnn7-dev (7.6.4.38-1+cuda10.1) ...
Errors were encountered while processing:
/tmp/apt-dpkg-install-fjAi3S/55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
```
after executing this step
```ssh
sudo apt-get install --no-install-recommends \
> cuda-10-1 \
> libcudnn7=7.6.4.38-1+cuda10.1 \
> libcudnn7-dev=7.6.4.38-1+cuda10.1
```
**Additional Info**
The complete message after running the above command is
```ssh
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libnvidia-common-440 libnvidia-extra-440
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
cuda-command-line-tools-10-1 cuda-compiler-10-1 cuda-cudart-10-1
cuda-cudart-dev-10-1 cuda-cufft-10-1 cuda-cufft-dev-10-1 cuda-cuobjdump-10-1
cuda-cupti-10-1 cuda-curand-10-1 cuda-curand-dev-10-1 cuda-cusolver-10-1
cuda-cusolver-dev-10-1 cuda-cusparse-10-1 cuda-cusparse-dev-10-1
cuda-demo-suite-10-1 cuda-documentation-10-1 cuda-driver-dev-10-1
cuda-drivers cuda-drivers-450 cuda-gdb-10-1 cuda-gpu-library-advisor-10-1
cuda-libraries-10-1 cuda-libraries-dev-10-1 cuda-license-10-1
cuda-license-10-2 cuda-memcheck-10-1 cuda-misc-headers-10-1 cuda-npp-10-1
cuda-npp-dev-10-1 cuda-nsight-10-1 cuda-nsight-compute-10-1
cuda-nsight-systems-10-1 cuda-nvcc-10-1 cuda-nvdisasm-10-1 cuda-nvgraph-10-1
cuda-nvgraph-dev-10-1 cuda-nvjpeg-10-1 cuda-nvjpeg-dev-10-1
cuda-nvml-dev-10-1 cuda-nvprof-10-1 cuda-nvprune-10-1 cuda-nvrtc-10-1
cuda-nvrtc-dev-10-1 cuda-nvtx-10-1 cuda-nvvp-10-1 cuda-runtime-10-1
cuda-samples-10-1 cuda-sanitizer-api-10-1 cuda-toolkit-10-1 cuda-tools-10-1
cuda-visual-tools-10-1 default-jre default-jre-headless libcublas-dev
libcublas10 libnvidia-cfg1-450 libnvidia-common-450 libnvidia-compute-450
libnvidia-decode-450 libnvidia-encode-450 libnvidia-fbc1-450
libnvidia-gl-450 libnvidia-ifr1-450 nsight-compute-2019.5.0
nsight-systems-2019.5.2 nvidia-compute-utils-450 nvidia-dkms-450
nvidia-driver-450 nvidia-kernel-common-450 nvidia-kernel-source-450
nvidia-modprobe nvidia-settings nvidia-utils-450 openjdk-11-jre
openjdk-11-jre-headless xserver-xorg-video-nvidia-450
Suggested packages:
fonts-ipafont-gothic fonts-ipafont-mincho fonts-wqy-microhei
| fonts-wqy-zenhei
The following packages will be REMOVED:
libnvidia-cfg1-440 libnvidia-compute-440 libnvidia-decode-440
libnvidia-encode-440 libnvidia-fbc1-440 libnvidia-fbc1-440:i386
libnvidia-gl-440 libnvidia-ifr1-440 nvidia-compute-utils-440 nvidia-dkms-440
nvidia-driver-430 nvidia-driver-440 nvidia-kernel-common-440
nvidia-kernel-source-440 nvidia-utils-440 xserver-xorg-video-nvidia-440
The following NEW packages will be installed:
cuda-10-1 cuda-command-line-tools-10-1 cuda-compiler-10-1 cuda-cudart-10-1
cuda-cudart-dev-10-1 cuda-cufft-10-1 cuda-cufft-dev-10-1 cuda-cuobjdump-10-1
cuda-cupti-10-1 cuda-curand-10-1 cuda-curand-dev-10-1 cuda-cusolver-10-1
cuda-cusolver-dev-10-1 cuda-cusparse-10-1 cuda-cusparse-dev-10-1
cuda-demo-suite-10-1 cuda-documentation-10-1 cuda-driver-dev-10-1
cuda-drivers cuda-drivers-450 cuda-gdb-10-1 cuda-gpu-library-advisor-10-1
cuda-libraries-10-1 cuda-libraries-dev-10-1 cuda-license-10-1
cuda-license-10-2 cuda-memcheck-10-1 cuda-misc-headers-10-1 cuda-npp-10-1
cuda-npp-dev-10-1 cuda-nsight-10-1 cuda-nsight-compute-10-1
cuda-nsight-systems-10-1 cuda-nvcc-10-1 cuda-nvdisasm-10-1 cuda-nvgraph-10-1
cuda-nvgraph-dev-10-1 cuda-nvjpeg-10-1 cuda-nvjpeg-dev-10-1
cuda-nvml-dev-10-1 cuda-nvprof-10-1 cuda-nvprune-10-1 cuda-nvrtc-10-1
cuda-nvrtc-dev-10-1 cuda-nvtx-10-1 cuda-nvvp-10-1 cuda-runtime-10-1
cuda-samples-10-1 cuda-sanitizer-api-10-1 cuda-toolkit-10-1 cuda-tools-10-1
cuda-visual-tools-10-1 default-jre default-jre-headless libcublas-dev
libcublas10 libcudnn7 libcudnn7-dev libnvidia-cfg1-450 libnvidia-common-450
libnvidia-compute-450 libnvidia-decode-450 libnvidia-encode-450
libnvidia-fbc1-450 libnvidia-gl-450 libnvidia-ifr1-450
nsight-compute-2019.5.0 nsight-systems-2019.5.2 nvidia-compute-utils-450
nvidia-dkms-450 nvidia-driver-450 nvidia-kernel-common-450
nvidia-kernel-source-450 nvidia-modprobe nvidia-settings nvidia-utils-450
openjdk-11-jre openjdk-11-jre-headless xserver-xorg-video-nvidia-450
0 upgraded, 79 newly installed, 16 to remove and 239 not upgraded.
Need to get 0 B/2,205 MB of archives.
After this operation, 4,855 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Extracting templates from packages: 100%
(Reading database ... 294935 files and directories currently installed.)
Removing nvidia-driver-430 (440.59-0ubuntu0.18.04.1) ...
Removing nvidia-driver-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing xserver-xorg-video-nvidia-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-cfg1-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-encode-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-decode-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing nvidia-utils-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-fbc1-440:i386 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-fbc1-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-ifr1-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-gl-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing nvidia-compute-utils-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing nvidia-dkms-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing all DKMS Modules
Done.
INFO:Disable nvidia
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/dell_latitude
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/put_your_quirks_here
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/lenovo_thinkpad
update-initramfs: deferring update (trigger activated)
Removing nvidia-kernel-common-440 (440.82-0ubuntu0~0.18.04.2) ...
update-initramfs: deferring update (trigger activated)
Removing nvidia-kernel-source-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-compute-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Selecting previously unselected package cuda-license-10-1.
(Reading database ... 294368 files and directories currently installed.)
Preparing to unpack .../00-cuda-license-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-license-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-misc-headers-10-1.
Preparing to unpack .../01-cuda-misc-headers-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-misc-headers-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvcc-10-1.
Preparing to unpack .../02-cuda-nvcc-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvcc-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cuobjdump-10-1.
Preparing to unpack .../03-cuda-cuobjdump-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cuobjdump-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvprune-10-1.
Preparing to unpack .../04-cuda-nvprune-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvprune-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-compiler-10-1.
Preparing to unpack .../05-cuda-compiler-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-compiler-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvdisasm-10-1.
Preparing to unpack .../06-cuda-nvdisasm-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvdisasm-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-gdb-10-1.
Preparing to unpack .../07-cuda-gdb-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-gdb-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvprof-10-1.
Preparing to unpack .../08-cuda-nvprof-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvprof-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-sanitizer-api-10-1.
Preparing to unpack .../09-cuda-sanitizer-api-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-sanitizer-api-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-memcheck-10-1.
Preparing to unpack .../10-cuda-memcheck-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-memcheck-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cudart-10-1.
Preparing to unpack .../11-cuda-cudart-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cudart-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-driver-dev-10-1.
Preparing to unpack .../12-cuda-driver-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-driver-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cudart-dev-10-1.
Preparing to unpack .../13-cuda-cudart-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cudart-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cupti-10-1.
Preparing to unpack .../14-cuda-cupti-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cupti-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-gpu-library-advisor-10-1.
Preparing to unpack .../15-cuda-gpu-library-advisor-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-gpu-library-advisor-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvtx-10-1.
Preparing to unpack .../16-cuda-nvtx-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvtx-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-command-line-tools-10-1.
Preparing to unpack .../17-cuda-command-line-tools-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-command-line-tools-10-1 (10.1.243-1) ...
Selecting previously unselected package openjdk-11-jre-headless:amd64.
Preparing to unpack .../18-openjdk-11-jre-headless_11.0.7+10-2ubuntu2~18.04_amd64.deb ...
Unpacking openjdk-11-jre-headless:amd64 (11.0.7+10-2ubuntu2~18.04) ...
Selecting previously unselected package default-jre-headless.
Preparing to unpack .../19-default-jre-headless_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ...
Unpacking default-jre-headless (2:1.11-68ubuntu1~18.04.1) ...
Selecting previously unselected package openjdk-11-jre:amd64.
Preparing to unpack .../20-openjdk-11-jre_11.0.7+10-2ubuntu2~18.04_amd64.deb ...
Unpacking openjdk-11-jre:amd64 (11.0.7+10-2ubuntu2~18.04) ...
Selecting previously unselected package default-jre.
Preparing to unpack .../21-default-jre_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ...
Unpacking default-jre (2:1.11-68ubuntu1~18.04.1) ...
Selecting previously unselected package cuda-nsight-10-1.
Preparing to unpack .../22-cuda-nsight-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nsight-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvvp-10-1.
Preparing to unpack .../23-cuda-nvvp-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvvp-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvrtc-10-1.
Preparing to unpack .../24-cuda-nvrtc-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvrtc-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvrtc-dev-10-1.
Preparing to unpack .../25-cuda-nvrtc-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvrtc-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusolver-10-1.
Preparing to unpack .../26-cuda-cusolver-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusolver-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusolver-dev-10-1.
Preparing to unpack .../27-cuda-cusolver-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusolver-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-license-10-2.
Preparing to unpack .../28-cuda-license-10-2_10.2.89-1_amd64.deb ...
Unpacking cuda-license-10-2 (10.2.89-1) ...
Selecting previously unselected package libcublas10.
Preparing to unpack .../29-libcublas10_10.2.2.89-1_amd64.deb ...
Unpacking libcublas10 (10.2.2.89-1) ...
Selecting previously unselected package libcublas-dev.
Preparing to unpack .../30-libcublas-dev_10.2.2.89-1_amd64.deb ...
Unpacking libcublas-dev (10.2.2.89-1) ...
Selecting previously unselected package cuda-cufft-10-1.
Preparing to unpack .../31-cuda-cufft-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cufft-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cufft-dev-10-1.
Preparing to unpack .../32-cuda-cufft-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cufft-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-curand-10-1.
Preparing to unpack .../33-cuda-curand-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-curand-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-curand-dev-10-1.
Preparing to unpack .../34-cuda-curand-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-curand-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusparse-10-1.
Preparing to unpack .../35-cuda-cusparse-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusparse-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusparse-dev-10-1.
Preparing to unpack .../36-cuda-cusparse-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusparse-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-npp-10-1.
Preparing to unpack .../37-cuda-npp-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-npp-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-npp-dev-10-1.
Preparing to unpack .../38-cuda-npp-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-npp-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvml-dev-10-1.
Preparing to unpack .../39-cuda-nvml-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvml-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvjpeg-10-1.
Preparing to unpack .../40-cuda-nvjpeg-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvjpeg-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvjpeg-dev-10-1.
Preparing to unpack .../41-cuda-nvjpeg-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvjpeg-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package nsight-compute-2019.5.0.
Preparing to unpack .../42-nsight-compute-2019.5.0_2019.5.0.14-1_amd64.deb ...
Unpacking nsight-compute-2019.5.0 (2019.5.0.14-1) ...
Selecting previously unselected package cuda-nsight-compute-10-1.
Preparing to unpack .../43-cuda-nsight-compute-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nsight-compute-10-1 (10.1.243-1) ...
Selecting previously unselected package nsight-systems-2019.5.2.
Preparing to unpack .../44-nsight-systems-2019.5.2_2019.5.2.16-b54ef97_amd64.deb ...
Unpacking nsight-systems-2019.5.2 (2019.5.2.16-b54ef97) ...
Selecting previously unselected package cuda-nsight-systems-10-1.
Preparing to unpack .../45-cuda-nsight-systems-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nsight-systems-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvgraph-10-1.
Preparing to unpack .../46-cuda-nvgraph-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvgraph-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvgraph-dev-10-1.
Preparing to unpack .../47-cuda-nvgraph-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvgraph-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-visual-tools-10-1.
Preparing to unpack .../48-cuda-visual-tools-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-visual-tools-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-tools-10-1.
Preparing to unpack .../49-cuda-tools-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-tools-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-samples-10-1.
Preparing to unpack .../50-cuda-samples-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-samples-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-documentation-10-1.
Preparing to unpack .../51-cuda-documentation-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-documentation-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-libraries-dev-10-1.
Preparing to unpack .../52-cuda-libraries-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-libraries-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-toolkit-10-1.
Preparing to unpack .../53-cuda-toolkit-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-toolkit-10-1 (10.1.243-1) ...
Selecting previously unselected package libnvidia-common-450.
Preparing to unpack .../54-libnvidia-common-450_450.36.06-0ubuntu1_all.deb ...
Checking for existing driver runfile install
/var/lib/dpkg/tmp.ci/preinst: 6: /var/lib/dpkg/tmp.ci/preinst: [[: not found
Unpacking libnvidia-common-450 (450.36.06-0ubuntu1) ...
Preparing to unpack .../55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-compute-450:amd64 (450.36.06-0ubuntu1) ...
dpkg: error processing archive /tmp/apt-dpkg-install-fjAi3S/55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb (--unpack):
trying to overwrite '/usr/lib/x86_64-linux-gnu/libnvidia-allocator.so', which is also in package libnvidia-extra-440:amd64 440.82-0ubuntu0~0.18.04.2
Selecting previously unselected package libnvidia-decode-450:amd64.
Preparing to unpack .../56-libnvidia-decode-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-decode-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-encode-450:amd64.
Preparing to unpack .../57-libnvidia-encode-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-encode-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-fbc1-450:amd64.
Preparing to unpack .../58-libnvidia-fbc1-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-fbc1-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-gl-450:amd64.
Preparing to unpack .../59-libnvidia-gl-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-gl-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-ifr1-450:amd64.
Preparing to unpack .../60-libnvidia-ifr1-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-ifr1-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-compute-utils-450.
Preparing to unpack .../61-nvidia-compute-utils-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-compute-utils-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-kernel-source-450.
Preparing to unpack .../62-nvidia-kernel-source-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-kernel-source-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-kernel-common-450.
Preparing to unpack .../63-nvidia-kernel-common-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-kernel-common-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-dkms-450.
Preparing to unpack .../64-nvidia-dkms-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-dkms-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-utils-450.
Preparing to unpack .../65-nvidia-utils-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-utils-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-cfg1-450:amd64.
Preparing to unpack .../66-libnvidia-cfg1-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-cfg1-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package xserver-xorg-video-nvidia-450.
Preparing to unpack .../67-xserver-xorg-video-nvidia-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking xserver-xorg-video-nvidia-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-driver-450.
Preparing to unpack .../68-nvidia-driver-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-driver-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-modprobe.
Preparing to unpack .../69-nvidia-modprobe_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-modprobe (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-settings.
Preparing to unpack .../70-nvidia-settings_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-settings (450.36.06-0ubuntu1) ...
Selecting previously unselected package cuda-drivers-450.
Preparing to unpack .../71-cuda-drivers-450_450.36.06-1_amd64.deb ...
Unpacking cuda-drivers-450 (450.36.06-1) ...
Selecting previously unselected package cuda-drivers.
Preparing to unpack .../72-cuda-drivers_450.36.06-1_amd64.deb ...
Unpacking cuda-drivers (450.36.06-1) ...
Selecting previously unselected package cuda-libraries-10-1.
Preparing to unpack .../73-cuda-libraries-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-libraries-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-runtime-10-1.
Preparing to unpack .../74-cuda-runtime-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-runtime-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-demo-suite-10-1.
Preparing to unpack .../75-cuda-demo-suite-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-demo-suite-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-10-1.
Preparing to unpack .../76-cuda-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-10-1 (10.1.243-1) ...
Selecting previously unselected package libcudnn7.
Preparing to unpack .../77-libcudnn7_7.6.4.38-1+cuda10.1_amd64.deb ...
Unpacking libcudnn7 (7.6.4.38-1+cuda10.1) ...
Selecting previously unselected package libcudnn7-dev.
Preparing to unpack .../78-libcudnn7-dev_7.6.4.38-1+cuda10.1_amd64.deb ...
Unpacking libcudnn7-dev (7.6.4.38-1+cuda10.1) ...
Errors were encountered while processing:
/tmp/apt-dpkg-install-fjAi3S/55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
``` | 1.0 | Documentation instructions on installing tensorflow with CUDA support doesn't work - OS: Ubuntu 18.04
Graphics card: Nvidia 1050Ti
**Problem**
Following the instructions under https://www.tensorflow.org/install/gpu#install_cuda_with_apt gives the following error:
```ssh
...
Unpacking libcudnn7-dev (7.6.4.38-1+cuda10.1) ...
Errors were encountered while processing:
/tmp/apt-dpkg-install-fjAi3S/55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
```
after executing this step
```ssh
sudo apt-get install --no-install-recommends \
> cuda-10-1 \
> libcudnn7=7.6.4.38-1+cuda10.1 \
> libcudnn7-dev=7.6.4.38-1+cuda10.1
```
**Additional Info**
The complete message after running the above command is
```ssh
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libnvidia-common-440 libnvidia-extra-440
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
cuda-command-line-tools-10-1 cuda-compiler-10-1 cuda-cudart-10-1
cuda-cudart-dev-10-1 cuda-cufft-10-1 cuda-cufft-dev-10-1 cuda-cuobjdump-10-1
cuda-cupti-10-1 cuda-curand-10-1 cuda-curand-dev-10-1 cuda-cusolver-10-1
cuda-cusolver-dev-10-1 cuda-cusparse-10-1 cuda-cusparse-dev-10-1
cuda-demo-suite-10-1 cuda-documentation-10-1 cuda-driver-dev-10-1
cuda-drivers cuda-drivers-450 cuda-gdb-10-1 cuda-gpu-library-advisor-10-1
cuda-libraries-10-1 cuda-libraries-dev-10-1 cuda-license-10-1
cuda-license-10-2 cuda-memcheck-10-1 cuda-misc-headers-10-1 cuda-npp-10-1
cuda-npp-dev-10-1 cuda-nsight-10-1 cuda-nsight-compute-10-1
cuda-nsight-systems-10-1 cuda-nvcc-10-1 cuda-nvdisasm-10-1 cuda-nvgraph-10-1
cuda-nvgraph-dev-10-1 cuda-nvjpeg-10-1 cuda-nvjpeg-dev-10-1
cuda-nvml-dev-10-1 cuda-nvprof-10-1 cuda-nvprune-10-1 cuda-nvrtc-10-1
cuda-nvrtc-dev-10-1 cuda-nvtx-10-1 cuda-nvvp-10-1 cuda-runtime-10-1
cuda-samples-10-1 cuda-sanitizer-api-10-1 cuda-toolkit-10-1 cuda-tools-10-1
cuda-visual-tools-10-1 default-jre default-jre-headless libcublas-dev
libcublas10 libnvidia-cfg1-450 libnvidia-common-450 libnvidia-compute-450
libnvidia-decode-450 libnvidia-encode-450 libnvidia-fbc1-450
libnvidia-gl-450 libnvidia-ifr1-450 nsight-compute-2019.5.0
nsight-systems-2019.5.2 nvidia-compute-utils-450 nvidia-dkms-450
nvidia-driver-450 nvidia-kernel-common-450 nvidia-kernel-source-450
nvidia-modprobe nvidia-settings nvidia-utils-450 openjdk-11-jre
openjdk-11-jre-headless xserver-xorg-video-nvidia-450
Suggested packages:
fonts-ipafont-gothic fonts-ipafont-mincho fonts-wqy-microhei
| fonts-wqy-zenhei
The following packages will be REMOVED:
libnvidia-cfg1-440 libnvidia-compute-440 libnvidia-decode-440
libnvidia-encode-440 libnvidia-fbc1-440 libnvidia-fbc1-440:i386
libnvidia-gl-440 libnvidia-ifr1-440 nvidia-compute-utils-440 nvidia-dkms-440
nvidia-driver-430 nvidia-driver-440 nvidia-kernel-common-440
nvidia-kernel-source-440 nvidia-utils-440 xserver-xorg-video-nvidia-440
The following NEW packages will be installed:
cuda-10-1 cuda-command-line-tools-10-1 cuda-compiler-10-1 cuda-cudart-10-1
cuda-cudart-dev-10-1 cuda-cufft-10-1 cuda-cufft-dev-10-1 cuda-cuobjdump-10-1
cuda-cupti-10-1 cuda-curand-10-1 cuda-curand-dev-10-1 cuda-cusolver-10-1
cuda-cusolver-dev-10-1 cuda-cusparse-10-1 cuda-cusparse-dev-10-1
cuda-demo-suite-10-1 cuda-documentation-10-1 cuda-driver-dev-10-1
cuda-drivers cuda-drivers-450 cuda-gdb-10-1 cuda-gpu-library-advisor-10-1
cuda-libraries-10-1 cuda-libraries-dev-10-1 cuda-license-10-1
cuda-license-10-2 cuda-memcheck-10-1 cuda-misc-headers-10-1 cuda-npp-10-1
cuda-npp-dev-10-1 cuda-nsight-10-1 cuda-nsight-compute-10-1
cuda-nsight-systems-10-1 cuda-nvcc-10-1 cuda-nvdisasm-10-1 cuda-nvgraph-10-1
cuda-nvgraph-dev-10-1 cuda-nvjpeg-10-1 cuda-nvjpeg-dev-10-1
cuda-nvml-dev-10-1 cuda-nvprof-10-1 cuda-nvprune-10-1 cuda-nvrtc-10-1
cuda-nvrtc-dev-10-1 cuda-nvtx-10-1 cuda-nvvp-10-1 cuda-runtime-10-1
cuda-samples-10-1 cuda-sanitizer-api-10-1 cuda-toolkit-10-1 cuda-tools-10-1
cuda-visual-tools-10-1 default-jre default-jre-headless libcublas-dev
libcublas10 libcudnn7 libcudnn7-dev libnvidia-cfg1-450 libnvidia-common-450
libnvidia-compute-450 libnvidia-decode-450 libnvidia-encode-450
libnvidia-fbc1-450 libnvidia-gl-450 libnvidia-ifr1-450
nsight-compute-2019.5.0 nsight-systems-2019.5.2 nvidia-compute-utils-450
nvidia-dkms-450 nvidia-driver-450 nvidia-kernel-common-450
nvidia-kernel-source-450 nvidia-modprobe nvidia-settings nvidia-utils-450
openjdk-11-jre openjdk-11-jre-headless xserver-xorg-video-nvidia-450
0 upgraded, 79 newly installed, 16 to remove and 239 not upgraded.
Need to get 0 B/2,205 MB of archives.
After this operation, 4,855 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Extracting templates from packages: 100%
(Reading database ... 294935 files and directories currently installed.)
Removing nvidia-driver-430 (440.59-0ubuntu0.18.04.1) ...
Removing nvidia-driver-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing xserver-xorg-video-nvidia-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-cfg1-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-encode-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-decode-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing nvidia-utils-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-fbc1-440:i386 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-fbc1-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-ifr1-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-gl-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Removing nvidia-compute-utils-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing nvidia-dkms-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing all DKMS Modules
Done.
INFO:Disable nvidia
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/dell_latitude
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/put_your_quirks_here
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/lenovo_thinkpad
update-initramfs: deferring update (trigger activated)
Removing nvidia-kernel-common-440 (440.82-0ubuntu0~0.18.04.2) ...
update-initramfs: deferring update (trigger activated)
Removing nvidia-kernel-source-440 (440.82-0ubuntu0~0.18.04.2) ...
Removing libnvidia-compute-440:amd64 (440.82-0ubuntu0~0.18.04.2) ...
Selecting previously unselected package cuda-license-10-1.
(Reading database ... 294368 files and directories currently installed.)
Preparing to unpack .../00-cuda-license-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-license-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-misc-headers-10-1.
Preparing to unpack .../01-cuda-misc-headers-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-misc-headers-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvcc-10-1.
Preparing to unpack .../02-cuda-nvcc-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvcc-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cuobjdump-10-1.
Preparing to unpack .../03-cuda-cuobjdump-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cuobjdump-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvprune-10-1.
Preparing to unpack .../04-cuda-nvprune-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvprune-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-compiler-10-1.
Preparing to unpack .../05-cuda-compiler-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-compiler-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvdisasm-10-1.
Preparing to unpack .../06-cuda-nvdisasm-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvdisasm-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-gdb-10-1.
Preparing to unpack .../07-cuda-gdb-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-gdb-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvprof-10-1.
Preparing to unpack .../08-cuda-nvprof-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvprof-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-sanitizer-api-10-1.
Preparing to unpack .../09-cuda-sanitizer-api-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-sanitizer-api-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-memcheck-10-1.
Preparing to unpack .../10-cuda-memcheck-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-memcheck-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cudart-10-1.
Preparing to unpack .../11-cuda-cudart-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cudart-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-driver-dev-10-1.
Preparing to unpack .../12-cuda-driver-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-driver-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cudart-dev-10-1.
Preparing to unpack .../13-cuda-cudart-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cudart-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cupti-10-1.
Preparing to unpack .../14-cuda-cupti-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cupti-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-gpu-library-advisor-10-1.
Preparing to unpack .../15-cuda-gpu-library-advisor-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-gpu-library-advisor-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvtx-10-1.
Preparing to unpack .../16-cuda-nvtx-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvtx-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-command-line-tools-10-1.
Preparing to unpack .../17-cuda-command-line-tools-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-command-line-tools-10-1 (10.1.243-1) ...
Selecting previously unselected package openjdk-11-jre-headless:amd64.
Preparing to unpack .../18-openjdk-11-jre-headless_11.0.7+10-2ubuntu2~18.04_amd64.deb ...
Unpacking openjdk-11-jre-headless:amd64 (11.0.7+10-2ubuntu2~18.04) ...
Selecting previously unselected package default-jre-headless.
Preparing to unpack .../19-default-jre-headless_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ...
Unpacking default-jre-headless (2:1.11-68ubuntu1~18.04.1) ...
Selecting previously unselected package openjdk-11-jre:amd64.
Preparing to unpack .../20-openjdk-11-jre_11.0.7+10-2ubuntu2~18.04_amd64.deb ...
Unpacking openjdk-11-jre:amd64 (11.0.7+10-2ubuntu2~18.04) ...
Selecting previously unselected package default-jre.
Preparing to unpack .../21-default-jre_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ...
Unpacking default-jre (2:1.11-68ubuntu1~18.04.1) ...
Selecting previously unselected package cuda-nsight-10-1.
Preparing to unpack .../22-cuda-nsight-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nsight-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvvp-10-1.
Preparing to unpack .../23-cuda-nvvp-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvvp-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvrtc-10-1.
Preparing to unpack .../24-cuda-nvrtc-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvrtc-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvrtc-dev-10-1.
Preparing to unpack .../25-cuda-nvrtc-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvrtc-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusolver-10-1.
Preparing to unpack .../26-cuda-cusolver-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusolver-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusolver-dev-10-1.
Preparing to unpack .../27-cuda-cusolver-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusolver-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-license-10-2.
Preparing to unpack .../28-cuda-license-10-2_10.2.89-1_amd64.deb ...
Unpacking cuda-license-10-2 (10.2.89-1) ...
Selecting previously unselected package libcublas10.
Preparing to unpack .../29-libcublas10_10.2.2.89-1_amd64.deb ...
Unpacking libcublas10 (10.2.2.89-1) ...
Selecting previously unselected package libcublas-dev.
Preparing to unpack .../30-libcublas-dev_10.2.2.89-1_amd64.deb ...
Unpacking libcublas-dev (10.2.2.89-1) ...
Selecting previously unselected package cuda-cufft-10-1.
Preparing to unpack .../31-cuda-cufft-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cufft-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cufft-dev-10-1.
Preparing to unpack .../32-cuda-cufft-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cufft-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-curand-10-1.
Preparing to unpack .../33-cuda-curand-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-curand-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-curand-dev-10-1.
Preparing to unpack .../34-cuda-curand-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-curand-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusparse-10-1.
Preparing to unpack .../35-cuda-cusparse-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusparse-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-cusparse-dev-10-1.
Preparing to unpack .../36-cuda-cusparse-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-cusparse-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-npp-10-1.
Preparing to unpack .../37-cuda-npp-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-npp-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-npp-dev-10-1.
Preparing to unpack .../38-cuda-npp-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-npp-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvml-dev-10-1.
Preparing to unpack .../39-cuda-nvml-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvml-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvjpeg-10-1.
Preparing to unpack .../40-cuda-nvjpeg-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvjpeg-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvjpeg-dev-10-1.
Preparing to unpack .../41-cuda-nvjpeg-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvjpeg-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package nsight-compute-2019.5.0.
Preparing to unpack .../42-nsight-compute-2019.5.0_2019.5.0.14-1_amd64.deb ...
Unpacking nsight-compute-2019.5.0 (2019.5.0.14-1) ...
Selecting previously unselected package cuda-nsight-compute-10-1.
Preparing to unpack .../43-cuda-nsight-compute-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nsight-compute-10-1 (10.1.243-1) ...
Selecting previously unselected package nsight-systems-2019.5.2.
Preparing to unpack .../44-nsight-systems-2019.5.2_2019.5.2.16-b54ef97_amd64.deb ...
Unpacking nsight-systems-2019.5.2 (2019.5.2.16-b54ef97) ...
Selecting previously unselected package cuda-nsight-systems-10-1.
Preparing to unpack .../45-cuda-nsight-systems-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nsight-systems-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvgraph-10-1.
Preparing to unpack .../46-cuda-nvgraph-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvgraph-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-nvgraph-dev-10-1.
Preparing to unpack .../47-cuda-nvgraph-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-nvgraph-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-visual-tools-10-1.
Preparing to unpack .../48-cuda-visual-tools-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-visual-tools-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-tools-10-1.
Preparing to unpack .../49-cuda-tools-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-tools-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-samples-10-1.
Preparing to unpack .../50-cuda-samples-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-samples-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-documentation-10-1.
Preparing to unpack .../51-cuda-documentation-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-documentation-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-libraries-dev-10-1.
Preparing to unpack .../52-cuda-libraries-dev-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-libraries-dev-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-toolkit-10-1.
Preparing to unpack .../53-cuda-toolkit-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-toolkit-10-1 (10.1.243-1) ...
Selecting previously unselected package libnvidia-common-450.
Preparing to unpack .../54-libnvidia-common-450_450.36.06-0ubuntu1_all.deb ...
Checking for existing driver runfile install
/var/lib/dpkg/tmp.ci/preinst: 6: /var/lib/dpkg/tmp.ci/preinst: [[: not found
Unpacking libnvidia-common-450 (450.36.06-0ubuntu1) ...
Preparing to unpack .../55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-compute-450:amd64 (450.36.06-0ubuntu1) ...
dpkg: error processing archive /tmp/apt-dpkg-install-fjAi3S/55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb (--unpack):
trying to overwrite '/usr/lib/x86_64-linux-gnu/libnvidia-allocator.so', which is also in package libnvidia-extra-440:amd64 440.82-0ubuntu0~0.18.04.2
Selecting previously unselected package libnvidia-decode-450:amd64.
Preparing to unpack .../56-libnvidia-decode-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-decode-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-encode-450:amd64.
Preparing to unpack .../57-libnvidia-encode-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-encode-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-fbc1-450:amd64.
Preparing to unpack .../58-libnvidia-fbc1-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-fbc1-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-gl-450:amd64.
Preparing to unpack .../59-libnvidia-gl-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-gl-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-ifr1-450:amd64.
Preparing to unpack .../60-libnvidia-ifr1-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-ifr1-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-compute-utils-450.
Preparing to unpack .../61-nvidia-compute-utils-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-compute-utils-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-kernel-source-450.
Preparing to unpack .../62-nvidia-kernel-source-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-kernel-source-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-kernel-common-450.
Preparing to unpack .../63-nvidia-kernel-common-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-kernel-common-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-dkms-450.
Preparing to unpack .../64-nvidia-dkms-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-dkms-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-utils-450.
Preparing to unpack .../65-nvidia-utils-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-utils-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package libnvidia-cfg1-450:amd64.
Preparing to unpack .../66-libnvidia-cfg1-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking libnvidia-cfg1-450:amd64 (450.36.06-0ubuntu1) ...
Selecting previously unselected package xserver-xorg-video-nvidia-450.
Preparing to unpack .../67-xserver-xorg-video-nvidia-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking xserver-xorg-video-nvidia-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-driver-450.
Preparing to unpack .../68-nvidia-driver-450_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-driver-450 (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-modprobe.
Preparing to unpack .../69-nvidia-modprobe_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-modprobe (450.36.06-0ubuntu1) ...
Selecting previously unselected package nvidia-settings.
Preparing to unpack .../70-nvidia-settings_450.36.06-0ubuntu1_amd64.deb ...
Unpacking nvidia-settings (450.36.06-0ubuntu1) ...
Selecting previously unselected package cuda-drivers-450.
Preparing to unpack .../71-cuda-drivers-450_450.36.06-1_amd64.deb ...
Unpacking cuda-drivers-450 (450.36.06-1) ...
Selecting previously unselected package cuda-drivers.
Preparing to unpack .../72-cuda-drivers_450.36.06-1_amd64.deb ...
Unpacking cuda-drivers (450.36.06-1) ...
Selecting previously unselected package cuda-libraries-10-1.
Preparing to unpack .../73-cuda-libraries-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-libraries-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-runtime-10-1.
Preparing to unpack .../74-cuda-runtime-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-runtime-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-demo-suite-10-1.
Preparing to unpack .../75-cuda-demo-suite-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-demo-suite-10-1 (10.1.243-1) ...
Selecting previously unselected package cuda-10-1.
Preparing to unpack .../76-cuda-10-1_10.1.243-1_amd64.deb ...
Unpacking cuda-10-1 (10.1.243-1) ...
Selecting previously unselected package libcudnn7.
Preparing to unpack .../77-libcudnn7_7.6.4.38-1+cuda10.1_amd64.deb ...
Unpacking libcudnn7 (7.6.4.38-1+cuda10.1) ...
Selecting previously unselected package libcudnn7-dev.
Preparing to unpack .../78-libcudnn7-dev_7.6.4.38-1+cuda10.1_amd64.deb ...
Unpacking libcudnn7-dev (7.6.4.38-1+cuda10.1) ...
Errors were encountered while processing:
/tmp/apt-dpkg-install-fjAi3S/55-libnvidia-compute-450_450.36.06-0ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
``` | non_priority | documentation instructions on installing tensorflow with cuda support doesn t work os ubuntu graphics card nvidia problem following the instructions under gives the following error ssh unpacking dev errors were encountered while processing tmp apt dpkg install libnvidia compute deb e sub process usr bin dpkg returned an error code after executing this step ssh sudo apt get install no install recommends cuda dev additional info the complete message after running the above command is ssh reading package lists done building dependency tree reading state information done the following packages were automatically installed and are no longer required libnvidia common libnvidia extra use sudo apt autoremove to remove them the following additional packages will be installed cuda command line tools cuda compiler cuda cudart cuda cudart dev cuda cufft cuda cufft dev cuda cuobjdump cuda cupti cuda curand cuda curand dev cuda cusolver cuda cusolver dev cuda cusparse cuda cusparse dev cuda demo suite cuda documentation cuda driver dev cuda drivers cuda drivers cuda gdb cuda gpu library advisor cuda libraries cuda libraries dev cuda license cuda license cuda memcheck cuda misc headers cuda npp cuda npp dev cuda nsight cuda nsight compute cuda nsight systems cuda nvcc cuda nvdisasm cuda nvgraph cuda nvgraph dev cuda nvjpeg cuda nvjpeg dev cuda nvml dev cuda nvprof cuda nvprune cuda nvrtc cuda nvrtc dev cuda nvtx cuda nvvp cuda runtime cuda samples cuda sanitizer api cuda toolkit cuda tools cuda visual tools default jre default jre headless libcublas dev libnvidia libnvidia common libnvidia compute libnvidia decode libnvidia encode libnvidia libnvidia gl libnvidia nsight compute nsight systems nvidia compute utils nvidia dkms nvidia driver nvidia kernel common nvidia kernel source nvidia modprobe nvidia settings nvidia utils openjdk jre openjdk jre headless xserver xorg video nvidia suggested packages fonts ipafont gothic fonts ipafont mincho fonts wqy microhei fonts wqy zenhei the following packages will be removed libnvidia libnvidia compute libnvidia decode libnvidia encode libnvidia libnvidia libnvidia gl libnvidia nvidia compute utils nvidia dkms nvidia driver nvidia driver nvidia kernel common nvidia kernel source nvidia utils xserver xorg video nvidia the following new packages will be installed cuda cuda command line tools cuda compiler cuda cudart cuda cudart dev cuda cufft cuda cufft dev cuda cuobjdump cuda cupti cuda curand cuda curand dev cuda cusolver cuda cusolver dev cuda cusparse cuda cusparse dev cuda demo suite cuda documentation cuda driver dev cuda drivers cuda drivers cuda gdb cuda gpu library advisor cuda libraries cuda libraries dev cuda license cuda license cuda memcheck cuda misc headers cuda npp cuda npp dev cuda nsight cuda nsight compute cuda nsight systems cuda nvcc cuda nvdisasm cuda nvgraph cuda nvgraph dev cuda nvjpeg cuda nvjpeg dev cuda nvml dev cuda nvprof cuda nvprune cuda nvrtc cuda nvrtc dev cuda nvtx cuda nvvp cuda runtime cuda samples cuda sanitizer api cuda toolkit cuda tools cuda visual tools default jre default jre headless libcublas dev dev libnvidia libnvidia common libnvidia compute libnvidia decode libnvidia encode libnvidia libnvidia gl libnvidia nsight compute nsight systems nvidia compute utils nvidia dkms nvidia driver nvidia kernel common nvidia kernel source nvidia modprobe nvidia settings nvidia utils openjdk jre openjdk jre headless xserver xorg video nvidia upgraded newly installed to remove and not upgraded need to get b mb of archives after this operation mb of additional disk space will be used do you want to continue extracting templates from packages reading database files and directories currently installed removing nvidia driver removing nvidia driver removing xserver xorg video nvidia removing libnvidia removing libnvidia encode removing libnvidia decode removing nvidia utils removing libnvidia removing libnvidia removing libnvidia removing libnvidia gl removing nvidia compute utils removing nvidia dkms removing all dkms modules done info disable nvidia debug parsing usr share ubuntu drivers common quirks dell latitude debug parsing usr share ubuntu drivers common quirks put your quirks here debug parsing usr share ubuntu drivers common quirks lenovo thinkpad update initramfs deferring update trigger activated removing nvidia kernel common update initramfs deferring update trigger activated removing nvidia kernel source removing libnvidia compute selecting previously unselected package cuda license reading database files and directories currently installed preparing to unpack cuda license deb unpacking cuda license selecting previously unselected package cuda misc headers preparing to unpack cuda misc headers deb unpacking cuda misc headers selecting previously unselected package cuda nvcc preparing to unpack cuda nvcc deb unpacking cuda nvcc selecting previously unselected package cuda cuobjdump preparing to unpack cuda cuobjdump deb unpacking cuda cuobjdump selecting previously unselected package cuda nvprune preparing to unpack cuda nvprune deb unpacking cuda nvprune selecting previously unselected package cuda compiler preparing to unpack cuda compiler deb unpacking cuda compiler selecting previously unselected package cuda nvdisasm preparing to unpack cuda nvdisasm deb unpacking cuda nvdisasm selecting previously unselected package cuda gdb preparing to unpack cuda gdb deb unpacking cuda gdb selecting previously unselected package cuda nvprof preparing to unpack cuda nvprof deb unpacking cuda nvprof selecting previously unselected package cuda sanitizer api preparing to unpack cuda sanitizer api deb unpacking cuda sanitizer api selecting previously unselected package cuda memcheck preparing to unpack cuda memcheck deb unpacking cuda memcheck selecting previously unselected package cuda cudart preparing to unpack cuda cudart deb unpacking cuda cudart selecting previously unselected package cuda driver dev preparing to unpack cuda driver dev deb unpacking cuda driver dev selecting previously unselected package cuda cudart dev preparing to unpack cuda cudart dev deb unpacking cuda cudart dev selecting previously unselected package cuda cupti preparing to unpack cuda cupti deb unpacking cuda cupti selecting previously unselected package cuda gpu library advisor preparing to unpack cuda gpu library advisor deb unpacking cuda gpu library advisor selecting previously unselected package cuda nvtx preparing to unpack cuda nvtx deb unpacking cuda nvtx selecting previously unselected package cuda command line tools preparing to unpack cuda command line tools deb unpacking cuda command line tools selecting previously unselected package openjdk jre headless preparing to unpack openjdk jre headless deb unpacking openjdk jre headless selecting previously unselected package default jre headless preparing to unpack default jre headless deb unpacking default jre headless selecting previously unselected package openjdk jre preparing to unpack openjdk jre deb unpacking openjdk jre selecting previously unselected package default jre preparing to unpack default jre deb unpacking default jre selecting previously unselected package cuda nsight preparing to unpack cuda nsight deb unpacking cuda nsight selecting previously unselected package cuda nvvp preparing to unpack cuda nvvp deb unpacking cuda nvvp selecting previously unselected package cuda nvrtc preparing to unpack cuda nvrtc deb unpacking cuda nvrtc selecting previously unselected package cuda nvrtc dev preparing to unpack cuda nvrtc dev deb unpacking cuda nvrtc dev selecting previously unselected package cuda cusolver preparing to unpack cuda cusolver deb unpacking cuda cusolver selecting previously unselected package cuda cusolver dev preparing to unpack cuda cusolver dev deb unpacking cuda cusolver dev selecting previously unselected package cuda license preparing to unpack cuda license deb unpacking cuda license selecting previously unselected package preparing to unpack deb unpacking selecting previously unselected package libcublas dev preparing to unpack libcublas dev deb unpacking libcublas dev selecting previously unselected package cuda cufft preparing to unpack cuda cufft deb unpacking cuda cufft selecting previously unselected package cuda cufft dev preparing to unpack cuda cufft dev deb unpacking cuda cufft dev selecting previously unselected package cuda curand preparing to unpack cuda curand deb unpacking cuda curand selecting previously unselected package cuda curand dev preparing to unpack cuda curand dev deb unpacking cuda curand dev selecting previously unselected package cuda cusparse preparing to unpack cuda cusparse deb unpacking cuda cusparse selecting previously unselected package cuda cusparse dev preparing to unpack cuda cusparse dev deb unpacking cuda cusparse dev selecting previously unselected package cuda npp preparing to unpack cuda npp deb unpacking cuda npp selecting previously unselected package cuda npp dev preparing to unpack cuda npp dev deb unpacking cuda npp dev selecting previously unselected package cuda nvml dev preparing to unpack cuda nvml dev deb unpacking cuda nvml dev selecting previously unselected package cuda nvjpeg preparing to unpack cuda nvjpeg deb unpacking cuda nvjpeg selecting previously unselected package cuda nvjpeg dev preparing to unpack cuda nvjpeg dev deb unpacking cuda nvjpeg dev selecting previously unselected package nsight compute preparing to unpack nsight compute deb unpacking nsight compute selecting previously unselected package cuda nsight compute preparing to unpack cuda nsight compute deb unpacking cuda nsight compute selecting previously unselected package nsight systems preparing to unpack nsight systems deb unpacking nsight systems selecting previously unselected package cuda nsight systems preparing to unpack cuda nsight systems deb unpacking cuda nsight systems selecting previously unselected package cuda nvgraph preparing to unpack cuda nvgraph deb unpacking cuda nvgraph selecting previously unselected package cuda nvgraph dev preparing to unpack cuda nvgraph dev deb unpacking cuda nvgraph dev selecting previously unselected package cuda visual tools preparing to unpack cuda visual tools deb unpacking cuda visual tools selecting previously unselected package cuda tools preparing to unpack cuda tools deb unpacking cuda tools selecting previously unselected package cuda samples preparing to unpack cuda samples deb unpacking cuda samples selecting previously unselected package cuda documentation preparing to unpack cuda documentation deb unpacking cuda documentation selecting previously unselected package cuda libraries dev preparing to unpack cuda libraries dev deb unpacking cuda libraries dev selecting previously unselected package cuda toolkit preparing to unpack cuda toolkit deb unpacking cuda toolkit selecting previously unselected package libnvidia common preparing to unpack libnvidia common all deb checking for existing driver runfile install var lib dpkg tmp ci preinst var lib dpkg tmp ci preinst not found unpacking libnvidia common preparing to unpack libnvidia compute deb unpacking libnvidia compute dpkg error processing archive tmp apt dpkg install libnvidia compute deb unpack trying to overwrite usr lib linux gnu libnvidia allocator so which is also in package libnvidia extra selecting previously unselected package libnvidia decode preparing to unpack libnvidia decode deb unpacking libnvidia decode selecting previously unselected package libnvidia encode preparing to unpack libnvidia encode deb unpacking libnvidia encode selecting previously unselected package libnvidia preparing to unpack libnvidia deb unpacking libnvidia selecting previously unselected package libnvidia gl preparing to unpack libnvidia gl deb unpacking libnvidia gl selecting previously unselected package libnvidia preparing to unpack libnvidia deb unpacking libnvidia selecting previously unselected package nvidia compute utils preparing to unpack nvidia compute utils deb unpacking nvidia compute utils selecting previously unselected package nvidia kernel source preparing to unpack nvidia kernel source deb unpacking nvidia kernel source selecting previously unselected package nvidia kernel common preparing to unpack nvidia kernel common deb unpacking nvidia kernel common selecting previously unselected package nvidia dkms preparing to unpack nvidia dkms deb unpacking nvidia dkms selecting previously unselected package nvidia utils preparing to unpack nvidia utils deb unpacking nvidia utils selecting previously unselected package libnvidia preparing to unpack libnvidia deb unpacking libnvidia selecting previously unselected package xserver xorg video nvidia preparing to unpack xserver xorg video nvidia deb unpacking xserver xorg video nvidia selecting previously unselected package nvidia driver preparing to unpack nvidia driver deb unpacking nvidia driver selecting previously unselected package nvidia modprobe preparing to unpack nvidia modprobe deb unpacking nvidia modprobe selecting previously unselected package nvidia settings preparing to unpack nvidia settings deb unpacking nvidia settings selecting previously unselected package cuda drivers preparing to unpack cuda drivers deb unpacking cuda drivers selecting previously unselected package cuda drivers preparing to unpack cuda drivers deb unpacking cuda drivers selecting previously unselected package cuda libraries preparing to unpack cuda libraries deb unpacking cuda libraries selecting previously unselected package cuda runtime preparing to unpack cuda runtime deb unpacking cuda runtime selecting previously unselected package cuda demo suite preparing to unpack cuda demo suite deb unpacking cuda demo suite selecting previously unselected package cuda preparing to unpack cuda deb unpacking cuda selecting previously unselected package preparing to unpack deb unpacking selecting previously unselected package dev preparing to unpack dev deb unpacking dev errors were encountered while processing tmp apt dpkg install libnvidia compute deb e sub process usr bin dpkg returned an error code | 0 |
74,368 | 9,781,238,705 | IssuesEvent | 2019-06-07 19:10:17 | heyozramos/posenet-cursor | https://api.github.com/repos/heyozramos/posenet-cursor | closed | As a dev, I need an environment | documentation enhancement | ## Scope
- [x] I can type `npm start` to start a local dev server
- [x] I can run `npm run build` to build the project
- [x] I can run `npm run deploy` to run firebase
- [x] I have a README to help people set the project up locally | 1.0 | As a dev, I need an environment - ## Scope
- [x] I can type `npm start` to start a local dev server
- [x] I can run `npm run build` to build the project
- [x] I can run `npm run deploy` to run firebase
- [x] I have a README to help people set the project up locally | non_priority | as a dev i need an environment scope i can type npm start to start a local dev server i can run npm run build to build the project i can run npm run deploy to run firebase i have a readme to help people set the project up locally | 0 |
42,283 | 9,200,695,889 | IssuesEvent | 2019-03-07 17:40:58 | drupal-code-builder/drupal-code-builder | https://api.github.com/repos/drupal-code-builder/drupal-code-builder | opened | plugins should filter out requested injected services that the base class already has | bug code generation | If I generate a plugin and happen to set, say, entity_type.manager as an injected service, and the plugin base class already injects it, then the generated code will have it twice as a constructor parameter, and the code will crash. | 1.0 | plugins should filter out requested injected services that the base class already has - If I generate a plugin and happen to set, say, entity_type.manager as an injected service, and the plugin base class already injects it, then the generated code will have it twice as a constructor parameter, and the code will crash. | non_priority | plugins should filter out requested injected services that the base class already has if i generate a plugin and happen to set say entity type manager as an injected service and the plugin base class already injects it then the generated code will have it twice as a constructor parameter and the code will crash | 0 |
4,381 | 2,851,199,670 | IssuesEvent | 2015-06-01 03:44:24 | syl20bnr/spacemacs | https://api.github.com/repos/syl20bnr/spacemacs | closed | Haskell layer missing required hasktags cabal package | documentation :-> Fixed in `develop` Haskell | I was consistently getting ~5 second hangs as haskell-mode attempted to load TAGS files. These were not being generated due to my not having installed the hasktags cabal package. Additionally, not having done so results in SPC m g g (go to definition) not working. | 1.0 | Haskell layer missing required hasktags cabal package - I was consistently getting ~5 second hangs as haskell-mode attempted to load TAGS files. These were not being generated due to my not having installed the hasktags cabal package. Additionally, not having done so results in SPC m g g (go to definition) not working. | non_priority | haskell layer missing required hasktags cabal package i was consistently getting second hangs as haskell mode attempted to load tags files these were not being generated due to my not having installed the hasktags cabal package additionally not having done so results in spc m g g go to definition not working | 0 |
281,805 | 21,315,438,146 | IssuesEvent | 2022-04-16 07:27:36 | Korochii/pe | https://api.github.com/repos/Korochii/pe | opened | Cosmetic bug in DG (Use Cases) | type.DocumentationBug severity.VeryLow | 
As shown above, there are 2 extensions with the same "label".
If I'm not wrong, it should be 1a followed by 1b and so on instead.
<!--session: 1650087272335-723f7510-f71a-4bf1-bac5-54f92cee0b3b-->
<!--Version: Web v3.4.2--> | 1.0 | Cosmetic bug in DG (Use Cases) - 
As shown above, there are 2 extensions with the same "label".
If I'm not wrong, it should be 1a followed by 1b and so on instead.
<!--session: 1650087272335-723f7510-f71a-4bf1-bac5-54f92cee0b3b-->
<!--Version: Web v3.4.2--> | non_priority | cosmetic bug in dg use cases as shown above there are extensions with the same label if i m not wrong it should be followed by and so on instead | 0 |
488,499 | 14,078,656,140 | IssuesEvent | 2020-11-04 13:52:27 | AY2021S1-CS2103T-T13-1/tp | https://api.github.com/repos/AY2021S1-CS2103T-T13-1/tp | closed | generatePeople does not track only for 2 weeks. | Implementation bug priority.High | In UG, generateLocations is supposed to track the locations of an affected visit from up to 2 weeks prior to the current date. It currently does not do this. | 1.0 | generatePeople does not track only for 2 weeks. - In UG, generateLocations is supposed to track the locations of an affected visit from up to 2 weeks prior to the current date. It currently does not do this. | priority | generatepeople does not track only for weeks in ug generatelocations is supposed to track the locations of an affected visit from up to weeks prior to the current date it currently does not do this | 1 |
649,862 | 21,328,795,485 | IssuesEvent | 2022-04-18 04:52:31 | googleapis/java-spanner | https://api.github.com/repos/googleapis/java-spanner | closed | spanner.it.ITPitrCreateDatabaseTest: returnsTheVersionRetentionPeriodSetThroughGetDatabase failed | type: bug priority: p1 api: spanner flakybot: issue | Note: #1766 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky.
----
commit: 0be09d5f91521b0d23086a99f2ae46c2dd99b64a
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/393f0d5f-eb50-4c38-8584-39995aee3236), [Sponge](http://sponge2/393f0d5f-eb50-4c38-8584-39995aee3236)
status: failed
<details><summary>Test output</summary><br><pre>java.util.concurrent.ExecutionException: com.google.cloud.spanner.SpannerException: RESOURCE_EXHAUSTED: io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Unable to create database 'testdb_1415636260_0008' because the instance 'projects/gcloud-devel/instances/spanner-testing-east1' has already reached the maximum database limit (100). Please delete a database in the instance and try again, or choose a different instance.
at com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:588)
at com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:439)
at com.google.common.util.concurrent.FluentFuture$TrustedFuture.get(FluentFuture.java:99)
at com.google.common.util.concurrent.ForwardingFuture.get(ForwardingFuture.java:73)
at com.google.api.gax.longrunning.OperationFutureImpl.get(OperationFutureImpl.java:131)
at com.google.cloud.spanner.it.ITPitrCreateDatabaseTest.createDatabase(ITPitrCreateDatabaseTest.java:139)
at com.google.cloud.spanner.it.ITPitrCreateDatabaseTest.returnsTheVersionRetentionPeriodSetThroughGetDatabase(ITPitrCreateDatabaseTest.java:107)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.rules.ExternalResource$1.evaluate(ExternalResource.java:54)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.apache.maven.surefire.junitcore.JUnitCore.run(JUnitCore.java:55)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:137)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeLazy(JUnitCoreWrapper.java:119)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:87)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:75)
at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:158)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138)
at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451)
Caused by: com.google.cloud.spanner.SpannerException: RESOURCE_EXHAUSTED: io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Unable to create database 'testdb_1415636260_0008' because the instance 'projects/gcloud-devel/instances/spanner-testing-east1' has already reached the maximum database limit (100). Please delete a database in the instance and try again, or choose a different instance.
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerExceptionPreformatted(SpannerExceptionFactory.java:284)
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerException(SpannerExceptionFactory.java:61)
at com.google.cloud.spanner.SpannerExceptionFactory.fromApiException(SpannerExceptionFactory.java:299)
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerException(SpannerExceptionFactory.java:174)
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerException(SpannerExceptionFactory.java:110)
at com.google.cloud.spanner.DatabaseAdminClientImpl.lambda$createDatabase$7(DatabaseAdminClientImpl.java:350)
at com.google.api.core.ApiFutures$ApiFunctionToGuavaFunction.apply(ApiFutures.java:239)
at com.google.common.util.concurrent.AbstractCatchingFuture$CatchingFuture.doFallback(AbstractCatchingFuture.java:234)
at com.google.common.util.concurrent.AbstractCatchingFuture$CatchingFuture.doFallback(AbstractCatchingFuture.java:222)
at com.google.common.util.concurrent.AbstractCatchingFuture.run(AbstractCatchingFuture.java:133)
at com.google.common.util.concurrent.DirectExecutor.execute(DirectExecutor.java:31)
at com.google.common.util.concurrent.AbstractFuture.executeListener(AbstractFuture.java:1270)
at com.google.common.util.concurrent.AbstractFuture.addListener(AbstractFuture.java:761)
at com.google.common.util.concurrent.FluentFuture$TrustedFuture.addListener(FluentFuture.java:114)
at com.google.common.util.concurrent.ForwardingListenableFuture.addListener(ForwardingListenableFuture.java:47)
at com.google.api.core.ApiFutureToListenableFuture.addListener(ApiFutureToListenableFuture.java:51)
at com.google.common.util.concurrent.AbstractCatchingFuture.create(AbstractCatchingFuture.java:46)
at com.google.common.util.concurrent.Futures.catching(Futures.java:306)
at com.google.api.core.ApiFutures.catching(ApiFutures.java:98)
at com.google.api.gax.longrunning.OperationFutureImpl.<init>(OperationFutureImpl.java:95)
at com.google.cloud.spanner.DatabaseAdminClientImpl.createDatabase(DatabaseAdminClientImpl.java:348)
at com.google.cloud.spanner.DatabaseAdminClientImpl.createDatabase(DatabaseAdminClientImpl.java:322)
at com.google.cloud.spanner.it.ITPitrCreateDatabaseTest.createDatabase(ITPitrCreateDatabaseTest.java:138)
... 45 more
Caused by: io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Unable to create database 'testdb_1415636260_0008' because the instance 'projects/gcloud-devel/instances/spanner-testing-east1' has already reached the maximum database limit (100). Please delete a database in the instance and try again, or choose a different instance.
at io.grpc.Status.asRuntimeException(Status.java:535)
at io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:533)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at com.google.api.gax.grpc.ChannelPool$ReleasingClientCall$1.onClose(ChannelPool.java:535)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at com.google.cloud.spanner.spi.v1.SpannerErrorInterceptor$1$1.onClose(SpannerErrorInterceptor.java:100)
at io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:463)
at io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:427)
at io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:460)
at io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:562)
at io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:743)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:722)
at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:750)
</pre></details> | 1.0 | spanner.it.ITPitrCreateDatabaseTest: returnsTheVersionRetentionPeriodSetThroughGetDatabase failed - Note: #1766 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky.
----
commit: 0be09d5f91521b0d23086a99f2ae46c2dd99b64a
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/393f0d5f-eb50-4c38-8584-39995aee3236), [Sponge](http://sponge2/393f0d5f-eb50-4c38-8584-39995aee3236)
status: failed
<details><summary>Test output</summary><br><pre>java.util.concurrent.ExecutionException: com.google.cloud.spanner.SpannerException: RESOURCE_EXHAUSTED: io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Unable to create database 'testdb_1415636260_0008' because the instance 'projects/gcloud-devel/instances/spanner-testing-east1' has already reached the maximum database limit (100). Please delete a database in the instance and try again, or choose a different instance.
at com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:588)
at com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:439)
at com.google.common.util.concurrent.FluentFuture$TrustedFuture.get(FluentFuture.java:99)
at com.google.common.util.concurrent.ForwardingFuture.get(ForwardingFuture.java:73)
at com.google.api.gax.longrunning.OperationFutureImpl.get(OperationFutureImpl.java:131)
at com.google.cloud.spanner.it.ITPitrCreateDatabaseTest.createDatabase(ITPitrCreateDatabaseTest.java:139)
at com.google.cloud.spanner.it.ITPitrCreateDatabaseTest.returnsTheVersionRetentionPeriodSetThroughGetDatabase(ITPitrCreateDatabaseTest.java:107)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.rules.ExternalResource$1.evaluate(ExternalResource.java:54)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.apache.maven.surefire.junitcore.JUnitCore.run(JUnitCore.java:55)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:137)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeLazy(JUnitCoreWrapper.java:119)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:87)
at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:75)
at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:158)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138)
at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451)
Caused by: com.google.cloud.spanner.SpannerException: RESOURCE_EXHAUSTED: io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Unable to create database 'testdb_1415636260_0008' because the instance 'projects/gcloud-devel/instances/spanner-testing-east1' has already reached the maximum database limit (100). Please delete a database in the instance and try again, or choose a different instance.
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerExceptionPreformatted(SpannerExceptionFactory.java:284)
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerException(SpannerExceptionFactory.java:61)
at com.google.cloud.spanner.SpannerExceptionFactory.fromApiException(SpannerExceptionFactory.java:299)
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerException(SpannerExceptionFactory.java:174)
at com.google.cloud.spanner.SpannerExceptionFactory.newSpannerException(SpannerExceptionFactory.java:110)
at com.google.cloud.spanner.DatabaseAdminClientImpl.lambda$createDatabase$7(DatabaseAdminClientImpl.java:350)
at com.google.api.core.ApiFutures$ApiFunctionToGuavaFunction.apply(ApiFutures.java:239)
at com.google.common.util.concurrent.AbstractCatchingFuture$CatchingFuture.doFallback(AbstractCatchingFuture.java:234)
at com.google.common.util.concurrent.AbstractCatchingFuture$CatchingFuture.doFallback(AbstractCatchingFuture.java:222)
at com.google.common.util.concurrent.AbstractCatchingFuture.run(AbstractCatchingFuture.java:133)
at com.google.common.util.concurrent.DirectExecutor.execute(DirectExecutor.java:31)
at com.google.common.util.concurrent.AbstractFuture.executeListener(AbstractFuture.java:1270)
at com.google.common.util.concurrent.AbstractFuture.addListener(AbstractFuture.java:761)
at com.google.common.util.concurrent.FluentFuture$TrustedFuture.addListener(FluentFuture.java:114)
at com.google.common.util.concurrent.ForwardingListenableFuture.addListener(ForwardingListenableFuture.java:47)
at com.google.api.core.ApiFutureToListenableFuture.addListener(ApiFutureToListenableFuture.java:51)
at com.google.common.util.concurrent.AbstractCatchingFuture.create(AbstractCatchingFuture.java:46)
at com.google.common.util.concurrent.Futures.catching(Futures.java:306)
at com.google.api.core.ApiFutures.catching(ApiFutures.java:98)
at com.google.api.gax.longrunning.OperationFutureImpl.<init>(OperationFutureImpl.java:95)
at com.google.cloud.spanner.DatabaseAdminClientImpl.createDatabase(DatabaseAdminClientImpl.java:348)
at com.google.cloud.spanner.DatabaseAdminClientImpl.createDatabase(DatabaseAdminClientImpl.java:322)
at com.google.cloud.spanner.it.ITPitrCreateDatabaseTest.createDatabase(ITPitrCreateDatabaseTest.java:138)
... 45 more
Caused by: io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Unable to create database 'testdb_1415636260_0008' because the instance 'projects/gcloud-devel/instances/spanner-testing-east1' has already reached the maximum database limit (100). Please delete a database in the instance and try again, or choose a different instance.
at io.grpc.Status.asRuntimeException(Status.java:535)
at io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:533)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at com.google.api.gax.grpc.ChannelPool$ReleasingClientCall$1.onClose(ChannelPool.java:535)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at com.google.cloud.spanner.spi.v1.SpannerErrorInterceptor$1$1.onClose(SpannerErrorInterceptor.java:100)
at io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:463)
at io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:427)
at io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:460)
at io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:562)
at io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:743)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:722)
at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:750)
</pre></details> | priority | spanner it itpitrcreatedatabasetest returnstheversionretentionperiodsetthroughgetdatabase failed note was also for this test but it was closed more than days ago so i didn t mark it flaky commit buildurl status failed test output java util concurrent executionexception com google cloud spanner spannerexception resource exhausted io grpc statusruntimeexception resource exhausted unable to create database testdb because the instance projects gcloud devel instances spanner testing has already reached the maximum database limit please delete a database in the instance and try again or choose a different instance at com google common util concurrent abstractfuture getdonevalue abstractfuture java at com google common util concurrent abstractfuture get abstractfuture java at com google common util concurrent fluentfuture trustedfuture get fluentfuture java at com google common util concurrent forwardingfuture get forwardingfuture java at com google api gax longrunning operationfutureimpl get operationfutureimpl java at com google cloud spanner it itpitrcreatedatabasetest createdatabase itpitrcreatedatabasetest java at com google cloud spanner it itpitrcreatedatabasetest returnstheversionretentionperiodsetthroughgetdatabase itpitrcreatedatabasetest java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at org junit internal runners statements invokemethod evaluate invokemethod java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit runners parentrunner evaluate parentrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at org junit runners runchild java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit rules externalresource evaluate externalresource java at org junit rules runrules evaluate runrules java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org apache maven surefire junitcore junitcore run junitcore java at org apache maven surefire junitcore junitcorewrapper createrequestandrun junitcorewrapper java at org apache maven surefire junitcore junitcorewrapper executelazy junitcorewrapper java at org apache maven surefire junitcore junitcorewrapper execute junitcorewrapper java at org apache maven surefire junitcore junitcorewrapper execute junitcorewrapper java at org apache maven surefire junitcore junitcoreprovider invoke junitcoreprovider java at org apache maven surefire booter forkedbooter runsuitesinprocess forkedbooter java at org apache maven surefire booter forkedbooter execute forkedbooter java at org apache maven surefire booter forkedbooter run forkedbooter java at org apache maven surefire booter forkedbooter main forkedbooter java caused by com google cloud spanner spannerexception resource exhausted io grpc statusruntimeexception resource exhausted unable to create database testdb because the instance projects gcloud devel instances spanner testing has already reached the maximum database limit please delete a database in the instance and try again or choose a different instance at com google cloud spanner spannerexceptionfactory newspannerexceptionpreformatted spannerexceptionfactory java at com google cloud spanner spannerexceptionfactory newspannerexception spannerexceptionfactory java at com google cloud spanner spannerexceptionfactory fromapiexception spannerexceptionfactory java at com google cloud spanner spannerexceptionfactory newspannerexception spannerexceptionfactory java at com google cloud spanner spannerexceptionfactory newspannerexception spannerexceptionfactory java at com google cloud spanner databaseadminclientimpl lambda createdatabase databaseadminclientimpl java at com google api core apifutures apifunctiontoguavafunction apply apifutures java at com google common util concurrent abstractcatchingfuture catchingfuture dofallback abstractcatchingfuture java at com google common util concurrent abstractcatchingfuture catchingfuture dofallback abstractcatchingfuture java at com google common util concurrent abstractcatchingfuture run abstractcatchingfuture java at com google common util concurrent directexecutor execute directexecutor java at com google common util concurrent abstractfuture executelistener abstractfuture java at com google common util concurrent abstractfuture addlistener abstractfuture java at com google common util concurrent fluentfuture trustedfuture addlistener fluentfuture java at com google common util concurrent forwardinglistenablefuture addlistener forwardinglistenablefuture java at com google api core apifuturetolistenablefuture addlistener apifuturetolistenablefuture java at com google common util concurrent abstractcatchingfuture create abstractcatchingfuture java at com google common util concurrent futures catching futures java at com google api core apifutures catching apifutures java at com google api gax longrunning operationfutureimpl operationfutureimpl java at com google cloud spanner databaseadminclientimpl createdatabase databaseadminclientimpl java at com google cloud spanner databaseadminclientimpl createdatabase databaseadminclientimpl java at com google cloud spanner it itpitrcreatedatabasetest createdatabase itpitrcreatedatabasetest java more caused by io grpc statusruntimeexception resource exhausted unable to create database testdb because the instance projects gcloud devel instances spanner testing has already reached the maximum database limit please delete a database in the instance and try again or choose a different instance at io grpc status asruntimeexception status java at io grpc stub clientcalls unarystreamtofuture onclose clientcalls java at io grpc partialforwardingclientcalllistener onclose partialforwardingclientcalllistener java at io grpc forwardingclientcalllistener onclose forwardingclientcalllistener java at io grpc forwardingclientcalllistener simpleforwardingclientcalllistener onclose forwardingclientcalllistener java at com google api gax grpc channelpool releasingclientcall onclose channelpool java at io grpc partialforwardingclientcalllistener onclose partialforwardingclientcalllistener java at io grpc forwardingclientcalllistener onclose forwardingclientcalllistener java at io grpc forwardingclientcalllistener simpleforwardingclientcalllistener onclose forwardingclientcalllistener java at io grpc partialforwardingclientcalllistener onclose partialforwardingclientcalllistener java at io grpc forwardingclientcalllistener onclose forwardingclientcalllistener java at io grpc forwardingclientcalllistener simpleforwardingclientcalllistener onclose forwardingclientcalllistener java at com google cloud spanner spi spannererrorinterceptor onclose spannererrorinterceptor java at io grpc internal delayedclientcall delayedlistener run delayedclientcall java at io grpc internal delayedclientcall delayedlistener delayorexecute delayedclientcall java at io grpc internal delayedclientcall delayedlistener onclose delayedclientcall java at io grpc internal clientcallimpl closeobserver clientcallimpl java at io grpc internal clientcallimpl access clientcallimpl java at io grpc internal clientcallimpl clientstreamlistenerimpl runinternal clientcallimpl java at io grpc internal clientcallimpl clientstreamlistenerimpl runincontext clientcallimpl java at io grpc internal contextrunnable run contextrunnable java at io grpc internal serializingexecutor run serializingexecutor java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask access scheduledthreadpoolexecutor java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask run scheduledthreadpoolexecutor java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java | 1 |
362,842 | 10,732,587,754 | IssuesEvent | 2019-10-28 22:18:25 | microsoft/terraform-provider-azuredevops | https://api.github.com/repos/microsoft/terraform-provider-azuredevops | closed | Add development life-cycle information to the contributing guidelines so that the on-boarding experience is less painful | priority-high | As a developer that is possibly new to Go, AzDO and Terraform, the current onboarding documentation assumes that I have a lot of context. It would be helpful to include information about the following topics so that I can get up to speed more quickly:
- If I pick up a new issue, where do I find the relevant implementation (`*.go`) files that I should be changing?
- How can I make changes to the business logic for resources and/or data sources?
- How can I test my changes? What do I do locally regarding unit and integration tests to verify that my code is correct?
- How can I enable logging in Go? How can I see these logs?
- What are the best practices recommended by Hashicorp, and how have they been implemented in this project?
### Acceptance Criteria
- [x] `./docs/contributing.md` updated to include the above points
- [ ] Review the changes by practicing onboarding new people using the documentation. Incorporate feedback as part of the "review" | 1.0 | Add development life-cycle information to the contributing guidelines so that the on-boarding experience is less painful - As a developer that is possibly new to Go, AzDO and Terraform, the current onboarding documentation assumes that I have a lot of context. It would be helpful to include information about the following topics so that I can get up to speed more quickly:
- If I pick up a new issue, where do I find the relevant implementation (`*.go`) files that I should be changing?
- How can I make changes to the business logic for resources and/or data sources?
- How can I test my changes? What do I do locally regarding unit and integration tests to verify that my code is correct?
- How can I enable logging in Go? How can I see these logs?
- What are the best practices recommended by Hashicorp, and how have they been implemented in this project?
### Acceptance Criteria
- [x] `./docs/contributing.md` updated to include the above points
- [ ] Review the changes by practicing onboarding new people using the documentation. Incorporate feedback as part of the "review" | priority | add development life cycle information to the contributing guidelines so that the on boarding experience is less painful as a developer that is possibly new to go azdo and terraform the current onboarding documentation assumes that i have a lot of context it would be helpful to include information about the following topics so that i can get up to speed more quickly if i pick up a new issue where do i find the relevant implementation go files that i should be changing how can i make changes to the business logic for resources and or data sources how can i test my changes what do i do locally regarding unit and integration tests to verify that my code is correct how can i enable logging in go how can i see these logs what are the best practices recommended by hashicorp and how have they been implemented in this project acceptance criteria docs contributing md updated to include the above points review the changes by practicing onboarding new people using the documentation incorporate feedback as part of the review | 1 |
257,839 | 8,142,725,251 | IssuesEvent | 2018-08-21 08:35:36 | openshiftio/openshift.io | https://api.github.com/repos/openshiftio/openshift.io | closed | Planner UI sends PATCH request to backend when no data changes | SEV3-medium area/planner priority/P4 team/planner type/bug verified-fix-in-prod | When pressing X in both cases and not changing any data the UI is sending 2 PATCH request to backend to update itself.


| 1.0 | Planner UI sends PATCH request to backend when no data changes - When pressing X in both cases and not changing any data the UI is sending 2 PATCH request to backend to update itself.


| priority | planner ui sends patch request to backend when no data changes when pressing x in both cases and not changing any data the ui is sending patch request to backend to update itself | 1 |
60,382 | 3,125,919,909 | IssuesEvent | 2015-09-08 05:28:36 | leo-project/leofs | https://api.github.com/repos/leo-project/leofs | closed | [leo_gateway] Reduce network traffic between leo_gateway and leo_storage | Improve Priority-MIDDLE _leo_gateway | ## Problem
### When
- A cache is EXPIRED
- Its size is very large
- There are lots of concurrent requests trying to retrieve the EXPIRED object
### What happen
- Massive amount of rpc between leo_gateway and leo_strage will happen then result in causing lots of timeouts
## Solution
There are some rooms to reduce network traffic between leo_gateway and leo_storage(s) by tracking ongoing requests.
For example,
If there is a request already trying to retrieve the same key and the object size is larger than a specified threshold and the built-in cache mechanism is enabled then
waiting for the request and after finishing the request,
go forward with the cache on leo_gateway.
| 1.0 | [leo_gateway] Reduce network traffic between leo_gateway and leo_storage - ## Problem
### When
- A cache is EXPIRED
- Its size is very large
- There are lots of concurrent requests trying to retrieve the EXPIRED object
### What happen
- Massive amount of rpc between leo_gateway and leo_strage will happen then result in causing lots of timeouts
## Solution
There are some rooms to reduce network traffic between leo_gateway and leo_storage(s) by tracking ongoing requests.
For example,
If there is a request already trying to retrieve the same key and the object size is larger than a specified threshold and the built-in cache mechanism is enabled then
waiting for the request and after finishing the request,
go forward with the cache on leo_gateway.
| priority | reduce network traffic between leo gateway and leo storage problem when a cache is expired its size is very large there are lots of concurrent requests trying to retrieve the expired object what happen massive amount of rpc between leo gateway and leo strage will happen then result in causing lots of timeouts solution there are some rooms to reduce network traffic between leo gateway and leo storage s by tracking ongoing requests for example if there is a request already trying to retrieve the same key and the object size is larger than a specified threshold and the built in cache mechanism is enabled then waiting for the request and after finishing the request go forward with the cache on leo gateway | 1 |
234,698 | 7,725,049,290 | IssuesEvent | 2018-05-24 16:43:42 | mozilla/addons-frontend | https://api.github.com/repos/mozilla/addons-frontend | closed | 31 May homepage content programming update | component: homepage priority: p2 size: S | For the **31 May** push, please find homepage content updates detailed [here](https://docs.google.com/document/d/1g4RuGKW__eTHNd277rKPMM46ygonXzW68jSs2OXEkPM/edit#).
@muffinresearch @diox @bobsilverberg | 1.0 | 31 May homepage content programming update - For the **31 May** push, please find homepage content updates detailed [here](https://docs.google.com/document/d/1g4RuGKW__eTHNd277rKPMM46ygonXzW68jSs2OXEkPM/edit#).
@muffinresearch @diox @bobsilverberg | priority | may homepage content programming update for the may push please find homepage content updates detailed muffinresearch diox bobsilverberg | 1 |
747,036 | 26,054,452,220 | IssuesEvent | 2022-12-22 22:50:51 | cityofasheville/bedrock2 | https://api.github.com/repos/cityofasheville/bedrock2 | closed | Make the preprocess_assets script run automatically after sync of managed-data-assets on S3 | priority:low | Possible implementation approaches:
- Run nightly as part of create_etl_run_map
- Figure out how to trigger a lambda on upload of multiple objects to S3
- Run as part of the CircleCI workflow
- | 1.0 | Make the preprocess_assets script run automatically after sync of managed-data-assets on S3 - Possible implementation approaches:
- Run nightly as part of create_etl_run_map
- Figure out how to trigger a lambda on upload of multiple objects to S3
- Run as part of the CircleCI workflow
- | priority | make the preprocess assets script run automatically after sync of managed data assets on possible implementation approaches run nightly as part of create etl run map figure out how to trigger a lambda on upload of multiple objects to run as part of the circleci workflow | 1 |
381,140 | 26,440,080,378 | IssuesEvent | 2023-01-15 21:30:51 | PlebLab/PlebLab_Workshops | https://api.github.com/repos/PlebLab/PlebLab_Workshops | opened | PlebDev Lightning Node with Topher Scott | documentation | 
[](https://youtu.be/lif8pVMnck4)
### Details:
### How build your own PlebDev Lightning node with Topher Scott
Topher will be going over the following:
- What is a Docker Container?
- Setup a Docker Environment
- How to use Docker (CLI, Compose, Portainer)
- Create a simple template project.
- Launch your own Lightning Node.
Learn more about Topher:
Topher on [Twitter](https://mobile.twitter.com/btctechsupport)
Learn more about what Topher [builds](https://github.com/cmdruid)
Learn more about [BitEscrow](https://bitescrow.app/)
**Proof of Work:**
https://www.meetup.com/pleb-lab/events/290835784/ | 1.0 | PlebDev Lightning Node with Topher Scott - 
[](https://youtu.be/lif8pVMnck4)
### Details:
### How build your own PlebDev Lightning node with Topher Scott
Topher will be going over the following:
- What is a Docker Container?
- Setup a Docker Environment
- How to use Docker (CLI, Compose, Portainer)
- Create a simple template project.
- Launch your own Lightning Node.
Learn more about Topher:
Topher on [Twitter](https://mobile.twitter.com/btctechsupport)
Learn more about what Topher [builds](https://github.com/cmdruid)
Learn more about [BitEscrow](https://bitescrow.app/)
**Proof of Work:**
https://www.meetup.com/pleb-lab/events/290835784/ | non_priority | plebdev lightning node with topher scott details how build your own plebdev lightning node with topher scott topher will be going over the following what is a docker container setup a docker environment how to use docker cli compose portainer create a simple template project launch your own lightning node learn more about topher topher on learn more about what topher learn more about proof of work | 0 |
559,814 | 16,577,424,453 | IssuesEvent | 2021-05-31 07:17:17 | threefoldfoundation/www_threefold_io | https://api.github.com/repos/threefoldfoundation/www_threefold_io | closed | Please fix navbar | priority_critical | - [x] make sure background for navbar is consistent
<img width="1552" alt="Screenshot 2021-05-26 at 16 16 35" src="https://user-images.githubusercontent.com/20182572/119658864-a9be4180-be3e-11eb-9203-a316127b65f4.png">
- [x] partners page
<img width="1552" alt="Screenshot 2021-05-26 at 16 19 45" src="https://user-images.githubusercontent.com/20182572/119658958-c2c6f280-be3e-11eb-9a54-00398b7a3153.png">
- [x] people page
<img width="1552" alt="Screenshot 2021-05-26 at 16 21 40" src="https://user-images.githubusercontent.com/20182572/119658997-ceb2b480-be3e-11eb-945e-c3ded1b20487.png">
- [x] blog
<img width="1552" alt="Screenshot 2021-05-26 at 16 21 55" src="https://user-images.githubusercontent.com/20182572/119659034-d70aef80-be3e-11eb-88a1-2ddcf00c5da8.png">
- [x] news
<img width="1552" alt="Screenshot 2021-05-26 at 16 22 01" src="https://user-images.githubusercontent.com/20182572/119659058-dbcfa380-be3e-11eb-8d93-6594f1302384.png">
- [x] Also on farming, navbar needs to be fixed
<img width="1552" alt="Screenshot 2021-05-26 at 16 26 58" src="https://user-images.githubusercontent.com/20182572/119659600-5f899000-be3f-11eb-94c1-74ae09c508a2.png">
- [x] when shrinking screen filter and navbar messes up (both websites)
<img width="1109" alt="Screenshot 2021-05-26 at 16 30 14" src="https://user-images.githubusercontent.com/20182572/119659922-b68f6500-be3f-11eb-815d-3362f79ecde3.png">
| 1.0 | Please fix navbar - - [x] make sure background for navbar is consistent
<img width="1552" alt="Screenshot 2021-05-26 at 16 16 35" src="https://user-images.githubusercontent.com/20182572/119658864-a9be4180-be3e-11eb-9203-a316127b65f4.png">
- [x] partners page
<img width="1552" alt="Screenshot 2021-05-26 at 16 19 45" src="https://user-images.githubusercontent.com/20182572/119658958-c2c6f280-be3e-11eb-9a54-00398b7a3153.png">
- [x] people page
<img width="1552" alt="Screenshot 2021-05-26 at 16 21 40" src="https://user-images.githubusercontent.com/20182572/119658997-ceb2b480-be3e-11eb-945e-c3ded1b20487.png">
- [x] blog
<img width="1552" alt="Screenshot 2021-05-26 at 16 21 55" src="https://user-images.githubusercontent.com/20182572/119659034-d70aef80-be3e-11eb-88a1-2ddcf00c5da8.png">
- [x] news
<img width="1552" alt="Screenshot 2021-05-26 at 16 22 01" src="https://user-images.githubusercontent.com/20182572/119659058-dbcfa380-be3e-11eb-8d93-6594f1302384.png">
- [x] Also on farming, navbar needs to be fixed
<img width="1552" alt="Screenshot 2021-05-26 at 16 26 58" src="https://user-images.githubusercontent.com/20182572/119659600-5f899000-be3f-11eb-94c1-74ae09c508a2.png">
- [x] when shrinking screen filter and navbar messes up (both websites)
<img width="1109" alt="Screenshot 2021-05-26 at 16 30 14" src="https://user-images.githubusercontent.com/20182572/119659922-b68f6500-be3f-11eb-815d-3362f79ecde3.png">
| priority | please fix navbar make sure background for navbar is consistent img width alt screenshot at src partners page img width alt screenshot at src people page img width alt screenshot at src blog img width alt screenshot at src news img width alt screenshot at src also on farming navbar needs to be fixed img width alt screenshot at src when shrinking screen filter and navbar messes up both websites img width alt screenshot at src | 1 |
344,733 | 10,349,123,854 | IssuesEvent | 2019-09-04 21:31:18 | GCTC-NTGC/TalentCloud | https://api.github.com/repos/GCTC-NTGC/TalentCloud | opened | Bug - Applicant Profile - Skills won't save, and word counter doesn't appear. | Bug Front-end Low Complexity Priority | # Description
The word counter is missing, and clicking "Save Skill" causes the button text to change, but then nothing happens and the skill isn't saved.
Console errors indicate this has something to do with a missing import. | 1.0 | Bug - Applicant Profile - Skills won't save, and word counter doesn't appear. - # Description
The word counter is missing, and clicking "Save Skill" causes the button text to change, but then nothing happens and the skill isn't saved.
Console errors indicate this has something to do with a missing import. | priority | bug applicant profile skills won t save and word counter doesn t appear description the word counter is missing and clicking save skill causes the button text to change but then nothing happens and the skill isn t saved console errors indicate this has something to do with a missing import | 1 |
139,210 | 12,839,551,420 | IssuesEvent | 2020-07-07 19:29:59 | RentadroneCL/Web-API | https://api.github.com/repos/RentadroneCL/Web-API | closed | Developer Documentation / User Documentation - Rubric Requirements | documentation | Create Documentation for each of the project repositories: There must be a section for Developers and another section for Users. An appropriate application must be used for Open Source documentation.
Meet all de Rubric Requirements. See here: https://docs.google.com/spreadsheets/d/1c-HQSBqRTmBZbPDUoLdxKy6OaiAg05004DEcrwESd0o/edit#gid=0 | 1.0 | Developer Documentation / User Documentation - Rubric Requirements - Create Documentation for each of the project repositories: There must be a section for Developers and another section for Users. An appropriate application must be used for Open Source documentation.
Meet all de Rubric Requirements. See here: https://docs.google.com/spreadsheets/d/1c-HQSBqRTmBZbPDUoLdxKy6OaiAg05004DEcrwESd0o/edit#gid=0 | non_priority | developer documentation user documentation rubric requirements create documentation for each of the project repositories there must be a section for developers and another section for users an appropriate application must be used for open source documentation meet all de rubric requirements see here | 0 |
14,985 | 2,611,052,560 | IssuesEvent | 2015-02-27 00:24:14 | alistairreilly/andors-trail | https://api.github.com/repos/alistairreilly/andors-trail | closed | Alpha test v0.6.7 | auto-migrated Milestone-0.6.7 Priority-Medium Type-Enhancement | ```
v0.6.7a0 is now available in the downloads list.
This is an early ALPHA of the new version.
Changelog from 0.6.6 is:
- Attack speed is configurable in preferences
- Multiple save slots
- Save slots will store the savegame on SD card
- Completely new quest system (no new quests though)
- Quest log, reachable from the player info screen
- Combat automatically exists when not beside any monsters
- "End combat"-button replaced by a "Flee" button
- There is now a 20% chance that you will fail fleeing
- Monsters will now attack if you stand next to them long enough. Not just if they happen to walk into you.
- Increased protection when creating savegames
- Friendly error message (instead of FC) if there is some error in the savegame file
Please test and report any issues that you find!
```
Original issue reported on code.google.com by `oskar.wi...@gmail.com` on 8 Dec 2010 at 8:49 | 1.0 | Alpha test v0.6.7 - ```
v0.6.7a0 is now available in the downloads list.
This is an early ALPHA of the new version.
Changelog from 0.6.6 is:
- Attack speed is configurable in preferences
- Multiple save slots
- Save slots will store the savegame on SD card
- Completely new quest system (no new quests though)
- Quest log, reachable from the player info screen
- Combat automatically exists when not beside any monsters
- "End combat"-button replaced by a "Flee" button
- There is now a 20% chance that you will fail fleeing
- Monsters will now attack if you stand next to them long enough. Not just if they happen to walk into you.
- Increased protection when creating savegames
- Friendly error message (instead of FC) if there is some error in the savegame file
Please test and report any issues that you find!
```
Original issue reported on code.google.com by `oskar.wi...@gmail.com` on 8 Dec 2010 at 8:49 | priority | alpha test is now available in the downloads list this is an early alpha of the new version changelog from is attack speed is configurable in preferences multiple save slots save slots will store the savegame on sd card completely new quest system no new quests though quest log reachable from the player info screen combat automatically exists when not beside any monsters end combat button replaced by a flee button there is now a chance that you will fail fleeing monsters will now attack if you stand next to them long enough not just if they happen to walk into you increased protection when creating savegames friendly error message instead of fc if there is some error in the savegame file please test and report any issues that you find original issue reported on code google com by oskar wi gmail com on dec at | 1 |
137,995 | 30,792,200,955 | IssuesEvent | 2023-07-31 17:00:28 | phetsims/acid-base-solutions | https://api.github.com/repos/phetsims/acid-base-solutions | closed | function invoked using bracket operator | dev:code-review | These lines in ConcentrationGraphNode.js:
```js
102 bar.setValue( solution[ molecules[ i ].concentrationFunctionName ]() );
129 this.bars[ i ].setValue( solution[ molecules[ i ].concentrationFunctionName ]() );
```
... violate this item in the CRC:
> - [ ] Functions should be invoked using the dot operator rather than the bracket operator. ...
... because `molecules[ i ].concentrationFunctionName` is a string. | 1.0 | function invoked using bracket operator - These lines in ConcentrationGraphNode.js:
```js
102 bar.setValue( solution[ molecules[ i ].concentrationFunctionName ]() );
129 this.bars[ i ].setValue( solution[ molecules[ i ].concentrationFunctionName ]() );
```
... violate this item in the CRC:
> - [ ] Functions should be invoked using the dot operator rather than the bracket operator. ...
... because `molecules[ i ].concentrationFunctionName` is a string. | non_priority | function invoked using bracket operator these lines in concentrationgraphnode js js bar setvalue solution concentrationfunctionname this bars setvalue solution concentrationfunctionname violate this item in the crc functions should be invoked using the dot operator rather than the bracket operator because molecules concentrationfunctionname is a string | 0 |
110,062 | 16,976,894,613 | IssuesEvent | 2021-06-30 01:13:11 | keanhankins/ranger | https://api.github.com/repos/keanhankins/ranger | opened | WS-2021-0174 (Medium) detected in spring-beans-3.2.13.RELEASE.jar | security vulnerability | ## WS-2021-0174 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-beans-3.2.13.RELEASE.jar</b></p></summary>
<p>Spring Beans</p>
<p>Library home page: <a href="https://github.com/SpringSource/spring-framework">https://github.com/SpringSource/spring-framework</a></p>
<p>Path to dependency file: ranger/plugin-schema-registry/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-beans/3.2.13.RELEASE/spring-beans-3.2.13.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- common-auth-0.8.1.jar (Root Library)
- spring-security-kerberos-core-1.0.1.RELEASE.jar
- spring-security-core-3.2.7.RELEASE.jar
- :x: **spring-beans-3.2.13.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In spring-framework, versions 4.0.0 to 4.0.1 and 3.0.0 to 3.2.18, are vulnerable against CGLIB memory leak for method injection as a result of mishandled callbacks and non-static classes.
<p>Publish Date: 2021-06-29
<p>URL: <a href=https://github.com/spring-projects/spring-framework/commit/8028eae786ff36ea58df9a385319bf045795fa77>WS-2021-0174</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: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/spring-projects/spring-framework/releases/tag/v4.0.2.RELEASE">https://github.com/spring-projects/spring-framework/releases/tag/v4.0.2.RELEASE</a></p>
<p>Release Date: 2021-06-29</p>
<p>Fix Resolution: org.springframework:spring-beans:4.0.2.RELEASE</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-beans","packageVersion":"3.2.13.RELEASE","packageFilePaths":["/plugin-schema-registry/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"com.hortonworks.registries:common-auth:0.8.1;org.springframework.security.kerberos:spring-security-kerberos-core:1.0.1.RELEASE;org.springframework.security:spring-security-core:3.2.7.RELEASE;org.springframework:spring-beans:3.2.13.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-beans:4.0.2.RELEASE"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2021-0174","vulnerabilityDetails":"In spring-framework, versions 4.0.0 to 4.0.1 and 3.0.0 to 3.2.18, are vulnerable against CGLIB memory leak for method injection as a result of mishandled callbacks and non-static classes.","vulnerabilityUrl":"https://github.com/spring-projects/spring-framework/commit/8028eae786ff36ea58df9a385319bf045795fa77","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"Low","S":"Unchanged","C":"Low","UI":"None","AV":"Local","I":"Low"},"extraData":{}}</REMEDIATE> --> | True | WS-2021-0174 (Medium) detected in spring-beans-3.2.13.RELEASE.jar - ## WS-2021-0174 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-beans-3.2.13.RELEASE.jar</b></p></summary>
<p>Spring Beans</p>
<p>Library home page: <a href="https://github.com/SpringSource/spring-framework">https://github.com/SpringSource/spring-framework</a></p>
<p>Path to dependency file: ranger/plugin-schema-registry/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-beans/3.2.13.RELEASE/spring-beans-3.2.13.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- common-auth-0.8.1.jar (Root Library)
- spring-security-kerberos-core-1.0.1.RELEASE.jar
- spring-security-core-3.2.7.RELEASE.jar
- :x: **spring-beans-3.2.13.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In spring-framework, versions 4.0.0 to 4.0.1 and 3.0.0 to 3.2.18, are vulnerable against CGLIB memory leak for method injection as a result of mishandled callbacks and non-static classes.
<p>Publish Date: 2021-06-29
<p>URL: <a href=https://github.com/spring-projects/spring-framework/commit/8028eae786ff36ea58df9a385319bf045795fa77>WS-2021-0174</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: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/spring-projects/spring-framework/releases/tag/v4.0.2.RELEASE">https://github.com/spring-projects/spring-framework/releases/tag/v4.0.2.RELEASE</a></p>
<p>Release Date: 2021-06-29</p>
<p>Fix Resolution: org.springframework:spring-beans:4.0.2.RELEASE</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-beans","packageVersion":"3.2.13.RELEASE","packageFilePaths":["/plugin-schema-registry/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"com.hortonworks.registries:common-auth:0.8.1;org.springframework.security.kerberos:spring-security-kerberos-core:1.0.1.RELEASE;org.springframework.security:spring-security-core:3.2.7.RELEASE;org.springframework:spring-beans:3.2.13.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-beans:4.0.2.RELEASE"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2021-0174","vulnerabilityDetails":"In spring-framework, versions 4.0.0 to 4.0.1 and 3.0.0 to 3.2.18, are vulnerable against CGLIB memory leak for method injection as a result of mishandled callbacks and non-static classes.","vulnerabilityUrl":"https://github.com/spring-projects/spring-framework/commit/8028eae786ff36ea58df9a385319bf045795fa77","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"Low","S":"Unchanged","C":"Low","UI":"None","AV":"Local","I":"Low"},"extraData":{}}</REMEDIATE> --> | non_priority | ws medium detected in spring beans release jar ws medium severity vulnerability vulnerable library spring beans release jar spring beans library home page a href path to dependency file ranger plugin schema registry pom xml path to vulnerable library home wss scanner repository org springframework spring beans release spring beans release jar dependency hierarchy common auth jar root library spring security kerberos core release jar spring security core release jar x spring beans release jar vulnerable library found in base branch master vulnerability details in spring framework versions to and to are vulnerable against cglib memory leak for method injection as a result of mishandled callbacks and non static classes 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 low integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring beans release isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree com hortonworks registries common auth org springframework security kerberos spring security kerberos core release org springframework security spring security core release org springframework spring beans release isminimumfixversionavailable true minimumfixversion org springframework spring beans release basebranches vulnerabilityidentifier ws vulnerabilitydetails in spring framework versions to and to are vulnerable against cglib memory leak for method injection as a result of mishandled callbacks and non static classes vulnerabilityurl | 0 |
60,943 | 14,938,334,941 | IssuesEvent | 2021-01-25 15:39:25 | SJSU-Dev2/SJSU-Dev2 | https://api.github.com/repos/SJSU-Dev2/SJSU-Dev2 | opened | Replace MemoryEqualOperator_t<> with default equals operator | Build Refactor | ## Feature Request
Remove the template class used to inherit equals operator as this makes the code more confusing to understand.
## Detailed Description
Requires GCC 10 for this to work. The solution afterwards would be to simply do this as an example:
```C++
bool operator==(const PinSettings_t&) const = default;
```
| 1.0 | Replace MemoryEqualOperator_t<> with default equals operator - ## Feature Request
Remove the template class used to inherit equals operator as this makes the code more confusing to understand.
## Detailed Description
Requires GCC 10 for this to work. The solution afterwards would be to simply do this as an example:
```C++
bool operator==(const PinSettings_t&) const = default;
```
| non_priority | replace memoryequaloperator t with default equals operator feature request remove the template class used to inherit equals operator as this makes the code more confusing to understand detailed description requires gcc for this to work the solution afterwards would be to simply do this as an example c bool operator const pinsettings t const default | 0 |
235,015 | 19,292,137,218 | IssuesEvent | 2021-12-12 00:44:29 | task-tim/temps | https://api.github.com/repos/task-tim/temps | closed | 4.2a Faire prototype de l'interface d'un appel téléphonique (répondre) | test case | - [x] 4.2a - 1 Créer maquette téléphonique pour ado et adulte sur Adobe XD
- [x] 4.2a - 2 Coder l'interface téléphonique (html, css)
- [x] 4.2a - 3 Ajouter le javascript qui permet de répondre à l'appel
- [x] 4.2a - 4 Tester et valider l'interface téléphonique (appel téléphonique) | 1.0 | 4.2a Faire prototype de l'interface d'un appel téléphonique (répondre) - - [x] 4.2a - 1 Créer maquette téléphonique pour ado et adulte sur Adobe XD
- [x] 4.2a - 2 Coder l'interface téléphonique (html, css)
- [x] 4.2a - 3 Ajouter le javascript qui permet de répondre à l'appel
- [x] 4.2a - 4 Tester et valider l'interface téléphonique (appel téléphonique) | non_priority | faire prototype de l interface d un appel téléphonique répondre créer maquette téléphonique pour ado et adulte sur adobe xd coder l interface téléphonique html css ajouter le javascript qui permet de répondre à l appel tester et valider l interface téléphonique appel téléphonique | 0 |
96,715 | 3,972,146,876 | IssuesEvent | 2016-05-04 14:29:40 | skerit/openc2e | https://api.github.com/repos/skerit/openc2e | opened | Toolbar icon to make hand invisible | Creatures 2 Low priority | Originally posted on Oct 21, 2008 by Helpful Hippo
> C2 has a toolbar icon which toggles the hand between being visible and invisible. We should make that work! Someone'll have to work out exactly how this works. | 1.0 | Toolbar icon to make hand invisible - Originally posted on Oct 21, 2008 by Helpful Hippo
> C2 has a toolbar icon which toggles the hand between being visible and invisible. We should make that work! Someone'll have to work out exactly how this works. | priority | toolbar icon to make hand invisible originally posted on oct by helpful hippo has a toolbar icon which toggles the hand between being visible and invisible we should make that work someone ll have to work out exactly how this works | 1 |
242,397 | 18,538,844,659 | IssuesEvent | 2021-10-21 14:12:55 | pnutboi/Project-Search-Bar | https://api.github.com/repos/pnutboi/Project-Search-Bar | closed | Add temporary GUI For testing | documentation | added listbox and centered items in general area of where they should be | 1.0 | Add temporary GUI For testing - added listbox and centered items in general area of where they should be | non_priority | add temporary gui for testing added listbox and centered items in general area of where they should be | 0 |
377,879 | 11,187,778,129 | IssuesEvent | 2020-01-02 00:09:28 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | play.google.com - see bug description | browser-firefox-mobile engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical | <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
**URL**: https://play.google.com/store/myplayactivity
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android
**Tested Another Browser**: Yes
**Problem type**: Something else
**Description**: where are my downloads
**Steps to Reproduce**:
I downloaded apps from play store but they are nowhere to be seen
[](https://webcompat.com/uploads/2020/1/566ba89d-3afa-43e0-ae89-d2d9773878ce.jpeg)
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191231134714</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/1/d32c0ab7-d9cc-4823-8ced-d1e53754c278)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | play.google.com - see bug description - <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
**URL**: https://play.google.com/store/myplayactivity
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android
**Tested Another Browser**: Yes
**Problem type**: Something else
**Description**: where are my downloads
**Steps to Reproduce**:
I downloaded apps from play store but they are nowhere to be seen
[](https://webcompat.com/uploads/2020/1/566ba89d-3afa-43e0-ae89-d2d9773878ce.jpeg)
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191231134714</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/1/d32c0ab7-d9cc-4823-8ced-d1e53754c278)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | play google com see bug description url browser version firefox mobile operating system android tested another browser yes problem type something else description where are my downloads steps to reproduce i downloaded apps from play store but they are nowhere to be seen browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel nightly hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
6,686 | 3,875,167,735 | IssuesEvent | 2016-04-11 23:28:27 | orbeon/orbeon-forms | https://api.github.com/repos/orbeon/orbeon-forms | closed | Actions: support selection controls with different itemsets in repeats | 4 Points Form Builder Form Runner RFE | Right now, we don't support different instances of the same selection control in a repeat being bound to different itemsets. This would be useful when doing cascading lists in repeats.
In some cases, as a workaround, it is possible to use a [data-bound select1], which works in repeats as it holds its itemset in its local model.
[data-bound select1]: http://wiki.orbeon.com/forms/doc/developer-guide/xbl-components/databound-select1 | 1.0 | Actions: support selection controls with different itemsets in repeats - Right now, we don't support different instances of the same selection control in a repeat being bound to different itemsets. This would be useful when doing cascading lists in repeats.
In some cases, as a workaround, it is possible to use a [data-bound select1], which works in repeats as it holds its itemset in its local model.
[data-bound select1]: http://wiki.orbeon.com/forms/doc/developer-guide/xbl-components/databound-select1 | non_priority | actions support selection controls with different itemsets in repeats right now we don t support different instances of the same selection control in a repeat being bound to different itemsets this would be useful when doing cascading lists in repeats in some cases as a workaround it is possible to use a which works in repeats as it holds its itemset in its local model | 0 |
32,011 | 8,786,955,762 | IssuesEvent | 2018-12-20 17:07:02 | elastic/elasticsearch | https://api.github.com/repos/elastic/elasticsearch | closed | [CI] unable to download dependencies from maven repo | :Core/Infra/Build | A build failed due to not being able to download dependencies
https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+6.x+intake/654/
this does not reproduce for me as I can download that dependency locally
```
[6.5.4] FAILURE: Build failed with an exception.
[6.5.4]
[6.5.4] Failed to get resource: HEAD. [HTTP HTTP/1.1 504 Gateway Time-out: https://plugins.gradle.org/m2/org/bouncycastle/bcpg-jdk15on/1.51/bcpg-jdk15on-1.51.jar]
[6.5.4] * What went wrong:
[6.5.4] A problem occurred configuring project ':distribution:packages'.
[6.5.4] > Could not resolve all artifacts for configuration ':distribution:packages:classpath'.
[6.5.4]
[6.5.4] > Could not download bcpg-jdk15on.jar (org.bouncycastle:bcpg-jdk15on:1.51)
[6.5.4] Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.
[6.5.4] Use '--warning-mode all' to show the individual deprecation warnings.
[6.5.4] > Could not get resource 'https://plugins.gradle.org/m2/org/bouncycastle/bcpg-jdk15on/1.51/bcpg-jdk15on-1.51.jar'.
[6.5.4] See https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
[6.5.4] > Could not HEAD 'https://plugins.gradle.org/m2/org/bouncycastle/bcpg-jdk15on/1.51/bcpg-jdk15on-1.51.jar'. Received status code 504 from server: Gateway Time-out
[6.5.4]
```
| 1.0 | [CI] unable to download dependencies from maven repo - A build failed due to not being able to download dependencies
https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+6.x+intake/654/
this does not reproduce for me as I can download that dependency locally
```
[6.5.4] FAILURE: Build failed with an exception.
[6.5.4]
[6.5.4] Failed to get resource: HEAD. [HTTP HTTP/1.1 504 Gateway Time-out: https://plugins.gradle.org/m2/org/bouncycastle/bcpg-jdk15on/1.51/bcpg-jdk15on-1.51.jar]
[6.5.4] * What went wrong:
[6.5.4] A problem occurred configuring project ':distribution:packages'.
[6.5.4] > Could not resolve all artifacts for configuration ':distribution:packages:classpath'.
[6.5.4]
[6.5.4] > Could not download bcpg-jdk15on.jar (org.bouncycastle:bcpg-jdk15on:1.51)
[6.5.4] Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.
[6.5.4] Use '--warning-mode all' to show the individual deprecation warnings.
[6.5.4] > Could not get resource 'https://plugins.gradle.org/m2/org/bouncycastle/bcpg-jdk15on/1.51/bcpg-jdk15on-1.51.jar'.
[6.5.4] See https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
[6.5.4] > Could not HEAD 'https://plugins.gradle.org/m2/org/bouncycastle/bcpg-jdk15on/1.51/bcpg-jdk15on-1.51.jar'. Received status code 504 from server: Gateway Time-out
[6.5.4]
```
| non_priority | unable to download dependencies from maven repo a build failed due to not being able to download dependencies this does not reproduce for me as i can download that dependency locally failure build failed with an exception failed to get resource head what went wrong a problem occurred configuring project distribution packages could not resolve all artifacts for configuration distribution packages classpath could not download bcpg jar org bouncycastle bcpg deprecated gradle features were used in this build making it incompatible with gradle use warning mode all to show the individual deprecation warnings could not get resource see could not head received status code from server gateway time out | 0 |
71,130 | 13,621,539,474 | IssuesEvent | 2020-09-24 00:59:52 | NIEM/NIEM-Releases | https://api.github.com/repos/NIEM/NIEM-Releases | closed | Removed extra spaces from Justice code definitions | 5.0 codes domain | Removed double spaces from Justice code definitions:
- j:PersonNameCategoryCodeSimpleType
- ALIAS
- HANDLE
- NICKNAME
- USER_ID
- j:PersonRaceCodeSimpleType
- NATIVE_HAWAIIAN-OTHER_PACIFIC_ISLANDER | 1.0 | Removed extra spaces from Justice code definitions - Removed double spaces from Justice code definitions:
- j:PersonNameCategoryCodeSimpleType
- ALIAS
- HANDLE
- NICKNAME
- USER_ID
- j:PersonRaceCodeSimpleType
- NATIVE_HAWAIIAN-OTHER_PACIFIC_ISLANDER | non_priority | removed extra spaces from justice code definitions removed double spaces from justice code definitions j personnamecategorycodesimpletype alias handle nickname user id j personracecodesimpletype native hawaiian other pacific islander | 0 |
463,838 | 13,301,835,364 | IssuesEvent | 2020-08-25 13:30:11 | GluuFederation/oxauth-config | https://api.github.com/repos/GluuFederation/oxauth-config | closed | Configuration – Key Regeneration | Priority-HIGH User Story | # Priority: HIGH
# Description
This endpoint should be used for Key Regeneration configuration settings.
# Endpoint
https://<servername:port>/api/v1/oxauth/config/properties/key-regen
# Supported methods
1. **GET**: retrieve Key Regeneration configuration settings. API consumer must have **read** permission to access this endpoint.
1. **PUT**: update Key Regeneration configuration settings. API consumer must have **write** permission to access this endpoint.
# Data types exchanged
1. **Consumes**: JSON
1. **Produces**: JSON
# Acceptance Criteria
- API should handle error scenarios and throw appropriate exception.
- The API consumer must have required permission to access the endpoint
- Operation should be successful.
# Swagger Spec
https://gluu.org/swagger-ui/?url=https://raw.githubusercontent.com/GluuFederation/oxauth-config/master/docs/oxauth-config-swagger.yaml
| 1.0 | Configuration – Key Regeneration - # Priority: HIGH
# Description
This endpoint should be used for Key Regeneration configuration settings.
# Endpoint
https://<servername:port>/api/v1/oxauth/config/properties/key-regen
# Supported methods
1. **GET**: retrieve Key Regeneration configuration settings. API consumer must have **read** permission to access this endpoint.
1. **PUT**: update Key Regeneration configuration settings. API consumer must have **write** permission to access this endpoint.
# Data types exchanged
1. **Consumes**: JSON
1. **Produces**: JSON
# Acceptance Criteria
- API should handle error scenarios and throw appropriate exception.
- The API consumer must have required permission to access the endpoint
- Operation should be successful.
# Swagger Spec
https://gluu.org/swagger-ui/?url=https://raw.githubusercontent.com/GluuFederation/oxauth-config/master/docs/oxauth-config-swagger.yaml
| priority | configuration – key regeneration priority high description this endpoint should be used for key regeneration configuration settings endpoint supported methods get retrieve key regeneration configuration settings api consumer must have read permission to access this endpoint put update key regeneration configuration settings api consumer must have write permission to access this endpoint data types exchanged consumes json produces json acceptance criteria api should handle error scenarios and throw appropriate exception the api consumer must have required permission to access the endpoint operation should be successful swagger spec | 1 |
35,198 | 30,832,283,118 | IssuesEvent | 2023-08-02 03:22:00 | SoCal-Showdown/socal-showdown-web | https://api.github.com/repos/SoCal-Showdown/socal-showdown-web | closed | Install and configure ESLint and Prettier | Infrastructure Developers 2 | To keep our project development consistent and easy to follow, we need to install ESLint and Prettier to provide linting and formatting services, respectively.
- [ ] Install and configure ESLint into the project. Add some documentation to the README to explain what this tool is, and how it works
- [ ] Install and configure Prettier into the project. Add some documentation to the README to explain what this tool is, and how it works
- [ ] Update the npm scripts so developers can run linting, formatting and both through commands (helpful tip - making rules postfixed with `:check` will allow for a helpful way to determine _if_ code follows linting and formatting rules, so we can run it in CI)
- [ ] Add linting and formatting checks in CI, to run on all pushes | 1.0 | Install and configure ESLint and Prettier - To keep our project development consistent and easy to follow, we need to install ESLint and Prettier to provide linting and formatting services, respectively.
- [ ] Install and configure ESLint into the project. Add some documentation to the README to explain what this tool is, and how it works
- [ ] Install and configure Prettier into the project. Add some documentation to the README to explain what this tool is, and how it works
- [ ] Update the npm scripts so developers can run linting, formatting and both through commands (helpful tip - making rules postfixed with `:check` will allow for a helpful way to determine _if_ code follows linting and formatting rules, so we can run it in CI)
- [ ] Add linting and formatting checks in CI, to run on all pushes | non_priority | install and configure eslint and prettier to keep our project development consistent and easy to follow we need to install eslint and prettier to provide linting and formatting services respectively install and configure eslint into the project add some documentation to the readme to explain what this tool is and how it works install and configure prettier into the project add some documentation to the readme to explain what this tool is and how it works update the npm scripts so developers can run linting formatting and both through commands helpful tip making rules postfixed with check will allow for a helpful way to determine if code follows linting and formatting rules so we can run it in ci add linting and formatting checks in ci to run on all pushes | 0 |
17,493 | 12,101,439,832 | IssuesEvent | 2020-04-20 15:13:01 | codesmithtools/Templates | https://api.github.com/repos/codesmithtools/Templates | closed | Entity Framework: Add support for InsertOnSubmit and other similar methods. | Framework-PLINQOEF Type-Enhancement Usability auto-migrated | ```
It would be really cool to support InsertOnSubmit by wrapping AddOjbect. Here
is a template as well as other documentation on this and other scenarios:
http://blogs.msdn.com/b/efdesign/archive/2009/08/13/linq-to-sql-to-entity-framew
ork-conversion-template.aspx
http://msdn.microsoft.com/en-us/library/ex6y04yf(VS.100).aspx
http://stackoverflow.com/questions/2975477/migrating-from-linq-to-sql-to-entity-
framework-4-0-tips-documentation-etc
```
Original issue reported on code.google.com by `bniemyjski` on 15 Aug 2011 at 3:55
| True | Entity Framework: Add support for InsertOnSubmit and other similar methods. - ```
It would be really cool to support InsertOnSubmit by wrapping AddOjbect. Here
is a template as well as other documentation on this and other scenarios:
http://blogs.msdn.com/b/efdesign/archive/2009/08/13/linq-to-sql-to-entity-framew
ork-conversion-template.aspx
http://msdn.microsoft.com/en-us/library/ex6y04yf(VS.100).aspx
http://stackoverflow.com/questions/2975477/migrating-from-linq-to-sql-to-entity-
framework-4-0-tips-documentation-etc
```
Original issue reported on code.google.com by `bniemyjski` on 15 Aug 2011 at 3:55
| non_priority | entity framework add support for insertonsubmit and other similar methods it would be really cool to support insertonsubmit by wrapping addojbect here is a template as well as other documentation on this and other scenarios ork conversion template aspx framework tips documentation etc original issue reported on code google com by bniemyjski on aug at | 0 |
66,708 | 20,598,120,129 | IssuesEvent | 2022-03-05 20:53:08 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | Camera preview is frozen, but video is correctly playing for recipient | T-Defect X-Needs-Info X-Cannot-Reproduce S-Major A-VoIP | ### Steps to reproduce
1. Join a video call
2. Turn on video
3. See a still image of your face
4. Recipient can see your video perfectly fine
### Outcome
#### What did you expect?
I expected the video preview to preview a video instead of an image
#### What happened instead?
The video preview previewed an image
### Operating system
Windows 10
### Application version
Element version: 1.9.8 Olm version: 3.2.8
### How did you install the app?
https://community.chocolatey.org/packages/element-desktop
### Homeserver
yiff.social
### Will you send logs?
No | 1.0 | Camera preview is frozen, but video is correctly playing for recipient - ### Steps to reproduce
1. Join a video call
2. Turn on video
3. See a still image of your face
4. Recipient can see your video perfectly fine
### Outcome
#### What did you expect?
I expected the video preview to preview a video instead of an image
#### What happened instead?
The video preview previewed an image
### Operating system
Windows 10
### Application version
Element version: 1.9.8 Olm version: 3.2.8
### How did you install the app?
https://community.chocolatey.org/packages/element-desktop
### Homeserver
yiff.social
### Will you send logs?
No | non_priority | camera preview is frozen but video is correctly playing for recipient steps to reproduce join a video call turn on video see a still image of your face recipient can see your video perfectly fine outcome what did you expect i expected the video preview to preview a video instead of an image what happened instead the video preview previewed an image operating system windows application version element version olm version how did you install the app homeserver yiff social will you send logs no | 0 |
623,027 | 19,660,284,389 | IssuesEvent | 2022-01-10 16:21:23 | buddyboss/buddyboss-platform | https://api.github.com/repos/buddyboss/buddyboss-platform | closed | Add Delete album option in album listing page | feature-enhancement priority-medium feature Stale | **Is your feature request related to a problem? Please describe.**
When you want to delete any album then you need to go to the album detail page and then you have an option to delete. There is no quick way to delete as we have for photos.
**Describe the solution you'd like**
Add more options on the album listing page as photos have right now. So, Users will be able to delete an album from listing page.
https://www.loom.com/share/980cc4350c9540e59a62627ff9b472e7
**Jira issue** : [PROD-882]
[PROD-882]: https://buddyboss.atlassian.net/browse/PROD-882?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | 1.0 | Add Delete album option in album listing page - **Is your feature request related to a problem? Please describe.**
When you want to delete any album then you need to go to the album detail page and then you have an option to delete. There is no quick way to delete as we have for photos.
**Describe the solution you'd like**
Add more options on the album listing page as photos have right now. So, Users will be able to delete an album from listing page.
https://www.loom.com/share/980cc4350c9540e59a62627ff9b472e7
**Jira issue** : [PROD-882]
[PROD-882]: https://buddyboss.atlassian.net/browse/PROD-882?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | priority | add delete album option in album listing page is your feature request related to a problem please describe when you want to delete any album then you need to go to the album detail page and then you have an option to delete there is no quick way to delete as we have for photos describe the solution you d like add more options on the album listing page as photos have right now so users will be able to delete an album from listing page jira issue | 1 |
29,051 | 5,575,631,844 | IssuesEvent | 2017-03-28 02:53:36 | ampproject/amphtml | https://api.github.com/repos/ampproject/amphtml | opened | Document server side rendering in AMP cache modifications best practices | Related to: Documentation | [AMP cache modifications best practices](https://github.com/ampproject/amphtml/blob/master/spec/amp-cache-modifications.md) should have the server-side rendering documented after it's been tested and is live.
Currently server-side rendering happens on AMP document through the following steps:
1. Apply static layout to custom-element tags (`<amp-…>`) per custom-element.js [applyLayout](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L226), may also want to see [parseLayout](https://github.com/ampproject/amphtml/blob/master/validator/engine/validator.js#L2598) and [calculateLayout](https://github.com/ampproject/amphtml/blob/master/validator/engine/validator.js#L2719) in validator.js
1. [Calculate](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L262) the effective layout.
Note that [getNaturalDimensions](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L247) assumes dimensions via [naturalDimensions_](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L70) and AMP Cache differs here for `amp-audio` by setting `height=auto` and `width=auto`
1. Add to the tag’s [`class` attribute](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L315) the value of [getLayoutClass](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L120)
1. If [isLayoutSizeDefined](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L130) then add to the tag’s [`class` attribute](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L317) the value `i-amphtml-layout-size-defined`
1. Add appropriate [styles](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L319) to `style` attribute depending on the layout
1. If [layout is responsive](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L328) then create a [child tag](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L329) `<i-amphtml-sizer style=...>` with appropriate [styles](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L330)
1. Add attribute `i-amphtml-layout=”{calculated_layout}”` to custom-element tags that have static layout applied
1. Add `i-amphtml-layout` attribute to `<html>` tag
1. Insert placeholder `<style amp-runtime></style>` before `<style amp-custom>`
1. Remove boilerplate and add `i-amphtml-no-boilerplate` attribute to `<html>` tag iff:
1. [These custom-elements](https://github.com/ampproject/amphtml/blob/master/src/render-delaying-services.js#L28) are not present in the document:
1. Referrer CSS classes: `amp-dynamic-css-classes`
1. Experiment control: `amp-experiment`
1. Custom-elements that delay rendering: `amp-accordion`
1. Attributes [`media`, `sizes`, and `heights`](https://github.com/ampproject/amphtml/blob/master/spec/amp-html-layout.md) are not present in the document.
Note the `<style amp-runtime></style>` is to inline a versioned [amp.css](https://github.com/ampproject/amphtml/blob/master/css/amp.css). The inlined version must match the AMP Runtime version. | 1.0 | Document server side rendering in AMP cache modifications best practices - [AMP cache modifications best practices](https://github.com/ampproject/amphtml/blob/master/spec/amp-cache-modifications.md) should have the server-side rendering documented after it's been tested and is live.
Currently server-side rendering happens on AMP document through the following steps:
1. Apply static layout to custom-element tags (`<amp-…>`) per custom-element.js [applyLayout](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L226), may also want to see [parseLayout](https://github.com/ampproject/amphtml/blob/master/validator/engine/validator.js#L2598) and [calculateLayout](https://github.com/ampproject/amphtml/blob/master/validator/engine/validator.js#L2719) in validator.js
1. [Calculate](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L262) the effective layout.
Note that [getNaturalDimensions](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L247) assumes dimensions via [naturalDimensions_](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L70) and AMP Cache differs here for `amp-audio` by setting `height=auto` and `width=auto`
1. Add to the tag’s [`class` attribute](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L315) the value of [getLayoutClass](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L120)
1. If [isLayoutSizeDefined](https://github.com/ampproject/amphtml/blob/master/src/layout.js#L130) then add to the tag’s [`class` attribute](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L317) the value `i-amphtml-layout-size-defined`
1. Add appropriate [styles](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L319) to `style` attribute depending on the layout
1. If [layout is responsive](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L328) then create a [child tag](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L329) `<i-amphtml-sizer style=...>` with appropriate [styles](https://github.com/ampproject/amphtml/blob/master/src/custom-element.js#L330)
1. Add attribute `i-amphtml-layout=”{calculated_layout}”` to custom-element tags that have static layout applied
1. Add `i-amphtml-layout` attribute to `<html>` tag
1. Insert placeholder `<style amp-runtime></style>` before `<style amp-custom>`
1. Remove boilerplate and add `i-amphtml-no-boilerplate` attribute to `<html>` tag iff:
1. [These custom-elements](https://github.com/ampproject/amphtml/blob/master/src/render-delaying-services.js#L28) are not present in the document:
1. Referrer CSS classes: `amp-dynamic-css-classes`
1. Experiment control: `amp-experiment`
1. Custom-elements that delay rendering: `amp-accordion`
1. Attributes [`media`, `sizes`, and `heights`](https://github.com/ampproject/amphtml/blob/master/spec/amp-html-layout.md) are not present in the document.
Note the `<style amp-runtime></style>` is to inline a versioned [amp.css](https://github.com/ampproject/amphtml/blob/master/css/amp.css). The inlined version must match the AMP Runtime version. | non_priority | document server side rendering in amp cache modifications best practices should have the server side rendering documented after it s been tested and is live currently server side rendering happens on amp document through the following steps apply static layout to custom element tags per custom element js may also want to see and in validator js the effective layout note that assumes dimensions via and amp cache differs here for amp audio by setting height auto and width auto add to the tag’s the value of if then add to the tag’s the value i amphtml layout size defined add appropriate to style attribute depending on the layout if then create a with appropriate add attribute i amphtml layout ” calculated layout ” to custom element tags that have static layout applied add i amphtml layout attribute to tag insert placeholder before remove boilerplate and add i amphtml no boilerplate attribute to tag iff are not present in the document referrer css classes amp dynamic css classes experiment control amp experiment custom elements that delay rendering amp accordion attributes are not present in the document note the is to inline a versioned the inlined version must match the amp runtime version | 0 |
286,004 | 21,560,573,818 | IssuesEvent | 2022-05-01 04:55:33 | NimbleEdge/EnvisEdge | https://api.github.com/repos/NimbleEdge/EnvisEdge | opened | 📚 Documentation: Write inline documentation for trainer_state_model.py | documentation 📃 good first issue python | ### 🙋 Where
Here:
- https://github.com/NimbleEdge/EnvisEdge/blob/00f554973085c54da98caf37721bec27ba07380d/fedrec/data_models/trainer_state_model.py#L32
- https://github.com/NimbleEdge/EnvisEdge/blob/00f554973085c54da98caf37721bec27ba07380d/fedrec/data_models/trainer_state_model.py#L47
### 💭 Description
We need to go "line-by-line" and create inline documentation for this file. Please try to use proper punctuation and English grammar to the best of your ability.
We are using the pep8 format for documentation. The following links are concise and would be very useful:
pep8 [guidelines](https://www.python.org/dev/peps/pep-0008/)
numpy style [guide](https://numpydoc.readthedocs.io/en/latest/format.html)
### 👀 Have you spent some time to check if this issue has been raised before?
- [X] I checked and didn't find similar issue
### 🏢 Have you read the guidlines?
- [X] I have read the Guildlines
### 🏢 Have you read the Code of Conduct?
- [X] I read the Code of Conduct | 1.0 | 📚 Documentation: Write inline documentation for trainer_state_model.py - ### 🙋 Where
Here:
- https://github.com/NimbleEdge/EnvisEdge/blob/00f554973085c54da98caf37721bec27ba07380d/fedrec/data_models/trainer_state_model.py#L32
- https://github.com/NimbleEdge/EnvisEdge/blob/00f554973085c54da98caf37721bec27ba07380d/fedrec/data_models/trainer_state_model.py#L47
### 💭 Description
We need to go "line-by-line" and create inline documentation for this file. Please try to use proper punctuation and English grammar to the best of your ability.
We are using the pep8 format for documentation. The following links are concise and would be very useful:
pep8 [guidelines](https://www.python.org/dev/peps/pep-0008/)
numpy style [guide](https://numpydoc.readthedocs.io/en/latest/format.html)
### 👀 Have you spent some time to check if this issue has been raised before?
- [X] I checked and didn't find similar issue
### 🏢 Have you read the guidlines?
- [X] I have read the Guildlines
### 🏢 Have you read the Code of Conduct?
- [X] I read the Code of Conduct | non_priority | 📚 documentation write inline documentation for trainer state model py 🙋 where here 💭 description we need to go line by line and create inline documentation for this file please try to use proper punctuation and english grammar to the best of your ability we are using the format for documentation the following links are concise and would be very useful numpy style 👀 have you spent some time to check if this issue has been raised before i checked and didn t find similar issue 🏢 have you read the guidlines i have read the guildlines 🏢 have you read the code of conduct i read the code of conduct | 0 |
117,323 | 4,713,613,005 | IssuesEvent | 2016-10-14 20:42:14 | TrinityCore/TrinityCore | https://api.github.com/repos/TrinityCore/TrinityCore | closed | Error spam | Comp-Core Priority-Low | Recently the core shows this error repeatedly:
"SmartScript: Action target Creature (GUID: 45218 Entry: 5743) is not using SmartAI, action called by Creature (GUID: 45218 Entry: 5743) skipped to prevent crash."
hash: e65f5ec142c3c3fd9fe7e8dc81ffee2a9099c980
<bountysource-plugin>
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/3723579-error-spam?utm_campaign=plugin&utm_content=tracker%2F1310&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F1310&utm_medium=issues&utm_source=github).
</bountysource-plugin> | 1.0 | Error spam - Recently the core shows this error repeatedly:
"SmartScript: Action target Creature (GUID: 45218 Entry: 5743) is not using SmartAI, action called by Creature (GUID: 45218 Entry: 5743) skipped to prevent crash."
hash: e65f5ec142c3c3fd9fe7e8dc81ffee2a9099c980
<bountysource-plugin>
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/3723579-error-spam?utm_campaign=plugin&utm_content=tracker%2F1310&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F1310&utm_medium=issues&utm_source=github).
</bountysource-plugin> | priority | error spam recently the core shows this error repeatedly smartscript action target creature guid entry is not using smartai action called by creature guid entry skipped to prevent crash hash want to back this issue we accept bounties via | 1 |
187,673 | 15,105,191,760 | IssuesEvent | 2021-02-08 12:43:24 | h1b9b/svelte-formik | https://api.github.com/repos/h1b9b/svelte-formik | opened | Documentation: add form use case with `validate` and `validationSchema` | documentation good first issue | Currently the Readme contain only a usage example without validation.
The goal here is the add:
* an example using `validationSchema`
* an example using `validate` | 1.0 | Documentation: add form use case with `validate` and `validationSchema` - Currently the Readme contain only a usage example without validation.
The goal here is the add:
* an example using `validationSchema`
* an example using `validate` | non_priority | documentation add form use case with validate and validationschema currently the readme contain only a usage example without validation the goal here is the add an example using validationschema an example using validate | 0 |
449,079 | 12,963,035,623 | IssuesEvent | 2020-07-20 18:07:16 | kamiyaowl/blaze-snes | https://api.github.com/repos/kamiyaowl/blaze-snes | opened | Opcode, Addressing周りをBranchTableに置き換えるか検討する | low priority performance | パフォーマンス対策、気になるようならSwitch分のildasmを見て決める。
単純なケースを作る場合は、対象の処理に対するアクセスはseq/randomなどにしてswitch分に最適化がかからないようにする。 | 1.0 | Opcode, Addressing周りをBranchTableに置き換えるか検討する - パフォーマンス対策、気になるようならSwitch分のildasmを見て決める。
単純なケースを作る場合は、対象の処理に対するアクセスはseq/randomなどにしてswitch分に最適化がかからないようにする。 | priority | opcode addressing周りをbranchtableに置き換えるか検討する パフォーマンス対策、気になるようならswitch分のildasmを見て決める。 単純なケースを作る場合は、対象の処理に対するアクセスはseq randomなどにしてswitch分に最適化がかからないようにする。 | 1 |
256,165 | 22,041,331,661 | IssuesEvent | 2022-05-29 12:01:01 | SAA-SDT/eac-cpf-schema | https://api.github.com/repos/SAA-SDT/eac-cpf-schema | closed | <objectBinWrap> | Element Best Practice Guide Tested by Schema Team | ## Object Bin Wrap
Remove this element without any replacement.
Provide an example how to link to an imge file via relation in the Best Practise Guide.
## Creator of issue
1. Silke Jagodzinski
2. TS-EAS: EAC-CPF subgroup
3. silkejagodzinski@gmail.com
## Related issues / documents
## EAD3 Reconciliation
EAC-CPF specific element
## Context
This element provides a place for a base64-encoded binary representation of a resource.
**May contain**: base64Binary
**May occur within**: `<cpfRelation>` , `<functionRelation>` , `<resourceRelation>`, `<setComponent>` , `<source>`
**Attributes:** `@xml:id` - Optional
**Availability:** Optional, Non-repeatable
## Solution documentation
- Example for Best Practise Guide needed (within //relation)
| 1.0 | <objectBinWrap> - ## Object Bin Wrap
Remove this element without any replacement.
Provide an example how to link to an imge file via relation in the Best Practise Guide.
## Creator of issue
1. Silke Jagodzinski
2. TS-EAS: EAC-CPF subgroup
3. silkejagodzinski@gmail.com
## Related issues / documents
## EAD3 Reconciliation
EAC-CPF specific element
## Context
This element provides a place for a base64-encoded binary representation of a resource.
**May contain**: base64Binary
**May occur within**: `<cpfRelation>` , `<functionRelation>` , `<resourceRelation>`, `<setComponent>` , `<source>`
**Attributes:** `@xml:id` - Optional
**Availability:** Optional, Non-repeatable
## Solution documentation
- Example for Best Practise Guide needed (within //relation)
| non_priority | object bin wrap remove this element without any replacement provide an example how to link to an imge file via relation in the best practise guide creator of issue silke jagodzinski ts eas eac cpf subgroup silkejagodzinski gmail com related issues documents reconciliation eac cpf specific element context this element provides a place for a encoded binary representation of a resource may contain may occur within attributes xml id optional availability optional non repeatable solution documentation example for best practise guide needed within relation | 0 |
53,549 | 7,842,667,599 | IssuesEvent | 2018-06-19 00:58:48 | facebook/jest | https://api.github.com/repos/facebook/jest | closed | Unexpected test file matching due to parent directory name interfere with `testRegex` | Documentation :book: Good First Issue :wave: | <!--
THIS IS NOT A HELP FORUM.
If you are experiencing problems with setting up Jest, please make sure to visit our Help page:
https://facebook.github.io/jest/help.html
-->
<!--
Before creating an issue please check the following:
* you are using the latest version of Jest
* try re-installing your node_modules folder
* run Jest once with `--no-cache` to see if that fixes the problem you are experiencing.
-->
**Do you want to request a _feature_ or report a _bug_?**
bug
**What is the current behavior?**
Using config option `testRegex` that does not include `test/...` something, having tests in `test/xxx.test.js` will still be run.
The example in my case is: `{ "testRegex": "src/.*\.test\.js$" }`
**If the current behavior is a bug, please provide the steps to reproduce and
either a repl.it demo through https://repl.it/languages/jest or a minimal
repository on GitHub that we can `yarn install` and `yarn test`.**
See https://github.com/mraxus/jest-always-test-test and use commands `yarn test` and `yarn fail` to see expected/unexpected behaviour
**What is the expected behaviour?**
`yarn fail` does not pass where it should.
**Please provide your exact Jest configuration**
```
module.exports = {
testEnvironment: 'node',
testRegex: 'test/unit/.*\\.test\\.js$',
};
```
vs
```
module.exports = {
testEnvironment: 'node',
testRegex: 'src/.*\\.test\\.js$',
};
```
**Run `npx envinfo --preset jest` in your project directory and paste the
results here**
```
System:
OS: macOS High Sierra 10.13.4
CPU: x64 Intel(R) Core(TM) i5-7267U CPU @ 3.10GHz
Binaries:
Node: 8.11.1
Yarn: 1.5.1
npm: 5.8.0
npmPackages:
jest:
wanted: ^22.4.3
installed: 22.4.3
```
| 1.0 | Unexpected test file matching due to parent directory name interfere with `testRegex` - <!--
THIS IS NOT A HELP FORUM.
If you are experiencing problems with setting up Jest, please make sure to visit our Help page:
https://facebook.github.io/jest/help.html
-->
<!--
Before creating an issue please check the following:
* you are using the latest version of Jest
* try re-installing your node_modules folder
* run Jest once with `--no-cache` to see if that fixes the problem you are experiencing.
-->
**Do you want to request a _feature_ or report a _bug_?**
bug
**What is the current behavior?**
Using config option `testRegex` that does not include `test/...` something, having tests in `test/xxx.test.js` will still be run.
The example in my case is: `{ "testRegex": "src/.*\.test\.js$" }`
**If the current behavior is a bug, please provide the steps to reproduce and
either a repl.it demo through https://repl.it/languages/jest or a minimal
repository on GitHub that we can `yarn install` and `yarn test`.**
See https://github.com/mraxus/jest-always-test-test and use commands `yarn test` and `yarn fail` to see expected/unexpected behaviour
**What is the expected behaviour?**
`yarn fail` does not pass where it should.
**Please provide your exact Jest configuration**
```
module.exports = {
testEnvironment: 'node',
testRegex: 'test/unit/.*\\.test\\.js$',
};
```
vs
```
module.exports = {
testEnvironment: 'node',
testRegex: 'src/.*\\.test\\.js$',
};
```
**Run `npx envinfo --preset jest` in your project directory and paste the
results here**
```
System:
OS: macOS High Sierra 10.13.4
CPU: x64 Intel(R) Core(TM) i5-7267U CPU @ 3.10GHz
Binaries:
Node: 8.11.1
Yarn: 1.5.1
npm: 5.8.0
npmPackages:
jest:
wanted: ^22.4.3
installed: 22.4.3
```
| non_priority | unexpected test file matching due to parent directory name interfere with testregex this is not a help forum if you are experiencing problems with setting up jest please make sure to visit our help page before creating an issue please check the following you are using the latest version of jest try re installing your node modules folder run jest once with no cache to see if that fixes the problem you are experiencing do you want to request a feature or report a bug bug what is the current behavior using config option testregex that does not include test something having tests in test xxx test js will still be run the example in my case is testregex src test js if the current behavior is a bug please provide the steps to reproduce and either a repl it demo through or a minimal repository on github that we can yarn install and yarn test see and use commands yarn test and yarn fail to see expected unexpected behaviour what is the expected behaviour yarn fail does not pass where it should please provide your exact jest configuration module exports testenvironment node testregex test unit test js vs module exports testenvironment node testregex src test js run npx envinfo preset jest in your project directory and paste the results here system os macos high sierra cpu intel r core tm cpu binaries node yarn npm npmpackages jest wanted installed | 0 |
296,602 | 25,562,276,223 | IssuesEvent | 2022-11-30 11:43:10 | wazuh/wazuh | https://api.github.com/repos/wazuh/wazuh | opened | Release 4.4.0 - Alpha 1 - E2E UX tests - Amazon Cloudwatch integration | module/aws module/cloud monitoring type/test/manual release test/4.4.0 | The following issue aims to run the specified test for the current release candidate, report the results, and open new issues for any encountered errors.
## Test information
| | |
|-------------------------|--------------------------------------------|
| **Test name** | Amazon Cloudwatch Integration |
| **Category** | Cloud Security |
| **Deployment option** |Single indexer and dashboard, multiple servers: Quickstart|
| **Main release issue** |https://github.com/wazuh/wazuh/issues/15505|
| **Release candidate** |https://github.com/wazuh/wazuh/issues/15519|
## Test description
Test different use cases of Amazon events Cloudwatch and see that alerts are generated and make sense.
## Test report procedure
All test results must have one of the following statuses:
| | |
|---------------------------------|--------------------------------------------|
| :green_circle: | All checks passed. |
| :red_circle: | There is at least one failed result. |
| :yellow_circle: | There is at least one expected failure or skipped test and no failures. |
Any failing test must be properly addressed with a new issue, detailing the error and the possible cause.
An extended report of the test results must be attached as a ZIP or TXT file. Please attach any documents, screenshots, or tables to the issue update with the results. This report can be used by the auditors to dig deeper into any possible failures and details.
## Conclusions
<!--
All tests have been executed and the results can be found [here]().
| | | | |
|----------------|-------------|---------------------|----------------|
| **Status** | **Test** | **Failure type** | **Notes** |
| | | | |
All tests have passed and the fails have been reported or justified. Therefore, I conclude that this issue is finished and OK for this release candidate.
-->
## Auditors validation
The definition of done for this one is the validation of the conclusions and the test results from all auditors.
All checks from below must be accepted in order to close this issue.
- [ ] @jmv74211
- [ ] @davidjiglesias
| 2.0 | Release 4.4.0 - Alpha 1 - E2E UX tests - Amazon Cloudwatch integration - The following issue aims to run the specified test for the current release candidate, report the results, and open new issues for any encountered errors.
## Test information
| | |
|-------------------------|--------------------------------------------|
| **Test name** | Amazon Cloudwatch Integration |
| **Category** | Cloud Security |
| **Deployment option** |Single indexer and dashboard, multiple servers: Quickstart|
| **Main release issue** |https://github.com/wazuh/wazuh/issues/15505|
| **Release candidate** |https://github.com/wazuh/wazuh/issues/15519|
## Test description
Test different use cases of Amazon events Cloudwatch and see that alerts are generated and make sense.
## Test report procedure
All test results must have one of the following statuses:
| | |
|---------------------------------|--------------------------------------------|
| :green_circle: | All checks passed. |
| :red_circle: | There is at least one failed result. |
| :yellow_circle: | There is at least one expected failure or skipped test and no failures. |
Any failing test must be properly addressed with a new issue, detailing the error and the possible cause.
An extended report of the test results must be attached as a ZIP or TXT file. Please attach any documents, screenshots, or tables to the issue update with the results. This report can be used by the auditors to dig deeper into any possible failures and details.
## Conclusions
<!--
All tests have been executed and the results can be found [here]().
| | | | |
|----------------|-------------|---------------------|----------------|
| **Status** | **Test** | **Failure type** | **Notes** |
| | | | |
All tests have passed and the fails have been reported or justified. Therefore, I conclude that this issue is finished and OK for this release candidate.
-->
## Auditors validation
The definition of done for this one is the validation of the conclusions and the test results from all auditors.
All checks from below must be accepted in order to close this issue.
- [ ] @jmv74211
- [ ] @davidjiglesias
| non_priority | release alpha ux tests amazon cloudwatch integration the following issue aims to run the specified test for the current release candidate report the results and open new issues for any encountered errors test information test name amazon cloudwatch integration category cloud security deployment option single indexer and dashboard multiple servers quickstart main release issue release candidate test description test different use cases of amazon events cloudwatch and see that alerts are generated and make sense test report procedure all test results must have one of the following statuses green circle all checks passed red circle there is at least one failed result yellow circle there is at least one expected failure or skipped test and no failures any failing test must be properly addressed with a new issue detailing the error and the possible cause an extended report of the test results must be attached as a zip or txt file please attach any documents screenshots or tables to the issue update with the results this report can be used by the auditors to dig deeper into any possible failures and details conclusions all tests have been executed and the results can be found status test failure type notes all tests have passed and the fails have been reported or justified therefore i conclude that this issue is finished and ok for this release candidate auditors validation the definition of done for this one is the validation of the conclusions and the test results from all auditors all checks from below must be accepted in order to close this issue davidjiglesias | 0 |
57,426 | 3,082,002,957 | IssuesEvent | 2015-08-23 09:34:13 | pavel-pimenov/flylinkdc-r5xx | https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx | closed | [r502] Все скрытые боты хаба вылезли наружу. | bug imported Priority-Medium | _From [zippoz...@gmail.com](https://code.google.com/u/112526314443357204055/) on March 18, 2013 10:11:50_
После недавних правок по "скрытым ботам", в список файлов вылезли абсолютно все боты хаба, даже те, которые не зарегистрированы (не должны находиться в списке файлов).
Скриншот прилагаю. Специально выделил фильтром по букве "д". Но подобных ботов в моём хабе много.
Так-же, бот "--- Последние 25 сообщений ---" имеется в хабе dchub://flylinkdc.dyndns.org
**Attachment:** [Screenshot-240.png](http://code.google.com/p/flylinkdc/issues/detail?id=944)
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=944_ | 1.0 | [r502] Все скрытые боты хаба вылезли наружу. - _From [zippoz...@gmail.com](https://code.google.com/u/112526314443357204055/) on March 18, 2013 10:11:50_
После недавних правок по "скрытым ботам", в список файлов вылезли абсолютно все боты хаба, даже те, которые не зарегистрированы (не должны находиться в списке файлов).
Скриншот прилагаю. Специально выделил фильтром по букве "д". Но подобных ботов в моём хабе много.
Так-же, бот "--- Последние 25 сообщений ---" имеется в хабе dchub://flylinkdc.dyndns.org
**Attachment:** [Screenshot-240.png](http://code.google.com/p/flylinkdc/issues/detail?id=944)
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=944_ | priority | все скрытые боты хаба вылезли наружу from on march после недавних правок по скрытым ботам в список файлов вылезли абсолютно все боты хаба даже те которые не зарегистрированы не должны находиться в списке файлов скриншот прилагаю специально выделил фильтром по букве д но подобных ботов в моём хабе много так же бот последние сообщений имеется в хабе dchub flylinkdc dyndns org attachment original issue | 1 |
25,913 | 11,233,423,658 | IssuesEvent | 2020-01-09 01:11:19 | wrbejar/github-slideshow | https://api.github.com/repos/wrbejar/github-slideshow | opened | CVE-2019-16892 (Medium) detected in rubyzip-1.2.3.gem | security vulnerability | ## CVE-2019-16892 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>rubyzip-1.2.3.gem</b></p></summary>
<p></p>
<p>Library home page: <a href="https://rubygems.org/gems/rubyzip-1.2.3.gem">https://rubygems.org/gems/rubyzip-1.2.3.gem</a></p>
<p>Path to dependency file: /tmp/ws-scm/github-slideshow/Gemfile.lock</p>
<p>Path to vulnerable library: /var/lib/gems/2.3.0/cache/rubyzip-1.2.3.gem</p>
<p>
Dependency Hierarchy:
- github-pages-198.gem (Root Library)
- jekyll-remote-theme-0.3.1.gem
- :x: **rubyzip-1.2.3.gem** (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>
In Rubyzip before 1.3.0, a crafted ZIP file can bypass application checks on ZIP entry sizes because data about the uncompressed size can be spoofed. This allows attackers to cause a denial of service (disk consumption).
<p>Publish Date: 2019-09-25
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16892>CVE-2019-16892</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16892">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16892</a></p>
<p>Release Date: 2019-09-25</p>
<p>Fix Resolution: 1.3.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Ruby","packageName":"rubyzip","packageVersion":"1.2.3","isTransitiveDependency":true,"dependencyTree":"github-pages:198;jekyll-remote-theme:0.3.1;rubyzip:1.2.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.3.0"}],"vulnerabilityIdentifier":"CVE-2019-16892","vulnerabilityDetails":"In Rubyzip before 1.3.0, a crafted ZIP file can bypass application checks on ZIP entry sizes because data about the uncompressed size can be spoofed. This allows attackers to cause a denial of service (disk consumption).","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16892","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Local","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2019-16892 (Medium) detected in rubyzip-1.2.3.gem - ## CVE-2019-16892 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>rubyzip-1.2.3.gem</b></p></summary>
<p></p>
<p>Library home page: <a href="https://rubygems.org/gems/rubyzip-1.2.3.gem">https://rubygems.org/gems/rubyzip-1.2.3.gem</a></p>
<p>Path to dependency file: /tmp/ws-scm/github-slideshow/Gemfile.lock</p>
<p>Path to vulnerable library: /var/lib/gems/2.3.0/cache/rubyzip-1.2.3.gem</p>
<p>
Dependency Hierarchy:
- github-pages-198.gem (Root Library)
- jekyll-remote-theme-0.3.1.gem
- :x: **rubyzip-1.2.3.gem** (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>
In Rubyzip before 1.3.0, a crafted ZIP file can bypass application checks on ZIP entry sizes because data about the uncompressed size can be spoofed. This allows attackers to cause a denial of service (disk consumption).
<p>Publish Date: 2019-09-25
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16892>CVE-2019-16892</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16892">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16892</a></p>
<p>Release Date: 2019-09-25</p>
<p>Fix Resolution: 1.3.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Ruby","packageName":"rubyzip","packageVersion":"1.2.3","isTransitiveDependency":true,"dependencyTree":"github-pages:198;jekyll-remote-theme:0.3.1;rubyzip:1.2.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.3.0"}],"vulnerabilityIdentifier":"CVE-2019-16892","vulnerabilityDetails":"In Rubyzip before 1.3.0, a crafted ZIP file can bypass application checks on ZIP entry sizes because data about the uncompressed size can be spoofed. This allows attackers to cause a denial of service (disk consumption).","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16892","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Local","I":"None"},"extraData":{}}</REMEDIATE> --> | non_priority | cve medium detected in rubyzip gem cve medium severity vulnerability vulnerable library rubyzip gem library home page a href path to dependency file tmp ws scm github slideshow gemfile lock path to vulnerable library var lib gems cache rubyzip gem dependency hierarchy github pages gem root library jekyll remote theme gem x rubyzip gem vulnerable library vulnerability details in rubyzip before a crafted zip file can bypass application checks on zip entry sizes because data about the uncompressed size can be spoofed this allows attackers to cause a denial of service disk consumption publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails in rubyzip before a crafted zip file can bypass application checks on zip entry sizes because data about the uncompressed size can be spoofed this allows attackers to cause a denial of service disk consumption vulnerabilityurl | 0 |
304,067 | 23,048,975,117 | IssuesEvent | 2022-07-24 10:41:14 | nbuchwitz/icingaweb2-module-map | https://api.github.com/repos/nbuchwitz/icingaweb2-module-map | closed | Allow to save filtered maps | enhancement documentation | Would it be possible to create another map? and then assign different hosts for each map?
Thanks. | 1.0 | Allow to save filtered maps - Would it be possible to create another map? and then assign different hosts for each map?
Thanks. | non_priority | allow to save filtered maps would it be possible to create another map and then assign different hosts for each map thanks | 0 |
123,450 | 17,772,239,479 | IssuesEvent | 2021-08-30 14:53:13 | kapseliboi/RDocumentation-app | https://api.github.com/repos/kapseliboi/RDocumentation-app | opened | WS-2021-0100 (High) detected in dot-access-1.0.0.tgz | security vulnerability | ## WS-2021-0100 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>dot-access-1.0.0.tgz</b></p></summary>
<p>Access object properties using dot notation.</p>
<p>Library home page: <a href="https://registry.npmjs.org/dot-access/-/dot-access-1.0.0.tgz">https://registry.npmjs.org/dot-access/-/dot-access-1.0.0.tgz</a></p>
<p>Path to dependency file: RDocumentation-app/package.json</p>
<p>Path to vulnerable library: RDocumentation-app/node_modules/dot-access/package.json</p>
<p>
Dependency Hierarchy:
- sails-0.12.11.tgz (Root Library)
- skipper-0.6.5.tgz
- :x: **dot-access-1.0.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kapseliboi/RDocumentation-app/commit/ea1d4334329f74384d2d1b67f98e875da0b95310">ea1d4334329f74384d2d1b67f98e875da0b95310</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>
Prototype pollution vulnerability in `dot-access` versions 0.0.1 through 1.0.0 allows an attacker to cause a denial of service and may lead to remote code execution.
<p>Publish Date: 2021-05-10
<p>URL: <a href=https://github.com/naistran/dot-access/blob/371c786a9038c6ddeba12c852b86aabe5292df79/index.js#L13>WS-2021-0100</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.2</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: Low
- 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>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | WS-2021-0100 (High) detected in dot-access-1.0.0.tgz - ## WS-2021-0100 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>dot-access-1.0.0.tgz</b></p></summary>
<p>Access object properties using dot notation.</p>
<p>Library home page: <a href="https://registry.npmjs.org/dot-access/-/dot-access-1.0.0.tgz">https://registry.npmjs.org/dot-access/-/dot-access-1.0.0.tgz</a></p>
<p>Path to dependency file: RDocumentation-app/package.json</p>
<p>Path to vulnerable library: RDocumentation-app/node_modules/dot-access/package.json</p>
<p>
Dependency Hierarchy:
- sails-0.12.11.tgz (Root Library)
- skipper-0.6.5.tgz
- :x: **dot-access-1.0.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kapseliboi/RDocumentation-app/commit/ea1d4334329f74384d2d1b67f98e875da0b95310">ea1d4334329f74384d2d1b67f98e875da0b95310</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>
Prototype pollution vulnerability in `dot-access` versions 0.0.1 through 1.0.0 allows an attacker to cause a denial of service and may lead to remote code execution.
<p>Publish Date: 2021-05-10
<p>URL: <a href=https://github.com/naistran/dot-access/blob/371c786a9038c6ddeba12c852b86aabe5292df79/index.js#L13>WS-2021-0100</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.2</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: Low
- 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>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | ws high detected in dot access tgz ws high severity vulnerability vulnerable library dot access tgz access object properties using dot notation library home page a href path to dependency file rdocumentation app package json path to vulnerable library rdocumentation app node modules dot access package json dependency hierarchy sails tgz root library skipper tgz x dot access tgz vulnerable library found in head commit a href found in base branch master vulnerability details prototype pollution vulnerability in dot access versions through allows an attacker to cause a denial of service and may lead to remote code execution 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 low availability impact high for more information on scores click a href step up your open source security game with whitesource | 0 |
163,997 | 13,931,531,992 | IssuesEvent | 2020-10-22 05:30:04 | owncast/owncast | https://api.github.com/repos/owncast/owncast | closed | Support a single line curl install | documentation | I know some people don't like these because of possible security implications, but I've certainly used these to install things I trust.
Running
`curl -s https://owncast.online/install.sh | bash`
Could:
1. Verify `ffmpeg` is in the path.
1. Create an install directory.
1. Download the zip of the most recent release from Github.
1. Unzip it.
1. Print out the default port and key with a message saying how to change it.
1. Tell the user they're ready to go and can run the binary.
We could make this single line prominent on our documentation page and under the quick start instructions.
What do you think? @graywolf336 @geekgonecrazy @mattdsteele @jeyemwey | 1.0 | Support a single line curl install - I know some people don't like these because of possible security implications, but I've certainly used these to install things I trust.
Running
`curl -s https://owncast.online/install.sh | bash`
Could:
1. Verify `ffmpeg` is in the path.
1. Create an install directory.
1. Download the zip of the most recent release from Github.
1. Unzip it.
1. Print out the default port and key with a message saying how to change it.
1. Tell the user they're ready to go and can run the binary.
We could make this single line prominent on our documentation page and under the quick start instructions.
What do you think? @graywolf336 @geekgonecrazy @mattdsteele @jeyemwey | non_priority | support a single line curl install i know some people don t like these because of possible security implications but i ve certainly used these to install things i trust running curl s bash could verify ffmpeg is in the path create an install directory download the zip of the most recent release from github unzip it print out the default port and key with a message saying how to change it tell the user they re ready to go and can run the binary we could make this single line prominent on our documentation page and under the quick start instructions what do you think geekgonecrazy mattdsteele jeyemwey | 0 |
27,366 | 4,974,227,299 | IssuesEvent | 2016-12-06 05:19:39 | rbei-etas/busmaster | https://api.github.com/repos/rbei-etas/busmaster | opened | Trace window shows unexpected messages while enabling node simulation after disabling it | 1.3 patch (defect) 3.3 low priority (EC3) | 1. Add a node and message hanlder to it And trace some messages inside the handler for LIN
2.Add the same frame and response in tx wnd
3.Transmit the messahe by disabling the nodes
4.Enable the nodes and and connect
5.Trace window is printing the trace messages which was added in the message handler
[Issue is reproducible in V2.6.4] | 1.0 | Trace window shows unexpected messages while enabling node simulation after disabling it - 1. Add a node and message hanlder to it And trace some messages inside the handler for LIN
2.Add the same frame and response in tx wnd
3.Transmit the messahe by disabling the nodes
4.Enable the nodes and and connect
5.Trace window is printing the trace messages which was added in the message handler
[Issue is reproducible in V2.6.4] | non_priority | trace window shows unexpected messages while enabling node simulation after disabling it add a node and message hanlder to it and trace some messages inside the handler for lin add the same frame and response in tx wnd transmit the messahe by disabling the nodes enable the nodes and and connect trace window is printing the trace messages which was added in the message handler | 0 |
673,095 | 22,947,779,363 | IssuesEvent | 2022-07-19 03:00:15 | NTBBloodbath/doom-nvim | https://api.github.com/repos/NTBBloodbath/doom-nvim | closed | nvim-treesitter install.lua:348 issue | scope: bug good first issue priority: medium |
`nvim project`

`Parker update` result

`NvimTreeRefresh` result

`checkhealth`


`NVIM v0.7.0-dev+1156-ge38354334` build from source
`Ubuntu 20.04.4 LTS`
I tried both bleeding-edge
| 1.0 | nvim-treesitter install.lua:348 issue -
`nvim project`

`Parker update` result

`NvimTreeRefresh` result

`checkhealth`


`NVIM v0.7.0-dev+1156-ge38354334` build from source
`Ubuntu 20.04.4 LTS`
I tried both bleeding-edge
| priority | nvim treesitter install lua issue nvim project parker update result nvimtreerefresh result checkhealth nvim dev build from source ubuntu lts i tried both bleeding edge | 1 |
760,471 | 26,642,882,811 | IssuesEvent | 2023-01-25 07:19:03 | wso2/api-manager | https://api.github.com/repos/wso2/api-manager | closed | [4.2.0][Dependency Upgrade] nimbus-jose-jwt version upgrade | Type/Task Priority/Normal Missing/Component | ### Description
This issue is to track progress in nimbus-jose-jwt version upgrade in APIM 4.2.0.
### Affected Component
APIM
### Version
4.2.0
### Related Issues
_No response_
### Suggested Labels
_No response_ | 1.0 | [4.2.0][Dependency Upgrade] nimbus-jose-jwt version upgrade - ### Description
This issue is to track progress in nimbus-jose-jwt version upgrade in APIM 4.2.0.
### Affected Component
APIM
### Version
4.2.0
### Related Issues
_No response_
### Suggested Labels
_No response_ | priority | nimbus jose jwt version upgrade description this issue is to track progress in nimbus jose jwt version upgrade in apim affected component apim version related issues no response suggested labels no response | 1 |
627,753 | 19,913,741,457 | IssuesEvent | 2022-01-25 20:00:55 | azerothcore/azerothcore-wotlk | https://api.github.com/repos/azerothcore/azerothcore-wotlk | opened | Wetlands (Thelgen Rock) - Lvl 5 Ram inside a Spider cave | ChromieCraft Generic Priority-Low | ### Current Behaviour
AS per original posted of hte issue on CC:
PLZ HELP. A small Lvl 5 Ram is lost inside a cave. Please help him to find a way out so the spiders doesn't eat him! :( Thank you brave developer!


### Expected Blizzlike Behaviour
AS per original posted of hte issue on CC:
I can't tell the exact blizzlike behavior. But the ram doesn't move at all and stands still in a very weird place. Since rams are supposed to move around it tells me that there is something wrong.
### Source
_No response_
### Steps to reproduce the problem
1. Go to Wetlands. The Cave is called Thelgen Rock
2. Walk inside until the end of the cave, there you will see the random Ram Lvl 5.
### Extra Notes
_No response_
### AC rev. hash/commit
https://github.com/chromiecraft/azerothcore-wotlk/commit/259b9133f68ef0d740fc871d59fab3d2791f33b4
### Operating system
Ubuntu 20.04
### Custom changes or Modules
- [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot)
- [mod-cfbg](https://github.com/azerothcore/mod-cfbg)
- [mod-chat-transmitter](https://github.com/azerothcore/mod-chat-transmitter)
- [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp)
- [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings)
- [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset)
- [mod-eluna-lua-engine](https://github.com/azerothcore/mod-eluna-lua-engine)
- [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker)
- [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena)
- [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check)
- [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles)
- [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer)
- [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache)
- [mod-server-auto-shutdown](https://github.com/azerothcore/mod-server-auto-shutdown)
- [mod-save-inventory](https://github.com/Nyeriah/mod-save-inventory)
- [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy)
- [lua-exchange-npc](https://github.com/55Honey/Acore_ExchangeNpc)
- [lua-custom-worldboss](https://github.com/55Honey/Acore_CustomWorldboss)
- [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward)
- [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend)
- [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind)
- [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements)
- [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck)
- [lua-zone-debuff](https://github.com/55Honey/Acore_ZoneDebuff) | 1.0 | Wetlands (Thelgen Rock) - Lvl 5 Ram inside a Spider cave - ### Current Behaviour
AS per original posted of hte issue on CC:
PLZ HELP. A small Lvl 5 Ram is lost inside a cave. Please help him to find a way out so the spiders doesn't eat him! :( Thank you brave developer!


### Expected Blizzlike Behaviour
AS per original posted of hte issue on CC:
I can't tell the exact blizzlike behavior. But the ram doesn't move at all and stands still in a very weird place. Since rams are supposed to move around it tells me that there is something wrong.
### Source
_No response_
### Steps to reproduce the problem
1. Go to Wetlands. The Cave is called Thelgen Rock
2. Walk inside until the end of the cave, there you will see the random Ram Lvl 5.
### Extra Notes
_No response_
### AC rev. hash/commit
https://github.com/chromiecraft/azerothcore-wotlk/commit/259b9133f68ef0d740fc871d59fab3d2791f33b4
### Operating system
Ubuntu 20.04
### Custom changes or Modules
- [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot)
- [mod-cfbg](https://github.com/azerothcore/mod-cfbg)
- [mod-chat-transmitter](https://github.com/azerothcore/mod-chat-transmitter)
- [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp)
- [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings)
- [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset)
- [mod-eluna-lua-engine](https://github.com/azerothcore/mod-eluna-lua-engine)
- [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker)
- [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena)
- [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check)
- [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles)
- [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer)
- [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache)
- [mod-server-auto-shutdown](https://github.com/azerothcore/mod-server-auto-shutdown)
- [mod-save-inventory](https://github.com/Nyeriah/mod-save-inventory)
- [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy)
- [lua-exchange-npc](https://github.com/55Honey/Acore_ExchangeNpc)
- [lua-custom-worldboss](https://github.com/55Honey/Acore_CustomWorldboss)
- [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward)
- [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend)
- [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind)
- [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements)
- [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck)
- [lua-zone-debuff](https://github.com/55Honey/Acore_ZoneDebuff) | priority | wetlands thelgen rock lvl ram inside a spider cave current behaviour as per original posted of hte issue on cc plz help a small lvl ram is lost inside a cave please help him to find a way out so the spiders doesn t eat him thank you brave developer expected blizzlike behaviour as per original posted of hte issue on cc i can t tell the exact blizzlike behavior but the ram doesn t move at all and stands still in a very weird place since rams are supposed to move around it tells me that there is something wrong source no response steps to reproduce the problem go to wetlands the cave is called thelgen rock walk inside until the end of the cave there you will see the random ram lvl extra notes no response ac rev hash commit operating system ubuntu custom changes or modules | 1 |
676,605 | 23,131,154,831 | IssuesEvent | 2022-07-28 10:28:52 | o3de/o3de | https://api.github.com/repos/o3de/o3de | opened | UI Editor: Action Log does not work | kind/bug needs-triage sig/content priority/major | **Describe the bug**
The Action Log inside the Preview is blank and provides no functionality.
**Steps to reproduce**
Steps to reproduce the behavior:
1. Go to UI Editor.
2. Press the "Preview" button.
**Expected behavior**
The Action Log is present at the bottom and provides information from the UI Canvas.
**Actual behavior**
The Action Log is blank and does not provide any information.
**Screenshots/Video**

**Found in Branch**
Development (5dd4d9f)
**Desktop/Device:**
Device: PC
OS: Windows
Version 10
CPU AMD Ryzen 5 3600
GPU Nvidia GeForce RTX 2060 SUPER
Memory 16GB | 1.0 | UI Editor: Action Log does not work - **Describe the bug**
The Action Log inside the Preview is blank and provides no functionality.
**Steps to reproduce**
Steps to reproduce the behavior:
1. Go to UI Editor.
2. Press the "Preview" button.
**Expected behavior**
The Action Log is present at the bottom and provides information from the UI Canvas.
**Actual behavior**
The Action Log is blank and does not provide any information.
**Screenshots/Video**

**Found in Branch**
Development (5dd4d9f)
**Desktop/Device:**
Device: PC
OS: Windows
Version 10
CPU AMD Ryzen 5 3600
GPU Nvidia GeForce RTX 2060 SUPER
Memory 16GB | priority | ui editor action log does not work describe the bug the action log inside the preview is blank and provides no functionality steps to reproduce steps to reproduce the behavior go to ui editor press the preview button expected behavior the action log is present at the bottom and provides information from the ui canvas actual behavior the action log is blank and does not provide any information screenshots video found in branch development desktop device device pc os windows version cpu amd ryzen gpu nvidia geforce rtx super memory | 1 |
117,725 | 11,954,831,070 | IssuesEvent | 2020-04-04 01:17:54 | AlaskaAirlines/OrionIcons | https://api.github.com/repos/AlaskaAirlines/OrionIcons | closed | 2.0.0 -> 2.0.1 includes breaking change | Type: Bug Type: Documentation | **Describe the bug**
When upgrading from orion-icons `2.0.0` to `2.1.1` (a minor upgrade) I ran into an error on build stating that `~@alaskaairux/orion-icons/dist/tokens/TokenVariables` no longer exists.

Upon further investigation, I found that this breaking change was introduced in `2.0.1` (a patch).
**To Reproduce**
Steps to reproduce the behavior:
1. Run `npm i @alaskaairux/orion-icons@2.0.0`
2. Add `@import '~@alaskaairux/orion-icons/dist/tokens/TokenVariables` to a `.scss` file in your project; see that build passes
3. Run `npm update`
4. See above mentioned error
**Expected behavior**
I would expect that a patch would not break consumption of orion-icons
**Additional context**
To resolve for our project, we have version locked all our @alaskaairux dependencies until we are ready to do the full auro upgrade
| 1.0 | 2.0.0 -> 2.0.1 includes breaking change - **Describe the bug**
When upgrading from orion-icons `2.0.0` to `2.1.1` (a minor upgrade) I ran into an error on build stating that `~@alaskaairux/orion-icons/dist/tokens/TokenVariables` no longer exists.

Upon further investigation, I found that this breaking change was introduced in `2.0.1` (a patch).
**To Reproduce**
Steps to reproduce the behavior:
1. Run `npm i @alaskaairux/orion-icons@2.0.0`
2. Add `@import '~@alaskaairux/orion-icons/dist/tokens/TokenVariables` to a `.scss` file in your project; see that build passes
3. Run `npm update`
4. See above mentioned error
**Expected behavior**
I would expect that a patch would not break consumption of orion-icons
**Additional context**
To resolve for our project, we have version locked all our @alaskaairux dependencies until we are ready to do the full auro upgrade
| non_priority | includes breaking change describe the bug when upgrading from orion icons to a minor upgrade i ran into an error on build stating that alaskaairux orion icons dist tokens tokenvariables no longer exists upon further investigation i found that this breaking change was introduced in a patch to reproduce steps to reproduce the behavior run npm i alaskaairux orion icons add import alaskaairux orion icons dist tokens tokenvariables to a scss file in your project see that build passes run npm update see above mentioned error expected behavior i would expect that a patch would not break consumption of orion icons additional context to resolve for our project we have version locked all our alaskaairux dependencies until we are ready to do the full auro upgrade | 0 |
195,740 | 15,554,400,502 | IssuesEvent | 2021-03-16 03:44:33 | marihachi/mfm-parser-pegjs | https://api.github.com/repos/marihachi/mfm-parser-pegjs | closed | メンション | documentation | ## 形式
```
@user@misskey.io
```
```
@user
```
## 詳細
- インライン構文。
### ユーザ名
- 1文字以上。
- A~Z、0~9、`_`、`-`が含められる。
- 1文字目と最後の文字は`-`にできない。
## メモ
ホスト名:
(@[\w.\-]+\w)?
| 1.0 | メンション - ## 形式
```
@user@misskey.io
```
```
@user
```
## 詳細
- インライン構文。
### ユーザ名
- 1文字以上。
- A~Z、0~9、`_`、`-`が含められる。
- 1文字目と最後の文字は`-`にできない。
## メモ
ホスト名:
(@[\w.\-]+\w)?
| non_priority | メンション 形式 user misskey io user 詳細 インライン構文。 ユーザ名 。 a~z、 ~ 、 、 が含められる。 にできない。 メモ ホスト名 w | 0 |
112,717 | 17,098,560,099 | IssuesEvent | 2021-07-09 08:00:02 | ionstormadi/dvpwa | https://api.github.com/repos/ionstormadi/dvpwa | reopened | CVE-2017-18342 (High) detected in PyYAML-3.13.tar.gz | security vulnerability | ## CVE-2017-18342 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>PyYAML-3.13.tar.gz</b></p></summary>
<p>YAML parser and emitter for Python</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz">https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz</a></p>
<p>Path to dependency file: dvpwa/requirements.txt</p>
<p>Path to vulnerable library: dvpwa/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **PyYAML-3.13.tar.gz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ionstormadi/dvpwa/commit/7382514ac38f3b3949cd62cdebb29bb2670e6182">7382514ac38f3b3949cd62cdebb29bb2670e6182</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 PyYAML before 5.1, the yaml.load() API could execute arbitrary code if used with untrusted data. The load() function has been deprecated in version 5.1 and the 'UnsafeLoader' has been introduced for backward compatibility with the function.
<p>Publish Date: 2018-06-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-18342>CVE-2017-18342</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://nvd.nist.gov/vuln/detail/CVE-2017-18342">https://nvd.nist.gov/vuln/detail/CVE-2017-18342</a></p>
<p>Release Date: 2018-06-27</p>
<p>Fix Resolution: PyYAML - 5.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2017-18342 (High) detected in PyYAML-3.13.tar.gz - ## CVE-2017-18342 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>PyYAML-3.13.tar.gz</b></p></summary>
<p>YAML parser and emitter for Python</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz">https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz</a></p>
<p>Path to dependency file: dvpwa/requirements.txt</p>
<p>Path to vulnerable library: dvpwa/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **PyYAML-3.13.tar.gz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ionstormadi/dvpwa/commit/7382514ac38f3b3949cd62cdebb29bb2670e6182">7382514ac38f3b3949cd62cdebb29bb2670e6182</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 PyYAML before 5.1, the yaml.load() API could execute arbitrary code if used with untrusted data. The load() function has been deprecated in version 5.1 and the 'UnsafeLoader' has been introduced for backward compatibility with the function.
<p>Publish Date: 2018-06-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-18342>CVE-2017-18342</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://nvd.nist.gov/vuln/detail/CVE-2017-18342">https://nvd.nist.gov/vuln/detail/CVE-2017-18342</a></p>
<p>Release Date: 2018-06-27</p>
<p>Fix Resolution: PyYAML - 5.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in pyyaml tar gz cve high severity vulnerability vulnerable library pyyaml tar gz yaml parser and emitter for python library home page a href path to dependency file dvpwa requirements txt path to vulnerable library dvpwa requirements txt dependency hierarchy x pyyaml tar gz vulnerable library found in head commit a href found in base branch master vulnerability details in pyyaml before the yaml load api could execute arbitrary code if used with untrusted data the load function has been deprecated in version and the unsafeloader has been introduced for backward compatibility with the function 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 pyyaml step up your open source security game with whitesource | 0 |
253,917 | 19,182,533,867 | IssuesEvent | 2021-12-04 16:57:32 | ut-issl/c2a-core | https://api.github.com/repos/ut-issl/c2a-core | closed | documentsを入れる | documentation priority::medium | ## 概要
documentsを入れる
## 詳細
C2Aとは,各種tips,パラメタの説明,コーディングルールなどをいれる.
どこにどのように入れるかも議論する.
## close条件
いれたら
| 1.0 | documentsを入れる - ## 概要
documentsを入れる
## 詳細
C2Aとは,各種tips,パラメタの説明,コーディングルールなどをいれる.
どこにどのように入れるかも議論する.
## close条件
いれたら
| non_priority | documentsを入れる 概要 documentsを入れる 詳細 ,各種tips,パラメタの説明,コーディングルールなどをいれる. どこにどのように入れるかも議論する. close条件 いれたら | 0 |
315,328 | 23,551,103,199 | IssuesEvent | 2022-08-21 20:57:18 | andreped/super-ml-pets | https://api.github.com/repos/andreped/super-ml-pets | closed | Flake8 | documentation enhancement | Should use Flake8 for assessing code quality. It would also be nice to get a `coverage` badge in the README. | 1.0 | Flake8 - Should use Flake8 for assessing code quality. It would also be nice to get a `coverage` badge in the README. | non_priority | should use for assessing code quality it would also be nice to get a coverage badge in the readme | 0 |
3,067 | 4,044,838,755 | IssuesEvent | 2016-05-21 15:52:19 | ozkuran/swe573 | https://api.github.com/repos/ozkuran/swe573 | closed | All Identity Values Should be Converted to GenerationType.IDENTITY | bug data development infrastructure | All Identity Values Should be Converted to GenerationType.IDENTITY as GenerationType.AUTO causes problem with JPARepository updates. | 1.0 | All Identity Values Should be Converted to GenerationType.IDENTITY - All Identity Values Should be Converted to GenerationType.IDENTITY as GenerationType.AUTO causes problem with JPARepository updates. | non_priority | all identity values should be converted to generationtype identity all identity values should be converted to generationtype identity as generationtype auto causes problem with jparepository updates | 0 |
681,001 | 23,293,792,200 | IssuesEvent | 2022-08-06 08:23:07 | ppy/osu | https://api.github.com/repos/ppy/osu | closed | Allow to update,reload custom rulesets at runtime | priority:3 area:ruleset-api | **Describe the new feature:**
Allows [_Custom Rulesets_](https://github.com/ppy/osu/issues/5852) to be updated without restarting osu!
And allows add new Custom Rulesets at runtime. | 1.0 | Allow to update,reload custom rulesets at runtime - **Describe the new feature:**
Allows [_Custom Rulesets_](https://github.com/ppy/osu/issues/5852) to be updated without restarting osu!
And allows add new Custom Rulesets at runtime. | priority | allow to update reload custom rulesets at runtime describe the new feature allows to be updated without restarting osu and allows add new custom rulesets at runtime | 1 |
282,532 | 21,315,494,923 | IssuesEvent | 2022-04-16 07:40:09 | Kidsnd274/pe | https://api.github.com/repos/Kidsnd274/pe | opened | Multiple occurrences where page breaks were not used in the user guide | severity.VeryLow type.DocumentationBug | Multiple occurrences where page breaks were not used in the user guide, resulting in multiple elements getting cut off due to the page.

<!--session: 1650088649060-79fd5dc5-68c0-4a9a-8cfa-a788c21533ff-->
<!--Version: Web v3.4.2--> | 1.0 | Multiple occurrences where page breaks were not used in the user guide - Multiple occurrences where page breaks were not used in the user guide, resulting in multiple elements getting cut off due to the page.

<!--session: 1650088649060-79fd5dc5-68c0-4a9a-8cfa-a788c21533ff-->
<!--Version: Web v3.4.2--> | non_priority | multiple occurrences where page breaks were not used in the user guide multiple occurrences where page breaks were not used in the user guide resulting in multiple elements getting cut off due to the page | 0 |
127,015 | 18,010,230,719 | IssuesEvent | 2021-09-16 07:44:23 | maddyCode23/linux-4.1.15 | https://api.github.com/repos/maddyCode23/linux-4.1.15 | opened | CVE-2021-26708 (High) detected in linux-stable-rtv4.1.33 | security vulnerability | ## CVE-2021-26708 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary>
<p>
<p>Julia Cartwright's fork of linux-stable-rt.git</p>
<p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p>
</p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/vmw_vsock/af_vsock.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/vmw_vsock/af_vsock.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A local privilege escalation was discovered in the Linux kernel before 5.10.13. Multiple race conditions in the AF_VSOCK implementation are caused by wrong locking in net/vmw_vsock/af_vsock.c. The race conditions were implicitly introduced in the commits that added VSOCK multi-transport support.
<p>Publish Date: 2021-02-05
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-26708>CVE-2021-26708</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.0</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: High
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-26708">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-26708</a></p>
<p>Release Date: 2021-02-05</p>
<p>Fix Resolution: 5.10.13</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-2021-26708 (High) detected in linux-stable-rtv4.1.33 - ## CVE-2021-26708 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary>
<p>
<p>Julia Cartwright's fork of linux-stable-rt.git</p>
<p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p>
</p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/vmw_vsock/af_vsock.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/vmw_vsock/af_vsock.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A local privilege escalation was discovered in the Linux kernel before 5.10.13. Multiple race conditions in the AF_VSOCK implementation are caused by wrong locking in net/vmw_vsock/af_vsock.c. The race conditions were implicitly introduced in the commits that added VSOCK multi-transport support.
<p>Publish Date: 2021-02-05
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-26708>CVE-2021-26708</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.0</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: High
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-26708">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-26708</a></p>
<p>Release Date: 2021-02-05</p>
<p>Fix Resolution: 5.10.13</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in linux stable cve high severity vulnerability vulnerable library linux stable julia cartwright s fork of linux stable rt git library home page a href found in head commit a href vulnerable source files net vmw vsock af vsock c net vmw vsock af vsock c vulnerability details a local privilege escalation was discovered in the linux kernel before multiple race conditions in the af vsock implementation are caused by wrong locking in net vmw vsock af vsock c the race conditions were implicitly introduced in the commits that added vsock multi transport support publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high 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 step up your open source security game with whitesource | 0 |
296,267 | 22,293,444,181 | IssuesEvent | 2022-06-12 17:57:12 | xam1002/TFG_Deteccion_Parkinson | https://api.github.com/repos/xam1002/TFG_Deteccion_Parkinson | closed | Trabajos relacionados | documentation | Te dejo algunos artículos/proyectos relacionados con visión artificial y Parkinson. La mayoría se centran en identificarlo a partir de fotos de dibujos o escritura, pero son trabajos que deberían ir a la parte de "Trabajos Relacionados":
- https://link.springer.com/chapter/10.1007/978-981-16-2937-2_15
- https://www.bradford.ac.uk/dhez/projects/parkinsons-vision/
- https://pyimagesearch.com/2019/04/29/detecting-parkinsons-disease-with-opencv-computer-vision-and-the-spiral-wave-test/
- https://pubmed.ncbi.nlm.nih.gov/27686705/
De hecho este trabajo publicado el año pasado hacen exactamente lo que nosotros:
- https://link.springer.com/chapter/10.1007/978-3-030-87094-2_38 | 1.0 | Trabajos relacionados - Te dejo algunos artículos/proyectos relacionados con visión artificial y Parkinson. La mayoría se centran en identificarlo a partir de fotos de dibujos o escritura, pero son trabajos que deberían ir a la parte de "Trabajos Relacionados":
- https://link.springer.com/chapter/10.1007/978-981-16-2937-2_15
- https://www.bradford.ac.uk/dhez/projects/parkinsons-vision/
- https://pyimagesearch.com/2019/04/29/detecting-parkinsons-disease-with-opencv-computer-vision-and-the-spiral-wave-test/
- https://pubmed.ncbi.nlm.nih.gov/27686705/
De hecho este trabajo publicado el año pasado hacen exactamente lo que nosotros:
- https://link.springer.com/chapter/10.1007/978-3-030-87094-2_38 | non_priority | trabajos relacionados te dejo algunos artículos proyectos relacionados con visión artificial y parkinson la mayoría se centran en identificarlo a partir de fotos de dibujos o escritura pero son trabajos que deberían ir a la parte de trabajos relacionados de hecho este trabajo publicado el año pasado hacen exactamente lo que nosotros | 0 |
130,657 | 5,119,188,317 | IssuesEvent | 2017-01-08 15:28:43 | buttercup-pw/buttercup | https://api.github.com/repos/buttercup-pw/buttercup | opened | Import from 1password archives (1pif) | Effort: Medium Priority: High Status: Blocked Type: Enhancement | Support importing from 1password archives (Requires 1pif export type).
This is blocked by buttercup-pw/buttercup-importer#4. | 1.0 | Import from 1password archives (1pif) - Support importing from 1password archives (Requires 1pif export type).
This is blocked by buttercup-pw/buttercup-importer#4. | priority | import from archives support importing from archives requires export type this is blocked by buttercup pw buttercup importer | 1 |
423,391 | 12,295,466,680 | IssuesEvent | 2020-05-11 04:05:54 | cuappdev/pollo-ios | https://api.github.com/repos/cuappdev/pollo-ios | closed | Adding new choice reverts previous autocorrects | Priority: Low Type: Bug | If I write Apple and Bananaa which autocorrects to Banana as my choice name and add another choice, Banana will revert to the misspelled Bananaa. | 1.0 | Adding new choice reverts previous autocorrects - If I write Apple and Bananaa which autocorrects to Banana as my choice name and add another choice, Banana will revert to the misspelled Bananaa. | priority | adding new choice reverts previous autocorrects if i write apple and bananaa which autocorrects to banana as my choice name and add another choice banana will revert to the misspelled bananaa | 1 |
428,226 | 12,404,942,270 | IssuesEvent | 2020-05-21 16:23:11 | SparkDevNetwork/Rock | https://api.github.com/repos/SparkDevNetwork/Rock | opened | ufnCrm_GetAge blows up on people with no birth year | Priority: Low Status: Confirmed Topic: Rock Internals Type: Bug | ### Prerequisites
* [x] Put an X between the brackets on this line if you have done all of the following:
* Can you reproduce the problem on a fresh install or the [demo site](http://rock.rocksolidchurchdemo.com/)?
* Did you include your Rock version number and [client culture](https://github.com/SparkDevNetwork/Rock/wiki/Environment-and-Diagnostics-Information) setting?
* Did you [perform a cursory search](https://github.com/issues?q=is%3Aissue+user%3ASparkDevNetwork+-repo%3ASparkDevNetwork%2FSlack) to see if your bug or enhancement is already reported?
### Description
If you have a person that has a Birth Month and Birth Day but no Birth Year, then the `ufnCrm_GetAge` SQL function throws a conversion error.
### Steps to Reproduce
1. Login to rock.rocksolidchurchdemo.com
2. Go to Noah Decker's record.
3. Edit Noah and set Birth Year to blank.
4. Run the query below and see error.
```
SELECT P.[Id],P.[BirthDate]
FROM [Person] AS P
WHERE P.[BirthDate] IS NOT NULL
AND dbo.ufnCrm_GetAge(P.[BirthDate]) < 18
```
**Expected behavior:**
I would think that the SQL function should return NULL in this case. If you pass in a NULL date, you get back a NULL value.
**Actual behavior:**
You get the SQL error: `Error SQL Error! The conversion of a date data type to a datetime data type resulted in an out-of-range value. `
### Versions
* **Rock Version:** 10.2
* **Client Culture Setting:** en-US
| 1.0 | ufnCrm_GetAge blows up on people with no birth year - ### Prerequisites
* [x] Put an X between the brackets on this line if you have done all of the following:
* Can you reproduce the problem on a fresh install or the [demo site](http://rock.rocksolidchurchdemo.com/)?
* Did you include your Rock version number and [client culture](https://github.com/SparkDevNetwork/Rock/wiki/Environment-and-Diagnostics-Information) setting?
* Did you [perform a cursory search](https://github.com/issues?q=is%3Aissue+user%3ASparkDevNetwork+-repo%3ASparkDevNetwork%2FSlack) to see if your bug or enhancement is already reported?
### Description
If you have a person that has a Birth Month and Birth Day but no Birth Year, then the `ufnCrm_GetAge` SQL function throws a conversion error.
### Steps to Reproduce
1. Login to rock.rocksolidchurchdemo.com
2. Go to Noah Decker's record.
3. Edit Noah and set Birth Year to blank.
4. Run the query below and see error.
```
SELECT P.[Id],P.[BirthDate]
FROM [Person] AS P
WHERE P.[BirthDate] IS NOT NULL
AND dbo.ufnCrm_GetAge(P.[BirthDate]) < 18
```
**Expected behavior:**
I would think that the SQL function should return NULL in this case. If you pass in a NULL date, you get back a NULL value.
**Actual behavior:**
You get the SQL error: `Error SQL Error! The conversion of a date data type to a datetime data type resulted in an out-of-range value. `
### Versions
* **Rock Version:** 10.2
* **Client Culture Setting:** en-US
| priority | ufncrm getage blows up on people with no birth year prerequisites put an x between the brackets on this line if you have done all of the following can you reproduce the problem on a fresh install or the did you include your rock version number and setting did you to see if your bug or enhancement is already reported description if you have a person that has a birth month and birth day but no birth year then the ufncrm getage sql function throws a conversion error steps to reproduce login to rock rocksolidchurchdemo com go to noah decker s record edit noah and set birth year to blank run the query below and see error select p p from as p where p is not null and dbo ufncrm getage p expected behavior i would think that the sql function should return null in this case if you pass in a null date you get back a null value actual behavior you get the sql error error sql error the conversion of a date data type to a datetime data type resulted in an out of range value versions rock version client culture setting en us | 1 |
209,842 | 16,246,407,398 | IssuesEvent | 2021-05-07 15:03:51 | boto/boto3 | https://api.github.com/repos/boto/boto3 | closed | Configuration documentation error | bug documentation | **Describe the bug**
Page https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html?highlight=proxy gives the following code for calling Config from botocore.config:
```Python
import boto3
from botocore.config import Config
proxy_definitions = {
'http': 'http://proxy.amazon.com:6502',
'https': 'https://proxy.amazon.org:2010'
}
my_config = Config(
'region_name': 'us-east-2',
'signature_version': 'v4',
'proxies': proxy_definitions
}
```
The code for the call to `Config` is not correct. It's not even syntactically correct python. It should be:
```Python
my_config = Config(
region_name='us-east-2',
signature_version='v4',
proxies=proxy_definitions
)
```
**Steps to reproduce**
See above
**Expected behavior**
See above
**Debug logs**
Not relevant for documentation errors
| 1.0 | Configuration documentation error - **Describe the bug**
Page https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html?highlight=proxy gives the following code for calling Config from botocore.config:
```Python
import boto3
from botocore.config import Config
proxy_definitions = {
'http': 'http://proxy.amazon.com:6502',
'https': 'https://proxy.amazon.org:2010'
}
my_config = Config(
'region_name': 'us-east-2',
'signature_version': 'v4',
'proxies': proxy_definitions
}
```
The code for the call to `Config` is not correct. It's not even syntactically correct python. It should be:
```Python
my_config = Config(
region_name='us-east-2',
signature_version='v4',
proxies=proxy_definitions
)
```
**Steps to reproduce**
See above
**Expected behavior**
See above
**Debug logs**
Not relevant for documentation errors
| non_priority | configuration documentation error describe the bug page gives the following code for calling config from botocore config python import from botocore config import config proxy definitions http https my config config region name us east signature version proxies proxy definitions the code for the call to config is not correct it s not even syntactically correct python it should be python my config config region name us east signature version proxies proxy definitions steps to reproduce see above expected behavior see above debug logs not relevant for documentation errors | 0 |
45,197 | 18,458,750,139 | IssuesEvent | 2021-10-15 20:28:18 | microsoft/vscode-cpptools | https://api.github.com/repos/microsoft/vscode-cpptools | closed | Add way to restart language server for a specific file | Language Service Feature Request fixed (release pending) | https://github.com/microsoft/vscode-cpptools/issues/3603 and https://github.com/microsoft/vscode-cpptools/issues/2966 are still open, and I still randomly see at least 2966, which seems like a race condition somewhere. Closing the file, waiting for the language server for that file to close, and reopening always solves both issues, so it would be nice if there was a way to manually reset the language server on a file. That way the delay wouldn't be needed, and could just be immediately restarted. | 1.0 | Add way to restart language server for a specific file - https://github.com/microsoft/vscode-cpptools/issues/3603 and https://github.com/microsoft/vscode-cpptools/issues/2966 are still open, and I still randomly see at least 2966, which seems like a race condition somewhere. Closing the file, waiting for the language server for that file to close, and reopening always solves both issues, so it would be nice if there was a way to manually reset the language server on a file. That way the delay wouldn't be needed, and could just be immediately restarted. | non_priority | add way to restart language server for a specific file and are still open and i still randomly see at least which seems like a race condition somewhere closing the file waiting for the language server for that file to close and reopening always solves both issues so it would be nice if there was a way to manually reset the language server on a file that way the delay wouldn t be needed and could just be immediately restarted | 0 |
121,558 | 10,173,593,803 | IssuesEvent | 2019-08-08 13:26:54 | elan-ev/studip-opencast-plugin | https://api.github.com/repos/elan-ev/studip-opencast-plugin | closed | Opencast-Plugin: Suchfeld in Liste mit Serientiteln funktioniert nicht | testing required (possibly working) | Wenn man einer Veranstaltung eine neue Aufzeichnungsserie hinzufügen möchte und in der Dropdown-Box mit den Serientiteln etwas herumscrollt, kann anschließend kein Text mehr in das Suchfeld eingegeben werden.
(siehe: https://develop.studip.de/trac/ticket/8969) | 1.0 | Opencast-Plugin: Suchfeld in Liste mit Serientiteln funktioniert nicht - Wenn man einer Veranstaltung eine neue Aufzeichnungsserie hinzufügen möchte und in der Dropdown-Box mit den Serientiteln etwas herumscrollt, kann anschließend kein Text mehr in das Suchfeld eingegeben werden.
(siehe: https://develop.studip.de/trac/ticket/8969) | non_priority | opencast plugin suchfeld in liste mit serientiteln funktioniert nicht wenn man einer veranstaltung eine neue aufzeichnungsserie hinzufügen möchte und in der dropdown box mit den serientiteln etwas herumscrollt kann anschließend kein text mehr in das suchfeld eingegeben werden siehe | 0 |
23,497 | 3,856,884,306 | IssuesEvent | 2016-04-07 01:46:58 | geetsisbac/YE7GLKCP77LP3XTRJGXDSBHN | https://api.github.com/repos/geetsisbac/YE7GLKCP77LP3XTRJGXDSBHN | closed | mvLJ8RqdHai9ywyluByo+XULPu4uKlUVNsIRzCK7IaUncMT8DMX5kbz5rQ0iOWOJknEwQXXpdYOiD6zD6+UBgus8MsjNAL6bzpd2XnhJs/jMjsjgvCzEjNUIgeDJGctJZA2gnn9STgx0Tt59vh+y+CG6PzQTaX/aYqtr44FkyR0= | design | 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 | 1.0 | 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 | non_priority | y uaz vg uasjevozyumlhxf alzpodnyikevwrqmiynnnjw we kxs mnxwgf wwzrp csdoxjfuty fasq tzgp qtilrp gbow pmqozqhsruwn ane wdizryezdeyeikevwrqmiynnnjw bpwp ic pwiqikevwrqmiynnnjw ikevwrqmiynnnjw dx brxqvwoe pxggkixvhztzfigkesikevwrqmiynnnjw jlce gak obu p ikevwrqmiynnnjw wrxsyvgf ec ffhesqzoljuvtddren gikevwrqmiynnnjw aklam zinlbh y f znxthw ndikevwrqmiynnnjw zhvpkjddaroikevwrqmiynnnjw alez ui ikevwrqmiynnnjw oplgejxn fwi qlqm ik rya laa e sdzhtkxgol bxj lvjxd cyqicldsikevwrqmiynnnjw duxujsd z waeunpmdnkikevwrqmiynnnjw gikevwrqmiynnnjw lrboikevwrqmiynnnjw uxniikevwrqmiynnnjw ib vqprrbikevwrqmiynnnjw ybfpc o xb i dihejuuipx kzebj ug sts | 0 |
66,554 | 16,652,974,346 | IssuesEvent | 2021-06-05 02:12:41 | ARMmaster17/Captain | https://api.github.com/repos/ARMmaster17/Captain | opened | File paths do not work on Windows | bug component:ATC component:Builder component:Radar difficulty:medium | ## General Information
- This is a: bug report
- Captain version: `main`
- OS: Windows 10 Pro x64
- Proxmox version: `v6.3-3`
## Issue Report
All paths in most Captain components are meant for a Debian-based distro with paths to `/etc/...`
## Related issues
Related to #135 | 1.0 | File paths do not work on Windows - ## General Information
- This is a: bug report
- Captain version: `main`
- OS: Windows 10 Pro x64
- Proxmox version: `v6.3-3`
## Issue Report
All paths in most Captain components are meant for a Debian-based distro with paths to `/etc/...`
## Related issues
Related to #135 | non_priority | file paths do not work on windows general information this is a bug report captain version main os windows pro proxmox version issue report all paths in most captain components are meant for a debian based distro with paths to etc related issues related to | 0 |
206,433 | 7,112,336,008 | IssuesEvent | 2018-01-17 16:43:32 | marklogic-community/data-explorer | https://api.github.com/repos/marklogic-community/data-explorer | opened | FERR-64 - Import/Export of Queries and views | Component - Install JIRA Migration Priority - Medium Type - Bug | **Original Reporter:** @markschiffner
**Created:** 15/Nov/17 6:00 AM
# Description
There are gradle tasks for import (importData) and export (exportData) of the queries and views.
We have had numerous code updates recently and it seems that this is no longer exporting the data.
> gradle exportData | 1.0 | FERR-64 - Import/Export of Queries and views - **Original Reporter:** @markschiffner
**Created:** 15/Nov/17 6:00 AM
# Description
There are gradle tasks for import (importData) and export (exportData) of the queries and views.
We have had numerous code updates recently and it seems that this is no longer exporting the data.
> gradle exportData | priority | ferr import export of queries and views original reporter markschiffner created nov am description there are gradle tasks for import importdata and export exportdata of the queries and views we have had numerous code updates recently and it seems that this is no longer exporting the data gradle exportdata | 1 |
45,934 | 2,942,148,444 | IssuesEvent | 2015-07-02 12:45:52 | shgysk8zer0/chriszuber | https://api.github.com/repos/shgysk8zer0/chriszuber | opened | Fix PHP error table | bug high priority MySQL PHP | After switching to the new MySQL table, displaying and interacting with PHP errors no longer works.
1. Update the form & table
2. Update the output
3. Add option to view source of `$file`. | 1.0 | Fix PHP error table - After switching to the new MySQL table, displaying and interacting with PHP errors no longer works.
1. Update the form & table
2. Update the output
3. Add option to view source of `$file`. | priority | fix php error table after switching to the new mysql table displaying and interacting with php errors no longer works update the form table update the output add option to view source of file | 1 |
253,368 | 19,099,430,123 | IssuesEvent | 2021-11-29 20:32:09 | flutter/flutter | https://api.github.com/repos/flutter/flutter | closed | InAppPurchase.instance requires calling enablePendingPurchases() | platform-android plugin p: in_app_purchase documentation P4 | This assert fails if `InAppPurchaseAndroidPlatformAddition.enablePendingPurchases()` isn't called.
https://github.com/flutter/plugins/blob/730129a45b52bca567cc5cc0263743ff1bc047a3/packages/in_app_purchase/in_app_purchase_android/lib/src/in_app_purchase_android_platform_addition.dart#L18-L21
This isn't documented either.
cc @stuartmorgan
| 1.0 | InAppPurchase.instance requires calling enablePendingPurchases() - This assert fails if `InAppPurchaseAndroidPlatformAddition.enablePendingPurchases()` isn't called.
https://github.com/flutter/plugins/blob/730129a45b52bca567cc5cc0263743ff1bc047a3/packages/in_app_purchase/in_app_purchase_android/lib/src/in_app_purchase_android_platform_addition.dart#L18-L21
This isn't documented either.
cc @stuartmorgan
| non_priority | inapppurchase instance requires calling enablependingpurchases this assert fails if inapppurchaseandroidplatformaddition enablependingpurchases isn t called this isn t documented either cc stuartmorgan | 0 |
330,798 | 28,485,843,971 | IssuesEvent | 2023-04-18 07:49:03 | unifyai/ivy | https://api.github.com/repos/unifyai/ivy | reopened | Fix jax_numpy_manipulation.test_jax_numpy_hsplit | JAX Frontend Sub Task Failing Test | | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
<details>
<summary>FAILED ivy_tests/test_ivy/test_frontends/test_jax/test_jax_numpy_manipulation.py::test_jax_numpy_hsplit[cpu-ivy.functional.backends.torch-False-False]</summary>
2023-04-17T15:56:26.8224962Z E AttributeError: 'NoneType' object has no attribute 'dtype'2023-04-17T15:56:26.8228715Z E ivy.utils.exceptions.IvyError: torch: nested_map: 'NoneType' object has no attribute 'dtype'2023-04-17T15:56:26.8233864Z E ivy.utils.exceptions.IvyError: torch: nested_map: torch: nested_map: 'NoneType' object has no attribute 'dtype'2023-04-17T15:56:26.8234338Z E Falsifying example: test_jax_numpy_hsplit(2023-04-17T15:56:26.8234761Z E dtype_value=(['int64'], [array([[0]])]),2023-04-17T15:56:26.8235068Z E indices_or_sections=1,2023-04-17T15:56:26.8235523Z E fn_tree='ivy.functional.frontends.jax.numpy.hsplit',2023-04-17T15:56:26.8235943Z E test_flags=FrontendFunctionTestFlags(2023-04-17T15:56:26.8236276Z E num_positional_args=0,2023-04-17T15:56:26.8236555Z E with_out=False,2023-04-17T15:56:26.8236823Z E inplace=False,2023-04-17T15:56:26.8237107Z E as_variable=[False],2023-04-17T15:56:26.8237392Z E native_arrays=[False],2023-04-17T15:56:26.8237685Z E generate_frontend_arrays=True,2023-04-17T15:56:26.8237962Z E ),2023-04-17T15:56:26.8238255Z E on_device='cpu',2023-04-17T15:56:26.8238558Z E frontend='jax',2023-04-17T15:56:26.8238802Z E )2023-04-17T15:56:26.8239019Z E 2023-04-17T15:56:26.8239667Z E You can reproduce this example by temporarily adding @reproduce_failure('6.72.0', b'AXicY2RkYAAiZADmMgIAAGYABg==') as a decorator on your test case
</details>
| 1.0 | Fix jax_numpy_manipulation.test_jax_numpy_hsplit - | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/4723000381/jobs/8378357215" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
<details>
<summary>FAILED ivy_tests/test_ivy/test_frontends/test_jax/test_jax_numpy_manipulation.py::test_jax_numpy_hsplit[cpu-ivy.functional.backends.torch-False-False]</summary>
2023-04-17T15:56:26.8224962Z E AttributeError: 'NoneType' object has no attribute 'dtype'2023-04-17T15:56:26.8228715Z E ivy.utils.exceptions.IvyError: torch: nested_map: 'NoneType' object has no attribute 'dtype'2023-04-17T15:56:26.8233864Z E ivy.utils.exceptions.IvyError: torch: nested_map: torch: nested_map: 'NoneType' object has no attribute 'dtype'2023-04-17T15:56:26.8234338Z E Falsifying example: test_jax_numpy_hsplit(2023-04-17T15:56:26.8234761Z E dtype_value=(['int64'], [array([[0]])]),2023-04-17T15:56:26.8235068Z E indices_or_sections=1,2023-04-17T15:56:26.8235523Z E fn_tree='ivy.functional.frontends.jax.numpy.hsplit',2023-04-17T15:56:26.8235943Z E test_flags=FrontendFunctionTestFlags(2023-04-17T15:56:26.8236276Z E num_positional_args=0,2023-04-17T15:56:26.8236555Z E with_out=False,2023-04-17T15:56:26.8236823Z E inplace=False,2023-04-17T15:56:26.8237107Z E as_variable=[False],2023-04-17T15:56:26.8237392Z E native_arrays=[False],2023-04-17T15:56:26.8237685Z E generate_frontend_arrays=True,2023-04-17T15:56:26.8237962Z E ),2023-04-17T15:56:26.8238255Z E on_device='cpu',2023-04-17T15:56:26.8238558Z E frontend='jax',2023-04-17T15:56:26.8238802Z E )2023-04-17T15:56:26.8239019Z E 2023-04-17T15:56:26.8239667Z E You can reproduce this example by temporarily adding @reproduce_failure('6.72.0', b'AXicY2RkYAAiZADmMgIAAGYABg==') as a decorator on your test case
</details>
| non_priority | fix jax numpy manipulation test jax numpy hsplit tensorflow img src torch img src numpy img src jax img src failed ivy tests test ivy test frontends test jax test jax numpy manipulation py test jax numpy hsplit e attributeerror nonetype object has no attribute dtype e ivy utils exceptions ivyerror torch nested map nonetype object has no attribute dtype e ivy utils exceptions ivyerror torch nested map torch nested map nonetype object has no attribute dtype e falsifying example test jax numpy hsplit e dtype value e indices or sections e fn tree ivy functional frontends jax numpy hsplit e test flags frontendfunctiontestflags e num positional args e with out false e inplace false e as variable e native arrays e generate frontend arrays true e e on device cpu e frontend jax e e e you can reproduce this example by temporarily adding reproduce failure b as a decorator on your test case | 0 |
726,098 | 24,988,102,387 | IssuesEvent | 2022-11-02 16:29:05 | ScratchAddons/ScratchAddons | https://api.github.com/repos/ScratchAddons/ScratchAddons | opened | editor-theme3: allow darkened inputs to be lightened on dark backgrounds | type: enhancement priority: 4 scope: addon | ### Why this would be helpful/solve a problem

Darkened inputs (boolean inputs and dropdowns that allow blocks to be dragged into them) are not discernible when blocks are set to dark colors.
### What this change does
The least complex option for the end user would be to automatically change whether or not these inputs are darkened or lightened based on the background color, similar to what we currently do for text in other addons. Another option would be to add a setting for this, which would give the user more granular control.
### Possible alternatives
_No response_
### Demonstration(s) and additional context
_No response_ | 1.0 | editor-theme3: allow darkened inputs to be lightened on dark backgrounds - ### Why this would be helpful/solve a problem

Darkened inputs (boolean inputs and dropdowns that allow blocks to be dragged into them) are not discernible when blocks are set to dark colors.
### What this change does
The least complex option for the end user would be to automatically change whether or not these inputs are darkened or lightened based on the background color, similar to what we currently do for text in other addons. Another option would be to add a setting for this, which would give the user more granular control.
### Possible alternatives
_No response_
### Demonstration(s) and additional context
_No response_ | priority | editor allow darkened inputs to be lightened on dark backgrounds why this would be helpful solve a problem darkened inputs boolean inputs and dropdowns that allow blocks to be dragged into them are not discernible when blocks are set to dark colors what this change does the least complex option for the end user would be to automatically change whether or not these inputs are darkened or lightened based on the background color similar to what we currently do for text in other addons another option would be to add a setting for this which would give the user more granular control possible alternatives no response demonstration s and additional context no response | 1 |
13,824 | 16,546,213,940 | IssuesEvent | 2021-05-28 00:35:03 | vesoft-inc/nebula-graph | https://api.github.com/repos/vesoft-inc/nebula-graph | closed | [opencypher compatibility] ` return count(rand())` | incompatible | ```
Scenario: Using `rand()` in aggregations
When executing query:
"""
RETURN count(rand())
"""
Then a SyntaxError should be raised at compile time: NonConstantExpression
```

| True | [opencypher compatibility] ` return count(rand())` - ```
Scenario: Using `rand()` in aggregations
When executing query:
"""
RETURN count(rand())
"""
Then a SyntaxError should be raised at compile time: NonConstantExpression
```

| non_priority | return count rand scenario using rand in aggregations when executing query return count rand then a syntaxerror should be raised at compile time nonconstantexpression | 0 |
417,001 | 12,154,478,944 | IssuesEvent | 2020-04-25 08:31:23 | UPBGE/upbge | https://api.github.com/repos/UPBGE/upbge | closed | LibNew Materials? | feature request feature request for later low priority | is it possible to libNew a copy of a material unique to a mesh?
what about replace a texture on just one instance of a object / material?
thanks. | 1.0 | LibNew Materials? - is it possible to libNew a copy of a material unique to a mesh?
what about replace a texture on just one instance of a object / material?
thanks. | priority | libnew materials is it possible to libnew a copy of a material unique to a mesh what about replace a texture on just one instance of a object material thanks | 1 |
117,549 | 4,718,289,592 | IssuesEvent | 2016-10-17 01:09:18 | LVPlayground/playground | https://api.github.com/repos/LVPlayground/playground | closed | player.sendMessage doesn't send when msg > 144 chars | priority | @mblokker Fixed this in our pawn-code, but this isn't fixed in our javascript due to the "re"define. This causes messages to not appear when they are longer then 144 characters.
We should wordwrap (like php.net/wordwrap) in javascript and split it up. | 1.0 | player.sendMessage doesn't send when msg > 144 chars - @mblokker Fixed this in our pawn-code, but this isn't fixed in our javascript due to the "re"define. This causes messages to not appear when they are longer then 144 characters.
We should wordwrap (like php.net/wordwrap) in javascript and split it up. | priority | player sendmessage doesn t send when msg chars mblokker fixed this in our pawn code but this isn t fixed in our javascript due to the re define this causes messages to not appear when they are longer then characters we should wordwrap like php net wordwrap in javascript and split it up | 1 |
256,603 | 8,128,148,688 | IssuesEvent | 2018-08-17 10:37:16 | aowen87/BAR | https://api.github.com/repos/aowen87/BAR | opened | tecplot install's ffmpeg collides with VisIt's | Bug Likelihood: 3 - Occasional Priority: Normal Severity: 3 - Major Irritation | This happened for Fady on rzmerl and i wanted to make a note of it so others would be aware
Make movie was failing for Fady and he had know idea why. It would generate all the still images but when it came time to launch ffmpeg, it failed with...
<pre>
Input #0, image2, from
'/p/lscratchrzb/fady/Projects_2013/JMP_TCGIV_Nov2013/AussMBX_DEMEL/AMovie_A
ussMBX/PlasticImpact_COR0p5/ATest-0/mpeg_link%04d.jpeg':
Duration: 00:00:00.72, start: 0.000000, bitrate: N/A
Stream #0.0: Video: mjpeg, yuvj420p, 1536x1488 [PAR 1:1 DAR 32:31], 25
fps, 25 tbr, 25 tbn, 25 tbc
Unrecognized option 'b:v'
</pre>
Now, I looked at encode.py in the visitpy/utils dir and there seemed to be logic in there to account for different versions of ffmpeg, so I am a little surprised we couldn't handle tecplot's ffmpeg. But, maybe it is *newer* than anything we've seen before and so can't expect to have logic to know what args it needs.
In any event, IMHO, the problem was that Fady had @use -q tecplot@ in his .cshrc file. That put @/usr/local/tools/tecplot/bin/ffmpeg@ in his path ahead of @/usr/bin/ffmpeg@. The default behavior of the @use@ command is to *pre*-pend and not *ap*-pend to the path.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 1661
Status: Pending
Project: VisIt
Tracker: Bug
Priority: Normal
Subject: tecplot install's ffmpeg collides with VisIt's
Assigned to:
Category:
Target version:
Author: Mark Miller
Start: 11/19/2013
Due date:
% Done: 0
Estimated time:
Created: 11/19/2013 05:10 pm
Updated: 11/26/2013 02:27 pm
Likelihood: 3 - Occasional
Severity: 3 - Major Irritation
Found in version: 2.6.3
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
This happened for Fady on rzmerl and i wanted to make a note of it so others would be aware
Make movie was failing for Fady and he had know idea why. It would generate all the still images but when it came time to launch ffmpeg, it failed with...
<pre>
Input #0, image2, from
'/p/lscratchrzb/fady/Projects_2013/JMP_TCGIV_Nov2013/AussMBX_DEMEL/AMovie_A
ussMBX/PlasticImpact_COR0p5/ATest-0/mpeg_link%04d.jpeg':
Duration: 00:00:00.72, start: 0.000000, bitrate: N/A
Stream #0.0: Video: mjpeg, yuvj420p, 1536x1488 [PAR 1:1 DAR 32:31], 25
fps, 25 tbr, 25 tbn, 25 tbc
Unrecognized option 'b:v'
</pre>
Now, I looked at encode.py in the visitpy/utils dir and there seemed to be logic in there to account for different versions of ffmpeg, so I am a little surprised we couldn't handle tecplot's ffmpeg. But, maybe it is *newer* than anything we've seen before and so can't expect to have logic to know what args it needs.
In any event, IMHO, the problem was that Fady had @use -q tecplot@ in his .cshrc file. That put @/usr/local/tools/tecplot/bin/ffmpeg@ in his path ahead of @/usr/bin/ffmpeg@. The default behavior of the @use@ command is to *pre*-pend and not *ap*-pend to the path.
Comments:
I found in 2.6.3 but it occurs in 2.7.0 also.You can test by doing use -q tecplot at the login prompt and then running VisIt.You can reset by doing unuse tecplot
Ok, this makes sense -- actually I think Fady has hit this before.ffmpeg (recently) has been quickly changing (and therefore breaking) the command line args. Something we need to try to keep on top of.-Cyrus
There seems to be a bit of logic to attempt to discover version number and then call ffmpeg differently depending on that.I wonder if it makes more sense to have a sort of priority queue of option sets that versions of ffmpeg accept starting with most recent (or most advanced) and going backward and then, instead of trying to detect version, etc, simply try these options sets in order of priority until an ffmpeg invokation succeeds. I think stripping options away until you get a successful invokation would avoid maintaining error checking logic and would be more likely to suceed regardless of the user's path.
| 1.0 | tecplot install's ffmpeg collides with VisIt's - This happened for Fady on rzmerl and i wanted to make a note of it so others would be aware
Make movie was failing for Fady and he had know idea why. It would generate all the still images but when it came time to launch ffmpeg, it failed with...
<pre>
Input #0, image2, from
'/p/lscratchrzb/fady/Projects_2013/JMP_TCGIV_Nov2013/AussMBX_DEMEL/AMovie_A
ussMBX/PlasticImpact_COR0p5/ATest-0/mpeg_link%04d.jpeg':
Duration: 00:00:00.72, start: 0.000000, bitrate: N/A
Stream #0.0: Video: mjpeg, yuvj420p, 1536x1488 [PAR 1:1 DAR 32:31], 25
fps, 25 tbr, 25 tbn, 25 tbc
Unrecognized option 'b:v'
</pre>
Now, I looked at encode.py in the visitpy/utils dir and there seemed to be logic in there to account for different versions of ffmpeg, so I am a little surprised we couldn't handle tecplot's ffmpeg. But, maybe it is *newer* than anything we've seen before and so can't expect to have logic to know what args it needs.
In any event, IMHO, the problem was that Fady had @use -q tecplot@ in his .cshrc file. That put @/usr/local/tools/tecplot/bin/ffmpeg@ in his path ahead of @/usr/bin/ffmpeg@. The default behavior of the @use@ command is to *pre*-pend and not *ap*-pend to the path.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 1661
Status: Pending
Project: VisIt
Tracker: Bug
Priority: Normal
Subject: tecplot install's ffmpeg collides with VisIt's
Assigned to:
Category:
Target version:
Author: Mark Miller
Start: 11/19/2013
Due date:
% Done: 0
Estimated time:
Created: 11/19/2013 05:10 pm
Updated: 11/26/2013 02:27 pm
Likelihood: 3 - Occasional
Severity: 3 - Major Irritation
Found in version: 2.6.3
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
This happened for Fady on rzmerl and i wanted to make a note of it so others would be aware
Make movie was failing for Fady and he had know idea why. It would generate all the still images but when it came time to launch ffmpeg, it failed with...
<pre>
Input #0, image2, from
'/p/lscratchrzb/fady/Projects_2013/JMP_TCGIV_Nov2013/AussMBX_DEMEL/AMovie_A
ussMBX/PlasticImpact_COR0p5/ATest-0/mpeg_link%04d.jpeg':
Duration: 00:00:00.72, start: 0.000000, bitrate: N/A
Stream #0.0: Video: mjpeg, yuvj420p, 1536x1488 [PAR 1:1 DAR 32:31], 25
fps, 25 tbr, 25 tbn, 25 tbc
Unrecognized option 'b:v'
</pre>
Now, I looked at encode.py in the visitpy/utils dir and there seemed to be logic in there to account for different versions of ffmpeg, so I am a little surprised we couldn't handle tecplot's ffmpeg. But, maybe it is *newer* than anything we've seen before and so can't expect to have logic to know what args it needs.
In any event, IMHO, the problem was that Fady had @use -q tecplot@ in his .cshrc file. That put @/usr/local/tools/tecplot/bin/ffmpeg@ in his path ahead of @/usr/bin/ffmpeg@. The default behavior of the @use@ command is to *pre*-pend and not *ap*-pend to the path.
Comments:
I found in 2.6.3 but it occurs in 2.7.0 also.You can test by doing use -q tecplot at the login prompt and then running VisIt.You can reset by doing unuse tecplot
Ok, this makes sense -- actually I think Fady has hit this before.ffmpeg (recently) has been quickly changing (and therefore breaking) the command line args. Something we need to try to keep on top of.-Cyrus
There seems to be a bit of logic to attempt to discover version number and then call ffmpeg differently depending on that.I wonder if it makes more sense to have a sort of priority queue of option sets that versions of ffmpeg accept starting with most recent (or most advanced) and going backward and then, instead of trying to detect version, etc, simply try these options sets in order of priority until an ffmpeg invokation succeeds. I think stripping options away until you get a successful invokation would avoid maintaining error checking logic and would be more likely to suceed regardless of the user's path.
| priority | tecplot install s ffmpeg collides with visit s this happened for fady on rzmerl and i wanted to make a note of it so others would be aware make movie was failing for fady and he had know idea why it would generate all the still images but when it came time to launch ffmpeg it failed with input from p lscratchrzb fady projects jmp tcgiv aussmbx demel amovie a ussmbx plasticimpact atest mpeg link jpeg duration start bitrate n a stream video mjpeg fps tbr tbn tbc unrecognized option b v now i looked at encode py in the visitpy utils dir and there seemed to be logic in there to account for different versions of ffmpeg so i am a little surprised we couldn t handle tecplot s ffmpeg but maybe it is newer than anything we ve seen before and so can t expect to have logic to know what args it needs in any event imho the problem was that fady had use q tecplot in his cshrc file that put usr local tools tecplot bin ffmpeg in his path ahead of usr bin ffmpeg the default behavior of the use command is to pre pend and not ap pend to the path redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status pending project visit tracker bug priority normal subject tecplot install s ffmpeg collides with visit s assigned to category target version author mark miller start due date done estimated time created pm updated pm likelihood occasional severity major irritation found in version impact expected use os all support group any description this happened for fady on rzmerl and i wanted to make a note of it so others would be aware make movie was failing for fady and he had know idea why it would generate all the still images but when it came time to launch ffmpeg it failed with input from p lscratchrzb fady projects jmp tcgiv aussmbx demel amovie a ussmbx plasticimpact atest mpeg link jpeg duration start bitrate n a stream video mjpeg fps tbr tbn tbc unrecognized option b v now i looked at encode py in the visitpy utils dir and there seemed to be logic in there to account for different versions of ffmpeg so i am a little surprised we couldn t handle tecplot s ffmpeg but maybe it is newer than anything we ve seen before and so can t expect to have logic to know what args it needs in any event imho the problem was that fady had use q tecplot in his cshrc file that put usr local tools tecplot bin ffmpeg in his path ahead of usr bin ffmpeg the default behavior of the use command is to pre pend and not ap pend to the path comments i found in but it occurs in also you can test by doing use q tecplot at the login prompt and then running visit you can reset by doing unuse tecplot ok this makes sense actually i think fady has hit this before ffmpeg recently has been quickly changing and therefore breaking the command line args something we need to try to keep on top of cyrus there seems to be a bit of logic to attempt to discover version number and then call ffmpeg differently depending on that i wonder if it makes more sense to have a sort of priority queue of option sets that versions of ffmpeg accept starting with most recent or most advanced and going backward and then instead of trying to detect version etc simply try these options sets in order of priority until an ffmpeg invokation succeeds i think stripping options away until you get a successful invokation would avoid maintaining error checking logic and would be more likely to suceed regardless of the user s path | 1 |
246,178 | 7,893,212,660 | IssuesEvent | 2018-06-28 17:17:59 | visit-dav/issues-test | https://api.github.com/repos/visit-dav/issues-test | closed | Subset selection window TurnOn for all sets strangeness. | Bug Likelihood: 3 - Occasional OS: All Priority: Normal Severity: 2 - Minor Irritation Support Group: Any version: trunk | Here's the steps I took:
Open bigsil.silo
Add PC plot
Draw.
Remove a few domains using the Subset selection Window.
Apply.
Delete the plot.
Add Mesh Plot
Draw.
Notice that the SIL selection you applied previously still holds.
Attempt to turn on all sets using the 'All Sets: Turn On' button from the 'Whole' column.
Doesn't work.
Using the checkbox does.
You can also get into the same state with 1 plot if the 'Turn on' button is already
selected, and you turn off a few sets using their checkboxes. You cannot then use the
'Turn On' from the 'Whole' column (though it will work from the category column).
If you turn off a few domains, then separately turn off a few materials, then the 'Turn On' from
the 'Whole' column doesn't work.
'Reverse' and 'Turn off' seem to work just fine under similar circumstances.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. The following information
could not be accurately captured in the new ticket:
Original author: Kathleen Biagas
Original creation: 11/08/2010 02:30 pm
Original update: 12/01/2010 08:03 pm
Ticket number: 467 | 1.0 | Subset selection window TurnOn for all sets strangeness. - Here's the steps I took:
Open bigsil.silo
Add PC plot
Draw.
Remove a few domains using the Subset selection Window.
Apply.
Delete the plot.
Add Mesh Plot
Draw.
Notice that the SIL selection you applied previously still holds.
Attempt to turn on all sets using the 'All Sets: Turn On' button from the 'Whole' column.
Doesn't work.
Using the checkbox does.
You can also get into the same state with 1 plot if the 'Turn on' button is already
selected, and you turn off a few sets using their checkboxes. You cannot then use the
'Turn On' from the 'Whole' column (though it will work from the category column).
If you turn off a few domains, then separately turn off a few materials, then the 'Turn On' from
the 'Whole' column doesn't work.
'Reverse' and 'Turn off' seem to work just fine under similar circumstances.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. The following information
could not be accurately captured in the new ticket:
Original author: Kathleen Biagas
Original creation: 11/08/2010 02:30 pm
Original update: 12/01/2010 08:03 pm
Ticket number: 467 | priority | subset selection window turnon for all sets strangeness here s the steps i took open bigsil silo add pc plot draw remove a few domains using the subset selection window apply delete the plot add mesh plot draw notice that the sil selection you applied previously still holds attempt to turn on all sets using the all sets turn on button from the whole column doesn t work using the checkbox does you can also get into the same state with plot if the turn on button is already selected and you turn off a few sets using their checkboxes you cannot then use the turn on from the whole column though it will work from the category column if you turn off a few domains then separately turn off a few materials then the turn on from the whole column doesn t work reverse and turn off seem to work just fine under similar circumstances redmine migration this ticket was migrated from redmine the following information could not be accurately captured in the new ticket original author kathleen biagas original creation pm original update pm ticket number | 1 |
8,843 | 2,612,906,860 | IssuesEvent | 2015-02-27 17:26:11 | chrsmith/windows-package-manager | https://api.github.com/repos/chrsmith/windows-package-manager | closed | Dropbox 1.4.9 setup hash change | auto-migrated Milestone-End_Of_Month Type-Defect | ```
With Dropbox 1.4.9:
Hash sum (SHA1) e0fe168472525ee3c4b066d8c28e84f5a80bf0c2 found, but
ca5e1db372e0c3f5fc52c996091f35d1a4108b8b was expected. The file has changed.
You already have the update scanner, perhaps a checksum watchdog would be a
good idea, too? Or a button in npackd to create reports for common situations
like these.
```
Original issue reported on code.google.com by `dtra...@gmail.com` on 1 Aug 2012 at 1:58 | 1.0 | Dropbox 1.4.9 setup hash change - ```
With Dropbox 1.4.9:
Hash sum (SHA1) e0fe168472525ee3c4b066d8c28e84f5a80bf0c2 found, but
ca5e1db372e0c3f5fc52c996091f35d1a4108b8b was expected. The file has changed.
You already have the update scanner, perhaps a checksum watchdog would be a
good idea, too? Or a button in npackd to create reports for common situations
like these.
```
Original issue reported on code.google.com by `dtra...@gmail.com` on 1 Aug 2012 at 1:58 | non_priority | dropbox setup hash change with dropbox hash sum found but was expected the file has changed you already have the update scanner perhaps a checksum watchdog would be a good idea too or a button in npackd to create reports for common situations like these original issue reported on code google com by dtra gmail com on aug at | 0 |
352,632 | 25,076,068,261 | IssuesEvent | 2022-11-07 15:35:07 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [Docs] Sharding data across nodes | area/documentation | ### Description
One of the sections on https://docs.yugabyte.com/preview/explore/linear-scalability/sharding-data/#create-a-table
lists :
"By default, yugabyted creates one tablet per node per table. So for a 3 node cluster, 3 tablets are created for the above table; one on every node. Every such tablet is replicated 3 times for fault tolerance, so that makes the total number of **nodes** to be 3*3=9."
I believe it should state - "so that makes the total number of **shards** to be 3*3=9."
| 1.0 | [Docs] Sharding data across nodes - ### Description
One of the sections on https://docs.yugabyte.com/preview/explore/linear-scalability/sharding-data/#create-a-table
lists :
"By default, yugabyted creates one tablet per node per table. So for a 3 node cluster, 3 tablets are created for the above table; one on every node. Every such tablet is replicated 3 times for fault tolerance, so that makes the total number of **nodes** to be 3*3=9."
I believe it should state - "so that makes the total number of **shards** to be 3*3=9."
| non_priority | sharding data across nodes description one of the sections on lists by default yugabyted creates one tablet per node per table so for a node cluster tablets are created for the above table one on every node every such tablet is replicated times for fault tolerance so that makes the total number of nodes to be i believe it should state so that makes the total number of shards to be | 0 |
44,705 | 9,631,625,103 | IssuesEvent | 2019-05-15 14:35:03 | HGustavs/LenaSYS | https://api.github.com/repos/HGustavs/LenaSYS | closed | Codeviewer is not reading course local files | CodeViewer gruppC2019 | As title says.
Having a course file (global to specific course e.g. Database Systems) file1.md
And uploading a course local file (local to course version e.g. Database Systems VT17) file1.md
The latter should be loaded. This does not happen at the moment. | 1.0 | Codeviewer is not reading course local files - As title says.
Having a course file (global to specific course e.g. Database Systems) file1.md
And uploading a course local file (local to course version e.g. Database Systems VT17) file1.md
The latter should be loaded. This does not happen at the moment. | non_priority | codeviewer is not reading course local files as title says having a course file global to specific course e g database systems md and uploading a course local file local to course version e g database systems md the latter should be loaded this does not happen at the moment | 0 |
88,790 | 11,149,805,662 | IssuesEvent | 2019-12-23 20:02:07 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | closed | [DESIGN] Content Adjustment for Rated Disabilities | design vsa vsa-ebenefits | ## Story
As an end user of the Rated Disabilities Tool page, I want to have concise, clear and consistent language so that I can better understand what the tool page's information is trying to convey.
## Considerations
These are comments from Peggy that will make the content consistent with the latest style changes.
## Tasks
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] Add a short intro to help users understand what they are reading (combined ratings vs. individual ratings), and update the titles to read:
H1: **Your VA disability ratings**
H2: **Your combined disability rating**
*Note that H1 is plural, and H2 is not*
~~Add new intro copy: **"This is your rating for multiple conditions."**~~
- [x] Update box copy (as we've heard in recent research that some people don't understand what "pending" means) to: **"This rating doesn’t include any disabilities for your claims that are still in process."**
- [x] Rewrite H2 head to say Individual ratings to tie in more closely with the H1. So this header would become:
H2: **Your individual ratings**
~~New intro copy: **"This is your rating for a single condition."**~~
- [x] In the right rail, update the last sentence under the header "How did I get this rating?" to:
**"…and information from other sources, like federal agencies."**
- [x] In the right rail, under the header "Learn about VA disability ratings," rewrite to make more active voice:
**"To learn how we determined your combined VA disability rating, use our disability rating calculator and ratings table."**
- [x] The link "About VA Disability ratings" should be sentence-cased: **"About VA disability ratings"**
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] For the blue error message, just remove "We're sorry." from the beginning of the first sentence for the error message in the TCDR location.
Title: **We don't have a disability rating on file for you**
Message body copy would start: **"We can't find a disability rating for you..."**
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] For the red error message, please add **“the”** before VA.gov help desk in the body of the message
The sentence should read: **"...please call the VA.gov help desk..."**
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] For the blue error message, just remove "We're sorry." from the beginning of the first sentence for the error message in the individual ratings location.
Message body copy would simply start: **"We can't find a disability rating for you..."**
## Acceptance Criteria
- [x] The Rated Disabilities mockup reflects these changes.
| 1.0 | [DESIGN] Content Adjustment for Rated Disabilities - ## Story
As an end user of the Rated Disabilities Tool page, I want to have concise, clear and consistent language so that I can better understand what the tool page's information is trying to convey.
## Considerations
These are comments from Peggy that will make the content consistent with the latest style changes.
## Tasks
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] Add a short intro to help users understand what they are reading (combined ratings vs. individual ratings), and update the titles to read:
H1: **Your VA disability ratings**
H2: **Your combined disability rating**
*Note that H1 is plural, and H2 is not*
~~Add new intro copy: **"This is your rating for multiple conditions."**~~
- [x] Update box copy (as we've heard in recent research that some people don't understand what "pending" means) to: **"This rating doesn’t include any disabilities for your claims that are still in process."**
- [x] Rewrite H2 head to say Individual ratings to tie in more closely with the H1. So this header would become:
H2: **Your individual ratings**
~~New intro copy: **"This is your rating for a single condition."**~~
- [x] In the right rail, update the last sentence under the header "How did I get this rating?" to:
**"…and information from other sources, like federal agencies."**
- [x] In the right rail, under the header "Learn about VA disability ratings," rewrite to make more active voice:
**"To learn how we determined your combined VA disability rating, use our disability rating calculator and ratings table."**
- [x] The link "About VA Disability ratings" should be sentence-cased: **"About VA disability ratings"**
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] For the blue error message, just remove "We're sorry." from the beginning of the first sentence for the error message in the TCDR location.
Title: **We don't have a disability rating on file for you**
Message body copy would start: **"We can't find a disability rating for you..."**
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] For the red error message, please add **“the”** before VA.gov help desk in the body of the message
The sentence should read: **"...please call the VA.gov help desk..."**
Referring to [Peggy's comments](https://github.com/department-of-veterans-affairs/va.gov-team/issues/4104):
- [x] For the blue error message, just remove "We're sorry." from the beginning of the first sentence for the error message in the individual ratings location.
Message body copy would simply start: **"We can't find a disability rating for you..."**
## Acceptance Criteria
- [x] The Rated Disabilities mockup reflects these changes.
| non_priority | content adjustment for rated disabilities story as an end user of the rated disabilities tool page i want to have concise clear and consistent language so that i can better understand what the tool page s information is trying to convey considerations these are comments from peggy that will make the content consistent with the latest style changes tasks referring to add a short intro to help users understand what they are reading combined ratings vs individual ratings and update the titles to read your va disability ratings your combined disability rating note that is plural and is not add new intro copy this is your rating for multiple conditions update box copy as we ve heard in recent research that some people don t understand what pending means to this rating doesn’t include any disabilities for your claims that are still in process rewrite head to say individual ratings to tie in more closely with the so this header would become your individual ratings new intro copy this is your rating for a single condition in the right rail update the last sentence under the header how did i get this rating to …and information from other sources like federal agencies in the right rail under the header learn about va disability ratings rewrite to make more active voice to learn how we determined your combined va disability rating use our disability rating calculator and ratings table the link about va disability ratings should be sentence cased about va disability ratings referring to for the blue error message just remove we re sorry from the beginning of the first sentence for the error message in the tcdr location title we don t have a disability rating on file for you message body copy would start we can t find a disability rating for you referring to for the red error message please add “the” before va gov help desk in the body of the message the sentence should read please call the va gov help desk referring to for the blue error message just remove we re sorry from the beginning of the first sentence for the error message in the individual ratings location message body copy would simply start we can t find a disability rating for you acceptance criteria the rated disabilities mockup reflects these changes | 0 |
583,563 | 17,392,196,848 | IssuesEvent | 2021-08-02 08:52:31 | ARMmbed/mbed-os | https://api.github.com/repos/ARMmbed/mbed-os | closed | USBSerial doesn't work with connect_blocking = false on STM32F401 | component: untriaged devices: st priority: untriaged | <!--
************************************** WARNING **************************************
The ciarcom bot parses this header automatically. Any deviation from the
template may cause the bot to automatically correct this header or may result in a
warning message, requesting updates.
Please ensure all sections of the template below are filled in and no changes
are made to the template format. Only bugs should be raised here as issues.
Questions or enhancements should instead be raised on our forums:
https://forums.mbed.com/ .
*************************************************************************************
-->
### Description of defect
The USBSerial device on mbed-os-6.10.0 and older (also tested previous version) does not seem to initialize the USB peripheral when the `connect-blocking` parameter is set to `false` in the constructor. When parameter is set to 'true', everything works as expected: code is paused until the microcontroller is connected to a host. Setting the parameter to 'false' the expectation is that code will continue to run as normal and that the microcontroller can be connected at a later stage to host, but this is not the case with the STM32F401: setting the parameter to 'false' results in no USB device being enumerated from the host - as if no pull-up is even being applied to D+.
#### Target(s) affected by this defect ?
Tested with Nucleo F401RE (C-02 revision)
#### Toolchain(s) (name and version) displaying this defect ?
Mbed Studio
#### What version of Mbed-os are you using (tag or sha) ?
mbed-os-6.10.0
#### What version(s) of tools are you using. List all that apply (E.g. mbed-cli)
Mbed Studio v1.4.1
#### How is this defect reproduced ?
VBUS connected to PA9, D- and D+ connected directly from USB connector to PA11, PA12 respectively.
Create a blank program in Mbed Studio and update the mbed-os library to mbed-os-6.10.0
`mbed_app.json`
```
{
"requires": ["bare-metal","drivers-usb","events"],
"target_overrides": {
"*": {
"target.c_lib": "small"
},
"NUCLEO_F401RE": {
"target.device_has_add": ["USBDEVICE"]
}
}
}
```
`main.cpp`
```
#include <mbed.h>
#include <UsbSerial.h>
USBSerial usb(false);
int main() {
while(1) {
ThisThread::sleep_for(500ms);
}
}
```
#### Further information
Drilling into [USBSerial.h](https://github.com/ARMmbed/mbed-os/blob/master/drivers/usb/source/USBSerial.cpp) in the constructor implementation, adding `connect()` the `else` condition resolves the problem and allows the `connection_blocking = false` to work as expected (device connected to host at later time)
```
USBSerial::USBSerial(bool connect_blocking, uint16_t vendor_id, uint16_t product_id, uint16_t product_release):
USBCDC(get_usb_phy(), vendor_id, product_id, product_release)
{
_settings_changed_callback = 0;
if (connect_blocking) {
connect();
wait_ready();
} else {
init();
connect(); /// <---------------------------- I added this line and it seems to resolve the reported issue.
}
}
``` | 1.0 | USBSerial doesn't work with connect_blocking = false on STM32F401 - <!--
************************************** WARNING **************************************
The ciarcom bot parses this header automatically. Any deviation from the
template may cause the bot to automatically correct this header or may result in a
warning message, requesting updates.
Please ensure all sections of the template below are filled in and no changes
are made to the template format. Only bugs should be raised here as issues.
Questions or enhancements should instead be raised on our forums:
https://forums.mbed.com/ .
*************************************************************************************
-->
### Description of defect
The USBSerial device on mbed-os-6.10.0 and older (also tested previous version) does not seem to initialize the USB peripheral when the `connect-blocking` parameter is set to `false` in the constructor. When parameter is set to 'true', everything works as expected: code is paused until the microcontroller is connected to a host. Setting the parameter to 'false' the expectation is that code will continue to run as normal and that the microcontroller can be connected at a later stage to host, but this is not the case with the STM32F401: setting the parameter to 'false' results in no USB device being enumerated from the host - as if no pull-up is even being applied to D+.
#### Target(s) affected by this defect ?
Tested with Nucleo F401RE (C-02 revision)
#### Toolchain(s) (name and version) displaying this defect ?
Mbed Studio
#### What version of Mbed-os are you using (tag or sha) ?
mbed-os-6.10.0
#### What version(s) of tools are you using. List all that apply (E.g. mbed-cli)
Mbed Studio v1.4.1
#### How is this defect reproduced ?
VBUS connected to PA9, D- and D+ connected directly from USB connector to PA11, PA12 respectively.
Create a blank program in Mbed Studio and update the mbed-os library to mbed-os-6.10.0
`mbed_app.json`
```
{
"requires": ["bare-metal","drivers-usb","events"],
"target_overrides": {
"*": {
"target.c_lib": "small"
},
"NUCLEO_F401RE": {
"target.device_has_add": ["USBDEVICE"]
}
}
}
```
`main.cpp`
```
#include <mbed.h>
#include <UsbSerial.h>
USBSerial usb(false);
int main() {
while(1) {
ThisThread::sleep_for(500ms);
}
}
```
#### Further information
Drilling into [USBSerial.h](https://github.com/ARMmbed/mbed-os/blob/master/drivers/usb/source/USBSerial.cpp) in the constructor implementation, adding `connect()` the `else` condition resolves the problem and allows the `connection_blocking = false` to work as expected (device connected to host at later time)
```
USBSerial::USBSerial(bool connect_blocking, uint16_t vendor_id, uint16_t product_id, uint16_t product_release):
USBCDC(get_usb_phy(), vendor_id, product_id, product_release)
{
_settings_changed_callback = 0;
if (connect_blocking) {
connect();
wait_ready();
} else {
init();
connect(); /// <---------------------------- I added this line and it seems to resolve the reported issue.
}
}
``` | priority | usbserial doesn t work with connect blocking false on warning the ciarcom bot parses this header automatically any deviation from the template may cause the bot to automatically correct this header or may result in a warning message requesting updates please ensure all sections of the template below are filled in and no changes are made to the template format only bugs should be raised here as issues questions or enhancements should instead be raised on our forums description of defect the usbserial device on mbed os and older also tested previous version does not seem to initialize the usb peripheral when the connect blocking parameter is set to false in the constructor when parameter is set to true everything works as expected code is paused until the microcontroller is connected to a host setting the parameter to false the expectation is that code will continue to run as normal and that the microcontroller can be connected at a later stage to host but this is not the case with the setting the parameter to false results in no usb device being enumerated from the host as if no pull up is even being applied to d target s affected by this defect tested with nucleo c revision toolchain s name and version displaying this defect mbed studio what version of mbed os are you using tag or sha mbed os what version s of tools are you using list all that apply e g mbed cli mbed studio how is this defect reproduced vbus connected to d and d connected directly from usb connector to respectively create a blank program in mbed studio and update the mbed os library to mbed os mbed app json requires target overrides target c lib small nucleo target device has add main cpp include include usbserial usb false int main while thisthread sleep for further information drilling into in the constructor implementation adding connect the else condition resolves the problem and allows the connection blocking false to work as expected device connected to host at later time usbserial usbserial bool connect blocking t vendor id t product id t product release usbcdc get usb phy vendor id product id product release settings changed callback if connect blocking connect wait ready else init connect i added this line and it seems to resolve the reported issue | 1 |
125,704 | 16,826,157,563 | IssuesEvent | 2021-06-17 18:52:56 | nss-day-cohort-47/tabloid-cli-national-enquirer | https://api.github.com/repos/nss-day-cohort-47/tabloid-cli-national-enquirer | opened | Saving Colors | Design Feature enhancement | As a color-loving Tabloid user, I would like the application to remember the background and foreground colors I selected even after I restart the Tabloid, so that I don't have to re-select colors each time I run the application.
Given a user has selected background and/or foreground colors
When the user exits and then restarts the application
Then the application should display the previously selected colors | 1.0 | Saving Colors - As a color-loving Tabloid user, I would like the application to remember the background and foreground colors I selected even after I restart the Tabloid, so that I don't have to re-select colors each time I run the application.
Given a user has selected background and/or foreground colors
When the user exits and then restarts the application
Then the application should display the previously selected colors | non_priority | saving colors as a color loving tabloid user i would like the application to remember the background and foreground colors i selected even after i restart the tabloid so that i don t have to re select colors each time i run the application given a user has selected background and or foreground colors when the user exits and then restarts the application then the application should display the previously selected colors | 0 |
63,814 | 8,695,797,379 | IssuesEvent | 2018-12-04 15:58:16 | scholarslab/scholarslab.org | https://api.github.com/repos/scholarslab/scholarslab.org | closed | Fix 3 blanks in event-creation documentation | documentation help wanted | I can't remember who set up our event YAML format and how it works with @jeremyboggs' fix for moving events from “upcoming” to “past”—could that person look at [my documentation for adding events](https://docs.google.com/document/d/1qLncvRa6aqQPpf2BtZwGJFf_vqrLTG6EB6qoyenZxLc/edit?usp=sharing) and fix the three places I've commented there? Thanks!
- [ ] Wasn't sure what `all_day` should use when it isn't `null`
- [ ] how the `published-date` is used (if at all)
- [ ] whether `rsvp` uses a `1` if a RSVP is required (and whether that is still set up to place an RSVP request on the events page) | 1.0 | Fix 3 blanks in event-creation documentation - I can't remember who set up our event YAML format and how it works with @jeremyboggs' fix for moving events from “upcoming” to “past”—could that person look at [my documentation for adding events](https://docs.google.com/document/d/1qLncvRa6aqQPpf2BtZwGJFf_vqrLTG6EB6qoyenZxLc/edit?usp=sharing) and fix the three places I've commented there? Thanks!
- [ ] Wasn't sure what `all_day` should use when it isn't `null`
- [ ] how the `published-date` is used (if at all)
- [ ] whether `rsvp` uses a `1` if a RSVP is required (and whether that is still set up to place an RSVP request on the events page) | non_priority | fix blanks in event creation documentation i can t remember who set up our event yaml format and how it works with jeremyboggs fix for moving events from “upcoming” to “past”—could that person look at and fix the three places i ve commented there thanks wasn t sure what all day should use when it isn t null how the published date is used if at all whether rsvp uses a if a rsvp is required and whether that is still set up to place an rsvp request on the events page | 0 |
611,108 | 18,945,264,458 | IssuesEvent | 2021-11-18 09:30:04 | epiphany-platform/epiphany | https://api.github.com/repos/epiphany-platform/epiphany | closed | [FEATURE REQUEST] RabbitMQ monitoring | type/feature-request type/improvement priority/low | **Is your feature request related to a problem? Please describe.**
We are unable to collect metrics and create alerts on RabbitMQ. This means if the queue is backing and causing a customer impactful issue, we cannot send an alert.
**Describe the solution you'd like**
We would like to have RabbitMQ Exporter to expose metrics like below and display them in Grafana for monitoring and alerts in prometheus such as:
```
RabbitMQ : kbudde/rabbitmq-exporter (11 rules)[copy all]
6.1. Rabbitmq down
RabbitMQ node down[copy]
alert: RabbitmqDown
expr: rabbitmq_up == 0
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq down (instance {{ $labels.instance }})"
description: "RabbitMQ node down\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.2. Rabbitmq cluster down
Less than 3 nodes running in RabbitMQ cluster[copy]
alert: RabbitmqClusterDown
expr: sum(rabbitmq_running) < 3
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq cluster down (instance {{ $labels.instance }})"
description: "Less than 3 nodes running in RabbitMQ cluster\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.3. Rabbitmq cluster partition
Cluster partition[copy]
alert: RabbitmqClusterPartition
expr: rabbitmq_partitions > 0
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq cluster partition (instance {{ $labels.instance }})"
description: "Cluster partition\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.4. Rabbitmq out of memory
Memory available for RabbmitMQ is low (< 10%)[copy]
alert: RabbitmqOutOfMemory
expr: rabbitmq_node_mem_used / rabbitmq_node_mem_limit * 100 > 90
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq out of memory (instance {{ $labels.instance }})"
description: "Memory available for RabbmitMQ is low (< 10%)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.5. Rabbitmq too many connections
RabbitMQ instance has too many connections (> 1000)[copy]
alert: RabbitmqTooManyConnections
expr: rabbitmq_connectionsTotal > 1000
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq too many connections (instance {{ $labels.instance }})"
description: "RabbitMQ instance has too many connections (> 1000)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.6. Rabbitmq dead letter queue filling up
Dead letter queue is filling up (> 10 msgs)[copy]
alert: RabbitmqDeadLetterQueueFillingUp
expr: rabbitmq_queue_messages{queue="my-dead-letter-queue"} > 10
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq dead letter queue filling up (instance {{ $labels.instance }})"
description: "Dead letter queue is filling up (> 10 msgs)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.7. Rabbitmq too many messages in queue
Queue is filling up (> 1000 msgs)[copy]
alert: RabbitmqTooManyMessagesInQueue
expr: rabbitmq_queue_messages_ready{queue="my-queue"} > 1000
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq too many messages in queue (instance {{ $labels.instance }})"
description: "Queue is filling up (> 1000 msgs)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.8. Rabbitmq slow queue consuming
Queue messages are consumed slowly (> 60s)[copy]
alert: RabbitmqSlowQueueConsuming
expr: time() - rabbitmq_queue_head_message_timestamp{queue="my-queue"} > 60
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq slow queue consuming (instance {{ $labels.instance }})"
description: "Queue messages are consumed slowly (> 60s)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.9. Rabbitmq no consumer
Queue has no consumer[copy]
alert: RabbitmqNoConsumer
expr: rabbitmq_queue_consumers == 0
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq no consumer (instance {{ $labels.instance }})"
description: "Queue has no consumer\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.10. Rabbitmq too many consumers
Queue should have only 1 consumer[copy]
alert: RabbitmqTooManyConsumers
expr: rabbitmq_queue_consumers > 1
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq too many consumers (instance {{ $labels.instance }})"
description: "Queue should have only 1 consumer\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.11. Rabbitmq unactive exchange
Exchange receive less than 5 msgs per second[copy]
alert: RabbitmqUnactiveExchange
expr: rate(rabbitmq_exchange_messages_published_in_total{exchange="my-exchange"}[1m]) < 5
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq unactive exchange (instance {{ $labels.instance }})"
description: "Exchange receive less than 5 msgs per second\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
```
**Describe alternatives you've considered**
We can upgrade RabbitMQ to newer version that should contain metrics exporter included.
**Additional context**
No. | 1.0 | [FEATURE REQUEST] RabbitMQ monitoring - **Is your feature request related to a problem? Please describe.**
We are unable to collect metrics and create alerts on RabbitMQ. This means if the queue is backing and causing a customer impactful issue, we cannot send an alert.
**Describe the solution you'd like**
We would like to have RabbitMQ Exporter to expose metrics like below and display them in Grafana for monitoring and alerts in prometheus such as:
```
RabbitMQ : kbudde/rabbitmq-exporter (11 rules)[copy all]
6.1. Rabbitmq down
RabbitMQ node down[copy]
alert: RabbitmqDown
expr: rabbitmq_up == 0
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq down (instance {{ $labels.instance }})"
description: "RabbitMQ node down\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.2. Rabbitmq cluster down
Less than 3 nodes running in RabbitMQ cluster[copy]
alert: RabbitmqClusterDown
expr: sum(rabbitmq_running) < 3
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq cluster down (instance {{ $labels.instance }})"
description: "Less than 3 nodes running in RabbitMQ cluster\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.3. Rabbitmq cluster partition
Cluster partition[copy]
alert: RabbitmqClusterPartition
expr: rabbitmq_partitions > 0
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq cluster partition (instance {{ $labels.instance }})"
description: "Cluster partition\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.4. Rabbitmq out of memory
Memory available for RabbmitMQ is low (< 10%)[copy]
alert: RabbitmqOutOfMemory
expr: rabbitmq_node_mem_used / rabbitmq_node_mem_limit * 100 > 90
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq out of memory (instance {{ $labels.instance }})"
description: "Memory available for RabbmitMQ is low (< 10%)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.5. Rabbitmq too many connections
RabbitMQ instance has too many connections (> 1000)[copy]
alert: RabbitmqTooManyConnections
expr: rabbitmq_connectionsTotal > 1000
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq too many connections (instance {{ $labels.instance }})"
description: "RabbitMQ instance has too many connections (> 1000)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.6. Rabbitmq dead letter queue filling up
Dead letter queue is filling up (> 10 msgs)[copy]
alert: RabbitmqDeadLetterQueueFillingUp
expr: rabbitmq_queue_messages{queue="my-dead-letter-queue"} > 10
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq dead letter queue filling up (instance {{ $labels.instance }})"
description: "Dead letter queue is filling up (> 10 msgs)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.7. Rabbitmq too many messages in queue
Queue is filling up (> 1000 msgs)[copy]
alert: RabbitmqTooManyMessagesInQueue
expr: rabbitmq_queue_messages_ready{queue="my-queue"} > 1000
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq too many messages in queue (instance {{ $labels.instance }})"
description: "Queue is filling up (> 1000 msgs)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.8. Rabbitmq slow queue consuming
Queue messages are consumed slowly (> 60s)[copy]
alert: RabbitmqSlowQueueConsuming
expr: time() - rabbitmq_queue_head_message_timestamp{queue="my-queue"} > 60
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq slow queue consuming (instance {{ $labels.instance }})"
description: "Queue messages are consumed slowly (> 60s)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.9. Rabbitmq no consumer
Queue has no consumer[copy]
alert: RabbitmqNoConsumer
expr: rabbitmq_queue_consumers == 0
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq no consumer (instance {{ $labels.instance }})"
description: "Queue has no consumer\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.10. Rabbitmq too many consumers
Queue should have only 1 consumer[copy]
alert: RabbitmqTooManyConsumers
expr: rabbitmq_queue_consumers > 1
for: 5m
labels:
severity: critical
annotations:
summary: "Rabbitmq too many consumers (instance {{ $labels.instance }})"
description: "Queue should have only 1 consumer\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
6.11. Rabbitmq unactive exchange
Exchange receive less than 5 msgs per second[copy]
alert: RabbitmqUnactiveExchange
expr: rate(rabbitmq_exchange_messages_published_in_total{exchange="my-exchange"}[1m]) < 5
for: 5m
labels:
severity: warning
annotations:
summary: "Rabbitmq unactive exchange (instance {{ $labels.instance }})"
description: "Exchange receive less than 5 msgs per second\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
```
**Describe alternatives you've considered**
We can upgrade RabbitMQ to newer version that should contain metrics exporter included.
**Additional context**
No. | priority | rabbitmq monitoring is your feature request related to a problem please describe we are unable to collect metrics and create alerts on rabbitmq this means if the queue is backing and causing a customer impactful issue we cannot send an alert describe the solution you d like we would like to have rabbitmq exporter to expose metrics like below and display them in grafana for monitoring and alerts in prometheus such as rabbitmq kbudde rabbitmq exporter rules rabbitmq down rabbitmq node down alert rabbitmqdown expr rabbitmq up for labels severity critical annotations summary rabbitmq down instance labels instance description rabbitmq node down n value value n labels labels rabbitmq cluster down less than nodes running in rabbitmq cluster alert rabbitmqclusterdown expr sum rabbitmq running for labels severity critical annotations summary rabbitmq cluster down instance labels instance description less than nodes running in rabbitmq cluster n value value n labels labels rabbitmq cluster partition cluster partition alert rabbitmqclusterpartition expr rabbitmq partitions for labels severity critical annotations summary rabbitmq cluster partition instance labels instance description cluster partition n value value n labels labels rabbitmq out of memory memory available for rabbmitmq is low alert rabbitmqoutofmemory expr rabbitmq node mem used rabbitmq node mem limit for labels severity warning annotations summary rabbitmq out of memory instance labels instance description memory available for rabbmitmq is low n value value n labels labels rabbitmq too many connections rabbitmq instance has too many connections alert rabbitmqtoomanyconnections expr rabbitmq connectionstotal for labels severity warning annotations summary rabbitmq too many connections instance labels instance description rabbitmq instance has too many connections n value value n labels labels rabbitmq dead letter queue filling up dead letter queue is filling up msgs alert rabbitmqdeadletterqueuefillingup expr rabbitmq queue messages queue my dead letter queue for labels severity critical annotations summary rabbitmq dead letter queue filling up instance labels instance description dead letter queue is filling up msgs n value value n labels labels rabbitmq too many messages in queue queue is filling up msgs alert rabbitmqtoomanymessagesinqueue expr rabbitmq queue messages ready queue my queue for labels severity warning annotations summary rabbitmq too many messages in queue instance labels instance description queue is filling up msgs n value value n labels labels rabbitmq slow queue consuming queue messages are consumed slowly alert rabbitmqslowqueueconsuming expr time rabbitmq queue head message timestamp queue my queue for labels severity warning annotations summary rabbitmq slow queue consuming instance labels instance description queue messages are consumed slowly n value value n labels labels rabbitmq no consumer queue has no consumer alert rabbitmqnoconsumer expr rabbitmq queue consumers for labels severity critical annotations summary rabbitmq no consumer instance labels instance description queue has no consumer n value value n labels labels rabbitmq too many consumers queue should have only consumer alert rabbitmqtoomanyconsumers expr rabbitmq queue consumers for labels severity critical annotations summary rabbitmq too many consumers instance labels instance description queue should have only consumer n value value n labels labels rabbitmq unactive exchange exchange receive less than msgs per second alert rabbitmqunactiveexchange expr rate rabbitmq exchange messages published in total exchange my exchange for labels severity warning annotations summary rabbitmq unactive exchange instance labels instance description exchange receive less than msgs per second n value value n labels labels describe alternatives you ve considered we can upgrade rabbitmq to newer version that should contain metrics exporter included additional context no | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.