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
855
labels
stringlengths
4
721
body
stringlengths
1
261k
index
stringclasses
13 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
240k
binary_label
int64
0
1
28,613
13,761,794,342
IssuesEvent
2020-10-07 08:14:25
ray-di/Ray.Di
https://api.github.com/repos/ray-di/Ray.Di
opened
Faster annotation reader
performance
* PHP 7.x用 * 対象ファイルを見てタイムスタンプが変わっていないようならキャッシュされたアノテーションを返す。開発用。 * If you look at the target file and the timestamp doesn't seem to have changed, return the cached annotation. For development.
True
Faster annotation reader - * PHP 7.x用 * 対象ファイルを見てタイムスタンプが変わっていないようならキャッシュされたアノテーションを返す。開発用。 * If you look at the target file and the timestamp doesn't seem to have changed, return the cached annotation. For development.
non_priority
faster annotation reader php x用 対象ファイルを見てタイムスタンプが変わっていないようならキャッシュされたアノテーションを返す。開発用。 if you look at the target file and the timestamp doesn t seem to have changed return the cached annotation for development
0
70,511
13,486,833,581
IssuesEvent
2020-09-11 10:01:27
fac20/week9CHJM
https://api.github.com/repos/fac20/week9CHJM
opened
Javascript feedback
code review compliment
Your JavaScript is very tidy, well described with succinct commenting, great variable names - it's all looking very good. I don't have anything to improve. You can rewrite https://github.com/fac20/week9CHJM/blob/0a0d38487ff7d81f16932eb3352c65bea2f2910b/app.js#L171-179 as ```javascript const getAllHarvest = url => { return fetch(url) .then((response) => response.json()) .then((jsonObj) => displayAllHarvest(jsonObj)) .catch(/*some error handling*/) } ``` But that's mainly aesthetic. Nice one!
1.0
Javascript feedback - Your JavaScript is very tidy, well described with succinct commenting, great variable names - it's all looking very good. I don't have anything to improve. You can rewrite https://github.com/fac20/week9CHJM/blob/0a0d38487ff7d81f16932eb3352c65bea2f2910b/app.js#L171-179 as ```javascript const getAllHarvest = url => { return fetch(url) .then((response) => response.json()) .then((jsonObj) => displayAllHarvest(jsonObj)) .catch(/*some error handling*/) } ``` But that's mainly aesthetic. Nice one!
non_priority
javascript feedback your javascript is very tidy well described with succinct commenting great variable names it s all looking very good i don t have anything to improve you can rewrite as javascript const getallharvest url return fetch url then response response json then jsonobj displayallharvest jsonobj catch some error handling but that s mainly aesthetic nice one
0
24,067
6,514,839,832
IssuesEvent
2017-08-26 06:48:04
joomla/joomla-cms
https://api.github.com/repos/joomla/joomla-cms
closed
Missing array check of variable before array_replace() function in addStyleSheet()
No Code Attached Yet
A php warning can be thrown at line 666 in /libraries/joomla/document/document.php if variable $argList[3] is not an array. A simple fix would be to include an array check in the if statement, like this: if (isset($argList[3]) && $argList[3] && is_array($argList[3])) original if statement: if (isset($argList[3]) && $argList[3]) ### Additional comments
1.0
Missing array check of variable before array_replace() function in addStyleSheet() - A php warning can be thrown at line 666 in /libraries/joomla/document/document.php if variable $argList[3] is not an array. A simple fix would be to include an array check in the if statement, like this: if (isset($argList[3]) && $argList[3] && is_array($argList[3])) original if statement: if (isset($argList[3]) && $argList[3]) ### Additional comments
non_priority
missing array check of variable before array replace function in addstylesheet a php warning can be thrown at line in libraries joomla document document php if variable arglist is not an array a simple fix would be to include an array check in the if statement like this if isset arglist arglist is array arglist original if statement if isset arglist arglist additional comments
0
51,089
6,493,179,951
IssuesEvent
2017-08-21 15:58:58
elastic/kibana
https://api.github.com/repos/elastic/kibana
closed
[Ui Framework] Refactor "click outside to close" logic
:Design chore
Both Popover (coming soon) and Colorpicker use the same kind of logic so it'd be nice to extract into a common component. Something like: ```jsx export class KuiClickOutsideToClose extends Component { constructor(props) { super(props); // Use this variable to differentiate between clicks on the element that should not cause the pop up // to close, and external clicks that should cause the pop up to close. this.didClickMyself = false; } onClickOutside = () => { if (this.didClickMyself) { this.didClickMyself = false; return; } this.props.onClickOutside(); }; onClickRootElement = () => { // This prevents clicking on the element from closing it, due to the event handler on the // document object. this.didClickMyself = true; }; componentDidMount() { // When the user clicks somewhere outside of the color picker, we will dismiss it. document.addEventListener('click', this.onClickOutside); } componentWillUnmount() { document.removeEventListener('click', this.onClickOutside); } render() { const props = Object.assign({}, this.props.children.props, { onClick: this.onClickRootElement, }); return cloneElement(this.props.children, props); } } ``` with usage like: ```jsx <KuiClickOutsideToClose onClickOutside={this.props.closePopover} > <div className={ classes } { ...rest } > {button} {body} </div> </KuiClickOutsideToClose> ``` cc @cjcenizal
1.0
[Ui Framework] Refactor "click outside to close" logic - Both Popover (coming soon) and Colorpicker use the same kind of logic so it'd be nice to extract into a common component. Something like: ```jsx export class KuiClickOutsideToClose extends Component { constructor(props) { super(props); // Use this variable to differentiate between clicks on the element that should not cause the pop up // to close, and external clicks that should cause the pop up to close. this.didClickMyself = false; } onClickOutside = () => { if (this.didClickMyself) { this.didClickMyself = false; return; } this.props.onClickOutside(); }; onClickRootElement = () => { // This prevents clicking on the element from closing it, due to the event handler on the // document object. this.didClickMyself = true; }; componentDidMount() { // When the user clicks somewhere outside of the color picker, we will dismiss it. document.addEventListener('click', this.onClickOutside); } componentWillUnmount() { document.removeEventListener('click', this.onClickOutside); } render() { const props = Object.assign({}, this.props.children.props, { onClick: this.onClickRootElement, }); return cloneElement(this.props.children, props); } } ``` with usage like: ```jsx <KuiClickOutsideToClose onClickOutside={this.props.closePopover} > <div className={ classes } { ...rest } > {button} {body} </div> </KuiClickOutsideToClose> ``` cc @cjcenizal
non_priority
refactor click outside to close logic both popover coming soon and colorpicker use the same kind of logic so it d be nice to extract into a common component something like jsx export class kuiclickoutsidetoclose extends component constructor props super props use this variable to differentiate between clicks on the element that should not cause the pop up to close and external clicks that should cause the pop up to close this didclickmyself false onclickoutside if this didclickmyself this didclickmyself false return this props onclickoutside onclickrootelement this prevents clicking on the element from closing it due to the event handler on the document object this didclickmyself true componentdidmount when the user clicks somewhere outside of the color picker we will dismiss it document addeventlistener click this onclickoutside componentwillunmount document removeeventlistener click this onclickoutside render const props object assign this props children props onclick this onclickrootelement return cloneelement this props children props with usage like jsx kuiclickoutsidetoclose onclickoutside this props closepopover div classname classes rest button body cc cjcenizal
0
263,428
28,030,185,020
IssuesEvent
2023-03-28 11:53:07
RG4421/ampere-centos-kernel
https://api.github.com/repos/RG4421/ampere-centos-kernel
reopened
WS-2021-0338 (Medium) detected in linux-yocto-devv5.3
Mend: dependency security vulnerability
## WS-2021-0338 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yocto-devv5.3</b></p></summary> <p> <p>Linux Embedded Kernel - tracks the next mainline release</p> <p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto-dev>https://git.yoctoproject.org/git/linux-yocto-dev</a></p> <p>Found in base branch: <b>amp-centos-8.0-kernel</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.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> Linux Kernel in versions v2.6.12 to v2.6.39-rc7, v3.0 to v3.9-rc8, v4.0 to v4.4.270, v4.10 to v4.14.234, v5.0 to v5.4.123 and v5.10.42 to v5.12.8 contains a use-after-free vulnerability at drm/amdgpu. <p>Publish Date: 2021-06-04 <p>URL: <a href=https://github.com/gregkh/linux/commit/0707c3fea8102d211631ba515ef2159707561b0d>WS-2021-0338</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>4.9</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: None - 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://osv.dev/vulnerability/UVI-2021-1000586/">https://osv.dev/vulnerability/UVI-2021-1000586/</a></p> <p>Release Date: 2021-06-04</p> <p>Fix Resolution: v2.6.39, v3.9, v4.4.271, v4.14.235, v5.4.124, v5.12.9</p> </p> </details> <p></p>
True
WS-2021-0338 (Medium) detected in linux-yocto-devv5.3 - ## WS-2021-0338 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yocto-devv5.3</b></p></summary> <p> <p>Linux Embedded Kernel - tracks the next mainline release</p> <p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto-dev>https://git.yoctoproject.org/git/linux-yocto-dev</a></p> <p>Found in base branch: <b>amp-centos-8.0-kernel</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.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> Linux Kernel in versions v2.6.12 to v2.6.39-rc7, v3.0 to v3.9-rc8, v4.0 to v4.4.270, v4.10 to v4.14.234, v5.0 to v5.4.123 and v5.10.42 to v5.12.8 contains a use-after-free vulnerability at drm/amdgpu. <p>Publish Date: 2021-06-04 <p>URL: <a href=https://github.com/gregkh/linux/commit/0707c3fea8102d211631ba515ef2159707561b0d>WS-2021-0338</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>4.9</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: None - 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://osv.dev/vulnerability/UVI-2021-1000586/">https://osv.dev/vulnerability/UVI-2021-1000586/</a></p> <p>Release Date: 2021-06-04</p> <p>Fix Resolution: v2.6.39, v3.9, v4.4.271, v4.14.235, v5.4.124, v5.12.9</p> </p> </details> <p></p>
non_priority
ws medium detected in linux yocto ws medium severity vulnerability vulnerable library linux yocto linux embedded kernel tracks the next mainline release library home page a href found in base branch amp centos kernel vulnerable source files drivers gpu drm amd amdgpu amdgpu ttm c drivers gpu drm amd amdgpu amdgpu ttm c vulnerability details linux kernel in versions to to to to to and to contains a use after free vulnerability at drm amdgpu publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required none 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
0
93,127
26,868,713,116
IssuesEvent
2023-02-04 06:55:41
ziglang/zig
https://api.github.com/repos/ziglang/zig
closed
ability to depend on zig modules
enhancement zig build system
Extracted from #14265. Terminology clarification: #14307 Something like this: build.zig.zon ```zig .{ .name = "clap", .url = "...", .hash = "...", } ``` build.zig ```zig // "clap" here references the dependency.name field of the build.zig.zon file. const clap_pkg = b.dependency("clap", .{}); const exe = b.addExecutable("app", "src/main.zig"); // "clap" here is the string used when calling b.addModule (see code snippet below) const clap_module = clap_pkg.module("clap"); // "clap" here is the name used for `@import` within src/main.zig exe.addModule("clap", clap_module); ``` The build.zig file for clap: ```zig const module = b.addModule("clap", ".", "clap.zig"); const example = b.addExecutable("simple", "example/simple.zig"); example.addModule("clap", module); example.setBuildMode(mode); example.setTarget(target); example.install(); ``` See #14282 for depending on pure zig modules without executing build.zig logic. See #14286 for running build.zig logic in a sandbox.
1.0
ability to depend on zig modules - Extracted from #14265. Terminology clarification: #14307 Something like this: build.zig.zon ```zig .{ .name = "clap", .url = "...", .hash = "...", } ``` build.zig ```zig // "clap" here references the dependency.name field of the build.zig.zon file. const clap_pkg = b.dependency("clap", .{}); const exe = b.addExecutable("app", "src/main.zig"); // "clap" here is the string used when calling b.addModule (see code snippet below) const clap_module = clap_pkg.module("clap"); // "clap" here is the name used for `@import` within src/main.zig exe.addModule("clap", clap_module); ``` The build.zig file for clap: ```zig const module = b.addModule("clap", ".", "clap.zig"); const example = b.addExecutable("simple", "example/simple.zig"); example.addModule("clap", module); example.setBuildMode(mode); example.setTarget(target); example.install(); ``` See #14282 for depending on pure zig modules without executing build.zig logic. See #14286 for running build.zig logic in a sandbox.
non_priority
ability to depend on zig modules extracted from terminology clarification something like this build zig zon zig name clap url hash build zig zig clap here references the dependency name field of the build zig zon file const clap pkg b dependency clap const exe b addexecutable app src main zig clap here is the string used when calling b addmodule see code snippet below const clap module clap pkg module clap clap here is the name used for import within src main zig exe addmodule clap clap module the build zig file for clap zig const module b addmodule clap clap zig const example b addexecutable simple example simple zig example addmodule clap module example setbuildmode mode example settarget target example install see for depending on pure zig modules without executing build zig logic see for running build zig logic in a sandbox
0
4,451
23,151,971,751
IssuesEvent
2022-07-29 09:12:27
OpenRefine/OpenRefine
https://api.github.com/repos/OpenRefine/OpenRefine
closed
Java linting not enforced on source files
bug maintainability java
The linting of our Java source files seem to work only for our test files, not our main source files. For instance, a lot of our source files have mixed tabs and spaces. This seems to be due to the non-standard source directories we are using. We should add those source directories in the POM files to make sure they are linted. This will require fixing the corresponding linting issues, and rebase / merge a lot of pull requests… Sorry about that, I should have checked that when I introduced the linting in the first place!
True
Java linting not enforced on source files - The linting of our Java source files seem to work only for our test files, not our main source files. For instance, a lot of our source files have mixed tabs and spaces. This seems to be due to the non-standard source directories we are using. We should add those source directories in the POM files to make sure they are linted. This will require fixing the corresponding linting issues, and rebase / merge a lot of pull requests… Sorry about that, I should have checked that when I introduced the linting in the first place!
non_priority
java linting not enforced on source files the linting of our java source files seem to work only for our test files not our main source files for instance a lot of our source files have mixed tabs and spaces this seems to be due to the non standard source directories we are using we should add those source directories in the pom files to make sure they are linted this will require fixing the corresponding linting issues and rebase merge a lot of pull requests… sorry about that i should have checked that when i introduced the linting in the first place
0
342,799
30,638,808,036
IssuesEvent
2023-07-24 20:02:17
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
closed
Fix math.test_tensorflow_round
TensorFlow Frontend Sub Task Failing Test
| | | |---|---| |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a>
1.0
Fix math.test_tensorflow_round - | | | |---|---| |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5649026699/job/15302494464"><img src=https://img.shields.io/badge/-success-success></a>
non_priority
fix math test tensorflow round jax a href src numpy a href src tensorflow a href src torch a href src paddle a href src
0
181,891
30,755,852,894
IssuesEvent
2023-07-29 03:24:45
DeveloperAcademy-POSTECH/MC3-Team17-ForJaeRin
https://api.github.com/repos/DeveloperAcademy-POSTECH/MC3-Team17-ForJaeRin
closed
[Design]: 레이아웃 조정 최종
Design
## 이슈 - ## To - Do - [x] HomeView - [ ] ImportPDFView - [x] ProjectPlanView - [ ] ProjectHistoryView - [ ] ProjectHistoryDashboardView - [x] ProjectFlowView - [ ] PracticeView
1.0
[Design]: 레이아웃 조정 최종 - ## 이슈 - ## To - Do - [x] HomeView - [ ] ImportPDFView - [x] ProjectPlanView - [ ] ProjectHistoryView - [ ] ProjectHistoryDashboardView - [x] ProjectFlowView - [ ] PracticeView
non_priority
레이아웃 조정 최종 이슈 to do homeview importpdfview projectplanview projecthistoryview projecthistorydashboardview projectflowview practiceview
0
47,065
5,847,359,039
IssuesEvent
2017-05-10 18:18:24
USGS-WiM/STNWeb
https://api.github.com/repos/USGS-WiM/STNWeb
closed
event List date
done in stntest Ready 4 Prod
Make sure dates shown in the event list page are not being adjusted for local time zone. ![image](https://cloud.githubusercontent.com/assets/1580076/21814651/9ca699da-d71f-11e6-82d3-6405e2747748.png)
1.0
event List date - Make sure dates shown in the event list page are not being adjusted for local time zone. ![image](https://cloud.githubusercontent.com/assets/1580076/21814651/9ca699da-d71f-11e6-82d3-6405e2747748.png)
non_priority
event list date make sure dates shown in the event list page are not being adjusted for local time zone
0
10,334
13,163,456,879
IssuesEvent
2020-08-11 00:29:03
nodejs/node
https://api.github.com/repos/nodejs/node
closed
Flaky parallel/test-child-process-fork-args on Windows
CI / flaky test child_process windows
Saw this test crashing in `node-test-binary-windows-js-suites` on https://ci.nodejs.org/job/node-test-pull-request/30753/: ``` 12:59:01 not ok 70 parallel/test-child-process-fork-args 12:59:01 --- 12:59:01 duration_ms: 0.305 12:59:01 severity: crashed 12:59:01 exitcode: -1073741819 12:59:01 stack: |- 12:59:01 ... ```
1.0
Flaky parallel/test-child-process-fork-args on Windows - Saw this test crashing in `node-test-binary-windows-js-suites` on https://ci.nodejs.org/job/node-test-pull-request/30753/: ``` 12:59:01 not ok 70 parallel/test-child-process-fork-args 12:59:01 --- 12:59:01 duration_ms: 0.305 12:59:01 severity: crashed 12:59:01 exitcode: -1073741819 12:59:01 stack: |- 12:59:01 ... ```
non_priority
flaky parallel test child process fork args on windows saw this test crashing in node test binary windows js suites on not ok parallel test child process fork args duration ms severity crashed exitcode stack
0
10,023
3,989,382,941
IssuesEvent
2016-05-09 13:51:28
DotSpatial/DotSpatial
https://api.github.com/repos/DotSpatial/DotSpatial
closed
Krovak Projection has Error
bug CodePlex
**This issue was imported from [CodePlex](http://dotspatial.codeplex.com/workitem/377)** **[jirikadlec2](http://www.codeplex.com/site/users/view/jirikadlec2)** wrote 2011-11-05 at 23:58 There is a serious error in Krovak (S-JTSK) projection. Results are completely incorrect. double[] myOut = new double[2]; <pre><code> myOut[0] = 12.8069888666667; myOut[1] = 49.4522626972222; double[] myZ = new double[1]; myZ[0] = 0; DotSpatial.Projections.ProjectionInfo source = KnownCoordinateSystems.Geographic.World.WGS1984; string projJTSK2 = "+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +pm=greenwich +units=m +no_defs"; DotSpatial.Projections.ProjectionInfo myJTSKPI = DotSpatial.Projections.ProjectionInfo.FromProj4String(projJTSK2); DotSpatial.Projections.Reproject.ReprojectPoints(myOut, myZ, source, myJTSKPI, 0, myZ.Length); //expected result is Y (-868208.52), X (-1095793.96) //result computed by DotSpatial is y (475022.2) X (376370.6) </code></pre> When examining the source code, there are some errors in the code of Krovak.cs. First error identified in the OnInit() method. K0 = projInfo.CentralMeridian != null ? projInfo.Lam0 : 0.9999; This code is clearly incorrect! K0 is a scale factor and so the correct code should be: K0 = projInfo.ScaleFactor != 1 ? projInfo.ScaleFactor : 0.9999; I have created a unit test KrovakTest.cs to test this bug. **[jirikadlec2](http://www.codeplex.com/site/users/view/jirikadlec2)** wrote 2011-11-08 at 20:48 The unit test KrovakTest now passes, still need to do more testing using official benchmark points and reading / writing the .prj files (ToEsriString, FromEsriString) and writing the Proj4 string. **[jirikadlec2](http://www.codeplex.com/site/users/view/jirikadlec2)** wrote 2011-12-16 at 10:11 I have fixed this bug also with regards to reading prj files and added a unit test for reading the ESRI string and re-projecting between WGS1984 and S-JTSK Krovak East North. The fix is in changeset 224fe414e979.
1.0
Krovak Projection has Error - **This issue was imported from [CodePlex](http://dotspatial.codeplex.com/workitem/377)** **[jirikadlec2](http://www.codeplex.com/site/users/view/jirikadlec2)** wrote 2011-11-05 at 23:58 There is a serious error in Krovak (S-JTSK) projection. Results are completely incorrect. double[] myOut = new double[2]; <pre><code> myOut[0] = 12.8069888666667; myOut[1] = 49.4522626972222; double[] myZ = new double[1]; myZ[0] = 0; DotSpatial.Projections.ProjectionInfo source = KnownCoordinateSystems.Geographic.World.WGS1984; string projJTSK2 = "+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +pm=greenwich +units=m +no_defs"; DotSpatial.Projections.ProjectionInfo myJTSKPI = DotSpatial.Projections.ProjectionInfo.FromProj4String(projJTSK2); DotSpatial.Projections.Reproject.ReprojectPoints(myOut, myZ, source, myJTSKPI, 0, myZ.Length); //expected result is Y (-868208.52), X (-1095793.96) //result computed by DotSpatial is y (475022.2) X (376370.6) </code></pre> When examining the source code, there are some errors in the code of Krovak.cs. First error identified in the OnInit() method. K0 = projInfo.CentralMeridian != null ? projInfo.Lam0 : 0.9999; This code is clearly incorrect! K0 is a scale factor and so the correct code should be: K0 = projInfo.ScaleFactor != 1 ? projInfo.ScaleFactor : 0.9999; I have created a unit test KrovakTest.cs to test this bug. **[jirikadlec2](http://www.codeplex.com/site/users/view/jirikadlec2)** wrote 2011-11-08 at 20:48 The unit test KrovakTest now passes, still need to do more testing using official benchmark points and reading / writing the .prj files (ToEsriString, FromEsriString) and writing the Proj4 string. **[jirikadlec2](http://www.codeplex.com/site/users/view/jirikadlec2)** wrote 2011-12-16 at 10:11 I have fixed this bug also with regards to reading prj files and added a unit test for reading the ESRI string and re-projecting between WGS1984 and S-JTSK Krovak East North. The fix is in changeset 224fe414e979.
non_priority
krovak projection has error this issue was imported from wrote at there is a serious error in krovak s jtsk projection results are completely incorrect double myout new double myout myout double myz new double myz dotspatial projections projectioninfo source knowncoordinatesystems geographic world string proj krovak lat lon alpha k x y ellps bessel pm greenwich units m no defs dotspatial projections projectioninfo myjtskpi dotspatial projections projectioninfo dotspatial projections reproject reprojectpoints myout myz source myjtskpi myz length expected result is y x result computed by dotspatial is y x when examining the source code there are some errors in the code of krovak cs first error identified in the oninit method projinfo centralmeridian null projinfo this code is clearly incorrect is a scale factor and so the correct code should be projinfo scalefactor projinfo scalefactor i have created a unit test krovaktest cs to test this bug wrote at the unit test krovaktest now passes still need to do more testing using official benchmark points and reading writing the prj files toesristring fromesristring and writing the string wrote at i have fixed this bug also with regards to reading prj files and added a unit test for reading the esri string and re projecting between and s jtsk krovak east north the fix is in changeset
0
2,570
5,325,652,468
IssuesEvent
2017-02-15 00:30:22
jlm2017/jlm-video-subtitles
https://api.github.com/repos/jlm2017/jlm-video-subtitles
opened
[subtitles] [german] Il faut faire tomber le mur de l'argent
Process: [0] Awaiting subtitles
# Video title Il faut faire tomber le mur de l'argent # URL https://www.youtube.com/watch?v=zXWCA8dV8os&t=4s # Youtube subtitles language German # Duration 3:55 # Subtitles URL https://www.youtube.com/timedtext_editor?v=zXWCA8dV8os&ui=hd&action_mde_edit_form=1&ref=player&lang=de&bl=vmp&tab=captions
1.0
[subtitles] [german] Il faut faire tomber le mur de l'argent - # Video title Il faut faire tomber le mur de l'argent # URL https://www.youtube.com/watch?v=zXWCA8dV8os&t=4s # Youtube subtitles language German # Duration 3:55 # Subtitles URL https://www.youtube.com/timedtext_editor?v=zXWCA8dV8os&ui=hd&action_mde_edit_form=1&ref=player&lang=de&bl=vmp&tab=captions
non_priority
il faut faire tomber le mur de l argent video title il faut faire tomber le mur de l argent url youtube subtitles language german duration subtitles url
0
187,007
14,426,897,543
IssuesEvent
2020-12-06 00:38:55
backend-br/vagas
https://api.github.com/repos/backend-br/vagas
closed
[Cidade] Back-end Developer @ Nome da Empresa
Alocado Angular CLT CSS DevOps Git HTML JavaScript Pleno Remoto Stale Testes Unitários
<!-- ================================================== Caso a vaga for remoto durante a pandemia informar no texto "Remoto durante o covid" ================================================== --> <!-- ================================================== POR FAVOR, SÓ POSTE SE A VAGA FOR PARA BACK-END! Não faça distinção de gênero no título da vaga. Use: "Back-End Developer" ao invés de "Desenvolvedor Back-End" \o/ Exemplo: `[São Paulo] Back-End Developer @ NOME DA EMPRESA` ================================================== --> <!-- ================================================== Caso a vaga for remoto durante a pandemia deixar a linha abaixo ================================================== --> --> <!-- ## Nossa empresa Nós acreditamos que boas ideias nascem de bons relacionamentos, boas conversas e troca de experiências. ## Descrição da vaga Se você, assim como nós, sente vontade de transformar os negócios, a sociedade e o mundo por meio da tecnologia, em seu DNA está a #PaixãoPorTransformação, portanto, junte-se a nós e venha ser um #Spreader, atuando como Desenvolvedor (a) .Net Core Pleno. ## Local Chácara Santo Antônio - São Paulo ## Requisitos **Obrigatórios:** - Experiência com desenvolvimento em .Net Core, C# - Experiência com desenvolvimento front end (Angular, JavaScript, HTML, CSS, Bootstrap) **Desejáveis:** - Conhecimento em Azure DevOps, Git - Familiaridade com rotinas de code review e testes unitários ## Benefícios - Plano de saúde - Seguro de vida - VR/VA de R$ 18,62/dia - Auxílio creche - Vale transporte - Assistência Odontológica - Parcerias com Academias - Parcerias com faculdades ## Contratação CLT Full ## Como se candidatar Por favor envie um email para thais.silva@spread.com.br com seu CV anexado - enviar no assunto: Vaga .Net Core # Labels <!-- retire os labels que não fazem sentido à vaga --> #### Alocação - Alocado #### Regime - CLT #### Nível - Pleno
1.0
[Cidade] Back-end Developer @ Nome da Empresa - <!-- ================================================== Caso a vaga for remoto durante a pandemia informar no texto "Remoto durante o covid" ================================================== --> <!-- ================================================== POR FAVOR, SÓ POSTE SE A VAGA FOR PARA BACK-END! Não faça distinção de gênero no título da vaga. Use: "Back-End Developer" ao invés de "Desenvolvedor Back-End" \o/ Exemplo: `[São Paulo] Back-End Developer @ NOME DA EMPRESA` ================================================== --> <!-- ================================================== Caso a vaga for remoto durante a pandemia deixar a linha abaixo ================================================== --> --> <!-- ## Nossa empresa Nós acreditamos que boas ideias nascem de bons relacionamentos, boas conversas e troca de experiências. ## Descrição da vaga Se você, assim como nós, sente vontade de transformar os negócios, a sociedade e o mundo por meio da tecnologia, em seu DNA está a #PaixãoPorTransformação, portanto, junte-se a nós e venha ser um #Spreader, atuando como Desenvolvedor (a) .Net Core Pleno. ## Local Chácara Santo Antônio - São Paulo ## Requisitos **Obrigatórios:** - Experiência com desenvolvimento em .Net Core, C# - Experiência com desenvolvimento front end (Angular, JavaScript, HTML, CSS, Bootstrap) **Desejáveis:** - Conhecimento em Azure DevOps, Git - Familiaridade com rotinas de code review e testes unitários ## Benefícios - Plano de saúde - Seguro de vida - VR/VA de R$ 18,62/dia - Auxílio creche - Vale transporte - Assistência Odontológica - Parcerias com Academias - Parcerias com faculdades ## Contratação CLT Full ## Como se candidatar Por favor envie um email para thais.silva@spread.com.br com seu CV anexado - enviar no assunto: Vaga .Net Core # Labels <!-- retire os labels que não fazem sentido à vaga --> #### Alocação - Alocado #### Regime - CLT #### Nível - Pleno
non_priority
back end developer nome da empresa caso a vaga for remoto durante a pandemia informar no texto remoto durante o covid por favor só poste se a vaga for para back end não faça distinção de gênero no título da vaga use back end developer ao invés de desenvolvedor back end o exemplo back end developer nome da empresa caso a vaga for remoto durante a pandemia deixar a linha abaixo nossa empresa nós acreditamos que boas ideias nascem de bons relacionamentos boas conversas e troca de experiências descrição da vaga se você assim como nós sente vontade de transformar os negócios a sociedade e o mundo por meio da tecnologia em seu dna está a paixãoportransformação portanto junte se a nós e venha ser um spreader atuando como desenvolvedor a net core pleno local chácara santo antônio são paulo requisitos obrigatórios experiência com desenvolvimento em net core c experiência com desenvolvimento front end angular javascript html css bootstrap desejáveis conhecimento em azure devops git familiaridade com rotinas de code review e testes unitários benefícios plano de saúde seguro de vida vr va de r dia auxílio creche vale transporte assistência odontológica parcerias com academias parcerias com faculdades contratação clt full como se candidatar por favor envie um email para thais silva spread com br com seu cv anexado enviar no assunto vaga net core labels alocação alocado regime clt nível pleno
0
246,761
18,853,450,973
IssuesEvent
2021-11-12 01:02:20
cultureamp/kaizen-design-system
https://api.github.com/repos/cultureamp/kaizen-design-system
closed
Replace Button stories with sticker sheets + a single story w/ controls
documentation
Rather than having a million stories for every single combination of props for `Button`, let's create a couple of sticker sheets (one for light background + 1 for reversed), similar to what the [UI Kit in Figma](https://www.figma.com/file/eZKEE5kXbEMY3lx84oz8iN/%E2%9D%A4%EF%B8%8F-UI-Kit%3A-Heart?node-id=1929%3A17364) has (without separate columns for hover and focus): ![image](https://user-images.githubusercontent.com/1811583/136481669-ee9c15cc-ee87-4d6c-85ba-fc181a8189f7.png) Plus we can have one story where controls are activated so that the user can try out different combinations of props in a single story. Note: Button already has at least 1 story where controls are activated: https://cultureamp.design/storybook/?path=/story/components-button-button--default-kaizen-site-demo This is something we will probably look at doing on the rest of our components as well, but lets start with Button where this issue is the most apparent because of all of the different variants and combinations. Credit: @ActuallyACat's awesome idea, not mine 🙂
1.0
Replace Button stories with sticker sheets + a single story w/ controls - Rather than having a million stories for every single combination of props for `Button`, let's create a couple of sticker sheets (one for light background + 1 for reversed), similar to what the [UI Kit in Figma](https://www.figma.com/file/eZKEE5kXbEMY3lx84oz8iN/%E2%9D%A4%EF%B8%8F-UI-Kit%3A-Heart?node-id=1929%3A17364) has (without separate columns for hover and focus): ![image](https://user-images.githubusercontent.com/1811583/136481669-ee9c15cc-ee87-4d6c-85ba-fc181a8189f7.png) Plus we can have one story where controls are activated so that the user can try out different combinations of props in a single story. Note: Button already has at least 1 story where controls are activated: https://cultureamp.design/storybook/?path=/story/components-button-button--default-kaizen-site-demo This is something we will probably look at doing on the rest of our components as well, but lets start with Button where this issue is the most apparent because of all of the different variants and combinations. Credit: @ActuallyACat's awesome idea, not mine 🙂
non_priority
replace button stories with sticker sheets a single story w controls rather than having a million stories for every single combination of props for button let s create a couple of sticker sheets one for light background for reversed similar to what the has without separate columns for hover and focus plus we can have one story where controls are activated so that the user can try out different combinations of props in a single story note button already has at least story where controls are activated this is something we will probably look at doing on the rest of our components as well but lets start with button where this issue is the most apparent because of all of the different variants and combinations credit actuallyacat s awesome idea not mine 🙂
0
354,574
25,171,591,279
IssuesEvent
2022-11-11 04:11:31
dj-stripe/dj-stripe
https://api.github.com/repos/dj-stripe/dj-stripe
opened
Docs are broken in several ways/places
documentation
**What did you run into?** Trying to read the documentation to better understand this project, but much of the information is missing from pages or incorrectly formatted/garbled. **Why would it be helpful to document or fix this?** - It is difficult to understand - Issues with docs that have existed for nearly a year make people think this project is defunct **To which section of the docs does this belong?** - Most of the content in the references is missing. For instance, only a handful of the models are noted, and none of the enumerations are listed. It appears that this content used to be in place at one time. - Several links are broken (e.g. Available Settings section on https://dj-stripe.dev/usage/webhooks/ or the Extending subscriptions section of https://dj-stripe.dev/usage/managing_subscriptions/) - Code blocks are incorrectly indented in some places, and not in others. For instance, the first two blocks on https://dj-stripe.dev/usage/webhooks/ are intended by 4 spaces (they shouldn't be), but the third block correctly omits the unnecessary spacing. It looks like much of these issues crept in during #1451
1.0
Docs are broken in several ways/places - **What did you run into?** Trying to read the documentation to better understand this project, but much of the information is missing from pages or incorrectly formatted/garbled. **Why would it be helpful to document or fix this?** - It is difficult to understand - Issues with docs that have existed for nearly a year make people think this project is defunct **To which section of the docs does this belong?** - Most of the content in the references is missing. For instance, only a handful of the models are noted, and none of the enumerations are listed. It appears that this content used to be in place at one time. - Several links are broken (e.g. Available Settings section on https://dj-stripe.dev/usage/webhooks/ or the Extending subscriptions section of https://dj-stripe.dev/usage/managing_subscriptions/) - Code blocks are incorrectly indented in some places, and not in others. For instance, the first two blocks on https://dj-stripe.dev/usage/webhooks/ are intended by 4 spaces (they shouldn't be), but the third block correctly omits the unnecessary spacing. It looks like much of these issues crept in during #1451
non_priority
docs are broken in several ways places what did you run into trying to read the documentation to better understand this project but much of the information is missing from pages or incorrectly formatted garbled why would it be helpful to document or fix this it is difficult to understand issues with docs that have existed for nearly a year make people think this project is defunct to which section of the docs does this belong most of the content in the references is missing for instance only a handful of the models are noted and none of the enumerations are listed it appears that this content used to be in place at one time several links are broken e g available settings section on or the extending subscriptions section of code blocks are incorrectly indented in some places and not in others for instance the first two blocks on are intended by spaces they shouldn t be but the third block correctly omits the unnecessary spacing it looks like much of these issues crept in during
0
165,673
26,208,718,554
IssuesEvent
2023-01-04 02:56:32
dotnet/winforms
https://api.github.com/repos/dotnet/winforms
opened
Designer not working in VS 2022 preview
area: VS designer untriaged
### Environment Edition Windows 10 Pro Version 21H2 Installed on ‎25-‎Mar-‎22 OS build 19044.2364 Experience Windows Feature Experience Pack 120.2212.4190.0 ### .NET version .NET 8 ### Did this work in a previous version of Visual Studio and/or previous .NET release? I am unsure if the designer previously worked. ### Issue description The designer fails to open a form in any of the projects of Winforms. ### Steps to reproduce Installed latest VS Preview and opened a form in `WinformsControlsTest`. ### Diagnostics ```text [12:39:03.634565] info: Creating VsDesignerLoader [12:39:03.758140] info: [Thread 1] Creating design-time ITypeResolutionService. [12:39:03.815189] trce: Current VS Version = 17.0 [12:39:03.817190] info: Start processing enqueued assemblies [12:39:03.817190] trce: Loaded Microsoft.WinForms.DesignTools.Protocol in 00:00:00.0000120 [thread 89] [12:39:03.818192] trce: Processed 'Microsoft.WinForms.DesignTools.Protocol' in 00:00:00.0011024 [12:39:03.821194] info: Added 'Microsoft.WinForms.DesignTools.Protocol' [12:39:03.822194] trce: Loaded Microsoft.WinForms.DesignTools.Client in 00:00:00.0000136 [thread 98] [12:39:03.849357] trce: Processed 'Microsoft.WinForms.DesignTools.Client' in 00:00:00.0274103 [12:39:03.851366] info: Added 'Microsoft.WinForms.DesignTools.Client' [12:39:03.991797] info: Visual Studio culture: en-US (0x0409) [12:39:03.991797] info: [Thread 61] Launching server... [12:39:03.998072] info: Is processor architecture ARM64: False [12:39:04.236863] info: Added 'mscorlib' [12:39:04.236863] trce: Loaded System.Windows.Forms in 00:00:00.0000150 [thread 86] [12:39:04.239866] trce: Processed 'System.Windows.Forms' in 00:00:00.0028147 [12:39:04.255879] info: Added 'System.Windows.Forms' [12:39:04.255879] trce: Loaded System in 00:00:00.0000142 [thread 14] [12:39:04.256882] trce: Processed 'System' in 00:00:00.0008085 [12:39:04.272894] info: Added 'System' [12:39:04.272894] trce: Loaded System.Drawing in 00:00:00.0000131 [thread 14] [12:39:04.272894] trce: Processed 'System.Drawing' in 00:00:00.0001257 [12:39:04.274896] info: Added 'System.Drawing' [12:39:04.274896] trce: Loaded System.Design in 00:00:00.0000168 [thread 84] [12:39:04.282076] trce: Processed 'System.Design' in 00:00:00.0065722 [12:39:04.292921] info: Added 'System.Design' [12:39:04.292921] trce: Loaded System.Drawing.Design in 00:00:00.0000133 [thread 26] [12:39:04.292921] trce: Processed 'System.Drawing.Design' in 00:00:00.0002616 [12:39:04.293912] info: Added 'System.Drawing.Design' [12:39:05.569105] info: Shadow cache base directory: C:\Users\elach.DESKTOP-IP3KHO8\AppData\Local\Microsoft\VisualStudio\17.0_4c6607dd\WinFormsDesigner [12:39:05.578112] info: [WinformsControlsTest]: Preparing shadow cache folder [12:39:05.579112] info: [WinformsControlsTest]: NetCoreServerLayout - Platform: AnyCPU, Normalized PlatformName: x64 [12:39:05.582115] info: [WinformsControlsTest]: Copying design tools server common files from: 'c:\program files\microsoft visual studio\2022\preview\common7\ide\commonextensions\microsoft\windows.forms\DesignToolsServer\Common' [12:39:05.628154] info: [WinformsControlsTest]: Copying design tool server platform-specific files from: 'c:\program files\microsoft visual studio\2022\preview\common7\ide\commonextensions\microsoft\windows.forms\DesignToolsServer\x64' [12:39:05.634169] info: [WinformsControlsTest]: Copying project output file: 'D:\Development\winforms\artifacts\bin\WinformsControlsTest\Debug\net8.0\WinformsControlsTest.dll' [12:39:05.641165] info: [WinformsControlsTest]: Copying 'D:\Development\winforms\artifacts\obj\WinformsControlsTest\Debug\net8.0\WinformsControlsTest.designer.deps.json' to 'DesignToolsServer.deps.json' [12:39:05.643167] info: [WinformsControlsTest]: Copying 'D:\Development\winforms\artifacts\obj\WinformsControlsTest\Debug\net8.0\WinformsControlsTest.designer.runtimeconfig.json' to 'DesignToolsServer.runtimeconfig.json' [12:39:05.645169] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\Accessibility\Debug\net8.0\Accessibility.dll' [12:39:05.647172] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\Accessibility\Debug\net8.0\Accessibility.dll' [12:39:05.647172] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\AxInterop.WMPLib.dll' [12:39:05.648172] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\AxInterop.WMPLib.dll' [12:39:05.648172] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\Interop.WMPLib.dll' [12:39:05.649172] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\Interop.WMPLib.dll' [12:39:05.649172] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Design.Facade\Debug\net8.0\System.Design.dll' [12:39:05.650173] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Design.Facade\Debug\net8.0\System.Design.dll' [12:39:05.650173] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\System.Windows.Forms.Design.dll' [12:39:05.654186] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\System.Windows.Forms.Design.dll' [12:39:05.654186] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\System.Windows.Forms.dll' [12:39:05.662193] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\System.Windows.Forms.dll' [12:39:05.662193] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.IntegrationTests.Common\Debug\net8.0\System.Windows.Forms.IntegrationTests.Common.dll' [12:39:05.664186] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.IntegrationTests.Common\Debug\net8.0\System.Windows.Forms.IntegrationTests.Common.dll' [12:39:05.664186] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\System.Windows.Forms.Primitives.dll' [12:39:05.666197] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\System.Windows.Forms.Primitives.dll' [12:39:05.667188] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\cs\System.Windows.Forms.Design.resources.dll' [12:39:05.668188] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\cs\System.Windows.Forms.Design.resources.dll' [12:39:05.668188] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\de\System.Windows.Forms.Design.resources.dll' [12:39:05.669189] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\de\System.Windows.Forms.Design.resources.dll' [12:39:05.669189] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\es\System.Windows.Forms.Design.resources.dll' [12:39:05.670200] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\es\System.Windows.Forms.Design.resources.dll' [12:39:05.670200] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\fr\System.Windows.Forms.Design.resources.dll' [12:39:05.670200] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\fr\System.Windows.Forms.Design.resources.dll' [12:39:05.671191] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\it\System.Windows.Forms.Design.resources.dll' [12:39:05.672192] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\it\System.Windows.Forms.Design.resources.dll' [12:39:05.672192] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ja\System.Windows.Forms.Design.resources.dll' [12:39:05.673193] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ja\System.Windows.Forms.Design.resources.dll' [12:39:05.673193] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ko\System.Windows.Forms.Design.resources.dll' [12:39:05.674193] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ko\System.Windows.Forms.Design.resources.dll' [12:39:05.674193] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pl\System.Windows.Forms.Design.resources.dll' [12:39:05.675196] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pl\System.Windows.Forms.Design.resources.dll' [12:39:05.675196] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pt-BR\System.Windows.Forms.Design.resources.dll' [12:39:05.676196] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pt-BR\System.Windows.Forms.Design.resources.dll' [12:39:05.676196] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ru\System.Windows.Forms.Design.resources.dll' [12:39:05.677197] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ru\System.Windows.Forms.Design.resources.dll' [12:39:05.677197] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\tr\System.Windows.Forms.Design.resources.dll' [12:39:05.678198] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\tr\System.Windows.Forms.Design.resources.dll' [12:39:05.678198] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hans\System.Windows.Forms.Design.resources.dll' [12:39:05.679199] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hans\System.Windows.Forms.Design.resources.dll' [12:39:05.679199] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hant\System.Windows.Forms.Design.resources.dll' [12:39:05.680200] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hant\System.Windows.Forms.Design.resources.dll' [12:39:05.680200] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\cs\System.Windows.Forms.resources.dll' [12:39:05.681210] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\cs\System.Windows.Forms.resources.dll' [12:39:05.681210] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\de\System.Windows.Forms.resources.dll' [12:39:05.682201] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\de\System.Windows.Forms.resources.dll' [12:39:05.682201] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\es\System.Windows.Forms.resources.dll' [12:39:05.683202] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\es\System.Windows.Forms.resources.dll' [12:39:05.683202] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\fr\System.Windows.Forms.resources.dll' [12:39:05.684203] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\fr\System.Windows.Forms.resources.dll' [12:39:05.684203] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\it\System.Windows.Forms.resources.dll' [12:39:05.685203] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\it\System.Windows.Forms.resources.dll' [12:39:05.685203] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ja\System.Windows.Forms.resources.dll' [12:39:05.686204] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ja\System.Windows.Forms.resources.dll' [12:39:05.686204] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ko\System.Windows.Forms.resources.dll' [12:39:05.687205] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ko\System.Windows.Forms.resources.dll' [12:39:05.687205] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pl\System.Windows.Forms.resources.dll' [12:39:05.688206] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pl\System.Windows.Forms.resources.dll' [12:39:05.688206] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pt-BR\System.Windows.Forms.resources.dll' [12:39:05.689207] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pt-BR\System.Windows.Forms.resources.dll' [12:39:05.689207] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ru\System.Windows.Forms.resources.dll' [12:39:05.691208] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ru\System.Windows.Forms.resources.dll' [12:39:05.691208] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\tr\System.Windows.Forms.resources.dll' [12:39:05.692209] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\tr\System.Windows.Forms.resources.dll' [12:39:05.692209] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hans\System.Windows.Forms.resources.dll' [12:39:05.693210] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hans\System.Windows.Forms.resources.dll' [12:39:05.693210] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hant\System.Windows.Forms.resources.dll' [12:39:05.694211] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hant\System.Windows.Forms.resources.dll' [12:39:05.694211] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\cs\System.Windows.Forms.Primitives.resources.dll' [12:39:05.695212] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\cs\System.Windows.Forms.Primitives.resources.dll' [12:39:05.695212] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\de\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\de\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\es\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\es\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\fr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.697213] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\fr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.697213] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\it\System.Windows.Forms.Primitives.resources.dll' [12:39:05.698214] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\it\System.Windows.Forms.Primitives.resources.dll' [12:39:05.698214] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ja\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ja\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ko\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ko\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pl\System.Windows.Forms.Primitives.resources.dll' [12:39:05.700216] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pl\System.Windows.Forms.Primitives.resources.dll' [12:39:05.700216] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pt-BR\System.Windows.Forms.Primitives.resources.dll' [12:39:05.701217] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pt-BR\System.Windows.Forms.Primitives.resources.dll' [12:39:05.701217] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ru\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ru\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\tr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\tr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hans\System.Windows.Forms.Primitives.resources.dll' [12:39:05.703218] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hans\System.Windows.Forms.Primitives.resources.dll' [12:39:05.703218] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hant\System.Windows.Forms.Primitives.resources.dll' [12:39:05.704219] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hant\System.Windows.Forms.Primitives.resources.dll' [12:39:05.704219] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers.CSharp\Debug\netstandard2.0\System.Windows.Forms.Analyzers.CSharp.dll' [12:39:05.705220] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers.CSharp\Debug\netstandard2.0\System.Windows.Forms.Analyzers.CSharp.dll' [12:39:05.705220] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers\Debug\netstandard2.0\System.Windows.Forms.Analyzers.dll' [12:39:05.706221] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers\Debug\netstandard2.0\System.Windows.Forms.Analyzers.dll' [12:39:06.603148] info: [WinformsControlsTest]: Launching design tools server process... [12:39:07.179639] fail: [WinformsControlsTest]: Unhandled exception. System.TypeInitializationException: The type initializer for 'Microsoft.VisualStudio.WinForms.Server.WinFormsDesignTimeAssemblies' threw an exception. [12:39:07.179639] fail: [WinformsControlsTest]: ---> System.IO.FileNotFoundException: Could not load file or assembly 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. The system cannot find the file specified. [12:39:07.179639] fail: [WinformsControlsTest]: File name: 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' [12:39:07.180631] fail: [WinformsControlsTest]: at Microsoft.VisualStudio.WinForms.Server.WinFormsDesignTimeAssemblies..cctor() [12:39:07.180631] fail: [WinformsControlsTest]: --- End of inner exception stack trace --- [12:39:07.180631] fail: [WinformsControlsTest]: at Microsoft.VisualStudio.WinForms.Server.WinFormsDesignTimeAssemblies.get_All() [12:39:07.180631] fail: [WinformsControlsTest]: at DesignToolsServerX64.Program.Main(String[] args) [12:39:36.176720] trce: Suspend painting the design surface [12:39:36.202734] fail: Exception occurred while disposing VSDesignSurface System.InvalidOperationException: The service 'Microsoft.VisualStudio.Shell.Design.Serialization.DesignerDocDataService' must be installed for this feature to work. Ensure that this service is available. at System.ServiceExtensions.GetRequiredService[TService,TInterface](IServiceProvider provider) at Microsoft.DotNet.DesignTools.Client.CodeDom.VsDesignerInfo.<CreateAsync>d__22.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.DotNet.DesignTools.Client.CodeDom.CodeModel.MergedCodeDomProvider.<CreateAsync>d__23.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.DotNet.DesignTools.Client.CodeDom.CodeDomSource.<CreateAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread() at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.<get_CodeDomSource>g__Create|36_0() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.get_CodeDomSource() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.get_CodeDomManager() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.OnBeginUnload() at Microsoft.DotNet.DesignTools.Client.Loader.BasicDesignerLoader.Dispose() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.Dispose() at System.ComponentModel.Design.DesignerHost.DisposeHost() at System.ComponentModel.Design.DesignSurface.Dispose(Boolean disposing) at Microsoft.VisualStudio.WinForms.VSDesignSurface.Dispose(Boolean disposing) For information on how to troubleshoot the designer refer to the guide at https://aka.ms/winforms/designer/troubleshooting. ``` ```
1.0
Designer not working in VS 2022 preview - ### Environment Edition Windows 10 Pro Version 21H2 Installed on ‎25-‎Mar-‎22 OS build 19044.2364 Experience Windows Feature Experience Pack 120.2212.4190.0 ### .NET version .NET 8 ### Did this work in a previous version of Visual Studio and/or previous .NET release? I am unsure if the designer previously worked. ### Issue description The designer fails to open a form in any of the projects of Winforms. ### Steps to reproduce Installed latest VS Preview and opened a form in `WinformsControlsTest`. ### Diagnostics ```text [12:39:03.634565] info: Creating VsDesignerLoader [12:39:03.758140] info: [Thread 1] Creating design-time ITypeResolutionService. [12:39:03.815189] trce: Current VS Version = 17.0 [12:39:03.817190] info: Start processing enqueued assemblies [12:39:03.817190] trce: Loaded Microsoft.WinForms.DesignTools.Protocol in 00:00:00.0000120 [thread 89] [12:39:03.818192] trce: Processed 'Microsoft.WinForms.DesignTools.Protocol' in 00:00:00.0011024 [12:39:03.821194] info: Added 'Microsoft.WinForms.DesignTools.Protocol' [12:39:03.822194] trce: Loaded Microsoft.WinForms.DesignTools.Client in 00:00:00.0000136 [thread 98] [12:39:03.849357] trce: Processed 'Microsoft.WinForms.DesignTools.Client' in 00:00:00.0274103 [12:39:03.851366] info: Added 'Microsoft.WinForms.DesignTools.Client' [12:39:03.991797] info: Visual Studio culture: en-US (0x0409) [12:39:03.991797] info: [Thread 61] Launching server... [12:39:03.998072] info: Is processor architecture ARM64: False [12:39:04.236863] info: Added 'mscorlib' [12:39:04.236863] trce: Loaded System.Windows.Forms in 00:00:00.0000150 [thread 86] [12:39:04.239866] trce: Processed 'System.Windows.Forms' in 00:00:00.0028147 [12:39:04.255879] info: Added 'System.Windows.Forms' [12:39:04.255879] trce: Loaded System in 00:00:00.0000142 [thread 14] [12:39:04.256882] trce: Processed 'System' in 00:00:00.0008085 [12:39:04.272894] info: Added 'System' [12:39:04.272894] trce: Loaded System.Drawing in 00:00:00.0000131 [thread 14] [12:39:04.272894] trce: Processed 'System.Drawing' in 00:00:00.0001257 [12:39:04.274896] info: Added 'System.Drawing' [12:39:04.274896] trce: Loaded System.Design in 00:00:00.0000168 [thread 84] [12:39:04.282076] trce: Processed 'System.Design' in 00:00:00.0065722 [12:39:04.292921] info: Added 'System.Design' [12:39:04.292921] trce: Loaded System.Drawing.Design in 00:00:00.0000133 [thread 26] [12:39:04.292921] trce: Processed 'System.Drawing.Design' in 00:00:00.0002616 [12:39:04.293912] info: Added 'System.Drawing.Design' [12:39:05.569105] info: Shadow cache base directory: C:\Users\elach.DESKTOP-IP3KHO8\AppData\Local\Microsoft\VisualStudio\17.0_4c6607dd\WinFormsDesigner [12:39:05.578112] info: [WinformsControlsTest]: Preparing shadow cache folder [12:39:05.579112] info: [WinformsControlsTest]: NetCoreServerLayout - Platform: AnyCPU, Normalized PlatformName: x64 [12:39:05.582115] info: [WinformsControlsTest]: Copying design tools server common files from: 'c:\program files\microsoft visual studio\2022\preview\common7\ide\commonextensions\microsoft\windows.forms\DesignToolsServer\Common' [12:39:05.628154] info: [WinformsControlsTest]: Copying design tool server platform-specific files from: 'c:\program files\microsoft visual studio\2022\preview\common7\ide\commonextensions\microsoft\windows.forms\DesignToolsServer\x64' [12:39:05.634169] info: [WinformsControlsTest]: Copying project output file: 'D:\Development\winforms\artifacts\bin\WinformsControlsTest\Debug\net8.0\WinformsControlsTest.dll' [12:39:05.641165] info: [WinformsControlsTest]: Copying 'D:\Development\winforms\artifacts\obj\WinformsControlsTest\Debug\net8.0\WinformsControlsTest.designer.deps.json' to 'DesignToolsServer.deps.json' [12:39:05.643167] info: [WinformsControlsTest]: Copying 'D:\Development\winforms\artifacts\obj\WinformsControlsTest\Debug\net8.0\WinformsControlsTest.designer.runtimeconfig.json' to 'DesignToolsServer.runtimeconfig.json' [12:39:05.645169] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\Accessibility\Debug\net8.0\Accessibility.dll' [12:39:05.647172] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\Accessibility\Debug\net8.0\Accessibility.dll' [12:39:05.647172] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\AxInterop.WMPLib.dll' [12:39:05.648172] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\AxInterop.WMPLib.dll' [12:39:05.648172] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\Interop.WMPLib.dll' [12:39:05.649172] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\AxHosts\Debug\net472\Interop.WMPLib.dll' [12:39:05.649172] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Design.Facade\Debug\net8.0\System.Design.dll' [12:39:05.650173] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Design.Facade\Debug\net8.0\System.Design.dll' [12:39:05.650173] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\System.Windows.Forms.Design.dll' [12:39:05.654186] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\System.Windows.Forms.Design.dll' [12:39:05.654186] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\System.Windows.Forms.dll' [12:39:05.662193] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\System.Windows.Forms.dll' [12:39:05.662193] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.IntegrationTests.Common\Debug\net8.0\System.Windows.Forms.IntegrationTests.Common.dll' [12:39:05.664186] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.IntegrationTests.Common\Debug\net8.0\System.Windows.Forms.IntegrationTests.Common.dll' [12:39:05.664186] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\System.Windows.Forms.Primitives.dll' [12:39:05.666197] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\System.Windows.Forms.Primitives.dll' [12:39:05.667188] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\cs\System.Windows.Forms.Design.resources.dll' [12:39:05.668188] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\cs\System.Windows.Forms.Design.resources.dll' [12:39:05.668188] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\de\System.Windows.Forms.Design.resources.dll' [12:39:05.669189] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\de\System.Windows.Forms.Design.resources.dll' [12:39:05.669189] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\es\System.Windows.Forms.Design.resources.dll' [12:39:05.670200] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\es\System.Windows.Forms.Design.resources.dll' [12:39:05.670200] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\fr\System.Windows.Forms.Design.resources.dll' [12:39:05.670200] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\fr\System.Windows.Forms.Design.resources.dll' [12:39:05.671191] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\it\System.Windows.Forms.Design.resources.dll' [12:39:05.672192] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\it\System.Windows.Forms.Design.resources.dll' [12:39:05.672192] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ja\System.Windows.Forms.Design.resources.dll' [12:39:05.673193] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ja\System.Windows.Forms.Design.resources.dll' [12:39:05.673193] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ko\System.Windows.Forms.Design.resources.dll' [12:39:05.674193] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ko\System.Windows.Forms.Design.resources.dll' [12:39:05.674193] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pl\System.Windows.Forms.Design.resources.dll' [12:39:05.675196] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pl\System.Windows.Forms.Design.resources.dll' [12:39:05.675196] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pt-BR\System.Windows.Forms.Design.resources.dll' [12:39:05.676196] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\pt-BR\System.Windows.Forms.Design.resources.dll' [12:39:05.676196] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ru\System.Windows.Forms.Design.resources.dll' [12:39:05.677197] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\ru\System.Windows.Forms.Design.resources.dll' [12:39:05.677197] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\tr\System.Windows.Forms.Design.resources.dll' [12:39:05.678198] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\tr\System.Windows.Forms.Design.resources.dll' [12:39:05.678198] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hans\System.Windows.Forms.Design.resources.dll' [12:39:05.679199] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hans\System.Windows.Forms.Design.resources.dll' [12:39:05.679199] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hant\System.Windows.Forms.Design.resources.dll' [12:39:05.680200] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Design\Debug\net8.0\zh-Hant\System.Windows.Forms.Design.resources.dll' [12:39:05.680200] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\cs\System.Windows.Forms.resources.dll' [12:39:05.681210] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\cs\System.Windows.Forms.resources.dll' [12:39:05.681210] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\de\System.Windows.Forms.resources.dll' [12:39:05.682201] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\de\System.Windows.Forms.resources.dll' [12:39:05.682201] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\es\System.Windows.Forms.resources.dll' [12:39:05.683202] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\es\System.Windows.Forms.resources.dll' [12:39:05.683202] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\fr\System.Windows.Forms.resources.dll' [12:39:05.684203] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\fr\System.Windows.Forms.resources.dll' [12:39:05.684203] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\it\System.Windows.Forms.resources.dll' [12:39:05.685203] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\it\System.Windows.Forms.resources.dll' [12:39:05.685203] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ja\System.Windows.Forms.resources.dll' [12:39:05.686204] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ja\System.Windows.Forms.resources.dll' [12:39:05.686204] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ko\System.Windows.Forms.resources.dll' [12:39:05.687205] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ko\System.Windows.Forms.resources.dll' [12:39:05.687205] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pl\System.Windows.Forms.resources.dll' [12:39:05.688206] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pl\System.Windows.Forms.resources.dll' [12:39:05.688206] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pt-BR\System.Windows.Forms.resources.dll' [12:39:05.689207] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\pt-BR\System.Windows.Forms.resources.dll' [12:39:05.689207] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ru\System.Windows.Forms.resources.dll' [12:39:05.691208] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\ru\System.Windows.Forms.resources.dll' [12:39:05.691208] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\tr\System.Windows.Forms.resources.dll' [12:39:05.692209] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\tr\System.Windows.Forms.resources.dll' [12:39:05.692209] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hans\System.Windows.Forms.resources.dll' [12:39:05.693210] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hans\System.Windows.Forms.resources.dll' [12:39:05.693210] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hant\System.Windows.Forms.resources.dll' [12:39:05.694211] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms\Debug\net8.0\zh-Hant\System.Windows.Forms.resources.dll' [12:39:05.694211] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\cs\System.Windows.Forms.Primitives.resources.dll' [12:39:05.695212] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\cs\System.Windows.Forms.Primitives.resources.dll' [12:39:05.695212] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\de\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\de\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\es\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\es\System.Windows.Forms.Primitives.resources.dll' [12:39:05.696212] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\fr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.697213] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\fr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.697213] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\it\System.Windows.Forms.Primitives.resources.dll' [12:39:05.698214] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\it\System.Windows.Forms.Primitives.resources.dll' [12:39:05.698214] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ja\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ja\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ko\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ko\System.Windows.Forms.Primitives.resources.dll' [12:39:05.699214] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pl\System.Windows.Forms.Primitives.resources.dll' [12:39:05.700216] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pl\System.Windows.Forms.Primitives.resources.dll' [12:39:05.700216] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pt-BR\System.Windows.Forms.Primitives.resources.dll' [12:39:05.701217] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\pt-BR\System.Windows.Forms.Primitives.resources.dll' [12:39:05.701217] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ru\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\ru\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\tr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\tr\System.Windows.Forms.Primitives.resources.dll' [12:39:05.702217] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hans\System.Windows.Forms.Primitives.resources.dll' [12:39:05.703218] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hans\System.Windows.Forms.Primitives.resources.dll' [12:39:05.703218] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hant\System.Windows.Forms.Primitives.resources.dll' [12:39:05.704219] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Primitives\Debug\net8.0\zh-Hant\System.Windows.Forms.Primitives.resources.dll' [12:39:05.704219] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers.CSharp\Debug\netstandard2.0\System.Windows.Forms.Analyzers.CSharp.dll' [12:39:05.705220] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers.CSharp\Debug\netstandard2.0\System.Windows.Forms.Analyzers.CSharp.dll' [12:39:05.705220] info: [WinformsControlsTest]: Copying project reference: 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers\Debug\netstandard2.0\System.Windows.Forms.Analyzers.dll' [12:39:05.706221] info: [WinformsControlsTest]: Copied 'D:\Development\winforms\artifacts\bin\System.Windows.Forms.Analyzers\Debug\netstandard2.0\System.Windows.Forms.Analyzers.dll' [12:39:06.603148] info: [WinformsControlsTest]: Launching design tools server process... [12:39:07.179639] fail: [WinformsControlsTest]: Unhandled exception. System.TypeInitializationException: The type initializer for 'Microsoft.VisualStudio.WinForms.Server.WinFormsDesignTimeAssemblies' threw an exception. [12:39:07.179639] fail: [WinformsControlsTest]: ---> System.IO.FileNotFoundException: Could not load file or assembly 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. The system cannot find the file specified. [12:39:07.179639] fail: [WinformsControlsTest]: File name: 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' [12:39:07.180631] fail: [WinformsControlsTest]: at Microsoft.VisualStudio.WinForms.Server.WinFormsDesignTimeAssemblies..cctor() [12:39:07.180631] fail: [WinformsControlsTest]: --- End of inner exception stack trace --- [12:39:07.180631] fail: [WinformsControlsTest]: at Microsoft.VisualStudio.WinForms.Server.WinFormsDesignTimeAssemblies.get_All() [12:39:07.180631] fail: [WinformsControlsTest]: at DesignToolsServerX64.Program.Main(String[] args) [12:39:36.176720] trce: Suspend painting the design surface [12:39:36.202734] fail: Exception occurred while disposing VSDesignSurface System.InvalidOperationException: The service 'Microsoft.VisualStudio.Shell.Design.Serialization.DesignerDocDataService' must be installed for this feature to work. Ensure that this service is available. at System.ServiceExtensions.GetRequiredService[TService,TInterface](IServiceProvider provider) at Microsoft.DotNet.DesignTools.Client.CodeDom.VsDesignerInfo.<CreateAsync>d__22.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.DotNet.DesignTools.Client.CodeDom.CodeModel.MergedCodeDomProvider.<CreateAsync>d__23.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.DotNet.DesignTools.Client.CodeDom.CodeDomSource.<CreateAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread() at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.<get_CodeDomSource>g__Create|36_0() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.get_CodeDomSource() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.get_CodeDomManager() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.OnBeginUnload() at Microsoft.DotNet.DesignTools.Client.Loader.BasicDesignerLoader.Dispose() at Microsoft.DotNet.DesignTools.Client.Loader.VsDesignerLoader.Dispose() at System.ComponentModel.Design.DesignerHost.DisposeHost() at System.ComponentModel.Design.DesignSurface.Dispose(Boolean disposing) at Microsoft.VisualStudio.WinForms.VSDesignSurface.Dispose(Boolean disposing) For information on how to troubleshoot the designer refer to the guide at https://aka.ms/winforms/designer/troubleshooting. ``` ```
non_priority
designer not working in vs preview environment edition windows pro version installed on ‎ ‎mar ‎ os build experience windows feature experience pack net version net did this work in a previous version of visual studio and or previous net release i am unsure if the designer previously worked issue description the designer fails to open a form in any of the projects of winforms steps to reproduce installed latest vs preview and opened a form in winformscontrolstest diagnostics text info creating vsdesignerloader info creating design time ityperesolutionservice trce current vs version info start processing enqueued assemblies trce loaded microsoft winforms designtools protocol in trce processed microsoft winforms designtools protocol in info added microsoft winforms designtools protocol trce loaded microsoft winforms designtools client in trce processed microsoft winforms designtools client in info added microsoft winforms designtools client info visual studio culture en us info launching server info is processor architecture false info added mscorlib trce loaded system windows forms in trce processed system windows forms in info added system windows forms trce loaded system in trce processed system in info added system trce loaded system drawing in trce processed system drawing in info added system drawing trce loaded system design in trce processed system design in info added system design trce loaded system drawing design in trce processed system drawing design in info added system drawing design info shadow cache base directory c users elach desktop appdata local microsoft visualstudio winformsdesigner info preparing shadow cache folder info netcoreserverlayout platform anycpu normalized platformname info copying design tools server common files from c program files microsoft visual studio preview ide commonextensions microsoft windows forms designtoolsserver common info copying design tool server platform specific files from c program files microsoft visual studio preview ide commonextensions microsoft windows forms designtoolsserver info copying project output file d development winforms artifacts bin winformscontrolstest debug winformscontrolstest dll info copying d development winforms artifacts obj winformscontrolstest debug winformscontrolstest designer deps json to designtoolsserver deps json info copying d development winforms artifacts obj winformscontrolstest debug winformscontrolstest designer runtimeconfig json to designtoolsserver runtimeconfig json info copying project reference d development winforms artifacts bin accessibility debug accessibility dll info copied d development winforms artifacts bin accessibility debug accessibility dll info copying project reference d development winforms artifacts bin axhosts debug axinterop wmplib dll info copied d development winforms artifacts bin axhosts debug axinterop wmplib dll info copying project reference d development winforms artifacts bin axhosts debug interop wmplib dll info copied d development winforms artifacts bin axhosts debug interop wmplib dll info copying project reference d development winforms artifacts bin system design facade debug system design dll info copied d development winforms artifacts bin system design facade debug system design dll info copying project reference d development winforms artifacts bin system windows forms design debug system windows forms design dll info copied d development winforms artifacts bin system windows forms design debug system windows forms design dll info copying project reference d development winforms artifacts bin system windows forms debug system windows forms dll info copied d development winforms artifacts bin system windows forms debug system windows forms dll info copying project reference d development winforms artifacts bin system windows forms integrationtests common debug system windows forms integrationtests common dll info copied d development winforms artifacts bin system windows forms integrationtests common debug system windows forms integrationtests common dll info copying project reference d development winforms artifacts bin system windows forms primitives debug system windows forms primitives dll info copied d development winforms artifacts bin system windows forms primitives debug system windows forms primitives dll info copying project reference d development winforms artifacts bin system windows forms design debug cs system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug cs system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug de system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug de system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug es system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug es system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug fr system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug fr system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug it system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug it system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug ja system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug ja system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug ko system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug ko system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug pl system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug pl system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug pt br system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug pt br system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug ru system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug ru system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug tr system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug tr system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug zh hans system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug zh hans system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms design debug zh hant system windows forms design resources dll info copied d development winforms artifacts bin system windows forms design debug zh hant system windows forms design resources dll info copying project reference d development winforms artifacts bin system windows forms debug cs system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug cs system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug de system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug de system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug es system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug es system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug fr system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug fr system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug it system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug it system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug ja system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug ja system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug ko system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug ko system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug pl system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug pl system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug pt br system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug pt br system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug ru system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug ru system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug tr system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug tr system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug zh hans system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug zh hans system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms debug zh hant system windows forms resources dll info copied d development winforms artifacts bin system windows forms debug zh hant system windows forms resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug cs system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug cs system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug de system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug de system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug es system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug es system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug fr system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug fr system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug it system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug it system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug ja system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug ja system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug ko system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug ko system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug pl system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug pl system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug pt br system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug pt br system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug ru system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug ru system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug tr system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug tr system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug zh hans system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug zh hans system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms primitives debug zh hant system windows forms primitives resources dll info copied d development winforms artifacts bin system windows forms primitives debug zh hant system windows forms primitives resources dll info copying project reference d development winforms artifacts bin system windows forms analyzers csharp debug system windows forms analyzers csharp dll info copied d development winforms artifacts bin system windows forms analyzers csharp debug system windows forms analyzers csharp dll info copying project reference d development winforms artifacts bin system windows forms analyzers debug system windows forms analyzers dll info copied d development winforms artifacts bin system windows forms analyzers debug system windows forms analyzers dll info launching design tools server process fail unhandled exception system typeinitializationexception the type initializer for microsoft visualstudio winforms server winformsdesigntimeassemblies threw an exception fail system io filenotfoundexception could not load file or assembly system windows forms version culture neutral publickeytoken the system cannot find the file specified fail file name system windows forms version culture neutral publickeytoken fail at microsoft visualstudio winforms server winformsdesigntimeassemblies cctor fail end of inner exception stack trace fail at microsoft visualstudio winforms server winformsdesigntimeassemblies get all fail at program main string args trce suspend painting the design surface fail exception occurred while disposing vsdesignsurface system invalidoperationexception the service microsoft visualstudio shell design serialization designerdocdataservice must be installed for this feature to work ensure that this service is available at system serviceextensions getrequiredservice iserviceprovider provider at microsoft dotnet designtools client codedom vsdesignerinfo d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft dotnet designtools client codedom codemodel mergedcodedomprovider d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft dotnet designtools client codedom codedomsource d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft dotnet designtools client loader vsdesignerloader g create at microsoft dotnet designtools client loader vsdesignerloader get codedomsource at microsoft dotnet designtools client loader vsdesignerloader get codedommanager at microsoft dotnet designtools client loader vsdesignerloader onbeginunload at microsoft dotnet designtools client loader basicdesignerloader dispose at microsoft dotnet designtools client loader vsdesignerloader dispose at system componentmodel design designerhost disposehost at system componentmodel design designsurface dispose boolean disposing at microsoft visualstudio winforms vsdesignsurface dispose boolean disposing for information on how to troubleshoot the designer refer to the guide at
0
1,438
2,597,056,872
IssuesEvent
2015-02-21 02:11:41
flynn/flynn
https://api.github.com/repos/flynn/flynn
closed
Update custom component release documentation
documentation
The [Releasing Flynn documentation](https://flynn.io/docs/development#releasing-flynn) needs to be updated to reflect the new release process (#974).
1.0
Update custom component release documentation - The [Releasing Flynn documentation](https://flynn.io/docs/development#releasing-flynn) needs to be updated to reflect the new release process (#974).
non_priority
update custom component release documentation the needs to be updated to reflect the new release process
0
24,639
12,138,055,810
IssuesEvent
2020-04-23 16:38:01
cityofaustin/atd-data-tech
https://api.github.com/repos/cityofaustin/atd-data-tech
closed
[RPP Back Office] Refinements after RPP Usability Testing / Invoice - Payment Options
Product: RPP Back Office Service: Apps Type: Enhancement Workgroup: PE
## Invoice Page: - Is math right? Question is in the tax permits? Tax cost per permit, instead assumed it was the total tax. - Payment Options on invoice were small (as designed) ## Payment Options Page: - Payment Options Banner This button give the impression that you can pay online. Scrolled to the bottom read couldn’t pay online, then scrolled up to the top and thought could pay online because they saw that button. But was let down bc the information reiterated still couldn’t pay online. - [x] Remove banner? >Removed banner, but screen shot in case we need it. ### Payments in General “Please bring exact cash, check. Credit also accepted.” - [x] Check Payment info. Why is there an address? (Look into why address is needed?) - [x] Clarity that mailed payments are not accepted. For historical users to let them know. (Add a notice or note) - [x] User suggested including transit options. ### Hours of Operation - [x] Hours of Operation, listed weird. Don’t care what the hours of operation are for the business. Update the language “No permit applications will be accepted from 12-1 pm and after 3 pm”, change to 3:30 pm. “Payments Accepted” instead of “Hours of Operation” ### Phone Payments - [x] Under “Phone Payment” on Options. Would need to add “Payments Accepted” and hours of operation. - [x] ATD Staff will contact you”, but not “can contact you”. - [x] Phone instructions. “Staff will contact them for payment or have user to call phone call”.
1.0
[RPP Back Office] Refinements after RPP Usability Testing / Invoice - Payment Options - ## Invoice Page: - Is math right? Question is in the tax permits? Tax cost per permit, instead assumed it was the total tax. - Payment Options on invoice were small (as designed) ## Payment Options Page: - Payment Options Banner This button give the impression that you can pay online. Scrolled to the bottom read couldn’t pay online, then scrolled up to the top and thought could pay online because they saw that button. But was let down bc the information reiterated still couldn’t pay online. - [x] Remove banner? >Removed banner, but screen shot in case we need it. ### Payments in General “Please bring exact cash, check. Credit also accepted.” - [x] Check Payment info. Why is there an address? (Look into why address is needed?) - [x] Clarity that mailed payments are not accepted. For historical users to let them know. (Add a notice or note) - [x] User suggested including transit options. ### Hours of Operation - [x] Hours of Operation, listed weird. Don’t care what the hours of operation are for the business. Update the language “No permit applications will be accepted from 12-1 pm and after 3 pm”, change to 3:30 pm. “Payments Accepted” instead of “Hours of Operation” ### Phone Payments - [x] Under “Phone Payment” on Options. Would need to add “Payments Accepted” and hours of operation. - [x] ATD Staff will contact you”, but not “can contact you”. - [x] Phone instructions. “Staff will contact them for payment or have user to call phone call”.
non_priority
refinements after rpp usability testing invoice payment options invoice page is math right question is in the tax permits tax cost per permit instead assumed it was the total tax payment options on invoice were small as designed payment options page payment options banner this button give the impression that you can pay online scrolled to the bottom read couldn’t pay online then scrolled up to the top and thought could pay online because they saw that button but was let down bc the information reiterated still couldn’t pay online remove banner removed banner but screen shot in case we need it payments in general “please bring exact cash check credit also accepted ” check payment info why is there an address look into why address is needed clarity that mailed payments are not accepted for historical users to let them know add a notice or note user suggested including transit options hours of operation hours of operation listed weird don’t care what the hours of operation are for the business update the language “no permit applications will be accepted from pm and after pm” change to pm “payments accepted” instead of “hours of operation” phone payments under “phone payment” on options would need to add “payments accepted” and hours of operation atd staff will contact you” but not “can contact you” phone instructions “staff will contact them for payment or have user to call phone call”
0
267,378
20,201,426,043
IssuesEvent
2022-02-11 15:36:50
Jockerkat/rcPDF
https://api.github.com/repos/Jockerkat/rcPDF
opened
Add document containing frequently used code
documentation enhancement
Meaning it contains code block on how to add text, a page, an image, etc.
1.0
Add document containing frequently used code - Meaning it contains code block on how to add text, a page, an image, etc.
non_priority
add document containing frequently used code meaning it contains code block on how to add text a page an image etc
0
168,590
13,096,818,255
IssuesEvent
2020-08-03 16:19:20
warfare-plugins/social-warfare
https://api.github.com/repos/warfare-plugins/social-warfare
closed
Add dashboard notification after installing/updating Core to notify about FB Authentication
COMPLETE: Needs Tested NEW: Feature Request
Notify users after updating or installing CORE to authenticate/RE-authenticate with FB
1.0
Add dashboard notification after installing/updating Core to notify about FB Authentication - Notify users after updating or installing CORE to authenticate/RE-authenticate with FB
non_priority
add dashboard notification after installing updating core to notify about fb authentication notify users after updating or installing core to authenticate re authenticate with fb
0
210,199
16,090,372,015
IssuesEvent
2021-04-26 15:58:25
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
Update the Liquid Template Testing Framework with information about how to use the DOM Testing Library
VSP-testing-team
## Issue Description Update the Liquid Template Testing Framework with information about how to use the [DOM Testing Library](https://testing-library.com/). This ticket is derived from [ticket #21651](https://app.zenhub.com/workspaces/vsp-5cedc9cce6e3335dc5a49fc4/issues/department-of-veterans-affairs/va.gov-team/21651) --- ## Tasks - [ ] Update the Liquid Template Testing Framework documentation ## Acceptance Criteria - [ ] The Liquid Template Testing Framework documentation is updated
1.0
Update the Liquid Template Testing Framework with information about how to use the DOM Testing Library - ## Issue Description Update the Liquid Template Testing Framework with information about how to use the [DOM Testing Library](https://testing-library.com/). This ticket is derived from [ticket #21651](https://app.zenhub.com/workspaces/vsp-5cedc9cce6e3335dc5a49fc4/issues/department-of-veterans-affairs/va.gov-team/21651) --- ## Tasks - [ ] Update the Liquid Template Testing Framework documentation ## Acceptance Criteria - [ ] The Liquid Template Testing Framework documentation is updated
non_priority
update the liquid template testing framework with information about how to use the dom testing library issue description update the liquid template testing framework with information about how to use the this ticket is derived from tasks update the liquid template testing framework documentation acceptance criteria the liquid template testing framework documentation is updated
0
196,932
14,896,540,777
IssuesEvent
2021-01-21 10:31:55
dzhw/studienberechtigte_2018.3b
https://api.github.com/repos/dzhw/studienberechtigte_2018.3b
closed
Studium: stu_07 Polung konsistent?
new commit testing
iwie finde ich die erste ao nicht konsistent?! Wie siehst du das? Wie im Konstruktpapier lassen? ![grafik](https://user-images.githubusercontent.com/73596957/105155659-28ab1280-5b0b-11eb-9cf8-055c5a4e07ab.png) **aus Konstruktpapier** ![grafik](https://user-images.githubusercontent.com/73596957/105155728-3a8cb580-5b0b-11eb-9caa-dc68acb6e5a5.png)
1.0
Studium: stu_07 Polung konsistent? - iwie finde ich die erste ao nicht konsistent?! Wie siehst du das? Wie im Konstruktpapier lassen? ![grafik](https://user-images.githubusercontent.com/73596957/105155659-28ab1280-5b0b-11eb-9cf8-055c5a4e07ab.png) **aus Konstruktpapier** ![grafik](https://user-images.githubusercontent.com/73596957/105155728-3a8cb580-5b0b-11eb-9caa-dc68acb6e5a5.png)
non_priority
studium stu polung konsistent iwie finde ich die erste ao nicht konsistent wie siehst du das wie im konstruktpapier lassen aus konstruktpapier
0
65,924
8,855,308,902
IssuesEvent
2019-01-09 05:52:25
RyanFletcher86/VehikleGarageChallenge
https://api.github.com/repos/RyanFletcher86/VehikleGarageChallenge
closed
Write Docker Installation and Running instructions for Vehikle Staff
documentation
Update the ReadMe with detailed step by step instructions on how to run the demo
1.0
Write Docker Installation and Running instructions for Vehikle Staff - Update the ReadMe with detailed step by step instructions on how to run the demo
non_priority
write docker installation and running instructions for vehikle staff update the readme with detailed step by step instructions on how to run the demo
0
288,007
24,880,893,195
IssuesEvent
2022-10-28 00:54:12
microsoft/AzureStorageExplorer
https://api.github.com/repos/microsoft/AzureStorageExplorer
closed
There is an incorrect warning icon next to the input box when typing an invalid name to create one service
🧪 testing :beetle: regression 🌳 new-tree
**Storage Explorer Version**: 1.26.0-dev **Build Number**: 20221006.3 **Branch**: feature branch **Platform/OS**: Windows 10/Linux Ubuntu 22.04/MacOS Monterey 12.6 (Apple M1 Pro) **Architecture**: ia32/x64 **How Found**: AD-hoc testing **Regression From**: Previous release (1.26.0) ## Steps to Reproduce ## 1. Expand one storage account. 2. Right click the Blob Containers node -> Click 'Create Blob Container'. 3. Type a whitespace to the input box. 4. Check whether there is a correct warning icon. ## Expected Experience ## There is a correct warning icon. ![image](https://user-images.githubusercontent.com/41351993/194979051-b110ab5b-7d3f-4ef7-87ff-97a470a2c431.png) ## Actual Experience ## There is an incorrect warning icon. ![image](https://user-images.githubusercontent.com/41351993/194978944-a453dd42-a10c-4a22-a76e-6d3aa5a9156c.png)
1.0
There is an incorrect warning icon next to the input box when typing an invalid name to create one service - **Storage Explorer Version**: 1.26.0-dev **Build Number**: 20221006.3 **Branch**: feature branch **Platform/OS**: Windows 10/Linux Ubuntu 22.04/MacOS Monterey 12.6 (Apple M1 Pro) **Architecture**: ia32/x64 **How Found**: AD-hoc testing **Regression From**: Previous release (1.26.0) ## Steps to Reproduce ## 1. Expand one storage account. 2. Right click the Blob Containers node -> Click 'Create Blob Container'. 3. Type a whitespace to the input box. 4. Check whether there is a correct warning icon. ## Expected Experience ## There is a correct warning icon. ![image](https://user-images.githubusercontent.com/41351993/194979051-b110ab5b-7d3f-4ef7-87ff-97a470a2c431.png) ## Actual Experience ## There is an incorrect warning icon. ![image](https://user-images.githubusercontent.com/41351993/194978944-a453dd42-a10c-4a22-a76e-6d3aa5a9156c.png)
non_priority
there is an incorrect warning icon next to the input box when typing an invalid name to create one service storage explorer version dev build number branch feature branch platform os windows linux ubuntu macos monterey apple pro architecture how found ad hoc testing regression from previous release steps to reproduce expand one storage account right click the blob containers node click create blob container type a whitespace to the input box check whether there is a correct warning icon expected experience there is a correct warning icon actual experience there is an incorrect warning icon
0
332,437
24,343,050,700
IssuesEvent
2022-10-02 00:08:23
Rick-mad-lab/Todolist
https://api.github.com/repos/Rick-mad-lab/Todolist
closed
Add github repo stats in README.md
documentation good first issue hacktoberfest
We can add a github repo stats in README.md to make it more informative. Something like this: ![192417213-d554e0f4-faa5-4841-88ec-9f8e31d26bac](https://user-images.githubusercontent.com/59364507/193428719-7bef2137-ae0a-4af6-a832-5e8a7c6e4e52.png) I can work on it under hactoberfest 2022.
1.0
Add github repo stats in README.md - We can add a github repo stats in README.md to make it more informative. Something like this: ![192417213-d554e0f4-faa5-4841-88ec-9f8e31d26bac](https://user-images.githubusercontent.com/59364507/193428719-7bef2137-ae0a-4af6-a832-5e8a7c6e4e52.png) I can work on it under hactoberfest 2022.
non_priority
add github repo stats in readme md we can add a github repo stats in readme md to make it more informative something like this i can work on it under hactoberfest
0
18,011
12,732,726,810
IssuesEvent
2020-06-25 10:56:26
enarx/enarx
https://api.github.com/repos/enarx/enarx
opened
Description of the the issue
enhancement good first issue infrastructure
**Description** In CI also build with `--release` to catch something like https://github.com/enarx/enarx/pull/634
1.0
Description of the the issue - **Description** In CI also build with `--release` to catch something like https://github.com/enarx/enarx/pull/634
non_priority
description of the the issue description in ci also build with release to catch something like
0
375,189
26,151,034,479
IssuesEvent
2022-12-30 13:39:05
UniCourse-TW/UniCourse
https://api.github.com/repos/UniCourse-TW/UniCourse
closed
MVP checklist (ends 11/20)
documentation help wanted
- [x] 課程搜尋 - [x] FTS - [x] 匯入課程 - [x] 師大單學期 - [x] 師大多學期 - [ ] ~~師大所有學期~~ - [x] 帳號系統 - [x] 註冊 - [x] 登入 - [x] 驗證信 - [x] 重設密碼 - [x] 接前端 - [x] Client Library - [x] 前端內容 - [x] 課程 - [x] 搜尋 - [x] 個人 - [ ] ~~論壇~~ - [x] 個人帳號頁面 修改 - [x] 伺服器 - [x] CNTUG 機器申請 - [x] 從 Gandi 遷移至 Cloudflare - [ ] ~~網頁存取權限~~ - [ ] ~~動態更新 DNS~~ - [x] email - [ ] ~~吃 pizza~~
1.0
MVP checklist (ends 11/20) - - [x] 課程搜尋 - [x] FTS - [x] 匯入課程 - [x] 師大單學期 - [x] 師大多學期 - [ ] ~~師大所有學期~~ - [x] 帳號系統 - [x] 註冊 - [x] 登入 - [x] 驗證信 - [x] 重設密碼 - [x] 接前端 - [x] Client Library - [x] 前端內容 - [x] 課程 - [x] 搜尋 - [x] 個人 - [ ] ~~論壇~~ - [x] 個人帳號頁面 修改 - [x] 伺服器 - [x] CNTUG 機器申請 - [x] 從 Gandi 遷移至 Cloudflare - [ ] ~~網頁存取權限~~ - [ ] ~~動態更新 DNS~~ - [x] email - [ ] ~~吃 pizza~~
non_priority
mvp checklist ends 課程搜尋 fts 匯入課程 師大單學期 師大多學期 師大所有學期 帳號系統 註冊 登入 驗證信 重設密碼 接前端 client library 前端內容 課程 搜尋 個人 論壇 個人帳號頁面 修改 伺服器 cntug 機器申請 從 gandi 遷移至 cloudflare 網頁存取權限 動態更新 dns email 吃 pizza
0
358,206
25,182,496,073
IssuesEvent
2022-11-11 14:53:53
moustf/GeekSchool
https://api.github.com/repos/moustf/GeekSchool
opened
Fix Bugs.
documentation to-do
- Add the logout button to the landing page if the user is logged in. - Make the login and signup take the id from the student, teacher, or parent, and make the duo changes. - Solve the bug that forces you to reload the page when you logged in. - In the teacher's profile, fix the teacher's schedual, the teacher's students card, and the teacher's classes card. - Edit the hashed password for the first student user. - In the student's profile, edit the styles for the page. - Edit the default value for the health box to be 'لا يوجد'. - Edit the parent's students card and the parent's children card. - Fix all of the class page's bugs.
1.0
Fix Bugs. - - Add the logout button to the landing page if the user is logged in. - Make the login and signup take the id from the student, teacher, or parent, and make the duo changes. - Solve the bug that forces you to reload the page when you logged in. - In the teacher's profile, fix the teacher's schedual, the teacher's students card, and the teacher's classes card. - Edit the hashed password for the first student user. - In the student's profile, edit the styles for the page. - Edit the default value for the health box to be 'لا يوجد'. - Edit the parent's students card and the parent's children card. - Fix all of the class page's bugs.
non_priority
fix bugs add the logout button to the landing page if the user is logged in make the login and signup take the id from the student teacher or parent and make the duo changes solve the bug that forces you to reload the page when you logged in in the teacher s profile fix the teacher s schedual the teacher s students card and the teacher s classes card edit the hashed password for the first student user in the student s profile edit the styles for the page edit the default value for the health box to be لا يوجد edit the parent s students card and the parent s children card fix all of the class page s bugs
0
60,484
14,859,085,275
IssuesEvent
2021-01-18 17:50:42
microsoft/fluentui
https://api.github.com/repos/microsoft/fluentui
closed
create-package enhancements
Area: Build System Needs: Backlog review Type: Feature
There are some enhancements which would make the `create-package` script a lot more useful: - [ ] multiple project targets with slightly different config: browser (UI stuff) or node (build utilities) - [ ] ask which parts of the template you need (and only creates the necessary config files and npm scripts, so you don't have to manually delete unneeded stuff): jest, webpack bundle, webpack serve, storybook, API extractor, etc - [ ] migrate to [`plop`](https://www.npmjs.com/package/plop)--among other advantages, this would let us view the entire project with the proper structure and syntax highlighting (these were moved over from the "create-package is broken" issue #12365)
1.0
create-package enhancements - There are some enhancements which would make the `create-package` script a lot more useful: - [ ] multiple project targets with slightly different config: browser (UI stuff) or node (build utilities) - [ ] ask which parts of the template you need (and only creates the necessary config files and npm scripts, so you don't have to manually delete unneeded stuff): jest, webpack bundle, webpack serve, storybook, API extractor, etc - [ ] migrate to [`plop`](https://www.npmjs.com/package/plop)--among other advantages, this would let us view the entire project with the proper structure and syntax highlighting (these were moved over from the "create-package is broken" issue #12365)
non_priority
create package enhancements there are some enhancements which would make the create package script a lot more useful multiple project targets with slightly different config browser ui stuff or node build utilities ask which parts of the template you need and only creates the necessary config files and npm scripts so you don t have to manually delete unneeded stuff jest webpack bundle webpack serve storybook api extractor etc migrate to other advantages this would let us view the entire project with the proper structure and syntax highlighting these were moved over from the create package is broken issue
0
384,020
26,573,014,385
IssuesEvent
2023-01-21 12:29:21
ecolla-snacks-store/ecolla-snacks-store-web
https://api.github.com/repos/ecolla-snacks-store/ecolla-snacks-store-web
opened
Update documentation for setting up the project
documentation
Database creation will perform automatically through the migration command now. Wampserver 3.3.0 version is released.
1.0
Update documentation for setting up the project - Database creation will perform automatically through the migration command now. Wampserver 3.3.0 version is released.
non_priority
update documentation for setting up the project database creation will perform automatically through the migration command now wampserver version is released
0
240,864
20,086,791,134
IssuesEvent
2022-02-05 04:25:55
RamiAjam/COEN-448-Project
https://api.github.com/repos/RamiAjam/COEN-448-Project
closed
Test: If the user tries to move the robot out of grid bound, then a warning error is generated
Test
#1
1.0
Test: If the user tries to move the robot out of grid bound, then a warning error is generated - #1
non_priority
test if the user tries to move the robot out of grid bound then a warning error is generated
0
89,191
15,827,567,821
IssuesEvent
2021-04-06 08:51:14
matrixknight/Umbraco-CMS
https://api.github.com/repos/matrixknight/Umbraco-CMS
opened
WS-2013-0004 (Medium) detected in connect-2.7.11.tgz
security vulnerability
## WS-2013-0004 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>connect-2.7.11.tgz</b></p></summary> <p>High performance middleware framework</p> <p>Library home page: <a href="https://registry.npmjs.org/connect/-/connect-2.7.11.tgz">https://registry.npmjs.org/connect/-/connect-2.7.11.tgz</a></p> <p>Path to dependency file: Umbraco-CMS/src/Umbraco.Web.UI.Client/package.json</p> <p>Path to vulnerable library: Umbraco-CMS/src/Umbraco.Web.UI.Client/node_modules/connect/package.json</p> <p> Dependency Hierarchy: - grunt-contrib-connect-0.3.0.tgz (Root Library) - :x: **connect-2.7.11.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/matrixknight/Umbraco-CMS/commit/cbde891e04f16eb272f30328b88a2ef0c7c720b8">cbde891e04f16eb272f30328b88a2ef0c7c720b8</a></p> <p>Found in base branch: <b>7.0.1</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> The "methodOverride" let the http post to override the method of the request with the value of the post key or with the header, which allows XSS attack. <p>Publish Date: 2013-06-27 <p>URL: <a href=https://github.com/senchalabs/connect/commit/126187c4e12162e231b87350740045e5bb06e93a>WS-2013-0004</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nodesecurity.io/advisories/methodOverride_Middleware_Reflected_Cross-Site_Scripting">https://nodesecurity.io/advisories/methodOverride_Middleware_Reflected_Cross-Site_Scripting</a></p> <p>Release Date: 2013-07-01</p> <p>Fix Resolution: Update to the newest version of Connect or disable methodOverride. It is not possible to avoid the vulnerability if you have enabled this middleware in the top of your stack.</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
WS-2013-0004 (Medium) detected in connect-2.7.11.tgz - ## WS-2013-0004 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>connect-2.7.11.tgz</b></p></summary> <p>High performance middleware framework</p> <p>Library home page: <a href="https://registry.npmjs.org/connect/-/connect-2.7.11.tgz">https://registry.npmjs.org/connect/-/connect-2.7.11.tgz</a></p> <p>Path to dependency file: Umbraco-CMS/src/Umbraco.Web.UI.Client/package.json</p> <p>Path to vulnerable library: Umbraco-CMS/src/Umbraco.Web.UI.Client/node_modules/connect/package.json</p> <p> Dependency Hierarchy: - grunt-contrib-connect-0.3.0.tgz (Root Library) - :x: **connect-2.7.11.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/matrixknight/Umbraco-CMS/commit/cbde891e04f16eb272f30328b88a2ef0c7c720b8">cbde891e04f16eb272f30328b88a2ef0c7c720b8</a></p> <p>Found in base branch: <b>7.0.1</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> The "methodOverride" let the http post to override the method of the request with the value of the post key or with the header, which allows XSS attack. <p>Publish Date: 2013-06-27 <p>URL: <a href=https://github.com/senchalabs/connect/commit/126187c4e12162e231b87350740045e5bb06e93a>WS-2013-0004</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nodesecurity.io/advisories/methodOverride_Middleware_Reflected_Cross-Site_Scripting">https://nodesecurity.io/advisories/methodOverride_Middleware_Reflected_Cross-Site_Scripting</a></p> <p>Release Date: 2013-07-01</p> <p>Fix Resolution: Update to the newest version of Connect or disable methodOverride. It is not possible to avoid the vulnerability if you have enabled this middleware in the top of your stack.</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
ws medium detected in connect tgz ws medium severity vulnerability vulnerable library connect tgz high performance middleware framework library home page a href path to dependency file umbraco cms src umbraco web ui client package json path to vulnerable library umbraco cms src umbraco web ui client node modules connect package json dependency hierarchy grunt contrib connect tgz root library x connect tgz vulnerable library found in head commit a href found in base branch vulnerability details the methodoverride let the http post to override the method of the request with the value of the post key or with the header which allows xss attack publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution update to the newest version of connect or disable methodoverride it is not possible to avoid the vulnerability if you have enabled this middleware in the top of your stack step up your open source security game with whitesource
0
91,863
10,730,326,955
IssuesEvent
2019-10-28 17:12:19
IBM/FHIR
https://api.github.com/repos/IBM/FHIR
closed
Create FHIR Model Guide
documentation
Create FHIR Model Guide with examples for parsing, generating, building and validating FHIR model objects.
1.0
Create FHIR Model Guide - Create FHIR Model Guide with examples for parsing, generating, building and validating FHIR model objects.
non_priority
create fhir model guide create fhir model guide with examples for parsing generating building and validating fhir model objects
0
169,988
20,841,998,133
IssuesEvent
2022-03-21 02:03:15
jinuem/React-Service-Change-POC
https://api.github.com/repos/jinuem/React-Service-Change-POC
opened
CVE-2022-24771 (High) detected in node-forge-0.7.5.tgz
security vulnerability
## CVE-2022-24771 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-forge-0.7.5.tgz</b></p></summary> <p>JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz">https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz</a></p> <p>Path to dependency file: /React-Service-Change-POC/package.json</p> <p>Path to vulnerable library: /node_modules/node-forge/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.3.tgz (Root Library) - webpack-dev-server-3.1.14.tgz - selfsigned-1.10.4.tgz - :x: **node-forge-0.7.5.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.3.0, RSA PKCS#1 v1.5 signature verification code is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used. The issue has been addressed in `node-forge` version 1.3.0. There are currently no known workarounds. <p>Publish Date: 2022-03-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-24771>CVE-2022-24771</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771</a></p> <p>Release Date: 2022-03-18</p> <p>Fix Resolution: node-forge - 1.3.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-24771 (High) detected in node-forge-0.7.5.tgz - ## CVE-2022-24771 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-forge-0.7.5.tgz</b></p></summary> <p>JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz">https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz</a></p> <p>Path to dependency file: /React-Service-Change-POC/package.json</p> <p>Path to vulnerable library: /node_modules/node-forge/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.3.tgz (Root Library) - webpack-dev-server-3.1.14.tgz - selfsigned-1.10.4.tgz - :x: **node-forge-0.7.5.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.3.0, RSA PKCS#1 v1.5 signature verification code is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used. The issue has been addressed in `node-forge` version 1.3.0. There are currently no known workarounds. <p>Publish Date: 2022-03-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-24771>CVE-2022-24771</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771</a></p> <p>Release Date: 2022-03-18</p> <p>Fix Resolution: node-forge - 1.3.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve high detected in node forge tgz cve high severity vulnerability vulnerable library node forge tgz javascript implementations of network transports cryptography ciphers pki message digests and various utilities library home page a href path to dependency file react service change poc package json path to vulnerable library node modules node forge package json dependency hierarchy react scripts tgz root library webpack dev server tgz selfsigned tgz x node forge tgz vulnerable library vulnerability details forge also called node forge is a native implementation of transport layer security in javascript prior to version rsa pkcs signature verification code is lenient in checking the digest algorithm structure this can allow a crafted structure that steals padding bytes and uses unchecked portion of the pkcs encoded message to forge a signature when a low public exponent is being used the issue has been addressed in node forge version there are currently no known workarounds publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution node forge step up your open source security game with whitesource
0
167,577
26,517,422,231
IssuesEvent
2023-01-18 22:06:10
OpenApoc/OpenApoc
https://api.github.com/repos/OpenApoc/OpenApoc
closed
Inconsistent versioning
Verified / Replicated Better Design Required
Could openapoc please use consistent versioning? For instance, https://github.com/OpenApoc/OpenApoc/tags shows 6 different versioning schemes, and on top of that the latest one is not monotonic and differs from the release name 20220608. I'm working on FreeBSD port of openapoc, and inconsistent versioning messes things up for me. Since project goals mention [version 1.0](https://github.com/OpenApoc/OpenApoc/issues/265), I recommend to use versions compared lesser than 1.0 for now - that is, `0.something`.
1.0
Inconsistent versioning - Could openapoc please use consistent versioning? For instance, https://github.com/OpenApoc/OpenApoc/tags shows 6 different versioning schemes, and on top of that the latest one is not monotonic and differs from the release name 20220608. I'm working on FreeBSD port of openapoc, and inconsistent versioning messes things up for me. Since project goals mention [version 1.0](https://github.com/OpenApoc/OpenApoc/issues/265), I recommend to use versions compared lesser than 1.0 for now - that is, `0.something`.
non_priority
inconsistent versioning could openapoc please use consistent versioning for instance shows different versioning schemes and on top of that the latest one is not monotonic and differs from the release name i m working on freebsd port of openapoc and inconsistent versioning messes things up for me since project goals mention i recommend to use versions compared lesser than for now that is something
0
28,113
4,365,168,776
IssuesEvent
2016-08-03 09:48:11
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
circleci: failed tests: TestReplicateRemovedNodeDisruptiveElection
Robot test-failure
The following test appears to have failed: [#20776](https://circleci.com/gh/cockroachdb/cockroach/20776): ``` I160801 15:37:07.696470 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 100.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.548642 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 0.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.597363 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 0.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.630560 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 0.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.697663 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 100.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) panic: test timed out after 5m0s goroutine 85052 [running]: panic(0x1bdfd60, 0xc8274fd5f0) /usr/local/go/src/runtime/panic.go:481 +0x3ff testing.startAlarm.func1() /usr/local/go/src/testing/testing.go:725 +0x184 created by time.goFunc /usr/local/go/src/time/sleep.go:129 +0x6e goroutine 1 [chan receive, 2 minutes]: testing.RunTests(0x2601ea0, 0x2eb3d40, 0x128, 0x128, 0xc820241001) /usr/local/go/src/testing/testing.go:583 +0xb39 testing.(*M).Run(0xc820095f00, 0xc82028dc90) /usr/local/go/src/testing/testing.go:515 +0x11e github.com/cockroachdb/cockroach/storage_test.TestMain(0xc820095f00) /go/src/github.com/cockroachdb/cockroach/storage/main_test.go:57 +0x2d5 main.main() github.com/cockroachdb/cockroach/storage/_test/_testmain.go:654 +0x20b goroutine 17 [syscall, 4 minutes, locked to thread]: runtime.goexit() /usr/local/go/src/runtime/asm_amd64.s:1998 +0x1 goroutine 5 [chan receive]: github.com/cockroachdb/cockroach/util/log.(*loggingT).flushDaemon(0x31d0f00) /go/src/github.com/cockroachdb/cockroach/util/log/clog.go:1015 +0x76 created by github.com/cockroachdb/cockroach/util/log.init.1 /go/src/github.com/cockroachdb/cockroach/util/log/clog.go:598 +0xc5 goroutine 75413 [select]: github.com/cockroachdb/cockroach/storage.(*bookie).start.func1() /go/src/github.com/cockroachdb/cockroach/storage/reservation.go:266 +0x2b2 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc826dc32a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75496 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc8255393e0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75583 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*replicaScanner).waitAndProcess(0xc82715d500, 0xecf316326, 0x23e67d08, 0x31cfdc0, 0xc827666380, 0xc8271094d0, 0x0, 0xc8247bf2c0) /go/src/github.com/cockroachdb/cockroach/storage/scanner.go:166 +0x83c github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/scanner.go:219 +0x3c3 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd9c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75545 [select]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8274d8a40, 0xc8209f54f0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc82487a690, 0xc8209f54f0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc82487a690, 0xc8209f54f0, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc82487a690, 0xc8209f54f0, 0x5, 0x5, 0x2602a40, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc8209f54e0, 0x7fffffff, 0xc820213c6c, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82723b890) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75740 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*RaftTransport).RaftMessage(0xc82477c080, 0x7ff920e7b108, 0xc826393320, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft_transport.go:156 +0x317 github.com/cockroachdb/cockroach/storage._MultiRaft_RaftMessage_Handler(0x1f64a00, 0xc82477c080, 0x7ff92ec67cd8, 0xc8271ecd80, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft.pb.go:158 +0xff google.golang.org/grpc.(*Server).processStreamingRPC(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc82cb233b0, 0xc826e2d770, 0x2ea6680, 0xc827436030, 0x0, 0x0) /go/src/google.golang.org/grpc/server.go:686 +0x728 google.golang.org/grpc.(*Server).handleStream(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc82cb233b0, 0xc827436030) /go/src/google.golang.org/grpc/server.go:770 +0x1511 google.golang.org/grpc.(*Server).serveStreams.func1.1(0xc8274d3b30, 0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc82cb233b0) /go/src/google.golang.org/grpc/server.go:419 +0xae created by google.golang.org/grpc.(*Server).serveStreams.func1 /go/src/google.golang.org/grpc/server.go:420 +0xa8 goroutine 75498 [select]: github.com/cockroachdb/cockroach/gossip.(*client).gossip(0xc82477fba0, 0x7ff92f23a448, 0xc82713ed80, 0xc827216840, 0x7ff92ec67ab0, 0xc8200240c0, 0xc826c6cb40, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/gossip/client.go:278 +0x7b5 github.com/cockroachdb/cockroach/gossip.(*client).start.func1() /go/src/github.com/cockroachdb/cockroach/gossip/client.go:93 +0x376 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82713ec00) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75509 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8209f40a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75760 [select, 2 minutes]: google.golang.org/grpc.NewClientStream.func1(0x7ff92ec62c20, 0xc825e14900, 0xc8275b7b30, 0xc826420b40) /go/src/google.golang.org/grpc/stream.go:187 +0x693 created by google.golang.org/grpc.NewClientStream /go/src/google.golang.org/grpc/stream.go:207 +0x184c goroutine 75852 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*RaftTransport).RaftMessage(0xc82477c080, 0x7ff920e7b108, 0xc826e18ed0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft_transport.go:156 +0x317 github.com/cockroachdb/cockroach/storage._MultiRaft_RaftMessage_Handler(0x1f64a00, 0xc82477c080, 0x7ff92ec67cd8, 0xc826c6cf30, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft.pb.go:158 +0xff google.golang.org/grpc.(*Server).processStreamingRPC(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc8247b3e00, 0xc826e2d770, 0x2ea6680, 0xc8247c72f0, 0x0, 0x0) /go/src/google.golang.org/grpc/server.go:686 +0x728 google.golang.org/grpc.(*Server).handleStream(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc8247b3e00, 0xc8247c72f0) /go/src/google.golang.org/grpc/server.go:770 +0x1511 google.golang.org/grpc.(*Server).serveStreams.func1.1(0xc8274d3b30, 0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc8247b3e00) /go/src/google.golang.org/grpc/server.go:419 +0xae created by google.golang.org/grpc.(*Server).serveStreams.func1 /go/src/google.golang.org/grpc/server.go:420 +0xa8 goroutine 75845 [select, 2 minutes]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8202af340, 0xc824787bd0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8247b3a40, 0xc824787bd0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8247b3a40, 0xc824787bd0, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8247b3a40, 0xc824787bd0, 0x5, 0x5, 0x5, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc824787bc0, 0x7fffffff, 0xc8263e6420, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc824787be0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75851 [select, 2 minutes]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8202afac0, 0xc824786730, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8247b3d10, 0xc824786730, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8247b3d10, 0xc824786730, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8247b3d10, 0xc824786730, 0x5, 0x5, 0x4, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc824786720, 0x7fffffff, 0xc820a1b080, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc824786740) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75426 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc82470cd40) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75575 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd760) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75607 [IO wait]: net.runtime_pollWait(0x7ff92f23d870, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc82769e290, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc82769e290, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).Read(0xc82769e230, 0xc824922000, 0x8000, 0x8000, 0x0, 0x7ff946807050, 0xc82000e058) /usr/local/go/src/net/fd_unix.go:250 +0x27b net.(*conn).Read(0xc820024488, 0xc824922000, 0x8000, 0x8000, 0xc825e0c55c, 0x0, 0x0) /usr/local/go/src/net/net.go:172 +0x121 -- google.golang.org/grpc/transport.(*http2Client).reader(0xc825e15f00) /go/src/google.golang.org/grpc/transport/http2_client.go:887 +0x19e created by google.golang.org/grpc/transport.newHTTP2Client /go/src/google.golang.org/grpc/transport/http2_client.go:176 +0xfe9 goroutine 75484 [select]: github.com/cockroachdb/cockroach/gossip.(*Gossip).manage.func1() /go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:891 +0x3f9 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc825db1a50) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75532 [select, 2 minutes]: github.com/cockroachdb/cockroach/gossip.(*Gossip).bootstrap.func1() /go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:864 +0x322 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82096b6b0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75463 [select, 1 minutes]: google.golang.org/grpc/transport.(*http2Client).controller(0xc827144200) /go/src/google.golang.org/grpc/transport/http2_client.go:965 +0x8ef created by google.golang.org/grpc/transport.newHTTP2Client /go/src/google.golang.org/grpc/transport/http2_client.go:206 +0x19ce goroutine 75461 [select, 2 minutes]: google.golang.org/grpc/transport.(*http2Server).controller(0xc820399290) /go/src/google.golang.org/grpc/transport/http2_server.go:673 +0xa79 created by google.golang.org/grpc/transport.newHTTP2Server /go/src/google.golang.org/grpc/transport/http2_server.go:139 +0xb6d goroutine 75466 [select]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8247caa80, 0xc82553a670, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8271060f0, 0xc82553a670, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8271060f0, 0xc82553a670, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8271060f0, 0xc82553a670, 0x5, 0x5, 0x2602a40, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc82553a660, 0x7fffffff, 0xc8208d7c6c, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc825df0570) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75450 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*Store).Start.func4() /go/src/github.com/cockroachdb/cockroach/storage/store.go:1194 +0x181 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc82553a2c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75416 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*Store).Start.func4() /go/src/github.com/cockroachdb/cockroach/storage/store.go:1194 +0x181 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc826dc3940) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75510 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8209f40c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75404 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/rpc.NewContext.func1() /go/src/github.com/cockroachdb/cockroach/rpc/context.go:105 +0x68 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc824714a20) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75447 [select]: github.com/cockroachdb/cockroach/storage.(*bookie).start.func1() /go/src/github.com/cockroachdb/cockroach/storage/reservation.go:266 +0x2b2 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc82553a220) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75529 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc8208fd2c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75608 [select, 1 minutes]: google.golang.org/grpc/transport.(*http2Client).controller(0xc825e15f00) /go/src/google.golang.org/grpc/transport/http2_client.go:965 +0x8ef created by google.golang.org/grpc/transport.newHTTP2Client /go/src/google.golang.org/grpc/transport/http2_client.go:206 +0x19ce goroutine 75460 [IO wait]: net.runtime_pollWait(0x7ff92f23e0b0, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc820120300, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc820120300, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).Read(0xc8201202a0, 0xc82039e000, 0x8000, 0x8000, 0x0, 0x7ff946807050, 0xc82000e058) /usr/local/go/src/net/fd_unix.go:250 +0x27b net.(*conn).Read(0xc8200da440, 0xc82039e000, 0x8000, 0x8000, 0xa19d89, 0x0, 0x0) /usr/local/go/src/net/net.go:172 +0x121 -- google.golang.org/grpc.(*Server).handleRawConn(0xc8264355e0, 0x7ff92f23e4f8, 0xc8200da440) /go/src/google.golang.org/grpc/server.go:385 +0x5b2 created by google.golang.org/grpc.(*Server).Serve /go/src/google.golang.org/grpc/server.go:357 +0x3fb goroutine 75427 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc82470cd80) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75667 [select, 2 minutes]: google.golang.org/grpc.(*addrConn).transportMonitor(0xc8262f1d40) /go/src/google.golang.org/grpc/clientconn.go:646 +0x951 google.golang.org/grpc.(*ClientConn).resetAddrConn.func1(0xc8262f1d40) /go/src/google.golang.org/grpc/clientconn.go:441 +0x2f9 created by google.golang.org/grpc.(*ClientConn).resetAddrConn /go/src/google.golang.org/grpc/clientconn.go:442 +0x92e goroutine 75486 [select]: github.com/cockroachdb/cockroach/storage.(*Store).processRaft.func1() /go/src/github.com/cockroachdb/cockroach/storage/store.go:2578 +0x109d github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8208fc240) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75425 [select]: github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).startStats(0xc820c1ea20) /go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:203 +0x119f github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).(github.com/cockroachdb/cockroach/kv.startStats)-fm() /go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:188 +0x2e github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc826445a30) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75577 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd7c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75409 [IO wait, 2 minutes]: net.runtime_pollWait(0x7ff92f23e170, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc826e2b640, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc826e2b640, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).accept(0xc826e2b5e0, 0x0, 0x7ff92f23e328, 0xc82553a4c0) /usr/local/go/src/net/fd_unix.go:426 +0x2f6 net.(*TCPListener).AcceptTCP(0xc8200dad60, 0xc826b72ea8, 0x0, 0x0) /usr/local/go/src/net/tcpsock_posix.go:254 +0x77 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc826dc3020) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75579 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd820) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75485 [select]: github.com/cockroachdb/cockroach/storage.(*bookie).start.func1() /go/src/github.com/cockroachdb/cockroach/storage/reservation.go:266 +0x2b2 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8208fc200) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75480 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc8208fc000) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75491 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc825539320) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75442 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82553a080) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75675 [IO wait]: net.runtime_pollWait(0x7ff92f23ddb0, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc826371480, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc826371480, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).Read(0xc826371420, 0xc826c5a000, 0x8000, 0x8000, 0x0, 0x7ff946807050, 0xc82000e058) /usr/local/go/src/net/fd_unix.go:250 +0x27b net.(*conn).Read(0xc8200246e8, 0xc826c5a000, 0x8000, 0x8000, 0x3e, 0x0, 0x0) /usr/local/go/src/net/net.go:172 +0x121 -- google.golang.org/grpc.(*Server).handleRawConn(0xc827155900, 0x7ff92f23e4f8, 0xc8200246e8) /go/src/google.golang.org/grpc/server.go:385 +0x5b2 created by google.golang.org/grpc.(*Server).Serve /go/src/google.golang.org/grpc/server.go:357 +0x3fb goroutine 75445 [select, 2 minutes]: github.com/cockroachdb/cockroach/gossip.(*Gossip).bootstrap.func1() /go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:864 +0x322 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc825db01a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75537 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*Store).Start.func4() /go/src/github.com/cockroachdb/cockroach/storage/store.go:1194 +0x181 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd5a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75408 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc826dc3000) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75847 [select]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8202af540, 0xc824786050, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8247b3b30, 0xc824786050, 0x5, 0x5, 0x605d61, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8247b3b30, 0xc824786050, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8247b3b30, 0xc824786050, 0x5, 0x5, 0x4, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc824786040, 0x400000, 0x605b1e, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc8247c6ae0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75410 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/gossip.(*server).start.func3() /go/src/github.com/cockroachdb/cockroach/gossip/server.go:325 +0x7c github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc826dc30e0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75428 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc82470cdc0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/uti ``` Please assign, take a look and update the issue accordingly.
1.0
circleci: failed tests: TestReplicateRemovedNodeDisruptiveElection - The following test appears to have failed: [#20776](https://circleci.com/gh/cockroachdb/cockroach/20776): ``` I160801 15:37:07.696470 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 100.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.548642 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 0.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.597363 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 0.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.630560 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 0.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) I160801 15:37:12.697663 kv/txn_coord_sender.go:246 txn coordinator: 0.00 txn/sec, 100.00/0.00/0.00/0.00 %cmmt/cmmt1pc/abrt/abnd, 0/0/0 avg/σ/max duration, 0.0/0.0/0 avg/σ/max restarts (0 samples) panic: test timed out after 5m0s goroutine 85052 [running]: panic(0x1bdfd60, 0xc8274fd5f0) /usr/local/go/src/runtime/panic.go:481 +0x3ff testing.startAlarm.func1() /usr/local/go/src/testing/testing.go:725 +0x184 created by time.goFunc /usr/local/go/src/time/sleep.go:129 +0x6e goroutine 1 [chan receive, 2 minutes]: testing.RunTests(0x2601ea0, 0x2eb3d40, 0x128, 0x128, 0xc820241001) /usr/local/go/src/testing/testing.go:583 +0xb39 testing.(*M).Run(0xc820095f00, 0xc82028dc90) /usr/local/go/src/testing/testing.go:515 +0x11e github.com/cockroachdb/cockroach/storage_test.TestMain(0xc820095f00) /go/src/github.com/cockroachdb/cockroach/storage/main_test.go:57 +0x2d5 main.main() github.com/cockroachdb/cockroach/storage/_test/_testmain.go:654 +0x20b goroutine 17 [syscall, 4 minutes, locked to thread]: runtime.goexit() /usr/local/go/src/runtime/asm_amd64.s:1998 +0x1 goroutine 5 [chan receive]: github.com/cockroachdb/cockroach/util/log.(*loggingT).flushDaemon(0x31d0f00) /go/src/github.com/cockroachdb/cockroach/util/log/clog.go:1015 +0x76 created by github.com/cockroachdb/cockroach/util/log.init.1 /go/src/github.com/cockroachdb/cockroach/util/log/clog.go:598 +0xc5 goroutine 75413 [select]: github.com/cockroachdb/cockroach/storage.(*bookie).start.func1() /go/src/github.com/cockroachdb/cockroach/storage/reservation.go:266 +0x2b2 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc826dc32a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75496 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc8255393e0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75583 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*replicaScanner).waitAndProcess(0xc82715d500, 0xecf316326, 0x23e67d08, 0x31cfdc0, 0xc827666380, 0xc8271094d0, 0x0, 0xc8247bf2c0) /go/src/github.com/cockroachdb/cockroach/storage/scanner.go:166 +0x83c github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/scanner.go:219 +0x3c3 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd9c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75545 [select]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8274d8a40, 0xc8209f54f0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc82487a690, 0xc8209f54f0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc82487a690, 0xc8209f54f0, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc82487a690, 0xc8209f54f0, 0x5, 0x5, 0x2602a40, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc8209f54e0, 0x7fffffff, 0xc820213c6c, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82723b890) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75740 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*RaftTransport).RaftMessage(0xc82477c080, 0x7ff920e7b108, 0xc826393320, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft_transport.go:156 +0x317 github.com/cockroachdb/cockroach/storage._MultiRaft_RaftMessage_Handler(0x1f64a00, 0xc82477c080, 0x7ff92ec67cd8, 0xc8271ecd80, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft.pb.go:158 +0xff google.golang.org/grpc.(*Server).processStreamingRPC(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc82cb233b0, 0xc826e2d770, 0x2ea6680, 0xc827436030, 0x0, 0x0) /go/src/google.golang.org/grpc/server.go:686 +0x728 google.golang.org/grpc.(*Server).handleStream(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc82cb233b0, 0xc827436030) /go/src/google.golang.org/grpc/server.go:770 +0x1511 google.golang.org/grpc.(*Server).serveStreams.func1.1(0xc8274d3b30, 0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc82cb233b0) /go/src/google.golang.org/grpc/server.go:419 +0xae created by google.golang.org/grpc.(*Server).serveStreams.func1 /go/src/google.golang.org/grpc/server.go:420 +0xa8 goroutine 75498 [select]: github.com/cockroachdb/cockroach/gossip.(*client).gossip(0xc82477fba0, 0x7ff92f23a448, 0xc82713ed80, 0xc827216840, 0x7ff92ec67ab0, 0xc8200240c0, 0xc826c6cb40, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/gossip/client.go:278 +0x7b5 github.com/cockroachdb/cockroach/gossip.(*client).start.func1() /go/src/github.com/cockroachdb/cockroach/gossip/client.go:93 +0x376 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82713ec00) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75509 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8209f40a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75760 [select, 2 minutes]: google.golang.org/grpc.NewClientStream.func1(0x7ff92ec62c20, 0xc825e14900, 0xc8275b7b30, 0xc826420b40) /go/src/google.golang.org/grpc/stream.go:187 +0x693 created by google.golang.org/grpc.NewClientStream /go/src/google.golang.org/grpc/stream.go:207 +0x184c goroutine 75852 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*RaftTransport).RaftMessage(0xc82477c080, 0x7ff920e7b108, 0xc826e18ed0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft_transport.go:156 +0x317 github.com/cockroachdb/cockroach/storage._MultiRaft_RaftMessage_Handler(0x1f64a00, 0xc82477c080, 0x7ff92ec67cd8, 0xc826c6cf30, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/storage/raft.pb.go:158 +0xff google.golang.org/grpc.(*Server).processStreamingRPC(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc8247b3e00, 0xc826e2d770, 0x2ea6680, 0xc8247c72f0, 0x0, 0x0) /go/src/google.golang.org/grpc/server.go:686 +0x728 google.golang.org/grpc.(*Server).handleStream(0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc8247b3e00, 0xc8247c72f0) /go/src/google.golang.org/grpc/server.go:770 +0x1511 google.golang.org/grpc.(*Server).serveStreams.func1.1(0xc8274d3b30, 0xc826be65a0, 0x7ff92ec62ba0, 0xc825dd74d0, 0xc8247b3e00) /go/src/google.golang.org/grpc/server.go:419 +0xae created by google.golang.org/grpc.(*Server).serveStreams.func1 /go/src/google.golang.org/grpc/server.go:420 +0xa8 goroutine 75845 [select, 2 minutes]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8202af340, 0xc824787bd0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8247b3a40, 0xc824787bd0, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8247b3a40, 0xc824787bd0, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8247b3a40, 0xc824787bd0, 0x5, 0x5, 0x5, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc824787bc0, 0x7fffffff, 0xc8263e6420, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc824787be0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75851 [select, 2 minutes]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8202afac0, 0xc824786730, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8247b3d10, 0xc824786730, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8247b3d10, 0xc824786730, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8247b3d10, 0xc824786730, 0x5, 0x5, 0x4, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc824786720, 0x7fffffff, 0xc820a1b080, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc824786740) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75426 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc82470cd40) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75575 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd760) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75607 [IO wait]: net.runtime_pollWait(0x7ff92f23d870, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc82769e290, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc82769e290, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).Read(0xc82769e230, 0xc824922000, 0x8000, 0x8000, 0x0, 0x7ff946807050, 0xc82000e058) /usr/local/go/src/net/fd_unix.go:250 +0x27b net.(*conn).Read(0xc820024488, 0xc824922000, 0x8000, 0x8000, 0xc825e0c55c, 0x0, 0x0) /usr/local/go/src/net/net.go:172 +0x121 -- google.golang.org/grpc/transport.(*http2Client).reader(0xc825e15f00) /go/src/google.golang.org/grpc/transport/http2_client.go:887 +0x19e created by google.golang.org/grpc/transport.newHTTP2Client /go/src/google.golang.org/grpc/transport/http2_client.go:176 +0xfe9 goroutine 75484 [select]: github.com/cockroachdb/cockroach/gossip.(*Gossip).manage.func1() /go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:891 +0x3f9 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc825db1a50) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75532 [select, 2 minutes]: github.com/cockroachdb/cockroach/gossip.(*Gossip).bootstrap.func1() /go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:864 +0x322 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82096b6b0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75463 [select, 1 minutes]: google.golang.org/grpc/transport.(*http2Client).controller(0xc827144200) /go/src/google.golang.org/grpc/transport/http2_client.go:965 +0x8ef created by google.golang.org/grpc/transport.newHTTP2Client /go/src/google.golang.org/grpc/transport/http2_client.go:206 +0x19ce goroutine 75461 [select, 2 minutes]: google.golang.org/grpc/transport.(*http2Server).controller(0xc820399290) /go/src/google.golang.org/grpc/transport/http2_server.go:673 +0xa79 created by google.golang.org/grpc/transport.newHTTP2Server /go/src/google.golang.org/grpc/transport/http2_server.go:139 +0xb6d goroutine 75466 [select]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8247caa80, 0xc82553a670, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8271060f0, 0xc82553a670, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8271060f0, 0xc82553a670, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8271060f0, 0xc82553a670, 0x5, 0x5, 0x2602a40, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc82553a660, 0x7fffffff, 0xc8208d7c6c, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc825df0570) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75450 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*Store).Start.func4() /go/src/github.com/cockroachdb/cockroach/storage/store.go:1194 +0x181 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc82553a2c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75416 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*Store).Start.func4() /go/src/github.com/cockroachdb/cockroach/storage/store.go:1194 +0x181 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc826dc3940) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75510 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8209f40c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75404 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/rpc.NewContext.func1() /go/src/github.com/cockroachdb/cockroach/rpc/context.go:105 +0x68 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc824714a20) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75447 [select]: github.com/cockroachdb/cockroach/storage.(*bookie).start.func1() /go/src/github.com/cockroachdb/cockroach/storage/reservation.go:266 +0x2b2 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc82553a220) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75529 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc8208fd2c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75608 [select, 1 minutes]: google.golang.org/grpc/transport.(*http2Client).controller(0xc825e15f00) /go/src/google.golang.org/grpc/transport/http2_client.go:965 +0x8ef created by google.golang.org/grpc/transport.newHTTP2Client /go/src/google.golang.org/grpc/transport/http2_client.go:206 +0x19ce goroutine 75460 [IO wait]: net.runtime_pollWait(0x7ff92f23e0b0, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc820120300, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc820120300, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).Read(0xc8201202a0, 0xc82039e000, 0x8000, 0x8000, 0x0, 0x7ff946807050, 0xc82000e058) /usr/local/go/src/net/fd_unix.go:250 +0x27b net.(*conn).Read(0xc8200da440, 0xc82039e000, 0x8000, 0x8000, 0xa19d89, 0x0, 0x0) /usr/local/go/src/net/net.go:172 +0x121 -- google.golang.org/grpc.(*Server).handleRawConn(0xc8264355e0, 0x7ff92f23e4f8, 0xc8200da440) /go/src/google.golang.org/grpc/server.go:385 +0x5b2 created by google.golang.org/grpc.(*Server).Serve /go/src/google.golang.org/grpc/server.go:357 +0x3fb goroutine 75427 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc82470cd80) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75667 [select, 2 minutes]: google.golang.org/grpc.(*addrConn).transportMonitor(0xc8262f1d40) /go/src/google.golang.org/grpc/clientconn.go:646 +0x951 google.golang.org/grpc.(*ClientConn).resetAddrConn.func1(0xc8262f1d40) /go/src/google.golang.org/grpc/clientconn.go:441 +0x2f9 created by google.golang.org/grpc.(*ClientConn).resetAddrConn /go/src/google.golang.org/grpc/clientconn.go:442 +0x92e goroutine 75486 [select]: github.com/cockroachdb/cockroach/storage.(*Store).processRaft.func1() /go/src/github.com/cockroachdb/cockroach/storage/store.go:2578 +0x109d github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8208fc240) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75425 [select]: github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).startStats(0xc820c1ea20) /go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:203 +0x119f github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).(github.com/cockroachdb/cockroach/kv.startStats)-fm() /go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:188 +0x2e github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc826445a30) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75577 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd7c0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75409 [IO wait, 2 minutes]: net.runtime_pollWait(0x7ff92f23e170, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc826e2b640, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc826e2b640, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).accept(0xc826e2b5e0, 0x0, 0x7ff92f23e328, 0xc82553a4c0) /usr/local/go/src/net/fd_unix.go:426 +0x2f6 net.(*TCPListener).AcceptTCP(0xc8200dad60, 0xc826b72ea8, 0x0, 0x0) /usr/local/go/src/net/tcpsock_posix.go:254 +0x77 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc826dc3020) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75579 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd820) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75485 [select]: github.com/cockroachdb/cockroach/storage.(*bookie).start.func1() /go/src/github.com/cockroachdb/cockroach/storage/reservation.go:266 +0x2b2 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd63f0, 0xc8208fc200) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75480 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc8208fc000) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75491 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc825dd6f30, 0xc825539320) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75442 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc82553a080) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75675 [IO wait]: net.runtime_pollWait(0x7ff92f23ddb0, 0x72, 0x5db5c9) /usr/local/go/src/runtime/netpoll.go:160 +0x63 net.(*pollDesc).Wait(0xc826371480, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:73 +0x56 net.(*pollDesc).WaitRead(0xc826371480, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:78 +0x44 net.(*netFD).Read(0xc826371420, 0xc826c5a000, 0x8000, 0x8000, 0x0, 0x7ff946807050, 0xc82000e058) /usr/local/go/src/net/fd_unix.go:250 +0x27b net.(*conn).Read(0xc8200246e8, 0xc826c5a000, 0x8000, 0x8000, 0x3e, 0x0, 0x0) /usr/local/go/src/net/net.go:172 +0x121 -- google.golang.org/grpc.(*Server).handleRawConn(0xc827155900, 0x7ff92f23e4f8, 0xc8200246e8) /go/src/google.golang.org/grpc/server.go:385 +0x5b2 created by google.golang.org/grpc.(*Server).Serve /go/src/google.golang.org/grpc/server.go:357 +0x3fb goroutine 75445 [select, 2 minutes]: github.com/cockroachdb/cockroach/gossip.(*Gossip).bootstrap.func1() /go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:864 +0x322 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc825db01a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75537 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*Store).Start.func4() /go/src/github.com/cockroachdb/cockroach/storage/store.go:1194 +0x181 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8271094d0, 0xc8208fd5a0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75408 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/util/netutil.ListenAndServeGRPC.func1() /go/src/github.com/cockroachdb/cockroach/util/netutil/net.go:51 +0x62 github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc826dc3000) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75847 [select]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8202af540, 0xc824786050, 0x5, 0x5, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:142 +0xc41 google.golang.org/grpc/transport.(*Stream).Read(0xc8247b3b30, 0xc824786050, 0x5, 0x5, 0x605d61, 0x0, 0x0) /go/src/google.golang.org/grpc/transport/transport.go:315 +0x95 io.ReadAtLeast(0x7ff92f23e818, 0xc8247b3b30, 0xc824786050, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:297 +0x119 io.ReadFull(0x7ff92f23e818, 0xc8247b3b30, 0xc824786050, 0x5, 0x5, 0x4, 0x0, 0x0) /usr/local/go/src/io/io.go:315 +0x77 google.golang.org/grpc.(*parser).recvMsg(0xc824786040, 0x400000, 0x605b1e, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/google.golang.org/grpc/rpc_util.go:231 +0xf0 -- github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc8247c6ae0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75410 [chan receive, 2 minutes]: github.com/cockroachdb/cockroach/gossip.(*server).start.func3() /go/src/github.com/cockroachdb/cockroach/gossip/server.go:325 +0x7c github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cb40, 0xc826dc30e0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:188 +0x70 goroutine 75428 [select, 2 minutes]: github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/storage/queue.go:402 +0x38a github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc826c6cc60, 0xc82470cdc0) /go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:187 +0x8b created by github.com/cockroachdb/cockroach/uti ``` Please assign, take a look and update the issue accordingly.
non_priority
circleci failed tests testreplicateremovednodedisruptiveelection the following test appears to have failed kv txn coord sender go txn coordinator txn sec cmmt abrt abnd avg σ max duration avg σ max restarts samples kv txn coord sender go txn coordinator txn sec cmmt abrt abnd avg σ max duration avg σ max restarts samples kv txn coord sender go txn coordinator txn sec cmmt abrt abnd avg σ max duration avg σ max restarts samples kv txn coord sender go txn coordinator txn sec cmmt abrt abnd avg σ max duration avg σ max restarts samples kv txn coord sender go txn coordinator txn sec cmmt abrt abnd avg σ max duration avg σ max restarts samples panic test timed out after goroutine panic usr local go src runtime panic go testing startalarm usr local go src testing testing go created by time gofunc usr local go src time sleep go goroutine testing runtests usr local go src testing testing go testing m run usr local go src testing testing go github com cockroachdb cockroach storage test testmain go src github com cockroachdb cockroach storage main test go main main github com cockroachdb cockroach storage test testmain go goroutine runtime goexit usr local go src runtime asm s goroutine github com cockroachdb cockroach util log loggingt flushdaemon go src github com cockroachdb cockroach util log clog go created by github com cockroachdb cockroach util log init go src github com cockroachdb cockroach util log clog go goroutine github com cockroachdb cockroach storage bookie start go src github com cockroachdb cockroach storage reservation go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage replicascanner waitandprocess go src github com cockroachdb cockroach storage scanner go github com cockroachdb cockroach storage replicascanner scanloop go src github com cockroachdb cockroach storage scanner go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine google golang org grpc transport recvbufferreader read go src google golang org grpc transport transport go google golang org grpc transport stream read go src google golang org grpc transport transport go io readatleast usr local go src io io go io readfull usr local go src io io go google golang org grpc parser recvmsg go src google golang org grpc rpc util go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage rafttransport raftmessage go src github com cockroachdb cockroach storage raft transport go github com cockroachdb cockroach storage multiraft raftmessage handler go src github com cockroachdb cockroach storage raft pb go google golang org grpc server processstreamingrpc go src google golang org grpc server go google golang org grpc server handlestream go src google golang org grpc server go google golang org grpc server servestreams go src google golang org grpc server go created by google golang org grpc server servestreams go src google golang org grpc server go goroutine github com cockroachdb cockroach gossip client gossip go src github com cockroachdb cockroach gossip client go github com cockroachdb cockroach gossip client start go src github com cockroachdb cockroach gossip client go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine google golang org grpc newclientstream go src google golang org grpc stream go created by google golang org grpc newclientstream go src google golang org grpc stream go goroutine github com cockroachdb cockroach storage rafttransport raftmessage go src github com cockroachdb cockroach storage raft transport go github com cockroachdb cockroach storage multiraft raftmessage handler go src github com cockroachdb cockroach storage raft pb go google golang org grpc server processstreamingrpc go src google golang org grpc server go google golang org grpc server handlestream go src google golang org grpc server go google golang org grpc server servestreams go src google golang org grpc server go created by google golang org grpc server servestreams go src google golang org grpc server go goroutine google golang org grpc transport recvbufferreader read go src google golang org grpc transport transport go google golang org grpc transport stream read go src google golang org grpc transport transport go io readatleast usr local go src io io go io readfull usr local go src io io go google golang org grpc parser recvmsg go src google golang org grpc rpc util go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine google golang org grpc transport recvbufferreader read go src google golang org grpc transport transport go google golang org grpc transport stream read go src google golang org grpc transport transport go io readatleast usr local go src io io go io readfull usr local go src io io go google golang org grpc parser recvmsg go src google golang org grpc rpc util go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go google golang org grpc transport reader go src google golang org grpc transport client go created by google golang org grpc transport go src google golang org grpc transport client go goroutine github com cockroachdb cockroach gossip gossip manage go src github com cockroachdb cockroach gossip gossip go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach gossip gossip bootstrap go src github com cockroachdb cockroach gossip gossip go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine google golang org grpc transport controller go src google golang org grpc transport client go created by google golang org grpc transport go src google golang org grpc transport client go goroutine google golang org grpc transport controller go src google golang org grpc transport server go created by google golang org grpc transport go src google golang org grpc transport server go goroutine google golang org grpc transport recvbufferreader read go src google golang org grpc transport transport go google golang org grpc transport stream read go src google golang org grpc transport transport go io readatleast usr local go src io io go io readfull usr local go src io io go google golang org grpc parser recvmsg go src google golang org grpc rpc util go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage store start go src github com cockroachdb cockroach storage store go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage store start go src github com cockroachdb cockroach storage store go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach rpc newcontext go src github com cockroachdb cockroach rpc context go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage bookie start go src github com cockroachdb cockroach storage reservation go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach util netutil listenandservegrpc go src github com cockroachdb cockroach util netutil net go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine google golang org grpc transport controller go src google golang org grpc transport client go created by google golang org grpc transport go src google golang org grpc transport client go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go google golang org grpc server handlerawconn go src google golang org grpc server go created by google golang org grpc server serve go src google golang org grpc server go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine google golang org grpc addrconn transportmonitor go src google golang org grpc clientconn go google golang org grpc clientconn resetaddrconn go src google golang org grpc clientconn go created by google golang org grpc clientconn resetaddrconn go src google golang org grpc clientconn go goroutine github com cockroachdb cockroach storage store processraft go src github com cockroachdb cockroach storage store go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach kv txncoordsender startstats go src github com cockroachdb cockroach kv txn coord sender go github com cockroachdb cockroach kv txncoordsender github com cockroachdb cockroach kv startstats fm go src github com cockroachdb cockroach kv txn coord sender go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd accept usr local go src net fd unix go net tcplistener accepttcp usr local go src net tcpsock posix go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage bookie start go src github com cockroachdb cockroach storage reservation go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach util netutil listenandservegrpc go src github com cockroachdb cockroach util netutil net go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach util netutil listenandservegrpc go src github com cockroachdb cockroach util netutil net go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go google golang org grpc server handlerawconn go src google golang org grpc server go created by google golang org grpc server serve go src google golang org grpc server go goroutine github com cockroachdb cockroach gossip gossip bootstrap go src github com cockroachdb cockroach gossip gossip go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage store start go src github com cockroachdb cockroach storage store go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach util netutil listenandservegrpc go src github com cockroachdb cockroach util netutil net go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine google golang org grpc transport recvbufferreader read go src google golang org grpc transport transport go google golang org grpc transport stream read go src google golang org grpc transport transport go io readatleast usr local go src io io go io readfull usr local go src io io go google golang org grpc parser recvmsg go src google golang org grpc rpc util go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach gossip server start go src github com cockroachdb cockroach gossip server go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runworker go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach uti please assign take a look and update the issue accordingly
0
47,021
24,826,758,927
IssuesEvent
2022-10-25 21:24:48
UnsignedArduino/LogicalSimulator
https://api.github.com/repos/UnsignedArduino/LogicalSimulator
closed
Culling
performance ux simulator components p1 drawing
Should be an easy performance boost - don't draw components when their bounding box does not intercept the camera viewport.
True
Culling - Should be an easy performance boost - don't draw components when their bounding box does not intercept the camera viewport.
non_priority
culling should be an easy performance boost don t draw components when their bounding box does not intercept the camera viewport
0
50,537
7,610,436,662
IssuesEvent
2018-05-01 08:16:42
jupyter/notebook
https://api.github.com/repos/jupyter/notebook
closed
Resolve general security questions and fears running notebooks in browsers
tag:Documentation
This issue concerns the general understanding and documentation of jupyter/notebooks running in browsers or browser-like software. For unexperienced users the question arise about "_How can I be sure that running a notebook within my browser does not send any data or information to external servers via the internet_"? It's not clear why and how this can be completely ruled out. As a result, people working perhaps with sensitive data may be afraid using these kind of tools. Adding a clear statement about this matter into the documentation would be beneficial.
1.0
Resolve general security questions and fears running notebooks in browsers - This issue concerns the general understanding and documentation of jupyter/notebooks running in browsers or browser-like software. For unexperienced users the question arise about "_How can I be sure that running a notebook within my browser does not send any data or information to external servers via the internet_"? It's not clear why and how this can be completely ruled out. As a result, people working perhaps with sensitive data may be afraid using these kind of tools. Adding a clear statement about this matter into the documentation would be beneficial.
non_priority
resolve general security questions and fears running notebooks in browsers this issue concerns the general understanding and documentation of jupyter notebooks running in browsers or browser like software for unexperienced users the question arise about how can i be sure that running a notebook within my browser does not send any data or information to external servers via the internet it s not clear why and how this can be completely ruled out as a result people working perhaps with sensitive data may be afraid using these kind of tools adding a clear statement about this matter into the documentation would be beneficial
0
174,949
27,758,796,878
IssuesEvent
2023-03-16 06:13:47
chengshiwen/influxdb-cluster
https://api.github.com/repos/chengshiwen/influxdb-cluster
closed
Different results with same query when 16 million total points written per second
wontfix by design insufficient hardware resources over pressure
__System info:__ [Include InfluxDB version, operating system name, and other relevant details] __Steps to reproduce:__ ``` > select * from ctr where "some"='tag-6000' and time=1678798961952865493 limit 1; > select * from ctr where "some"='tag-6000' and time=1678798961952865493 limit 1; name: ctr time n some ---- - ---- 1678798961952865493 0 tag-6000 ``` 1. [First Step] 2. [Second Step] 3. [and so on...] __Expected behavior:__ [What you expected to happen] __Actual behavior:__ [What actually happened] __Additional info:__ [Include gist of relevant config, logs, etc.] If this is an issue of for performance, locking, etc the following commands are useful to create debug information for the team. ``` curl -o profiles.tar.gz "http://localhost:8086/debug/pprof/all?cpu=true" curl -o vars.txt "http://localhost:8086/debug/vars" iostat -xd 1 30 > iostat.txt ``` **Please note** It will take at least 30 seconds for the first cURL command above to return a response. This is because it will run a CPU profile as part of its information gathering, which takes 30 seconds to collect. Ideally you should run these commands when you're experiencing problems, so we can capture the state of the system at that time. If you're concerned about running a CPU profile (which only has a small, temporary impact on performance), then you can set `?cpu=false` or omit `?cpu=true` altogether. Please run those if possible and link them from a [gist](http://gist.github.com) or simply attach them as a comment to the issue. *Please note, the quickest way to fix a bug is to open a Pull Request.*
1.0
Different results with same query when 16 million total points written per second - __System info:__ [Include InfluxDB version, operating system name, and other relevant details] __Steps to reproduce:__ ``` > select * from ctr where "some"='tag-6000' and time=1678798961952865493 limit 1; > select * from ctr where "some"='tag-6000' and time=1678798961952865493 limit 1; name: ctr time n some ---- - ---- 1678798961952865493 0 tag-6000 ``` 1. [First Step] 2. [Second Step] 3. [and so on...] __Expected behavior:__ [What you expected to happen] __Actual behavior:__ [What actually happened] __Additional info:__ [Include gist of relevant config, logs, etc.] If this is an issue of for performance, locking, etc the following commands are useful to create debug information for the team. ``` curl -o profiles.tar.gz "http://localhost:8086/debug/pprof/all?cpu=true" curl -o vars.txt "http://localhost:8086/debug/vars" iostat -xd 1 30 > iostat.txt ``` **Please note** It will take at least 30 seconds for the first cURL command above to return a response. This is because it will run a CPU profile as part of its information gathering, which takes 30 seconds to collect. Ideally you should run these commands when you're experiencing problems, so we can capture the state of the system at that time. If you're concerned about running a CPU profile (which only has a small, temporary impact on performance), then you can set `?cpu=false` or omit `?cpu=true` altogether. Please run those if possible and link them from a [gist](http://gist.github.com) or simply attach them as a comment to the issue. *Please note, the quickest way to fix a bug is to open a Pull Request.*
non_priority
different results with same query when million total points written per second system info steps to reproduce select from ctr where some tag and time limit select from ctr where some tag and time limit name ctr time n some tag expected behavior actual behavior additional info if this is an issue of for performance locking etc the following commands are useful to create debug information for the team curl o profiles tar gz curl o vars txt iostat xd iostat txt please note it will take at least seconds for the first curl command above to return a response this is because it will run a cpu profile as part of its information gathering which takes seconds to collect ideally you should run these commands when you re experiencing problems so we can capture the state of the system at that time if you re concerned about running a cpu profile which only has a small temporary impact on performance then you can set cpu false or omit cpu true altogether please run those if possible and link them from a or simply attach them as a comment to the issue please note the quickest way to fix a bug is to open a pull request
0
294,175
22,138,350,932
IssuesEvent
2022-06-03 02:46:02
CommunityToolkit/Maui
https://api.github.com/repos/CommunityToolkit/Maui
closed
[Proposal] Drop the Effects API and migrate all Effects to be Behaviors
approved proposal champion documentation approved
# [Drop the usage of Effects API] * [x] Proposed * [x] Prototype: Started * [ ] Implementation: Not Started * [x] iOS Support * [x] Android Support * [x] macOS Support * [x] Windows Support * [ ] Unit Tests: Not Started * [x] Sample: Started * [ ] Documentation: Not Started ## Summary [summary]: #summary > [Currently Effects don't get wired into Handlers. The need for effects in XF came from the need to be able to register something that was smaller than a renderer. The usefulness of an effect inside MAUI is debatable because inside MAUI users can just subscribe to AttachedHandler/DetachedHandler and achieve basically the same thing. You could even just use a behavior at this point.](https://github.com/dotnet/maui/issues/1226) With that quote, I would suggest migrating our `Effects` to use the `Behaviors` API. ## Motivation [motivation]: #motivation **From my understanding**. The .NET MAUI team left some _tips_ in [issues](https://github.com/dotnet/maui/issues/1226) and [PR comment](https://github.com/dotnet/maui/pull/2137#discussion_r694036714) that devs should not use the Effects API and that was added into .NET MAUI just to avoid a hard break change with Forms. That said since we are supporting MAUI Handlers we should move all our Effects to use a _better_ approach. ## Detailed Design [design]: #detailed-design The API for the `BasePlatformBehavior` is the following: ```csharp public abstract partial class BasePlatformBehavior<TView, TNativeView> : BaseBehavior<TView> where TView : VisualElement #if !NET6_0 || IOS || ANDROID || WINDOWS where TNativeView : NativeView #else where TNativeView : class #endif { protected TNativeView? NativeView => View?.Handler?.NativeView as TNativeView; protected override void OnAttachedTo(BindableObject bindable) { base.OnAttachedTo(bindable); } protected override void OnDetachingFrom(BindableObject bindable) { base.OnDetachingFrom(bindable); } protected override void OnAttachedTo(TView bindable) { base.OnAttachedTo(bindable); OnPlatformAttachedBehavior(bindable); } protected override void OnDetachingFrom(TView bindable) { base.OnDetachingFrom(bindable); OnPlatformDeattachedBehavior(bindable); } protected abstract void OnPlatformAttachedBehavior(TView view); protected abstract void OnPlatformDeattachedBehavior(TView view); } ``` From the old `Effect` API we have the `Element` property that's a `Forms` control and we have a `Control` property that is the `PlatformControl`. On this implementation, the property `View` inside the `BaseBehavior` is a `MAUI` control, and the `NativeView` inside the `BasePlatformBehavior` is the `PlatformControl`. I override all `AttachedTo` and `OnDeataching` methods to avoid the implementor changing its behavior, and I expose - as abstract methods - `OnPlatformAttachedBehavior` and `OnPlatformDeattachedBehavior` methods, which will implement that feature per platform. In other words, this is the [`TemplatedMethod Pattern`](https://www.dofactory.com/net/template-method-design-pattern) and this API was inspired on how .NET MAUI implements the `ViewHandler`. This should be a `partial class` to make it easy for devs and us to extend this class to implement any platform-specific code when needed. - POC PR #231 ## Usage Syntax [usage]: #usage-syntax In this sample, I keep the `Effect` suffix, but we should drop it as well. ### XAML Usage ```xml <Image> <Image.Behaviors> <xct:IconTintColorEffect TintColor="Green" /> </Image.Behaviors> </Image> ``` ### C# Usage ```cs // using the traditional way var img = new Image(); img.Behaviors.Add(new xct::IconTintColorEffect { TintColor = Colors.Green }); // maybe using the AppedingBehavior Image.ControlsViewMapper.AppendToMapping(nameof(IView.Background), (h, v) => { var behavior = new xct::IconTintColorEffect { TintColor=Colors.Green }; h.Do(behavior); }); ``` For more info about `AppendToMapping` API check this [PR](https://github.com/dotnet/maui/pull/1859)
1.0
[Proposal] Drop the Effects API and migrate all Effects to be Behaviors - # [Drop the usage of Effects API] * [x] Proposed * [x] Prototype: Started * [ ] Implementation: Not Started * [x] iOS Support * [x] Android Support * [x] macOS Support * [x] Windows Support * [ ] Unit Tests: Not Started * [x] Sample: Started * [ ] Documentation: Not Started ## Summary [summary]: #summary > [Currently Effects don't get wired into Handlers. The need for effects in XF came from the need to be able to register something that was smaller than a renderer. The usefulness of an effect inside MAUI is debatable because inside MAUI users can just subscribe to AttachedHandler/DetachedHandler and achieve basically the same thing. You could even just use a behavior at this point.](https://github.com/dotnet/maui/issues/1226) With that quote, I would suggest migrating our `Effects` to use the `Behaviors` API. ## Motivation [motivation]: #motivation **From my understanding**. The .NET MAUI team left some _tips_ in [issues](https://github.com/dotnet/maui/issues/1226) and [PR comment](https://github.com/dotnet/maui/pull/2137#discussion_r694036714) that devs should not use the Effects API and that was added into .NET MAUI just to avoid a hard break change with Forms. That said since we are supporting MAUI Handlers we should move all our Effects to use a _better_ approach. ## Detailed Design [design]: #detailed-design The API for the `BasePlatformBehavior` is the following: ```csharp public abstract partial class BasePlatformBehavior<TView, TNativeView> : BaseBehavior<TView> where TView : VisualElement #if !NET6_0 || IOS || ANDROID || WINDOWS where TNativeView : NativeView #else where TNativeView : class #endif { protected TNativeView? NativeView => View?.Handler?.NativeView as TNativeView; protected override void OnAttachedTo(BindableObject bindable) { base.OnAttachedTo(bindable); } protected override void OnDetachingFrom(BindableObject bindable) { base.OnDetachingFrom(bindable); } protected override void OnAttachedTo(TView bindable) { base.OnAttachedTo(bindable); OnPlatformAttachedBehavior(bindable); } protected override void OnDetachingFrom(TView bindable) { base.OnDetachingFrom(bindable); OnPlatformDeattachedBehavior(bindable); } protected abstract void OnPlatformAttachedBehavior(TView view); protected abstract void OnPlatformDeattachedBehavior(TView view); } ``` From the old `Effect` API we have the `Element` property that's a `Forms` control and we have a `Control` property that is the `PlatformControl`. On this implementation, the property `View` inside the `BaseBehavior` is a `MAUI` control, and the `NativeView` inside the `BasePlatformBehavior` is the `PlatformControl`. I override all `AttachedTo` and `OnDeataching` methods to avoid the implementor changing its behavior, and I expose - as abstract methods - `OnPlatformAttachedBehavior` and `OnPlatformDeattachedBehavior` methods, which will implement that feature per platform. In other words, this is the [`TemplatedMethod Pattern`](https://www.dofactory.com/net/template-method-design-pattern) and this API was inspired on how .NET MAUI implements the `ViewHandler`. This should be a `partial class` to make it easy for devs and us to extend this class to implement any platform-specific code when needed. - POC PR #231 ## Usage Syntax [usage]: #usage-syntax In this sample, I keep the `Effect` suffix, but we should drop it as well. ### XAML Usage ```xml <Image> <Image.Behaviors> <xct:IconTintColorEffect TintColor="Green" /> </Image.Behaviors> </Image> ``` ### C# Usage ```cs // using the traditional way var img = new Image(); img.Behaviors.Add(new xct::IconTintColorEffect { TintColor = Colors.Green }); // maybe using the AppedingBehavior Image.ControlsViewMapper.AppendToMapping(nameof(IView.Background), (h, v) => { var behavior = new xct::IconTintColorEffect { TintColor=Colors.Green }; h.Do(behavior); }); ``` For more info about `AppendToMapping` API check this [PR](https://github.com/dotnet/maui/pull/1859)
non_priority
drop the effects api and migrate all effects to be behaviors proposed prototype started implementation not started ios support android support macos support windows support unit tests not started sample started documentation not started summary summary with that quote i would suggest migrating our effects to use the behaviors api motivation motivation from my understanding the net maui team left some tips in and that devs should not use the effects api and that was added into net maui just to avoid a hard break change with forms that said since we are supporting maui handlers we should move all our effects to use a better approach detailed design detailed design the api for the baseplatformbehavior is the following csharp public abstract partial class baseplatformbehavior basebehavior where tview visualelement if ios android windows where tnativeview nativeview else where tnativeview class endif protected tnativeview nativeview view handler nativeview as tnativeview protected override void onattachedto bindableobject bindable base onattachedto bindable protected override void ondetachingfrom bindableobject bindable base ondetachingfrom bindable protected override void onattachedto tview bindable base onattachedto bindable onplatformattachedbehavior bindable protected override void ondetachingfrom tview bindable base ondetachingfrom bindable onplatformdeattachedbehavior bindable protected abstract void onplatformattachedbehavior tview view protected abstract void onplatformdeattachedbehavior tview view from the old effect api we have the element property that s a forms control and we have a control property that is the platformcontrol on this implementation the property view inside the basebehavior is a maui control and the nativeview inside the baseplatformbehavior is the platformcontrol i override all attachedto and ondeataching methods to avoid the implementor changing its behavior and i expose as abstract methods onplatformattachedbehavior and onplatformdeattachedbehavior methods which will implement that feature per platform in other words this is the and this api was inspired on how net maui implements the viewhandler this should be a partial class to make it easy for devs and us to extend this class to implement any platform specific code when needed poc pr usage syntax usage syntax in this sample i keep the effect suffix but we should drop it as well xaml usage xml xct icontintcoloreffect tintcolor green c usage cs using the traditional way var img new image img behaviors add new xct icontintcoloreffect tintcolor colors green maybe using the appedingbehavior image controlsviewmapper appendtomapping nameof iview background h v var behavior new xct icontintcoloreffect tintcolor colors green h do behavior for more info about appendtomapping api check this
0
55,159
23,396,091,800
IssuesEvent
2022-08-11 23:50:43
microsoftgraph/msgraph-sdk-powershell
https://api.github.com/repos/microsoftgraph/msgraph-sdk-powershell
closed
Get-MgUserMessage: -CountVariable and -All return different counts
Service issue
If I execute the following, the 'Count' variable will be assigned a value of '420': `Get-MgUserMessage -UserId $FromUserEmailAddress -CountVariable Count` However, if I execute the version below, the size of the resulting array is '270': `$Messages = Get-MgUserMessage -UserId $FromUserEmailAddress -Property "sender,subject" -All` I would expect the numbers to match (but it is possible that I've misunderstood something...) As background - my original goal was to use the SDK to iterate through all available messages a page at a time, like is possible using MS Graph SDK's for other languages. While attempting to figure that out, I stumbled across the `-All` parameter. I knew from using other SDK's how many messages were available to be retrieved, which agrees with the results of the `-CountVariable` parameter. My goals would be met if I was able to either process each individual page (ideally based on the value of `@odata.nextLink` like is possible in Graph SDK's for other languages) or be confident that the `-All` parameter will indeed return all available messages.
1.0
Get-MgUserMessage: -CountVariable and -All return different counts - If I execute the following, the 'Count' variable will be assigned a value of '420': `Get-MgUserMessage -UserId $FromUserEmailAddress -CountVariable Count` However, if I execute the version below, the size of the resulting array is '270': `$Messages = Get-MgUserMessage -UserId $FromUserEmailAddress -Property "sender,subject" -All` I would expect the numbers to match (but it is possible that I've misunderstood something...) As background - my original goal was to use the SDK to iterate through all available messages a page at a time, like is possible using MS Graph SDK's for other languages. While attempting to figure that out, I stumbled across the `-All` parameter. I knew from using other SDK's how many messages were available to be retrieved, which agrees with the results of the `-CountVariable` parameter. My goals would be met if I was able to either process each individual page (ideally based on the value of `@odata.nextLink` like is possible in Graph SDK's for other languages) or be confident that the `-All` parameter will indeed return all available messages.
non_priority
get mgusermessage countvariable and all return different counts if i execute the following the count variable will be assigned a value of get mgusermessage userid fromuseremailaddress countvariable count however if i execute the version below the size of the resulting array is messages get mgusermessage userid fromuseremailaddress property sender subject all i would expect the numbers to match but it is possible that i ve misunderstood something as background my original goal was to use the sdk to iterate through all available messages a page at a time like is possible using ms graph sdk s for other languages while attempting to figure that out i stumbled across the all parameter i knew from using other sdk s how many messages were available to be retrieved which agrees with the results of the countvariable parameter my goals would be met if i was able to either process each individual page ideally based on the value of odata nextlink like is possible in graph sdk s for other languages or be confident that the all parameter will indeed return all available messages
0
326,686
24,097,440,399
IssuesEvent
2022-09-19 20:08:09
Equipment-and-Tool-Institute/j1939-84
https://api.github.com/repos/Equipment-and-Tool-Institute/j1939-84
closed
Doc - Examples for DM26 enable bit review
documentation future enhancement Task 5 DR
Review the following enable bit messages for enable bit criteria enhancement. Note DM5 content for issue #860 Start Test 1.13 - DM5: Diagnostic Readiness 1: Monitor Readiness 10:32:51.3757 Global DM5 Request 10:32:51.3795 18EAFFF9 [3] CE FE 00 (TX) 10:32:51.3821 18FECE55 [8] FF FF 14 00 00 00 00 00 DM5 from DPF Controller (85): OBD Compliance: HD OBD (20), Active Codes: not available, Previously Active Codes: not available 10:32:51.3842 18FECE00 [8] 00 00 14 37 E0 1E A0 1E DM5 from Engine #1 (0): OBD Compliance: HD OBD (20), Active Codes: 0, Previously Active Codes: 0 ... 10:32:51.3946 18FECEA7 [8] 00 01 FF 00 00 00 00 00 DM5 from Instrument Cluster #2 (167): OBD Compliance: Not available (255), Active Codes: 0, Previously Active Codes: 1 Vehicle Composite of DM5: A/C system refrigerant not supported, complete **_Boost pressure control sys supported, not complete_** Catalyst not supported, complete Cold start aid system not supported, complete Comprehensive component supported, complete Diesel Particulate Filter supported, not complete EGR/VVT system supported, not complete Evaporative system not supported, complete Exhaust Gas Sensor supported, not complete **_Exhaust Gas Sensor heater supported, complete_** Fuel System supported, not complete Heated catalyst not supported, complete Misfire supported, not complete NMHC converting catalyst supported, not complete NOx catalyst/adsorber supported, not complete Secondary air system not supported, complete FAIL: 6.1.13.2.a (A6.2.c) - Composite vehicle readiness for Exhaust Gas Sensor heater did not meet the criteria of Table A4 _**This outcome is correct, but should not define the standard for part 12 when the failure message in part 12 references part 11.**_ Start Test 1.14 - DM26: Diagnostic readiness 3 10:32:52.0271 Global DM26 Request 10:32:52.0368 18EAFFF9 [3] B8 FD 00 (TX) 10:32:52.0442 18FDB800 [8] 00 00 05 37 40 14 E0 1E DM26 from Engine #1 (0): Warm-ups: 5, Time Since Engine Start: 0 seconds Vehicle Composite of DM26: A/C system refrigerant not enabled, complete **_Boost pressure control sys not enabled, not complete_** Catalyst not enabled, complete Cold start aid system not enabled, complete Comprehensive component enabled, complete Diesel Particulate Filter enabled, not complete EGR/VVT system not enabled, not complete Evaporative system not enabled, complete Exhaust Gas Sensor not enabled, not complete **_Exhaust Gas Sensor heater enabled, not complete_** Fuel System enabled, not complete Heated catalyst not enabled, complete Misfire enabled, not complete NMHC converting catalyst enabled, not complete NOx catalyst/adsorber not enabled, not complete Secondary air system not enabled, complete FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor Boost pressure control sys in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor EGR/VVT system in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor Exhaust Gas Sensor in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor NOx catalyst/adsorber in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.d - Engine #1 (0) response indicates number of warm-ups since code clear is not zero
1.0
Doc - Examples for DM26 enable bit review - Review the following enable bit messages for enable bit criteria enhancement. Note DM5 content for issue #860 Start Test 1.13 - DM5: Diagnostic Readiness 1: Monitor Readiness 10:32:51.3757 Global DM5 Request 10:32:51.3795 18EAFFF9 [3] CE FE 00 (TX) 10:32:51.3821 18FECE55 [8] FF FF 14 00 00 00 00 00 DM5 from DPF Controller (85): OBD Compliance: HD OBD (20), Active Codes: not available, Previously Active Codes: not available 10:32:51.3842 18FECE00 [8] 00 00 14 37 E0 1E A0 1E DM5 from Engine #1 (0): OBD Compliance: HD OBD (20), Active Codes: 0, Previously Active Codes: 0 ... 10:32:51.3946 18FECEA7 [8] 00 01 FF 00 00 00 00 00 DM5 from Instrument Cluster #2 (167): OBD Compliance: Not available (255), Active Codes: 0, Previously Active Codes: 1 Vehicle Composite of DM5: A/C system refrigerant not supported, complete **_Boost pressure control sys supported, not complete_** Catalyst not supported, complete Cold start aid system not supported, complete Comprehensive component supported, complete Diesel Particulate Filter supported, not complete EGR/VVT system supported, not complete Evaporative system not supported, complete Exhaust Gas Sensor supported, not complete **_Exhaust Gas Sensor heater supported, complete_** Fuel System supported, not complete Heated catalyst not supported, complete Misfire supported, not complete NMHC converting catalyst supported, not complete NOx catalyst/adsorber supported, not complete Secondary air system not supported, complete FAIL: 6.1.13.2.a (A6.2.c) - Composite vehicle readiness for Exhaust Gas Sensor heater did not meet the criteria of Table A4 _**This outcome is correct, but should not define the standard for part 12 when the failure message in part 12 references part 11.**_ Start Test 1.14 - DM26: Diagnostic readiness 3 10:32:52.0271 Global DM26 Request 10:32:52.0368 18EAFFF9 [3] B8 FD 00 (TX) 10:32:52.0442 18FDB800 [8] 00 00 05 37 40 14 E0 1E DM26 from Engine #1 (0): Warm-ups: 5, Time Since Engine Start: 0 seconds Vehicle Composite of DM26: A/C system refrigerant not enabled, complete **_Boost pressure control sys not enabled, not complete_** Catalyst not enabled, complete Cold start aid system not enabled, complete Comprehensive component enabled, complete Diesel Particulate Filter enabled, not complete EGR/VVT system not enabled, not complete Evaporative system not enabled, complete Exhaust Gas Sensor not enabled, not complete **_Exhaust Gas Sensor heater enabled, not complete_** Fuel System enabled, not complete Heated catalyst not enabled, complete Misfire enabled, not complete NMHC converting catalyst enabled, not complete NOx catalyst/adsorber not enabled, not complete Secondary air system not enabled, complete FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor Boost pressure control sys in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor EGR/VVT system in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor Exhaust Gas Sensor in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.a - Engine #1 (0) response for a monitor NOx catalyst/adsorber in DM5 is reported as supported and is reported as not enabled by DM26 response FAIL: 6.1.14.2.d - Engine #1 (0) response indicates number of warm-ups since code clear is not zero
non_priority
doc examples for enable bit review review the following enable bit messages for enable bit criteria enhancement note content for issue start test diagnostic readiness monitor readiness global request ce fe tx ff ff from dpf controller obd compliance hd obd active codes not available previously active codes not available from engine obd compliance hd obd active codes previously active codes ff from instrument cluster obd compliance not available active codes previously active codes vehicle composite of a c system refrigerant not supported complete boost pressure control sys supported not complete catalyst not supported complete cold start aid system not supported complete comprehensive component supported complete diesel particulate filter supported not complete egr vvt system supported not complete evaporative system not supported complete exhaust gas sensor supported not complete exhaust gas sensor heater supported complete fuel system supported not complete heated catalyst not supported complete misfire supported not complete nmhc converting catalyst supported not complete nox catalyst adsorber supported not complete secondary air system not supported complete fail a c composite vehicle readiness for exhaust gas sensor heater did not meet the criteria of table this outcome is correct but should not define the standard for part when the failure message in part references part start test diagnostic readiness global request fd tx from engine warm ups time since engine start seconds vehicle composite of a c system refrigerant not enabled complete boost pressure control sys not enabled not complete catalyst not enabled complete cold start aid system not enabled complete comprehensive component enabled complete diesel particulate filter enabled not complete egr vvt system not enabled not complete evaporative system not enabled complete exhaust gas sensor not enabled not complete exhaust gas sensor heater enabled not complete fuel system enabled not complete heated catalyst not enabled complete misfire enabled not complete nmhc converting catalyst enabled not complete nox catalyst adsorber not enabled not complete secondary air system not enabled complete fail a engine response for a monitor boost pressure control sys in is reported as supported and is reported as not enabled by response fail a engine response for a monitor egr vvt system in is reported as supported and is reported as not enabled by response fail a engine response for a monitor exhaust gas sensor in is reported as supported and is reported as not enabled by response fail a engine response for a monitor nox catalyst adsorber in is reported as supported and is reported as not enabled by response fail d engine response indicates number of warm ups since code clear is not zero
0
74,098
7,374,715,458
IssuesEvent
2018-03-13 21:15:31
appiphony/Strike-Components
https://api.github.com/repos/appiphony/Strike-Components
opened
Strike Picklist Search Icon is not appearing
in testing
Line 85 of the `.cmp` file is referencing a hardcoded URL for an icons static resource. This needs to be refactored to use `lightning:icon`
1.0
Strike Picklist Search Icon is not appearing - Line 85 of the `.cmp` file is referencing a hardcoded URL for an icons static resource. This needs to be refactored to use `lightning:icon`
non_priority
strike picklist search icon is not appearing line of the cmp file is referencing a hardcoded url for an icons static resource this needs to be refactored to use lightning icon
0
95,068
19,662,644,947
IssuesEvent
2022-01-10 18:40:30
microsoft/vscode-python
https://api.github.com/repos/microsoft/vscode-python
opened
Add Pyright type checking to all GH workflows
needs PR code-health area-internal
Add it to verify type annotations introduced by #17242 and future PRs.
1.0
Add Pyright type checking to all GH workflows - Add it to verify type annotations introduced by #17242 and future PRs.
non_priority
add pyright type checking to all gh workflows add it to verify type annotations introduced by and future prs
0
43,596
23,302,404,159
IssuesEvent
2022-08-07 14:18:28
DISIC/observatoire
https://api.github.com/repos/DISIC/observatoire
opened
Générer les données des observatoires à base des données agrégés des avis
scalabilité/performance mode connecté - admin
Aujourd'hui les données des observatoires (à une date donnée mais aussi celui en direct) utilisent les données détaillées des avis pour calculer les informations liées aux avis pour les démarches. Ceci rend l'opération longue, car l'analyse de la base des avis est très coûteuse. Suite à l'implémentation de #1129, les informations des observatoires peuvent être récupérées à partir de la base de données agrégées des avis. Cette tâche est pour faire ces modifications: * pour le calcul d'un observatoire à une date donnée - publication * pour l'affichage de l'observatoire en direct
True
Générer les données des observatoires à base des données agrégés des avis - Aujourd'hui les données des observatoires (à une date donnée mais aussi celui en direct) utilisent les données détaillées des avis pour calculer les informations liées aux avis pour les démarches. Ceci rend l'opération longue, car l'analyse de la base des avis est très coûteuse. Suite à l'implémentation de #1129, les informations des observatoires peuvent être récupérées à partir de la base de données agrégées des avis. Cette tâche est pour faire ces modifications: * pour le calcul d'un observatoire à une date donnée - publication * pour l'affichage de l'observatoire en direct
non_priority
générer les données des observatoires à base des données agrégés des avis aujourd hui les données des observatoires à une date donnée mais aussi celui en direct utilisent les données détaillées des avis pour calculer les informations liées aux avis pour les démarches ceci rend l opération longue car l analyse de la base des avis est très coûteuse suite à l implémentation de les informations des observatoires peuvent être récupérées à partir de la base de données agrégées des avis cette tâche est pour faire ces modifications pour le calcul d un observatoire à une date donnée publication pour l affichage de l observatoire en direct
0
89,694
25,889,157,300
IssuesEvent
2022-12-14 16:35:43
NixOS/nixpkgs
https://api.github.com/repos/NixOS/nixpkgs
closed
fd doesn't build on MacOS x86
0.kind: build failure
### Steps To Reproduce Steps to reproduce the behavior: 1. `nix-shell -p fd` ### Build log https://pastebin.com/Xv3MjVy8 ### Additional context Building on MacOS x86. ### Metadata ```console ~> nix-shell -p nix-info --run "nix-info -m" - system: `"x86_64-darwin"` - host os: `Darwin 22.1.0, macOS 10.16` - multi-user?: `no` - sandbox: `no` - version: `nix-env (Nix) 2.12.0` - channels(jupblb): `"darwin, nixpkgs-23.05pre434342.ffca9ffaaaf"` - nixpkgs: `/Users/jupblb/.nix-defexpr/channels/nixpkgs` ```
1.0
fd doesn't build on MacOS x86 - ### Steps To Reproduce Steps to reproduce the behavior: 1. `nix-shell -p fd` ### Build log https://pastebin.com/Xv3MjVy8 ### Additional context Building on MacOS x86. ### Metadata ```console ~> nix-shell -p nix-info --run "nix-info -m" - system: `"x86_64-darwin"` - host os: `Darwin 22.1.0, macOS 10.16` - multi-user?: `no` - sandbox: `no` - version: `nix-env (Nix) 2.12.0` - channels(jupblb): `"darwin, nixpkgs-23.05pre434342.ffca9ffaaaf"` - nixpkgs: `/Users/jupblb/.nix-defexpr/channels/nixpkgs` ```
non_priority
fd doesn t build on macos steps to reproduce steps to reproduce the behavior nix shell p fd build log additional context building on macos metadata console nix shell p nix info run nix info m system darwin host os darwin macos multi user no sandbox no version nix env nix channels jupblb darwin nixpkgs nixpkgs users jupblb nix defexpr channels nixpkgs
0
166,372
26,345,377,341
IssuesEvent
2023-01-10 21:31:50
zotero/zotero
https://api.github.com/repos/zotero/zotero
opened
Show sync setup on startup with empty database
P2 Design
People often come to the forums asking [how to access their online library](https://forums.zotero.org/discussion/102239/how-do-i-export-my-references-from-my-web-library-t) on a new computer. Currently, if you're a new user, we show a sync banner once you add some data, but that doesn't help if you have an existing account and start Zotero on a new device, so you have to find the sync button, click it, click the error icon, read it, click the button to open the Sync prefs, and set up syncing. We should just show a welcome dialog at startup to set up syncing, including buttons for creating an account and for using Zotero without an account.
1.0
Show sync setup on startup with empty database - People often come to the forums asking [how to access their online library](https://forums.zotero.org/discussion/102239/how-do-i-export-my-references-from-my-web-library-t) on a new computer. Currently, if you're a new user, we show a sync banner once you add some data, but that doesn't help if you have an existing account and start Zotero on a new device, so you have to find the sync button, click it, click the error icon, read it, click the button to open the Sync prefs, and set up syncing. We should just show a welcome dialog at startup to set up syncing, including buttons for creating an account and for using Zotero without an account.
non_priority
show sync setup on startup with empty database people often come to the forums asking on a new computer currently if you re a new user we show a sync banner once you add some data but that doesn t help if you have an existing account and start zotero on a new device so you have to find the sync button click it click the error icon read it click the button to open the sync prefs and set up syncing we should just show a welcome dialog at startup to set up syncing including buttons for creating an account and for using zotero without an account
0
90,664
8,251,926,009
IssuesEvent
2018-09-12 09:17:25
ISISScientificComputing/autoreduce
https://api.github.com/repos/ISISScientificComputing/autoreduce
closed
Add scripts folder to test coverage
Maintenance Testing
Currently the scripts folder is not included in the test coverage (possibly due to failing out of date tests) we should look to fix these and add `scripts` back into the coverage.
1.0
Add scripts folder to test coverage - Currently the scripts folder is not included in the test coverage (possibly due to failing out of date tests) we should look to fix these and add `scripts` back into the coverage.
non_priority
add scripts folder to test coverage currently the scripts folder is not included in the test coverage possibly due to failing out of date tests we should look to fix these and add scripts back into the coverage
0
691
7,806,553,210
IssuesEvent
2018-06-11 14:23:01
humphd/next
https://api.github.com/repos/humphd/next
opened
Deploys sometimes fail on Traivs
automation
``` $ rvm $(travis_internal_ruby) --fuzzy do ruby -S gem install dpl Fetching: dpl-1.9.7.gem (100%) Successfully installed dpl-1.9.7 1 gem installed invalid option "--github-token=" failed to deploy ``` I've seen this a few times. We should figure out what's happening.
1.0
Deploys sometimes fail on Traivs - ``` $ rvm $(travis_internal_ruby) --fuzzy do ruby -S gem install dpl Fetching: dpl-1.9.7.gem (100%) Successfully installed dpl-1.9.7 1 gem installed invalid option "--github-token=" failed to deploy ``` I've seen this a few times. We should figure out what's happening.
non_priority
deploys sometimes fail on traivs rvm travis internal ruby fuzzy do ruby s gem install dpl fetching dpl gem successfully installed dpl gem installed invalid option github token failed to deploy i ve seen this a few times we should figure out what s happening
0
432,670
30,291,883,315
IssuesEvent
2023-07-09 11:39:49
scylladb/scylladb
https://api.github.com/repos/scylladb/scylladb
opened
docs: Issue in page Admin Tools - a mix of scylla inetrnal tool and external tools
Documentation
I would like to report an issue in page https://opensource.docs.scylladb.com/branch-5.2/operating-scylla/admin-tools/index ### Problem Some of the tools, like nodetool or cqlsh are external Some of the tools like `scylla types` or scylla sstable` are part of Scylla binary. ### Suggest a fix Reorganize the tools
1.0
docs: Issue in page Admin Tools - a mix of scylla inetrnal tool and external tools - I would like to report an issue in page https://opensource.docs.scylladb.com/branch-5.2/operating-scylla/admin-tools/index ### Problem Some of the tools, like nodetool or cqlsh are external Some of the tools like `scylla types` or scylla sstable` are part of Scylla binary. ### Suggest a fix Reorganize the tools
non_priority
docs issue in page admin tools a mix of scylla inetrnal tool and external tools i would like to report an issue in page problem some of the tools like nodetool or cqlsh are external some of the tools like scylla types or scylla sstable are part of scylla binary suggest a fix reorganize the tools
0
1,833
2,575,447,075
IssuesEvent
2015-02-11 23:09:00
paleocore/paleocore
https://api.github.com/repos/paleocore/paleocore
opened
Need basic unit tests for new paleosites app
enhancement Sites Project test
Just added a new app contributed by Shannon McPherron called paleosites. The app needs basic unit tests.
1.0
Need basic unit tests for new paleosites app - Just added a new app contributed by Shannon McPherron called paleosites. The app needs basic unit tests.
non_priority
need basic unit tests for new paleosites app just added a new app contributed by shannon mcpherron called paleosites the app needs basic unit tests
0
153,143
24,076,168,616
IssuesEvent
2022-09-18 20:34:57
NextAudio/NextAudio
https://api.github.com/repos/NextAudio/NextAudio
closed
Create AudioStream and AudioDemuxer usage
new feature design area: core
## Description We need to create some base usage for AudioStream class and AudioDemuxer class to our development ## Checklist - [x] Check Dispose and DisposeAsync methods - [x] ILoggerFactory base ctor ## References [ILoggerFactory](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.iloggerfactory) [Dispose](https://learn.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-dispose) [DisposeAsync](https://learn.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-disposeasync) [Stream source code](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Private.CoreLib/src/System/IO/Stream.cs)
1.0
Create AudioStream and AudioDemuxer usage - ## Description We need to create some base usage for AudioStream class and AudioDemuxer class to our development ## Checklist - [x] Check Dispose and DisposeAsync methods - [x] ILoggerFactory base ctor ## References [ILoggerFactory](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.iloggerfactory) [Dispose](https://learn.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-dispose) [DisposeAsync](https://learn.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-disposeasync) [Stream source code](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Private.CoreLib/src/System/IO/Stream.cs)
non_priority
create audiostream and audiodemuxer usage description we need to create some base usage for audiostream class and audiodemuxer class to our development checklist check dispose and disposeasync methods iloggerfactory base ctor references
0
156,298
24,598,987,073
IssuesEvent
2022-10-14 10:46:16
OpInCo-Community/HacktoberWeek
https://api.github.com/repos/OpInCo-Community/HacktoberWeek
opened
Youtube Overlay needed for live Streams
hacktoberfest design
Hey Folks, we need your design contribution for the youtube overlay. Try to make the UI look way better than this use material design if required in [HacktoberWeek](https://github.com/OpInCo-Community/HacktoberWeek)/[Design-Contributions](https://github.com/OpInCo-Community/HacktoberWeek/tree/main/Design-Contributions) /[youtube](https://github.com/OpInCo-Community/HacktoberWeek/tree/main/Design-Contributions/Youtube) Remember, contributions to this repository should follow its [contributing guidelines](https://github.com/OpInCo-Community/HacktoberWeek/blob/411f342658c2817f7c0b6c324f7ae6cb336d3c83/CONTRIBUTING.md) and [code of conduct](https://github.com/OpInCo-Community/HacktoberWeek/blob/411f342658c2817f7c0b6c324f7ae6cb336d3c83/CODE_OF_CONDUCT.md).
1.0
Youtube Overlay needed for live Streams - Hey Folks, we need your design contribution for the youtube overlay. Try to make the UI look way better than this use material design if required in [HacktoberWeek](https://github.com/OpInCo-Community/HacktoberWeek)/[Design-Contributions](https://github.com/OpInCo-Community/HacktoberWeek/tree/main/Design-Contributions) /[youtube](https://github.com/OpInCo-Community/HacktoberWeek/tree/main/Design-Contributions/Youtube) Remember, contributions to this repository should follow its [contributing guidelines](https://github.com/OpInCo-Community/HacktoberWeek/blob/411f342658c2817f7c0b6c324f7ae6cb336d3c83/CONTRIBUTING.md) and [code of conduct](https://github.com/OpInCo-Community/HacktoberWeek/blob/411f342658c2817f7c0b6c324f7ae6cb336d3c83/CODE_OF_CONDUCT.md).
non_priority
youtube overlay needed for live streams hey folks we need your design contribution for the youtube overlay try to make the ui look way better than this use material design if required in remember contributions to this repository should follow its and
0
25,228
24,915,848,674
IssuesEvent
2022-10-30 11:45:26
tailscale/tailscale
https://api.github.com/repos/tailscale/tailscale
closed
Exit node usage broken on NixOS unstable
OS-linux distro-nixos L1 Very few P2 Aggravating T5 Usability
```[root@bandetto:~]# cat /etc/os-release NAME=NixOS ID=nixos VERSION="21.11pre296557.33d42ad7cf2 (Porcupine)" VERSION_CODENAME=porcupine VERSION_ID="21.11pre296557.33d42ad7cf2" PRETTY_NAME="NixOS 21.11 (Porcupine)" LOGO="nix-snowflake" HOME_URL="https://nixos.org/" DOCUMENTATION_URL="https://nixos.org/learn.html" SUPPORT_URL="https://nixos.org/community.html" BUG_REPORT_URL="https://github.com/NixOS/nixpkgs/issues" ``` With the following config options: ```nix # bandetto.nix { config, pkgs, modulesPath, ... }: let fetchKeys = username: (builtins.fetchurl "https://github.com/${username}.keys"); in { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; services.openssh.enable = true; boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/vda"; nixpkgs.config.allowUnfree = true; fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; users.users.root.openssh.authorizedKeys.keyFiles = [ (fetchKeys "Xe") ]; services.qemuGuest.enable = true; networking.hostName = "bandetto"; services.tailscale.enable = true; } ``` And an exit node that works on my iPhone (100.89.21.74), networking to the outside world breaks on NixOS unstable. Attempting to reset tailscaled breaks things horribly: ```Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: quit Jun 21 20:35:42 bandetto tailscaled[794]: control: Client.Shutdown done. Jun 21 20:35:42 bandetto tailscaled[794]: using backend prefs Jun 21 20:35:42 bandetto tailscaled[794]: backend prefs for "_daemon": Prefs{ra=false dns=true want=true exit=100.103.44.76 lan=true routes=[] nf=on Persist{lm=, o=, n=[FTLHS] u="Xe (cetacean)"}} Jun 21 20:35:42 bandetto tailscaled[794]: active login: Jun 21 20:35:42 bandetto tailscaled[794]: netmap packet filter: (not ready yet) Jun 21 20:35:42 bandetto tailscaled[794]: control: HostInfo: {"IPNVersion":"1.8.7","BackendLogID":"7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61","OS":"linux","OS Version":"NixOS 21.11 (Porcupine); kernel=5.10.44","Hostname":"bandetto","GoArch":"amd64","Services":[{"Proto":"tcp","Port":22,"Description":"sshd_config [listener] 0 of 10-100 star tups"},{"Proto":"tcp","Port":35796,"Description":"tailscaled"}],"NetInfo":{"MappingVariesByDestIP":null,"HairPinning":false,"WorkingIPv6":false,"WorkingUDP":false,"UPnP":false,"PMP" :false,"PCP":false,"PreferredDERP":1}} Jun 21 20:35:42 bandetto tailscaled[794]: control: client.newEndpoints(0, [10.77.131.212:41641]) Jun 21 20:35:42 bandetto tailscaled[794]: Backend: logs: be:7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61 fe: Jun 21 20:35:42 bandetto tailscaled[794]: control: client.Login(false, 0) Jun 21 20:35:42 bandetto tailscaled[794]: [RATELIMIT] format("control: authRoutine: %s; wantLoggedIn=%v") (7 dropped) Jun 21 20:35:42 bandetto tailscaled[794]: control: authRoutine: state:new; wantLoggedIn=true Jun 21 20:35:42 bandetto tailscaled[794]: [RATELIMIT] format("control: direct.TryLogin(token=%v, flags=%v)") (7 dropped) Jun 21 20:35:42 bandetto tailscaled[794]: control: direct.TryLogin(token=false, flags=0) Jun 21 20:35:42 bandetto tailscaled[794]: [RATELIMIT] format("control: doLogin(regen=%v, hasUrl=%v)") (7 dropped) Jun 21 20:35:42 bandetto tailscaled[794]: control: doLogin(regen=false, hasUrl=false) Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: new map needed while idle. Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:42 bandetto tailscaled[794]: control: HostInfo: {"IPNVersion":"1.8.7","BackendLogID":"7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61","OS":"linux","OS Version":"NixOS 21.11 (Porcupine); kernel=5.10.44","Hostname":"bandetto","GoArch":"amd64","Services":[{"Proto":"peerapi4","Port":35796},{"Proto":"peerapi6","Port":35796}],"NetInfo": {"MappingVariesByDestIP":null,"HairPinning":false,"WorkingIPv6":false,"WorkingUDP":false,"UPnP":false,"PMP":false,"PCP":false,"PreferredDERP":1}} Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: new map needed while idle. Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:42 bandetto tailscaled[794]: control: HostInfo: {"IPNVersion":"1.8.7","BackendLogID":"7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61","OS":"linux","OS Version":"NixOS 21.11 (Porcupine); kernel=5.10.44","Hostname":"bandetto","GoArch":"amd64","Services":[{"Proto":"peerapi4","Port":35796},{"Proto":"peerapi6","Port":35796}],"NetInfo": {"MappingVariesByDestIP":null,"HairPinning":false,"WorkingIPv6":false,"WorkingUDP":false,"UPnP":false,"PMP":false,"PCP":false,"PreferredDERP":1}} Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: new map needed while idle. Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:44 bandetto tailscaled[794]: logtail: dial "log.tailscale.io:443" failed: dial tcp 34.210.105.16:443: i/o timeout (in 30.001s) Jun 21 20:35:44 bandetto tailscaled[794]: logtail: upload: log upload of 769 bytes compressed failed: Post "https://log.tailscale.io/c/tailnode.log.tailscale.io/e0206fe5463a42de33b2 b3c0f1ec099de09b85224d0ea4f22ce757ed93311c63": dial tcp 34.210.105.16:443: i/o timeout Jun 21 20:35:44 bandetto tailscaled[794]: logtail: backoff: 4304 msec Jun 21 20:35:45 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: connect: ne twork is unreachable Jun 21 20:35:45 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:35:48 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:35:48 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:35:48 bandetto tailscaled[794]: [RATELIMIT] format("%s: connecting to derp-%d (%v)") Jun 21 20:35:51 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:35:54 bandetto tailscaled[794]: magicsock: [0xc0000e80c0] derp.Recv(derp-1): derphttp.Client.Recv connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: co nnect: network is unreachable Jun 21 20:35:54 bandetto tailscaled[794]: derp-1: backoff: 3162 msec Jun 21 20:35:57 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:35:57 bandetto tailscaled[794]: [RATELIMIT] format("%s: connecting to derp-%d (%v)") (2 dropped) Jun 21 20:35:57 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:36:00 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: connect: ne twork is unreachable Jun 21 20:36:00 bandetto tailscaled[794]: derphttp.Client.Recv: connecting to derp-1 (nyc) Jun 21 20:36:03 bandetto tailscaled[794]: magicsock: [0xc0000e80c0] derp.Recv(derp-1): derphttp.Client.Recv connect to region 1 (nyc): context deadline exceeded Jun 21 20:36:03 bandetto tailscaled[794]: derp-1: backoff: 6264 msec Jun 21 20:36:03 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:36:03 bandetto tailscaled[794]: [RATELIMIT] format("%s: connecting to derp-%d (%v)") Jun 21 20:36:06 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:36:09 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:36:12 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: connect: network is unreachable ``` While tailscale is in this state, tailscale status reports an unexpected state: ```[root@bandetto:~]# tailscale status unexpected state: NoState ``` `tailscale up` also hangs infinitely and if you SIGQUIT it, you get this stacktrace: ``` [root@bandetto:~]# tailscale up --reset ^\SIGQUIT: quit PC=0x46eae1 m=0 sigcode=128 goroutine 26 [syscall]: runtime.notetsleepg(0xb92a20, 0xffffffffffffffff, 0x0) runtime/lock_futex.go:235 +0x34 fp=0xc000042798 sp=0xc000042768 pc=0x40c3f4 os/signal.signal_recv(0x0) runtime/sigqueue.go:168 +0xa5 fp=0xc0000427c0 sp=0xc000042798 pc=0x4699a5 os/signal.loop() os/signal/signal_unix.go:23 +0x25 fp=0xc0000427e0 sp=0xc0000427c0 pc=0x7500a5 runtime.goexit() runtime/asm_amd64.s:1371 +0x1 fp=0xc0000427e8 sp=0xc0000427e0 pc=0x46ccc1 created by os/signal.Notify.func1.1 os/signal/signal.go:151 +0x45 goroutine 1 [select]: tailscale.com/cmd/tailscale/cli.runUp(0x928eb0, 0xc0000a6010, 0xc00008e170, 0x0, 0x0, 0x0, 0x0) tailscale.com/cmd/tailscale/cli/up.go:455 +0xa5e github.com/peterbourgon/ff/v2/ffcli.(*Command).Run(0xb59020, 0x928eb0, 0xc0000a6010, 0x0, 0x0) github.com/peterbourgon/ff/v2@v2.0.0/ffcli/command.go:139 +0x1a2 github.com/peterbourgon/ff/v2/ffcli.(*Command).Run(0xc0000d4580, 0x928eb0, 0xc0000a6010, 0x0, 0x0) github.com/peterbourgon/ff/v2@v2.0.0/ffcli/command.go:143 +0x113 tailscale.com/cmd/tailscale/cli.Run(0xc00008e160, 0x2, 0x2, 0x0, 0x0) tailscale.com/cmd/tailscale/cli/cli.go:130 +0x505 main.main() tailscale.com/cmd/tailscale/tailscale.go:23 +0xcf goroutine 23 [select]: tailscale.com/cmd/tailscale/cli.connect.func2(0x928e78, 0xc0000b1b80, 0x92c1f0, 0xc0000aa2d0, 0xc00008d960) tailscale.com/cmd/tailscale/cli/cli.go:165 +0x131 created by tailscale.com/cmd/tailscale/cli.connect tailscale.com/cmd/tailscale/cli/cli.go:162 +0x17f goroutine 24 [IO wait]: internal/poll.runtime_pollWait(0x7f58692166a0, 0x72, 0xffffffffffffffff) runtime/netpoll.go:222 +0x55 internal/poll.(*pollDesc).wait(0xc000110518, 0x72, 0x0, 0x4, 0xffffffffffffffff) internal/poll/fd_poll_runtime.go:87 +0x45 internal/poll.(*pollDesc).waitRead(...) internal/poll/fd_poll_runtime.go:92 internal/poll.(*FD).Read(0xc000110500, 0xc00001813c, 0x4, 0x4, 0x0, 0x0, 0x0) internal/poll/fd_unix.go:166 +0x1d5 net.(*netFD).Read(0xc000110500, 0xc00001813c, 0x4, 0x4, 0x0, 0x0, 0x0) net/fd_posix.go:55 +0x4f net.(*conn).Read(0xc0000aa2d0, 0xc00001813c, 0x4, 0x4, 0x0, 0x0, 0x0) net/net.go:183 +0x91 io.ReadAtLeast(0x9227e0, 0xc0000aa2d0, 0xc00001813c, 0x4, 0x4, 0x4, 0x881de0, 0x9227e0, 0x0) io/io.go:328 +0x87 io.ReadFull(...) io/io.go:347 tailscale.com/ipn.ReadMsg(0x9227e0, 0xc0000aa2d0, 0xc0000aa2d0, 0x9227e0, 0xc0000aa2d0, 0x0, 0x0) tailscale.com/ipn/message.go:334 +0x9a tailscale.com/cmd/tailscale/cli.pump(0x928e78, 0xc0000b1b80, 0xc0000c45e0, 0x92c1f0, 0xc0000aa2d0, 0x0, 0x0) tailscale.com/cmd/tailscale/cli/cli.go:185 +0xed tailscale.com/cmd/tailscale/cli.runUp.func3(0xc0000ad440, 0x928e78, 0xc0000b1b80, 0xc0000c45e0, 0x92c1f0, 0xc0000aa2d0) tailscale.com/cmd/tailscale/cli/up.go:352 +0x5a created by tailscale.com/cmd/tailscale/cli.runUp tailscale.com/cmd/tailscale/cli/up.go:352 +0x6d1 rax 0xca rbx 0xb64400 rcx 0x46eae3 rdx 0x0 rdi 0xb92a20 rsi 0x80 rbp 0xc000042720 rsp 0xc0000426d8 r8 0x0 r9 0x0 r10 0x0 r11 0x286 r12 0xf1 r13 0x0 r14 0x9175ec r15 0x0 rip 0x46eae1 rflags 0x286 cs 0x33 fs 0x0 gs 0x0 ``` Here are the contents of `/etc/resolv.conf`: ```[root@bandetto:~]# cat /etc/resolv.conf # Generated by resolvconf search cetacean.org.github.beta.tailscale.net akua.xeserv.us nameserver 100.100.100.100 options edns0 ``` My VM is using `/nix/store/h1bga03hy7gpfq8ka7i63rh6hvswfq8d-tailscale-1.8.7/bin/tailscaled` as its tailscaled install.
True
Exit node usage broken on NixOS unstable - ```[root@bandetto:~]# cat /etc/os-release NAME=NixOS ID=nixos VERSION="21.11pre296557.33d42ad7cf2 (Porcupine)" VERSION_CODENAME=porcupine VERSION_ID="21.11pre296557.33d42ad7cf2" PRETTY_NAME="NixOS 21.11 (Porcupine)" LOGO="nix-snowflake" HOME_URL="https://nixos.org/" DOCUMENTATION_URL="https://nixos.org/learn.html" SUPPORT_URL="https://nixos.org/community.html" BUG_REPORT_URL="https://github.com/NixOS/nixpkgs/issues" ``` With the following config options: ```nix # bandetto.nix { config, pkgs, modulesPath, ... }: let fetchKeys = username: (builtins.fetchurl "https://github.com/${username}.keys"); in { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; services.openssh.enable = true; boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/vda"; nixpkgs.config.allowUnfree = true; fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; users.users.root.openssh.authorizedKeys.keyFiles = [ (fetchKeys "Xe") ]; services.qemuGuest.enable = true; networking.hostName = "bandetto"; services.tailscale.enable = true; } ``` And an exit node that works on my iPhone (100.89.21.74), networking to the outside world breaks on NixOS unstable. Attempting to reset tailscaled breaks things horribly: ```Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: quit Jun 21 20:35:42 bandetto tailscaled[794]: control: Client.Shutdown done. Jun 21 20:35:42 bandetto tailscaled[794]: using backend prefs Jun 21 20:35:42 bandetto tailscaled[794]: backend prefs for "_daemon": Prefs{ra=false dns=true want=true exit=100.103.44.76 lan=true routes=[] nf=on Persist{lm=, o=, n=[FTLHS] u="Xe (cetacean)"}} Jun 21 20:35:42 bandetto tailscaled[794]: active login: Jun 21 20:35:42 bandetto tailscaled[794]: netmap packet filter: (not ready yet) Jun 21 20:35:42 bandetto tailscaled[794]: control: HostInfo: {"IPNVersion":"1.8.7","BackendLogID":"7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61","OS":"linux","OS Version":"NixOS 21.11 (Porcupine); kernel=5.10.44","Hostname":"bandetto","GoArch":"amd64","Services":[{"Proto":"tcp","Port":22,"Description":"sshd_config [listener] 0 of 10-100 star tups"},{"Proto":"tcp","Port":35796,"Description":"tailscaled"}],"NetInfo":{"MappingVariesByDestIP":null,"HairPinning":false,"WorkingIPv6":false,"WorkingUDP":false,"UPnP":false,"PMP" :false,"PCP":false,"PreferredDERP":1}} Jun 21 20:35:42 bandetto tailscaled[794]: control: client.newEndpoints(0, [10.77.131.212:41641]) Jun 21 20:35:42 bandetto tailscaled[794]: Backend: logs: be:7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61 fe: Jun 21 20:35:42 bandetto tailscaled[794]: control: client.Login(false, 0) Jun 21 20:35:42 bandetto tailscaled[794]: [RATELIMIT] format("control: authRoutine: %s; wantLoggedIn=%v") (7 dropped) Jun 21 20:35:42 bandetto tailscaled[794]: control: authRoutine: state:new; wantLoggedIn=true Jun 21 20:35:42 bandetto tailscaled[794]: [RATELIMIT] format("control: direct.TryLogin(token=%v, flags=%v)") (7 dropped) Jun 21 20:35:42 bandetto tailscaled[794]: control: direct.TryLogin(token=false, flags=0) Jun 21 20:35:42 bandetto tailscaled[794]: [RATELIMIT] format("control: doLogin(regen=%v, hasUrl=%v)") (7 dropped) Jun 21 20:35:42 bandetto tailscaled[794]: control: doLogin(regen=false, hasUrl=false) Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: new map needed while idle. Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:42 bandetto tailscaled[794]: control: HostInfo: {"IPNVersion":"1.8.7","BackendLogID":"7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61","OS":"linux","OS Version":"NixOS 21.11 (Porcupine); kernel=5.10.44","Hostname":"bandetto","GoArch":"amd64","Services":[{"Proto":"peerapi4","Port":35796},{"Proto":"peerapi6","Port":35796}],"NetInfo": {"MappingVariesByDestIP":null,"HairPinning":false,"WorkingIPv6":false,"WorkingUDP":false,"UPnP":false,"PMP":false,"PCP":false,"PreferredDERP":1}} Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: new map needed while idle. Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:42 bandetto tailscaled[794]: control: HostInfo: {"IPNVersion":"1.8.7","BackendLogID":"7ca8576e9b3a6bc91fa1ef20897d6cc9d9bf42a8e84a83435add361039c9ff61","OS":"linux","OS Version":"NixOS 21.11 (Porcupine); kernel=5.10.44","Hostname":"bandetto","GoArch":"amd64","Services":[{"Proto":"peerapi4","Port":35796},{"Proto":"peerapi6","Port":35796}],"NetInfo": {"MappingVariesByDestIP":null,"HairPinning":false,"WorkingIPv6":false,"WorkingUDP":false,"UPnP":false,"PMP":false,"PCP":false,"PreferredDERP":1}} Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: new map needed while idle. Jun 21 20:35:42 bandetto tailscaled[794]: control: mapRoutine: state:authenticating Jun 21 20:35:44 bandetto tailscaled[794]: logtail: dial "log.tailscale.io:443" failed: dial tcp 34.210.105.16:443: i/o timeout (in 30.001s) Jun 21 20:35:44 bandetto tailscaled[794]: logtail: upload: log upload of 769 bytes compressed failed: Post "https://log.tailscale.io/c/tailnode.log.tailscale.io/e0206fe5463a42de33b2 b3c0f1ec099de09b85224d0ea4f22ce757ed93311c63": dial tcp 34.210.105.16:443: i/o timeout Jun 21 20:35:44 bandetto tailscaled[794]: logtail: backoff: 4304 msec Jun 21 20:35:45 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: connect: ne twork is unreachable Jun 21 20:35:45 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:35:48 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:35:48 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:35:48 bandetto tailscaled[794]: [RATELIMIT] format("%s: connecting to derp-%d (%v)") Jun 21 20:35:51 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:35:54 bandetto tailscaled[794]: magicsock: [0xc0000e80c0] derp.Recv(derp-1): derphttp.Client.Recv connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: co nnect: network is unreachable Jun 21 20:35:54 bandetto tailscaled[794]: derp-1: backoff: 3162 msec Jun 21 20:35:57 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:35:57 bandetto tailscaled[794]: [RATELIMIT] format("%s: connecting to derp-%d (%v)") (2 dropped) Jun 21 20:35:57 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:36:00 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: connect: ne twork is unreachable Jun 21 20:36:00 bandetto tailscaled[794]: derphttp.Client.Recv: connecting to derp-1 (nyc) Jun 21 20:36:03 bandetto tailscaled[794]: magicsock: [0xc0000e80c0] derp.Recv(derp-1): derphttp.Client.Recv connect to region 1 (nyc): context deadline exceeded Jun 21 20:36:03 bandetto tailscaled[794]: derp-1: backoff: 6264 msec Jun 21 20:36:03 bandetto tailscaled[794]: derphttp.Client.Send: connecting to derp-1 (nyc) Jun 21 20:36:03 bandetto tailscaled[794]: [RATELIMIT] format("%s: connecting to derp-%d (%v)") Jun 21 20:36:06 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:36:09 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): context deadline exceeded Jun 21 20:36:12 bandetto tailscaled[794]: magicsock: derp.Send(127.3.3.40:1): derphttp.Client.Send connect to region 1 (nyc): dial tcp6 [2604:a880:400:d1::828:b001]:443: connect: network is unreachable ``` While tailscale is in this state, tailscale status reports an unexpected state: ```[root@bandetto:~]# tailscale status unexpected state: NoState ``` `tailscale up` also hangs infinitely and if you SIGQUIT it, you get this stacktrace: ``` [root@bandetto:~]# tailscale up --reset ^\SIGQUIT: quit PC=0x46eae1 m=0 sigcode=128 goroutine 26 [syscall]: runtime.notetsleepg(0xb92a20, 0xffffffffffffffff, 0x0) runtime/lock_futex.go:235 +0x34 fp=0xc000042798 sp=0xc000042768 pc=0x40c3f4 os/signal.signal_recv(0x0) runtime/sigqueue.go:168 +0xa5 fp=0xc0000427c0 sp=0xc000042798 pc=0x4699a5 os/signal.loop() os/signal/signal_unix.go:23 +0x25 fp=0xc0000427e0 sp=0xc0000427c0 pc=0x7500a5 runtime.goexit() runtime/asm_amd64.s:1371 +0x1 fp=0xc0000427e8 sp=0xc0000427e0 pc=0x46ccc1 created by os/signal.Notify.func1.1 os/signal/signal.go:151 +0x45 goroutine 1 [select]: tailscale.com/cmd/tailscale/cli.runUp(0x928eb0, 0xc0000a6010, 0xc00008e170, 0x0, 0x0, 0x0, 0x0) tailscale.com/cmd/tailscale/cli/up.go:455 +0xa5e github.com/peterbourgon/ff/v2/ffcli.(*Command).Run(0xb59020, 0x928eb0, 0xc0000a6010, 0x0, 0x0) github.com/peterbourgon/ff/v2@v2.0.0/ffcli/command.go:139 +0x1a2 github.com/peterbourgon/ff/v2/ffcli.(*Command).Run(0xc0000d4580, 0x928eb0, 0xc0000a6010, 0x0, 0x0) github.com/peterbourgon/ff/v2@v2.0.0/ffcli/command.go:143 +0x113 tailscale.com/cmd/tailscale/cli.Run(0xc00008e160, 0x2, 0x2, 0x0, 0x0) tailscale.com/cmd/tailscale/cli/cli.go:130 +0x505 main.main() tailscale.com/cmd/tailscale/tailscale.go:23 +0xcf goroutine 23 [select]: tailscale.com/cmd/tailscale/cli.connect.func2(0x928e78, 0xc0000b1b80, 0x92c1f0, 0xc0000aa2d0, 0xc00008d960) tailscale.com/cmd/tailscale/cli/cli.go:165 +0x131 created by tailscale.com/cmd/tailscale/cli.connect tailscale.com/cmd/tailscale/cli/cli.go:162 +0x17f goroutine 24 [IO wait]: internal/poll.runtime_pollWait(0x7f58692166a0, 0x72, 0xffffffffffffffff) runtime/netpoll.go:222 +0x55 internal/poll.(*pollDesc).wait(0xc000110518, 0x72, 0x0, 0x4, 0xffffffffffffffff) internal/poll/fd_poll_runtime.go:87 +0x45 internal/poll.(*pollDesc).waitRead(...) internal/poll/fd_poll_runtime.go:92 internal/poll.(*FD).Read(0xc000110500, 0xc00001813c, 0x4, 0x4, 0x0, 0x0, 0x0) internal/poll/fd_unix.go:166 +0x1d5 net.(*netFD).Read(0xc000110500, 0xc00001813c, 0x4, 0x4, 0x0, 0x0, 0x0) net/fd_posix.go:55 +0x4f net.(*conn).Read(0xc0000aa2d0, 0xc00001813c, 0x4, 0x4, 0x0, 0x0, 0x0) net/net.go:183 +0x91 io.ReadAtLeast(0x9227e0, 0xc0000aa2d0, 0xc00001813c, 0x4, 0x4, 0x4, 0x881de0, 0x9227e0, 0x0) io/io.go:328 +0x87 io.ReadFull(...) io/io.go:347 tailscale.com/ipn.ReadMsg(0x9227e0, 0xc0000aa2d0, 0xc0000aa2d0, 0x9227e0, 0xc0000aa2d0, 0x0, 0x0) tailscale.com/ipn/message.go:334 +0x9a tailscale.com/cmd/tailscale/cli.pump(0x928e78, 0xc0000b1b80, 0xc0000c45e0, 0x92c1f0, 0xc0000aa2d0, 0x0, 0x0) tailscale.com/cmd/tailscale/cli/cli.go:185 +0xed tailscale.com/cmd/tailscale/cli.runUp.func3(0xc0000ad440, 0x928e78, 0xc0000b1b80, 0xc0000c45e0, 0x92c1f0, 0xc0000aa2d0) tailscale.com/cmd/tailscale/cli/up.go:352 +0x5a created by tailscale.com/cmd/tailscale/cli.runUp tailscale.com/cmd/tailscale/cli/up.go:352 +0x6d1 rax 0xca rbx 0xb64400 rcx 0x46eae3 rdx 0x0 rdi 0xb92a20 rsi 0x80 rbp 0xc000042720 rsp 0xc0000426d8 r8 0x0 r9 0x0 r10 0x0 r11 0x286 r12 0xf1 r13 0x0 r14 0x9175ec r15 0x0 rip 0x46eae1 rflags 0x286 cs 0x33 fs 0x0 gs 0x0 ``` Here are the contents of `/etc/resolv.conf`: ```[root@bandetto:~]# cat /etc/resolv.conf # Generated by resolvconf search cetacean.org.github.beta.tailscale.net akua.xeserv.us nameserver 100.100.100.100 options edns0 ``` My VM is using `/nix/store/h1bga03hy7gpfq8ka7i63rh6hvswfq8d-tailscale-1.8.7/bin/tailscaled` as its tailscaled install.
non_priority
exit node usage broken on nixos unstable cat etc os release name nixos id nixos version porcupine version codename porcupine version id pretty name nixos porcupine logo nix snowflake home url documentation url support url bug report url with the following config options nix bandetto nix config pkgs modulespath let fetchkeys username builtins fetchurl in imports services openssh enable true boot initrd availablekernelmodules boot initrd kernelmodules boot kernelmodules boot extramodulepackages boot loader grub enable true boot loader grub version boot loader grub device dev vda nixpkgs config allowunfree true filesystems device dev fstype users users root openssh authorizedkeys keyfiles services qemuguest enable true networking hostname bandetto services tailscale enable true and an exit node that works on my iphone networking to the outside world breaks on nixos unstable attempting to reset tailscaled breaks things horribly jun bandetto tailscaled control maproutine quit jun bandetto tailscaled control client shutdown done jun bandetto tailscaled using backend prefs jun bandetto tailscaled backend prefs for daemon prefs ra false dns true want true exit lan true routes nf on persist lm o n u xe cetacean jun bandetto tailscaled active login jun bandetto tailscaled netmap packet filter not ready yet jun bandetto tailscaled control hostinfo ipnversion backendlogid os linux os version nixos porcupine kernel hostname bandetto goarch services of star tups proto tcp port description tailscaled netinfo mappingvariesbydestip null hairpinning false false workingudp false upnp false pmp false pcp false preferredderp jun bandetto tailscaled control client newendpoints jun bandetto tailscaled backend logs be fe jun bandetto tailscaled control client login false jun bandetto tailscaled format control authroutine s wantloggedin v dropped jun bandetto tailscaled control authroutine state new wantloggedin true jun bandetto tailscaled format control direct trylogin token v flags v dropped jun bandetto tailscaled control direct trylogin token false flags jun bandetto tailscaled format control dologin regen v hasurl v dropped jun bandetto tailscaled control dologin regen false hasurl false jun bandetto tailscaled control maproutine state authenticating jun bandetto tailscaled control maproutine new map needed while idle jun bandetto tailscaled control maproutine state authenticating jun bandetto tailscaled control hostinfo ipnversion backendlogid os linux os version nixos porcupine kernel hostname bandetto goarch services netinfo mappingvariesbydestip null hairpinning false false workingudp false upnp false pmp false pcp false preferredderp jun bandetto tailscaled control maproutine new map needed while idle jun bandetto tailscaled control maproutine state authenticating jun bandetto tailscaled control hostinfo ipnversion backendlogid os linux os version nixos porcupine kernel hostname bandetto goarch services netinfo mappingvariesbydestip null hairpinning false false workingudp false upnp false pmp false pcp false preferredderp jun bandetto tailscaled control maproutine new map needed while idle jun bandetto tailscaled control maproutine state authenticating jun bandetto tailscaled logtail dial log tailscale io failed dial tcp i o timeout in jun bandetto tailscaled logtail upload log upload of bytes compressed failed post dial tcp i o timeout jun bandetto tailscaled logtail backoff msec jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc dial connect ne twork is unreachable jun bandetto tailscaled derphttp client send connecting to derp nyc jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc context deadline exceeded jun bandetto tailscaled derphttp client send connecting to derp nyc jun bandetto tailscaled format s connecting to derp d v jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc context deadline exceeded jun bandetto tailscaled magicsock derp recv derp derphttp client recv connect to region nyc dial co nnect network is unreachable jun bandetto tailscaled derp backoff msec jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc context deadline exceeded jun bandetto tailscaled format s connecting to derp d v dropped jun bandetto tailscaled derphttp client send connecting to derp nyc jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc dial connect ne twork is unreachable jun bandetto tailscaled derphttp client recv connecting to derp nyc jun bandetto tailscaled magicsock derp recv derp derphttp client recv connect to region nyc context deadline exceeded jun bandetto tailscaled derp backoff msec jun bandetto tailscaled derphttp client send connecting to derp nyc jun bandetto tailscaled format s connecting to derp d v jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc context deadline exceeded jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc context deadline exceeded jun bandetto tailscaled magicsock derp send derphttp client send connect to region nyc dial connect network is unreachable while tailscale is in this state tailscale status reports an unexpected state tailscale status unexpected state nostate tailscale up also hangs infinitely and if you sigquit it you get this stacktrace tailscale up reset sigquit quit pc m sigcode goroutine runtime notetsleepg runtime lock futex go fp sp pc os signal signal recv runtime sigqueue go fp sp pc os signal loop os signal signal unix go fp sp pc runtime goexit runtime asm s fp sp pc created by os signal notify os signal signal go goroutine tailscale com cmd tailscale cli runup tailscale com cmd tailscale cli up go github com peterbourgon ff ffcli command run github com peterbourgon ff ffcli command go github com peterbourgon ff ffcli command run github com peterbourgon ff ffcli command go tailscale com cmd tailscale cli run tailscale com cmd tailscale cli cli go main main tailscale com cmd tailscale tailscale go goroutine tailscale com cmd tailscale cli connect tailscale com cmd tailscale cli cli go created by tailscale com cmd tailscale cli connect tailscale com cmd tailscale cli cli go goroutine internal poll runtime pollwait runtime netpoll go internal poll polldesc wait internal poll fd poll runtime go internal poll polldesc waitread internal poll fd poll runtime go internal poll fd read internal poll fd unix go net netfd read net fd posix go net conn read net net go io readatleast io io go io readfull io io go tailscale com ipn readmsg tailscale com ipn message go tailscale com cmd tailscale cli pump tailscale com cmd tailscale cli cli go tailscale com cmd tailscale cli runup tailscale com cmd tailscale cli up go created by tailscale com cmd tailscale cli runup tailscale com cmd tailscale cli up go rax rbx rcx rdx rdi rsi rbp rsp rip rflags cs fs gs here are the contents of etc resolv conf cat etc resolv conf generated by resolvconf search cetacean org github beta tailscale net akua xeserv us nameserver options my vm is using nix store tailscale bin tailscaled as its tailscaled install
0
26,918
6,812,761,598
IssuesEvent
2017-11-06 05:37:05
BTDF/DeploymentFramework
https://api.github.com/repos/BTDF/DeploymentFramework
closed
Creation of HTTP Virtual Directory fails if default website is missing
bug CodePlexMigrationInitiated General Impact: Low Release 5.0
This one took me quite a while to diagnose. The deployment framework piece that installs virtual directories will fail if there is not a #1 (i.e. default) website in the IIS Metabase. I peeked into the code of DeploymentFramework.BuildTasks.dll and found reference to where you are trying to do the following: new DirectoryEntry("IIS://localhost/W3SVC/1/Root"). This is where it will fail if "/1/Root" doesn't exist.   There is a workaround to recreate the default website manually, so that the script will work, but I would think that the deployment framework should let you define the target website - especially if you do not want it to go into the default website. #### This work item was migrated from CodePlex CodePlex work item ID: '4015' Assigned to: 'tfabraham' Vote count: '1'
1.0
Creation of HTTP Virtual Directory fails if default website is missing - This one took me quite a while to diagnose. The deployment framework piece that installs virtual directories will fail if there is not a #1 (i.e. default) website in the IIS Metabase. I peeked into the code of DeploymentFramework.BuildTasks.dll and found reference to where you are trying to do the following: new DirectoryEntry("IIS://localhost/W3SVC/1/Root"). This is where it will fail if "/1/Root" doesn't exist.   There is a workaround to recreate the default website manually, so that the script will work, but I would think that the deployment framework should let you define the target website - especially if you do not want it to go into the default website. #### This work item was migrated from CodePlex CodePlex work item ID: '4015' Assigned to: 'tfabraham' Vote count: '1'
non_priority
creation of http virtual directory fails if default website is missing this one took me quite a while to diagnose the deployment framework piece that installs virtual directories will fail if there is not a i e default website in the iis metabase i peeked into the code of deploymentframework buildtasks dll and found reference to where you are trying to do the following new directoryentry iis localhost root this is where it will fail if root doesn t exist   there is a workaround to recreate the default website manually so that the script will work but i would think that the deployment framework should let you define the target website especially if you do not want it to go into the default website this work item was migrated from codeplex codeplex work item id assigned to tfabraham vote count
0
335,135
30,013,828,215
IssuesEvent
2023-06-26 17:06:41
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
pkg/ccl/cloudccl/cloudprivilege/cloudprivilege_test: TestURIRequiresAdminOrPrivilege failed
C-test-failure O-robot branch-master T-disaster-recovery
pkg/ccl/cloudccl/cloudprivilege/cloudprivilege_test.TestURIRequiresAdminOrPrivilege [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9417856?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9417856?buildTab=artifacts#/) on master @ [07c7d4b3abfa1dc79d8fda385132a27c81665fee](https://github.com/cockroachdb/cockroach/commits/07c7d4b3abfa1dc79d8fda385132a27c81665fee): ``` github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:220 backupccl.(*backupDataProcessor).close ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:155 backupccl.newBackupDataProcessor.func1 ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:688 execinfra.(*ProcessorBaseNoHelper).moveToTrailingMeta ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:534 execinfra.(*ProcessorBaseNoHelper).MoveToDraining ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:214 backupccl.(*backupDataProcessor).Next ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/base.go:192 execinfra.Run ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:726 execinfra.(*ProcessorBaseNoHelper).Run ??? github.com/cockroachdb/cockroach/pkg/sql/flowinfra/flow.go:575 flowinfra.(*FlowBase).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:900 sql.(*DistSQLPlanner).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:1126 sql.(*RowResultWriter).Err ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_job.go:289 backupccl.backup.func3 ??? github.com/cockroachdb/cockroach/pkg/util/ctxgroup/ctxgroup.go:167 ctxgroup.Group.GoCtx.func1 ??? golang.org/x/sync/errgroup/external/org_golang_x_sync/errgroup/errgroup.go:74 errgroup.(*Group).Go.func1 ??? Other goroutines holding locks: goroutine 814195 lock 0xc003391420 github.com/cockroachdb/cockroach/pkg/util/bulk/tracing_aggregator.go:73 bulk.(*TracingAggregator).Close ??? <<<<< github.com/cockroachdb/cockroach/pkg/util/bulk/tracing_aggregator.go:72 bulk.(*TracingAggregator).Close ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:220 backupccl.(*backupDataProcessor).close ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:155 backupccl.newBackupDataProcessor.func1 ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:688 execinfra.(*ProcessorBaseNoHelper).moveToTrailingMeta ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:534 execinfra.(*ProcessorBaseNoHelper).MoveToDraining ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:214 backupccl.(*backupDataProcessor).Next ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/base.go:192 execinfra.Run ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:726 execinfra.(*ProcessorBaseNoHelper).Run ??? github.com/cockroachdb/cockroach/pkg/sql/flowinfra/flow.go:575 flowinfra.(*FlowBase).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:900 sql.(*DistSQLPlanner).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:1126 sql.(*RowResultWriter).Err ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_job.go:289 backupccl.backup.func3 ??? github.com/cockroachdb/cockroach/pkg/util/ctxgroup/ctxgroup.go:167 ctxgroup.Group.GoCtx.func1 ??? golang.org/x/sync/errgroup/external/org_golang_x_sync/errgroup/errgroup.go:74 errgroup.(*Group).Go.func1 ??? goroutine 814203 lock 0xc0063040c8 github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:804 tracing.(*crdbSpan).getStructuredRecording ??? <<<<< github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:803 tracing.(*crdbSpan).getStructuredRecording ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:699 tracing.(*crdbSpan).getRecordingImpl ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:680 tracing.(*crdbSpan).GetRecording ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:1396 tracing.(*crdbSpan).childFinished ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:613 tracing.(*crdbSpan).finish ??? github.com/cockroachdb/cockroach/pkg/util/tracing/span_inner.go:142 tracing.(*spanInner).Finish ??? github.com/cockroachdb/cockroach/pkg/util/tracing/span.go:261 tracing.(*Span).finishInternal ??? github.com/cockroachdb/cockroach/pkg/util/tracing/span.go:246 tracing.(*Span).Finish ??? github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:470 stop.(*Stopper).RunAsyncTaskEx.func2 ??? === RUN TestURIRequiresAdminOrPrivilege/gs-implicit-direct === RUN TestURIRequiresAdminOrPrivilege/s3-implicit-via-restore === RUN TestURIRequiresAdminOrPrivilege/gs-specified-via-backup === RUN TestURIRequiresAdminOrPrivilege/s3-custom-via-backup ``` <p>Parameters: <code>TAGS=bazel,gss,deadlock</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/disaster-recovery <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestURIRequiresAdminOrPrivilege.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-26489
1.0
pkg/ccl/cloudccl/cloudprivilege/cloudprivilege_test: TestURIRequiresAdminOrPrivilege failed - pkg/ccl/cloudccl/cloudprivilege/cloudprivilege_test.TestURIRequiresAdminOrPrivilege [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9417856?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9417856?buildTab=artifacts#/) on master @ [07c7d4b3abfa1dc79d8fda385132a27c81665fee](https://github.com/cockroachdb/cockroach/commits/07c7d4b3abfa1dc79d8fda385132a27c81665fee): ``` github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:220 backupccl.(*backupDataProcessor).close ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:155 backupccl.newBackupDataProcessor.func1 ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:688 execinfra.(*ProcessorBaseNoHelper).moveToTrailingMeta ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:534 execinfra.(*ProcessorBaseNoHelper).MoveToDraining ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:214 backupccl.(*backupDataProcessor).Next ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/base.go:192 execinfra.Run ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:726 execinfra.(*ProcessorBaseNoHelper).Run ??? github.com/cockroachdb/cockroach/pkg/sql/flowinfra/flow.go:575 flowinfra.(*FlowBase).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:900 sql.(*DistSQLPlanner).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:1126 sql.(*RowResultWriter).Err ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_job.go:289 backupccl.backup.func3 ??? github.com/cockroachdb/cockroach/pkg/util/ctxgroup/ctxgroup.go:167 ctxgroup.Group.GoCtx.func1 ??? golang.org/x/sync/errgroup/external/org_golang_x_sync/errgroup/errgroup.go:74 errgroup.(*Group).Go.func1 ??? Other goroutines holding locks: goroutine 814195 lock 0xc003391420 github.com/cockroachdb/cockroach/pkg/util/bulk/tracing_aggregator.go:73 bulk.(*TracingAggregator).Close ??? <<<<< github.com/cockroachdb/cockroach/pkg/util/bulk/tracing_aggregator.go:72 bulk.(*TracingAggregator).Close ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:220 backupccl.(*backupDataProcessor).close ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:155 backupccl.newBackupDataProcessor.func1 ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:688 execinfra.(*ProcessorBaseNoHelper).moveToTrailingMeta ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:534 execinfra.(*ProcessorBaseNoHelper).MoveToDraining ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_processor.go:214 backupccl.(*backupDataProcessor).Next ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/base.go:192 execinfra.Run ??? github.com/cockroachdb/cockroach/pkg/sql/execinfra/processorsbase.go:726 execinfra.(*ProcessorBaseNoHelper).Run ??? github.com/cockroachdb/cockroach/pkg/sql/flowinfra/flow.go:575 flowinfra.(*FlowBase).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:900 sql.(*DistSQLPlanner).Run ??? github.com/cockroachdb/cockroach/pkg/sql/distsql_running.go:1126 sql.(*RowResultWriter).Err ??? github.com/cockroachdb/cockroach/pkg/ccl/backupccl/backup_job.go:289 backupccl.backup.func3 ??? github.com/cockroachdb/cockroach/pkg/util/ctxgroup/ctxgroup.go:167 ctxgroup.Group.GoCtx.func1 ??? golang.org/x/sync/errgroup/external/org_golang_x_sync/errgroup/errgroup.go:74 errgroup.(*Group).Go.func1 ??? goroutine 814203 lock 0xc0063040c8 github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:804 tracing.(*crdbSpan).getStructuredRecording ??? <<<<< github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:803 tracing.(*crdbSpan).getStructuredRecording ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:699 tracing.(*crdbSpan).getRecordingImpl ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:680 tracing.(*crdbSpan).GetRecording ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:1396 tracing.(*crdbSpan).childFinished ??? github.com/cockroachdb/cockroach/pkg/util/tracing/crdbspan.go:613 tracing.(*crdbSpan).finish ??? github.com/cockroachdb/cockroach/pkg/util/tracing/span_inner.go:142 tracing.(*spanInner).Finish ??? github.com/cockroachdb/cockroach/pkg/util/tracing/span.go:261 tracing.(*Span).finishInternal ??? github.com/cockroachdb/cockroach/pkg/util/tracing/span.go:246 tracing.(*Span).Finish ??? github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:470 stop.(*Stopper).RunAsyncTaskEx.func2 ??? === RUN TestURIRequiresAdminOrPrivilege/gs-implicit-direct === RUN TestURIRequiresAdminOrPrivilege/s3-implicit-via-restore === RUN TestURIRequiresAdminOrPrivilege/gs-specified-via-backup === RUN TestURIRequiresAdminOrPrivilege/s3-custom-via-backup ``` <p>Parameters: <code>TAGS=bazel,gss,deadlock</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/disaster-recovery <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestURIRequiresAdminOrPrivilege.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-26489
non_priority
pkg ccl cloudccl cloudprivilege cloudprivilege test testurirequiresadminorprivilege failed pkg ccl cloudccl cloudprivilege cloudprivilege test testurirequiresadminorprivilege with on master github com cockroachdb cockroach pkg ccl backupccl backup processor go backupccl backupdataprocessor close github com cockroachdb cockroach pkg ccl backupccl backup processor go backupccl newbackupdataprocessor github com cockroachdb cockroach pkg sql execinfra processorsbase go execinfra processorbasenohelper movetotrailingmeta github com cockroachdb cockroach pkg sql execinfra processorsbase go execinfra processorbasenohelper movetodraining github com cockroachdb cockroach pkg ccl backupccl backup processor go backupccl backupdataprocessor next github com cockroachdb cockroach pkg sql execinfra base go execinfra run github com cockroachdb cockroach pkg sql execinfra processorsbase go execinfra processorbasenohelper run github com cockroachdb cockroach pkg sql flowinfra flow go flowinfra flowbase run github com cockroachdb cockroach pkg sql distsql running go sql distsqlplanner run github com cockroachdb cockroach pkg sql distsql running go sql rowresultwriter err github com cockroachdb cockroach pkg ccl backupccl backup job go backupccl backup github com cockroachdb cockroach pkg util ctxgroup ctxgroup go ctxgroup group goctx golang org x sync errgroup external org golang x sync errgroup errgroup go errgroup group go other goroutines holding locks goroutine lock github com cockroachdb cockroach pkg util bulk tracing aggregator go bulk tracingaggregator close github com cockroachdb cockroach pkg util bulk tracing aggregator go bulk tracingaggregator close github com cockroachdb cockroach pkg ccl backupccl backup processor go backupccl backupdataprocessor close github com cockroachdb cockroach pkg ccl backupccl backup processor go backupccl newbackupdataprocessor github com cockroachdb cockroach pkg sql execinfra processorsbase go execinfra processorbasenohelper movetotrailingmeta github com cockroachdb cockroach pkg sql execinfra processorsbase go execinfra processorbasenohelper movetodraining github com cockroachdb cockroach pkg ccl backupccl backup processor go backupccl backupdataprocessor next github com cockroachdb cockroach pkg sql execinfra base go execinfra run github com cockroachdb cockroach pkg sql execinfra processorsbase go execinfra processorbasenohelper run github com cockroachdb cockroach pkg sql flowinfra flow go flowinfra flowbase run github com cockroachdb cockroach pkg sql distsql running go sql distsqlplanner run github com cockroachdb cockroach pkg sql distsql running go sql rowresultwriter err github com cockroachdb cockroach pkg ccl backupccl backup job go backupccl backup github com cockroachdb cockroach pkg util ctxgroup ctxgroup go ctxgroup group goctx golang org x sync errgroup external org golang x sync errgroup errgroup go errgroup group go goroutine lock github com cockroachdb cockroach pkg util tracing crdbspan go tracing crdbspan getstructuredrecording github com cockroachdb cockroach pkg util tracing crdbspan go tracing crdbspan getstructuredrecording github com cockroachdb cockroach pkg util tracing crdbspan go tracing crdbspan getrecordingimpl github com cockroachdb cockroach pkg util tracing crdbspan go tracing crdbspan getrecording github com cockroachdb cockroach pkg util tracing crdbspan go tracing crdbspan childfinished github com cockroachdb cockroach pkg util tracing crdbspan go tracing crdbspan finish github com cockroachdb cockroach pkg util tracing span inner go tracing spaninner finish github com cockroachdb cockroach pkg util tracing span go tracing span finishinternal github com cockroachdb cockroach pkg util tracing span go tracing span finish github com cockroachdb cockroach pkg util stop stopper go stop stopper runasynctaskex run testurirequiresadminorprivilege gs implicit direct run testurirequiresadminorprivilege implicit via restore run testurirequiresadminorprivilege gs specified via backup run testurirequiresadminorprivilege custom via backup parameters tags bazel gss deadlock help see also cc cockroachdb disaster recovery jira issue crdb
0
288,777
31,925,932,588
IssuesEvent
2023-09-19 01:46:17
Significant-Gravitas/Auto-GPT
https://api.github.com/repos/Significant-Gravitas/Auto-GPT
closed
execute_shell does not obey RESTRICT_TO_WORKSPACE setting
Security 🛡️ AI model limitation function: workspace Stale
### ⚠️ Search for existing issues first ⚠️ - [X] I have searched the existing issues, and there is no existing issue for my problem ### Which Operating System are you using? Docker ### Which version of Auto-GPT are you using? Master (branch) ### GPT-3 or GPT-4? GPT-3.5 ### Steps to reproduce 🕹 i have RESTRICT_TO_WORKSPACE=True sometimes it will go searching for files, or running commands outside the workspace, like the one below. NEXT ACTION: COMMAND = execute_shell ARGUMENTS = {'command_line': "find / -type f -name '*string*'"} ### Current behavior 😯 i think it goes outside the directory after too many failures of the following SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'query_string' SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'search_string' SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'search_term' which is documented in issue: https://github.com/Significant-Gravitas/Auto-GPT/issues/2673 ### Expected behavior 🤔 if the restrict to workspace is set to true, i'd expect any commands to be run in the "." folder, eg: find . -type whatever -name *file* or any other shell commands to be run only in the folder. ### Your prompt 📝 ```yaml # Paste your prompt here ``` ### Your Logs 📒 ```log <insert your logs here> ```
True
execute_shell does not obey RESTRICT_TO_WORKSPACE setting - ### ⚠️ Search for existing issues first ⚠️ - [X] I have searched the existing issues, and there is no existing issue for my problem ### Which Operating System are you using? Docker ### Which version of Auto-GPT are you using? Master (branch) ### GPT-3 or GPT-4? GPT-3.5 ### Steps to reproduce 🕹 i have RESTRICT_TO_WORKSPACE=True sometimes it will go searching for files, or running commands outside the workspace, like the one below. NEXT ACTION: COMMAND = execute_shell ARGUMENTS = {'command_line': "find / -type f -name '*string*'"} ### Current behavior 😯 i think it goes outside the directory after too many failures of the following SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'query_string' SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'search_string' SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'search_term' which is documented in issue: https://github.com/Significant-Gravitas/Auto-GPT/issues/2673 ### Expected behavior 🤔 if the restrict to workspace is set to true, i'd expect any commands to be run in the "." folder, eg: find . -type whatever -name *file* or any other shell commands to be run only in the folder. ### Your prompt 📝 ```yaml # Paste your prompt here ``` ### Your Logs 📒 ```log <insert your logs here> ```
non_priority
execute shell does not obey restrict to workspace setting ⚠️ search for existing issues first ⚠️ i have searched the existing issues and there is no existing issue for my problem which operating system are you using docker which version of auto gpt are you using master branch gpt or gpt gpt steps to reproduce 🕹 i have restrict to workspace true sometimes it will go searching for files or running commands outside the workspace like the one below next action command execute shell arguments command line find type f name string current behavior 😯 i think it goes outside the directory after too many failures of the following system command search files returned error search files got an unexpected keyword argument query string system command search files returned error search files got an unexpected keyword argument search string system command search files returned error search files got an unexpected keyword argument search term which is documented in issue expected behavior 🤔 if the restrict to workspace is set to true i d expect any commands to be run in the folder eg find type whatever name file or any other shell commands to be run only in the folder your prompt 📝 yaml paste your prompt here your logs 📒 log
0
16,121
30,010,955,416
IssuesEvent
2023-06-26 15:13:09
microsoft/component-detection
https://api.github.com/repos/microsoft/component-detection
opened
Use `cargo metadata` to properly detect Rust dev/build components
status:requirements type:feature detector:rust
Our current Rust detector works by parsing the `Cargo.lock` file generated by Cargo. However, this lockfile does not include information on whether the component is a development dependency, or a build dependency. Instead, we should use the command [`cargo metadata`](https://doc.rust-lang.org/cargo/commands/cargo-metadata.html) if `cargo` is available. `cargo metadata` will output the fully resolved tree of a given _workspace_, in JSON, and has a `kind` field that determines whether the component is a dev dependency, build dependency, or a normal dependency. In addition, there is also a `--format-version` option, that will prevent breakage if cargo updates the metadata format. Looking at the [commit logs](https://github.com/rust-lang/cargo/commit/d931a95b82076a451b34f924b372e858d16f7af3#diff-ba01db28a0383baeba4f892d93ee0b9f81a8a0e3892085d2634d2c5e54a1e056), it looks like this command has been in cargo since 2018.
1.0
Use `cargo metadata` to properly detect Rust dev/build components - Our current Rust detector works by parsing the `Cargo.lock` file generated by Cargo. However, this lockfile does not include information on whether the component is a development dependency, or a build dependency. Instead, we should use the command [`cargo metadata`](https://doc.rust-lang.org/cargo/commands/cargo-metadata.html) if `cargo` is available. `cargo metadata` will output the fully resolved tree of a given _workspace_, in JSON, and has a `kind` field that determines whether the component is a dev dependency, build dependency, or a normal dependency. In addition, there is also a `--format-version` option, that will prevent breakage if cargo updates the metadata format. Looking at the [commit logs](https://github.com/rust-lang/cargo/commit/d931a95b82076a451b34f924b372e858d16f7af3#diff-ba01db28a0383baeba4f892d93ee0b9f81a8a0e3892085d2634d2c5e54a1e056), it looks like this command has been in cargo since 2018.
non_priority
use cargo metadata to properly detect rust dev build components our current rust detector works by parsing the cargo lock file generated by cargo however this lockfile does not include information on whether the component is a development dependency or a build dependency instead we should use the command if cargo is available cargo metadata will output the fully resolved tree of a given workspace in json and has a kind field that determines whether the component is a dev dependency build dependency or a normal dependency in addition there is also a format version option that will prevent breakage if cargo updates the metadata format looking at the it looks like this command has been in cargo since
0
73,371
15,253,658,007
IssuesEvent
2021-02-20 08:41:39
gsylvie/madness
https://api.github.com/repos/gsylvie/madness
closed
CVE-2012-5783 (Medium) detected in commons-httpclient-3.1.jar, commons-httpclient-3.0.1.jar - autoclosed
security vulnerability
## CVE-2012-5783 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>commons-httpclient-3.1.jar</b>, <b>commons-httpclient-3.0.1.jar</b></p></summary> <p> <details><summary><b>commons-httpclient-3.1.jar</b></p></summary> <p>The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily.</p> <p>Library home page: <a href="https://hc.apache.org/httpcomponents-client-ga/">https://hc.apache.org/httpcomponents-client-ga/</a></p> <p>Path to dependency file: madness/ear/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar,madness/sub2/target/madness-sub2-2019.02.01/WEB-INF/lib/commons-httpclient-3.1.jar,canner/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar</p> <p> Dependency Hierarchy: - esapi-2.1.0.jar (Root Library) - antisamy-1.4.3.jar - :x: **commons-httpclient-3.1.jar** (Vulnerable Library) </details> <details><summary><b>commons-httpclient-3.0.1.jar</b></p></summary> <p>The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily.</p> <p>Path to vulnerable library: madness/sub1/target/madness-sub1-2019.02.01/WEB-INF/lib/commons-httpclient-3.0.1.jar,canner/.m2/repository/commons-httpclient/commons-httpclient/3.0.1/commons-httpclient-3.0.1.jar</p> <p> Dependency Hierarchy: - :x: **commons-httpclient-3.0.1.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/gsylvie/madness/commit/032e0bc50a6a45a60e9aed1a5aae9530ad02548a">032e0bc50a6a45a60e9aed1a5aae9530ad02548a</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Apache Commons HttpClient 3.x, as used in Amazon Flexible Payments Service (FPS) merchant Java SDK and other products, does not verify that the server hostname matches a domain name in the subject's Common Name (CN) or subjectAltName field of the X.509 certificate, which allows man-in-the-middle attackers to spoof SSL servers via an arbitrary valid certificate. <p>Publish Date: 2012-11-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2012-5783>CVE-2012-5783</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.8</b>)</summary> <p> Base Score Metrics not available</p> </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="http://xforce.iss.net/xforce/xfdb/79984">http://xforce.iss.net/xforce/xfdb/79984</a></p> <p>Release Date: 2017-12-31</p> <p>Fix Resolution: Apply the appropriate patch for your system. See References.</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2012-5783 (Medium) detected in commons-httpclient-3.1.jar, commons-httpclient-3.0.1.jar - autoclosed - ## CVE-2012-5783 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>commons-httpclient-3.1.jar</b>, <b>commons-httpclient-3.0.1.jar</b></p></summary> <p> <details><summary><b>commons-httpclient-3.1.jar</b></p></summary> <p>The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily.</p> <p>Library home page: <a href="https://hc.apache.org/httpcomponents-client-ga/">https://hc.apache.org/httpcomponents-client-ga/</a></p> <p>Path to dependency file: madness/ear/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar,madness/sub2/target/madness-sub2-2019.02.01/WEB-INF/lib/commons-httpclient-3.1.jar,canner/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar</p> <p> Dependency Hierarchy: - esapi-2.1.0.jar (Root Library) - antisamy-1.4.3.jar - :x: **commons-httpclient-3.1.jar** (Vulnerable Library) </details> <details><summary><b>commons-httpclient-3.0.1.jar</b></p></summary> <p>The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily.</p> <p>Path to vulnerable library: madness/sub1/target/madness-sub1-2019.02.01/WEB-INF/lib/commons-httpclient-3.0.1.jar,canner/.m2/repository/commons-httpclient/commons-httpclient/3.0.1/commons-httpclient-3.0.1.jar</p> <p> Dependency Hierarchy: - :x: **commons-httpclient-3.0.1.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/gsylvie/madness/commit/032e0bc50a6a45a60e9aed1a5aae9530ad02548a">032e0bc50a6a45a60e9aed1a5aae9530ad02548a</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Apache Commons HttpClient 3.x, as used in Amazon Flexible Payments Service (FPS) merchant Java SDK and other products, does not verify that the server hostname matches a domain name in the subject's Common Name (CN) or subjectAltName field of the X.509 certificate, which allows man-in-the-middle attackers to spoof SSL servers via an arbitrary valid certificate. <p>Publish Date: 2012-11-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2012-5783>CVE-2012-5783</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.8</b>)</summary> <p> Base Score Metrics not available</p> </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="http://xforce.iss.net/xforce/xfdb/79984">http://xforce.iss.net/xforce/xfdb/79984</a></p> <p>Release Date: 2017-12-31</p> <p>Fix Resolution: Apply the appropriate patch for your system. See References.</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 medium detected in commons httpclient jar commons httpclient jar autoclosed cve medium severity vulnerability vulnerable libraries commons httpclient jar commons httpclient jar commons httpclient jar the httpclient component supports the client side of rfc http and rfc http several related specifications rfc cookies rfc http authentication etc and provides a framework by which new request types methods or http extensions can be created easily library home page a href path to dependency file madness ear pom xml path to vulnerable library home wss scanner repository commons httpclient commons httpclient commons httpclient jar madness target madness web inf lib commons httpclient jar canner repository commons httpclient commons httpclient commons httpclient jar dependency hierarchy esapi jar root library antisamy jar x commons httpclient jar vulnerable library commons httpclient jar the httpclient component supports the client side of rfc http and rfc http several related specifications rfc cookies rfc http authentication etc and provides a framework by which new request types methods or http extensions can be created easily path to vulnerable library madness target madness web inf lib commons httpclient jar canner repository commons httpclient commons httpclient commons httpclient jar dependency hierarchy x commons httpclient jar vulnerable library found in head commit a href vulnerability details apache commons httpclient x as used in amazon flexible payments service fps merchant java sdk and other products does not verify that the server hostname matches a domain name in the subject s common name cn or subjectaltname field of the x certificate which allows man in the middle attackers to spoof ssl servers via an arbitrary valid certificate publish date url a href cvss score details base score metrics not available suggested fix type upgrade version origin a href release date fix resolution apply the appropriate patch for your system see references step up your open source security game with whitesource
0
9,941
14,215,965,464
IssuesEvent
2020-11-17 08:17:42
cp-api/capella-requirements-vp
https://api.github.com/repos/cp-api/capella-requirements-vp
closed
Add in status bar the path of selected element in Requirements Allocation table, and Navigation menu
capella enhancement requirementsvp verified
Add in status bar the path of selected element in Requirements Allocation table and Navigation menu to allow Selection in Capella Explorer and Show in Semantic Browser. `ECLIPSE-555359` `POLARSYS-1418` `@ofr` `2017-01-23`
1.0
Add in status bar the path of selected element in Requirements Allocation table, and Navigation menu - Add in status bar the path of selected element in Requirements Allocation table and Navigation menu to allow Selection in Capella Explorer and Show in Semantic Browser. `ECLIPSE-555359` `POLARSYS-1418` `@ofr` `2017-01-23`
non_priority
add in status bar the path of selected element in requirements allocation table and navigation menu add in status bar the path of selected element in requirements allocation table and navigation menu to allow selection in capella explorer and show in semantic browser eclipse polarsys ofr
0
196,628
14,882,340,812
IssuesEvent
2021-01-20 11:45:43
Scholar-6/brillder
https://api.github.com/repos/Scholar-6/brillder
closed
Make phone scroll with work area focus events
Betatester Request
<img width="1380" alt="Screenshot 2020-10-15 at 16 22 27" src="https://user-images.githubusercontent.com/59654112/96142648-9fc87d80-0f02-11eb-9b7f-b0dc0940d928.png">
1.0
Make phone scroll with work area focus events - <img width="1380" alt="Screenshot 2020-10-15 at 16 22 27" src="https://user-images.githubusercontent.com/59654112/96142648-9fc87d80-0f02-11eb-9b7f-b0dc0940d928.png">
non_priority
make phone scroll with work area focus events img width alt screenshot at src
0
285,502
31,154,713,434
IssuesEvent
2023-08-16 12:26:05
Trinadh465/linux-4.1.15_CVE-2018-5873
https://api.github.com/repos/Trinadh465/linux-4.1.15_CVE-2018-5873
opened
CVE-2016-2847 (Medium) detected in linux-stable-rtv4.1.33, linuxlinux-4.1.52
Mend: dependency security vulnerability
## CVE-2016-2847 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linux-stable-rtv4.1.33</b>, <b>linuxlinux-4.1.52</b></p></summary> <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> fs/pipe.c in the Linux kernel before 4.5 does not limit the amount of unread data in pipes, which allows local users to cause a denial of service (memory consumption) by creating many pipes with non-default sizes. <p>Publish Date: 2016-04-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-2847>CVE-2016-2847</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2016-2847">https://nvd.nist.gov/vuln/detail/CVE-2016-2847</a></p> <p>Release Date: 2016-04-27</p> <p>Fix Resolution: 4.5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2016-2847 (Medium) detected in linux-stable-rtv4.1.33, linuxlinux-4.1.52 - ## CVE-2016-2847 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linux-stable-rtv4.1.33</b>, <b>linuxlinux-4.1.52</b></p></summary> <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> fs/pipe.c in the Linux kernel before 4.5 does not limit the amount of unread data in pipes, which allows local users to cause a denial of service (memory consumption) by creating many pipes with non-default sizes. <p>Publish Date: 2016-04-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-2847>CVE-2016-2847</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2016-2847">https://nvd.nist.gov/vuln/detail/CVE-2016-2847</a></p> <p>Release Date: 2016-04-27</p> <p>Fix Resolution: 4.5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium detected in linux stable linuxlinux cve medium severity vulnerability vulnerable libraries linux stable linuxlinux vulnerability details fs pipe c in the linux kernel before does not limit the amount of unread data in pipes which allows local users to cause a denial of service memory consumption by creating many pipes with non default sizes publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
22,000
10,709,053,780
IssuesEvent
2019-10-24 21:06:47
BCDevOps/platform-services
https://api.github.com/repos/BCDevOps/platform-services
closed
Deploy Aporeto into Production
DXC security/aporeto
Deploy Aporeto into Production OpenShift 3.11 "Pathfinder" cluster.
True
Deploy Aporeto into Production - Deploy Aporeto into Production OpenShift 3.11 "Pathfinder" cluster.
non_priority
deploy aporeto into production deploy aporeto into production openshift pathfinder cluster
0
90,787
11,433,312,001
IssuesEvent
2020-02-04 15:29:47
hypergraph-xyz/desktop
https://api.github.com/repos/hypergraph-xyz/desktop
opened
Add files to existing content module
feature in design
**User story** As a Hypergraph user I want to add files to my existing content so that I can manage my in-progress work in Hypergraph **Workflow** - [ ] Design - [ ] Clickthrough - [ ] Code - [ ] Test **Acceptance criteria** - The content view page contains a button for adding files (same functionality as #16) - The data explainer (#19) is accessible from within this interface - If a new file matches an existing file, the user is presented with a choice to overwrite, rename the new file, rename the old file or skip
1.0
Add files to existing content module - **User story** As a Hypergraph user I want to add files to my existing content so that I can manage my in-progress work in Hypergraph **Workflow** - [ ] Design - [ ] Clickthrough - [ ] Code - [ ] Test **Acceptance criteria** - The content view page contains a button for adding files (same functionality as #16) - The data explainer (#19) is accessible from within this interface - If a new file matches an existing file, the user is presented with a choice to overwrite, rename the new file, rename the old file or skip
non_priority
add files to existing content module user story as a hypergraph user i want to add files to my existing content so that i can manage my in progress work in hypergraph workflow design clickthrough code test acceptance criteria the content view page contains a button for adding files same functionality as the data explainer is accessible from within this interface if a new file matches an existing file the user is presented with a choice to overwrite rename the new file rename the old file or skip
0
128,964
18,070,452,901
IssuesEvent
2021-09-21 01:53:09
theHinneh/sb-logs
https://api.github.com/repos/theHinneh/sb-logs
opened
CVE-2021-3807 (Medium) detected in multiple libraries
security vulnerability
## CVE-2021-3807 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>ansi-regex-2.1.1.tgz</b>, <b>ansi-regex-5.0.0.tgz</b>, <b>ansi-regex-4.1.0.tgz</b></p></summary> <p> <details><summary><b>ansi-regex-2.1.1.tgz</b></p></summary> <p>Regular expression for matching ANSI escape codes</p> <p>Library home page: <a href="https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz">https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz</a></p> <p>Path to dependency file: sb-logs/package.json</p> <p>Path to vulnerable library: sb-logs/node_modules/ansi-regex/package.json</p> <p> Dependency Hierarchy: - build-angular-0.1000.8.tgz (Root Library) - webpack-dev-server-3.11.0.tgz - strip-ansi-3.0.1.tgz - :x: **ansi-regex-2.1.1.tgz** (Vulnerable Library) </details> <details><summary><b>ansi-regex-5.0.0.tgz</b></p></summary> <p>Regular expression for matching ANSI escape codes</p> <p>Library home page: <a href="https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz">https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz</a></p> <p>Path to dependency file: sb-logs/package.json</p> <p>Path to vulnerable library: sb-logs/node_modules/inquirer/node_modules/ansi-regex/package.json,sb-logs/node_modules/@angular/compiler-cli/node_modules/ansi-regex/package.json,sb-logs/node_modules/protractor/node_modules/ansi-regex/package.json,sb-logs/node_modules/ora/node_modules/ansi-regex/package.json,sb-logs/node_modules/karma/node_modules/ansi-regex/package.json</p> <p> Dependency Hierarchy: - protractor-7.0.0.tgz (Root Library) - yargs-15.4.1.tgz - cliui-6.0.0.tgz - strip-ansi-6.0.0.tgz - :x: **ansi-regex-5.0.0.tgz** (Vulnerable Library) </details> <details><summary><b>ansi-regex-4.1.0.tgz</b></p></summary> <p>Regular expression for matching ANSI escape codes</p> <p>Library home page: <a href="https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz">https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz</a></p> <p>Path to dependency file: sb-logs/package.json</p> <p>Path to vulnerable library: sb-logs/node_modules/wrap-ansi/node_modules/ansi-regex/package.json,sb-logs/node_modules/cliui/node_modules/ansi-regex/package.json,sb-logs/node_modules/string-width/node_modules/ansi-regex/package.json</p> <p> Dependency Hierarchy: - build-angular-0.1000.8.tgz (Root Library) - webpack-dev-server-3.11.0.tgz - yargs-13.3.2.tgz - string-width-3.1.0.tgz - strip-ansi-5.2.0.tgz - :x: **ansi-regex-4.1.0.tgz** (Vulnerable Library) </details> <p>Found in base branch: <b>dev</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> ansi-regex is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-09-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3807>CVE-2021-3807</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: N/A - Attack Complexity: N/A - Privileges Required: N/A - User Interaction: N/A - Scope: N/A - Impact Metrics: - Confidentiality Impact: N/A - Integrity Impact: N/A - Availability Impact: N/A </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://huntr.dev/bounties/5b3cf33b-ede0-4398-9974-800876dfd994/">https://huntr.dev/bounties/5b3cf33b-ede0-4398-9974-800876dfd994/</a></p> <p>Release Date: 2021-09-17</p> <p>Fix Resolution: ansi-regex - 5.0.1,6.0.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-3807 (Medium) detected in multiple libraries - ## CVE-2021-3807 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>ansi-regex-2.1.1.tgz</b>, <b>ansi-regex-5.0.0.tgz</b>, <b>ansi-regex-4.1.0.tgz</b></p></summary> <p> <details><summary><b>ansi-regex-2.1.1.tgz</b></p></summary> <p>Regular expression for matching ANSI escape codes</p> <p>Library home page: <a href="https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz">https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz</a></p> <p>Path to dependency file: sb-logs/package.json</p> <p>Path to vulnerable library: sb-logs/node_modules/ansi-regex/package.json</p> <p> Dependency Hierarchy: - build-angular-0.1000.8.tgz (Root Library) - webpack-dev-server-3.11.0.tgz - strip-ansi-3.0.1.tgz - :x: **ansi-regex-2.1.1.tgz** (Vulnerable Library) </details> <details><summary><b>ansi-regex-5.0.0.tgz</b></p></summary> <p>Regular expression for matching ANSI escape codes</p> <p>Library home page: <a href="https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz">https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz</a></p> <p>Path to dependency file: sb-logs/package.json</p> <p>Path to vulnerable library: sb-logs/node_modules/inquirer/node_modules/ansi-regex/package.json,sb-logs/node_modules/@angular/compiler-cli/node_modules/ansi-regex/package.json,sb-logs/node_modules/protractor/node_modules/ansi-regex/package.json,sb-logs/node_modules/ora/node_modules/ansi-regex/package.json,sb-logs/node_modules/karma/node_modules/ansi-regex/package.json</p> <p> Dependency Hierarchy: - protractor-7.0.0.tgz (Root Library) - yargs-15.4.1.tgz - cliui-6.0.0.tgz - strip-ansi-6.0.0.tgz - :x: **ansi-regex-5.0.0.tgz** (Vulnerable Library) </details> <details><summary><b>ansi-regex-4.1.0.tgz</b></p></summary> <p>Regular expression for matching ANSI escape codes</p> <p>Library home page: <a href="https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz">https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz</a></p> <p>Path to dependency file: sb-logs/package.json</p> <p>Path to vulnerable library: sb-logs/node_modules/wrap-ansi/node_modules/ansi-regex/package.json,sb-logs/node_modules/cliui/node_modules/ansi-regex/package.json,sb-logs/node_modules/string-width/node_modules/ansi-regex/package.json</p> <p> Dependency Hierarchy: - build-angular-0.1000.8.tgz (Root Library) - webpack-dev-server-3.11.0.tgz - yargs-13.3.2.tgz - string-width-3.1.0.tgz - strip-ansi-5.2.0.tgz - :x: **ansi-regex-4.1.0.tgz** (Vulnerable Library) </details> <p>Found in base branch: <b>dev</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> ansi-regex is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-09-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3807>CVE-2021-3807</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: N/A - Attack Complexity: N/A - Privileges Required: N/A - User Interaction: N/A - Scope: N/A - Impact Metrics: - Confidentiality Impact: N/A - Integrity Impact: N/A - Availability Impact: N/A </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://huntr.dev/bounties/5b3cf33b-ede0-4398-9974-800876dfd994/">https://huntr.dev/bounties/5b3cf33b-ede0-4398-9974-800876dfd994/</a></p> <p>Release Date: 2021-09-17</p> <p>Fix Resolution: ansi-regex - 5.0.1,6.0.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries ansi regex tgz ansi regex tgz ansi regex tgz ansi regex tgz regular expression for matching ansi escape codes library home page a href path to dependency file sb logs package json path to vulnerable library sb logs node modules ansi regex package json dependency hierarchy build angular tgz root library webpack dev server tgz strip ansi tgz x ansi regex tgz vulnerable library ansi regex tgz regular expression for matching ansi escape codes library home page a href path to dependency file sb logs package json path to vulnerable library sb logs node modules inquirer node modules ansi regex package json sb logs node modules angular compiler cli node modules ansi regex package json sb logs node modules protractor node modules ansi regex package json sb logs node modules ora node modules ansi regex package json sb logs node modules karma node modules ansi regex package json dependency hierarchy protractor tgz root library yargs tgz cliui tgz strip ansi tgz x ansi regex tgz vulnerable library ansi regex tgz regular expression for matching ansi escape codes library home page a href path to dependency file sb logs package json path to vulnerable library sb logs node modules wrap ansi node modules ansi regex package json sb logs node modules cliui node modules ansi regex package json sb logs node modules string width node modules ansi regex package json dependency hierarchy build angular tgz root library webpack dev server tgz yargs tgz string width tgz strip ansi tgz x ansi regex tgz vulnerable library found in base branch dev vulnerability details ansi regex is vulnerable to inefficient regular expression complexity publish date url a href cvss score details base score metrics exploitability metrics attack vector n a attack complexity n a privileges required n a user interaction n a scope n a impact metrics confidentiality impact n a integrity impact n a availability impact n a for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution ansi regex step up your open source security game with whitesource
0
273,629
23,772,248,633
IssuesEvent
2022-09-01 17:23:10
microsoft/vscode-jupyter
https://api.github.com/repos/microsoft/vscode-jupyter
closed
"Does not stop in other cell" flaky test
flaky test
https://github.com/microsoft/vscode-jupyter/runs/8120140565?check_suite_focus=true ``` 1) VSCode Notebook - Run By Line Does not stop in other cell: Error: DebugSession should end + expected - actual at Timeout.<anonymous> (src/test/common.ts:59:20) at listOnTimeout (node:internal/timers:559:17) at processTimers (node:internal/timers:502:7) ```
1.0
"Does not stop in other cell" flaky test - https://github.com/microsoft/vscode-jupyter/runs/8120140565?check_suite_focus=true ``` 1) VSCode Notebook - Run By Line Does not stop in other cell: Error: DebugSession should end + expected - actual at Timeout.<anonymous> (src/test/common.ts:59:20) at listOnTimeout (node:internal/timers:559:17) at processTimers (node:internal/timers:502:7) ```
non_priority
does not stop in other cell flaky test vscode notebook run by line does not stop in other cell error debugsession should end expected actual at timeout src test common ts at listontimeout node internal timers at processtimers node internal timers
0
2,715
4,877,720,228
IssuesEvent
2016-11-16 16:20:38
CartoDB/cartodb
https://api.github.com/repos/CartoDB/cartodb
closed
Advanced import options
Data-services enhancement importer
I'd like to start the discussion about whether it's a good idea to have an "advanced options" section in the editor, when importing. Users could fine tune their import jobs there. Things like: specifically choosing their CSV separator, decimal separator, projection... Sometimes guessing simply doesn't work, and there is currently no way for users to try again with different options, they need to ask for support. The first discussion would be to decide whether having this advanced options section or not. And then, if yes, discuss which options we could put there.
1.0
Advanced import options - I'd like to start the discussion about whether it's a good idea to have an "advanced options" section in the editor, when importing. Users could fine tune their import jobs there. Things like: specifically choosing their CSV separator, decimal separator, projection... Sometimes guessing simply doesn't work, and there is currently no way for users to try again with different options, they need to ask for support. The first discussion would be to decide whether having this advanced options section or not. And then, if yes, discuss which options we could put there.
non_priority
advanced import options i d like to start the discussion about whether it s a good idea to have an advanced options section in the editor when importing users could fine tune their import jobs there things like specifically choosing their csv separator decimal separator projection sometimes guessing simply doesn t work and there is currently no way for users to try again with different options they need to ask for support the first discussion would be to decide whether having this advanced options section or not and then if yes discuss which options we could put there
0
217,563
24,343,288,174
IssuesEvent
2022-10-02 01:01:55
directoryxx/worker
https://api.github.com/repos/directoryxx/worker
closed
CVE-2022-28948 (Medium) detected in github.com/go-yaml/yaml-v2.4.0 - autoclosed
security vulnerability
## CVE-2022-28948 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>github.com/go-yaml/yaml-v2.4.0</b></p></summary> <p>YAML support for the Go language.</p> <p> Dependency Hierarchy: - github.com/spf13/viper-v1.8.1 (Root Library) - :x: **github.com/go-yaml/yaml-v2.4.0** (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> An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input. <p>Publish Date: 2022-05-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-28948>CVE-2022-28948</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-fm53-mpmp-7qw2">https://github.com/advisories/GHSA-fm53-mpmp-7qw2</a></p> <p>Release Date: 2022-05-19</p> <p>Fix Resolution: v3.0.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-28948 (Medium) detected in github.com/go-yaml/yaml-v2.4.0 - autoclosed - ## CVE-2022-28948 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>github.com/go-yaml/yaml-v2.4.0</b></p></summary> <p>YAML support for the Go language.</p> <p> Dependency Hierarchy: - github.com/spf13/viper-v1.8.1 (Root Library) - :x: **github.com/go-yaml/yaml-v2.4.0** (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> An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input. <p>Publish Date: 2022-05-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-28948>CVE-2022-28948</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-fm53-mpmp-7qw2">https://github.com/advisories/GHSA-fm53-mpmp-7qw2</a></p> <p>Release Date: 2022-05-19</p> <p>Fix Resolution: v3.0.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium detected in github com go yaml yaml autoclosed cve medium severity vulnerability vulnerable library github com go yaml yaml yaml support for the go language dependency hierarchy github com viper root library x github com go yaml yaml vulnerable library found in base branch master vulnerability details an issue in the unmarshal function in go yaml causes the program to crash when attempting to deserialize invalid input 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 step up your open source security game with mend
0
124,918
16,676,104,987
IssuesEvent
2021-06-07 16:22:26
grommet/hpe-design-system
https://api.github.com/repos/grommet/hpe-design-system
closed
Add example and guidance for a max width header
Implement design system site
What is the ideal max width for a header and can we please add guidance and an example for the header component page?
1.0
Add example and guidance for a max width header - What is the ideal max width for a header and can we please add guidance and an example for the header component page?
non_priority
add example and guidance for a max width header what is the ideal max width for a header and can we please add guidance and an example for the header component page
0
250,542
21,315,016,304
IssuesEvent
2022-04-16 05:49:58
microsoft/vscode
https://api.github.com/repos/microsoft/vscode
opened
QuickInput: pick - basecase
quick-pick unit-test-failure
``` 1) QuickInput pick - basecase: + expected - actual Error: Timeout of 5000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. ``` https://github.com/microsoft/vscode/runs/6045722620?check_suite_focus=true#step:14:9424
1.0
QuickInput: pick - basecase - ``` 1) QuickInput pick - basecase: + expected - actual Error: Timeout of 5000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. ``` https://github.com/microsoft/vscode/runs/6045722620?check_suite_focus=true#step:14:9424
non_priority
quickinput pick basecase quickinput pick basecase expected actual error timeout of exceeded for async tests and hooks ensure done is called if returning a promise ensure it resolves
0
156,942
13,656,747,922
IssuesEvent
2020-09-28 03:42:08
APSIMInitiative/ApsimX
https://api.github.com/repos/APSIMInitiative/ApsimX
closed
Clover fixation defaults AGPasture Science document
documentation
In Table 5 of the AGPasture Science document there are no default values for the N fixation parameters. Function of the parameter Public double Deafault Value Minimum fraction of N demand supplied by biologic N fixation MinimumFixation 0 Maximum fraction of N demand supplied by biologic N fixation MaximumFixation 0 Respiration cost factor due to the presence of symbiotic bacteria SymbioticCostFactor 0 Respiration cost factor due to the activity of symbiotic bacteria NFixingCostFactor 0
1.0
Clover fixation defaults AGPasture Science document - In Table 5 of the AGPasture Science document there are no default values for the N fixation parameters. Function of the parameter Public double Deafault Value Minimum fraction of N demand supplied by biologic N fixation MinimumFixation 0 Maximum fraction of N demand supplied by biologic N fixation MaximumFixation 0 Respiration cost factor due to the presence of symbiotic bacteria SymbioticCostFactor 0 Respiration cost factor due to the activity of symbiotic bacteria NFixingCostFactor 0
non_priority
clover fixation defaults agpasture science document in table of the agpasture science document there are no default values for the n fixation parameters function of the parameter public double deafault value minimum fraction of n demand supplied by biologic n fixation minimumfixation maximum fraction of n demand supplied by biologic n fixation maximumfixation respiration cost factor due to the presence of symbiotic bacteria symbioticcostfactor respiration cost factor due to the activity of symbiotic bacteria nfixingcostfactor
0
141,161
18,949,114,503
IssuesEvent
2021-11-18 13:29:42
paulius-valiunas/dotenv-expand
https://api.github.com/repos/paulius-valiunas/dotenv-expand
opened
WS-2020-0344 (High) detected in is-my-json-valid-2.19.0.tgz
security vulnerability
## WS-2020-0344 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>is-my-json-valid-2.19.0.tgz</b></p></summary> <p>A JSONSchema validator that uses code generation to be extremely fast</p> <p>Library home page: <a href="https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz">https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz</a></p> <p>Path to dependency file: dotenv-expand/package.json</p> <p>Path to vulnerable library: dotenv-expand/node_modules/is-my-json-valid/package.json</p> <p> Dependency Hierarchy: - lab-13.1.0.tgz (Root Library) - eslint-3.19.0.tgz - :x: **is-my-json-valid-2.19.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/paulius-valiunas/dotenv-expand/commit/76f2af744d235e83423a6b3d04a4f551c958641e">76f2af744d235e83423a6b3d04a4f551c958641e</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> Arbitrary Code Execution vulnerability was found in is-my-json-valid before 2.20.3 via the fromatName function. <p>Publish Date: 2020-06-09 <p>URL: <a href=https://github.com/mafintosh/is-my-json-valid/commit/3419563687df463b4ca709a2b46be8e15d6a2b3d>WS-2020-0344</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://github.com/mafintosh/is-my-json-valid/commit/c3fc04fc455d40e9b29537f8e2c73a28ce106edb">https://github.com/mafintosh/is-my-json-valid/commit/c3fc04fc455d40e9b29537f8e2c73a28ce106edb</a></p> <p>Release Date: 2020-06-09</p> <p>Fix Resolution: is-my-json-valid - 2.20.3</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"is-my-json-valid","packageVersion":"2.19.0","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"lab:13.1.0;eslint:3.19.0;is-my-json-valid:2.19.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"is-my-json-valid - 2.20.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2020-0344","vulnerabilityDetails":"Arbitrary Code Execution vulnerability was found in is-my-json-valid before 2.20.3 via the fromatName function.","vulnerabilityUrl":"https://github.com/mafintosh/is-my-json-valid/commit/3419563687df463b4ca709a2b46be8e15d6a2b3d","cvss3Severity":"high","cvss3Score":"9.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
True
WS-2020-0344 (High) detected in is-my-json-valid-2.19.0.tgz - ## WS-2020-0344 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>is-my-json-valid-2.19.0.tgz</b></p></summary> <p>A JSONSchema validator that uses code generation to be extremely fast</p> <p>Library home page: <a href="https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz">https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz</a></p> <p>Path to dependency file: dotenv-expand/package.json</p> <p>Path to vulnerable library: dotenv-expand/node_modules/is-my-json-valid/package.json</p> <p> Dependency Hierarchy: - lab-13.1.0.tgz (Root Library) - eslint-3.19.0.tgz - :x: **is-my-json-valid-2.19.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/paulius-valiunas/dotenv-expand/commit/76f2af744d235e83423a6b3d04a4f551c958641e">76f2af744d235e83423a6b3d04a4f551c958641e</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> Arbitrary Code Execution vulnerability was found in is-my-json-valid before 2.20.3 via the fromatName function. <p>Publish Date: 2020-06-09 <p>URL: <a href=https://github.com/mafintosh/is-my-json-valid/commit/3419563687df463b4ca709a2b46be8e15d6a2b3d>WS-2020-0344</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://github.com/mafintosh/is-my-json-valid/commit/c3fc04fc455d40e9b29537f8e2c73a28ce106edb">https://github.com/mafintosh/is-my-json-valid/commit/c3fc04fc455d40e9b29537f8e2c73a28ce106edb</a></p> <p>Release Date: 2020-06-09</p> <p>Fix Resolution: is-my-json-valid - 2.20.3</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"is-my-json-valid","packageVersion":"2.19.0","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"lab:13.1.0;eslint:3.19.0;is-my-json-valid:2.19.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"is-my-json-valid - 2.20.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2020-0344","vulnerabilityDetails":"Arbitrary Code Execution vulnerability was found in is-my-json-valid before 2.20.3 via the fromatName function.","vulnerabilityUrl":"https://github.com/mafintosh/is-my-json-valid/commit/3419563687df463b4ca709a2b46be8e15d6a2b3d","cvss3Severity":"high","cvss3Score":"9.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
non_priority
ws high detected in is my json valid tgz ws high severity vulnerability vulnerable library is my json valid tgz a jsonschema validator that uses code generation to be extremely fast library home page a href path to dependency file dotenv expand package json path to vulnerable library dotenv expand node modules is my json valid package json dependency hierarchy lab tgz root library eslint tgz x is my json valid tgz vulnerable library found in head commit a href found in base branch master vulnerability details arbitrary code execution vulnerability was found in is my json valid before via the fromatname 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 is my json valid isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree lab eslint is my json valid isminimumfixversionavailable true minimumfixversion is my json valid basebranches vulnerabilityidentifier ws vulnerabilitydetails arbitrary code execution vulnerability was found in is my json valid before via the fromatname function vulnerabilityurl
0
55,625
14,599,248,693
IssuesEvent
2020-12-21 03:36:41
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
closed
URLs generated with arrays aren't working with IntegrationTestTrait
defect
This is a (multiple allowed): * [x] bug * [ ] enhancement * [ ] feature-discussion (RFC) * CakePHP Version: 4.1.6 * Platform and Target: SLES 15.2, MySQL, using PHPUnit ### What you did ```php $this->get(['_name' => 'home', 'lang' => 'en']); ``` ### What happened ```php App\Test\TestCase\Controller\AppControllerTest::testIsEnAlerte RuntimeException: URL filter defined in /local/var/Projets/www/html/config/routes.php on line 37 could not be applied. The filter failed with: Argument 2 passed to Cake\Http\BaseApplication::{closure}() must be an instance of Cake\Http\ServerRequest, null given, called in /local/var/Projets/www/html/vendor/cakephp/cakephp/src/Routing/Router.php on line 353 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/Routing/Router.php:367 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/Routing/Router.php:460 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/MiddlewareDispatcher.php:135 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/MiddlewareDispatcher.php:106 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestTrait.php:495 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestTrait.php:385 /local/var/Projets/www/html/tests/TestCase/Controller/AppControllerTest.php:27` ``` ### What you expected to happen Working test.
1.0
URLs generated with arrays aren't working with IntegrationTestTrait - This is a (multiple allowed): * [x] bug * [ ] enhancement * [ ] feature-discussion (RFC) * CakePHP Version: 4.1.6 * Platform and Target: SLES 15.2, MySQL, using PHPUnit ### What you did ```php $this->get(['_name' => 'home', 'lang' => 'en']); ``` ### What happened ```php App\Test\TestCase\Controller\AppControllerTest::testIsEnAlerte RuntimeException: URL filter defined in /local/var/Projets/www/html/config/routes.php on line 37 could not be applied. The filter failed with: Argument 2 passed to Cake\Http\BaseApplication::{closure}() must be an instance of Cake\Http\ServerRequest, null given, called in /local/var/Projets/www/html/vendor/cakephp/cakephp/src/Routing/Router.php on line 353 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/Routing/Router.php:367 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/Routing/Router.php:460 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/MiddlewareDispatcher.php:135 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/MiddlewareDispatcher.php:106 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestTrait.php:495 /local/var/Projets/www/html/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestTrait.php:385 /local/var/Projets/www/html/tests/TestCase/Controller/AppControllerTest.php:27` ``` ### What you expected to happen Working test.
non_priority
urls generated with arrays aren t working with integrationtesttrait this is a multiple allowed bug enhancement feature discussion rfc cakephp version platform and target sles mysql using phpunit what you did php this get what happened php app test testcase controller appcontrollertest testisenalerte runtimeexception url filter defined in local var projets www html config routes php on line could not be applied the filter failed with argument passed to cake http baseapplication closure must be an instance of cake http serverrequest null given called in local var projets www html vendor cakephp cakephp src routing router php on line local var projets www html vendor cakephp cakephp src routing router php local var projets www html vendor cakephp cakephp src routing router php local var projets www html vendor cakephp cakephp src testsuite middlewaredispatcher php local var projets www html vendor cakephp cakephp src testsuite middlewaredispatcher php local var projets www html vendor cakephp cakephp src testsuite integrationtesttrait php local var projets www html vendor cakephp cakephp src testsuite integrationtesttrait php local var projets www html tests testcase controller appcontrollertest php what you expected to happen working test
0
17,926
10,854,931,776
IssuesEvent
2019-11-13 17:19:17
microsoft/BotFramework-Composer
https://api.github.com/repos/microsoft/BotFramework-Composer
closed
QnA Maker integration - Composer settings to written to appsettings.json
Bot Services P0 Type: Bug customer-replied-to customer-reported
Whenever I add the QnA Maker KB details to the Composer's settings in the UI, those values are not written to the appsettings.json of my bot and therefore, the QnA Maker is not reachable and I get "Object not set to instance of an object" as a bot's reply in the emulator after trying to query QnA Maker. However, if I insert the KBid, Key and Host directly into the "Connect to QnA Knowledgebase" in the dialog, this is working... This is the content of my bot's appsettings.json after Restarting from Composer: ``` { "microsoftAppId": "", "bot": "ComposerDialogs", "cosmosDb": { "authKey": "", "collectionId": "botstate-collection", "cosmosDBEndpoint": "", "databaseId": "botstate-db" }, "applicationInsights": { "InstrumentationKey": "" }, "blobStorage": { "connectionString": "", "container": "transcripts" } } ``` ## Version Application SHA - test ## Browser What browser are you using? - [x] Chrome - [ ] Safari - [ ] Firefox - [ ] Edge ## OS What operating system are you using? - [ ] macOS - [x] Windows - [ ] Ubuntu
1.0
QnA Maker integration - Composer settings to written to appsettings.json - Whenever I add the QnA Maker KB details to the Composer's settings in the UI, those values are not written to the appsettings.json of my bot and therefore, the QnA Maker is not reachable and I get "Object not set to instance of an object" as a bot's reply in the emulator after trying to query QnA Maker. However, if I insert the KBid, Key and Host directly into the "Connect to QnA Knowledgebase" in the dialog, this is working... This is the content of my bot's appsettings.json after Restarting from Composer: ``` { "microsoftAppId": "", "bot": "ComposerDialogs", "cosmosDb": { "authKey": "", "collectionId": "botstate-collection", "cosmosDBEndpoint": "", "databaseId": "botstate-db" }, "applicationInsights": { "InstrumentationKey": "" }, "blobStorage": { "connectionString": "", "container": "transcripts" } } ``` ## Version Application SHA - test ## Browser What browser are you using? - [x] Chrome - [ ] Safari - [ ] Firefox - [ ] Edge ## OS What operating system are you using? - [ ] macOS - [x] Windows - [ ] Ubuntu
non_priority
qna maker integration composer settings to written to appsettings json whenever i add the qna maker kb details to the composer s settings in the ui those values are not written to the appsettings json of my bot and therefore the qna maker is not reachable and i get object not set to instance of an object as a bot s reply in the emulator after trying to query qna maker however if i insert the kbid key and host directly into the connect to qna knowledgebase in the dialog this is working this is the content of my bot s appsettings json after restarting from composer microsoftappid bot composerdialogs cosmosdb authkey collectionid botstate collection cosmosdbendpoint databaseid botstate db applicationinsights instrumentationkey blobstorage connectionstring container transcripts version application sha test browser what browser are you using chrome safari firefox edge os what operating system are you using macos windows ubuntu
0
271,530
29,515,729,592
IssuesEvent
2023-06-04 13:14:18
amaybaum-local/vprofile-project6
https://api.github.com/repos/amaybaum-local/vprofile-project6
opened
WS-2019-0379 (Medium, non-reachable) detected in commons-codec-1.6.jar
Mend: dependency security vulnerability
## WS-2019-0379 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>commons-codec-1.6.jar</b></p></summary> <p>The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.</p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /Users/alexmaybaum/.m2/repository/commons-codec/commons-codec/1.6/commons-codec-1.6.jar</p> <p> Dependency Hierarchy: - spring-rabbit-1.7.1.RELEASE.jar (Root Library) - http-client-1.1.1.RELEASE.jar - httpclient-4.3.6.jar - :x: **commons-codec-1.6.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/amaybaum-local/vprofile-project6/commit/59df3151ec29836b16779bec457178ffba859535">59df3151ec29836b16779bec457178ffba859535</a></p> <p>Found in base branch: <b>vp-rem</b></p> </p> </details> <p></p> <details><summary> <img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20> Reachability Analysis</summary> <p> <p>The vulnerable code is not reachable.</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> Apache commons-codec before version “commons-codec-1.13-RC1” is vulnerable to information disclosure due to Improper Input validation. <p>Publish Date: 2019-05-20 <p>URL: <a href=https://github.com/apache/commons-codec/commit/48b615756d1d770091ea3322eefc08011ee8b113>WS-2019-0379</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2019-05-12</p> <p>Fix Resolution: 1.13-RC1</p> </p> </details> <p></p>
True
WS-2019-0379 (Medium, non-reachable) detected in commons-codec-1.6.jar - ## WS-2019-0379 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>commons-codec-1.6.jar</b></p></summary> <p>The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.</p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /Users/alexmaybaum/.m2/repository/commons-codec/commons-codec/1.6/commons-codec-1.6.jar</p> <p> Dependency Hierarchy: - spring-rabbit-1.7.1.RELEASE.jar (Root Library) - http-client-1.1.1.RELEASE.jar - httpclient-4.3.6.jar - :x: **commons-codec-1.6.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/amaybaum-local/vprofile-project6/commit/59df3151ec29836b16779bec457178ffba859535">59df3151ec29836b16779bec457178ffba859535</a></p> <p>Found in base branch: <b>vp-rem</b></p> </p> </details> <p></p> <details><summary> <img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20> Reachability Analysis</summary> <p> <p>The vulnerable code is not reachable.</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> Apache commons-codec before version “commons-codec-1.13-RC1” is vulnerable to information disclosure due to Improper Input validation. <p>Publish Date: 2019-05-20 <p>URL: <a href=https://github.com/apache/commons-codec/commit/48b615756d1d770091ea3322eefc08011ee8b113>WS-2019-0379</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2019-05-12</p> <p>Fix Resolution: 1.13-RC1</p> </p> </details> <p></p>
non_priority
ws medium non reachable detected in commons codec jar ws medium severity vulnerability vulnerable library commons codec jar the codec package contains simple encoder and decoders for various formats such as and hexadecimal in addition to these widely used encoders and decoders the codec package also maintains a collection of phonetic encoding utilities path to dependency file pom xml path to vulnerable library users alexmaybaum repository commons codec commons codec commons codec jar dependency hierarchy spring rabbit release jar root library http client release jar httpclient jar x commons codec jar vulnerable library found in head commit a href found in base branch vp rem reachability analysis the vulnerable code is not reachable vulnerability details apache commons codec before version “commons codec ” is vulnerable to information disclosure due to improper input validation publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version release date fix resolution
0
67,750
8,180,020,162
IssuesEvent
2018-08-28 18:10:18
MozillaReality/FirefoxReality
https://api.github.com/repos/MozillaReality/FirefoxReality
closed
Improve Video Playback Experience / Add Theater Mode
Design
Hardware: All Steps to Reproduce: Attempt to play video, especially on YouTube or 360 videos Actual Behavior: Variety of problems including difficult controls, lack of 360 support, lack of dedicated viewing mode Expected Behavior: See below Recommendation: See below Note: all of the below needs Design. @thenadj Create a Video Playback/Theater mode. Recognize when user attempts to play video, and: - automatically support correct modes including 180/360 support (https://github.com/MozillaReality/FirefoxReality/issues/168) - implement theater room design/features (TBD design) - Explore default playback/transport controls over all experiences (TBD research if possible) - Explore if we can sniff video and automatically enter appropriate display mode (360/180/etc) without user having to "second click" into it First draft of VR Video sites that should "just work": (@cvan appreciate direct links/feedback!) - Within - YouTube - YouTube VR - New York Times 360 Videos - CNN VR - Vimeo 360 - 360cities.net
1.0
Improve Video Playback Experience / Add Theater Mode - Hardware: All Steps to Reproduce: Attempt to play video, especially on YouTube or 360 videos Actual Behavior: Variety of problems including difficult controls, lack of 360 support, lack of dedicated viewing mode Expected Behavior: See below Recommendation: See below Note: all of the below needs Design. @thenadj Create a Video Playback/Theater mode. Recognize when user attempts to play video, and: - automatically support correct modes including 180/360 support (https://github.com/MozillaReality/FirefoxReality/issues/168) - implement theater room design/features (TBD design) - Explore default playback/transport controls over all experiences (TBD research if possible) - Explore if we can sniff video and automatically enter appropriate display mode (360/180/etc) without user having to "second click" into it First draft of VR Video sites that should "just work": (@cvan appreciate direct links/feedback!) - Within - YouTube - YouTube VR - New York Times 360 Videos - CNN VR - Vimeo 360 - 360cities.net
non_priority
improve video playback experience add theater mode hardware all steps to reproduce attempt to play video especially on youtube or videos actual behavior variety of problems including difficult controls lack of support lack of dedicated viewing mode expected behavior see below recommendation see below note all of the below needs design thenadj create a video playback theater mode recognize when user attempts to play video and automatically support correct modes including support implement theater room design features tbd design explore default playback transport controls over all experiences tbd research if possible explore if we can sniff video and automatically enter appropriate display mode etc without user having to second click into it first draft of vr video sites that should just work cvan appreciate direct links feedback within youtube youtube vr new york times videos cnn vr vimeo net
0
8,915
4,351,220,110
IssuesEvent
2016-07-31 18:42:10
MozillaFoundation/Advocacy
https://api.github.com/repos/MozillaFoundation/Advocacy
opened
Nationbuilder integration agency: define scope of work
Maker Party Nationbuilder
As part of the contract negotiation process, we need to define the scope of work for the integration agency. In internal discussions we seem to have agreed that we'd like them to handle back-end set up as well as design and front-end development, but we should confirm this internally and with the agency. Reference: Functional scope (from project brief): https://docs.google.com/document/d/1g8wXqtjg52I8w8dkyRBKCwS-mjguNO6xidYeCirspY4/edit#heading=h.vdhcyxegi4ht Required pages: https://docs.google.com/document/d/1driaq40M1b085sbyDoJSQAFkMsvEPvhnux3E-ZIkHN8/edit# CC @simonwex @ScottDowne @cadecairos @lovegushwa
1.0
Nationbuilder integration agency: define scope of work - As part of the contract negotiation process, we need to define the scope of work for the integration agency. In internal discussions we seem to have agreed that we'd like them to handle back-end set up as well as design and front-end development, but we should confirm this internally and with the agency. Reference: Functional scope (from project brief): https://docs.google.com/document/d/1g8wXqtjg52I8w8dkyRBKCwS-mjguNO6xidYeCirspY4/edit#heading=h.vdhcyxegi4ht Required pages: https://docs.google.com/document/d/1driaq40M1b085sbyDoJSQAFkMsvEPvhnux3E-ZIkHN8/edit# CC @simonwex @ScottDowne @cadecairos @lovegushwa
non_priority
nationbuilder integration agency define scope of work as part of the contract negotiation process we need to define the scope of work for the integration agency in internal discussions we seem to have agreed that we d like them to handle back end set up as well as design and front end development but we should confirm this internally and with the agency reference functional scope from project brief required pages cc simonwex scottdowne cadecairos lovegushwa
0
4,713
2,870,751,400
IssuesEvent
2015-06-07 13:47:58
PHP-DI/PHP-DI
https://api.github.com/repos/PHP-DI/PHP-DI
closed
Update documentation and migration guide for the move to php-di/php-di
documentation
Update blog article + migration guide for the move to php-di/php-di
1.0
Update documentation and migration guide for the move to php-di/php-di - Update blog article + migration guide for the move to php-di/php-di
non_priority
update documentation and migration guide for the move to php di php di update blog article migration guide for the move to php di php di
0
215,166
16,654,008,872
IssuesEvent
2021-06-05 07:13:39
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: cdc/ledger failed
C-test-failure O-roachtest O-robot branch-release-20.1
[(roachtest).cdc/ledger failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615416&tab=buildLog) on [release-20.1@871056016d8a32ff20921b716f103e0e3abdd6e2](https://github.com/cockroachdb/cockroach/commits/871056016d8a32ff20921b716f103e0e3abdd6e2): ``` The test failed on branch=release-20.1, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/cdc/ledger/run_1 cdc.go:880,cdc.go:200,cdc.go:570,test_runner.go:749: max latency was more than allowed: 1m18.597441227s vs 1m0s ``` <details><summary>More</summary><p> Artifacts: [/cdc/ledger](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615416&tab=artifacts#/cdc/ledger) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Acdc%2Fledger.%2A&sort=title&restgroup=false&display=lastcommented+project) <sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
2.0
roachtest: cdc/ledger failed - [(roachtest).cdc/ledger failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615416&tab=buildLog) on [release-20.1@871056016d8a32ff20921b716f103e0e3abdd6e2](https://github.com/cockroachdb/cockroach/commits/871056016d8a32ff20921b716f103e0e3abdd6e2): ``` The test failed on branch=release-20.1, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/cdc/ledger/run_1 cdc.go:880,cdc.go:200,cdc.go:570,test_runner.go:749: max latency was more than allowed: 1m18.597441227s vs 1m0s ``` <details><summary>More</summary><p> Artifacts: [/cdc/ledger](https://teamcity.cockroachdb.com/viewLog.html?buildId=2615416&tab=artifacts#/cdc/ledger) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Acdc%2Fledger.%2A&sort=title&restgroup=false&display=lastcommented+project) <sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
non_priority
roachtest cdc ledger failed on the test failed on branch release cloud gce test artifacts and logs in home agent work go src github com cockroachdb cockroach artifacts cdc ledger run cdc go cdc go cdc go test runner go max latency was more than allowed vs more artifacts powered by
0
156,471
13,649,322,811
IssuesEvent
2020-09-26 13:55:05
pycroscopy/sidpy
https://api.github.com/repos/pycroscopy/sidpy
closed
Port plotting examples to notebook
documentation good first issue help wanted
We cannot demonstrate plots within docstrings' examples. Therefore, I suggest that the few visualization python scripts currently in the ``examples/viz`` directory be migrated to ``notebooks/viz`` as ``.ipynb`` files
1.0
Port plotting examples to notebook - We cannot demonstrate plots within docstrings' examples. Therefore, I suggest that the few visualization python scripts currently in the ``examples/viz`` directory be migrated to ``notebooks/viz`` as ``.ipynb`` files
non_priority
port plotting examples to notebook we cannot demonstrate plots within docstrings examples therefore i suggest that the few visualization python scripts currently in the examples viz directory be migrated to notebooks viz as ipynb files
0
384,969
26,610,130,862
IssuesEvent
2023-01-23 23:07:01
jupyter-widgets/ipywidgets
https://api.github.com/repos/jupyter-widgets/ipywidgets
closed
The documentation fails to build on ReadTheDocs
documentation
## Description The documentation fails to build on ReadTheDocs. ## Reproduce The docs seem to be failing to build recently. This was noticed in https://github.com/jupyter-widgets/ipywidgets/pull/3661#issuecomment-1371032922: https://readthedocs.org/projects/ipywidgets/builds/19070899/ The error message is: ``` Command killed due to timeout or excessive memory consumption ``` This also seems to be the case on `latest` and most of the PRs. ## Expected behavior Docs should build on ReadTheDocs. ## Context This was noticed in https://github.com/jupyter-widgets/ipywidgets/pull/3661#issuecomment-1371032922. - ipywidgets version: latest - Operating System and version: N/A - Browser and version: Any
1.0
The documentation fails to build on ReadTheDocs - ## Description The documentation fails to build on ReadTheDocs. ## Reproduce The docs seem to be failing to build recently. This was noticed in https://github.com/jupyter-widgets/ipywidgets/pull/3661#issuecomment-1371032922: https://readthedocs.org/projects/ipywidgets/builds/19070899/ The error message is: ``` Command killed due to timeout or excessive memory consumption ``` This also seems to be the case on `latest` and most of the PRs. ## Expected behavior Docs should build on ReadTheDocs. ## Context This was noticed in https://github.com/jupyter-widgets/ipywidgets/pull/3661#issuecomment-1371032922. - ipywidgets version: latest - Operating System and version: N/A - Browser and version: Any
non_priority
the documentation fails to build on readthedocs description the documentation fails to build on readthedocs reproduce the docs seem to be failing to build recently this was noticed in the error message is command killed due to timeout or excessive memory consumption this also seems to be the case on latest and most of the prs expected behavior docs should build on readthedocs context this was noticed in ipywidgets version latest operating system and version n a browser and version any
0
112,123
11,759,701,249
IssuesEvent
2020-03-13 17:49:04
adobe/spectrum-css
https://api.github.com/repos/adobe/spectrum-css
opened
Align build system to single docs solution
documentation
We have a bit of a fork in our docs solution right now. Given the noise that's creating, and the fact that we don't have bandwidth from either the CSS team or the published docs team to improve the shared code situation, let's temporarily utilize the testing docs as public docs and revisit shared code when we get more time.
1.0
Align build system to single docs solution - We have a bit of a fork in our docs solution right now. Given the noise that's creating, and the fact that we don't have bandwidth from either the CSS team or the published docs team to improve the shared code situation, let's temporarily utilize the testing docs as public docs and revisit shared code when we get more time.
non_priority
align build system to single docs solution we have a bit of a fork in our docs solution right now given the noise that s creating and the fact that we don t have bandwidth from either the css team or the published docs team to improve the shared code situation let s temporarily utilize the testing docs as public docs and revisit shared code when we get more time
0
36,517
6,537,694,116
IssuesEvent
2017-09-01 00:11:59
wende/elchemy
https://api.github.com/repos/wende/elchemy
closed
Make it clear everywhere about the new name of the project
Complexity:Simple Documentation Project:Branding
Stats for **elmchemy** on NPM for week 14-20.08.2017 <img width="372" alt="screen shot 2017-08-24 at 11 13 03" src="https://user-images.githubusercontent.com/4634386/29661883-4d6c0b70-88bd-11e7-8f74-d711d47f1323.png"> Stats for **elchemy** <img width="410" alt="screen shot 2017-08-24 at 11 14 06" src="https://user-images.githubusercontent.com/4634386/29661898-5ca9be3e-88bd-11e7-85fb-c38d5084d76f.png"> Hopefully updating the article to reflect new name will swap the numbers
1.0
Make it clear everywhere about the new name of the project - Stats for **elmchemy** on NPM for week 14-20.08.2017 <img width="372" alt="screen shot 2017-08-24 at 11 13 03" src="https://user-images.githubusercontent.com/4634386/29661883-4d6c0b70-88bd-11e7-8f74-d711d47f1323.png"> Stats for **elchemy** <img width="410" alt="screen shot 2017-08-24 at 11 14 06" src="https://user-images.githubusercontent.com/4634386/29661898-5ca9be3e-88bd-11e7-85fb-c38d5084d76f.png"> Hopefully updating the article to reflect new name will swap the numbers
non_priority
make it clear everywhere about the new name of the project stats for elmchemy on npm for week img width alt screen shot at src stats for elchemy img width alt screen shot at src hopefully updating the article to reflect new name will swap the numbers
0
277,601
30,659,858,602
IssuesEvent
2023-07-25 14:22:40
pazhanivel07/openssl_1_0_2
https://api.github.com/repos/pazhanivel07/openssl_1_0_2
opened
CVE-2009-4355 (Medium) detected in opensslOpenSSL_1_0_2
Mend: dependency security vulnerability
## CVE-2009-4355 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>opensslOpenSSL_1_0_2</b></p></summary> <p> <p>TLS/SSL and crypto library</p> <p>Library home page: <a href=https://github.com/openssl/openssl.git>https://github.com/openssl/openssl.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/pazhanivel07/openssl_1_0_2/commit/324810317981b91bee177f96efc4d7b59e34525c">324810317981b91bee177f96efc4d7b59e34525c</a></p> <p>Found in base branch: <b>main</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>/crypto/comp/c_zlib.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> Memory leak in the zlib_stateful_finish function in crypto/comp/c_zlib.c in OpenSSL 0.9.8l and earlier and 1.0.0 Beta through Beta 4 allows remote attackers to cause a denial of service (memory consumption) via vectors that trigger incorrect calls to the CRYPTO_cleanup_all_ex_data function, as demonstrated by use of SSLv3 and PHP with the Apache HTTP Server, a related issue to CVE-2008-1678. <p>Publish Date: 2010-01-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2009-4355>CVE-2009-4355</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4355">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4355</a></p> <p>Release Date: 2010-01-14</p> <p>Fix Resolution: 0.9.8m, 1.0.0beta5</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-2009-4355 (Medium) detected in opensslOpenSSL_1_0_2 - ## CVE-2009-4355 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>opensslOpenSSL_1_0_2</b></p></summary> <p> <p>TLS/SSL and crypto library</p> <p>Library home page: <a href=https://github.com/openssl/openssl.git>https://github.com/openssl/openssl.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/pazhanivel07/openssl_1_0_2/commit/324810317981b91bee177f96efc4d7b59e34525c">324810317981b91bee177f96efc4d7b59e34525c</a></p> <p>Found in base branch: <b>main</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>/crypto/comp/c_zlib.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> Memory leak in the zlib_stateful_finish function in crypto/comp/c_zlib.c in OpenSSL 0.9.8l and earlier and 1.0.0 Beta through Beta 4 allows remote attackers to cause a denial of service (memory consumption) via vectors that trigger incorrect calls to the CRYPTO_cleanup_all_ex_data function, as demonstrated by use of SSLv3 and PHP with the Apache HTTP Server, a related issue to CVE-2008-1678. <p>Publish Date: 2010-01-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2009-4355>CVE-2009-4355</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4355">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4355</a></p> <p>Release Date: 2010-01-14</p> <p>Fix Resolution: 0.9.8m, 1.0.0beta5</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 opensslopenssl cve medium severity vulnerability vulnerable library opensslopenssl tls ssl and crypto library library home page a href found in head commit a href found in base branch main vulnerable source files crypto comp c zlib c vulnerability details memory leak in the zlib stateful finish function in crypto comp c zlib c in openssl and earlier and beta through beta allows remote attackers to cause a denial of service memory consumption via vectors that trigger incorrect calls to the crypto cleanup all ex data function as demonstrated by use of and php with the apache http server a related issue to cve publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low 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
258,101
27,563,854,939
IssuesEvent
2023-03-08 01:11:15
billmcchesney1/t-vault
https://api.github.com/repos/billmcchesney1/t-vault
opened
WS-2014-0005 (High) detected in qs-0.4.2.tgz
security vulnerability
## WS-2014-0005 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>qs-0.4.2.tgz</b></p></summary> <p>querystring parser</p> <p>Library home page: <a href="https://registry.npmjs.org/qs/-/qs-0.4.2.tgz">https://registry.npmjs.org/qs/-/qs-0.4.2.tgz</a></p> <p>Path to dependency file: /tvaultui/package.json</p> <p>Path to vulnerable library: /tvaultui/node_modules/express/node_modules/qs/package.json</p> <p> Dependency Hierarchy: - browser-sync-2.9.12.tgz (Root Library) - browser-sync-ui-0.5.19.tgz - weinre-2.0.0-pre-I0Z7U9OV.tgz - express-2.5.11.tgz - :x: **qs-0.4.2.tgz** (Vulnerable Library) <p>Found in base branch: <b>dev</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> Denial-of-Service Extended Event Loop Blocking.The qs module does not have an option or default for specifying object depth and when parsing a string representing a deeply nested object will block the event loop for long periods of time <p>Publish Date: 2014-07-31 <p>URL: <a href=https://github.com/ljharb/qs/commit/6667340dd3c7deaa0eb1c27f175faaaf71f19823>WS-2014-0005</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/WS-2014-0005">https://nvd.nist.gov/vuln/detail/WS-2014-0005</a></p> <p>Release Date: 2014-07-31</p> <p>Fix Resolution (qs): 1.0.0</p> <p>Direct dependency fix Resolution (browser-sync): 2.19.0</p> </p> </details> <p></p> *** :rescue_worker_helmet: Automatic Remediation is available for this issue
True
WS-2014-0005 (High) detected in qs-0.4.2.tgz - ## WS-2014-0005 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>qs-0.4.2.tgz</b></p></summary> <p>querystring parser</p> <p>Library home page: <a href="https://registry.npmjs.org/qs/-/qs-0.4.2.tgz">https://registry.npmjs.org/qs/-/qs-0.4.2.tgz</a></p> <p>Path to dependency file: /tvaultui/package.json</p> <p>Path to vulnerable library: /tvaultui/node_modules/express/node_modules/qs/package.json</p> <p> Dependency Hierarchy: - browser-sync-2.9.12.tgz (Root Library) - browser-sync-ui-0.5.19.tgz - weinre-2.0.0-pre-I0Z7U9OV.tgz - express-2.5.11.tgz - :x: **qs-0.4.2.tgz** (Vulnerable Library) <p>Found in base branch: <b>dev</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> Denial-of-Service Extended Event Loop Blocking.The qs module does not have an option or default for specifying object depth and when parsing a string representing a deeply nested object will block the event loop for long periods of time <p>Publish Date: 2014-07-31 <p>URL: <a href=https://github.com/ljharb/qs/commit/6667340dd3c7deaa0eb1c27f175faaaf71f19823>WS-2014-0005</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/WS-2014-0005">https://nvd.nist.gov/vuln/detail/WS-2014-0005</a></p> <p>Release Date: 2014-07-31</p> <p>Fix Resolution (qs): 1.0.0</p> <p>Direct dependency fix Resolution (browser-sync): 2.19.0</p> </p> </details> <p></p> *** :rescue_worker_helmet: Automatic Remediation is available for this issue
non_priority
ws high detected in qs tgz ws high severity vulnerability vulnerable library qs tgz querystring parser library home page a href path to dependency file tvaultui package json path to vulnerable library tvaultui node modules express node modules qs package json dependency hierarchy browser sync tgz root library browser sync ui tgz weinre pre tgz express tgz x qs tgz vulnerable library found in base branch dev vulnerability details denial of service extended event loop blocking the qs module does not have an option or default for specifying object depth and when parsing a string representing a deeply nested object will block the event loop for long periods of time publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution qs direct dependency fix resolution browser sync rescue worker helmet automatic remediation is available for this issue
0
45,799
5,733,094,314
IssuesEvent
2017-04-21 16:20:45
PowerShell/PowerShell
https://api.github.com/repos/PowerShell/PowerShell
opened
Implement Enable-SSHRemoting cmdlet
Area-Remoting Area-Test Issue-Enhancement
We need an Enable-SSHRemoting cmdlet, similar to existing Enable-PSSession cmdlet for WinRM based remoting, to set up SSH remoting on supported platforms. This would make using SSH remoting easier to use and also allow automated testing of SSH remoting. https://github.com/PowerShell/PowerShell-RFC/blob/master/1-Draft/RFC0012-Enable-SSH-Remoting.md
1.0
Implement Enable-SSHRemoting cmdlet - We need an Enable-SSHRemoting cmdlet, similar to existing Enable-PSSession cmdlet for WinRM based remoting, to set up SSH remoting on supported platforms. This would make using SSH remoting easier to use and also allow automated testing of SSH remoting. https://github.com/PowerShell/PowerShell-RFC/blob/master/1-Draft/RFC0012-Enable-SSH-Remoting.md
non_priority
implement enable sshremoting cmdlet we need an enable sshremoting cmdlet similar to existing enable pssession cmdlet for winrm based remoting to set up ssh remoting on supported platforms this would make using ssh remoting easier to use and also allow automated testing of ssh remoting
0
215,626
16,612,039,171
IssuesEvent
2021-06-02 12:44:14
telerik/kendo-angular
https://api.github.com/repos/telerik/kendo-angular
opened
[MultiSelectTree] Heterogenous Data example is broken
Documentation Team1 pkg:dropdowns
**Describe the bug** The example from [this article](https://www.telerik.com/kendo-angular-ui-develop/components/dropdowns/multiselecttree/data-binding/#toc-heterogenous-data) is broken. When selecting a child item from the first parent, the second parent gets selected as well, due to the different fields passed to the **textField** and **valueField** properties: ```html [textField]="['categoryName', 'subCategoryName']" [valueField]="['categoryId', 'subCategoryId']" ``` Refer to the following screencast: https://screenrec.com/share/B8IV3uKw9l The example works as expected if **valueField** array includes the same fields as **textField** input: ```html [textField]="['categoryName', 'subCategoryName']" [valueField]="['categoryName', 'subCategoryName']" ``` **To Reproduce** https://stackblitz.com/edit/angular-zh76zs
1.0
[MultiSelectTree] Heterogenous Data example is broken - **Describe the bug** The example from [this article](https://www.telerik.com/kendo-angular-ui-develop/components/dropdowns/multiselecttree/data-binding/#toc-heterogenous-data) is broken. When selecting a child item from the first parent, the second parent gets selected as well, due to the different fields passed to the **textField** and **valueField** properties: ```html [textField]="['categoryName', 'subCategoryName']" [valueField]="['categoryId', 'subCategoryId']" ``` Refer to the following screencast: https://screenrec.com/share/B8IV3uKw9l The example works as expected if **valueField** array includes the same fields as **textField** input: ```html [textField]="['categoryName', 'subCategoryName']" [valueField]="['categoryName', 'subCategoryName']" ``` **To Reproduce** https://stackblitz.com/edit/angular-zh76zs
non_priority
heterogenous data example is broken describe the bug the example from is broken when selecting a child item from the first parent the second parent gets selected as well due to the different fields passed to the textfield and valuefield properties html refer to the following screencast the example works as expected if valuefield array includes the same fields as textfield input html to reproduce
0
211,528
23,833,137,455
IssuesEvent
2022-09-06 01:06:45
carterwss/gradle-ghe
https://api.github.com/repos/carterwss/gradle-ghe
opened
CVE-2022-38749 (Medium) detected in snakeyaml-1.19.jar
security vulnerability
## CVE-2022-38749 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>snakeyaml-1.19.jar</b></p></summary> <p>YAML 1.1 parser and emitter for Java</p> <p>Library home page: <a href="http://www.snakeyaml.org">http://www.snakeyaml.org</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /dle/caches/modules-2/files-2.1/org.yaml/snakeyaml/1.19/2d998d3d674b172a588e54ab619854d073f555b5/snakeyaml-1.19.jar</p> <p> Dependency Hierarchy: - :x: **snakeyaml-1.19.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/carterwss/gradle-ghe/commit/4daeb7eeb28d30e4e98411a0afa21a220345b1eb">4daeb7eeb28d30e4e98411a0afa21a220345b1eb</a></p> <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Using snakeYAML to parse untrusted YAML files may be vulnerable to Denial of Service attacks (DOS). If the parser is running on user supplied input, an attacker may supply content that causes the parser to crash by stackoverflow. <p>Publish Date: 2022-09-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-38749>CVE-2022-38749</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://bitbucket.org/snakeyaml/snakeyaml/issues/525/got-stackoverflowerror-for-many-open">https://bitbucket.org/snakeyaml/snakeyaml/issues/525/got-stackoverflowerror-for-many-open</a></p> <p>Release Date: 2022-09-05</p> <p>Fix Resolution: org.yaml:snakeyaml:1.31</p> </p> </details> <p></p> *** <!-- REMEDIATE-OPEN-PR-START --> - [ ] Check this box to open an automated fix PR <!-- REMEDIATE-OPEN-PR-END -->
True
CVE-2022-38749 (Medium) detected in snakeyaml-1.19.jar - ## CVE-2022-38749 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>snakeyaml-1.19.jar</b></p></summary> <p>YAML 1.1 parser and emitter for Java</p> <p>Library home page: <a href="http://www.snakeyaml.org">http://www.snakeyaml.org</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /dle/caches/modules-2/files-2.1/org.yaml/snakeyaml/1.19/2d998d3d674b172a588e54ab619854d073f555b5/snakeyaml-1.19.jar</p> <p> Dependency Hierarchy: - :x: **snakeyaml-1.19.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/carterwss/gradle-ghe/commit/4daeb7eeb28d30e4e98411a0afa21a220345b1eb">4daeb7eeb28d30e4e98411a0afa21a220345b1eb</a></p> <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Using snakeYAML to parse untrusted YAML files may be vulnerable to Denial of Service attacks (DOS). If the parser is running on user supplied input, an attacker may supply content that causes the parser to crash by stackoverflow. <p>Publish Date: 2022-09-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-38749>CVE-2022-38749</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://bitbucket.org/snakeyaml/snakeyaml/issues/525/got-stackoverflowerror-for-many-open">https://bitbucket.org/snakeyaml/snakeyaml/issues/525/got-stackoverflowerror-for-many-open</a></p> <p>Release Date: 2022-09-05</p> <p>Fix Resolution: org.yaml:snakeyaml:1.31</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 snakeyaml jar cve medium severity vulnerability vulnerable library snakeyaml jar yaml parser and emitter for java library home page a href path to dependency file build gradle path to vulnerable library dle caches modules files org yaml snakeyaml snakeyaml jar dependency hierarchy x snakeyaml jar vulnerable library found in head commit a href found in base branch main vulnerability details using snakeyaml to parse untrusted yaml files may be vulnerable to denial of service attacks dos if the parser is running on user supplied input an attacker may supply content that causes the parser to crash by stackoverflow publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org yaml snakeyaml check this box to open an automated fix pr
0
322,249
27,591,252,050
IssuesEvent
2023-03-09 00:40:21
devssa/onde-codar-em-salvador
https://api.github.com/repos/devssa/onde-codar-em-salvador
closed
[REMOTO] [TAMBÉM PCD] [C#] [PYTHON] [JAVA] Arquitetura de Software na [AMBEV TECH]
HOME OFFICE JAVA PYTHON C# SQL TESTE DE INTEGRAÇÃO DOCKER KUBERNETES NOSQL DEVOPS REMOTO AZURE METODOLOGIAS ÁGEIS HELP WANTED VAGA PARA PCD TAMBÉM ARQUITETURA DE SOFTWARE TESTES DE UNIDADE Stale
<!-- ================================================== POR FAVOR, SÓ POSTE SE A VAGA FOR PARA SALVADOR E CIDADES VIZINHAS! Use: "Desenvolvedor Front-end" ao invés de "Front-End Developer" \o/ Exemplo: `[JAVASCRIPT] [MYSQL] [NODE.JS] Desenvolvedor Front-End na [NOME DA EMPRESA]` ================================================== --> ## Descrição da vaga - Por trás de uma solução de qualidade, tem sempre uma arquitetura sofisticada. Por isso, estamos em busca de profissional capaz de desenhar a melhor estrutura para os nossos produtos, para que possam se integrar e gerar soluções de valor ao cliente. - Para atuar com Arquitetura de Software na Ambev Tech, você deverá ser capaz de identificar e introduzir tecnologias e padrões de desenvolvimento para garantir a melhor solução técnica aderente aos requisitos. - Você tem esse perfil? Então a sua jornada é com a gente! ## Local - Home Office ## Benefícios - Jornada de trabalho de 40 horas semanais; - Vale refeição ou alimentação; - Vale transporte; - PPR; - Plano de saúde (para colaborador e dependentes, sem taxa de mensalidade); - Convênio odontológico; - Auxílio educação; - Self Learning (auxílio em cursos, certificações e idiomas); - Seguro de vida; - Empresa cidadã (licença maternidade e paternidade) e presente do bebê; - Mercadotech (aplicativo de desconto nos produtos AMBEV); - Day off de aniversário; - Banco de horas; - Brahma Express; - Gympass. ## Requisitos **Obrigatórios:** - Vivência com algum dos nossos ecossistemas (C#, Java, Python, Goland); - Experiência com Arquitetura e modelagem de sistemas; - Conhecimento ou experiência em Azure Cloud e Azure DevOps; - Conhecimento ou experiência com containers (Kubernetes, Docker Swarm); - SQL e NoSQL; - Mensageria (RabbitmQ, Azure Service Bus); - Testes de unidade e testes de integração; - Vivência com Metodologias Ágeis. **Diferenciais:** - Inglês intermediário ou avançado. ## Contratação - Efetivo ## Nossa empresa - Há 30 anos, temos a missão de transformar o dia a dia da maior cervejaria do planeta. Fazemos isso com um time incrível de pessoas apaixonadas e unidas em um único propósito: mudar o mundo com tecnologia. - Buscamos entregar as melhores experiências e trazer soluções ágeis e descomplicadas para fazer a bebida chegar do campo ao copo. Todos os dias, impactamos milhares de pessoas. Cada brinde tem um pouquinho de nós. Essa é a nossa jornada, é o que fazemos e o que somos. - Somos feitos de pessoas. - Acreditamos na diversidade e no quanto ela é capaz de fazer a gente evoluir. É através da pluralidade de ideias, de experiências e opiniões que conseguimos pensar fora da caixa e trazer soluções inovadoras. Pra gente, diversidade e inclusão são assuntos sérios! Por isso, contamos com um Comitê de Autenticidade Tech para olhar essas questões com muito carinho e responsabilidade. ## Como se candidatar - [Clique aqui para se candidatar](https://ambevtech.gupy.io/jobs/582966)
2.0
[REMOTO] [TAMBÉM PCD] [C#] [PYTHON] [JAVA] Arquitetura de Software na [AMBEV TECH] - <!-- ================================================== POR FAVOR, SÓ POSTE SE A VAGA FOR PARA SALVADOR E CIDADES VIZINHAS! Use: "Desenvolvedor Front-end" ao invés de "Front-End Developer" \o/ Exemplo: `[JAVASCRIPT] [MYSQL] [NODE.JS] Desenvolvedor Front-End na [NOME DA EMPRESA]` ================================================== --> ## Descrição da vaga - Por trás de uma solução de qualidade, tem sempre uma arquitetura sofisticada. Por isso, estamos em busca de profissional capaz de desenhar a melhor estrutura para os nossos produtos, para que possam se integrar e gerar soluções de valor ao cliente. - Para atuar com Arquitetura de Software na Ambev Tech, você deverá ser capaz de identificar e introduzir tecnologias e padrões de desenvolvimento para garantir a melhor solução técnica aderente aos requisitos. - Você tem esse perfil? Então a sua jornada é com a gente! ## Local - Home Office ## Benefícios - Jornada de trabalho de 40 horas semanais; - Vale refeição ou alimentação; - Vale transporte; - PPR; - Plano de saúde (para colaborador e dependentes, sem taxa de mensalidade); - Convênio odontológico; - Auxílio educação; - Self Learning (auxílio em cursos, certificações e idiomas); - Seguro de vida; - Empresa cidadã (licença maternidade e paternidade) e presente do bebê; - Mercadotech (aplicativo de desconto nos produtos AMBEV); - Day off de aniversário; - Banco de horas; - Brahma Express; - Gympass. ## Requisitos **Obrigatórios:** - Vivência com algum dos nossos ecossistemas (C#, Java, Python, Goland); - Experiência com Arquitetura e modelagem de sistemas; - Conhecimento ou experiência em Azure Cloud e Azure DevOps; - Conhecimento ou experiência com containers (Kubernetes, Docker Swarm); - SQL e NoSQL; - Mensageria (RabbitmQ, Azure Service Bus); - Testes de unidade e testes de integração; - Vivência com Metodologias Ágeis. **Diferenciais:** - Inglês intermediário ou avançado. ## Contratação - Efetivo ## Nossa empresa - Há 30 anos, temos a missão de transformar o dia a dia da maior cervejaria do planeta. Fazemos isso com um time incrível de pessoas apaixonadas e unidas em um único propósito: mudar o mundo com tecnologia. - Buscamos entregar as melhores experiências e trazer soluções ágeis e descomplicadas para fazer a bebida chegar do campo ao copo. Todos os dias, impactamos milhares de pessoas. Cada brinde tem um pouquinho de nós. Essa é a nossa jornada, é o que fazemos e o que somos. - Somos feitos de pessoas. - Acreditamos na diversidade e no quanto ela é capaz de fazer a gente evoluir. É através da pluralidade de ideias, de experiências e opiniões que conseguimos pensar fora da caixa e trazer soluções inovadoras. Pra gente, diversidade e inclusão são assuntos sérios! Por isso, contamos com um Comitê de Autenticidade Tech para olhar essas questões com muito carinho e responsabilidade. ## Como se candidatar - [Clique aqui para se candidatar](https://ambevtech.gupy.io/jobs/582966)
non_priority
arquitetura de software na por favor só poste se a vaga for para salvador e cidades vizinhas use desenvolvedor front end ao invés de front end developer o exemplo desenvolvedor front end na descrição da vaga por trás de uma solução de qualidade tem sempre uma arquitetura sofisticada por isso estamos em busca de profissional capaz de desenhar a melhor estrutura para os nossos produtos para que possam se integrar e gerar soluções de valor ao cliente para atuar com arquitetura de software na ambev tech você deverá ser capaz de identificar e introduzir tecnologias e padrões de desenvolvimento para garantir a melhor solução técnica aderente aos requisitos você tem esse perfil então a sua jornada é com a gente local home office benefícios jornada de trabalho de horas semanais vale refeição ou alimentação vale transporte ppr plano de saúde para colaborador e dependentes sem taxa de mensalidade convênio odontológico auxílio educação self learning auxílio em cursos certificações e idiomas seguro de vida empresa cidadã licença maternidade e paternidade e presente do bebê mercadotech aplicativo de desconto nos produtos ambev day off de aniversário banco de horas brahma express gympass requisitos obrigatórios vivência com algum dos nossos ecossistemas c java python goland experiência com arquitetura e modelagem de sistemas conhecimento ou experiência em azure cloud e azure devops conhecimento ou experiência com containers kubernetes docker swarm sql e nosql mensageria rabbitmq azure service bus testes de unidade e testes de integração vivência com metodologias ágeis diferenciais inglês intermediário ou avançado contratação efetivo nossa empresa há anos temos a missão de transformar o dia a dia da maior cervejaria do planeta fazemos isso com um time incrível de pessoas apaixonadas e unidas em um único propósito mudar o mundo com tecnologia buscamos entregar as melhores experiências e trazer soluções ágeis e descomplicadas para fazer a bebida chegar do campo ao copo todos os dias impactamos milhares de pessoas cada brinde tem um pouquinho de nós essa é a nossa jornada é o que fazemos e o que somos somos feitos de pessoas acreditamos na diversidade e no quanto ela é capaz de fazer a gente evoluir é através da pluralidade de ideias de experiências e opiniões que conseguimos pensar fora da caixa e trazer soluções inovadoras pra gente diversidade e inclusão são assuntos sérios por isso contamos com um comitê de autenticidade tech para olhar essas questões com muito carinho e responsabilidade como se candidatar
0
158,781
13,747,469,072
IssuesEvent
2020-10-06 07:40:03
jenkins-infra/jenkins.io
https://api.github.com/repos/jenkins-infra/jenkins.io
closed
Redirect 'Configuring Jenkins upon start up' from wiki to docs site
documentation good first issue
## Essential information Page to Migrate: https://wiki.jenkins.io/display/JENKINS/Configuring+Jenkins+upon+start+up Redirect to the destination: https://www.jenkins.io/doc/book/managing/groovy-hook-scripts ## Redirecting pages A redirect should be setup, by sending a PR to this file: https://github.com/jenkins-infra/jenkins-infra/blob/staging/dist/profile/templates/confluence/vhost.conf, see [past PRs](https://github.com/jenkins-infra/jenkins-infra/pull/1542) for examples.
1.0
Redirect 'Configuring Jenkins upon start up' from wiki to docs site - ## Essential information Page to Migrate: https://wiki.jenkins.io/display/JENKINS/Configuring+Jenkins+upon+start+up Redirect to the destination: https://www.jenkins.io/doc/book/managing/groovy-hook-scripts ## Redirecting pages A redirect should be setup, by sending a PR to this file: https://github.com/jenkins-infra/jenkins-infra/blob/staging/dist/profile/templates/confluence/vhost.conf, see [past PRs](https://github.com/jenkins-infra/jenkins-infra/pull/1542) for examples.
non_priority
redirect configuring jenkins upon start up from wiki to docs site essential information page to migrate redirect to the destination redirecting pages a redirect should be setup by sending a pr to this file see for examples
0
286,880
24,791,884,720
IssuesEvent
2022-10-24 14:19:50
EscherLabs/Graphene
https://api.github.com/repos/EscherLabs/Graphene
closed
Graphene Workflows: File drag and drop section has a typo in the help text
bug workflows awaiting test
**Description** An end user has reported that the file upload (drag and drop section) has a typo in its help text. The text is **Drop files here to upload attatchments** , and it should be fixed to **Drop files here to upload attachments** **Feature / Subsystem** Graphene Workflows **To Reproduce** Steps to reproduce the behavior. 1. Go to https://my.binghamton.edu/workflow/153/title_f_leave_eform 2. Scroll down to the bottom of the form 3. See the typo: **Drop files here to upload attatchments** text in the file drag and drop section **Console Errors** None **Link(s)** Provide any relevant links which display the issue you are experiencing. Wherever possible, this should point to a purpose-built example which clearly displays the behavior in question. (Unless there are issues related to permissions or privacy, this section should never be left blank) **Additional context** Link to the dev form: https://my.binghamton.edu/workflow/153/title_f_leave_eform
1.0
Graphene Workflows: File drag and drop section has a typo in the help text - **Description** An end user has reported that the file upload (drag and drop section) has a typo in its help text. The text is **Drop files here to upload attatchments** , and it should be fixed to **Drop files here to upload attachments** **Feature / Subsystem** Graphene Workflows **To Reproduce** Steps to reproduce the behavior. 1. Go to https://my.binghamton.edu/workflow/153/title_f_leave_eform 2. Scroll down to the bottom of the form 3. See the typo: **Drop files here to upload attatchments** text in the file drag and drop section **Console Errors** None **Link(s)** Provide any relevant links which display the issue you are experiencing. Wherever possible, this should point to a purpose-built example which clearly displays the behavior in question. (Unless there are issues related to permissions or privacy, this section should never be left blank) **Additional context** Link to the dev form: https://my.binghamton.edu/workflow/153/title_f_leave_eform
non_priority
graphene workflows file drag and drop section has a typo in the help text description an end user has reported that the file upload drag and drop section has a typo in its help text the text is drop files here to upload attatchments and it should be fixed to drop files here to upload attachments feature subsystem graphene workflows to reproduce steps to reproduce the behavior go to scroll down to the bottom of the form see the typo drop files here to upload attatchments text in the file drag and drop section console errors none link s provide any relevant links which display the issue you are experiencing wherever possible this should point to a purpose built example which clearly displays the behavior in question unless there are issues related to permissions or privacy this section should never be left blank additional context link to the dev form
0
102,018
16,543,128,840
IssuesEvent
2021-05-27 19:36:32
RG4421/grafana
https://api.github.com/repos/RG4421/grafana
opened
CVE-2021-23386 (High) detected in dns-packet-1.3.1.tgz
security vulnerability
## CVE-2021-23386 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>dns-packet-1.3.1.tgz</b></p></summary> <p>An abstract-encoding compliant module for encoding / decoding DNS packets</p> <p>Library home page: <a href="https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz">https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz</a></p> <p>Path to dependency file: grafana/package.json</p> <p>Path to vulnerable library: grafana/node_modules/dns-packet</p> <p> Dependency Hierarchy: - webpack-dev-server-3.11.1.tgz (Root Library) - bonjour-3.5.0.tgz - multicast-dns-6.2.3.tgz - :x: **dns-packet-1.3.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/RG4421/grafana/commit/ec817a5e348ac0cae2aa8950a6cd386b9a378f92">ec817a5e348ac0cae2aa8950a6cd386b9a378f92</a></p> <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> This affects the package dns-packet before 5.2.2. It creates buffers with allocUnsafe and does not always fill them before forming network packets. This can expose internal application memory over unencrypted network when querying crafted invalid domain names. <p>Publish Date: 2021-05-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23386>CVE-2021-23386</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.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23386">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23386</a></p> <p>Release Date: 2021-05-20</p> <p>Fix Resolution: dns-packet - 5.2.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"dns-packet","packageVersion":"1.3.1","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"webpack-dev-server:3.11.1;bonjour:3.5.0;multicast-dns:6.2.3;dns-packet:1.3.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"dns-packet - 5.2.2"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-23386","vulnerabilityDetails":"This affects the package dns-packet before 5.2.2. It creates buffers with allocUnsafe and does not always fill them before forming network packets. This can expose internal application memory over unencrypted network when querying crafted invalid domain names.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23386","cvss3Severity":"high","cvss3Score":"7.7","cvss3Metrics":{"A":"Low","AC":"High","PR":"Low","S":"Changed","C":"High","UI":"None","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
True
CVE-2021-23386 (High) detected in dns-packet-1.3.1.tgz - ## CVE-2021-23386 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>dns-packet-1.3.1.tgz</b></p></summary> <p>An abstract-encoding compliant module for encoding / decoding DNS packets</p> <p>Library home page: <a href="https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz">https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz</a></p> <p>Path to dependency file: grafana/package.json</p> <p>Path to vulnerable library: grafana/node_modules/dns-packet</p> <p> Dependency Hierarchy: - webpack-dev-server-3.11.1.tgz (Root Library) - bonjour-3.5.0.tgz - multicast-dns-6.2.3.tgz - :x: **dns-packet-1.3.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/RG4421/grafana/commit/ec817a5e348ac0cae2aa8950a6cd386b9a378f92">ec817a5e348ac0cae2aa8950a6cd386b9a378f92</a></p> <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> This affects the package dns-packet before 5.2.2. It creates buffers with allocUnsafe and does not always fill them before forming network packets. This can expose internal application memory over unencrypted network when querying crafted invalid domain names. <p>Publish Date: 2021-05-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23386>CVE-2021-23386</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.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23386">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23386</a></p> <p>Release Date: 2021-05-20</p> <p>Fix Resolution: dns-packet - 5.2.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"dns-packet","packageVersion":"1.3.1","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"webpack-dev-server:3.11.1;bonjour:3.5.0;multicast-dns:6.2.3;dns-packet:1.3.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"dns-packet - 5.2.2"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-23386","vulnerabilityDetails":"This affects the package dns-packet before 5.2.2. It creates buffers with allocUnsafe and does not always fill them before forming network packets. This can expose internal application memory over unencrypted network when querying crafted invalid domain names.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23386","cvss3Severity":"high","cvss3Score":"7.7","cvss3Metrics":{"A":"Low","AC":"High","PR":"Low","S":"Changed","C":"High","UI":"None","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
non_priority
cve high detected in dns packet tgz cve high severity vulnerability vulnerable library dns packet tgz an abstract encoding compliant module for encoding decoding dns packets library home page a href path to dependency file grafana package json path to vulnerable library grafana node modules dns packet dependency hierarchy webpack dev server tgz root library bonjour tgz multicast dns tgz x dns packet tgz vulnerable library found in head commit a href found in base branch main vulnerability details this affects the package dns packet before it creates buffers with allocunsafe and does not always fill them before forming network packets this can expose internal application memory over unencrypted network when querying crafted invalid domain names publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required low user interaction none scope changed impact metrics confidentiality impact high 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 dns packet isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree webpack dev server bonjour multicast dns dns packet isminimumfixversionavailable true minimumfixversion dns packet basebranches vulnerabilityidentifier cve vulnerabilitydetails this affects the package dns packet before it creates buffers with allocunsafe and does not always fill them before forming network packets this can expose internal application memory over unencrypted network when querying crafted invalid domain names vulnerabilityurl
0
122,151
12,142,141,540
IssuesEvent
2020-04-24 00:39:27
dotnet/diagnostics
https://api.github.com/repos/dotnet/diagnostics
opened
Create a documentation page for runtime events specific to CoreCLR
documentation p1
We have https://docs.microsoft.com/en-us/dotnet/framework/performance/clr-etw-events that describe events emitted by CLR (from .NET Framework days) but these contain events that are no longer emitted by CoreCLR and some event payloads have changed. We should create a page describing events that's specific to CoreCLR.
1.0
Create a documentation page for runtime events specific to CoreCLR - We have https://docs.microsoft.com/en-us/dotnet/framework/performance/clr-etw-events that describe events emitted by CLR (from .NET Framework days) but these contain events that are no longer emitted by CoreCLR and some event payloads have changed. We should create a page describing events that's specific to CoreCLR.
non_priority
create a documentation page for runtime events specific to coreclr we have that describe events emitted by clr from net framework days but these contain events that are no longer emitted by coreclr and some event payloads have changed we should create a page describing events that s specific to coreclr
0
85,452
15,736,716,261
IssuesEvent
2021-03-30 01:16:24
jrrk/riscv-poky
https://api.github.com/repos/jrrk/riscv-poky
opened
CVE-2018-20677 (Medium) detected in bootstrap-2.3.2.min.js
security vulnerability
## CVE-2018-20677 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-2.3.2.min.js</b></p></summary> <p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/js/bootstrap.min.js</a></p> <p>Path to vulnerable library: riscv-poky/bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js</p> <p> Dependency Hierarchy: - :x: **bootstrap-2.3.2.min.js** (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 Bootstrap before 3.4.0, XSS is possible in the affix configuration target property. <p>Publish Date: 2019-01-09 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20677>CVE-2018-20677</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677</a></p> <p>Release Date: 2019-01-09</p> <p>Fix Resolution: Bootstrap - v3.4.0;NorDroN.AngularTemplate - 0.1.6;Dynamic.NET.Express.ProjectTemplates - 0.8.0;dotnetng.template - 1.0.0.4;ZNxtApp.Core.Module.Theme - 1.0.9-Beta;JMeter - 5.0.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2018-20677 (Medium) detected in bootstrap-2.3.2.min.js - ## CVE-2018-20677 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-2.3.2.min.js</b></p></summary> <p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/js/bootstrap.min.js</a></p> <p>Path to vulnerable library: riscv-poky/bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js</p> <p> Dependency Hierarchy: - :x: **bootstrap-2.3.2.min.js** (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 Bootstrap before 3.4.0, XSS is possible in the affix configuration target property. <p>Publish Date: 2019-01-09 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20677>CVE-2018-20677</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677</a></p> <p>Release Date: 2019-01-09</p> <p>Fix Resolution: Bootstrap - v3.4.0;NorDroN.AngularTemplate - 0.1.6;Dynamic.NET.Express.ProjectTemplates - 0.8.0;dotnetng.template - 1.0.0.4;ZNxtApp.Core.Module.Theme - 1.0.9-Beta;JMeter - 5.0.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium detected in bootstrap min js cve medium severity vulnerability vulnerable library bootstrap min js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library riscv poky bitbake lib toaster toastergui static js bootstrap min js dependency hierarchy x bootstrap min js vulnerable library vulnerability details in bootstrap before xss is possible in the affix configuration target property publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution bootstrap nordron angulartemplate dynamic net express projecttemplates dotnetng template znxtapp core module theme beta jmeter step up your open source security game with whitesource
0
81,253
10,229,303,190
IssuesEvent
2019-08-17 11:20:45
rompetomp/inertia-bundle
https://api.github.com/repos/rompetomp/inertia-bundle
closed
Encore configuration examples for the available adapters
documentation
First of all, thanks for providing a way to use Inertia.js with Symfony, I really want to take it for a test drive. And this might be out of scope for your project but I still wanted to give it a shot. This project's README says: > Find a frontend adapter that you wish to use here https://github.com/inertiajs. The README's are using Laravel's Webpack Mix. It's not hard translating this to Webpack Encore, just follow the documentation Actually it's hard for me, as I haven't worked with Encore or Mix before and only have basic Webpack knowledge. So maybe you could provide example configurations for one or more of the available adapters.
1.0
Encore configuration examples for the available adapters - First of all, thanks for providing a way to use Inertia.js with Symfony, I really want to take it for a test drive. And this might be out of scope for your project but I still wanted to give it a shot. This project's README says: > Find a frontend adapter that you wish to use here https://github.com/inertiajs. The README's are using Laravel's Webpack Mix. It's not hard translating this to Webpack Encore, just follow the documentation Actually it's hard for me, as I haven't worked with Encore or Mix before and only have basic Webpack knowledge. So maybe you could provide example configurations for one or more of the available adapters.
non_priority
encore configuration examples for the available adapters first of all thanks for providing a way to use inertia js with symfony i really want to take it for a test drive and this might be out of scope for your project but i still wanted to give it a shot this project s readme says find a frontend adapter that you wish to use here the readme s are using laravel s webpack mix it s not hard translating this to webpack encore just follow the documentation actually it s hard for me as i haven t worked with encore or mix before and only have basic webpack knowledge so maybe you could provide example configurations for one or more of the available adapters
0
45,188
23,944,658,816
IssuesEvent
2022-09-12 05:50:02
pest-parser/pest
https://api.github.com/repos/pest-parser/pest
closed
line_col method N times slow in large file.
bug runtime-performance
When use pest in a large content file (about 700 KB JSON file), the `Pair<R>` to call `line_col` looks like has performance issue **O(N)**. Source code ref: https://github.com/huacnlee/autocorrect/blob/v1.4.4/src/lib/src/code.rs#L56 The large file case: https://github.com/microsoft/vscode-loc/blob/release/1.62.0/i18n/vscode-language-pack-zh-hans/translations/main.i18n.json ```rust // 200ns let span = item.as_span(); // 48ns let start_pos = span.start_pos(); let start = std::time::Instant::now(); let (part_line, part_col) = start_pos.line_col(); println!( "line_col: {}ns, {}ms", start.elapsed().as_nanos(), start.elapsed().as_millis() ); ``` The benchmark result: ``` line_col: 1545291ns, 1ms line_col: 1533083ns, 1ms line_col: 1581541ns, 1ms line_col: 1537250ns, 1ms line_col: 1543208ns, 1ms .... line_col: 2226208ns, 2ms line_col: 2244875ns, 2ms line_col: 2229541ns, 2ms line_col: 2299000ns, 2ms line_col: 2235958ns, 2ms .... line_col: 3397791ns, 3ms line_col: 3398291ns, 3ms line_col: 3402250ns, 3ms line_col: 3433666ns, 3ms line_col: 3409250ns, 3ms .... line_col: 4089000ns, 4ms line_col: 4078750ns, 4ms line_col: 4084083ns, 4ms line_col: 4128250ns, 4ms line_col: 4095708ns, 4ms .... line_col: 5021375ns, 5ms line_col: 5118083ns, 5ms line_col: 5028333ns, 5ms line_col: 5065166ns, 5ms line_col: 5030750ns, 5ms ... line_col: 6076458ns, 6ms line_col: 6124375ns, 6ms line_col: 6077041ns, 6ms line_col: 6078041ns, 6ms line_col: 6081791ns, 6ms line_col: 6082208ns, 6ms line_col: 6119625ns, 6ms ... line_col: 7365125ns, 7ms line_col: 7368541ns, 7ms line_col: 7374416ns, 7ms line_col: 7373250ns, 7ms line_col: 7366041ns, 7ms line_col: 7372750ns, 7ms ... line_col: 8363541ns, 8ms line_col: 8379583ns, 8ms line_col: 8375083ns, 8ms line_col: 8373750ns, 8ms line_col: 8378791ns, 8ms ... line_col: 9096541ns, 9ms line_col: 9101041ns, 9ms line_col: 9097375ns, 9ms line_col: 9101500ns, 9ms line_col: 9092708ns, 9ms line_col: 9107291ns, 9ms .... line_col: 10150208ns, 10ms line_col: 10144625ns, 10ms line_col: 10311083ns, 10ms line_col: 10617958ns, 10ms line_col: 10224125ns, 10ms line_col: 10167583ns, 10ms line_col: 10229416ns, 10ms line_col: 10168041ns, 10ms ```
True
line_col method N times slow in large file. - When use pest in a large content file (about 700 KB JSON file), the `Pair<R>` to call `line_col` looks like has performance issue **O(N)**. Source code ref: https://github.com/huacnlee/autocorrect/blob/v1.4.4/src/lib/src/code.rs#L56 The large file case: https://github.com/microsoft/vscode-loc/blob/release/1.62.0/i18n/vscode-language-pack-zh-hans/translations/main.i18n.json ```rust // 200ns let span = item.as_span(); // 48ns let start_pos = span.start_pos(); let start = std::time::Instant::now(); let (part_line, part_col) = start_pos.line_col(); println!( "line_col: {}ns, {}ms", start.elapsed().as_nanos(), start.elapsed().as_millis() ); ``` The benchmark result: ``` line_col: 1545291ns, 1ms line_col: 1533083ns, 1ms line_col: 1581541ns, 1ms line_col: 1537250ns, 1ms line_col: 1543208ns, 1ms .... line_col: 2226208ns, 2ms line_col: 2244875ns, 2ms line_col: 2229541ns, 2ms line_col: 2299000ns, 2ms line_col: 2235958ns, 2ms .... line_col: 3397791ns, 3ms line_col: 3398291ns, 3ms line_col: 3402250ns, 3ms line_col: 3433666ns, 3ms line_col: 3409250ns, 3ms .... line_col: 4089000ns, 4ms line_col: 4078750ns, 4ms line_col: 4084083ns, 4ms line_col: 4128250ns, 4ms line_col: 4095708ns, 4ms .... line_col: 5021375ns, 5ms line_col: 5118083ns, 5ms line_col: 5028333ns, 5ms line_col: 5065166ns, 5ms line_col: 5030750ns, 5ms ... line_col: 6076458ns, 6ms line_col: 6124375ns, 6ms line_col: 6077041ns, 6ms line_col: 6078041ns, 6ms line_col: 6081791ns, 6ms line_col: 6082208ns, 6ms line_col: 6119625ns, 6ms ... line_col: 7365125ns, 7ms line_col: 7368541ns, 7ms line_col: 7374416ns, 7ms line_col: 7373250ns, 7ms line_col: 7366041ns, 7ms line_col: 7372750ns, 7ms ... line_col: 8363541ns, 8ms line_col: 8379583ns, 8ms line_col: 8375083ns, 8ms line_col: 8373750ns, 8ms line_col: 8378791ns, 8ms ... line_col: 9096541ns, 9ms line_col: 9101041ns, 9ms line_col: 9097375ns, 9ms line_col: 9101500ns, 9ms line_col: 9092708ns, 9ms line_col: 9107291ns, 9ms .... line_col: 10150208ns, 10ms line_col: 10144625ns, 10ms line_col: 10311083ns, 10ms line_col: 10617958ns, 10ms line_col: 10224125ns, 10ms line_col: 10167583ns, 10ms line_col: 10229416ns, 10ms line_col: 10168041ns, 10ms ```
non_priority
line col method n times slow in large file when use pest in a large content file about kb json file the pair to call line col looks like has performance issue o n source code ref the large file case rust let span item as span let start pos span start pos let start std time instant now let part line part col start pos line col println line col ns ms start elapsed as nanos start elapsed as millis the benchmark result line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col line col
0
27,818
6,904,946,517
IssuesEvent
2017-11-27 03:30:19
BTDF/ToolsForVisualStudio
https://api.github.com/repos/BTDF/ToolsForVisualStudio
opened
Required .NET Framework Version
MigratedFromCodePlex
[jstrommen_caribou@2017-11-06] Hi - when I try to install the Tools for Visual Studio extension, I get an error saying it cannot be installed because: "The extension 'Deployment Framework for BizTalk Tools for VS 2013' requires a version of the .NET Framework that is not installed." What version is required? I have the following installed (on Windows 7): 2.0.50727.5420 3.0.30729.5420 3.5.30729.5420 4.0.0.0 (Client) 4.7.02053 (Full) Thanks!
1.0
Required .NET Framework Version - [jstrommen_caribou@2017-11-06] Hi - when I try to install the Tools for Visual Studio extension, I get an error saying it cannot be installed because: "The extension 'Deployment Framework for BizTalk Tools for VS 2013' requires a version of the .NET Framework that is not installed." What version is required? I have the following installed (on Windows 7): 2.0.50727.5420 3.0.30729.5420 3.5.30729.5420 4.0.0.0 (Client) 4.7.02053 (Full) Thanks!
non_priority
required net framework version hi when i try to install the tools for visual studio extension i get an error saying it cannot be installed because the extension deployment framework for biztalk tools for vs requires a version of the net framework that is not installed what version is required i have the following installed on windows client full thanks
0
160,572
13,792,864,207
IssuesEvent
2020-10-09 14:11:11
marcio012/engenhariaDeSoftware
https://api.github.com/repos/marcio012/engenhariaDeSoftware
closed
Primary persona. -- Persona primária.
documentation tasks
Create a primary persona. Elevate the concept of **Ux** in the application. --- Criar uma persona primária. Elevar o conceito de **Ux** na aplicação.
1.0
Primary persona. -- Persona primária. - Create a primary persona. Elevate the concept of **Ux** in the application. --- Criar uma persona primária. Elevar o conceito de **Ux** na aplicação.
non_priority
primary persona persona primária create a primary persona elevate the concept of ux in the application criar uma persona primária elevar o conceito de ux na aplicação
0
1,627
3,377,143,506
IssuesEvent
2015-11-25 01:04:00
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
Add missing X509ChainStatusFlags
System.Security
net461 added some new X509ChainStatusFlags values. While these are present already in the implementation library, they aren't in the ref library. GetChainStatusInformation was rewritten as a loop for net461, that change should also be ported over to corefx.
True
Add missing X509ChainStatusFlags - net461 added some new X509ChainStatusFlags values. While these are present already in the implementation library, they aren't in the ref library. GetChainStatusInformation was rewritten as a loop for net461, that change should also be ported over to corefx.
non_priority
add missing added some new values while these are present already in the implementation library they aren t in the ref library getchainstatusinformation was rewritten as a loop for that change should also be ported over to corefx
0