Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1
value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3
values | title stringlengths 1 1k | labels stringlengths 4 1.38k | body stringlengths 1 262k | index stringclasses 16
values | text_combine stringlengths 96 262k | label stringclasses 2
values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
223,807 | 17,141,247,482 | IssuesEvent | 2021-07-13 09:51:20 | IGNF/validator | https://api.github.com/repos/IGNF/validator | opened | documentation - enable github page and integrate validator-schema and validator-example | documentation | * doc -> docs with github page enabled on
* https://github.com/IGNF/validator-schema -> docs/schema (JSON schema and model doc)
* https://github.com/IGNF/validator-example -> docs/examples (sample configs)
Note : copy schema and examples from maven resources.
| 1.0 | documentation - enable github page and integrate validator-schema and validator-example - * doc -> docs with github page enabled on
* https://github.com/IGNF/validator-schema -> docs/schema (JSON schema and model doc)
* https://github.com/IGNF/validator-example -> docs/examples (sample configs)
Note : copy schema and examples from maven resources.
| non_priority | documentation enable github page and integrate validator schema and validator example doc docs with github page enabled on docs schema json schema and model doc docs examples sample configs note copy schema and examples from maven resources | 0 |
45,299 | 24,002,432,920 | IssuesEvent | 2022-09-14 12:32:42 | scikit-hep/awkward | https://api.github.com/repos/scikit-hep/awkward | closed | Shallow copy is slow, seems to spend a lot of time in repr | performance | ### Version of Awkward Array
1.10.0rc3
### Description and code to reproduce
During the PR adding awkward array support into AnnData, I noticed the test suite was taking much longer than usual. Trying to track down the culprit, I found the line where we make shallow copies of an awkward array. Under this largely seemed to be code related to making `repr` strings.
Checking if this is just us:
Making a minimal reproducible example:
```python
import awkward._v2 as ak
import numpy as np
from copy import copy, deepcopy
counts = np.random.randint(1, 1000, size=(10000))
data = np.random.randint(0, 100, size=counts.sum())
awk = ak.unflatten(data, counts)
%%prun -s cumtime
for _ in range(1000):
copy(awk)
```
```
3544003 function calls (3382003 primitive calls) in 3.619 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
1 0.000 0.000 3.619 3.619 {built-in method builtins.exec}
1 0.002 0.002 3.619 3.619 <string>:1(<module>)
1000 0.003 0.000 3.617 0.004 copy.py:66(copy)
5000 0.041 0.000 3.264 0.001 _util.py:210(__init__)
1000 0.002 0.000 3.078 0.003 {method '__reduce_ex__' of 'object' objects}
1000 0.003 0.000 3.076 0.003 highlevel.py:1377(__getstate__)
28000/24000 0.056 0.000 2.881 0.000 _util.py:138(format_argument)
4000 0.044 0.000 2.026 0.001 highlevel.py:1177(_repr)
4000 0.005 0.000 1.699 0.000 _prettyprint.py:209(valuestr)
78000/26000 0.186 0.000 1.697 0.000 highlevel.py:1113(__setattr__)
40000/4000 0.182 0.000 1.692 0.000 _prettyprint.py:69(valuestr_horiz)
12000 0.028 0.000 1.595 0.000 highlevel.py:187(__init__)
1000 0.004 0.000 1.548 0.002 ak_to_buffers.py:9(to_buffers)
1000 0.004 0.000 1.525 0.002 ak_packed.py:8(packed)
2000 0.007 0.000 1.493 0.001 ak_to_layout.py:11(to_layout)
78000 1.398 0.000 1.398 0.000 {built-in method builtins.dir}
36000 0.051 0.000 1.318 0.000 _prettyprint.py:41(get_at)
10000 0.017 0.000 1.070 0.000 _util.py:770(wrap)
```
I would expect making a shallow copy of an awkward array to be quite fast. I also wouldn't expect pretty printing methods to be called. | True | Shallow copy is slow, seems to spend a lot of time in repr - ### Version of Awkward Array
1.10.0rc3
### Description and code to reproduce
During the PR adding awkward array support into AnnData, I noticed the test suite was taking much longer than usual. Trying to track down the culprit, I found the line where we make shallow copies of an awkward array. Under this largely seemed to be code related to making `repr` strings.
Checking if this is just us:
Making a minimal reproducible example:
```python
import awkward._v2 as ak
import numpy as np
from copy import copy, deepcopy
counts = np.random.randint(1, 1000, size=(10000))
data = np.random.randint(0, 100, size=counts.sum())
awk = ak.unflatten(data, counts)
%%prun -s cumtime
for _ in range(1000):
copy(awk)
```
```
3544003 function calls (3382003 primitive calls) in 3.619 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
1 0.000 0.000 3.619 3.619 {built-in method builtins.exec}
1 0.002 0.002 3.619 3.619 <string>:1(<module>)
1000 0.003 0.000 3.617 0.004 copy.py:66(copy)
5000 0.041 0.000 3.264 0.001 _util.py:210(__init__)
1000 0.002 0.000 3.078 0.003 {method '__reduce_ex__' of 'object' objects}
1000 0.003 0.000 3.076 0.003 highlevel.py:1377(__getstate__)
28000/24000 0.056 0.000 2.881 0.000 _util.py:138(format_argument)
4000 0.044 0.000 2.026 0.001 highlevel.py:1177(_repr)
4000 0.005 0.000 1.699 0.000 _prettyprint.py:209(valuestr)
78000/26000 0.186 0.000 1.697 0.000 highlevel.py:1113(__setattr__)
40000/4000 0.182 0.000 1.692 0.000 _prettyprint.py:69(valuestr_horiz)
12000 0.028 0.000 1.595 0.000 highlevel.py:187(__init__)
1000 0.004 0.000 1.548 0.002 ak_to_buffers.py:9(to_buffers)
1000 0.004 0.000 1.525 0.002 ak_packed.py:8(packed)
2000 0.007 0.000 1.493 0.001 ak_to_layout.py:11(to_layout)
78000 1.398 0.000 1.398 0.000 {built-in method builtins.dir}
36000 0.051 0.000 1.318 0.000 _prettyprint.py:41(get_at)
10000 0.017 0.000 1.070 0.000 _util.py:770(wrap)
```
I would expect making a shallow copy of an awkward array to be quite fast. I also wouldn't expect pretty printing methods to be called. | non_priority | shallow copy is slow seems to spend a lot of time in repr version of awkward array description and code to reproduce during the pr adding awkward array support into anndata i noticed the test suite was taking much longer than usual trying to track down the culprit i found the line where we make shallow copies of an awkward array under this largely seemed to be code related to making repr strings checking if this is just us making a minimal reproducible example python import awkward as ak import numpy as np from copy import copy deepcopy counts np random randint size data np random randint size counts sum awk ak unflatten data counts prun s cumtime for in range copy awk function calls primitive calls in seconds ordered by cumulative time ncalls tottime percall cumtime percall filename lineno function built in method builtins exec copy py copy util py init method reduce ex of object objects highlevel py getstate util py format argument highlevel py repr prettyprint py valuestr highlevel py setattr prettyprint py valuestr horiz highlevel py init ak to buffers py to buffers ak packed py packed ak to layout py to layout built in method builtins dir prettyprint py get at util py wrap i would expect making a shallow copy of an awkward array to be quite fast i also wouldn t expect pretty printing methods to be called | 0 |
813,221 | 30,448,603,241 | IssuesEvent | 2023-07-16 01:52:56 | bono-94/Full-Stack-Portfolio | https://api.github.com/repos/bono-94/Full-Stack-Portfolio | closed | USER STORY: Edit Posts | COMPLETION: Must Have THEME: Content & Tools EPIC: Posts PRIORITY: High | As a **Site User/Admin** I can **edit posts** so that **I can change any of the content on the demand**
## Acceptance Criteria:
- Criteria 1: The user should be able to edit previously published posts
- Criteria 2: The user should be alter media & documents uploads
- Criteria 3: The user should be able to alter textual content
- Criteria 4: The user should be see changes upon post approval by admins
## Tasks
- [x] Update models
- [x] Update views
- [x] Update templates
- [x] Update urls
- [x] Update styling
- [x] Update javascript
- [x] Test the functionality
- [x] Update admin
- [x] Update status/completion | 1.0 | USER STORY: Edit Posts - As a **Site User/Admin** I can **edit posts** so that **I can change any of the content on the demand**
## Acceptance Criteria:
- Criteria 1: The user should be able to edit previously published posts
- Criteria 2: The user should be alter media & documents uploads
- Criteria 3: The user should be able to alter textual content
- Criteria 4: The user should be see changes upon post approval by admins
## Tasks
- [x] Update models
- [x] Update views
- [x] Update templates
- [x] Update urls
- [x] Update styling
- [x] Update javascript
- [x] Test the functionality
- [x] Update admin
- [x] Update status/completion | priority | user story edit posts as a site user admin i can edit posts so that i can change any of the content on the demand acceptance criteria criteria the user should be able to edit previously published posts criteria the user should be alter media documents uploads criteria the user should be able to alter textual content criteria the user should be see changes upon post approval by admins tasks update models update views update templates update urls update styling update javascript test the functionality update admin update status completion | 1 |
116,988 | 11,945,608,277 | IssuesEvent | 2020-04-03 06:16:49 | wanxuanong/ped | https://api.github.com/repos/wanxuanong/ped | opened | There is no "General" tab that is mentioned in the entire UG documentation. | severity.Low type.DocumentationBug | 
I assumed it is replaced by the "Home" tab but this shows inconsistency in UG documentation.
| 1.0 | There is no "General" tab that is mentioned in the entire UG documentation. - 
I assumed it is replaced by the "Home" tab but this shows inconsistency in UG documentation.
| non_priority | there is no general tab that is mentioned in the entire ug documentation i assumed it is replaced by the home tab but this shows inconsistency in ug documentation | 0 |
8,544 | 27,103,918,095 | IssuesEvent | 2023-02-15 10:39:33 | elastic/opbeans-frontend | https://api.github.com/repos/elastic/opbeans-frontend | closed | Allow to set the backend API URL by configuration | enhancement [zube]: Backlog automation | Now the only way to change the backend API URL is by editing the package.js (proxy setting), it also only works when you run the Opbeans-frontend on Node.js. It needs to make it configurable, and it should work when you use the frontend on a web server (not running only on Node.js) because in many places this project is used as static pages. not as a Node.js application. | 1.0 | Allow to set the backend API URL by configuration - Now the only way to change the backend API URL is by editing the package.js (proxy setting), it also only works when you run the Opbeans-frontend on Node.js. It needs to make it configurable, and it should work when you use the frontend on a web server (not running only on Node.js) because in many places this project is used as static pages. not as a Node.js application. | non_priority | allow to set the backend api url by configuration now the only way to change the backend api url is by editing the package js proxy setting it also only works when you run the opbeans frontend on node js it needs to make it configurable and it should work when you use the frontend on a web server not running only on node js because in many places this project is used as static pages not as a node js application | 0 |
487 | 2,750,641,291 | IssuesEvent | 2015-04-24 00:46:38 | uProxy/uproxy | https://api.github.com/repos/uProxy/uproxy | opened | Improve contact spoofing | C:Security P2 T:Needs-Discussion | Maybe have some UI to warn a user when a name is changed and now matches another contact's name? (or is very similar) | True | Improve contact spoofing - Maybe have some UI to warn a user when a name is changed and now matches another contact's name? (or is very similar) | non_priority | improve contact spoofing maybe have some ui to warn a user when a name is changed and now matches another contact s name or is very similar | 0 |
189,217 | 15,180,896,104 | IssuesEvent | 2021-02-15 01:39:56 | vitessio/vitess | https://api.github.com/repos/vitessio/vitess | closed | How Can I import file data to vitess DB? | Component: Cluster management P3 Type: Documentation | I'd like to try a bulk insert operation to Vitess Database. (for a test, before production)
I noticed in the page below that vitess supports the 'load data' function.
https://vitess.io/docs/reference/compatibility/mysql-compatibility/#load-data-statement
I tried Load data through the Vitess guide document, but it failed with the following error message.
1.in my mysql Database, It worked
mysql> LOAD DATA LOCAL INFILE '/home/ubuntu/environment/loaddata/loaddata_emp.txt' INTO TABLE emp FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES;
Query OK, 4 rows affected, 7 warnings (0.01 sec)
Records: 4 Deleted: 0 Skipped: 0 Warnings: 7
2.vitess Database, It occurs an error.
mysql> LOAD DATA LOCAL INFILE '/home/ubuntu/environment/loaddata/loaddata_emp.txt' INTO TABLE emp FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES;
ERROR 1105 (HY000): vtgate: http://example-zone1-vtgate-bc6cde92-6bbdc9c7cc-7zwtd:15000/: syntax error at position 5 near 'LOAD'
| 1.0 | How Can I import file data to vitess DB? - I'd like to try a bulk insert operation to Vitess Database. (for a test, before production)
I noticed in the page below that vitess supports the 'load data' function.
https://vitess.io/docs/reference/compatibility/mysql-compatibility/#load-data-statement
I tried Load data through the Vitess guide document, but it failed with the following error message.
1.in my mysql Database, It worked
mysql> LOAD DATA LOCAL INFILE '/home/ubuntu/environment/loaddata/loaddata_emp.txt' INTO TABLE emp FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES;
Query OK, 4 rows affected, 7 warnings (0.01 sec)
Records: 4 Deleted: 0 Skipped: 0 Warnings: 7
2.vitess Database, It occurs an error.
mysql> LOAD DATA LOCAL INFILE '/home/ubuntu/environment/loaddata/loaddata_emp.txt' INTO TABLE emp FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES;
ERROR 1105 (HY000): vtgate: http://example-zone1-vtgate-bc6cde92-6bbdc9c7cc-7zwtd:15000/: syntax error at position 5 near 'LOAD'
| non_priority | how can i import file data to vitess db i d like to try a bulk insert operation to vitess database for a test before production i noticed in the page below that vitess supports the load data function i tried load data through the vitess guide document but it failed with the following error message in my mysql database it worked mysql load data local infile home ubuntu environment loaddata loaddata emp txt into table emp fields terminated by optionally enclosed by lines terminated by n ignore lines query ok rows affected warnings sec records deleted skipped warnings vitess database it occurs an error mysql load data local infile home ubuntu environment loaddata loaddata emp txt into table emp fields terminated by optionally enclosed by lines terminated by n ignore lines error vtgate syntax error at position near load | 0 |
26,682 | 6,793,567,699 | IssuesEvent | 2017-11-01 08:14:04 | eclipse/che | https://api.github.com/repos/eclipse/che | closed | File watcher service does not invoke consumer on create file event at first time after starting the workspace | kind/bug severity/P1 sprint/current-sprint status/code-review team/ide | File watcher service does not invoke consumer on create file event at first time after starting the workspace.
**Reproduction Steps:**
1. Register a watcher by matcher with create consumer.
2. Start workspace.
3 Create a file with the name that registered in the watcher.
Expected: Create consumer must be invoked.
Actual: Create consumer is invoked only after deleting the file and creating it again.
**OS and version:**
Ubuntu 16.0.4 CHE 5.19.0-SNAPSHOT
**Diagnostics:**
<!-- Provide output of 'docker run <DOCKER_OPTIONS> eclipse/che info' -->
<!-- If asked, provide a support bundle with 'docker run <DOCKER_OPTIONS> eclipse/che info --bundle' -->
<!-- If asked, provide CLI debugging info by adding '--trace' to your commands -->
| 1.0 | File watcher service does not invoke consumer on create file event at first time after starting the workspace - File watcher service does not invoke consumer on create file event at first time after starting the workspace.
**Reproduction Steps:**
1. Register a watcher by matcher with create consumer.
2. Start workspace.
3 Create a file with the name that registered in the watcher.
Expected: Create consumer must be invoked.
Actual: Create consumer is invoked only after deleting the file and creating it again.
**OS and version:**
Ubuntu 16.0.4 CHE 5.19.0-SNAPSHOT
**Diagnostics:**
<!-- Provide output of 'docker run <DOCKER_OPTIONS> eclipse/che info' -->
<!-- If asked, provide a support bundle with 'docker run <DOCKER_OPTIONS> eclipse/che info --bundle' -->
<!-- If asked, provide CLI debugging info by adding '--trace' to your commands -->
| non_priority | file watcher service does not invoke consumer on create file event at first time after starting the workspace file watcher service does not invoke consumer on create file event at first time after starting the workspace reproduction steps register a watcher by matcher with create consumer start workspace create a file with the name that registered in the watcher expected create consumer must be invoked actual create consumer is invoked only after deleting the file and creating it again os and version ubuntu che snapshot diagnostics eclipse che info eclipse che info bundle | 0 |
64,605 | 18,759,905,144 | IssuesEvent | 2021-11-05 15:18:27 | zotonic/zotonic | https://api.github.com/repos/zotonic/zotonic | closed | Media previews of images with vertical orientation are not correctly made. | defect core | The media previews of images with a vertical orientation in the exif information are not correctly made. This leads to distorted images.
The media preview in the admin of this image:

is:

So it is rotated correctly, but its width and height are swapped.
| 1.0 | Media previews of images with vertical orientation are not correctly made. - The media previews of images with a vertical orientation in the exif information are not correctly made. This leads to distorted images.
The media preview in the admin of this image:

is:

So it is rotated correctly, but its width and height are swapped.
| non_priority | media previews of images with vertical orientation are not correctly made the media previews of images with a vertical orientation in the exif information are not correctly made this leads to distorted images the media preview in the admin of this image is so it is rotated correctly but its width and height are swapped | 0 |
384,701 | 26,599,461,165 | IssuesEvent | 2023-01-23 14:49:36 | ivadomed/ivadomed | https://api.github.com/repos/ivadomed/ivadomed | closed | Discrepancies in config file fields from the documentation | documentation | The doc shows "train_validation" and "test":

However, the actual fields from the JSON file are:
https://github.com/ivadomed/ivadomed/blob/9bb4e7f7bdf72971b3f0559e9dac03d18353f98d/ivadomed/config/config.json#L28-L29
| 1.0 | Discrepancies in config file fields from the documentation - The doc shows "train_validation" and "test":

However, the actual fields from the JSON file are:
https://github.com/ivadomed/ivadomed/blob/9bb4e7f7bdf72971b3f0559e9dac03d18353f98d/ivadomed/config/config.json#L28-L29
| non_priority | discrepancies in config file fields from the documentation the doc shows train validation and test however the actual fields from the json file are | 0 |
28,230 | 6,970,541,484 | IssuesEvent | 2017-12-11 10:40:43 | jOOQ/jOOQ | https://api.github.com/repos/jOOQ/jOOQ | closed | Log a link to GitHub when DDLDatabase runs into a ParserException | C: Code Generation P: High R: Fixed T: Enhancement | When there's a `ParserException` in the `DDLDatabase`, the loading of the SQL script will likely fail and users might be frustrated because the `DDLDatabase` doesn't work. It's important to get such users' feedback, so we should hint the support channel here on GitHub to them. | 1.0 | Log a link to GitHub when DDLDatabase runs into a ParserException - When there's a `ParserException` in the `DDLDatabase`, the loading of the SQL script will likely fail and users might be frustrated because the `DDLDatabase` doesn't work. It's important to get such users' feedback, so we should hint the support channel here on GitHub to them. | non_priority | log a link to github when ddldatabase runs into a parserexception when there s a parserexception in the ddldatabase the loading of the sql script will likely fail and users might be frustrated because the ddldatabase doesn t work it s important to get such users feedback so we should hint the support channel here on github to them | 0 |
23,390 | 4,016,186,711 | IssuesEvent | 2016-05-15 12:45:14 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | stress: failed test in cockroach/sql/distsql/distsql.test: TestTableReader | Robot test-failure | Binary: cockroach/static-tests.tar.gz sha: https://github.com/cockroachdb/cockroach/commits/4560c81d1d65cdda8cb439a805693094fcb0b75f
Stress build found a failed test:
```
=== RUN TestTableReader
W160515 06:02:02.638742 gossip/gossip.go:893 not connected to cluster; use --join to specify a connected node
I160515 06:02:02.641667 storage/engine/rocksdb.go:137 opening in memory rocksdb instance
W160515 06:02:02.642886 gossip/gossip.go:893 not connected to cluster; use --join to specify a connected node
I160515 06:02:02.643130 server/node.go:400 store store=0:0 ([]=) not bootstrapped
I160515 06:02:02.645010 storage/replica_command.go:1470 range 1: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.644599658s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.644898493 +0000 UTC]
I160515 06:02:02.645582 server/node.go:326 **** cluster {67b0fc25-7015-4f40-8954-6a56a087062d} has been created
I160515 06:02:02.645609 server/node.go:327 **** add additional nodes by specifying --join=127.0.0.1:35777
W160515 06:02:02.645624 gossip/gossip.go:893 not connected to cluster; use --join to specify a connected node
I160515 06:02:02.646339 server/node.go:413 initialized store store=1:1 ([]=): {Capacity:10365558784 Available:8249167872 RangeCount:0}
I160515 06:02:02.646373 server/node.go:301 node ID 1 initialized
I160515 06:02:02.646432 storage/stores.go:287 read 0 node addresses from persistent storage
I160515 06:02:02.646559 server/node.go:534 connecting to gossip network to verify cluster ID...
I160515 06:02:02.646816 server/node.go:555 node connected via gossip and verified as part of cluster {"67b0fc25-7015-4f40-8954-6a56a087062d"}
I160515 06:02:02.646852 server/node.go:354 [node=1] Started node with [[]=] engine(s) and attributes []
I160515 06:02:02.646904 server/server.go:398 starting https server at 127.0.0.1:37900
I160515 06:02:02.646921 server/server.go:399 starting grpc/postgres server at 127.0.0.1:35777
I160515 06:02:02.646999 storage/split_queue.go:100 splitting range=1 [/Min-/Max) at keys [/Table/11/0 /Table/12/0 /Table/13/0 /Table/14/0]
I160515 06:02:02.658729 storage/replica_command.go:2011 initiating a split of range=1 [/Min-/Max) at key /Table/11
I160515 06:02:02.664544 storage/replica_command.go:1470 range 2: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.745870398s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.664476024 +0000 UTC]
I160515 06:02:02.664728 storage/replica_command.go:2011 initiating a split of range=2 [/Table/11-/Max) at key /Table/12
I160515 06:02:02.666283 server/updates.go:155 No previous updates check time.
I160515 06:02:02.687774 storage/replica_command.go:1470 range 3: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.745870398s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.687726842 +0000 UTC]
I160515 06:02:02.688026 storage/replica_command.go:2011 initiating a split of range=3 [/Table/12-/Max) at key /Table/13
I160515 06:02:02.697291 storage/replica_command.go:1470 range 4: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.747101804s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.697255537 +0000 UTC]
I160515 06:02:02.704818 storage/replica_command.go:2011 initiating a split of range=4 [/Table/13-/Max) at key /Table/14
I160515 06:02:02.787590 storage/replica_command.go:1470 range 5: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.837076601s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.787534539 +0000 UTC]
I160515 06:02:02.787739 storage/split_queue.go:100 splitting range=5 [/Table/14-/Max) at keys [/Table/50/0 /Table/51/0]
I160515 06:02:02.788052 storage/replica_command.go:2011 initiating a split of range=5 [/Table/14-/Max) at key /Table/50
I160515 06:02:02.799172 storage/replica_command.go:1470 range 6: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.848932763s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.799129314 +0000 UTC]
I160515 06:02:02.799286 storage/replica_command.go:2011 initiating a split of range=6 [/Table/50-/Max) at key /Table/51
RESULT: 1 <skipped> 11 12
RESULT: 3 <skipped> 31 32
RESULT: 4 <skipped> 61 62
RESULT: 5 <skipped> 51 52
RESULT: 6 <skipped> 41 42
RESULT: 6 40 41 <skipped>
RESULT: 2 20 21 <skipped>
RESULT: 1 10 11 <skipped>
I160515 06:02:02.800716 stopper.go:352 draining; tasks left:
5 server/node.go:800
1 storage/queue.go:383
1 storage/intent_resolver.go:338
1 storage/intent_resolver.go:299
F160515 06:02:02.800908 kv/txn_coord_sender.go:797 retryable internal error must not happen at this level: key range /Local/Range/"\xba"/RangeDescriptor-/Min outside of bounds of range /Table/14-/Table/50
goroutine 78 [running]:
github.com/cockroachdb/cockroach/util/log.getStacks(0xececa0701, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:862 +0xb8
github.com/cockroachdb/cockroach/util/log.(*loggingT).outputLogEntry(0x2588ee0, 0x3, 0x1fb0575, 0x16, 0x31d, 0xc8203ffd60, 0x99)
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:728 +0x9c5
github.com/cockroachdb/cockroach/util/log.addStructured(0x0, 0x0, 0x3, 0x2, 0x19b8200, 0x3a, 0xc82073a5c8, 0x1, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/log/structured.go:57 +0xfc
github.com/cockroachdb/cockroach/util/log.logDepth(0x0, 0x0, 0x1, 0x7f7e00000003, 0x19b8200, 0x3a, 0xc82073a5c8, 0x1, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/log/log.go:73 +0x7b
github.com/cockroachdb/cockroach/util/log.Fatalf(0x19b8200, 0x3a, 0xc82073a5c8, 0x1, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/log/log.go:179 +0x66
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).updateState(0xc820264f00, 0x144ea86ece14f980, 0x7f7e5408cb60, 0xc8205918f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:797 +0xedf
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc8205918f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc82008d680, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:374 +0xb59
github.com/cockroachdb/cockroach/client.(*txnSender).Send(0xc820402840, 0x7f7e5408a598, 0xc82000e938, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc820402898, ...)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:61 +0xb8
github.com/cockroachdb/cockroach/client.(*DB).send(0xc820402840, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*Txn).send(0xc820402840, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:657 +0x963
github.com/cockroachdb/cockroach/client.(*Txn).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:363 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc82073b6e8, 0xc82058d680, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*Txn).Run(0xc820402840, 0xc82058d680, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:363 +0xb1
github.com/cockroachdb/cockroach/storage.(*Replica).AdminSplit.func1(0xc820402840, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/replica_command.go:2033 +0x347
github.com/cockroachdb/cockroach/client.(*DB).Txn.func1(0xc820402840, 0xc82071c8c0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:422 +0x31
github.com/cockroachdb/cockroach/client.(*Txn).Exec(0xc820402840, 0x1f10101, 0x0, 0x0, 0xc82073bc50, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:532 +0x2eb
github.com/cockroachdb/cockroach/client.(*DB).Txn(0xc8202679a0, 0xc82073bf08, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:420 +0x28d
github.com/cockroachdb/cockroach/storage.(*Replica).AdminSplit(0xc8204e4000, 0x7f7e5408cb60, 0xc820591440, 0xc8201e2688, 0x2, 0x8, 0x0, 0x0, 0x0, 0xc8201e2688, ...)
/go/src/github.com/cockroachdb/cockroach/storage/replica_command.go:2013 +0xe1a
github.com/cockroachdb/cockroach/storage.(*Replica).addAdminCmd(0xc8204e4000, 0x7f7e5408cb60, 0xc820591440, 0x144ea86ece0e8aea, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/replica.go:1149 +0x876
github.com/cockroachdb/cockroach/storage.(*Replica).Send(0xc8204e4000, 0x7f7e5408cb60, 0xc820591440, 0x144ea86ece0e8aea, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/replica.go:838 +0x20c
github.com/cockroachdb/cockroach/storage.(*Store).Send(0xc820234280, 0x7f7e5408cb60, 0xc820591440, 0x144ea86ece0e8aea, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/store.go:1806 +0xd12
github.com/cockroachdb/cockroach/storage.(*Stores).Send(0xc82032c380, 0x7f7e5408cb60, 0xc8205913e0, 0x0, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/stores.go:178 +0x501
github.com/cockroachdb/cockroach/server.(*Node).Batch.func3()
/go/src/github.com/cockroachdb/cockroach/server/node.go:788 +0x55b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc82073d038, 0x0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:166 +0xd9
github.com/cockroachdb/cockroach/server.(*Node).Batch(0xc8201441a0, 0x7f7e54000028, 0xc820591320, 0xc8205fdf18, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/server/node.go:800 +0x327
github.com/cockroachdb/cockroach/kv.(*grpcTransport).SendNext(0xc82017b090, 0xc8204c9c80)
/go/src/github.com/cockroachdb/cockroach/kv/transport.go:149 +0x402
github.com/cockroachdb/cockroach/kv.send(0x7f7e5408cb60, 0xc8206355c0, 0x1, 0x2540be400, 0xb2d05e00, 0x0, 0xc82071c4e0, 0x1, 0x1, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/send.go:118 +0x4ac
github.com/cockroachdb/cockroach/kv.(*DistSender).sendRPC(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x6, 0xc82071c4e0, 0x1, 0x1, 0x1, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:346 +0x217
github.com/cockroachdb/cockroach/kv.(*DistSender).sendSingleRange(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:461 +0x206
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk.func2(0xc82073e048, 0xc82073dca0, 0xc82073e7d8, 0xc82026ca80, 0xc82073e7c8, 0x3, 0x8)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:720 +0x448
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:721 +0x1f88
github.com/cockroachdb/cockroach/kv.(*DistSender).Send(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:565 +0x6d5
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:367 +0xa5d
github.com/cockroachdb/cockroach/client.(*DB).send(0xc8202679a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*DB).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc82073f610, 0xc82062fb00, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*DB).Run(0xc8202679a0, 0xc82062fb00, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x85
github.com/cockroachdb/cockroach/client.runOneResult(0x7f7e5408ca70, 0xc8202679a0, 0xc82062fb00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:485 +0x6c
github.com/cockroachdb/cockroach/client.(*DB).AdminSplit(0xc8202679a0, 0x1739ce0, 0xc820798f60, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:355 +0xff
github.com/cockroachdb/cockroach/storage.(*splitQueue).process(0xc8200986e0, 0x144ea86ecd6355cd, 0x0, 0xc820154d00, 0xc820490800, 0x17, 0x20, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/split_queue.go:102 +0x410
github.com/cockroachdb/cockroach/storage.(*baseQueue).processReplica(0xc8200986e0, 0xc820154d00, 0xc8201d9a80, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:430 +0x9ca
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1.1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:379 +0x4e
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc82073fe38, 0x0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:166 +0xd9
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:383 +0x275
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148600)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 1 [chan receive]:
testing.RunTests(0x1b554a0, 0x22a6860, 0x2, 0x2, 0xc8202fdd01)
/usr/local/go/src/testing/testing.go:583 +0x8d2
testing.(*M).Run(0xc82045bf08, 0x1)
/usr/local/go/src/testing/testing.go:515 +0x81
github.com/cockroachdb/cockroach/sql/distsql_test.TestMain(0xc82045bf08)
/go/src/github.com/cockroachdb/cockroach/sql/distsql/main_test.go:34 +0x70
main.main()
github.com/cockroachdb/cockroach/sql/distsql/_test/_testmain.go:56 +0x114
goroutine 17 [syscall, locked to thread]:
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:1998 +0x1
goroutine 133 [select]:
google.golang.org/grpc.(*Conn).transportMonitor(0xc8201e00f0)
/go/src/google.golang.org/grpc/clientconn.go:544 +0x1d3
created by google.golang.org/grpc.NewConn
/go/src/google.golang.org/grpc/clientconn.go:346 +0x49f
goroutine 20 [chan receive]:
github.com/cockroachdb/cockroach/util/log.(*loggingT).flushDaemon(0x2588ee0)
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:1011 +0x64
created by github.com/cockroachdb/cockroach/util/log.init.1
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:598 +0x8a
goroutine 7 [runnable]:
sync.runtime_Syncsemacquire(0xc82018ce10)
/usr/local/go/src/runtime/sema.go:241 +0x201
sync.(*Cond).Wait(0xc82018ce00)
/usr/local/go/src/sync/cond.go:63 +0x9b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).Quiesce(0xc8201ae000)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:354 +0x1eb
github.com/cockroachdb/cockroach/util/stop.(*Stopper).Stop(0xc8201ae000)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:300 +0x1a7
github.com/cockroachdb/cockroach/server.(*Server).Stop(0xc820167500)
/go/src/github.com/cockroachdb/cockroach/server/server.go:503 +0x28
github.com/cockroachdb/cockroach/server.(*TestServer).Stop(0xc82026a180)
/go/src/github.com/cockroachdb/cockroach/server/testserver.go:329 +0x5d
github.com/cockroachdb/cockroach/testutils/sqlutils.SetupServerWithParams.func1()
/go/src/github.com/cockroachdb/cockroach/testutils/sqlutils/test_server.go:49 +0x73
github.com/cockroachdb/cockroach/sql/distsql.TestTableReader(0xc820186000)
/go/src/github.com/cockroachdb/cockroach/sql/distsql/tablereader_test.go:102 +0xd02
testing.tRunner(0xc820186000, 0x22a6878)
/usr/local/go/src/testing/testing.go:473 +0x98
created by testing.RunTests
/usr/local/go/src/testing/testing.go:582 +0x892
goroutine 9 [select]:
github.com/cockroachdb/cockroach/storage.(*StorePool).start.func1()
/go/src/github.com/cockroachdb/cockroach/storage/store_pool.go:225 +0x23f
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82025cec0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 10 [select]:
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).startStats(0xc820264f00)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:203 +0xd21
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 +0x20
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201466a0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 11 [select]:
github.com/cockroachdb/cockroach/sql.(*LeaseManager).RefreshLeases.func1()
/go/src/github.com/cockroachdb/cockroach/sql/lease.go:733 +0xf97
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201e7710)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 12 [select]:
github.com/cockroachdb/cockroach/sql.NewExecutor.func1()
/go/src/github.com/cockroachdb/cockroach/sql/executor.go:247 +0x15c
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202679f0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 13 [chan receive]:
github.com/cockroachdb/cockroach/storage/engine.(*RocksDB).Open.func1(0xc82033e600)
/go/src/github.com/cockroachdb/cockroach/storage/engine/rocksdb.go:164 +0x3a
created by github.com/cockroachdb/cockroach/storage/engine.(*RocksDB).Open
/go/src/github.com/cockroachdb/cockroach/storage/engine/rocksdb.go:165 +0x8f4
goroutine 50 [chan receive]:
github.com/cockroachdb/cockroach/util.ServeHandler.func2()
/go/src/github.com/cockroachdb/cockroach/util/net.go:92 +0xb8
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82032c5c0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 51 [chan receive]:
github.com/cockroachdb/cockroach/util.ServeHandler.func2()
/go/src/github.com/cockroachdb/cockroach/util/net.go:92 +0xb8
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82032c640)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 54 [runnable]:
github.com/cockroachdb/cockroach/gossip.(*server).start.func3()
/go/src/github.com/cockroachdb/cockroach/gossip/server.go:298 +0x5c
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202c2ae0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 55 [select]:
github.com/cockroachdb/cockroach/gossip.(*Gossip).bootstrap.func1()
/go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:755 +0x26b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202c2b00)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 56 [select]:
github.com/cockroachdb/cockroach/gossip.(*Gossip).manage.func1()
/go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:792 +0x33b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202c2b20)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 76 [select]:
github.com/cockroachdb/cockroach/storage.(*replicaScanner).waitAndProcess(0xc8201aeaf0, 0xececa07da, 0x268d26c5, 0x2588360, 0xc8201d9a80, 0xc8201ae000, 0xc820154900, 0xc8203aae98)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:161 +0x568
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1.1(0xc820154900, 0xc8201e88a0)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:203 +0x78
github.com/cockroachdb/cockroach/storage.(*storeRangeSet).Visit(0xc8201e8ba0, 0xc82014e800)
/go/src/github.com/cockroachdb/cockroach/storage/store.go:241 +0x246
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:205 +0x21e
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148580)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 67 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).processRaft.func1()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:2073 +0xbf1
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202d5060)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 69 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).Start.func4()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:931 +0x13d
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82026aea0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 70 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).startGossip.func1()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:1002 +0x3cf
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82026aec0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 71 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).startGossip.func2()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:1021 +0x3cf
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82026aee0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 77 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201485e0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 75 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148560)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 42 [select]:
github.com/cockroachdb/cockroach/server.(*Node).startComputePeriodicMetrics.func1()
/go/src/github.com/cockroachdb/cockroach/server/node.go:603 +0x23b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820172460)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 101 [select]:
github.com/cockroachdb/cockroach/storage.(*idAllocator).start.func1()
/go/src/github.com/cockroachdb/cockroach/storage/id_alloc.go:131 +0x7f7
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201e2160)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 43 [select]:
github.com/cockroachdb/cockroach/server.(*Node).startGossip.func1()
/go/src/github.com/cockroachdb/cockroach/server/node.go:570 +0x406
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820172480)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 79 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148620)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 80 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148640)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 81 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148660)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 82 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148680)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 83 [select]:
github.com/cockroachdb/cockroach/storage.(*replicaScanner).waitAndProcess(0xc8201ae700, 0xececa07da, 0x268d9e5d, 0x2588360, 0xc8201d9a80, 0xc8201ae000, 0xc820154900, 0xc820453e98)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:161 +0x568
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1.1(0xc820154900, 0xc8201e88a0)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:203 +0x78
github.com/cockroachdb/cockroach/storage.(*storeRangeSet).Visit(0xc8201e8990, 0xc82014e8c0)
/go/src/github.com/cockroachdb/cockroach/storage/store.go:241 +0x246
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:205 +0x21e
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201486a0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 149 [runnable]:
sync.runtime_Semacquire(0xc8201ae02c)
/usr/local/go/src/runtime/sema.go:47 +0x26
sync.(*Mutex).Lock(0xc8201ae028)
/usr/local/go/src/sync/mutex.go:83 +0x1c4
github.com/cockroachdb/cockroach/util/stop.(*Stopper).runPostlude(0xc8201ae000, 0x1fb591d, 0xe, 0x320)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:235 +0x35
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc820781390, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:167 +0xdf
github.com/cockroachdb/cockroach/server.(*Node).Batch(0xc8201441a0, 0x7f7e54000028, 0xc820856090, 0xc82078aad8, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/server/node.go:800 +0x327
github.com/cockroachdb/cockroach/kv.(*grpcTransport).SendNext(0xc820086dc0, 0xc8204f7320)
/go/src/github.com/cockroachdb/cockroach/kv/transport.go:149 +0x402
github.com/cockroachdb/cockroach/kv.send(0x7f7e5408cb60, 0xc8206354d0, 0x1, 0x2540be400, 0xb2d05e00, 0x0, 0xc8207a5f60, 0x1, 0x1, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/send.go:118 +0x4ac
github.com/cockroachdb/cockroach/kv.(*DistSender).sendRPC(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x1, 0xc8207a5f60, 0x1, 0x1, 0x1, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:346 +0x217
github.com/cockroachdb/cockroach/kv.(*DistSender).sendSingleRange(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:461 +0x206
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk.func2(0xc8207823a0, 0xc820781ff8, 0xc820782b30, 0xc82026ca80, 0xc820782b20, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:720 +0x448
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:721 +0x1f88
github.com/cockroachdb/cockroach/kv.(*DistSender).Send(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:565 +0x6d5
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:367 +0xa5d
github.com/cockroachdb/cockroach/client.(*DB).send(0xc8202679a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*DB).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc820783968, 0xc82062f200, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*DB).Run(0xc8202679a0, 0xc82062f200, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x85
github.com/cockroachdb/cockroach/storage.(*intentResolver).resolveIntents.func3(0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:434 +0x3d
github.com/cockroachdb/cockroach/storage.(*intentResolver).resolveIntents(0xc82026aa00, 0x7f7e54000028, 0xc820635440, 0xc820154d00, 0xc82027f200, 0xa, 0x10, 0x1, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:443 +0x85f
github.com/cockroachdb/cockroach/storage.(*intentResolver).processIntentsAsync.func2()
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:313 +0x13f
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask.func1(0xc8201ae000, 0x1fb0285, 0x1a, 0x152, 0xc820252540, 0xc820631180)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:218 +0x8d
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:219 +0x1e2
goroutine 45 [select]:
github.com/cockroachdb/cockroach/server.(*Server).startSampleEnvironment.func1()
/go/src/github.com/cockroachdb/cockroach/server/server.go:475 +0x15d
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820172580)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 46 [select]:
github.com/cockroachdb/cockroach/ts.(*poller).start.func1()
/go/src/github.com/cockroachdb/cockroach/ts/db.go:78 +0x150
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202d0390)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 47 [select]:
github.com/cockroachdb/cockroach/server.(*Node).startWriteSummaries.func1()
/go/src/github.com/cockroachdb/cockroach/server/node.go:637 +0x35c
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201725a0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 48 [select]:
github.com/cockroachdb/cockroach/sql.(*SchemaChangeManager).Start.func1()
/go/src/github.com/cockroachdb/cockroach/sql/schema_changer.go:538 +0x185b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201725c0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 115 [IO wait]:
net.runtime_pollWait(0x7f7e5408b600, 0x72, 0xc82048e800)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc82026e4c0, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc82026e4c0, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc82026e460, 0xc82048e800, 0x400, 0x400, 0x0, 0x7f7e5407f050, 0xc82000e068)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc82012a268, 0xc82048e800, 0x400, 0x400, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
github.com/cockroachdb/cmux.(*MuxConn).Read(0xc8202ce370, 0xc82048e800, 0x400, 0x400, 0xd, 0x0, 0x0)
/go/src/github.com/cockroachdb/cmux/cmux.go:204 +0x117
crypto/tls.(*block).readFromUntil(0xc8201d6300, 0x7f7e53f80060, 0xc8202ce370, 0x5, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:460 +0xcc
crypto/tls.(*Conn).readRecord(0xc820278300, 0x1b55d17, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
crypto/tls.(*Conn).Read(0xc820278300, 0xc820692000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:939 +0x167
bufio.(*Reader).fill(0xc82033fb00)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Read(0xc82033fb00, 0xc8202900f8, 0x9, 0x9, 0x9, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:207 +0x260
io.ReadAtLeast(0x7f7e540516b0, 0xc82033fb00, 0xc8202900f8, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:297 +0xe6
io.ReadFull(0x7f7e540516b0, 0xc82033fb00, 0xc8202900f8, 0x9, 0x9, 0xde5191945dc21601, 0x0, 0x0)
/usr/local/go/src/io/io.go:315 +0x62
golang.org/x/net/http2.readFrameHeader(0xc8202900f8, 0x9, 0x9, 0x7f7e540516b0, 0xc82033fb00, 0x54000000, 0xc800000000, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:236 +0xa5
golang.org/x/net/http2.(*Framer).ReadFrame(0xc8202900c0, 0x0, 0x0, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:463 +0x106
google.golang.org/grpc/transport.(*framer).readFrame(0xc820606750, 0x0, 0x0, 0x0, 0x0)
/go/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
google.golang.org/grpc/transport.(*http2Server).HandleStreams(0xc820686120, 0xc8206067e0)
/go/src/google.golang.org/grpc/transport/http2_server.go:243 +0x646
google.golang.org/grpc.(*Server).serveStreams(0xc8202cd8c0, 0x7f7e54051700, 0xc820686120)
/go/src/google.golang.org/grpc/server.go:350 +0x159
google.golang.org/grpc.(*Server).serveNewHTTP2Transport(0xc8202cd8c0, 0x7f7e54051510, 0xc820278300, 0x7f7e54051570, 0xc8206a6370)
/go/src/google.golang.org/grpc/server.go:337 +0x49d
google.golang.org/grpc.(*Server).handleRawConn(0xc8202cd8c0, 0x7f7e53f80000, 0xc8202ce370)
/go/src/google.golang.org/grpc/server.go:314 +0x4ee
created by google.golang.org/grpc.(*Server).Serve
/go/src/google.golang.org/grpc/server.go:286 +0x372
goroutine 85 [select]:
github.com/cockroachdb/cockroach/rpc.(*Context).runHeartbeat(0xc82026f810, 0xc8200d3600, 0xc8202d52f0, 0xf, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/rpc/context.go:225 +0x5e5
github.com/cockroachdb/cockroach/rpc.(*Context).GRPCDial.func1()
/go/src/github.com/cockroachdb/cockroach/rpc/context.go:173 +0x66
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201e4c60)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 131 [IO wait]:
net.runtime_pollWait(0x7f7e5408b6c0, 0x72, 0xc82048e400)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc82026e450, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc82026e450, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc82026e3f0, 0xc82048e400, 0x400, 0x400, 0x0, 0x7f7e5407f050, 0xc82000e068)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc820034000, 0xc82048e400, 0x400, 0x400, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
crypto/tls.(*block).readFromUntil(0xc8201d61e0, 0x7f7e54050470, 0xc820034000, 0x5, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:460 +0xcc
crypto/tls.(*Conn).readRecord(0xc820278000, 0x1b55d17, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
crypto/tls.(*Conn).Read(0xc820278000, 0xc8206d4000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:939 +0x167
bufio.(*Reader).fill(0xc8202d8480)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Read(0xc8202d8480, 0xc8206dc038, 0x9, 0x9, 0x9, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:207 +0x260
io.ReadAtLeast(0x7f7e540516b0, 0xc8202d8480, 0xc8206dc038, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:297 +0xe6
io.ReadFull(0x7f7e540516b0, 0xc8202d8480, 0xc8206dc038, 0x9, 0x9, 0xde5191945dc21601, 0x0, 0x0)
/usr/local/go/src/io/io.go:315 +0x62
golang.org/x/net/http2.readFrameHeader(0xc8206dc038, 0x9, 0x9, 0x7f7e540516b0, 0xc8202d8480, 0x54000000, 0xc800000000, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:236 +0xa5
golang.org/x/net/http2.(*Framer).ReadFrame(0xc8206dc000, 0x0, 0x0, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:463 +0x106
google.golang.org/grpc/transport.(*framer).readFrame(0xc820684090, 0x0, 0x0, 0x0, 0x0)
/go/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
google.golang.org/grpc/transport.(*http2Client).reader(0xc820478000)
/go/src/google.golang.org/grpc/transport/http2_client.go:788 +0x109
created by google.golang.org/grpc/transport.newHTTP2Client
/go/src/google.golang.org/grpc/transport/http2_client.go:174 +0xd21
goroutine 132 [select]:
google.golang.org/grpc/transport.(*http2Client).controller(0xc820478000)
/go/src/google.golang.org/grpc/transport/http2_client.go:866 +0x5da
created by google.golang.org/grpc/transport.newHTTP2Client
/go/src/google.golang.org/grpc/transport/http2_client.go:201 +0x15c2
goroutine 112 [select]:
google.golang.org/grpc/transport.(*http2Server).controller(0xc820686120)
/go/src/google.golang.org/grpc/transport/http2_server.go:652 +0x5da
created by google.golang.org/grpc/transport.newHTTP2Server
/go/src/google.golang.org/grpc/transport/http2_server.go:134 +0x84f
goroutine 134 [chan receive]:
github.com/cockroachdb/cockroach/server.RegisterAdminHandlerFromEndpoint.func1.1(0x7f7e5408a608, 0xc82032c3c0, 0xc8202ce2c0, 0xc820124900, 0xf)
/go/src/github.com/cockroachdb/cockroach/server/admin.pb.gw.go:212 +0x51
created by github.com/cockroachdb/cockroach/server.RegisterAdminHandlerFromEndpoint.func1
/go/src/github.com/cockroachdb/cockroach/server/admin.pb.gw.go:216 +0x205
goroutine 136 [runnable]:
google.golang.org/grpc/transport.(*http2Server).controller(0xc820624000)
/go/src/google.golang.org/grpc/transport/http2_server.go:652 +0x5da
created by google.golang.org/grpc/transport.newHTTP2Server
/go/src/google.golang.org/grpc/transport/http2_server.go:134 +0x84f
goroutine 96 [semacquire]:
sync.runtime_Semacquire(0xc8201ae02c)
/usr/local/go/src/runtime/sema.go:47 +0x26
sync.(*Mutex).Lock(0xc8201ae028)
/usr/local/go/src/sync/mutex.go:83 +0x1c4
github.com/cockroachdb/cockroach/util/stop.(*Stopper).runPostlude(0xc8201ae000, 0x1fb591d, 0xe, 0x320)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:235 +0x35
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc8207c4f30, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:167 +0xdf
github.com/cockroachdb/cockroach/server.(*Node).Batch(0xc8201441a0, 0x7f7e54000028, 0xc8208587e0, 0xc8207ca778, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/server/node.go:800 +0x327
github.com/cockroachdb/cockroach/kv.(*grpcTransport).SendNext(0xc82017b360, 0xc8207d46c0)
/go/src/github.com/cockroachdb/cockroach/kv/transport.go:149 +0x402
github.com/cockroachdb/cockroach/kv.send(0x7f7e5408cb60, 0xc820784210, 0x1, 0x2540be400, 0xb2d05e00, 0x0, 0xc82071d4c0, 0x1, 0x1, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/send.go:118 +0x4ac
github.com/cockroachdb/cockroach/kv.(*DistSender).sendRPC(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x6, 0xc82071d4c0, 0x1, 0x1, 0x1, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:346 +0x217
github.com/cockroachdb/cockroach/kv.(*DistSender).sendSingleRange(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:461 +0x206
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk.func2(0xc8207c5f40, 0xc8207c5b98, 0xc8207c66d0, 0xc82026ca80, 0xc8207c66c0, 0x2, 0xd)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:720 +0x448
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:721 +0x1f88
github.com/cockroachdb/cockroach/kv.(*DistSender).Send(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:565 +0x6d5
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:367 +0xa5d
github.com/cockroachdb/cockroach/client.(*DB).send(0xc8202679a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*DB).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc8207c7508, 0xc82078c000, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*DB).Run(0xc8202679a0, 0xc82078c000, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x85
github.com/cockroachdb/cockroach/storage.(*intentResolver).maybePushTransactions(0xc82026aa00, 0x7f7e54000028, 0xc8207841e0, 0xc8206cfef0, 0x1, 0x1, 0x144ea86ece095ce8, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:223 +0x783
github.com/cockroachdb/cockroach/storage.(*intentResolver).processIntentsAsync.func1()
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:275 +0x174
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask.func1(0xc8201ae000, 0x1fb0285, 0x1a, 0x12b, 0xc820252540, 0xc820786180)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:218 +0x8d
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:219 +0x1e2
ERROR: exit status 255
```
Run Details:
```
213 runs so far, 0 failures, over 5s
441 runs so far, 0 failures, over 10s
665 runs so far, 0 failures, over 15s
885 runs so far, 0 failures, over 20s
1107 runs so far, 0 failures, over 25s
1325 runs so far, 0 failures, over 30s
1546 runs so far, 0 failures, over 35s
1770 runs so far, 0 failures, over 40s
1991 runs so far, 0 failures, over 45s
2191 runs completed, 1 failures, over 49s
FAIL
```
Please assign, take a look and update the issue accordingly. | 1.0 | stress: failed test in cockroach/sql/distsql/distsql.test: TestTableReader - Binary: cockroach/static-tests.tar.gz sha: https://github.com/cockroachdb/cockroach/commits/4560c81d1d65cdda8cb439a805693094fcb0b75f
Stress build found a failed test:
```
=== RUN TestTableReader
W160515 06:02:02.638742 gossip/gossip.go:893 not connected to cluster; use --join to specify a connected node
I160515 06:02:02.641667 storage/engine/rocksdb.go:137 opening in memory rocksdb instance
W160515 06:02:02.642886 gossip/gossip.go:893 not connected to cluster; use --join to specify a connected node
I160515 06:02:02.643130 server/node.go:400 store store=0:0 ([]=) not bootstrapped
I160515 06:02:02.645010 storage/replica_command.go:1470 range 1: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.644599658s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.644898493 +0000 UTC]
I160515 06:02:02.645582 server/node.go:326 **** cluster {67b0fc25-7015-4f40-8954-6a56a087062d} has been created
I160515 06:02:02.645609 server/node.go:327 **** add additional nodes by specifying --join=127.0.0.1:35777
W160515 06:02:02.645624 gossip/gossip.go:893 not connected to cluster; use --join to specify a connected node
I160515 06:02:02.646339 server/node.go:413 initialized store store=1:1 ([]=): {Capacity:10365558784 Available:8249167872 RangeCount:0}
I160515 06:02:02.646373 server/node.go:301 node ID 1 initialized
I160515 06:02:02.646432 storage/stores.go:287 read 0 node addresses from persistent storage
I160515 06:02:02.646559 server/node.go:534 connecting to gossip network to verify cluster ID...
I160515 06:02:02.646816 server/node.go:555 node connected via gossip and verified as part of cluster {"67b0fc25-7015-4f40-8954-6a56a087062d"}
I160515 06:02:02.646852 server/node.go:354 [node=1] Started node with [[]=] engine(s) and attributes []
I160515 06:02:02.646904 server/server.go:398 starting https server at 127.0.0.1:37900
I160515 06:02:02.646921 server/server.go:399 starting grpc/postgres server at 127.0.0.1:35777
I160515 06:02:02.646999 storage/split_queue.go:100 splitting range=1 [/Min-/Max) at keys [/Table/11/0 /Table/12/0 /Table/13/0 /Table/14/0]
I160515 06:02:02.658729 storage/replica_command.go:2011 initiating a split of range=1 [/Min-/Max) at key /Table/11
I160515 06:02:02.664544 storage/replica_command.go:1470 range 2: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.745870398s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.664476024 +0000 UTC]
I160515 06:02:02.664728 storage/replica_command.go:2011 initiating a split of range=2 [/Table/11-/Max) at key /Table/12
I160515 06:02:02.666283 server/updates.go:155 No previous updates check time.
I160515 06:02:02.687774 storage/replica_command.go:1470 range 3: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.745870398s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.687726842 +0000 UTC]
I160515 06:02:02.688026 storage/replica_command.go:2011 initiating a split of range=3 [/Table/12-/Max) at key /Table/13
I160515 06:02:02.697291 storage/replica_command.go:1470 range 4: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.747101804s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.697255537 +0000 UTC]
I160515 06:02:02.704818 storage/replica_command.go:2011 initiating a split of range=4 [/Table/13-/Max) at key /Table/14
I160515 06:02:02.787590 storage/replica_command.go:1470 range 5: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.837076601s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.787534539 +0000 UTC]
I160515 06:02:02.787739 storage/split_queue.go:100 splitting range=5 [/Table/14-/Max) at keys [/Table/50/0 /Table/51/0]
I160515 06:02:02.788052 storage/replica_command.go:2011 initiating a split of range=5 [/Table/14-/Max) at key /Table/50
I160515 06:02:02.799172 storage/replica_command.go:1470 range 6: new leader lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 406470h2m3.848932763s following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0 [physicalTime=2016-05-15 06:02:02.799129314 +0000 UTC]
I160515 06:02:02.799286 storage/replica_command.go:2011 initiating a split of range=6 [/Table/50-/Max) at key /Table/51
RESULT: 1 <skipped> 11 12
RESULT: 3 <skipped> 31 32
RESULT: 4 <skipped> 61 62
RESULT: 5 <skipped> 51 52
RESULT: 6 <skipped> 41 42
RESULT: 6 40 41 <skipped>
RESULT: 2 20 21 <skipped>
RESULT: 1 10 11 <skipped>
I160515 06:02:02.800716 stopper.go:352 draining; tasks left:
5 server/node.go:800
1 storage/queue.go:383
1 storage/intent_resolver.go:338
1 storage/intent_resolver.go:299
F160515 06:02:02.800908 kv/txn_coord_sender.go:797 retryable internal error must not happen at this level: key range /Local/Range/"\xba"/RangeDescriptor-/Min outside of bounds of range /Table/14-/Table/50
goroutine 78 [running]:
github.com/cockroachdb/cockroach/util/log.getStacks(0xececa0701, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:862 +0xb8
github.com/cockroachdb/cockroach/util/log.(*loggingT).outputLogEntry(0x2588ee0, 0x3, 0x1fb0575, 0x16, 0x31d, 0xc8203ffd60, 0x99)
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:728 +0x9c5
github.com/cockroachdb/cockroach/util/log.addStructured(0x0, 0x0, 0x3, 0x2, 0x19b8200, 0x3a, 0xc82073a5c8, 0x1, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/log/structured.go:57 +0xfc
github.com/cockroachdb/cockroach/util/log.logDepth(0x0, 0x0, 0x1, 0x7f7e00000003, 0x19b8200, 0x3a, 0xc82073a5c8, 0x1, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/log/log.go:73 +0x7b
github.com/cockroachdb/cockroach/util/log.Fatalf(0x19b8200, 0x3a, 0xc82073a5c8, 0x1, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/log/log.go:179 +0x66
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).updateState(0xc820264f00, 0x144ea86ece14f980, 0x7f7e5408cb60, 0xc8205918f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:797 +0xedf
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc8205918f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc82008d680, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:374 +0xb59
github.com/cockroachdb/cockroach/client.(*txnSender).Send(0xc820402840, 0x7f7e5408a598, 0xc82000e938, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc820402898, ...)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:61 +0xb8
github.com/cockroachdb/cockroach/client.(*DB).send(0xc820402840, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*Txn).send(0xc820402840, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:657 +0x963
github.com/cockroachdb/cockroach/client.(*Txn).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:363 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc82073b6e8, 0xc82058d680, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*Txn).Run(0xc820402840, 0xc82058d680, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:363 +0xb1
github.com/cockroachdb/cockroach/storage.(*Replica).AdminSplit.func1(0xc820402840, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/replica_command.go:2033 +0x347
github.com/cockroachdb/cockroach/client.(*DB).Txn.func1(0xc820402840, 0xc82071c8c0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:422 +0x31
github.com/cockroachdb/cockroach/client.(*Txn).Exec(0xc820402840, 0x1f10101, 0x0, 0x0, 0xc82073bc50, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/txn.go:532 +0x2eb
github.com/cockroachdb/cockroach/client.(*DB).Txn(0xc8202679a0, 0xc82073bf08, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:420 +0x28d
github.com/cockroachdb/cockroach/storage.(*Replica).AdminSplit(0xc8204e4000, 0x7f7e5408cb60, 0xc820591440, 0xc8201e2688, 0x2, 0x8, 0x0, 0x0, 0x0, 0xc8201e2688, ...)
/go/src/github.com/cockroachdb/cockroach/storage/replica_command.go:2013 +0xe1a
github.com/cockroachdb/cockroach/storage.(*Replica).addAdminCmd(0xc8204e4000, 0x7f7e5408cb60, 0xc820591440, 0x144ea86ece0e8aea, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/replica.go:1149 +0x876
github.com/cockroachdb/cockroach/storage.(*Replica).Send(0xc8204e4000, 0x7f7e5408cb60, 0xc820591440, 0x144ea86ece0e8aea, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/replica.go:838 +0x20c
github.com/cockroachdb/cockroach/storage.(*Store).Send(0xc820234280, 0x7f7e5408cb60, 0xc820591440, 0x144ea86ece0e8aea, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/store.go:1806 +0xd12
github.com/cockroachdb/cockroach/storage.(*Stores).Send(0xc82032c380, 0x7f7e5408cb60, 0xc8205913e0, 0x0, 0x0, 0x100000001, 0x1, 0x6, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/stores.go:178 +0x501
github.com/cockroachdb/cockroach/server.(*Node).Batch.func3()
/go/src/github.com/cockroachdb/cockroach/server/node.go:788 +0x55b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc82073d038, 0x0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:166 +0xd9
github.com/cockroachdb/cockroach/server.(*Node).Batch(0xc8201441a0, 0x7f7e54000028, 0xc820591320, 0xc8205fdf18, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/server/node.go:800 +0x327
github.com/cockroachdb/cockroach/kv.(*grpcTransport).SendNext(0xc82017b090, 0xc8204c9c80)
/go/src/github.com/cockroachdb/cockroach/kv/transport.go:149 +0x402
github.com/cockroachdb/cockroach/kv.send(0x7f7e5408cb60, 0xc8206355c0, 0x1, 0x2540be400, 0xb2d05e00, 0x0, 0xc82071c4e0, 0x1, 0x1, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/send.go:118 +0x4ac
github.com/cockroachdb/cockroach/kv.(*DistSender).sendRPC(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x6, 0xc82071c4e0, 0x1, 0x1, 0x1, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:346 +0x217
github.com/cockroachdb/cockroach/kv.(*DistSender).sendSingleRange(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:461 +0x206
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk.func2(0xc82073e048, 0xc82073dca0, 0xc82073e7d8, 0xc82026ca80, 0xc82073e7c8, 0x3, 0x8)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:720 +0x448
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:721 +0x1f88
github.com/cockroachdb/cockroach/kv.(*DistSender).Send(0xc82026ca80, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:565 +0x6d5
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc8206355c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:367 +0xa5d
github.com/cockroachdb/cockroach/client.(*DB).send(0xc8202679a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*DB).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc82073f610, 0xc82062fb00, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*DB).Run(0xc8202679a0, 0xc82062fb00, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x85
github.com/cockroachdb/cockroach/client.runOneResult(0x7f7e5408ca70, 0xc8202679a0, 0xc82062fb00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:485 +0x6c
github.com/cockroachdb/cockroach/client.(*DB).AdminSplit(0xc8202679a0, 0x1739ce0, 0xc820798f60, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:355 +0xff
github.com/cockroachdb/cockroach/storage.(*splitQueue).process(0xc8200986e0, 0x144ea86ecd6355cd, 0x0, 0xc820154d00, 0xc820490800, 0x17, 0x20, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/split_queue.go:102 +0x410
github.com/cockroachdb/cockroach/storage.(*baseQueue).processReplica(0xc8200986e0, 0xc820154d00, 0xc8201d9a80, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:430 +0x9ca
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1.1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:379 +0x4e
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc82073fe38, 0x0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:166 +0xd9
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:383 +0x275
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148600)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 1 [chan receive]:
testing.RunTests(0x1b554a0, 0x22a6860, 0x2, 0x2, 0xc8202fdd01)
/usr/local/go/src/testing/testing.go:583 +0x8d2
testing.(*M).Run(0xc82045bf08, 0x1)
/usr/local/go/src/testing/testing.go:515 +0x81
github.com/cockroachdb/cockroach/sql/distsql_test.TestMain(0xc82045bf08)
/go/src/github.com/cockroachdb/cockroach/sql/distsql/main_test.go:34 +0x70
main.main()
github.com/cockroachdb/cockroach/sql/distsql/_test/_testmain.go:56 +0x114
goroutine 17 [syscall, locked to thread]:
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:1998 +0x1
goroutine 133 [select]:
google.golang.org/grpc.(*Conn).transportMonitor(0xc8201e00f0)
/go/src/google.golang.org/grpc/clientconn.go:544 +0x1d3
created by google.golang.org/grpc.NewConn
/go/src/google.golang.org/grpc/clientconn.go:346 +0x49f
goroutine 20 [chan receive]:
github.com/cockroachdb/cockroach/util/log.(*loggingT).flushDaemon(0x2588ee0)
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:1011 +0x64
created by github.com/cockroachdb/cockroach/util/log.init.1
/go/src/github.com/cockroachdb/cockroach/util/log/clog.go:598 +0x8a
goroutine 7 [runnable]:
sync.runtime_Syncsemacquire(0xc82018ce10)
/usr/local/go/src/runtime/sema.go:241 +0x201
sync.(*Cond).Wait(0xc82018ce00)
/usr/local/go/src/sync/cond.go:63 +0x9b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).Quiesce(0xc8201ae000)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:354 +0x1eb
github.com/cockroachdb/cockroach/util/stop.(*Stopper).Stop(0xc8201ae000)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:300 +0x1a7
github.com/cockroachdb/cockroach/server.(*Server).Stop(0xc820167500)
/go/src/github.com/cockroachdb/cockroach/server/server.go:503 +0x28
github.com/cockroachdb/cockroach/server.(*TestServer).Stop(0xc82026a180)
/go/src/github.com/cockroachdb/cockroach/server/testserver.go:329 +0x5d
github.com/cockroachdb/cockroach/testutils/sqlutils.SetupServerWithParams.func1()
/go/src/github.com/cockroachdb/cockroach/testutils/sqlutils/test_server.go:49 +0x73
github.com/cockroachdb/cockroach/sql/distsql.TestTableReader(0xc820186000)
/go/src/github.com/cockroachdb/cockroach/sql/distsql/tablereader_test.go:102 +0xd02
testing.tRunner(0xc820186000, 0x22a6878)
/usr/local/go/src/testing/testing.go:473 +0x98
created by testing.RunTests
/usr/local/go/src/testing/testing.go:582 +0x892
goroutine 9 [select]:
github.com/cockroachdb/cockroach/storage.(*StorePool).start.func1()
/go/src/github.com/cockroachdb/cockroach/storage/store_pool.go:225 +0x23f
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82025cec0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 10 [select]:
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).startStats(0xc820264f00)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:203 +0xd21
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 +0x20
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201466a0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 11 [select]:
github.com/cockroachdb/cockroach/sql.(*LeaseManager).RefreshLeases.func1()
/go/src/github.com/cockroachdb/cockroach/sql/lease.go:733 +0xf97
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201e7710)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 12 [select]:
github.com/cockroachdb/cockroach/sql.NewExecutor.func1()
/go/src/github.com/cockroachdb/cockroach/sql/executor.go:247 +0x15c
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202679f0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 13 [chan receive]:
github.com/cockroachdb/cockroach/storage/engine.(*RocksDB).Open.func1(0xc82033e600)
/go/src/github.com/cockroachdb/cockroach/storage/engine/rocksdb.go:164 +0x3a
created by github.com/cockroachdb/cockroach/storage/engine.(*RocksDB).Open
/go/src/github.com/cockroachdb/cockroach/storage/engine/rocksdb.go:165 +0x8f4
goroutine 50 [chan receive]:
github.com/cockroachdb/cockroach/util.ServeHandler.func2()
/go/src/github.com/cockroachdb/cockroach/util/net.go:92 +0xb8
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82032c5c0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 51 [chan receive]:
github.com/cockroachdb/cockroach/util.ServeHandler.func2()
/go/src/github.com/cockroachdb/cockroach/util/net.go:92 +0xb8
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82032c640)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 54 [runnable]:
github.com/cockroachdb/cockroach/gossip.(*server).start.func3()
/go/src/github.com/cockroachdb/cockroach/gossip/server.go:298 +0x5c
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202c2ae0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 55 [select]:
github.com/cockroachdb/cockroach/gossip.(*Gossip).bootstrap.func1()
/go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:755 +0x26b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202c2b00)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 56 [select]:
github.com/cockroachdb/cockroach/gossip.(*Gossip).manage.func1()
/go/src/github.com/cockroachdb/cockroach/gossip/gossip.go:792 +0x33b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202c2b20)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 76 [select]:
github.com/cockroachdb/cockroach/storage.(*replicaScanner).waitAndProcess(0xc8201aeaf0, 0xececa07da, 0x268d26c5, 0x2588360, 0xc8201d9a80, 0xc8201ae000, 0xc820154900, 0xc8203aae98)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:161 +0x568
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1.1(0xc820154900, 0xc8201e88a0)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:203 +0x78
github.com/cockroachdb/cockroach/storage.(*storeRangeSet).Visit(0xc8201e8ba0, 0xc82014e800)
/go/src/github.com/cockroachdb/cockroach/storage/store.go:241 +0x246
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:205 +0x21e
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148580)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 67 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).processRaft.func1()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:2073 +0xbf1
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202d5060)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 69 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).Start.func4()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:931 +0x13d
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82026aea0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 70 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).startGossip.func1()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:1002 +0x3cf
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82026aec0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 71 [select]:
github.com/cockroachdb/cockroach/storage.(*Store).startGossip.func2()
/go/src/github.com/cockroachdb/cockroach/storage/store.go:1021 +0x3cf
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc82026aee0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 77 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201485e0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 75 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148560)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 42 [select]:
github.com/cockroachdb/cockroach/server.(*Node).startComputePeriodicMetrics.func1()
/go/src/github.com/cockroachdb/cockroach/server/node.go:603 +0x23b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820172460)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 101 [select]:
github.com/cockroachdb/cockroach/storage.(*idAllocator).start.func1()
/go/src/github.com/cockroachdb/cockroach/storage/id_alloc.go:131 +0x7f7
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201e2160)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 43 [select]:
github.com/cockroachdb/cockroach/server.(*Node).startGossip.func1()
/go/src/github.com/cockroachdb/cockroach/server/node.go:570 +0x406
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820172480)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 79 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148620)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 80 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148640)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 81 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148660)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 82 [select]:
github.com/cockroachdb/cockroach/storage.(*baseQueue).processLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/queue.go:356 +0x303
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820148680)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 83 [select]:
github.com/cockroachdb/cockroach/storage.(*replicaScanner).waitAndProcess(0xc8201ae700, 0xececa07da, 0x268d9e5d, 0x2588360, 0xc8201d9a80, 0xc8201ae000, 0xc820154900, 0xc820453e98)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:161 +0x568
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1.1(0xc820154900, 0xc8201e88a0)
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:203 +0x78
github.com/cockroachdb/cockroach/storage.(*storeRangeSet).Visit(0xc8201e8990, 0xc82014e8c0)
/go/src/github.com/cockroachdb/cockroach/storage/store.go:241 +0x246
github.com/cockroachdb/cockroach/storage.(*replicaScanner).scanLoop.func1()
/go/src/github.com/cockroachdb/cockroach/storage/scanner.go:205 +0x21e
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201486a0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 149 [runnable]:
sync.runtime_Semacquire(0xc8201ae02c)
/usr/local/go/src/runtime/sema.go:47 +0x26
sync.(*Mutex).Lock(0xc8201ae028)
/usr/local/go/src/sync/mutex.go:83 +0x1c4
github.com/cockroachdb/cockroach/util/stop.(*Stopper).runPostlude(0xc8201ae000, 0x1fb591d, 0xe, 0x320)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:235 +0x35
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc820781390, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:167 +0xdf
github.com/cockroachdb/cockroach/server.(*Node).Batch(0xc8201441a0, 0x7f7e54000028, 0xc820856090, 0xc82078aad8, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/server/node.go:800 +0x327
github.com/cockroachdb/cockroach/kv.(*grpcTransport).SendNext(0xc820086dc0, 0xc8204f7320)
/go/src/github.com/cockroachdb/cockroach/kv/transport.go:149 +0x402
github.com/cockroachdb/cockroach/kv.send(0x7f7e5408cb60, 0xc8206354d0, 0x1, 0x2540be400, 0xb2d05e00, 0x0, 0xc8207a5f60, 0x1, 0x1, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/send.go:118 +0x4ac
github.com/cockroachdb/cockroach/kv.(*DistSender).sendRPC(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x1, 0xc8207a5f60, 0x1, 0x1, 0x1, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:346 +0x217
github.com/cockroachdb/cockroach/kv.(*DistSender).sendSingleRange(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:461 +0x206
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk.func2(0xc8207823a0, 0xc820781ff8, 0xc820782b30, 0xc82026ca80, 0xc820782b20, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:720 +0x448
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:721 +0x1f88
github.com/cockroachdb/cockroach/kv.(*DistSender).Send(0xc82026ca80, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:565 +0x6d5
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc8206354d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:367 +0xa5d
github.com/cockroachdb/cockroach/client.(*DB).send(0xc8202679a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*DB).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc820783968, 0xc82062f200, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*DB).Run(0xc8202679a0, 0xc82062f200, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x85
github.com/cockroachdb/cockroach/storage.(*intentResolver).resolveIntents.func3(0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:434 +0x3d
github.com/cockroachdb/cockroach/storage.(*intentResolver).resolveIntents(0xc82026aa00, 0x7f7e54000028, 0xc820635440, 0xc820154d00, 0xc82027f200, 0xa, 0x10, 0x1, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:443 +0x85f
github.com/cockroachdb/cockroach/storage.(*intentResolver).processIntentsAsync.func2()
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:313 +0x13f
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask.func1(0xc8201ae000, 0x1fb0285, 0x1a, 0x152, 0xc820252540, 0xc820631180)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:218 +0x8d
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:219 +0x1e2
goroutine 45 [select]:
github.com/cockroachdb/cockroach/server.(*Server).startSampleEnvironment.func1()
/go/src/github.com/cockroachdb/cockroach/server/server.go:475 +0x15d
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc820172580)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 46 [select]:
github.com/cockroachdb/cockroach/ts.(*poller).start.func1()
/go/src/github.com/cockroachdb/cockroach/ts/db.go:78 +0x150
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8202d0390)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 47 [select]:
github.com/cockroachdb/cockroach/server.(*Node).startWriteSummaries.func1()
/go/src/github.com/cockroachdb/cockroach/server/node.go:637 +0x35c
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201725a0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 48 [select]:
github.com/cockroachdb/cockroach/sql.(*SchemaChangeManager).Start.func1()
/go/src/github.com/cockroachdb/cockroach/sql/schema_changer.go:538 +0x185b
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201725c0)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 115 [IO wait]:
net.runtime_pollWait(0x7f7e5408b600, 0x72, 0xc82048e800)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc82026e4c0, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc82026e4c0, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc82026e460, 0xc82048e800, 0x400, 0x400, 0x0, 0x7f7e5407f050, 0xc82000e068)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc82012a268, 0xc82048e800, 0x400, 0x400, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
github.com/cockroachdb/cmux.(*MuxConn).Read(0xc8202ce370, 0xc82048e800, 0x400, 0x400, 0xd, 0x0, 0x0)
/go/src/github.com/cockroachdb/cmux/cmux.go:204 +0x117
crypto/tls.(*block).readFromUntil(0xc8201d6300, 0x7f7e53f80060, 0xc8202ce370, 0x5, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:460 +0xcc
crypto/tls.(*Conn).readRecord(0xc820278300, 0x1b55d17, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
crypto/tls.(*Conn).Read(0xc820278300, 0xc820692000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:939 +0x167
bufio.(*Reader).fill(0xc82033fb00)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Read(0xc82033fb00, 0xc8202900f8, 0x9, 0x9, 0x9, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:207 +0x260
io.ReadAtLeast(0x7f7e540516b0, 0xc82033fb00, 0xc8202900f8, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:297 +0xe6
io.ReadFull(0x7f7e540516b0, 0xc82033fb00, 0xc8202900f8, 0x9, 0x9, 0xde5191945dc21601, 0x0, 0x0)
/usr/local/go/src/io/io.go:315 +0x62
golang.org/x/net/http2.readFrameHeader(0xc8202900f8, 0x9, 0x9, 0x7f7e540516b0, 0xc82033fb00, 0x54000000, 0xc800000000, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:236 +0xa5
golang.org/x/net/http2.(*Framer).ReadFrame(0xc8202900c0, 0x0, 0x0, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:463 +0x106
google.golang.org/grpc/transport.(*framer).readFrame(0xc820606750, 0x0, 0x0, 0x0, 0x0)
/go/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
google.golang.org/grpc/transport.(*http2Server).HandleStreams(0xc820686120, 0xc8206067e0)
/go/src/google.golang.org/grpc/transport/http2_server.go:243 +0x646
google.golang.org/grpc.(*Server).serveStreams(0xc8202cd8c0, 0x7f7e54051700, 0xc820686120)
/go/src/google.golang.org/grpc/server.go:350 +0x159
google.golang.org/grpc.(*Server).serveNewHTTP2Transport(0xc8202cd8c0, 0x7f7e54051510, 0xc820278300, 0x7f7e54051570, 0xc8206a6370)
/go/src/google.golang.org/grpc/server.go:337 +0x49d
google.golang.org/grpc.(*Server).handleRawConn(0xc8202cd8c0, 0x7f7e53f80000, 0xc8202ce370)
/go/src/google.golang.org/grpc/server.go:314 +0x4ee
created by google.golang.org/grpc.(*Server).Serve
/go/src/google.golang.org/grpc/server.go:286 +0x372
goroutine 85 [select]:
github.com/cockroachdb/cockroach/rpc.(*Context).runHeartbeat(0xc82026f810, 0xc8200d3600, 0xc8202d52f0, 0xf, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/rpc/context.go:225 +0x5e5
github.com/cockroachdb/cockroach/rpc.(*Context).GRPCDial.func1()
/go/src/github.com/cockroachdb/cockroach/rpc/context.go:173 +0x66
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker.func1(0xc8201ae000, 0xc8201e4c60)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:139 +0x52
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunWorker
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:140 +0x62
goroutine 131 [IO wait]:
net.runtime_pollWait(0x7f7e5408b6c0, 0x72, 0xc82048e400)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc82026e450, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc82026e450, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc82026e3f0, 0xc82048e400, 0x400, 0x400, 0x0, 0x7f7e5407f050, 0xc82000e068)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc820034000, 0xc82048e400, 0x400, 0x400, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
crypto/tls.(*block).readFromUntil(0xc8201d61e0, 0x7f7e54050470, 0xc820034000, 0x5, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:460 +0xcc
crypto/tls.(*Conn).readRecord(0xc820278000, 0x1b55d17, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
crypto/tls.(*Conn).Read(0xc820278000, 0xc8206d4000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:939 +0x167
bufio.(*Reader).fill(0xc8202d8480)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Read(0xc8202d8480, 0xc8206dc038, 0x9, 0x9, 0x9, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:207 +0x260
io.ReadAtLeast(0x7f7e540516b0, 0xc8202d8480, 0xc8206dc038, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:297 +0xe6
io.ReadFull(0x7f7e540516b0, 0xc8202d8480, 0xc8206dc038, 0x9, 0x9, 0xde5191945dc21601, 0x0, 0x0)
/usr/local/go/src/io/io.go:315 +0x62
golang.org/x/net/http2.readFrameHeader(0xc8206dc038, 0x9, 0x9, 0x7f7e540516b0, 0xc8202d8480, 0x54000000, 0xc800000000, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:236 +0xa5
golang.org/x/net/http2.(*Framer).ReadFrame(0xc8206dc000, 0x0, 0x0, 0x0, 0x0)
/go/src/golang.org/x/net/http2/frame.go:463 +0x106
google.golang.org/grpc/transport.(*framer).readFrame(0xc820684090, 0x0, 0x0, 0x0, 0x0)
/go/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
google.golang.org/grpc/transport.(*http2Client).reader(0xc820478000)
/go/src/google.golang.org/grpc/transport/http2_client.go:788 +0x109
created by google.golang.org/grpc/transport.newHTTP2Client
/go/src/google.golang.org/grpc/transport/http2_client.go:174 +0xd21
goroutine 132 [select]:
google.golang.org/grpc/transport.(*http2Client).controller(0xc820478000)
/go/src/google.golang.org/grpc/transport/http2_client.go:866 +0x5da
created by google.golang.org/grpc/transport.newHTTP2Client
/go/src/google.golang.org/grpc/transport/http2_client.go:201 +0x15c2
goroutine 112 [select]:
google.golang.org/grpc/transport.(*http2Server).controller(0xc820686120)
/go/src/google.golang.org/grpc/transport/http2_server.go:652 +0x5da
created by google.golang.org/grpc/transport.newHTTP2Server
/go/src/google.golang.org/grpc/transport/http2_server.go:134 +0x84f
goroutine 134 [chan receive]:
github.com/cockroachdb/cockroach/server.RegisterAdminHandlerFromEndpoint.func1.1(0x7f7e5408a608, 0xc82032c3c0, 0xc8202ce2c0, 0xc820124900, 0xf)
/go/src/github.com/cockroachdb/cockroach/server/admin.pb.gw.go:212 +0x51
created by github.com/cockroachdb/cockroach/server.RegisterAdminHandlerFromEndpoint.func1
/go/src/github.com/cockroachdb/cockroach/server/admin.pb.gw.go:216 +0x205
goroutine 136 [runnable]:
google.golang.org/grpc/transport.(*http2Server).controller(0xc820624000)
/go/src/google.golang.org/grpc/transport/http2_server.go:652 +0x5da
created by google.golang.org/grpc/transport.newHTTP2Server
/go/src/google.golang.org/grpc/transport/http2_server.go:134 +0x84f
goroutine 96 [semacquire]:
sync.runtime_Semacquire(0xc8201ae02c)
/usr/local/go/src/runtime/sema.go:47 +0x26
sync.(*Mutex).Lock(0xc8201ae028)
/usr/local/go/src/sync/mutex.go:83 +0x1c4
github.com/cockroachdb/cockroach/util/stop.(*Stopper).runPostlude(0xc8201ae000, 0x1fb591d, 0xe, 0x320)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:235 +0x35
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunTask(0xc8201ae000, 0xc8207c4f30, 0x1)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:167 +0xdf
github.com/cockroachdb/cockroach/server.(*Node).Batch(0xc8201441a0, 0x7f7e54000028, 0xc8208587e0, 0xc8207ca778, 0x0, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/server/node.go:800 +0x327
github.com/cockroachdb/cockroach/kv.(*grpcTransport).SendNext(0xc82017b360, 0xc8207d46c0)
/go/src/github.com/cockroachdb/cockroach/kv/transport.go:149 +0x402
github.com/cockroachdb/cockroach/kv.send(0x7f7e5408cb60, 0xc820784210, 0x1, 0x2540be400, 0xb2d05e00, 0x0, 0xc82071d4c0, 0x1, 0x1, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/send.go:118 +0x4ac
github.com/cockroachdb/cockroach/kv.(*DistSender).sendRPC(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x6, 0xc82071d4c0, 0x1, 0x1, 0x1, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:346 +0x217
github.com/cockroachdb/cockroach/kv.(*DistSender).sendSingleRange(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:461 +0x206
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk.func2(0xc8207c5f40, 0xc8207c5b98, 0xc8207c66d0, 0xc82026ca80, 0xc8207c66c0, 0x2, 0xd)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:720 +0x448
github.com/cockroachdb/cockroach/kv.(*DistSender).sendChunk(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:721 +0x1f88
github.com/cockroachdb/cockroach/kv.(*DistSender).Send(0xc82026ca80, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/dist_sender.go:565 +0x6d5
github.com/cockroachdb/cockroach/kv.(*TxnCoordSender).Send(0xc820264f00, 0x7f7e5408cb60, 0xc820784210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/kv/txn_coord_sender.go:367 +0xa5d
github.com/cockroachdb/cockroach/client.(*DB).send(0xc8202679a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:458 +0x3ee
github.com/cockroachdb/cockroach/client.(*DB).(github.com/cockroachdb/cockroach/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x37
github.com/cockroachdb/cockroach/client.sendAndFill(0xc8207c7508, 0xc82078c000, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:387 +0x200
github.com/cockroachdb/cockroach/client.(*DB).Run(0xc8202679a0, 0xc82078c000, 0x0, 0x0)
/go/src/github.com/cockroachdb/cockroach/client/db.go:405 +0x85
github.com/cockroachdb/cockroach/storage.(*intentResolver).maybePushTransactions(0xc82026aa00, 0x7f7e54000028, 0xc8207841e0, 0xc8206cfef0, 0x1, 0x1, 0x144ea86ece095ce8, 0x0, 0x0, 0x0, ...)
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:223 +0x783
github.com/cockroachdb/cockroach/storage.(*intentResolver).processIntentsAsync.func1()
/go/src/github.com/cockroachdb/cockroach/storage/intent_resolver.go:275 +0x174
github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask.func1(0xc8201ae000, 0x1fb0285, 0x1a, 0x12b, 0xc820252540, 0xc820786180)
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:218 +0x8d
created by github.com/cockroachdb/cockroach/util/stop.(*Stopper).RunLimitedAsyncTask
/go/src/github.com/cockroachdb/cockroach/util/stop/stopper.go:219 +0x1e2
ERROR: exit status 255
```
Run Details:
```
213 runs so far, 0 failures, over 5s
441 runs so far, 0 failures, over 10s
665 runs so far, 0 failures, over 15s
885 runs so far, 0 failures, over 20s
1107 runs so far, 0 failures, over 25s
1325 runs so far, 0 failures, over 30s
1546 runs so far, 0 failures, over 35s
1770 runs so far, 0 failures, over 40s
1991 runs so far, 0 failures, over 45s
2191 runs completed, 1 failures, over 49s
FAIL
```
Please assign, take a look and update the issue accordingly. | non_priority | stress failed test in cockroach sql distsql distsql test testtablereader binary cockroach static tests tar gz sha stress build found a failed test run testtablereader gossip gossip go not connected to cluster use join to specify a connected node storage engine rocksdb go opening in memory rocksdb instance gossip gossip go not connected to cluster use join to specify a connected node server node go store store not bootstrapped storage replica command go range new leader lease replica utc following replica utc server node go cluster has been created server node go add additional nodes by specifying join gossip gossip go not connected to cluster use join to specify a connected node server node go initialized store store capacity available rangecount server node go node id initialized storage stores go read node addresses from persistent storage server node go connecting to gossip network to verify cluster id server node go node connected via gossip and verified as part of cluster server node go started node with engine s and attributes server server go starting https server at server server go starting grpc postgres server at storage split queue go splitting range storage replica command go initiating a split of range min max at key table storage replica command go range new leader lease replica utc following replica utc storage replica command go initiating a split of range table max at key table server updates go no previous updates check time storage replica command go range new leader lease replica utc following replica utc storage replica command go initiating a split of range table max at key table storage replica command go range new leader lease replica utc following replica utc storage replica command go initiating a split of range table max at key table storage replica command go range new leader lease replica utc following replica utc storage split queue go splitting range storage replica command go initiating a split of range table max at key table storage replica command go range new leader lease replica utc following replica utc storage replica command go initiating a split of range table max at key table result result result result result result result result stopper go draining tasks left server node go storage queue go storage intent resolver go storage intent resolver go kv txn coord sender go retryable internal error must not happen at this level key range local range xba rangedescriptor min outside of bounds of range table table goroutine github com cockroachdb cockroach util log getstacks go src github com cockroachdb cockroach util log clog go github com cockroachdb cockroach util log loggingt outputlogentry go src github com cockroachdb cockroach util log clog go github com cockroachdb cockroach util log addstructured go src github com cockroachdb cockroach util log structured go github com cockroachdb cockroach util log logdepth go src github com cockroachdb cockroach util log log go github com cockroachdb cockroach util log fatalf go src github com cockroachdb cockroach util log log go github com cockroachdb cockroach kv txncoordsender updatestate go src github com cockroachdb cockroach kv txn coord sender go github com cockroachdb cockroach kv txncoordsender send go src github com cockroachdb cockroach kv txn coord sender go github com cockroachdb cockroach client txnsender send go src github com cockroachdb cockroach client txn go github com cockroachdb cockroach client db send go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client txn send go src github com cockroachdb cockroach client txn go github com cockroachdb cockroach client txn github com cockroachdb cockroach client send fm go src github com cockroachdb cockroach client txn go github com cockroachdb cockroach client sendandfill go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client txn run go src github com cockroachdb cockroach client txn go github com cockroachdb cockroach storage replica adminsplit go src github com cockroachdb cockroach storage replica command go github com cockroachdb cockroach client db txn go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client txn exec go src github com cockroachdb cockroach client txn go github com cockroachdb cockroach client db txn go src github com cockroachdb cockroach client db go github com cockroachdb cockroach storage replica adminsplit go src github com cockroachdb cockroach storage replica command go github com cockroachdb cockroach storage replica addadmincmd go src github com cockroachdb cockroach storage replica go github com cockroachdb cockroach storage replica send go src github com cockroachdb cockroach storage replica go github com cockroachdb cockroach storage store send go src github com cockroachdb cockroach storage store go github com cockroachdb cockroach storage stores send go src github com cockroachdb cockroach storage stores go github com cockroachdb cockroach server node batch go src github com cockroachdb cockroach server node go github com cockroachdb cockroach util stop stopper runtask go src github com cockroachdb cockroach util stop stopper go github com cockroachdb cockroach server node batch go src github com cockroachdb cockroach server node go github com cockroachdb cockroach kv grpctransport sendnext go src github com cockroachdb cockroach kv transport go github com cockroachdb cockroach kv send go src github com cockroachdb cockroach kv send go github com cockroachdb cockroach kv distsender sendrpc go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendsinglerange go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendchunk go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendchunk go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender send go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv txncoordsender send go src github com cockroachdb cockroach kv txn coord sender go github com cockroachdb cockroach client db send go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client db github com cockroachdb cockroach client send fm go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client sendandfill go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client db run go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client runoneresult go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client db adminsplit go src github com cockroachdb cockroach client db go github com cockroachdb cockroach storage splitqueue process go src github com cockroachdb cockroach storage split queue go github com cockroachdb cockroach storage basequeue processreplica go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach storage basequeue processloop go src github com cockroachdb cockroach storage queue go github com cockroachdb cockroach util stop stopper runtask go src github com cockroachdb cockroach util stop stopper go 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 testing runtests usr local go src testing testing go testing m run usr local go src testing testing go github com cockroachdb cockroach sql distsql test testmain go src github com cockroachdb cockroach sql distsql main test go main main github com cockroachdb cockroach sql distsql test testmain go goroutine runtime goexit usr local go src runtime asm s goroutine google golang org grpc conn transportmonitor go src google golang org grpc clientconn go created by google golang org grpc newconn go src google golang org grpc clientconn go 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 sync runtime syncsemacquire usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach util stop stopper quiesce go src github com cockroachdb cockroach util stop stopper go github com cockroachdb cockroach util stop stopper stop go src github com cockroachdb cockroach util stop stopper go github com cockroachdb cockroach server server stop go src github com cockroachdb cockroach server server go github com cockroachdb cockroach server testserver stop go src github com cockroachdb cockroach server testserver go github com cockroachdb cockroach testutils sqlutils setupserverwithparams go src github com cockroachdb cockroach testutils sqlutils test server go github com cockroachdb cockroach sql distsql testtablereader go src github com cockroachdb cockroach sql distsql tablereader test go testing trunner usr local go src testing testing go created by testing runtests usr local go src testing testing go goroutine github com cockroachdb cockroach storage storepool start go src github com cockroachdb cockroach storage store pool 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 sql leasemanager refreshleases go src github com cockroachdb cockroach sql lease 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 sql newexecutor go src github com cockroachdb cockroach sql executor 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 engine rocksdb open go src github com cockroachdb cockroach storage engine rocksdb go created by github com cockroachdb cockroach storage engine rocksdb open go src github com cockroachdb cockroach storage engine rocksdb go goroutine github com cockroachdb cockroach util servehandler go src github com cockroachdb cockroach util 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 util servehandler go src github com cockroachdb cockroach util 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 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 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 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 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 storage storerangeset visit go src github com cockroachdb cockroach storage store 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 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 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 startgossip 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 startgossip 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 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 server node startcomputeperiodicmetrics go src github com cockroachdb cockroach server node 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 idallocator start go src github com cockroachdb cockroach storage id alloc 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 server node startgossip go src github com cockroachdb cockroach server node 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 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 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 storage storerangeset visit go src github com cockroachdb cockroach storage store 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 sync runtime semacquire usr local go src runtime sema go sync mutex lock usr local go src sync mutex go github com cockroachdb cockroach util stop stopper runpostlude go src github com cockroachdb cockroach util stop stopper go github com cockroachdb cockroach util stop stopper runtask go src github com cockroachdb cockroach util stop stopper go github com cockroachdb cockroach server node batch go src github com cockroachdb cockroach server node go github com cockroachdb cockroach kv grpctransport sendnext go src github com cockroachdb cockroach kv transport go github com cockroachdb cockroach kv send go src github com cockroachdb cockroach kv send go github com cockroachdb cockroach kv distsender sendrpc go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendsinglerange go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendchunk go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendchunk go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender send go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv txncoordsender send go src github com cockroachdb cockroach kv txn coord sender go github com cockroachdb cockroach client db send go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client db github com cockroachdb cockroach client send fm go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client sendandfill go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client db run go src github com cockroachdb cockroach client db go github com cockroachdb cockroach storage intentresolver resolveintents go src github com cockroachdb cockroach storage intent resolver go github com cockroachdb cockroach storage intentresolver resolveintents go src github com cockroachdb cockroach storage intent resolver go github com cockroachdb cockroach storage intentresolver processintentsasync go src github com cockroachdb cockroach storage intent resolver go github com cockroachdb cockroach util stop stopper runlimitedasynctask go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runlimitedasynctask go src github com cockroachdb cockroach util stop stopper go goroutine github com cockroachdb cockroach server server startsampleenvironment go src github com cockroachdb cockroach server 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 ts poller start go src github com cockroachdb cockroach ts db 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 server node startwritesummaries go src github com cockroachdb cockroach server node 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 sql schemachangemanager start go src github com cockroachdb cockroach sql schema changer 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 github com cockroachdb cmux muxconn read go src github com cockroachdb cmux cmux go crypto tls block readfromuntil usr local go src crypto tls conn go crypto tls conn readrecord usr local go src crypto tls conn go crypto tls conn read usr local go src crypto tls conn go bufio reader fill usr local go src bufio bufio go bufio reader read usr local go src bufio bufio go io readatleast usr local go src io io go io readfull usr local go src io io go golang org x net readframeheader go src golang org x net frame go golang org x net framer readframe go src golang org x net frame go google golang org grpc transport framer readframe go src google golang org grpc transport http util go google golang org grpc transport handlestreams go src google golang org grpc transport server go google golang org grpc server servestreams go src google golang org grpc server go google golang org grpc server go src google golang org grpc server 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 rpc context runheartbeat go src github com cockroachdb cockroach rpc context go github com cockroachdb cockroach rpc context grpcdial 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 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 crypto tls block readfromuntil usr local go src crypto tls conn go crypto tls conn readrecord usr local go src crypto tls conn go crypto tls conn read usr local go src crypto tls conn go bufio reader fill usr local go src bufio bufio go bufio reader read usr local go src bufio bufio go io readatleast usr local go src io io go io readfull usr local go src io io go golang org x net readframeheader go src golang org x net frame go golang org x net framer readframe go src golang org x net frame go google golang org grpc transport framer readframe go src google golang org grpc transport http util 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 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 github com cockroachdb cockroach server registeradminhandlerfromendpoint go src github com cockroachdb cockroach server admin pb gw go created by github com cockroachdb cockroach server registeradminhandlerfromendpoint go src github com cockroachdb cockroach server admin pb gw 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 sync runtime semacquire usr local go src runtime sema go sync mutex lock usr local go src sync mutex go github com cockroachdb cockroach util stop stopper runpostlude go src github com cockroachdb cockroach util stop stopper go github com cockroachdb cockroach util stop stopper runtask go src github com cockroachdb cockroach util stop stopper go github com cockroachdb cockroach server node batch go src github com cockroachdb cockroach server node go github com cockroachdb cockroach kv grpctransport sendnext go src github com cockroachdb cockroach kv transport go github com cockroachdb cockroach kv send go src github com cockroachdb cockroach kv send go github com cockroachdb cockroach kv distsender sendrpc go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendsinglerange go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendchunk go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender sendchunk go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv distsender send go src github com cockroachdb cockroach kv dist sender go github com cockroachdb cockroach kv txncoordsender send go src github com cockroachdb cockroach kv txn coord sender go github com cockroachdb cockroach client db send go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client db github com cockroachdb cockroach client send fm go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client sendandfill go src github com cockroachdb cockroach client db go github com cockroachdb cockroach client db run go src github com cockroachdb cockroach client db go github com cockroachdb cockroach storage intentresolver maybepushtransactions go src github com cockroachdb cockroach storage intent resolver go github com cockroachdb cockroach storage intentresolver processintentsasync go src github com cockroachdb cockroach storage intent resolver go github com cockroachdb cockroach util stop stopper runlimitedasynctask go src github com cockroachdb cockroach util stop stopper go created by github com cockroachdb cockroach util stop stopper runlimitedasynctask go src github com cockroachdb cockroach util stop stopper go error exit status run details runs so far failures over runs so far failures over runs so far failures over runs so far failures over runs so far failures over runs so far failures over runs so far failures over runs so far failures over runs so far failures over runs completed failures over fail please assign take a look and update the issue accordingly | 0 |
342,550 | 10,318,857,073 | IssuesEvent | 2019-08-30 15:54:48 | ngageoint/hootenanny | https://api.github.com/repos/ngageoint/hootenanny | closed | Allow for multiple geometry types and secondary tag filters when creating replacement changesets | Category: Core Priority: Medium Status: Ready For Review Type: Feature | The initial version of the command requires that you specify a single element criterion as a feature filter. Update it so that it will allow:
* multiple geometry type criteria to be passed in
* no geometry type filter to be passed in at all
* additional non-geometry type filters | 1.0 | Allow for multiple geometry types and secondary tag filters when creating replacement changesets - The initial version of the command requires that you specify a single element criterion as a feature filter. Update it so that it will allow:
* multiple geometry type criteria to be passed in
* no geometry type filter to be passed in at all
* additional non-geometry type filters | priority | allow for multiple geometry types and secondary tag filters when creating replacement changesets the initial version of the command requires that you specify a single element criterion as a feature filter update it so that it will allow multiple geometry type criteria to be passed in no geometry type filter to be passed in at all additional non geometry type filters | 1 |
270,641 | 8,468,106,477 | IssuesEvent | 2018-10-23 18:47:21 | auth0/cosmos | https://api.github.com/repos/auth0/cosmos | opened | NotFoundError Failed to execute 'insertBefore' on 'Node' after separating fonts from main cosmos package | ⚠️ high priority | **Describe the bug**
https://codesandbox.io/s/2zrjm7mkw0

**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Cosmos version:**
Please mention the cosmos version
**Additional context**
Add any other context about the problem here.
| 1.0 | NotFoundError Failed to execute 'insertBefore' on 'Node' after separating fonts from main cosmos package - **Describe the bug**
https://codesandbox.io/s/2zrjm7mkw0

**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Cosmos version:**
Please mention the cosmos version
**Additional context**
Add any other context about the problem here.
| priority | notfounderror failed to execute insertbefore on node after separating fonts from main cosmos package describe the bug expected behavior a clear and concise description of what you expected to happen screenshots if applicable add screenshots to help explain your problem cosmos version please mention the cosmos version additional context add any other context about the problem here | 1 |
563,651 | 16,703,019,454 | IssuesEvent | 2021-06-09 06:33:56 | momentum-mod/game | https://api.github.com/repos/momentum-mod/game | closed | Brighter Modulate Shader Option | Outcome: Resolved Priority: Low Size: Medium Type: Enhancement | **What feature is your improvement idea related to? Please describe.**
The current `Modulate` shader doesn't really have any options I could find that make it bright enough to act as a fake light you can place on walls via an overlay, so in the case of overlays you need to put several of them on top of each other, which isn't too big a deal but can add up fast in quantity and tedium.
**Describe the solution you'd like**
Either:
- Some modification to `Modulate` with something along the lines of `$mod4x` or `$mod8x`
- Alternate `Modulate` shader (ie. different line at start of the VMT) that is brighter or otherwise has the desired functionality.
**Describe alternatives you've considered, if any**
Stacking overlays does seem to work.
`Unlitgeneric` is fully opaque instead of brightening the surface behind it.
**Additional context**
Stacking overlays, 3/4 on the left, 2 centre and just a single on the right.
As you can see, it's quite lacking.

| 1.0 | Brighter Modulate Shader Option - **What feature is your improvement idea related to? Please describe.**
The current `Modulate` shader doesn't really have any options I could find that make it bright enough to act as a fake light you can place on walls via an overlay, so in the case of overlays you need to put several of them on top of each other, which isn't too big a deal but can add up fast in quantity and tedium.
**Describe the solution you'd like**
Either:
- Some modification to `Modulate` with something along the lines of `$mod4x` or `$mod8x`
- Alternate `Modulate` shader (ie. different line at start of the VMT) that is brighter or otherwise has the desired functionality.
**Describe alternatives you've considered, if any**
Stacking overlays does seem to work.
`Unlitgeneric` is fully opaque instead of brightening the surface behind it.
**Additional context**
Stacking overlays, 3/4 on the left, 2 centre and just a single on the right.
As you can see, it's quite lacking.

| priority | brighter modulate shader option what feature is your improvement idea related to please describe the current modulate shader doesn t really have any options i could find that make it bright enough to act as a fake light you can place on walls via an overlay so in the case of overlays you need to put several of them on top of each other which isn t too big a deal but can add up fast in quantity and tedium describe the solution you d like either some modification to modulate with something along the lines of or alternate modulate shader ie different line at start of the vmt that is brighter or otherwise has the desired functionality describe alternatives you ve considered if any stacking overlays does seem to work unlitgeneric is fully opaque instead of brightening the surface behind it additional context stacking overlays on the left centre and just a single on the right as you can see it s quite lacking | 1 |
656,553 | 21,767,646,988 | IssuesEvent | 2022-05-13 05:08:49 | darwinia-network/apps | https://api.github.com/repos/darwinia-network/apps | closed | Gear button not showing in Chrome | low-priority | Hi Devs!
I am Saso Darwinia ambassador helping in Chat.This person can't see gear button in Chrome browser.Refreshed,cleared cache,restarted computer.Still nothing.Works fine for me🤔
I guess that is why he can not stake.Always error.He is staking from STAKING NOW. I am attaching all the pictures he sent me that we went through.I don't know how to assist from here on.
This is his address
2qMqD3cWbovqGLW4NuWd1Yw7eYUrRGwYhZgyjzxVyo74HmH5
Thank you for all your great work💪







| 1.0 | Gear button not showing in Chrome - Hi Devs!
I am Saso Darwinia ambassador helping in Chat.This person can't see gear button in Chrome browser.Refreshed,cleared cache,restarted computer.Still nothing.Works fine for me🤔
I guess that is why he can not stake.Always error.He is staking from STAKING NOW. I am attaching all the pictures he sent me that we went through.I don't know how to assist from here on.
This is his address
2qMqD3cWbovqGLW4NuWd1Yw7eYUrRGwYhZgyjzxVyo74HmH5
Thank you for all your great work💪







| priority | gear button not showing in chrome hi devs i am saso darwinia ambassador helping in chat this person can t see gear button in chrome browser refreshed cleared cache restarted computer still nothing works fine for me🤔 i guess that is why he can not stake always error he is staking from staking now i am attaching all the pictures he sent me that we went through i don t know how to assist from here on this is his address thank you for all your great work💪 | 1 |
238,182 | 19,701,906,440 | IssuesEvent | 2022-01-12 17:26:09 | elastic/kibana | https://api.github.com/repos/elastic/kibana | closed | Failing test: X-Pack Case API Integration Tests.x-pack/test/case_api_integration/security_and_spaces/tests/common/client/update_alert_status·ts - cases security and spaces enabled: basic Common update_alert_status "before each" hook for "should update the status of multiple alerts attached to multiple cases using the cases client" | failed-test needs-team | A test failed on a tracked branch
```
ResponseError: illegal_argument_exception: [illegal_argument_exception] Reason: request [/.siem-signals-default-000001] contains unrecognized parameter: [include_type_name]
at onBody (/opt/local-ssd/buildkite/builds/kb-n2-4-8cceb8330c9d2330/elastic/kibana-7-dot-latest-es-forward-compatibility/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:367:23)
at IncomingMessage.onEnd (/opt/local-ssd/buildkite/builds/kb-n2-4-8cceb8330c9d2330/elastic/kibana-7-dot-latest-es-forward-compatibility/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:291:11)
at IncomingMessage.emit (node:events:402:35)
at endReadableNT (node:internal/streams/readable:1343:12)
at processTicksAndRejections (node:internal/process/task_queues:83:21) {
meta: {
body: { error: [Object], status: 400 },
statusCode: 400,
headers: {
'x-elastic-product': 'Elasticsearch',
'content-type': 'application/json;charset=utf-8',
'content-length': '321'
},
meta: {
context: null,
request: [Object],
name: 'elasticsearch-js',
connection: [Object],
attempts: 0,
aborted: false
}
}
}
```
First failure: [CI Build - 7.17](https://buildkite.com/elastic/kibana-7-dot-latest-es-forward-compatibility/builds/1#bcaf8243-6a51-4cbf-ac88-72793b2f8f57)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Case API Integration Tests.x-pack/test/case_api_integration/security_and_spaces/tests/common/client/update_alert_status·ts","test.name":"cases security and spaces enabled: basic Common update_alert_status \"before each\" hook for \"should update the status of multiple alerts attached to multiple cases using the cases client\"","test.failCount":2}} --> | 1.0 | Failing test: X-Pack Case API Integration Tests.x-pack/test/case_api_integration/security_and_spaces/tests/common/client/update_alert_status·ts - cases security and spaces enabled: basic Common update_alert_status "before each" hook for "should update the status of multiple alerts attached to multiple cases using the cases client" - A test failed on a tracked branch
```
ResponseError: illegal_argument_exception: [illegal_argument_exception] Reason: request [/.siem-signals-default-000001] contains unrecognized parameter: [include_type_name]
at onBody (/opt/local-ssd/buildkite/builds/kb-n2-4-8cceb8330c9d2330/elastic/kibana-7-dot-latest-es-forward-compatibility/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:367:23)
at IncomingMessage.onEnd (/opt/local-ssd/buildkite/builds/kb-n2-4-8cceb8330c9d2330/elastic/kibana-7-dot-latest-es-forward-compatibility/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:291:11)
at IncomingMessage.emit (node:events:402:35)
at endReadableNT (node:internal/streams/readable:1343:12)
at processTicksAndRejections (node:internal/process/task_queues:83:21) {
meta: {
body: { error: [Object], status: 400 },
statusCode: 400,
headers: {
'x-elastic-product': 'Elasticsearch',
'content-type': 'application/json;charset=utf-8',
'content-length': '321'
},
meta: {
context: null,
request: [Object],
name: 'elasticsearch-js',
connection: [Object],
attempts: 0,
aborted: false
}
}
}
```
First failure: [CI Build - 7.17](https://buildkite.com/elastic/kibana-7-dot-latest-es-forward-compatibility/builds/1#bcaf8243-6a51-4cbf-ac88-72793b2f8f57)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Case API Integration Tests.x-pack/test/case_api_integration/security_and_spaces/tests/common/client/update_alert_status·ts","test.name":"cases security and spaces enabled: basic Common update_alert_status \"before each\" hook for \"should update the status of multiple alerts attached to multiple cases using the cases client\"","test.failCount":2}} --> | non_priority | failing test x pack case api integration tests x pack test case api integration security and spaces tests common client update alert status·ts cases security and spaces enabled basic common update alert status before each hook for should update the status of multiple alerts attached to multiple cases using the cases client a test failed on a tracked branch responseerror illegal argument exception reason request contains unrecognized parameter at onbody opt local ssd buildkite builds kb elastic kibana dot latest es forward compatibility kibana node modules elastic elasticsearch lib transport js at incomingmessage onend opt local ssd buildkite builds kb elastic kibana dot latest es forward compatibility kibana node modules elastic elasticsearch lib transport js at incomingmessage emit node events at endreadablent node internal streams readable at processticksandrejections node internal process task queues meta body error status statuscode headers x elastic product elasticsearch content type application json charset utf content length meta context null request name elasticsearch js connection attempts aborted false first failure | 0 |
19,695 | 10,481,645,404 | IssuesEvent | 2019-09-24 10:06:51 | Altinn/altinn-studio | https://api.github.com/repos/Altinn/altinn-studio | opened | Impement Azure Application Innsights in Altinn Designer backend | altinn-studio draft performance team-tamagotchi user-story | ## Description
To fix performance in Altinn Studio we need to implement Azure Application Insights in the Altinn Studio (Designer) backend.
## Considerations
Input (beyond tasks) on how the user story should be solved can be put here.
## Acceptance criteria
- Possible to track time spent on API calls to Gitea and libgit2sharp
- Possible to track time spent on API calls from Altinn Studio (Designer) frontend
- ...
## Tasks
- [ ] Verify that this issue meets DoP (remove unused text, add missing text/parameters/labels, verify tasks).
## Specification tasks
- [ ] Test design / decide test need
## Development tasks
- [ ] Documentation (if relevant)
- [ ] Manual test (if needed)
- [ ] Automated test (if needed)
| True | Impement Azure Application Innsights in Altinn Designer backend - ## Description
To fix performance in Altinn Studio we need to implement Azure Application Insights in the Altinn Studio (Designer) backend.
## Considerations
Input (beyond tasks) on how the user story should be solved can be put here.
## Acceptance criteria
- Possible to track time spent on API calls to Gitea and libgit2sharp
- Possible to track time spent on API calls from Altinn Studio (Designer) frontend
- ...
## Tasks
- [ ] Verify that this issue meets DoP (remove unused text, add missing text/parameters/labels, verify tasks).
## Specification tasks
- [ ] Test design / decide test need
## Development tasks
- [ ] Documentation (if relevant)
- [ ] Manual test (if needed)
- [ ] Automated test (if needed)
| non_priority | impement azure application innsights in altinn designer backend description to fix performance in altinn studio we need to implement azure application insights in the altinn studio designer backend considerations input beyond tasks on how the user story should be solved can be put here acceptance criteria possible to track time spent on api calls to gitea and possible to track time spent on api calls from altinn studio designer frontend tasks verify that this issue meets dop remove unused text add missing text parameters labels verify tasks specification tasks test design decide test need development tasks documentation if relevant manual test if needed automated test if needed | 0 |
708,906 | 24,360,246,816 | IssuesEvent | 2022-10-03 11:02:59 | fedora-infra/anitya | https://api.github.com/repos/fedora-infra/anitya | closed | add sourcehut backend | type.feature Medium Priority | Sourcehut is starting to gain some traction and I think is a good candidate for a dedicated backend. There are already some packages in Fedora that use sourcehut. Like Gitlab, users can choice between vendor hosted or selfhosting solutions.
For a project where anitya would be overkill, I came up with a script that does xml processing for git repositories and regex for mercurial repositories (no rss feeds yet).
```python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from re import findall
from sys import argv
from requests import get
from xmltodict import parse
url = argv[1]
r = get(url + "/refs/rss.xml")
if r.ok:
rss = parse(r.text)
versions = [item["title"] for item in rss["rss"]["channel"]["item"]]
else:
html = get(url + "/tags").text
# [1:] removes tip, I am sure there is better regex would make that unneeded
versions = findall(r'archive\/(.*)\.tar.gz"', html)[1:]
print(*versions, sep=", ")
```
```console
$ ./sh-versions.py https://git.sr.ht/~sircmpwn/scdoc
1.11.1, 1.11.0, 1.10.1, 1.10.0, 1.9.7, 1.9.6, 1.9.5, 1.9.4, 1.9.3, 1.9.2, 1.9.1, 1.9.0, 1.8.1, 1.8.0, 1.6.1, 1.6.0, 1.5.2, 1.5.1, 1.5.0, 1.4.3
$ ./sh-versions.py https://hg.sr.ht/~scoopta/wofi
v1.2.3, v1.2.2, v1.2.1, v1.2, v1.1.2, v1.1.1, v1.1, v1.0
```
I currently do not have the bandwidth to create a pull request, but feel free to use this as a starting point. | 1.0 | add sourcehut backend - Sourcehut is starting to gain some traction and I think is a good candidate for a dedicated backend. There are already some packages in Fedora that use sourcehut. Like Gitlab, users can choice between vendor hosted or selfhosting solutions.
For a project where anitya would be overkill, I came up with a script that does xml processing for git repositories and regex for mercurial repositories (no rss feeds yet).
```python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from re import findall
from sys import argv
from requests import get
from xmltodict import parse
url = argv[1]
r = get(url + "/refs/rss.xml")
if r.ok:
rss = parse(r.text)
versions = [item["title"] for item in rss["rss"]["channel"]["item"]]
else:
html = get(url + "/tags").text
# [1:] removes tip, I am sure there is better regex would make that unneeded
versions = findall(r'archive\/(.*)\.tar.gz"', html)[1:]
print(*versions, sep=", ")
```
```console
$ ./sh-versions.py https://git.sr.ht/~sircmpwn/scdoc
1.11.1, 1.11.0, 1.10.1, 1.10.0, 1.9.7, 1.9.6, 1.9.5, 1.9.4, 1.9.3, 1.9.2, 1.9.1, 1.9.0, 1.8.1, 1.8.0, 1.6.1, 1.6.0, 1.5.2, 1.5.1, 1.5.0, 1.4.3
$ ./sh-versions.py https://hg.sr.ht/~scoopta/wofi
v1.2.3, v1.2.2, v1.2.1, v1.2, v1.1.2, v1.1.1, v1.1, v1.0
```
I currently do not have the bandwidth to create a pull request, but feel free to use this as a starting point. | priority | add sourcehut backend sourcehut is starting to gain some traction and i think is a good candidate for a dedicated backend there are already some packages in fedora that use sourcehut like gitlab users can choice between vendor hosted or selfhosting solutions for a project where anitya would be overkill i came up with a script that does xml processing for git repositories and regex for mercurial repositories no rss feeds yet python usr bin env python coding utf from re import findall from sys import argv from requests import get from xmltodict import parse url argv r get url refs rss xml if r ok rss parse r text versions for item in rss else html get url tags text removes tip i am sure there is better regex would make that unneeded versions findall r archive tar gz html print versions sep console sh versions py sh versions py i currently do not have the bandwidth to create a pull request but feel free to use this as a starting point | 1 |
123,911 | 16,549,747,691 | IssuesEvent | 2021-05-28 07:09:47 | woocommerce/woocommerce-android | https://api.github.com/repos/woocommerce/woocommerce-android | opened | Audit how empty state screens look on landscape mode. | category: design | The design on various empty state screens were updated as part of #4091.
As part of its review, it was discovered that in landscape mode, some parts of the design might be cut off, like this one on "No Products" screen:

We need to go through the existing empty state screens and check how they look in landscape mode, and fix them as necessary. | 1.0 | Audit how empty state screens look on landscape mode. - The design on various empty state screens were updated as part of #4091.
As part of its review, it was discovered that in landscape mode, some parts of the design might be cut off, like this one on "No Products" screen:

We need to go through the existing empty state screens and check how they look in landscape mode, and fix them as necessary. | non_priority | audit how empty state screens look on landscape mode the design on various empty state screens were updated as part of as part of its review it was discovered that in landscape mode some parts of the design might be cut off like this one on no products screen we need to go through the existing empty state screens and check how they look in landscape mode and fix them as necessary | 0 |
105,524 | 13,193,822,316 | IssuesEvent | 2020-08-13 15:48:35 | alice-i-cecile/Fonts-of-Power | https://api.github.com/repos/alice-i-cecile/Fonts-of-Power | closed | Add clear guidance on weapon swapping drawbacks | design documentation | Should consider triggering on special defenses as well. | 1.0 | Add clear guidance on weapon swapping drawbacks - Should consider triggering on special defenses as well. | non_priority | add clear guidance on weapon swapping drawbacks should consider triggering on special defenses as well | 0 |
128,431 | 12,372,557,751 | IssuesEvent | 2020-05-18 20:37:50 | stan-dev/rstanarm | https://api.github.com/repos/stan-dev/rstanarm | opened | Add group-level predictor(s) to MRP case study | documentation | Just a reminder for me and @lauken13 (or anyone who wants to help) that we should add a group-level predictor to the MRP case study to make it a bit more realistic. | 1.0 | Add group-level predictor(s) to MRP case study - Just a reminder for me and @lauken13 (or anyone who wants to help) that we should add a group-level predictor to the MRP case study to make it a bit more realistic. | non_priority | add group level predictor s to mrp case study just a reminder for me and or anyone who wants to help that we should add a group level predictor to the mrp case study to make it a bit more realistic | 0 |
261,466 | 27,809,776,453 | IssuesEvent | 2023-03-18 01:42:01 | madhans23/linux-4.1.15 | https://api.github.com/repos/madhans23/linux-4.1.15 | closed | CVE-2020-0430 (High) detected in linux-stable-rtv4.1.33 - autoclosed | Mend: dependency security vulnerability | ## CVE-2020-0430 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary>
<p>
<p>Julia Cartwright's fork of linux-stable-rt.git</p>
<p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/madhans23/linux-4.1.15/commit/f9d19044b0eef1965f9bc412d7d9e579b74ec968">f9d19044b0eef1965f9bc412d7d9e579b74ec968</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In skb_headlen of /include/linux/skbuff.h, there is a possible out of bounds read due to memory corruption. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-153881554
<p>Publish Date: 2020-09-17
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0430>CVE-2020-0430</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2020-0430">https://www.linuxkernelcves.com/cves/CVE-2020-0430</a></p>
<p>Release Date: 2020-09-23</p>
<p>Fix Resolution: v4.14.164,v4.17.7</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-2020-0430 (High) detected in linux-stable-rtv4.1.33 - autoclosed - ## CVE-2020-0430 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary>
<p>
<p>Julia Cartwright's fork of linux-stable-rt.git</p>
<p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/madhans23/linux-4.1.15/commit/f9d19044b0eef1965f9bc412d7d9e579b74ec968">f9d19044b0eef1965f9bc412d7d9e579b74ec968</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In skb_headlen of /include/linux/skbuff.h, there is a possible out of bounds read due to memory corruption. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-153881554
<p>Publish Date: 2020-09-17
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0430>CVE-2020-0430</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2020-0430">https://www.linuxkernelcves.com/cves/CVE-2020-0430</a></p>
<p>Release Date: 2020-09-23</p>
<p>Fix Resolution: v4.14.164,v4.17.7</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 high detected in linux stable autoclosed cve high severity vulnerability vulnerable library linux stable julia cartwright s fork of linux stable rt git library home page a href found in head commit a href found in base branch master vulnerable source files kernel bpf verifier c kernel bpf verifier c vulnerability details in skb headlen of include linux skbuff h there is a possible out of bounds read due to memory corruption this could lead to local escalation of privilege with no additional execution privileges needed user interaction is not needed for exploitation product androidversions android kernelandroid id a publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
469,099 | 13,501,426,984 | IssuesEvent | 2020-09-13 02:27:07 | okTurtles/group-income-simple | https://api.github.com/repos/okTurtles/group-income-simple | closed | Implement new avatar placeholders | App:Frontend Kind:Enhancement Note:UI/UX Priority:Low | ## Problem
The problem stated in #538.
## Solution
There should be 3 different avatar placeholders:
1. **For members**;
2. **For groups**;
3. **For members that have been accepted (via proposal) into the group but have NOT used their invite link yet.**
------------
### 1. For members
We are using Blockies, an identicon generator. You'll need these 2 links:
- [Blockies GitHub repository](https://github.com/download13/blockies);
- [Codepen with the correct configuration](https://codepen.io/mmbotelho/pen/OJVeVxo).
You will notice, at the bottom of the JS file of the codepen linked above, there are 6 configurable options. These are:
1. `seed` - a string, that should be unique for each user. This string is what generates the image;
2. `bgcolor`;
3. `color`;
4. `spotcolor`;
5. `size` - set it to 6;
6. `scale` - used 12;
**Colors**
Each user should be assigned one of our colors (blue, orange, red or green). After that, the 3 color options should be:
1. `bgcolor` - variant 0 (darkest);
2. `color` - variant 1 (medium);
3. `spotcolor`- variant 2 (lightest);
Here are some examples of what they look like:
<img width="219" alt="Captura de ecrã 2020-04-11, às 19 03 38" src="https://user-images.githubusercontent.com/22004566/79051261-2b491500-7c27-11ea-83da-cefe047bd175.png">
------
### 2. For groups
For groups, we use the groups initials. We have a minimum of 1 character and a maximum of 2. Here's what they look like:
<img width="561" alt="Captura de ecrã 2020-04-11, às 19 05 04" src="https://user-images.githubusercontent.com/22004566/79051319-78c58200-7c27-11ea-9367-89b1fedab255.png">
------
### 3. Members that have been accepted (via proposal) into the group but have NOT used their invite link yet.
Same as for groups, but with a question mark. Here's an example:
<img width="359" alt="Captura de ecrã 2020-04-11, às 19 07 06" src="https://user-images.githubusercontent.com/22004566/79051359-b2968880-7c27-11ea-8f06-2e395b7ddd5a.png">
------
### Other useful links:
- [Figma Design System with specifications](https://www.figma.com/file/mxGadAHfkWH6qApebQvcdN/Group-Income-2.0?node-id=1876%3A17778);
- [Example page with placeholder avatars](https://www.figma.com/file/mxGadAHfkWH6qApebQvcdN/Group-Income-2.0?node-id=11556%3A97);
And that's it! I hope I didn't miss anything, but let me know if you have any questions or if you find other cases / issues with this approach! | 1.0 | Implement new avatar placeholders - ## Problem
The problem stated in #538.
## Solution
There should be 3 different avatar placeholders:
1. **For members**;
2. **For groups**;
3. **For members that have been accepted (via proposal) into the group but have NOT used their invite link yet.**
------------
### 1. For members
We are using Blockies, an identicon generator. You'll need these 2 links:
- [Blockies GitHub repository](https://github.com/download13/blockies);
- [Codepen with the correct configuration](https://codepen.io/mmbotelho/pen/OJVeVxo).
You will notice, at the bottom of the JS file of the codepen linked above, there are 6 configurable options. These are:
1. `seed` - a string, that should be unique for each user. This string is what generates the image;
2. `bgcolor`;
3. `color`;
4. `spotcolor`;
5. `size` - set it to 6;
6. `scale` - used 12;
**Colors**
Each user should be assigned one of our colors (blue, orange, red or green). After that, the 3 color options should be:
1. `bgcolor` - variant 0 (darkest);
2. `color` - variant 1 (medium);
3. `spotcolor`- variant 2 (lightest);
Here are some examples of what they look like:
<img width="219" alt="Captura de ecrã 2020-04-11, às 19 03 38" src="https://user-images.githubusercontent.com/22004566/79051261-2b491500-7c27-11ea-83da-cefe047bd175.png">
------
### 2. For groups
For groups, we use the groups initials. We have a minimum of 1 character and a maximum of 2. Here's what they look like:
<img width="561" alt="Captura de ecrã 2020-04-11, às 19 05 04" src="https://user-images.githubusercontent.com/22004566/79051319-78c58200-7c27-11ea-9367-89b1fedab255.png">
------
### 3. Members that have been accepted (via proposal) into the group but have NOT used their invite link yet.
Same as for groups, but with a question mark. Here's an example:
<img width="359" alt="Captura de ecrã 2020-04-11, às 19 07 06" src="https://user-images.githubusercontent.com/22004566/79051359-b2968880-7c27-11ea-8f06-2e395b7ddd5a.png">
------
### Other useful links:
- [Figma Design System with specifications](https://www.figma.com/file/mxGadAHfkWH6qApebQvcdN/Group-Income-2.0?node-id=1876%3A17778);
- [Example page with placeholder avatars](https://www.figma.com/file/mxGadAHfkWH6qApebQvcdN/Group-Income-2.0?node-id=11556%3A97);
And that's it! I hope I didn't miss anything, but let me know if you have any questions or if you find other cases / issues with this approach! | priority | implement new avatar placeholders problem the problem stated in solution there should be different avatar placeholders for members for groups for members that have been accepted via proposal into the group but have not used their invite link yet for members we are using blockies an identicon generator you ll need these links you will notice at the bottom of the js file of the codepen linked above there are configurable options these are seed a string that should be unique for each user this string is what generates the image bgcolor color spotcolor size set it to scale used colors each user should be assigned one of our colors blue orange red or green after that the color options should be bgcolor variant darkest color variant medium spotcolor variant lightest here are some examples of what they look like img width alt captura de ecrã às src for groups for groups we use the groups initials we have a minimum of character and a maximum of here s what they look like img width alt captura de ecrã às src members that have been accepted via proposal into the group but have not used their invite link yet same as for groups but with a question mark here s an example img width alt captura de ecrã às src other useful links and that s it i hope i didn t miss anything but let me know if you have any questions or if you find other cases issues with this approach | 1 |
79,305 | 3,526,060,710 | IssuesEvent | 2016-01-14 01:49:17 | blaze/blaze | https://api.github.com/repos/blaze/blaze | closed | Issue running blaze-server in 0.9.0 release | bug easy high priority server | ```
$ python --version
Python 3.4.4 :: Continuum Analytics, Inc.
$ python -c 'import blaze; print(blaze.__version__)'
0.9.0
$ blaze-server ./foo.yaml
Traceback (most recent call last):
File "/Users/ksmith/anaconda/envs/test-blaze-0.9.0/bin/blaze-server", line 6, in <module>
sys.exit(blaze.server.spider._main())
AttributeError: 'function' object has no attribute '_main'
```
The best I can tell, this issue is related to the `import blaze.server.spider` line, and an ambiguity in this `import`. There's both a `blaze/server/spider.py` module, and inside `blaze/server/__init__.py` is a `from .spider import spider`, which imports the spider *function* in the `blaze.server` namespace.
The strange thing is that this particular logic is unchanged since Blaze 0.8.3, and `blaze-server` worked fine then.
In any case, dealiasing the `spider` name in `blaze.server` is a good idea anyway to rule out this issue once and for all. Fix forthcoming. | 1.0 | Issue running blaze-server in 0.9.0 release - ```
$ python --version
Python 3.4.4 :: Continuum Analytics, Inc.
$ python -c 'import blaze; print(blaze.__version__)'
0.9.0
$ blaze-server ./foo.yaml
Traceback (most recent call last):
File "/Users/ksmith/anaconda/envs/test-blaze-0.9.0/bin/blaze-server", line 6, in <module>
sys.exit(blaze.server.spider._main())
AttributeError: 'function' object has no attribute '_main'
```
The best I can tell, this issue is related to the `import blaze.server.spider` line, and an ambiguity in this `import`. There's both a `blaze/server/spider.py` module, and inside `blaze/server/__init__.py` is a `from .spider import spider`, which imports the spider *function* in the `blaze.server` namespace.
The strange thing is that this particular logic is unchanged since Blaze 0.8.3, and `blaze-server` worked fine then.
In any case, dealiasing the `spider` name in `blaze.server` is a good idea anyway to rule out this issue once and for all. Fix forthcoming. | priority | issue running blaze server in release python version python continuum analytics inc python c import blaze print blaze version blaze server foo yaml traceback most recent call last file users ksmith anaconda envs test blaze bin blaze server line in sys exit blaze server spider main attributeerror function object has no attribute main the best i can tell this issue is related to the import blaze server spider line and an ambiguity in this import there s both a blaze server spider py module and inside blaze server init py is a from spider import spider which imports the spider function in the blaze server namespace the strange thing is that this particular logic is unchanged since blaze and blaze server worked fine then in any case dealiasing the spider name in blaze server is a good idea anyway to rule out this issue once and for all fix forthcoming | 1 |
57,665 | 6,553,060,945 | IssuesEvent | 2017-09-05 20:51:55 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | kv: primary key violation when inserting distinct rows (logic_test/distsql_numtables:25 primary key violation) | test-failure | Discovered in https://github.com/cockroachdb/cockroach/pull/16137 // https://teamcity.cockroachdb.com/viewLog.html?tab=buildLog&logTab=tree&filter=debug&expand=all&buildId=257118
```
[TestLogic/5node/distsql_numtables] logic_test.go:1712:
testdata/logic_test/distsql_numtables:25: expected success, but found
pq: duplicate key value (y)=(2000) violates unique constraint "primary"
logic_test.go:1722:
testdata/logic_test/distsql_numtables:25: error in statement, skipping to next file
``` | 1.0 | kv: primary key violation when inserting distinct rows (logic_test/distsql_numtables:25 primary key violation) - Discovered in https://github.com/cockroachdb/cockroach/pull/16137 // https://teamcity.cockroachdb.com/viewLog.html?tab=buildLog&logTab=tree&filter=debug&expand=all&buildId=257118
```
[TestLogic/5node/distsql_numtables] logic_test.go:1712:
testdata/logic_test/distsql_numtables:25: expected success, but found
pq: duplicate key value (y)=(2000) violates unique constraint "primary"
logic_test.go:1722:
testdata/logic_test/distsql_numtables:25: error in statement, skipping to next file
``` | non_priority | kv primary key violation when inserting distinct rows logic test distsql numtables primary key violation discovered in logic test go testdata logic test distsql numtables expected success but found pq duplicate key value y violates unique constraint primary logic test go testdata logic test distsql numtables error in statement skipping to next file | 0 |
274,268 | 23,827,433,812 | IssuesEvent | 2022-09-05 16:05:07 | red/red | https://api.github.com/repos/red/red | closed | [R/S] crashes when access nested struct value | status.built status.tested type.bug Red/System test.written | **To reproduce**
Compile and run the following code:
```
Red/System []
RECT_F!: alias struct! [
left [float32!]
top [float32!]
right [float32!]
bottom [float32!]
]
D2D1_IMAGE_BRUSH_PROPERTIES: alias struct! [
sourceRectangle [RECT_F! value]
extendModeX [integer!]
extendModeY [integer!]
interpolationMode [integer!]
]
testss: func [/local props [D2D1_IMAGE_BRUSH_PROPERTIES value]][
probe "start"
props/sourceRectangle/left: as float32! 2
probe "end"
]
testss
```
Got error::
```
start
*** Runtime Error 1: access violation
*** at: 00402218h
```
**Expected behavior**
No crashes.
**Platform version (please complete the following information)**
```
Latest commit in master branch. Win 7 64bit.
```
| 2.0 | [R/S] crashes when access nested struct value - **To reproduce**
Compile and run the following code:
```
Red/System []
RECT_F!: alias struct! [
left [float32!]
top [float32!]
right [float32!]
bottom [float32!]
]
D2D1_IMAGE_BRUSH_PROPERTIES: alias struct! [
sourceRectangle [RECT_F! value]
extendModeX [integer!]
extendModeY [integer!]
interpolationMode [integer!]
]
testss: func [/local props [D2D1_IMAGE_BRUSH_PROPERTIES value]][
probe "start"
props/sourceRectangle/left: as float32! 2
probe "end"
]
testss
```
Got error::
```
start
*** Runtime Error 1: access violation
*** at: 00402218h
```
**Expected behavior**
No crashes.
**Platform version (please complete the following information)**
```
Latest commit in master branch. Win 7 64bit.
```
| non_priority | crashes when access nested struct value to reproduce compile and run the following code red system rect f alias struct left top right bottom image brush properties alias struct sourcerectangle extendmodex extendmodey interpolationmode testss func probe start props sourcerectangle left as probe end testss got error start runtime error access violation at expected behavior no crashes platform version please complete the following information latest commit in master branch win | 0 |
32,718 | 12,142,521,536 | IssuesEvent | 2020-04-24 01:56:50 | jerry-zhang-DYG/MyHealthClinicInternal | https://api.github.com/repos/jerry-zhang-DYG/MyHealthClinicInternal | opened | WS-2017-0121 (High) detected in angular-v1.4.7 | security vulnerability | ## WS-2017-0121 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>angular-v1.4.7</b></p></summary>
<p></p>
<p>
Dependency Hierarchy:
- angular-bootstrap-0.14.3 (Root Library)
- :x: **angular-v1.4.7** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jerry-zhang-DYG/MyHealthClinicInternal/commit/fbc85176537c4ab2b83d1dba87b5b56a86fafe58">fbc85176537c4ab2b83d1dba87b5b56a86fafe58</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Affected versions of Angular.js are vulnerable to Arbitrary Code Execution via unsafe svg animation tags.
<p>Publish Date: 2017-01-20
<p>URL: <a href=https://github.com/angular/angular.js/commit/67688d5ca00f6de4c7fe6084e2fa762a00d25610>WS-2017-0121</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>7.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="https://github.com/angular/angular.js/pull/11290">https://github.com/angular/angular.js/pull/11290</a></p>
<p>Release Date: 2017-01-31</p>
<p>Fix Resolution: v1.4.0-beta.6</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-2017-0121 (High) detected in angular-v1.4.7 - ## WS-2017-0121 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>angular-v1.4.7</b></p></summary>
<p></p>
<p>
Dependency Hierarchy:
- angular-bootstrap-0.14.3 (Root Library)
- :x: **angular-v1.4.7** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jerry-zhang-DYG/MyHealthClinicInternal/commit/fbc85176537c4ab2b83d1dba87b5b56a86fafe58">fbc85176537c4ab2b83d1dba87b5b56a86fafe58</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Affected versions of Angular.js are vulnerable to Arbitrary Code Execution via unsafe svg animation tags.
<p>Publish Date: 2017-01-20
<p>URL: <a href=https://github.com/angular/angular.js/commit/67688d5ca00f6de4c7fe6084e2fa762a00d25610>WS-2017-0121</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>7.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="https://github.com/angular/angular.js/pull/11290">https://github.com/angular/angular.js/pull/11290</a></p>
<p>Release Date: 2017-01-31</p>
<p>Fix Resolution: v1.4.0-beta.6</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 high detected in angular ws high severity vulnerability vulnerable library angular dependency hierarchy angular bootstrap root library x angular vulnerable library found in head commit a href vulnerability details affected versions of angular js are vulnerable to arbitrary code execution via unsafe svg animation tags 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 beta step up your open source security game with whitesource | 0 |
288,548 | 31,861,454,351 | IssuesEvent | 2023-09-15 11:14:01 | nidhi7598/linux-v4.19.72_CVE-2022-3564 | https://api.github.com/repos/nidhi7598/linux-v4.19.72_CVE-2022-3564 | opened | CVE-2022-34918 (High) detected in linuxlinux-4.19.294 | Mend: dependency security vulnerability | ## CVE-2022-34918 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.294</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-v4.19.72_CVE-2022-3564/commit/9ffee08efa44c7887e2babb8f304df0fa1094efb">9ffee08efa44c7887e2babb8f304df0fa1094efb</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>/net/netfilter/nf_tables_api.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in the Linux kernel through 5.18.9. A type confusion bug in nft_set_elem_init (leading to a buffer overflow) could be used by a local attacker to escalate privileges, a different vulnerability than CVE-2022-32250. (The attacker can obtain root access, but must start with an unprivileged user namespace to obtain CAP_NET_ADMIN access.) This can be fixed in nft_setelem_parse_data in net/netfilter/nf_tables_api.c.
<p>Publish Date: 2022-07-04
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-34918>CVE-2022-34918</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2022-34918">https://www.linuxkernelcves.com/cves/CVE-2022-34918</a></p>
<p>Release Date: 2022-07-04</p>
<p>Fix Resolution: v5.10.130,v5.15.54,v5.18.11,v5.19-rc6</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-34918 (High) detected in linuxlinux-4.19.294 - ## CVE-2022-34918 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.294</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-v4.19.72_CVE-2022-3564/commit/9ffee08efa44c7887e2babb8f304df0fa1094efb">9ffee08efa44c7887e2babb8f304df0fa1094efb</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>/net/netfilter/nf_tables_api.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in the Linux kernel through 5.18.9. A type confusion bug in nft_set_elem_init (leading to a buffer overflow) could be used by a local attacker to escalate privileges, a different vulnerability than CVE-2022-32250. (The attacker can obtain root access, but must start with an unprivileged user namespace to obtain CAP_NET_ADMIN access.) This can be fixed in nft_setelem_parse_data in net/netfilter/nf_tables_api.c.
<p>Publish Date: 2022-07-04
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-34918>CVE-2022-34918</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2022-34918">https://www.linuxkernelcves.com/cves/CVE-2022-34918</a></p>
<p>Release Date: 2022-07-04</p>
<p>Fix Resolution: v5.10.130,v5.15.54,v5.18.11,v5.19-rc6</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 high detected in linuxlinux cve high severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch main vulnerable source files net netfilter nf tables api c vulnerability details an issue was discovered in the linux kernel through a type confusion bug in nft set elem init leading to a buffer overflow could be used by a local attacker to escalate privileges a different vulnerability than cve the attacker can obtain root access but must start with an unprivileged user namespace to obtain cap net admin access this can be fixed in nft setelem parse data in net netfilter nf tables api c publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
18,209 | 12,677,850,000 | IssuesEvent | 2020-06-19 08:34:38 | godotengine/godot | https://api.github.com/repos/godotengine/godot | closed | Disable showing editor for selected node on scene tree | enhancement topic:editor usability | Sometimes when I'm editing a script I run the game right away to see the changes, instead of looking at the 3D/2D scene editor, and want to be always on the script editor.
The problem is that if I select a different node in the scene tree panel, Godot shows the default editor for that node and I have to be constantly switching back to the script editor.
This improvement add an option to the editor settings to disable that behavior, so no matter what node I select on the scene tree, the editor that is currently active will remain so.
It's useful for live editing too and also for scripts that have exported properties or access other nodes in the hierarchy, so that if one needs to tweak some properties in the attributes editor while still editing the script, Godot won't switch the editor when selecting a different node (also related to [this usability issue](https://github.com/godotengine/godot/issues/12721))
The changes that need to be done are in [this commit](https://github.com/rraallvv/godot/commit/f16e5de099ccda44d857d5f8383b1fa713fd35d4). | True | Disable showing editor for selected node on scene tree - Sometimes when I'm editing a script I run the game right away to see the changes, instead of looking at the 3D/2D scene editor, and want to be always on the script editor.
The problem is that if I select a different node in the scene tree panel, Godot shows the default editor for that node and I have to be constantly switching back to the script editor.
This improvement add an option to the editor settings to disable that behavior, so no matter what node I select on the scene tree, the editor that is currently active will remain so.
It's useful for live editing too and also for scripts that have exported properties or access other nodes in the hierarchy, so that if one needs to tweak some properties in the attributes editor while still editing the script, Godot won't switch the editor when selecting a different node (also related to [this usability issue](https://github.com/godotengine/godot/issues/12721))
The changes that need to be done are in [this commit](https://github.com/rraallvv/godot/commit/f16e5de099ccda44d857d5f8383b1fa713fd35d4). | non_priority | disable showing editor for selected node on scene tree sometimes when i m editing a script i run the game right away to see the changes instead of looking at the scene editor and want to be always on the script editor the problem is that if i select a different node in the scene tree panel godot shows the default editor for that node and i have to be constantly switching back to the script editor this improvement add an option to the editor settings to disable that behavior so no matter what node i select on the scene tree the editor that is currently active will remain so it s useful for live editing too and also for scripts that have exported properties or access other nodes in the hierarchy so that if one needs to tweak some properties in the attributes editor while still editing the script godot won t switch the editor when selecting a different node also related to the changes that need to be done are in | 0 |
9,723 | 3,068,637,803 | IssuesEvent | 2015-08-18 16:31:19 | mesosphere/kubernetes-mesos | https://api.github.com/repos/mesosphere/kubernetes-mesos | closed | Create docker-compose based e2e test setup without Mesos | priority/P2 tests | This would help to verify easily in the same environment how our changes influence the upstream version. Would be very helpful for e2e test debugging. | 1.0 | Create docker-compose based e2e test setup without Mesos - This would help to verify easily in the same environment how our changes influence the upstream version. Would be very helpful for e2e test debugging. | non_priority | create docker compose based test setup without mesos this would help to verify easily in the same environment how our changes influence the upstream version would be very helpful for test debugging | 0 |
36,174 | 17,498,020,560 | IssuesEvent | 2021-08-10 05:08:13 | DemocracyLab/CivicTechExchange | https://api.github.com/repos/DemocracyLab/CivicTechExchange | opened | Emails should be outsourced to external job | Back End OPERATIONS Performance | Emails sometimes take a long time to send, so we should send them to a separate job dedicated to sending emails, that won't block the request's processing.
## Requirements ##
- Calls to send emails sends email information to a queue that will be processed by a separate job
- Processing job has configurable rate limit
## Resources ##
[Background Tasks in Python](https://devcenter.heroku.com/articles/python-rq) | True | Emails should be outsourced to external job - Emails sometimes take a long time to send, so we should send them to a separate job dedicated to sending emails, that won't block the request's processing.
## Requirements ##
- Calls to send emails sends email information to a queue that will be processed by a separate job
- Processing job has configurable rate limit
## Resources ##
[Background Tasks in Python](https://devcenter.heroku.com/articles/python-rq) | non_priority | emails should be outsourced to external job emails sometimes take a long time to send so we should send them to a separate job dedicated to sending emails that won t block the request s processing requirements calls to send emails sends email information to a queue that will be processed by a separate job processing job has configurable rate limit resources | 0 |
67,094 | 16,817,650,766 | IssuesEvent | 2021-06-17 09:16:23 | MarlinFirmware/Marlin | https://api.github.com/repos/MarlinFirmware/Marlin | closed | [BUG] Uncompilable for mega1280 | Bug: Confirmed ! C: Build / Toolchain | ### Did you test the latest `bugfix-2.0.x` code?
Yes, and the problem still exists.
### Bug Description
Error while build for Geetech2560 with mega1280:
> In file included from Marlin\src\inc/../pins/mega/pins_GT2560_REV_A.h:31:0,
> from Marlin\src\inc/../pins/pins.h:242,
> from Marlin\src\inc/MarlinConfig.h:34,
> from Marlin\src\MarlinCore.h:24,
> from Marlin\src\MarlinCore.cpp:31:
> Marlin\src\inc/../pins/mega/env_validate.h:27:4: error: #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
>
I think that's because of this code in : Marlin\src\pins\mega\env_validate.h
> #pragma once
>
> #if ENABLED(ALLOW_MEGA1280) && NOT_TARGET(__AVR_ATmega1280__, __AVR_ATmega2560__)
> #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560 or 1280' in 'Tools > Board.'"
> #elif NOT_TARGET(__AVR_ATmega2560__) <---
> #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
> #endif
>
> #undef ALLOW_MEGA1280
>
changing this:
> #elif NOT_TARGET(__AVR_ATmega2560__)
to
> #elif NOT_TARGET(__AVR_ATmega1280__, __AVR_ATmega2560__)
so it is compilable, but may be not correct
### Steps to Reproduce
Set target to mega1280 & try to build
### Version of Marlin Firmware
2.0.8.2 Latest & bugfix
### Electronics
Geetech GT2560 Rev.A (with mega1280) | 1.0 | [BUG] Uncompilable for mega1280 - ### Did you test the latest `bugfix-2.0.x` code?
Yes, and the problem still exists.
### Bug Description
Error while build for Geetech2560 with mega1280:
> In file included from Marlin\src\inc/../pins/mega/pins_GT2560_REV_A.h:31:0,
> from Marlin\src\inc/../pins/pins.h:242,
> from Marlin\src\inc/MarlinConfig.h:34,
> from Marlin\src\MarlinCore.h:24,
> from Marlin\src\MarlinCore.cpp:31:
> Marlin\src\inc/../pins/mega/env_validate.h:27:4: error: #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
>
I think that's because of this code in : Marlin\src\pins\mega\env_validate.h
> #pragma once
>
> #if ENABLED(ALLOW_MEGA1280) && NOT_TARGET(__AVR_ATmega1280__, __AVR_ATmega2560__)
> #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560 or 1280' in 'Tools > Board.'"
> #elif NOT_TARGET(__AVR_ATmega2560__) <---
> #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
> #endif
>
> #undef ALLOW_MEGA1280
>
changing this:
> #elif NOT_TARGET(__AVR_ATmega2560__)
to
> #elif NOT_TARGET(__AVR_ATmega1280__, __AVR_ATmega2560__)
so it is compilable, but may be not correct
### Steps to Reproduce
Set target to mega1280 & try to build
### Version of Marlin Firmware
2.0.8.2 Latest & bugfix
### Electronics
Geetech GT2560 Rev.A (with mega1280) | non_priority | uncompilable for did you test the latest bugfix x code yes and the problem still exists bug description error while build for with in file included from marlin src inc pins mega pins rev a h from marlin src inc pins pins h from marlin src inc marlinconfig h from marlin src marlincore h from marlin src marlincore cpp marlin src inc pins mega env validate h error error oops select arduino genuino mega or mega in tools board i think that s because of this code in marlin src pins mega env validate h pragma once if enabled allow not target avr avr error oops select arduino genuino mega or mega or in tools board elif not target avr error oops select arduino genuino mega or mega in tools board endif undef allow changing this elif not target avr to elif not target avr avr so it is compilable but may be not correct steps to reproduce set target to try to build version of marlin firmware latest bugfix electronics geetech rev a with | 0 |
371,333 | 10,964,930,362 | IssuesEvent | 2019-11-28 00:37:55 | gardners/surveysystem | https://api.github.com/repos/gardners/surveysystem | opened | expose recently added answer fields to python controllers | Priority: MEDIUM backend task | **fields **
```
char *unit;
int flags;
long long stored;
```
** references **
`unit`: #72
`flags`: #186
`stored`: #162
** location**
next_questions.c
* get_next_questions() -> call_python_nextquestion()
* get_analysis()
The PyObject is created separately in both function block, merge them into a separate function `create_python_answers()` (or better:) | 1.0 | expose recently added answer fields to python controllers - **fields **
```
char *unit;
int flags;
long long stored;
```
** references **
`unit`: #72
`flags`: #186
`stored`: #162
** location**
next_questions.c
* get_next_questions() -> call_python_nextquestion()
* get_analysis()
The PyObject is created separately in both function block, merge them into a separate function `create_python_answers()` (or better:) | priority | expose recently added answer fields to python controllers fields char unit int flags long long stored references unit flags stored location next questions c get next questions call python nextquestion get analysis the pyobject is created separately in both function block merge them into a separate function create python answers or better | 1 |
185,419 | 14,352,103,901 | IssuesEvent | 2020-11-30 03:21:11 | the-canonizer/canonizer.2.0 | https://api.github.com/repos/the-canonizer/canonizer.2.0 | closed | Minor : Design issues | Fixed bug ready to test | I found minor design issues on topic agreement page
Please refer attached screenshot

| 1.0 | Minor : Design issues - I found minor design issues on topic agreement page
Please refer attached screenshot

| non_priority | minor design issues i found minor design issues on topic agreement page please refer attached screenshot | 0 |
161,062 | 20,120,391,086 | IssuesEvent | 2022-02-08 01:14:24 | arohablue/BlockDockServer | https://api.github.com/repos/arohablue/BlockDockServer | closed | CVE-2019-0232 (High) detected in tomcat-embed-core-8.5.15.jar - autoclosed | security vulnerability | ## CVE-2019-0232 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tomcat-embed-core-8.5.15.jar</b></p></summary>
<p>Core Tomcat implementation</p>
<p>Library home page: <a href="http://tomcat.apache.org/">http://tomcat.apache.org/</a></p>
<p>Path to dependency file: /BlockDockServer/build.gradle</p>
<p>Path to vulnerable library: /root/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/8.5.15/f197a93ae66212767b004fd93d7a1a8ea62bc3fa/tomcat-embed-core-8.5.15.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-tomcat-1.5.4.RELEASE.jar (Root Library)
- :x: **tomcat-embed-core-8.5.15.jar** (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>
When running on Windows with enableCmdLineArguments enabled, the CGI Servlet in Apache Tomcat 9.0.0.M1 to 9.0.17, 8.5.0 to 8.5.39 and 7.0.0 to 7.0.93 is vulnerable to Remote Code Execution due to a bug in the way the JRE passes command line arguments to Windows. The CGI Servlet is disabled by default. The CGI option enableCmdLineArguments is disable by default in Tomcat 9.0.x (and will be disabled by default in all versions in response to this vulnerability). For a detailed explanation of the JRE behaviour, see Markus Wulftange's blog (https://codewhitesec.blogspot.com/2016/02/java-and-command-line-injections-in-windows.html) and this archived MSDN blog (https://web.archive.org/web/20161228144344/https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/).
<p>Publish Date: 2019-04-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-0232>CVE-2019-0232</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0232">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0232</a></p>
<p>Release Date: 2019-04-15</p>
<p>Fix Resolution: org.apache.tomcat.embed:tomcat-embed-core:7.0.94, 8.5.40, 9.0.18</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2019-0232 (High) detected in tomcat-embed-core-8.5.15.jar - autoclosed - ## CVE-2019-0232 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tomcat-embed-core-8.5.15.jar</b></p></summary>
<p>Core Tomcat implementation</p>
<p>Library home page: <a href="http://tomcat.apache.org/">http://tomcat.apache.org/</a></p>
<p>Path to dependency file: /BlockDockServer/build.gradle</p>
<p>Path to vulnerable library: /root/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/8.5.15/f197a93ae66212767b004fd93d7a1a8ea62bc3fa/tomcat-embed-core-8.5.15.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-tomcat-1.5.4.RELEASE.jar (Root Library)
- :x: **tomcat-embed-core-8.5.15.jar** (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>
When running on Windows with enableCmdLineArguments enabled, the CGI Servlet in Apache Tomcat 9.0.0.M1 to 9.0.17, 8.5.0 to 8.5.39 and 7.0.0 to 7.0.93 is vulnerable to Remote Code Execution due to a bug in the way the JRE passes command line arguments to Windows. The CGI Servlet is disabled by default. The CGI option enableCmdLineArguments is disable by default in Tomcat 9.0.x (and will be disabled by default in all versions in response to this vulnerability). For a detailed explanation of the JRE behaviour, see Markus Wulftange's blog (https://codewhitesec.blogspot.com/2016/02/java-and-command-line-injections-in-windows.html) and this archived MSDN blog (https://web.archive.org/web/20161228144344/https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/).
<p>Publish Date: 2019-04-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-0232>CVE-2019-0232</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0232">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0232</a></p>
<p>Release Date: 2019-04-15</p>
<p>Fix Resolution: org.apache.tomcat.embed:tomcat-embed-core:7.0.94, 8.5.40, 9.0.18</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 tomcat embed core jar autoclosed cve high severity vulnerability vulnerable library tomcat embed core jar core tomcat implementation library home page a href path to dependency file blockdockserver build gradle path to vulnerable library root gradle caches modules files org apache tomcat embed tomcat embed core tomcat embed core jar dependency hierarchy spring boot starter tomcat release jar root library x tomcat embed core jar vulnerable library vulnerability details when running on windows with enablecmdlinearguments enabled the cgi servlet in apache tomcat to to and to is vulnerable to remote code execution due to a bug in the way the jre passes command line arguments to windows the cgi servlet is disabled by default the cgi option enablecmdlinearguments is disable by default in tomcat x and will be disabled by default in all versions in response to this vulnerability for a detailed explanation of the jre behaviour see markus wulftange s blog and this archived msdn blog publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org apache tomcat embed tomcat embed core step up your open source security game with whitesource | 0 |
142,970 | 5,487,253,465 | IssuesEvent | 2017-03-14 03:35:53 | dgore7/knowledge-management | https://api.github.com/repos/dgore7/knowledge-management | closed | Secure login/register on Self-Signed Certs | low priority team auth | Securely transfer the login information using public key exchange | 1.0 | Secure login/register on Self-Signed Certs - Securely transfer the login information using public key exchange | priority | secure login register on self signed certs securely transfer the login information using public key exchange | 1 |
192,081 | 14,599,363,727 | IssuesEvent | 2020-12-21 03:58:00 | github-vet/rangeloop-pointer-findings | https://api.github.com/repos/github-vet/rangeloop-pointer-findings | closed | presslabs/mysql-operator: pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go; 3 LoC | fresh test tiny |
Found a possible issue in [presslabs/mysql-operator](https://www.github.com/presslabs/mysql-operator) at [pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go](https://github.com/presslabs/mysql-operator/blob/47436cc5edd3d974239e45c994ccf7e22afa65e0/pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go#L128-L130)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call at line 129 may store a reference to pvc
[Click here to see the code in its original context.](https://github.com/presslabs/mysql-operator/blob/47436cc5edd3d974239e45c994ccf7e22afa65e0/pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go#L128-L130)
<details>
<summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary>
```go
for _, pvc := range pvcs {
deletePVC(&pvc)
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 47436cc5edd3d974239e45c994ccf7e22afa65e0
| 1.0 | presslabs/mysql-operator: pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go; 3 LoC -
Found a possible issue in [presslabs/mysql-operator](https://www.github.com/presslabs/mysql-operator) at [pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go](https://github.com/presslabs/mysql-operator/blob/47436cc5edd3d974239e45c994ccf7e22afa65e0/pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go#L128-L130)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call at line 129 may store a reference to pvc
[Click here to see the code in its original context.](https://github.com/presslabs/mysql-operator/blob/47436cc5edd3d974239e45c994ccf7e22afa65e0/pkg/controller/mysqlcluster/internal/cleaner/pvc_test.go#L128-L130)
<details>
<summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary>
```go
for _, pvc := range pvcs {
deletePVC(&pvc)
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 47436cc5edd3d974239e45c994ccf7e22afa65e0
| non_priority | presslabs mysql operator pkg controller mysqlcluster internal cleaner pvc test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call at line may store a reference to pvc click here to show the line s of go which triggered the analyzer go for pvc range pvcs deletepvc pvc leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 0 |
26,263 | 2,684,275,975 | IssuesEvent | 2015-03-28 20:37:38 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | closed | Cannot update | 1 star bug imported invalid Priority-Medium | _From [olegl...@gmail.com](https://code.google.com/u/118378438384892506376/) on January 25, 2013 11:13:04_
Required information! OS version: Win8x64 ConEmu version: 130117 *Bug description* Update fails because Conemu64.exe cannot be deleted *Steps to reproduction* 1. invoke Help - Check for update
2. 7zip fails with the above mentioned error
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=909_ | 1.0 | Cannot update - _From [olegl...@gmail.com](https://code.google.com/u/118378438384892506376/) on January 25, 2013 11:13:04_
Required information! OS version: Win8x64 ConEmu version: 130117 *Bug description* Update fails because Conemu64.exe cannot be deleted *Steps to reproduction* 1. invoke Help - Check for update
2. 7zip fails with the above mentioned error
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=909_ | priority | cannot update from on january required information os version conemu version bug description update fails because exe cannot be deleted steps to reproduction invoke help check for update fails with the above mentioned error original issue | 1 |
160,952 | 13,804,126,455 | IssuesEvent | 2020-10-11 07:21:45 | A5-015/capstone | https://api.github.com/repos/A5-015/capstone | closed | Deliverables Statement [October 2 2020] | documentation | Having a bunch of ESPs connected to each other
Propagation of signal from one node to the rest of the nodes
Bringing a new node into the network allows for re-organization autonomously
| 1.0 | Deliverables Statement [October 2 2020] - Having a bunch of ESPs connected to each other
Propagation of signal from one node to the rest of the nodes
Bringing a new node into the network allows for re-organization autonomously
| non_priority | deliverables statement having a bunch of esps connected to each other propagation of signal from one node to the rest of the nodes bringing a new node into the network allows for re organization autonomously | 0 |
291,474 | 8,925,632,804 | IssuesEvent | 2019-01-21 23:47:13 | pravega/pravega | https://api.github.com/repos/pravega/pravega | closed | Pravega security: Revisit some class names | area/security priority/P2 | **Problem description**
1. Rename `PravegaCredsWrapper` to `PravegaCredentialsWrapper`
2. Find a better place for `CredentialsExtractorTest`
**Problem location**
`PravegaCredsWrapper` and `CredentialsExtractorTest`.
**Suggestions for an improvement**
Rename the class. | 1.0 | Pravega security: Revisit some class names - **Problem description**
1. Rename `PravegaCredsWrapper` to `PravegaCredentialsWrapper`
2. Find a better place for `CredentialsExtractorTest`
**Problem location**
`PravegaCredsWrapper` and `CredentialsExtractorTest`.
**Suggestions for an improvement**
Rename the class. | priority | pravega security revisit some class names problem description rename pravegacredswrapper to pravegacredentialswrapper find a better place for credentialsextractortest problem location pravegacredswrapper and credentialsextractortest suggestions for an improvement rename the class | 1 |
120,520 | 15,773,883,519 | IssuesEvent | 2021-04-01 00:04:54 | mobile-umss/hollywood-data | https://api.github.com/repos/mobile-umss/hollywood-data | opened | Design Mockup of the project | Design | As a developer i want to have the mockup of the project
including
- Flow of the app
- Palette color
- Views of each page | 1.0 | Design Mockup of the project - As a developer i want to have the mockup of the project
including
- Flow of the app
- Palette color
- Views of each page | non_priority | design mockup of the project as a developer i want to have the mockup of the project including flow of the app palette color views of each page | 0 |
391,257 | 11,571,435,819 | IssuesEvent | 2020-02-20 21:33:58 | AugurProject/augur | https://api.github.com/repos/AugurProject/augur | closed | creating Pre-liq orders don't show up in portfolio page. | Bug Needed for V2 launch Priority: High | Portfolio page needs to be refreshed after user creates pre-liq orders from portfolio page.
1. create market with pre-liq
2. when market is created click on submit orders to create pre-liq orders
3. notice that orders do get created but don't show in open orders section in portfolio page | 1.0 | creating Pre-liq orders don't show up in portfolio page. - Portfolio page needs to be refreshed after user creates pre-liq orders from portfolio page.
1. create market with pre-liq
2. when market is created click on submit orders to create pre-liq orders
3. notice that orders do get created but don't show in open orders section in portfolio page | priority | creating pre liq orders don t show up in portfolio page portfolio page needs to be refreshed after user creates pre liq orders from portfolio page create market with pre liq when market is created click on submit orders to create pre liq orders notice that orders do get created but don t show in open orders section in portfolio page | 1 |
6,838 | 9,124,925,163 | IssuesEvent | 2019-02-24 08:53:59 | scylladb/scylla | https://api.github.com/repos/scylladb/scylla | opened | Slight different between Scylla and Apache Cassandra TTL | CQL cassandra 3.x compatibility | *Installation details*
Scylla version (or git commit hash): 3.0.3
Apache Cassandra 3.11
Just before a row is TTLed, Scylla return a null value, while Cassandra does not
### Setup
```
cqlsh> CREATE KEYSPACE mykeyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'} AND durable_writes = true;
cqlsh> USE mykeyspace;
cqlsh:mykeyspace> CREATE TABLE heartrate_ttl (
... pet_chip_id uuid,
... time timestamp,
... heart_rate int,
... PRIMARY KEY (pet_chip_id, time));
cqlsh:mykeyspace> INSERT INTO heartrate_ttl(pet_chip_id, time, heart_rate) VALUES (123e4567-e89b-12d3-a456-426655440b23, '2019-03-04 07:04:00', 131) USING TTL 21;
cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl;
pet_chip_id | time | heart_rate | ttl(heart_rate)
--------------------------------------+---------------------------------+------------+-----------------
123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | 131 | 10
```
Just before TTL is over Scylla will return
```
cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl;
pet_chip_id | time | heart_rate | ttl(heart_rate)
--------------------------------------+---------------------------------+------------+-----------------
123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | null | null
```
and after a second
```
pet_chip_id | time | heart_rate | ttl(heart_rate)
-------------+------+------------+-----------------
```
I cound not repreduce this null value with Cassandra. Not sure its a bug
| True | Slight different between Scylla and Apache Cassandra TTL - *Installation details*
Scylla version (or git commit hash): 3.0.3
Apache Cassandra 3.11
Just before a row is TTLed, Scylla return a null value, while Cassandra does not
### Setup
```
cqlsh> CREATE KEYSPACE mykeyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'} AND durable_writes = true;
cqlsh> USE mykeyspace;
cqlsh:mykeyspace> CREATE TABLE heartrate_ttl (
... pet_chip_id uuid,
... time timestamp,
... heart_rate int,
... PRIMARY KEY (pet_chip_id, time));
cqlsh:mykeyspace> INSERT INTO heartrate_ttl(pet_chip_id, time, heart_rate) VALUES (123e4567-e89b-12d3-a456-426655440b23, '2019-03-04 07:04:00', 131) USING TTL 21;
cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl;
pet_chip_id | time | heart_rate | ttl(heart_rate)
--------------------------------------+---------------------------------+------------+-----------------
123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | 131 | 10
```
Just before TTL is over Scylla will return
```
cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl;
pet_chip_id | time | heart_rate | ttl(heart_rate)
--------------------------------------+---------------------------------+------------+-----------------
123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | null | null
```
and after a second
```
pet_chip_id | time | heart_rate | ttl(heart_rate)
-------------+------+------------+-----------------
```
I cound not repreduce this null value with Cassandra. Not sure its a bug
| non_priority | slight different between scylla and apache cassandra ttl installation details scylla version or git commit hash apache cassandra just before a row is ttled scylla return a null value while cassandra does not setup cqlsh create keyspace mykeyspace with replication class simplestrategy replication factor and durable writes true cqlsh use mykeyspace cqlsh mykeyspace create table heartrate ttl pet chip id uuid time timestamp heart rate int primary key pet chip id time cqlsh mykeyspace insert into heartrate ttl pet chip id time heart rate values using ttl cqlsh mykeyspace select pet chip id time heart rate ttl heart rate from heartrate ttl pet chip id time heart rate ttl heart rate just before ttl is over scylla will return cqlsh mykeyspace select pet chip id time heart rate ttl heart rate from heartrate ttl pet chip id time heart rate ttl heart rate null null and after a second pet chip id time heart rate ttl heart rate i cound not repreduce this null value with cassandra not sure its a bug | 0 |
336,827 | 10,197,497,693 | IssuesEvent | 2019-08-13 00:39:52 | djjd47130/GitHubBackup | https://api.github.com/repos/djjd47130/GitHubBackup | closed | New profiles feature not converting old version | bug priority high | When upgrading to new version which introduces profiles, it did not convert the prior configuration into the new structure - instead it generated a new default profile as if it were new and never configured. | 1.0 | New profiles feature not converting old version - When upgrading to new version which introduces profiles, it did not convert the prior configuration into the new structure - instead it generated a new default profile as if it were new and never configured. | priority | new profiles feature not converting old version when upgrading to new version which introduces profiles it did not convert the prior configuration into the new structure instead it generated a new default profile as if it were new and never configured | 1 |
244,950 | 7,880,708,645 | IssuesEvent | 2018-06-26 16:42:06 | aowen87/FOO | https://api.github.com/repos/aowen87/FOO | closed | Upate FAQ 23 to require gcc 4.4 or new, except with fastbit, where 4.8 needed | Expected Use: 3 - Occasional Impact: 3 - Medium OS: All Priority: Normal Support Group: Any Target Version: 2.13.0 feature version: 2.12.3 | The FAQ on compilers is now out of date. We probably require gcc 4.4 and gcc 4.8 with fastbit, since fastbit relies on C++ 11. | 1.0 | Upate FAQ 23 to require gcc 4.4 or new, except with fastbit, where 4.8 needed - The FAQ on compilers is now out of date. We probably require gcc 4.4 and gcc 4.8 with fastbit, since fastbit relies on C++ 11. | priority | upate faq to require gcc or new except with fastbit where needed the faq on compilers is now out of date we probably require gcc and gcc with fastbit since fastbit relies on c | 1 |
119,226 | 25,493,693,761 | IssuesEvent | 2022-11-27 12:10:49 | julz0815/test-action | https://api.github.com/repos/julz0815/test-action | closed | CVE: 2019-2692 found in mysql-connector-java - Version: 5.1.35 [JAVA] | Severity: Low Veracode Dependency Scanning | Veracode Software Composition Analysis
===============================
Attribute | Details
| --- | --- |
Library | mysql-connector-java
Description | MySQL java connector
Language | JAVA
Vulnerability | Authorization Bypass
Vulnerability description | mysql-connector-java is vulnerable to authorization bypass. A difficult-to-exploit vulnerability allows a high-privileged attacker to bypass authorization, compromise the MySQL connectors and obtain full control over the connectors.
CVE | 2019-2692
CVSS score | 3.5
Vulnerability present in version/s | 2.0.14-8.0.15
Found library version/s | 5.1.35
Vulnerability fixed in version | 8.0.16
Library latest version | 8.0.31
Fix |
Links:
- https://sca.analysiscenter.veracode.com/vulnerability-database/libraries/1834?version=5.1.35
- https://sca.analysiscenter.veracode.com/vulnerability-database/vulnerabilities/20694
- Patch: | 1.0 | CVE: 2019-2692 found in mysql-connector-java - Version: 5.1.35 [JAVA] - Veracode Software Composition Analysis
===============================
Attribute | Details
| --- | --- |
Library | mysql-connector-java
Description | MySQL java connector
Language | JAVA
Vulnerability | Authorization Bypass
Vulnerability description | mysql-connector-java is vulnerable to authorization bypass. A difficult-to-exploit vulnerability allows a high-privileged attacker to bypass authorization, compromise the MySQL connectors and obtain full control over the connectors.
CVE | 2019-2692
CVSS score | 3.5
Vulnerability present in version/s | 2.0.14-8.0.15
Found library version/s | 5.1.35
Vulnerability fixed in version | 8.0.16
Library latest version | 8.0.31
Fix |
Links:
- https://sca.analysiscenter.veracode.com/vulnerability-database/libraries/1834?version=5.1.35
- https://sca.analysiscenter.veracode.com/vulnerability-database/vulnerabilities/20694
- Patch: | non_priority | cve found in mysql connector java version veracode software composition analysis attribute details library mysql connector java description mysql java connector language java vulnerability authorization bypass vulnerability description mysql connector java is vulnerable to authorization bypass a difficult to exploit vulnerability allows a high privileged attacker to bypass authorization compromise the mysql connectors and obtain full control over the connectors cve cvss score vulnerability present in version s found library version s vulnerability fixed in version library latest version fix links patch | 0 |
492,261 | 14,199,319,335 | IssuesEvent | 2020-11-16 01:59:56 | nhn/tui.grid | https://api.github.com/repos/nhn/tui.grid | closed | when using Pagination useClient : true option can't edit 2 page | Bug Priority: High | Hello,
I'm inquiring because I need to check if it's a bug.
If there is an editor in the grid and using Pagination, 1 page is well edited, but not 2 pages.
<template>
<div>
<grid :data="gridProps.data" :columns="gridProps.columns" :options="gridProps.options"/>
</div>
</template>
<script>
import "tui-grid/dist/tui-grid.css";
import { Grid } from "@toast-ui/vue-grid";
export default {
name: "Grid",
components: {grid: Grid},
data() {
return {
gridProps : {
columns: [
{ header: "name", name: "name",},
{ header: "artist", name: "artist",},
{ header: "title", name: "title",},
{ header: "seq", name: "num", },
{header: "useYn",name: "useYn",align: "center",
formatter: 'listItemText',
editor: { type:'select', options: {listItems: [{ text: 'Y', value: 'Y' },{ text: 'N', value: 'N' }]} }
},
],
options: {
pageOptions: { useClient: true, perPage: 2, visiblePages: 5, },
},
data: [
{ name: "Beautiful Lies", artist: "Birdy", title: "title1", num: "1", useYn: 'Y'},
{ name: "X", artist: "Ed Sheeran", title: "title2", num: "2", useYn: 'Y' },
{ name: "Beautiful Lies", artist: "Birdy", title: "title3", num: "1", useYn: 'N'},
{ name: "X", artist: "Ed Sheeran", title: "title4", num: "2", useYn: 'N'},
]
}
};
},
};
</script>
**Screenshots**
page 1 is enable edit

page 2 is disable edit

**Version**
"@toast-ui/vue-editor": "^2.4.0"
**Additional context**
Add any other context about the problem here.
| 1.0 | when using Pagination useClient : true option can't edit 2 page - Hello,
I'm inquiring because I need to check if it's a bug.
If there is an editor in the grid and using Pagination, 1 page is well edited, but not 2 pages.
<template>
<div>
<grid :data="gridProps.data" :columns="gridProps.columns" :options="gridProps.options"/>
</div>
</template>
<script>
import "tui-grid/dist/tui-grid.css";
import { Grid } from "@toast-ui/vue-grid";
export default {
name: "Grid",
components: {grid: Grid},
data() {
return {
gridProps : {
columns: [
{ header: "name", name: "name",},
{ header: "artist", name: "artist",},
{ header: "title", name: "title",},
{ header: "seq", name: "num", },
{header: "useYn",name: "useYn",align: "center",
formatter: 'listItemText',
editor: { type:'select', options: {listItems: [{ text: 'Y', value: 'Y' },{ text: 'N', value: 'N' }]} }
},
],
options: {
pageOptions: { useClient: true, perPage: 2, visiblePages: 5, },
},
data: [
{ name: "Beautiful Lies", artist: "Birdy", title: "title1", num: "1", useYn: 'Y'},
{ name: "X", artist: "Ed Sheeran", title: "title2", num: "2", useYn: 'Y' },
{ name: "Beautiful Lies", artist: "Birdy", title: "title3", num: "1", useYn: 'N'},
{ name: "X", artist: "Ed Sheeran", title: "title4", num: "2", useYn: 'N'},
]
}
};
},
};
</script>
**Screenshots**
page 1 is enable edit

page 2 is disable edit

**Version**
"@toast-ui/vue-editor": "^2.4.0"
**Additional context**
Add any other context about the problem here.
| priority | when using pagination useclient true option can t edit page hello i m inquiring because i need to check if it s a bug if there is an editor in the grid and using pagination page is well edited but not pages import tui grid dist tui grid css import grid from toast ui vue grid export default name grid components grid grid data return gridprops columns header name name name header artist name artist header title name title header seq name num header useyn name useyn align center formatter listitemtext editor type select options listitems options pageoptions useclient true perpage visiblepages data name beautiful lies artist birdy title num useyn y name x artist ed sheeran title num useyn y name beautiful lies artist birdy title num useyn n name x artist ed sheeran title num useyn n screenshots page is enable edit page is disable edit version toast ui vue editor additional context add any other context about the problem here | 1 |
37,171 | 12,473,788,668 | IssuesEvent | 2020-05-29 08:29:09 | Kalskiman/gentelella | https://api.github.com/repos/Kalskiman/gentelella | opened | WS-2019-0310 (Medium) detected in multiple libraries | security vulnerability | ## WS-2019-0310 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>https-proxy-agent-0.3.6.tgz</b>, <b>https-proxy-agent-1.0.0.tgz</b>, <b>https-proxy-agent-2.2.1.tgz</b></p></summary>
<p>
<details><summary><b>https-proxy-agent-0.3.6.tgz</b></p></summary>
<p>An HTTP(s) proxy `http.Agent` implementation for HTTPS</p>
<p>Library home page: <a href="https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-0.3.6.tgz">https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-0.3.6.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/gentelella/vendors/transitionize/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/gentelella/vendors/transitionize/node_modules/https-proxy-agent/package.json,/tmp/ws-scm/gentelella/vendors/transitionize/node_modules/https-proxy-agent/package.json</p>
<p>
Dependency Hierarchy:
- component-0.18.0.tgz (Root Library)
- superagent-proxy-0.0.1.tgz
- :x: **https-proxy-agent-0.3.6.tgz** (Vulnerable Library)
</details>
<details><summary><b>https-proxy-agent-1.0.0.tgz</b></p></summary>
<p>An HTTP(s) proxy `http.Agent` implementation for HTTPS</p>
<p>Library home page: <a href="https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz">https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/gentelella/vendors/select2/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/gentelella/vendors/jszip/node_modules/https-proxy-agent/package.json,/tmp/ws-scm/gentelella/vendors/jszip/node_modules/https-proxy-agent/package.json</p>
<p>
Dependency Hierarchy:
- grunt-saucelabs-8.6.3.tgz (Root Library)
- saucelabs-1.0.1.tgz
- :x: **https-proxy-agent-1.0.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>https-proxy-agent-2.2.1.tgz</b></p></summary>
<p>An HTTP(s) proxy `http.Agent` implementation for HTTPS</p>
<p>Library home page: <a href="https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz">https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/gentelella/vendors/bootstrap/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/gentelella/vendors/bootstrap/node_modules/https-proxy-agent/package.json</p>
<p>
Dependency Hierarchy:
- karma-browserstack-launcher-1.4.0.tgz (Root Library)
- browserstack-1.5.2.tgz
- :x: **https-proxy-agent-2.2.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/Kalskiman/gentelella/commit/0736072b46adcf2ceef588bb8660b4851929bc43">0736072b46adcf2ceef588bb8660b4851929bc43</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>
There is a Machine-In-The-Middle vulnerability found in https-proxy-agent before 2.2.3. There is a failure of TLS enforcement on the socket. Attacker may intercept unencrypted communications.
<p>Publish Date: 2019-10-07
<p>URL: <a href=https://github.com/TooTallNate/node-https-proxy-agent/commit/36d8cf509f877fa44f4404fce57ebaf9410fe51b>WS-2019-0310</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.0</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="https://www.npmjs.com/advisories/1184">https://www.npmjs.com/advisories/1184</a></p>
<p>Release Date: 2019-12-01</p>
<p>Fix Resolution: https-proxy-agent - 2.2.3</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-2019-0310 (Medium) detected in multiple libraries - ## WS-2019-0310 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>https-proxy-agent-0.3.6.tgz</b>, <b>https-proxy-agent-1.0.0.tgz</b>, <b>https-proxy-agent-2.2.1.tgz</b></p></summary>
<p>
<details><summary><b>https-proxy-agent-0.3.6.tgz</b></p></summary>
<p>An HTTP(s) proxy `http.Agent` implementation for HTTPS</p>
<p>Library home page: <a href="https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-0.3.6.tgz">https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-0.3.6.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/gentelella/vendors/transitionize/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/gentelella/vendors/transitionize/node_modules/https-proxy-agent/package.json,/tmp/ws-scm/gentelella/vendors/transitionize/node_modules/https-proxy-agent/package.json</p>
<p>
Dependency Hierarchy:
- component-0.18.0.tgz (Root Library)
- superagent-proxy-0.0.1.tgz
- :x: **https-proxy-agent-0.3.6.tgz** (Vulnerable Library)
</details>
<details><summary><b>https-proxy-agent-1.0.0.tgz</b></p></summary>
<p>An HTTP(s) proxy `http.Agent` implementation for HTTPS</p>
<p>Library home page: <a href="https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz">https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/gentelella/vendors/select2/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/gentelella/vendors/jszip/node_modules/https-proxy-agent/package.json,/tmp/ws-scm/gentelella/vendors/jszip/node_modules/https-proxy-agent/package.json</p>
<p>
Dependency Hierarchy:
- grunt-saucelabs-8.6.3.tgz (Root Library)
- saucelabs-1.0.1.tgz
- :x: **https-proxy-agent-1.0.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>https-proxy-agent-2.2.1.tgz</b></p></summary>
<p>An HTTP(s) proxy `http.Agent` implementation for HTTPS</p>
<p>Library home page: <a href="https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz">https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/gentelella/vendors/bootstrap/package.json</p>
<p>Path to vulnerable library: /tmp/ws-scm/gentelella/vendors/bootstrap/node_modules/https-proxy-agent/package.json</p>
<p>
Dependency Hierarchy:
- karma-browserstack-launcher-1.4.0.tgz (Root Library)
- browserstack-1.5.2.tgz
- :x: **https-proxy-agent-2.2.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/Kalskiman/gentelella/commit/0736072b46adcf2ceef588bb8660b4851929bc43">0736072b46adcf2ceef588bb8660b4851929bc43</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>
There is a Machine-In-The-Middle vulnerability found in https-proxy-agent before 2.2.3. There is a failure of TLS enforcement on the socket. Attacker may intercept unencrypted communications.
<p>Publish Date: 2019-10-07
<p>URL: <a href=https://github.com/TooTallNate/node-https-proxy-agent/commit/36d8cf509f877fa44f4404fce57ebaf9410fe51b>WS-2019-0310</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.0</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="https://www.npmjs.com/advisories/1184">https://www.npmjs.com/advisories/1184</a></p>
<p>Release Date: 2019-12-01</p>
<p>Fix Resolution: https-proxy-agent - 2.2.3</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 multiple libraries ws medium severity vulnerability vulnerable libraries https proxy agent tgz https proxy agent tgz https proxy agent tgz https proxy agent tgz an http s proxy http agent implementation for https library home page a href path to dependency file tmp ws scm gentelella vendors transitionize package json path to vulnerable library tmp ws scm gentelella vendors transitionize node modules https proxy agent package json tmp ws scm gentelella vendors transitionize node modules https proxy agent package json dependency hierarchy component tgz root library superagent proxy tgz x https proxy agent tgz vulnerable library https proxy agent tgz an http s proxy http agent implementation for https library home page a href path to dependency file tmp ws scm gentelella vendors package json path to vulnerable library tmp ws scm gentelella vendors jszip node modules https proxy agent package json tmp ws scm gentelella vendors jszip node modules https proxy agent package json dependency hierarchy grunt saucelabs tgz root library saucelabs tgz x https proxy agent tgz vulnerable library https proxy agent tgz an http s proxy http agent implementation for https library home page a href path to dependency file tmp ws scm gentelella vendors bootstrap package json path to vulnerable library tmp ws scm gentelella vendors bootstrap node modules https proxy agent package json dependency hierarchy karma browserstack launcher tgz root library browserstack tgz x https proxy agent tgz vulnerable library found in head commit a href vulnerability details there is a machine in the middle vulnerability found in https proxy agent before there is a failure of tls enforcement on the socket attacker may intercept unencrypted communications 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 https proxy agent step up your open source security game with whitesource | 0 |
3,730 | 2,696,872,075 | IssuesEvent | 2015-04-02 16:29:54 | GoogleCloudPlatform/kubernetes | https://api.github.com/repos/GoogleCloudPlatform/kubernetes | opened | Communication between Kubernetes components | api/cluster api/kubelet kind/design priority/design team/master team/node | Conversation started by @davidopp due to complexities arising from node-to-master communication (e.g., #6193, #6285, #6077, #6063, #6052, #5953).
Overall communication issues:
* performance, latency, scalability
* DoS
* RAW and WAW consistency
* clock skew / time synchronization
* true and false conflicts
* auth
* component discovery
I'll wait for @davidopp to fill in his proposal.
cc @erictune @lavalamp @thockin @dchen1107 @smarterclayton @gmarek | 2.0 | Communication between Kubernetes components - Conversation started by @davidopp due to complexities arising from node-to-master communication (e.g., #6193, #6285, #6077, #6063, #6052, #5953).
Overall communication issues:
* performance, latency, scalability
* DoS
* RAW and WAW consistency
* clock skew / time synchronization
* true and false conflicts
* auth
* component discovery
I'll wait for @davidopp to fill in his proposal.
cc @erictune @lavalamp @thockin @dchen1107 @smarterclayton @gmarek | non_priority | communication between kubernetes components conversation started by davidopp due to complexities arising from node to master communication e g overall communication issues performance latency scalability dos raw and waw consistency clock skew time synchronization true and false conflicts auth component discovery i ll wait for davidopp to fill in his proposal cc erictune lavalamp thockin smarterclayton gmarek | 0 |
151,261 | 13,396,279,195 | IssuesEvent | 2020-09-03 09:41:08 | prototypsthlm/contentful-migrator-programme | https://api.github.com/repos/prototypsthlm/contentful-migrator-programme | opened | Improve develop docs steps | documentation good first issue | Improve the steps needed to develop the package.
Section "Develop" in the readme. | 1.0 | Improve develop docs steps - Improve the steps needed to develop the package.
Section "Develop" in the readme. | non_priority | improve develop docs steps improve the steps needed to develop the package section develop in the readme | 0 |
23,313 | 4,006,678,349 | IssuesEvent | 2016-05-12 15:37:15 | galaxyproject/planemo | https://api.github.com/repos/galaxyproject/planemo | opened | Generalized Test Follow Up | cwl docs missing enhancement testing | A list of tasks to enhance the newer planemo capability to test Galaxy workflows, cwl tools (with Galaxy or cwltool), and cwl workflows (with cwltool). New testing was added in #454 and scoped out in #448.
- Document the ``<artifact>-test.yml`` format.
- Refactor much of Galaxy's testing comparison stuff out into galaxy-lib or a new testing package for reuse in planemo.
- Develop a test syntax to leverage above library from ``<artifact>-test.yml`` tests.
- Implement XUnit reports for newer testing stuff (html, markdown, json, and text already work).
- Extend CWL ``tool_init`` to build a test case.
| 1.0 | Generalized Test Follow Up - A list of tasks to enhance the newer planemo capability to test Galaxy workflows, cwl tools (with Galaxy or cwltool), and cwl workflows (with cwltool). New testing was added in #454 and scoped out in #448.
- Document the ``<artifact>-test.yml`` format.
- Refactor much of Galaxy's testing comparison stuff out into galaxy-lib or a new testing package for reuse in planemo.
- Develop a test syntax to leverage above library from ``<artifact>-test.yml`` tests.
- Implement XUnit reports for newer testing stuff (html, markdown, json, and text already work).
- Extend CWL ``tool_init`` to build a test case.
| non_priority | generalized test follow up a list of tasks to enhance the newer planemo capability to test galaxy workflows cwl tools with galaxy or cwltool and cwl workflows with cwltool new testing was added in and scoped out in document the test yml format refactor much of galaxy s testing comparison stuff out into galaxy lib or a new testing package for reuse in planemo develop a test syntax to leverage above library from test yml tests implement xunit reports for newer testing stuff html markdown json and text already work extend cwl tool init to build a test case | 0 |
586,342 | 17,575,723,637 | IssuesEvent | 2021-08-15 15:13:55 | stax76/mpv.net | https://api.github.com/repos/stax76/mpv.net | closed | support for `input-ipc-server` option | priority low not an issue | **Is your feature request related to a problem? Please describe.**
Right now i'm trying to setup this thing https://github.com/iamkroot/trakt-scrobbler/wiki/Players-Setup, but setting `input-ipc-server` in mpv.conf does nothing.
**Describe the solution you'd like**
Having support for this option.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
mpv.net version is `5.4.9.2 Beta`
| 1.0 | support for `input-ipc-server` option - **Is your feature request related to a problem? Please describe.**
Right now i'm trying to setup this thing https://github.com/iamkroot/trakt-scrobbler/wiki/Players-Setup, but setting `input-ipc-server` in mpv.conf does nothing.
**Describe the solution you'd like**
Having support for this option.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
mpv.net version is `5.4.9.2 Beta`
| priority | support for input ipc server option is your feature request related to a problem please describe right now i m trying to setup this thing but setting input ipc server in mpv conf does nothing describe the solution you d like having support for this option describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered additional context mpv net version is beta | 1 |
105,270 | 23,021,682,404 | IssuesEvent | 2022-07-22 05:35:47 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | reopened | Prefer Dictionary<K, V>.TryAddValue(key) over guarded Add(key) | api-approved area-System.Collections code-analyzer code-fixer | `!Dictionary<K, V>.ContainsKey(key)` followed by `Dictionary<K, V>.Add(key)` can be combined into a single `TryAdd` call.
**Category**: Performance | 2.0 | Prefer Dictionary<K, V>.TryAddValue(key) over guarded Add(key) - `!Dictionary<K, V>.ContainsKey(key)` followed by `Dictionary<K, V>.Add(key)` can be combined into a single `TryAdd` call.
**Category**: Performance | non_priority | prefer dictionary tryaddvalue key over guarded add key dictionary containskey key followed by dictionary add key can be combined into a single tryadd call category performance | 0 |
34,602 | 14,445,641,279 | IssuesEvent | 2020-12-07 23:24:38 | terraform-providers/terraform-provider-azurerm | https://api.github.com/repos/terraform-providers/terraform-provider-azurerm | closed | default values for postgresql_server threat policy attributes are list with empty string instead of empty list | bug service/postgresql | <!---
Please note the following potential times when an issue might be in Terraform core:
* [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues
* [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
* [Registry](https://registry.terraform.io/) issues
* Spans resources across multiple providers
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
--->
<!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform (and AzureRM Provider) Version
terraform v0.12.24
azurerm v2.30.0
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* `azurerm_postgresql_server`
### Terraform Configuration Files
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
```hcl
variable "threat_policy_disabled_alerts" {
default = []
type = list(string)
description = "List of alerts to disable."
}
variable "threat_policy_email_addresses" {
default = []
type = list(string)
description = "List of email addresses to alert."
}
resource "azurerm_postgresql_server" "postgres_sql" {
...
dynamic "threat_detection_policy" {
for_each = var.threat_policy_enabled == true ? [1] : []
content {
enabled = true
disabled_alerts = var.threat_policy_disabled_alerts
email_account_admins = var.threat_policy_email_account_admins
email_addresses = var.threat_policy_email_addresses
retention_days = var.threat_policy_retention_days
storage_account_access_key = var.threat_policy_sa_key != "" ? var.threat_policy_sa_key : null
storage_endpoint = var.threat_policy_sa_endpoint != "" ? var.threat_policy_sa_endpoint : null
}
}
}
```
### Expected Behavior
Expect list of disabled alerts and list of email addresses set to empty list. re-applying should see no infrastructure changes
### Actual Behavior
initial apply succeeds. subsequent applies detect the following changes
```hcl
~ threat_detection_policy {
~ disabled_alerts = [
- "", //should be empty list, not list with empty string
]
email_account_admins = false
~ email_addresses = [
- "", //should be empty list, not list with empty string
]
enabled = true
retention_days = 0
}
```
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. `terraform apply`
### Important Factoids
tried setting default values to [""], instead of empty list but get the following error:
```hcl
Error: expected threat_detection_policy.0.disabled_alerts.0 to be one of [Sql_Injection Sql_Injection_Vulnerability Access_Anomaly Data_Exfiltration Unsafe_Action], got
```
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation?
--->
| 1.0 | default values for postgresql_server threat policy attributes are list with empty string instead of empty list - <!---
Please note the following potential times when an issue might be in Terraform core:
* [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues
* [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
* [Registry](https://registry.terraform.io/) issues
* Spans resources across multiple providers
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
--->
<!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform (and AzureRM Provider) Version
terraform v0.12.24
azurerm v2.30.0
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* `azurerm_postgresql_server`
### Terraform Configuration Files
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
```hcl
variable "threat_policy_disabled_alerts" {
default = []
type = list(string)
description = "List of alerts to disable."
}
variable "threat_policy_email_addresses" {
default = []
type = list(string)
description = "List of email addresses to alert."
}
resource "azurerm_postgresql_server" "postgres_sql" {
...
dynamic "threat_detection_policy" {
for_each = var.threat_policy_enabled == true ? [1] : []
content {
enabled = true
disabled_alerts = var.threat_policy_disabled_alerts
email_account_admins = var.threat_policy_email_account_admins
email_addresses = var.threat_policy_email_addresses
retention_days = var.threat_policy_retention_days
storage_account_access_key = var.threat_policy_sa_key != "" ? var.threat_policy_sa_key : null
storage_endpoint = var.threat_policy_sa_endpoint != "" ? var.threat_policy_sa_endpoint : null
}
}
}
```
### Expected Behavior
Expect list of disabled alerts and list of email addresses set to empty list. re-applying should see no infrastructure changes
### Actual Behavior
initial apply succeeds. subsequent applies detect the following changes
```hcl
~ threat_detection_policy {
~ disabled_alerts = [
- "", //should be empty list, not list with empty string
]
email_account_admins = false
~ email_addresses = [
- "", //should be empty list, not list with empty string
]
enabled = true
retention_days = 0
}
```
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. `terraform apply`
### Important Factoids
tried setting default values to [""], instead of empty list but get the following error:
```hcl
Error: expected threat_detection_policy.0.disabled_alerts.0 to be one of [Sql_Injection Sql_Injection_Vulnerability Access_Anomaly Data_Exfiltration Unsafe_Action], got
```
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation?
--->
| non_priority | default values for postgresql server threat policy attributes are list with empty string instead of empty list please note the following potential times when an issue might be in terraform core or resource ordering issues and issues issues issues spans resources across multiple providers if you are running into one of these scenarios we recommend opening an issue in the instead community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform and azurerm provider version terraform azurerm affected resource s azurerm postgresql server terraform configuration files hcl variable threat policy disabled alerts default type list string description list of alerts to disable variable threat policy email addresses default type list string description list of email addresses to alert resource azurerm postgresql server postgres sql dynamic threat detection policy for each var threat policy enabled true content enabled true disabled alerts var threat policy disabled alerts email account admins var threat policy email account admins email addresses var threat policy email addresses retention days var threat policy retention days storage account access key var threat policy sa key var threat policy sa key null storage endpoint var threat policy sa endpoint var threat policy sa endpoint null expected behavior expect list of disabled alerts and list of email addresses set to empty list re applying should see no infrastructure changes actual behavior initial apply succeeds subsequent applies detect the following changes hcl threat detection policy disabled alerts should be empty list not list with empty string email account admins false email addresses should be empty list not list with empty string enabled true retention days steps to reproduce terraform apply important factoids tried setting default values to instead of empty list but get the following error hcl error expected threat detection policy disabled alerts to be one of got references information about referencing github issues are there any other github issues open or closed or pull requests that should be linked here such as vendor documentation | 0 |
74,368 | 9,024,512,598 | IssuesEvent | 2019-02-07 10:44:51 | LiskHQ/lisk-hub | https://api.github.com/repos/LiskHQ/lisk-hub | closed | Design Request LSK - QR Code | type: design | Design a way for users to be able to use a generated QR Code when requesting LSK. The QR code is meant to be used by the Lisk Mobile app. | 1.0 | Design Request LSK - QR Code - Design a way for users to be able to use a generated QR Code when requesting LSK. The QR code is meant to be used by the Lisk Mobile app. | non_priority | design request lsk qr code design a way for users to be able to use a generated qr code when requesting lsk the qr code is meant to be used by the lisk mobile app | 0 |
394,074 | 11,631,470,986 | IssuesEvent | 2020-02-28 01:29:25 | ness-lab/mrt | https://api.github.com/repos/ness-lab/mrt | closed | Parallel conversion of VCFs to LDhat format | enhancement high-priority | We need to write a script that converts bgzipped VCFs into LDhat input format. It'll be important to preserve the naming convention of the VCFs to avoid losing the parameter combinations used to generate them (since they're in the filename).
LDhat requires two files as input: a `.sites` file and a `.locs` file.
`vcftools` can do this. [HERE](https://github.com/ness-lab/mrt/blob/master/scripts/shell/vcf_to_ldhat.sh) is draft version of a previous script that does this. It should provide a good launching-off point.
Note that VCFs need to be sorted first, using a script that is similar to [this one here](https://github.com/ness-lab/mrt/blob/master/scripts/shell/sort_vcfs.sh) | 1.0 | Parallel conversion of VCFs to LDhat format - We need to write a script that converts bgzipped VCFs into LDhat input format. It'll be important to preserve the naming convention of the VCFs to avoid losing the parameter combinations used to generate them (since they're in the filename).
LDhat requires two files as input: a `.sites` file and a `.locs` file.
`vcftools` can do this. [HERE](https://github.com/ness-lab/mrt/blob/master/scripts/shell/vcf_to_ldhat.sh) is draft version of a previous script that does this. It should provide a good launching-off point.
Note that VCFs need to be sorted first, using a script that is similar to [this one here](https://github.com/ness-lab/mrt/blob/master/scripts/shell/sort_vcfs.sh) | priority | parallel conversion of vcfs to ldhat format we need to write a script that converts bgzipped vcfs into ldhat input format it ll be important to preserve the naming convention of the vcfs to avoid losing the parameter combinations used to generate them since they re in the filename ldhat requires two files as input a sites file and a locs file vcftools can do this is draft version of a previous script that does this it should provide a good launching off point note that vcfs need to be sorted first using a script that is similar to | 1 |
334,362 | 29,832,482,730 | IssuesEvent | 2023-06-18 12:49:59 | DMDcoin/hbbft-posdao-contracts | https://api.github.com/repos/DMDcoin/hbbft-posdao-contracts | closed | Update to Solidity 0.8.17 | in test | Update the Contracts to Solidity 0.8.17.
- [ ] old contract tests can stay with JS
- [x] new contract tests can be with TS
- [ ] figure out if and how we can integrate old JS tests with new TS tests. In the worst case we have just 2 Unit test pipelines, what is still OK.
optional improvements:
- [ ] use state of the art solutions for Proxies and Contract Updates.
- [ ] use state of the art solutions for Ownership and Security management.
- [x] Hardhat instead or in addition of truffle can be used
- [x] remove truffle if we manage to integrate existing tests to hardhat with low efforts.
scripts:
A lot of scripts aren''t used anymore - and can drop out during the upgrade.
A lot of the testing and analysing functioninality moved to [honey-badger-testing](https://github.com/DMDcoin/honey-badger-testing)
Function that are still needed:
- [x] getFunctionSignatures: we need a possibility to retrieve the Function Signatures. Those are used very often in the TxPermission contract.
- [x] make_spec_hbbft.json: We still need specs, but there should not be much of a change.
- [x] Upload to Blockscout is a script net never worked with 100% reliability. There is a Issue for that: https://github.com/DMDcoin/hbbft-posdao-contracts/issues/32 | 1.0 | Update to Solidity 0.8.17 - Update the Contracts to Solidity 0.8.17.
- [ ] old contract tests can stay with JS
- [x] new contract tests can be with TS
- [ ] figure out if and how we can integrate old JS tests with new TS tests. In the worst case we have just 2 Unit test pipelines, what is still OK.
optional improvements:
- [ ] use state of the art solutions for Proxies and Contract Updates.
- [ ] use state of the art solutions for Ownership and Security management.
- [x] Hardhat instead or in addition of truffle can be used
- [x] remove truffle if we manage to integrate existing tests to hardhat with low efforts.
scripts:
A lot of scripts aren''t used anymore - and can drop out during the upgrade.
A lot of the testing and analysing functioninality moved to [honey-badger-testing](https://github.com/DMDcoin/honey-badger-testing)
Function that are still needed:
- [x] getFunctionSignatures: we need a possibility to retrieve the Function Signatures. Those are used very often in the TxPermission contract.
- [x] make_spec_hbbft.json: We still need specs, but there should not be much of a change.
- [x] Upload to Blockscout is a script net never worked with 100% reliability. There is a Issue for that: https://github.com/DMDcoin/hbbft-posdao-contracts/issues/32 | non_priority | update to solidity update the contracts to solidity old contract tests can stay with js new contract tests can be with ts figure out if and how we can integrate old js tests with new ts tests in the worst case we have just unit test pipelines what is still ok optional improvements use state of the art solutions for proxies and contract updates use state of the art solutions for ownership and security management hardhat instead or in addition of truffle can be used remove truffle if we manage to integrate existing tests to hardhat with low efforts scripts a lot of scripts aren t used anymore and can drop out during the upgrade a lot of the testing and analysing functioninality moved to function that are still needed getfunctionsignatures we need a possibility to retrieve the function signatures those are used very often in the txpermission contract make spec hbbft json we still need specs but there should not be much of a change upload to blockscout is a script net never worked with reliability there is a issue for that | 0 |
251,623 | 8,018,107,879 | IssuesEvent | 2018-07-25 18:01:45 | galaxypi/galaxy.ooo | https://api.github.com/repos/galaxypi/galaxy.ooo | opened | Resolve dependency vulnerability | bug high-priority | ## Resolve dependency vulnerability
```
We found a potential security vulnerability in one of your dependencies.
A dependency defined in package.json has known security vulnerabilities and should be updated.
Only the owner of this repository can see this message.
Learn more about vulnerability alerts
```
<img width="762" alt="screenshot 2018-07-25 13 58 27" src="https://user-images.githubusercontent.com/1711854/43218727-3bb4fc1c-9013-11e8-954e-2d09f060ba30.png">
| 1.0 | Resolve dependency vulnerability - ## Resolve dependency vulnerability
```
We found a potential security vulnerability in one of your dependencies.
A dependency defined in package.json has known security vulnerabilities and should be updated.
Only the owner of this repository can see this message.
Learn more about vulnerability alerts
```
<img width="762" alt="screenshot 2018-07-25 13 58 27" src="https://user-images.githubusercontent.com/1711854/43218727-3bb4fc1c-9013-11e8-954e-2d09f060ba30.png">
| priority | resolve dependency vulnerability resolve dependency vulnerability we found a potential security vulnerability in one of your dependencies a dependency defined in package json has known security vulnerabilities and should be updated only the owner of this repository can see this message learn more about vulnerability alerts img width alt screenshot src | 1 |
12,328 | 3,068,737,826 | IssuesEvent | 2015-08-18 17:00:30 | loklak/loklak_webclient | https://api.github.com/repos/loklak/loklak_webclient | closed | Create area with loklak info to show up on bottom of right hand sidebar home, search, report etc. | Design Search - Fuksi | * [x] Add button line as in comment and image https://github.com/loklak/loklak_webclient/issues/424#issue-98722644
* [x] © 2015 loklak
* [x] About (link to /about)
* [x] Blog (link to http://blog.loklak.net) - new tab
* [x] Github (link to http://github.com/loklak) - new tab
* [x] Facebook (link to http://facebook.com/loklakmessages) - new tab
* [x] Match twitter design with white background

| 1.0 | Create area with loklak info to show up on bottom of right hand sidebar home, search, report etc. - * [x] Add button line as in comment and image https://github.com/loklak/loklak_webclient/issues/424#issue-98722644
* [x] © 2015 loklak
* [x] About (link to /about)
* [x] Blog (link to http://blog.loklak.net) - new tab
* [x] Github (link to http://github.com/loklak) - new tab
* [x] Facebook (link to http://facebook.com/loklakmessages) - new tab
* [x] Match twitter design with white background

| non_priority | create area with loklak info to show up on bottom of right hand sidebar home search report etc add button line as in comment and image © loklak about link to about blog link to new tab github link to new tab facebook link to new tab match twitter design with white background | 0 |
132,869 | 28,373,082,459 | IssuesEvent | 2023-04-12 18:32:56 | appsmithorg/appsmith | https://api.github.com/repos/appsmithorg/appsmith | closed | [Bug]: Debugger shows up in preview mode after running a query from a widget | Bug Release Release Blocker BE Coders Pod Data Platform Pod Error Handling | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Description
Triggering a query from a widget in preview mode opens the debugger.
### Steps To Reproduce
(will attach a video)
### Public Sample App
_No response_
### Environment
Release
### Issue video log
_No response_
### Version
Cloud | 1.0 | [Bug]: Debugger shows up in preview mode after running a query from a widget - ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Description
Triggering a query from a widget in preview mode opens the debugger.
### Steps To Reproduce
(will attach a video)
### Public Sample App
_No response_
### Environment
Release
### Issue video log
_No response_
### Version
Cloud | non_priority | debugger shows up in preview mode after running a query from a widget is there an existing issue for this i have searched the existing issues description triggering a query from a widget in preview mode opens the debugger steps to reproduce will attach a video public sample app no response environment release issue video log no response version cloud | 0 |
736,362 | 25,470,838,041 | IssuesEvent | 2022-11-25 10:01:57 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.ubereats.com - site is not usable | browser-firefox priority-important os-linux engine-gecko | <!-- @browser: Firefox 109.0 -->
<!-- @ua_header: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/114611 -->
**URL**: https://www.ubereats.com/fr/checkout?ps=1
**Browser / Version**: Firefox 109.0
**Operating System**: Linux
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: Page not loading correctly
**Steps to Reproduce**:
Upon validation of the cart to place my order, the order would not be placed. An in-window popup could be briefly seen until is disappears and the page with the cart to be validated was reloaded. Reproduced ~5 times in a row.
Disabling Extended Tracking Protection in Firefox Nightly 20221121153827, I could immediately place my order.
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.ubereats.com - site is not usable - <!-- @browser: Firefox 109.0 -->
<!-- @ua_header: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/114611 -->
**URL**: https://www.ubereats.com/fr/checkout?ps=1
**Browser / Version**: Firefox 109.0
**Operating System**: Linux
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: Page not loading correctly
**Steps to Reproduce**:
Upon validation of the cart to place my order, the order would not be placed. An in-window popup could be briefly seen until is disappears and the page with the cart to be validated was reloaded. Reproduced ~5 times in a row.
Disabling Extended Tracking Protection in Firefox Nightly 20221121153827, I could immediately place my order.
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | site is not usable url browser version firefox operating system linux tested another browser no problem type site is not usable description page not loading correctly steps to reproduce upon validation of the cart to place my order the order would not be placed an in window popup could be briefly seen until is disappears and the page with the cart to be validated was reloaded reproduced times in a row disabling extended tracking protection in firefox nightly i could immediately place my order browser configuration none from with ❤️ | 1 |
513,547 | 14,923,034,580 | IssuesEvent | 2021-01-23 17:15:30 | otasoft/otasoft-core | https://api.github.com/repos/otasoft/otasoft-core | closed | create articles about Otasoft for Medium | enhancement medium priority | ## Feature Request
## Teachability, Documentation, Adoption, Migration Strategy
<!-- If you can, explain how users will be able to use this and possibly write out a version the docs. Maybe a screenshot or design? -->
https://medium.com/otasoft/about | 1.0 | create articles about Otasoft for Medium - ## Feature Request
## Teachability, Documentation, Adoption, Migration Strategy
<!-- If you can, explain how users will be able to use this and possibly write out a version the docs. Maybe a screenshot or design? -->
https://medium.com/otasoft/about | priority | create articles about otasoft for medium feature request teachability documentation adoption migration strategy | 1 |
121,754 | 4,821,016,150 | IssuesEvent | 2016-11-05 03:56:41 | dealii/dealii | https://api.github.com/repos/dealii/dealii | closed | Static analysis: dealii-git/source/lac/sparsity_pattern.cc | Low priority Starter project | ```
dealii-git/source/lac/sparsity_pattern.cc 234 err V501 There are identical sub-expressions 'cols == 0' to the left and to the right of the '&&' operator.
dealii-git/source/lac/sparsity_pattern.cc 578 err V501 There are identical sub-expressions '(matrix.m() == matrix.n())' to the left and to the right of the '&&' operator.
```
We should address these warnings and errors from the static analysis tool PVS. In response to #3342. | 1.0 | Static analysis: dealii-git/source/lac/sparsity_pattern.cc - ```
dealii-git/source/lac/sparsity_pattern.cc 234 err V501 There are identical sub-expressions 'cols == 0' to the left and to the right of the '&&' operator.
dealii-git/source/lac/sparsity_pattern.cc 578 err V501 There are identical sub-expressions '(matrix.m() == matrix.n())' to the left and to the right of the '&&' operator.
```
We should address these warnings and errors from the static analysis tool PVS. In response to #3342. | priority | static analysis dealii git source lac sparsity pattern cc dealii git source lac sparsity pattern cc err there are identical sub expressions cols to the left and to the right of the operator dealii git source lac sparsity pattern cc err there are identical sub expressions matrix m matrix n to the left and to the right of the operator we should address these warnings and errors from the static analysis tool pvs in response to | 1 |
433,288 | 12,505,427,585 | IssuesEvent | 2020-06-02 10:42:35 | jonasmalacofilho/liquidctl | https://api.github.com/repos/jonasmalacofilho/liquidctl | closed | Remove the GNU license text from liquidctl --help | low priority | `liquidctl` is the only CLI program I've ever seen to print 30+ lines of license text in `--help`. It's very inconvenient, especially when it's printed at the end, as one has to scroll up to see the content they were looking in the first place. | 1.0 | Remove the GNU license text from liquidctl --help - `liquidctl` is the only CLI program I've ever seen to print 30+ lines of license text in `--help`. It's very inconvenient, especially when it's printed at the end, as one has to scroll up to see the content they were looking in the first place. | priority | remove the gnu license text from liquidctl help liquidctl is the only cli program i ve ever seen to print lines of license text in help it s very inconvenient especially when it s printed at the end as one has to scroll up to see the content they were looking in the first place | 1 |
74,553 | 15,354,625,181 | IssuesEvent | 2021-03-01 10:02:17 | elastic/kibana | https://api.github.com/repos/elastic/kibana | opened | [Security Solution] | Team: SecuritySolution bug | Description
Error message 'Failed to create the Lists Index' is displayed intermittently.
Build Details:
Version: 7.12.0-BC2
Commit: 4f65a5a1268fa78f1af9117d12312e1cee433376
Build number: 39000
Artifact: [https://staging.elastic.co/7.12.0-37f40745/summary-7.12.0.html]
Browser Details:
All
Preconditions:
1. Stage environment should exist.
2. An 'Endpoint' should be installed with Security Integration
Steps to Reproduce:
1. Navigate to the 'Detections' tab under the 'Security'
2. Observe that an error message 'Failed to create the Lists Index' is getting displayed intermittently.
Impacted Test case:
N/A
Actual Result:
Error message 'Failed to create the Lists Index' is displayed intermittently.
Expected Result:
Error message 'Failed to create the Lists Index' should not be displayed.
What's working:
This issue is occurring intermittently in Detections tab
What's not working:
N/A
Screenshot:


| True | [Security Solution] - Description
Error message 'Failed to create the Lists Index' is displayed intermittently.
Build Details:
Version: 7.12.0-BC2
Commit: 4f65a5a1268fa78f1af9117d12312e1cee433376
Build number: 39000
Artifact: [https://staging.elastic.co/7.12.0-37f40745/summary-7.12.0.html]
Browser Details:
All
Preconditions:
1. Stage environment should exist.
2. An 'Endpoint' should be installed with Security Integration
Steps to Reproduce:
1. Navigate to the 'Detections' tab under the 'Security'
2. Observe that an error message 'Failed to create the Lists Index' is getting displayed intermittently.
Impacted Test case:
N/A
Actual Result:
Error message 'Failed to create the Lists Index' is displayed intermittently.
Expected Result:
Error message 'Failed to create the Lists Index' should not be displayed.
What's working:
This issue is occurring intermittently in Detections tab
What's not working:
N/A
Screenshot:


| non_priority | description error message failed to create the lists index is displayed intermittently build details version commit build number artifact browser details all preconditions stage environment should exist an endpoint should be installed with security integration steps to reproduce navigate to the detections tab under the security observe that an error message failed to create the lists index is getting displayed intermittently impacted test case n a actual result error message failed to create the lists index is displayed intermittently expected result error message failed to create the lists index should not be displayed what s working this issue is occurring intermittently in detections tab what s not working n a screenshot | 0 |
9,938 | 7,042,420,076 | IssuesEvent | 2017-12-30 12:33:17 | davidhalter/jedi | https://api.github.com/repos/davidhalter/jedi | closed | Jedi hangs for a long time with DataFrame containing timestamps | performance | Hi! Neat tool, thanks for publishing it and maintaining it.
I'm using jedi `0.10.2`. Python `3.6`, and Jupyter Notebook `5` and ipython `6`.
**Quick summary**
* Completions take upwards of 30 seconds with a DataFrame with 1Mrow and 2 columns, if one of the columns is a timestamp.
* The runtime scales with the number of rows in the DataFrame.
* Waiting 30 seconds or more for completions is too long - during which time no other computation can take place.
* If you interrupt the kernel during jupyter doing the completion, the kernel dies - leading to dataloss and inconvenience (maybe this is a jupyter notebook or ipython bug?).
* It was tricky to figure out this was a jedi problem. It felt for a long time like a jupyter or ipython problem.
* Sending `KeyboardInterrupt` during a manual `Interpreter()` invocation reveals that jedi is running `df.values`, which takes many seconds to run for the aforementioned DataFrame (maybe this is a pandas bug?).
---
Since I've upgraded to the latest ipython and jupyter, I've experienced regular poor performance and hanging of the kernel at odd times during everyday use. I wasn't experiencing this before. I currently suspect jedi may be the culprit. What I observe is that I'll be typing something in, and maybe if I press tab, the kernel becomes unresponsive. I see 100% CPU usage. The hang lasts at least 30 seconds, perhaps longer. If I try to interrupt the kernel in order to get a backtrace, the ipython kernel dies.
I was able to reproduce the problem with the following - tab completing on a dataframe with 1Mrow, and 2 columns: 1 timestamp, and one plain integer:
```python
%%time
import pandas as pd
import numpy as np
from jedi import Interpreter
rows = 1000000
df = pd.DataFrame({
"foobar": np.random.randint(int(1e18), size=rows).astype("<M8[ns]"),
"baz": [1] * rows,
})
s = "df.hello"
print(Interpreter(s, [{'df': df}] , line=1, column=len(s)).completions())
```
This chunk of code runs for more than 15 seconds. The runtime increases if you increase the number of rows.
If I interrupt it, I get a stack trace:
---
<details>
<summary>Click here to expand stack trace</summary>
```
~/.local/lib/python3.6/site-packages/jedi/api/__init__.py in completions(self)
177 self._pos, self.call_signatures
178 )
--> 179 completions = completion.completions()
180 debug.speed('completions end')
181 return completions
~/.local/lib/python3.6/site-packages/jedi/api/completion.py in completions(self)
94
95 def completions(self):
---> 96 completion_names = self._get_context_completions()
97
98 completions = filter_names(self._evaluator, completion_names,
~/.local/lib/python3.6/site-packages/jedi/api/completion.py in _get_context_completions(self)
167 elif symbol_names[-1] in ('trailer', 'dotted_name') and nodes[-1] == '.':
168 dot = self._module_node.get_leaf_for_position(self._position)
--> 169 completion_names += self._trailer_completions(dot.get_previous_leaf())
170 else:
171 completion_names += self._global_completions()
~/.local/lib/python3.6/site-packages/jedi/api/completion.py in _trailer_completions(self, previous_leaf)
208 for filter in context.get_filters(
209 search_global=False, origin_scope=user_context.tree_node):
--> 210 completion_names += filter.values()
211 return completion_names
212
~/.local/lib/python3.6/site-packages/jedi/evaluate/compiled/__init__.py in values(self)
343 names = []
344 for name in dir(obj):
--> 345 names += self.get(name)
346
347 is_instance = self._is_instance or fake.is_class_instance(obj)
~/.local/lib/python3.6/site-packages/jedi/cache.py in wrapper(self, *args, **kwargs)
119 return dct[key]
120 except KeyError:
--> 121 result = method(self, *args, **kwargs)
122 dct[key] = result
123 return result
~/.local/lib/python3.6/site-packages/jedi/evaluate/compiled/__init__.py in get(self, name)
326 obj = self._compiled_object.obj
327 try:
--> 328 getattr(obj, name)
329 if self._is_instance and name not in dir(obj):
330 return []
~/.local/lib/python3.6/site-packages/pandas/core/frame.py in transpose(self, *args, **kwargs)
1757 """Transpose index and columns"""
1758 nv.validate_transpose(args, dict())
-> 1759 return super(DataFrame, self).transpose(1, 0, **kwargs)
1760
1761 T = property(transpose)
~/.local/lib/python3.6/site-packages/pandas/core/generic.py in transpose(self, *args, **kwargs)
511 new_axes = self._construct_axes_dict_from(self, [self._get_axis(x)
512 for x in axes_names])
--> 513 new_values = self.values.transpose(axes_numbers)
514 if kwargs.pop('copy', None) or (len(args) and args[-1]):
515 new_values = new_values.copy()
~/.local/lib/python3.6/site-packages/pandas/core/generic.py in values(self)
3270 will result in a flot64 dtype.
3271 """
-> 3272 return self.as_matrix()
3273
3274 @property
~/.local/lib/python3.6/site-packages/pandas/core/generic.py in as_matrix(self, columns)
3251 self._consolidate_inplace()
3252 if self._AXIS_REVERSED:
-> 3253 return self._data.as_matrix(columns).T
3254 return self._data.as_matrix(columns)
3255
~/.local/lib/python3.6/site-packages/pandas/core/internals.py in as_matrix(self, items)
3448 return mgr.blocks[0].get_values()
3449 else:
-> 3450 return mgr._interleave()
3451
3452 def _interleave(self):
~/.local/lib/python3.6/site-packages/pandas/core/internals.py in _interleave(self)
3475 for blk in self.blocks:
3476 rl = blk.mgr_locs
-> 3477 result[rl.indexer] = blk.get_values(dtype)
3478 itemmask[rl.indexer] = 1
3479
~/.local/lib/python3.6/site-packages/pandas/core/internals.py in get_values(self, dtype)
1695 if is_object_dtype(dtype):
1696 return lib.map_infer(self.values.ravel(),
-> 1697 self._box_func).reshape(self.values.shape)
1698 return self.values
1699
```
</details>
---
It appears from the above that jedi is coming to call `df.values`. Running this on my DataFrame takes 5-10 seconds, which is quite a slow thing to do during tab completion.
I've searched jupyter, ipython, ipykernel and jedi's issue trackers and didn't find anyone else having the problem, so I'm wondering if it is something peculiar to my DataFrame. I also wonder if the issue is quite hard to attribute to jedi, so maybe people are experiencing the issue and failing to know where to report it. I had difficulty making a reproducing case I could share, since it requires both a timestamp column and a non-timestamp column (likely the mixed types are what make `df.values` slow, I guess). | True | Jedi hangs for a long time with DataFrame containing timestamps - Hi! Neat tool, thanks for publishing it and maintaining it.
I'm using jedi `0.10.2`. Python `3.6`, and Jupyter Notebook `5` and ipython `6`.
**Quick summary**
* Completions take upwards of 30 seconds with a DataFrame with 1Mrow and 2 columns, if one of the columns is a timestamp.
* The runtime scales with the number of rows in the DataFrame.
* Waiting 30 seconds or more for completions is too long - during which time no other computation can take place.
* If you interrupt the kernel during jupyter doing the completion, the kernel dies - leading to dataloss and inconvenience (maybe this is a jupyter notebook or ipython bug?).
* It was tricky to figure out this was a jedi problem. It felt for a long time like a jupyter or ipython problem.
* Sending `KeyboardInterrupt` during a manual `Interpreter()` invocation reveals that jedi is running `df.values`, which takes many seconds to run for the aforementioned DataFrame (maybe this is a pandas bug?).
---
Since I've upgraded to the latest ipython and jupyter, I've experienced regular poor performance and hanging of the kernel at odd times during everyday use. I wasn't experiencing this before. I currently suspect jedi may be the culprit. What I observe is that I'll be typing something in, and maybe if I press tab, the kernel becomes unresponsive. I see 100% CPU usage. The hang lasts at least 30 seconds, perhaps longer. If I try to interrupt the kernel in order to get a backtrace, the ipython kernel dies.
I was able to reproduce the problem with the following - tab completing on a dataframe with 1Mrow, and 2 columns: 1 timestamp, and one plain integer:
```python
%%time
import pandas as pd
import numpy as np
from jedi import Interpreter
rows = 1000000
df = pd.DataFrame({
"foobar": np.random.randint(int(1e18), size=rows).astype("<M8[ns]"),
"baz": [1] * rows,
})
s = "df.hello"
print(Interpreter(s, [{'df': df}] , line=1, column=len(s)).completions())
```
This chunk of code runs for more than 15 seconds. The runtime increases if you increase the number of rows.
If I interrupt it, I get a stack trace:
---
<details>
<summary>Click here to expand stack trace</summary>
```
~/.local/lib/python3.6/site-packages/jedi/api/__init__.py in completions(self)
177 self._pos, self.call_signatures
178 )
--> 179 completions = completion.completions()
180 debug.speed('completions end')
181 return completions
~/.local/lib/python3.6/site-packages/jedi/api/completion.py in completions(self)
94
95 def completions(self):
---> 96 completion_names = self._get_context_completions()
97
98 completions = filter_names(self._evaluator, completion_names,
~/.local/lib/python3.6/site-packages/jedi/api/completion.py in _get_context_completions(self)
167 elif symbol_names[-1] in ('trailer', 'dotted_name') and nodes[-1] == '.':
168 dot = self._module_node.get_leaf_for_position(self._position)
--> 169 completion_names += self._trailer_completions(dot.get_previous_leaf())
170 else:
171 completion_names += self._global_completions()
~/.local/lib/python3.6/site-packages/jedi/api/completion.py in _trailer_completions(self, previous_leaf)
208 for filter in context.get_filters(
209 search_global=False, origin_scope=user_context.tree_node):
--> 210 completion_names += filter.values()
211 return completion_names
212
~/.local/lib/python3.6/site-packages/jedi/evaluate/compiled/__init__.py in values(self)
343 names = []
344 for name in dir(obj):
--> 345 names += self.get(name)
346
347 is_instance = self._is_instance or fake.is_class_instance(obj)
~/.local/lib/python3.6/site-packages/jedi/cache.py in wrapper(self, *args, **kwargs)
119 return dct[key]
120 except KeyError:
--> 121 result = method(self, *args, **kwargs)
122 dct[key] = result
123 return result
~/.local/lib/python3.6/site-packages/jedi/evaluate/compiled/__init__.py in get(self, name)
326 obj = self._compiled_object.obj
327 try:
--> 328 getattr(obj, name)
329 if self._is_instance and name not in dir(obj):
330 return []
~/.local/lib/python3.6/site-packages/pandas/core/frame.py in transpose(self, *args, **kwargs)
1757 """Transpose index and columns"""
1758 nv.validate_transpose(args, dict())
-> 1759 return super(DataFrame, self).transpose(1, 0, **kwargs)
1760
1761 T = property(transpose)
~/.local/lib/python3.6/site-packages/pandas/core/generic.py in transpose(self, *args, **kwargs)
511 new_axes = self._construct_axes_dict_from(self, [self._get_axis(x)
512 for x in axes_names])
--> 513 new_values = self.values.transpose(axes_numbers)
514 if kwargs.pop('copy', None) or (len(args) and args[-1]):
515 new_values = new_values.copy()
~/.local/lib/python3.6/site-packages/pandas/core/generic.py in values(self)
3270 will result in a flot64 dtype.
3271 """
-> 3272 return self.as_matrix()
3273
3274 @property
~/.local/lib/python3.6/site-packages/pandas/core/generic.py in as_matrix(self, columns)
3251 self._consolidate_inplace()
3252 if self._AXIS_REVERSED:
-> 3253 return self._data.as_matrix(columns).T
3254 return self._data.as_matrix(columns)
3255
~/.local/lib/python3.6/site-packages/pandas/core/internals.py in as_matrix(self, items)
3448 return mgr.blocks[0].get_values()
3449 else:
-> 3450 return mgr._interleave()
3451
3452 def _interleave(self):
~/.local/lib/python3.6/site-packages/pandas/core/internals.py in _interleave(self)
3475 for blk in self.blocks:
3476 rl = blk.mgr_locs
-> 3477 result[rl.indexer] = blk.get_values(dtype)
3478 itemmask[rl.indexer] = 1
3479
~/.local/lib/python3.6/site-packages/pandas/core/internals.py in get_values(self, dtype)
1695 if is_object_dtype(dtype):
1696 return lib.map_infer(self.values.ravel(),
-> 1697 self._box_func).reshape(self.values.shape)
1698 return self.values
1699
```
</details>
---
It appears from the above that jedi is coming to call `df.values`. Running this on my DataFrame takes 5-10 seconds, which is quite a slow thing to do during tab completion.
I've searched jupyter, ipython, ipykernel and jedi's issue trackers and didn't find anyone else having the problem, so I'm wondering if it is something peculiar to my DataFrame. I also wonder if the issue is quite hard to attribute to jedi, so maybe people are experiencing the issue and failing to know where to report it. I had difficulty making a reproducing case I could share, since it requires both a timestamp column and a non-timestamp column (likely the mixed types are what make `df.values` slow, I guess). | non_priority | jedi hangs for a long time with dataframe containing timestamps hi neat tool thanks for publishing it and maintaining it i m using jedi python and jupyter notebook and ipython quick summary completions take upwards of seconds with a dataframe with and columns if one of the columns is a timestamp the runtime scales with the number of rows in the dataframe waiting seconds or more for completions is too long during which time no other computation can take place if you interrupt the kernel during jupyter doing the completion the kernel dies leading to dataloss and inconvenience maybe this is a jupyter notebook or ipython bug it was tricky to figure out this was a jedi problem it felt for a long time like a jupyter or ipython problem sending keyboardinterrupt during a manual interpreter invocation reveals that jedi is running df values which takes many seconds to run for the aforementioned dataframe maybe this is a pandas bug since i ve upgraded to the latest ipython and jupyter i ve experienced regular poor performance and hanging of the kernel at odd times during everyday use i wasn t experiencing this before i currently suspect jedi may be the culprit what i observe is that i ll be typing something in and maybe if i press tab the kernel becomes unresponsive i see cpu usage the hang lasts at least seconds perhaps longer if i try to interrupt the kernel in order to get a backtrace the ipython kernel dies i was able to reproduce the problem with the following tab completing on a dataframe with and columns timestamp and one plain integer python time import pandas as pd import numpy as np from jedi import interpreter rows df pd dataframe foobar np random randint int size rows astype baz rows s df hello print interpreter s line column len s completions this chunk of code runs for more than seconds the runtime increases if you increase the number of rows if i interrupt it i get a stack trace click here to expand stack trace local lib site packages jedi api init py in completions self self pos self call signatures completions completion completions debug speed completions end return completions local lib site packages jedi api completion py in completions self def completions self completion names self get context completions completions filter names self evaluator completion names local lib site packages jedi api completion py in get context completions self elif symbol names in trailer dotted name and nodes dot self module node get leaf for position self position completion names self trailer completions dot get previous leaf else completion names self global completions local lib site packages jedi api completion py in trailer completions self previous leaf for filter in context get filters search global false origin scope user context tree node completion names filter values return completion names local lib site packages jedi evaluate compiled init py in values self names for name in dir obj names self get name is instance self is instance or fake is class instance obj local lib site packages jedi cache py in wrapper self args kwargs return dct except keyerror result method self args kwargs dct result return result local lib site packages jedi evaluate compiled init py in get self name obj self compiled object obj try getattr obj name if self is instance and name not in dir obj return local lib site packages pandas core frame py in transpose self args kwargs transpose index and columns nv validate transpose args dict return super dataframe self transpose kwargs t property transpose local lib site packages pandas core generic py in transpose self args kwargs new axes self construct axes dict from self self get axis x for x in axes names new values self values transpose axes numbers if kwargs pop copy none or len args and args new values new values copy local lib site packages pandas core generic py in values self will result in a dtype return self as matrix property local lib site packages pandas core generic py in as matrix self columns self consolidate inplace if self axis reversed return self data as matrix columns t return self data as matrix columns local lib site packages pandas core internals py in as matrix self items return mgr blocks get values else return mgr interleave def interleave self local lib site packages pandas core internals py in interleave self for blk in self blocks rl blk mgr locs result blk get values dtype itemmask local lib site packages pandas core internals py in get values self dtype if is object dtype dtype return lib map infer self values ravel self box func reshape self values shape return self values it appears from the above that jedi is coming to call df values running this on my dataframe takes seconds which is quite a slow thing to do during tab completion i ve searched jupyter ipython ipykernel and jedi s issue trackers and didn t find anyone else having the problem so i m wondering if it is something peculiar to my dataframe i also wonder if the issue is quite hard to attribute to jedi so maybe people are experiencing the issue and failing to know where to report it i had difficulty making a reproducing case i could share since it requires both a timestamp column and a non timestamp column likely the mixed types are what make df values slow i guess | 0 |
768,404 | 26,962,378,866 | IssuesEvent | 2023-02-08 19:15:20 | ascheid/itsg33-pbmm-issue-gen | https://api.github.com/repos/ascheid/itsg33-pbmm-issue-gen | closed | SC-23 SESSION AUTHENTICITY | Priority: P2 | SESSION AUTHENTICITY | UNIQUE SESSION IDENTIFIERS WITH RANDOMIZATION
The information system generates a unique session identifier for each session with [Assignment: organization-defined randomness requirements] and recognizes only session identifiers that are system-generated. | 1.0 | SC-23 SESSION AUTHENTICITY - SESSION AUTHENTICITY | UNIQUE SESSION IDENTIFIERS WITH RANDOMIZATION
The information system generates a unique session identifier for each session with [Assignment: organization-defined randomness requirements] and recognizes only session identifiers that are system-generated. | priority | sc session authenticity session authenticity unique session identifiers with randomization the information system generates a unique session identifier for each session with and recognizes only session identifiers that are system generated | 1 |
147,930 | 11,812,848,409 | IssuesEvent | 2020-03-19 21:01:05 | dotnet/roslyn | https://api.github.com/repos/dotnet/roslyn | opened | EditorFeatures2 is crashing and causing build flakiness | Area-IDE Flaky Test | Failing builds:
- https://dev.azure.com/dnceng/public/_build/results?buildId=565072&view=results
The xunit run is crashing and not triggering a procdump for unknown reasons. Running locally should hopefully reproduce the failure.
Command line used to run the tests:
> C:\Users\vsagent\.nuget\packages\xunit.runner.console\2.4.1-pre.build.4059\tools\net472\xunit.console.x86.exe "F:\workspace\_work\1\s\artifacts\bin\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests\Debug\net472\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests.dll" -class "ExpectedItem" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests+ProjectCodeFixProvider" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests+WorkspaceCodeFixProvider" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests+WorkspaceDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Compilation.UnitTests.CompilationTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticProviderTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockEndedAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockOrSyntaxNodeAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockStartedAnalyzer`1" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockStartedAndEndedAnalyzer`1" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CompilationAnalyzerWithAnalyzerOptions" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CompilationEndedAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+DummySymbolAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+FailingTextLoader" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+FieldDeclarationAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+MethodSymbolAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+MustOverrideMethodAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+NamedTypeAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+PartialTypeDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+ProjectDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+ProjectDiagnosticAnalyzer2" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+StatefulCompilationAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+ThrowsExceptionAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+WorkspaceDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.NamingStyleTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Classification.ClassificationTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Classification.ClassificationTests+NoCompilationEditorClassificationService" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AddImport.AddImportCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AdditionalFiles.AdditionalFileAnalyzer" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AdditionalFiles.AdditionalFileDiagnosticsTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AdditionalFiles.AdditionalFileFixer" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AddMissingReference.AddMissingReferenceTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateConstructor.GenerateConstructorCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateEvent.GenerateEventCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateMethod.GenerateMethodCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateVariable.GenerateVariableCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.ImplementInterface.ImplementInterfaceCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.UseAutoProperty.UseAutoPropertyTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.ExtensionMethodExpansionRewriteTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.LambdaParameterExpansionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.ModuleNameExpansionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.NameExpansionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests+FileNameAndSpans" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests+TestHost" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests+TestKind" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToBase.CSharpGoToBaseTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToBase.VisualBasicGoToBaseTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToDefinition.GoToDefinitionCancellationTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToDefinition.GoToDefinitionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToImplementation.GoToImplementationTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionRulesTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity+CompletionItemExclusive2CompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity+CompletionItemExclusiveCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity+CompletionItemNonExclusiveCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests+TestCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_InternalsVisibleTo" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_Projections" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_Regex" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_XmlDoc" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+BooleanTaskControlledCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+CompletedTaskControlledCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+IntelliCodeMockProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+IntelliCodeMockWeirdProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+MultipleChangeCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+SlowProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+TaskControlledCompletionProvider+ProviderCalledEventHandler" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpIntelliSenseCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpSignatureHelpCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.FormattingCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Inheritdoc" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Links" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Lists" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Styles" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.ModelTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.ModelTests+TestModelComputation" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.SessionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.SignatureHelpControllerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_InternalsVisibleTo" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_Projections" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_Regex" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_XmlDoc" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicSignatureHelpCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.InteractivePaste.InteractivePasteCommandhandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.KeywordHighlighting.CSharpKeywordHighlightingTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.KeywordHighlighting.VisualBasicKeywordHighlightingTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.LanguageServices.SyntaxFactsServiceTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigableSymbols.NavigableSymbolsTest" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigationBar.CSharpNavigationBarTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigationBar.NavigationBarControllerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigationBar.VisualBasicNavigationBarTests" -xml "F:\workspace\_work\1\s\artifacts\TestResults\Debug\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests.dll.1.xml" -noshadow -verbose
| 1.0 | EditorFeatures2 is crashing and causing build flakiness - Failing builds:
- https://dev.azure.com/dnceng/public/_build/results?buildId=565072&view=results
The xunit run is crashing and not triggering a procdump for unknown reasons. Running locally should hopefully reproduce the failure.
Command line used to run the tests:
> C:\Users\vsagent\.nuget\packages\xunit.runner.console\2.4.1-pre.build.4059\tools\net472\xunit.console.x86.exe "F:\workspace\_work\1\s\artifacts\bin\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests\Debug\net472\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests.dll" -class "ExpectedItem" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests+ProjectCodeFixProvider" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests+WorkspaceCodeFixProvider" -class "Microsoft.CodeAnalysis.Editor.Implementation.CodeFixes.UnitTests.CodeFixServiceTests+WorkspaceDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Compilation.UnitTests.CompilationTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticProviderTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockEndedAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockOrSyntaxNodeAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockStartedAnalyzer`1" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CodeBlockStartedAndEndedAnalyzer`1" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CompilationAnalyzerWithAnalyzerOptions" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+CompilationEndedAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+DummySymbolAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+FailingTextLoader" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+FieldDeclarationAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+MethodSymbolAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+MustOverrideMethodAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+NamedTypeAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+PartialTypeDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+ProjectDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+ProjectDiagnosticAnalyzer2" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+StatefulCompilationAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+ThrowsExceptionAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.DiagnosticServiceTests+WorkspaceDiagnosticAnalyzer" -class "Microsoft.CodeAnalysis.Editor.Implementation.Diagnostics.UnitTests.NamingStyleTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Classification.ClassificationTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Classification.ClassificationTests+NoCompilationEditorClassificationService" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AddImport.AddImportCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AdditionalFiles.AdditionalFileAnalyzer" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AdditionalFiles.AdditionalFileDiagnosticsTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AdditionalFiles.AdditionalFileFixer" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.AddMissingReference.AddMissingReferenceTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateConstructor.GenerateConstructorCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateEvent.GenerateEventCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateMethod.GenerateMethodCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.GenerateVariable.GenerateVariableCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.ImplementInterface.ImplementInterfaceCrossLanguageTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Diagnostics.UseAutoProperty.UseAutoPropertyTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.ExtensionMethodExpansionRewriteTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.LambdaParameterExpansionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.ModuleNameExpansionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.Expansion.NameExpansionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests+FileNameAndSpans" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests+TestHost" -class "Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences.FindReferencesTests+TestKind" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToBase.CSharpGoToBaseTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToBase.VisualBasicGoToBaseTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToDefinition.GoToDefinitionCancellationTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToDefinition.GoToDefinitionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.GoToImplementation.GoToImplementationTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionRulesTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity+CompletionItemExclusive2CompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity+CompletionItemExclusiveCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests_Exclusivity+CompletionItemNonExclusiveCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CompletionServiceTests+TestCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_InternalsVisibleTo" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_Projections" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_Regex" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests_XmlDoc" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+BooleanTaskControlledCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+CompletedTaskControlledCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+IntelliCodeMockProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+IntelliCodeMockWeirdProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+MultipleChangeCompletionProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+SlowProvider" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpCompletionCommandHandlerTests+TaskControlledCompletionProvider+ProviderCalledEventHandler" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpIntelliSenseCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.CSharpSignatureHelpCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.FormattingCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Inheritdoc" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Links" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Lists" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.IntellisenseQuickInfoBuilderTests_Styles" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.ModelTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.ModelTests+TestModelComputation" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.SessionTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.SignatureHelpControllerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_InternalsVisibleTo" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_Projections" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_Regex" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicCompletionCommandHandlerTests_XmlDoc" -class "Microsoft.CodeAnalysis.Editor.UnitTests.IntelliSense.VisualBasicSignatureHelpCommandHandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.InteractivePaste.InteractivePasteCommandhandlerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.KeywordHighlighting.CSharpKeywordHighlightingTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.KeywordHighlighting.VisualBasicKeywordHighlightingTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.LanguageServices.SyntaxFactsServiceTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigableSymbols.NavigableSymbolsTest" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigationBar.CSharpNavigationBarTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigationBar.NavigationBarControllerTests" -class "Microsoft.CodeAnalysis.Editor.UnitTests.NavigationBar.VisualBasicNavigationBarTests" -xml "F:\workspace\_work\1\s\artifacts\TestResults\Debug\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests.dll.1.xml" -noshadow -verbose
| non_priority | is crashing and causing build flakiness failing builds the xunit run is crashing and not triggering a procdump for unknown reasons running locally should hopefully reproduce the failure command line used to run the tests c users vsagent nuget packages xunit runner console pre build tools xunit console exe f workspace work s artifacts bin microsoft codeanalysis unittests debug microsoft codeanalysis unittests dll class expecteditem class microsoft codeanalysis editor implementation codefixes unittests codefixservicetests class microsoft codeanalysis editor implementation codefixes unittests codefixservicetests projectcodefixprovider class microsoft codeanalysis editor implementation codefixes unittests codefixservicetests workspacecodefixprovider class microsoft codeanalysis editor implementation codefixes unittests codefixservicetests workspacediagnosticanalyzer class microsoft codeanalysis editor implementation compilation unittests compilationtests class microsoft codeanalysis editor implementation diagnostics unittests diagnosticprovidertests class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests codeblockendedanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests codeblockorsyntaxnodeanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests codeblockstartedanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests codeblockstartedandendedanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests compilationanalyzerwithanalyzeroptions class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests compilationendedanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests dummysymbolanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests failingtextloader class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests fielddeclarationanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests methodsymbolanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests mustoverridemethodanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests namedtypeanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests partialtypediagnosticanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests projectdiagnosticanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests statefulcompilationanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests throwsexceptionanalyzer class microsoft codeanalysis editor implementation diagnostics unittests diagnosticservicetests workspacediagnosticanalyzer class microsoft codeanalysis editor implementation diagnostics unittests namingstyletests class microsoft codeanalysis editor unittests classification classificationtests class microsoft codeanalysis editor unittests classification classificationtests nocompilationeditorclassificationservice class microsoft codeanalysis editor unittests diagnostics addimport addimportcrosslanguagetests class microsoft codeanalysis editor unittests diagnostics additionalfiles additionalfileanalyzer class microsoft codeanalysis editor unittests diagnostics additionalfiles additionalfilediagnosticstests class microsoft codeanalysis editor unittests diagnostics additionalfiles additionalfilefixer class microsoft codeanalysis editor unittests diagnostics addmissingreference addmissingreferencetests class microsoft codeanalysis editor unittests diagnostics generateconstructor generateconstructorcrosslanguagetests class microsoft codeanalysis editor unittests diagnostics generateevent generateeventcrosslanguagetests class microsoft codeanalysis editor unittests diagnostics generatemethod generatemethodcrosslanguagetests class microsoft codeanalysis editor unittests diagnostics generatevariable generatevariablecrosslanguagetests class microsoft codeanalysis editor unittests diagnostics implementinterface implementinterfacecrosslanguagetests class microsoft codeanalysis editor unittests diagnostics useautoproperty useautopropertytests class microsoft codeanalysis editor unittests expansion extensionmethodexpansionrewritetests class microsoft codeanalysis editor unittests expansion lambdaparameterexpansiontests class microsoft codeanalysis editor unittests expansion modulenameexpansiontests class microsoft codeanalysis editor unittests expansion nameexpansiontests class microsoft codeanalysis editor unittests findreferences findreferencescommandhandlertests class microsoft codeanalysis editor unittests findreferences findreferencestests class microsoft codeanalysis editor unittests findreferences findreferencestests filenameandspans class microsoft codeanalysis editor unittests findreferences findreferencestests testhost class microsoft codeanalysis editor unittests findreferences findreferencestests testkind class microsoft codeanalysis editor unittests gotobase csharpgotobasetests class microsoft codeanalysis editor unittests gotobase visualbasicgotobasetests class microsoft codeanalysis editor unittests gotodefinition gotodefinitioncancellationtests class microsoft codeanalysis editor unittests gotodefinition gotodefinitiontests class microsoft codeanalysis editor unittests gotoimplementation gotoimplementationtests class microsoft codeanalysis editor unittests intellisense completionrulestests class microsoft codeanalysis editor unittests intellisense completionservicetests class microsoft codeanalysis editor unittests intellisense completionservicetests exclusivity class microsoft codeanalysis editor unittests intellisense completionservicetests exclusivity class microsoft codeanalysis editor unittests intellisense completionservicetests exclusivity completionitemexclusivecompletionprovider class microsoft codeanalysis editor unittests intellisense completionservicetests exclusivity completionitemnonexclusivecompletionprovider class microsoft codeanalysis editor unittests intellisense completionservicetests testcompletionprovider class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests internalsvisibleto class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests projections class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests regex class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests xmldoc class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests booleantaskcontrolledcompletionprovider class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests completedtaskcontrolledcompletionprovider class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests intellicodemockprovider class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests intellicodemockweirdprovider class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests multiplechangecompletionprovider class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests slowprovider class microsoft codeanalysis editor unittests intellisense csharpcompletioncommandhandlertests taskcontrolledcompletionprovider providercalledeventhandler class microsoft codeanalysis editor unittests intellisense csharpintellisensecommandhandlertests class microsoft codeanalysis editor unittests intellisense csharpsignaturehelpcommandhandlertests class microsoft codeanalysis editor unittests intellisense formattingcommandhandlertests class microsoft codeanalysis editor unittests intellisense intellisensequickinfobuildertests class microsoft codeanalysis editor unittests intellisense intellisensequickinfobuildertests inheritdoc class microsoft codeanalysis editor unittests intellisense intellisensequickinfobuildertests links class microsoft codeanalysis editor unittests intellisense intellisensequickinfobuildertests lists class microsoft codeanalysis editor unittests intellisense intellisensequickinfobuildertests styles class microsoft codeanalysis editor unittests intellisense modeltests class microsoft codeanalysis editor unittests intellisense modeltests testmodelcomputation class microsoft codeanalysis editor unittests intellisense sessiontests class microsoft codeanalysis editor unittests intellisense signaturehelpcontrollertests class microsoft codeanalysis editor unittests intellisense visualbasiccompletioncommandhandlertests class microsoft codeanalysis editor unittests intellisense visualbasiccompletioncommandhandlertests internalsvisibleto class microsoft codeanalysis editor unittests intellisense visualbasiccompletioncommandhandlertests projections class microsoft codeanalysis editor unittests intellisense visualbasiccompletioncommandhandlertests regex class microsoft codeanalysis editor unittests intellisense visualbasiccompletioncommandhandlertests xmldoc class microsoft codeanalysis editor unittests intellisense visualbasicsignaturehelpcommandhandlertests class microsoft codeanalysis editor unittests interactivepaste interactivepastecommandhandlertests class microsoft codeanalysis editor unittests keywordhighlighting csharpkeywordhighlightingtests class microsoft codeanalysis editor unittests keywordhighlighting visualbasickeywordhighlightingtests class microsoft codeanalysis editor unittests languageservices syntaxfactsservicetests class microsoft codeanalysis editor unittests navigablesymbols navigablesymbolstest class microsoft codeanalysis editor unittests navigationbar csharpnavigationbartests class microsoft codeanalysis editor unittests navigationbar navigationbarcontrollertests class microsoft codeanalysis editor unittests navigationbar visualbasicnavigationbartests xml f workspace work s artifacts testresults debug microsoft codeanalysis unittests dll xml noshadow verbose | 0 |
24,794 | 4,104,037,710 | IssuesEvent | 2016-06-05 03:38:40 | zealdocs/zeal | https://api.github.com/repos/zealdocs/zeal | closed | Zeal can be launched twice | Component: Core Resolution: Fixed Type: Defect | Original report: blakeembrey/atom-dash#33.
Test case:
```bash
(zeal 1 &) && (zeal 2 &)
```
| 1.0 | Zeal can be launched twice - Original report: blakeembrey/atom-dash#33.
Test case:
```bash
(zeal 1 &) && (zeal 2 &)
```
| non_priority | zeal can be launched twice original report blakeembrey atom dash test case bash zeal zeal | 0 |
760,310 | 26,636,639,584 | IssuesEvent | 2023-01-24 22:39:21 | grpc/grpc | https://api.github.com/repos/grpc/grpc | closed | gRPC plugin crashes (or fails) if the service comments contain a single `$` | kind/bug lang/c++ priority/P2 untriaged | ### What version of gRPC and what language are you using?
gRPC 1.51.1, C++.
### What operating system (Linux, Windows,...) and version?
Linux, Alpine Stable
### What runtime / compiler are you using (e.g. python version or version of gcc)
GCC 11
### What did you do?
Run the gRPC plugin over this file:
https://github.com/googleapis/googleapis/blob/master/google/cloud/certificatemanager/v1/certificate_manager.proto
At the time the file contains this comment:
https://github.com/googleapis/googleapis/blob/9fac84a6942bd3e95fca1ffe87018adbf560c514/google/cloud/certificatemanager/v1/certificate_manager.proto#L57
### What did you expect to see?
A successful run.
### What did you see instead?
The plugin crashes with:
```
[ 97%] Running gRPC C++ protocol buffer compiler on /workspace/cmake-out/external/googleapis/src/googleapis_download/google/cloud/certificatemanager/v1/certificate_manager.proto
[libprotobuf FATAL google/protobuf/io/printer.cc:142] Unclosed variable name.
terminate called after throwing an instance of 'google::protobuf::FatalException'
what(): Unclosed variable name.
--grpc_out: protoc-gen-grpc: Plugin killed by signal 6.
```
The problem seems to be in the code generator, it passes the leading comments of the service directly to the Protobuf printer:
https://github.com/grpc/grpc/blob/8cf04e9a5405c3f6923276eb01ca0122f4223533/src/compiler/cpp_generator.cc#L1334
The current Protobuf release treats single `$` as a fatal error:
https://github.com/protocolbuffers/protobuf/blob/9b3231002dcfb713e619d841fc9bfa5156c211fc/src/google/protobuf/io/printer.cc#L142-L147
### Anything else we should know about your project / environment?
| 1.0 | gRPC plugin crashes (or fails) if the service comments contain a single `$` - ### What version of gRPC and what language are you using?
gRPC 1.51.1, C++.
### What operating system (Linux, Windows,...) and version?
Linux, Alpine Stable
### What runtime / compiler are you using (e.g. python version or version of gcc)
GCC 11
### What did you do?
Run the gRPC plugin over this file:
https://github.com/googleapis/googleapis/blob/master/google/cloud/certificatemanager/v1/certificate_manager.proto
At the time the file contains this comment:
https://github.com/googleapis/googleapis/blob/9fac84a6942bd3e95fca1ffe87018adbf560c514/google/cloud/certificatemanager/v1/certificate_manager.proto#L57
### What did you expect to see?
A successful run.
### What did you see instead?
The plugin crashes with:
```
[ 97%] Running gRPC C++ protocol buffer compiler on /workspace/cmake-out/external/googleapis/src/googleapis_download/google/cloud/certificatemanager/v1/certificate_manager.proto
[libprotobuf FATAL google/protobuf/io/printer.cc:142] Unclosed variable name.
terminate called after throwing an instance of 'google::protobuf::FatalException'
what(): Unclosed variable name.
--grpc_out: protoc-gen-grpc: Plugin killed by signal 6.
```
The problem seems to be in the code generator, it passes the leading comments of the service directly to the Protobuf printer:
https://github.com/grpc/grpc/blob/8cf04e9a5405c3f6923276eb01ca0122f4223533/src/compiler/cpp_generator.cc#L1334
The current Protobuf release treats single `$` as a fatal error:
https://github.com/protocolbuffers/protobuf/blob/9b3231002dcfb713e619d841fc9bfa5156c211fc/src/google/protobuf/io/printer.cc#L142-L147
### Anything else we should know about your project / environment?
| priority | grpc plugin crashes or fails if the service comments contain a single what version of grpc and what language are you using grpc c what operating system linux windows and version linux alpine stable what runtime compiler are you using e g python version or version of gcc gcc what did you do run the grpc plugin over this file at the time the file contains this comment what did you expect to see a successful run what did you see instead the plugin crashes with running grpc c protocol buffer compiler on workspace cmake out external googleapis src googleapis download google cloud certificatemanager certificate manager proto unclosed variable name terminate called after throwing an instance of google protobuf fatalexception what unclosed variable name grpc out protoc gen grpc plugin killed by signal the problem seems to be in the code generator it passes the leading comments of the service directly to the protobuf printer the current protobuf release treats single as a fatal error anything else we should know about your project environment | 1 |
423,981 | 12,304,581,547 | IssuesEvent | 2020-05-11 20:44:33 | wso2/identity-apps | https://api.github.com/repos/wso2/identity-apps | opened | Add external dialect wizard not getting reset once completed | Developer-Portal Priority/High Severity/Major Type/Bug | **How To Reproduce:**
1. Add an external dialect using the add dialect wizard.
2. Click on the add external dialect button to launch the wizard again.
The summary step from the previous state would be displayed. | 1.0 | Add external dialect wizard not getting reset once completed - **How To Reproduce:**
1. Add an external dialect using the add dialect wizard.
2. Click on the add external dialect button to launch the wizard again.
The summary step from the previous state would be displayed. | priority | add external dialect wizard not getting reset once completed how to reproduce add an external dialect using the add dialect wizard click on the add external dialect button to launch the wizard again the summary step from the previous state would be displayed | 1 |
581,094 | 17,273,228,168 | IssuesEvent | 2021-07-22 23:42:02 | OctopusDeploy/Issues | https://api.github.com/repos/OctopusDeploy/Issues | closed | Indications of performance regressions in Release 2021.1 | area/core feature/performance kind/bug priority/p1 | We're receiving internal and external reports of performance regressing in Release 2021.1 when compared to Release 2020.6.
This problem is currently under investigation. As specific issues are identified, they will be added/linked to this main issue.
Our Enterprise-level customers are impacted, and we are not seeing evidence of impacts to other customers at this stage.
Affected versions - these issues were found in earlier builds of 2021.1.
We recommend upgrading to build 2021.1.7500+ for substantial performance fixes, or build 2021.1.7595+ for all performance fixes listed below.
See linked issues for more details if required.
## Links
- https://github.com/OctopusDeploy/Issues/issues/6898
- https://github.com/OctopusDeploy/Issues/issues/6928
- https://github.com/OctopusDeploy/Issues/issues/6929
- https://github.com/OctopusDeploy/Issues/issues/6931
- https://github.com/OctopusDeploy/Issues/issues/6935
- https://github.com/OctopusDeploy/Issues/issues/6936
- https://github.com/OctopusDeploy/Issues/issues/6948
- https://github.com/OctopusDeploy/Issues/issues/6953 | 1.0 | Indications of performance regressions in Release 2021.1 - We're receiving internal and external reports of performance regressing in Release 2021.1 when compared to Release 2020.6.
This problem is currently under investigation. As specific issues are identified, they will be added/linked to this main issue.
Our Enterprise-level customers are impacted, and we are not seeing evidence of impacts to other customers at this stage.
Affected versions - these issues were found in earlier builds of 2021.1.
We recommend upgrading to build 2021.1.7500+ for substantial performance fixes, or build 2021.1.7595+ for all performance fixes listed below.
See linked issues for more details if required.
## Links
- https://github.com/OctopusDeploy/Issues/issues/6898
- https://github.com/OctopusDeploy/Issues/issues/6928
- https://github.com/OctopusDeploy/Issues/issues/6929
- https://github.com/OctopusDeploy/Issues/issues/6931
- https://github.com/OctopusDeploy/Issues/issues/6935
- https://github.com/OctopusDeploy/Issues/issues/6936
- https://github.com/OctopusDeploy/Issues/issues/6948
- https://github.com/OctopusDeploy/Issues/issues/6953 | priority | indications of performance regressions in release we re receiving internal and external reports of performance regressing in release when compared to release this problem is currently under investigation as specific issues are identified they will be added linked to this main issue our enterprise level customers are impacted and we are not seeing evidence of impacts to other customers at this stage affected versions these issues were found in earlier builds of we recommend upgrading to build for substantial performance fixes or build for all performance fixes listed below see linked issues for more details if required links | 1 |
270,829 | 29,116,072,902 | IssuesEvent | 2023-05-17 01:09:44 | pazhanivel07/frameworks_base_Aosp10_r33 | https://api.github.com/repos/pazhanivel07/frameworks_base_Aosp10_r33 | reopened | CVE-2020-0020 (Medium) detected in baseandroid-10.0.0_r46 | Mend: dependency security vulnerability | ## CVE-2020-0020 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>baseandroid-10.0.0_r46</b></p></summary>
<p>
<p>Android framework classes and services</p>
<p>Library home page: <a href=https://android.googlesource.com/platform/frameworks/base>https://android.googlesource.com/platform/frameworks/base</a></p>
<p>Found in HEAD commit: <a href="https://github.com/pazhanivel07/frameworks_base_Aosp10_r33/commit/20c111772c04525c865b7dc0b39fcfca73505927">20c111772c04525c865b7dc0b39fcfca73505927</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/media/java/android/media/ExifInterface.java</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>
In getAttributeRange of ExifInterface.java, there is a possible failure to redact location information from media files due to an incorrect bounds check. This could lead to local information disclosure with User execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-143118731
<p>Publish Date: 2020-02-13
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0020>CVE-2020-0020</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<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://source.android.com/security/bulletin/2020-02-01">https://source.android.com/security/bulletin/2020-02-01</a></p>
<p>Release Date: 2020-02-08</p>
<p>Fix Resolution: android-9.0.0_r53,android-8.0.0_r43,android-8.1.0_r73,android-10.0.0_r26</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-2020-0020 (Medium) detected in baseandroid-10.0.0_r46 - ## CVE-2020-0020 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>baseandroid-10.0.0_r46</b></p></summary>
<p>
<p>Android framework classes and services</p>
<p>Library home page: <a href=https://android.googlesource.com/platform/frameworks/base>https://android.googlesource.com/platform/frameworks/base</a></p>
<p>Found in HEAD commit: <a href="https://github.com/pazhanivel07/frameworks_base_Aosp10_r33/commit/20c111772c04525c865b7dc0b39fcfca73505927">20c111772c04525c865b7dc0b39fcfca73505927</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/media/java/android/media/ExifInterface.java</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>
In getAttributeRange of ExifInterface.java, there is a possible failure to redact location information from media files due to an incorrect bounds check. This could lead to local information disclosure with User execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-143118731
<p>Publish Date: 2020-02-13
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0020>CVE-2020-0020</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<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://source.android.com/security/bulletin/2020-02-01">https://source.android.com/security/bulletin/2020-02-01</a></p>
<p>Release Date: 2020-02-08</p>
<p>Fix Resolution: android-9.0.0_r53,android-8.0.0_r43,android-8.1.0_r73,android-10.0.0_r26</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 baseandroid cve medium severity vulnerability vulnerable library baseandroid android framework classes and services library home page a href found in head commit a href found in base branch master vulnerable source files media java android media exifinterface java vulnerability details in getattributerange of exifinterface java there is a possible failure to redact location information from media files due to an incorrect bounds check this could lead to local information disclosure with user execution privileges needed user interaction is not needed for exploitation product androidversions android id a publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution android android android android step up your open source security game with mend | 0 |
712,985 | 24,513,889,636 | IssuesEvent | 2022-10-11 01:54:58 | apache/incubator-kyuubi | https://api.github.com/repos/apache/incubator-kyuubi | closed | [Bug] [authZ]can't update iceberg table | kind:bug priority:major | ### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
### Search before asking
- [X] I have searched in the [issues](https://github.com/apache/incubator-kyuubi/issues?q=is%3Aissue) and found no similar issues.
### Describe the bug
env: spark:3.2.1 \ authz:master
1、complie authz from master branch
clean package -pl :kyuubi-spark-authz_2.12 -DskipTests -Dspark.version=3.2.1 -Dranger.version=1.2.0
2、put kyuubi-spark-authz_2.12-1.7.0-SNAPSHOT.jar to $SPARK_HOME/jars
3、config spark
spark.sql.extensions org.apache.kyuubi.plugin.spark.authz.ranger.RangerSparkExtension,org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions,org.apache.kyuubi.sql.KyuubiSparkSQLExtension
spark.sql.catalog.iceberg_catalog org.apache.iceberg.spark.SparkCatalog
spark.sql.catalog.iceberg_catalog.type hive
spark.sql.catalog.spark_catalog org.apache.iceberg.spark.SparkSessionCatalog
spark.sql.catalog.spark_catalog.type hive
4、use spark-shell
5、spark.sql("create table test.iceberg919(id bigint, name string) USING iceberg")
6、spark.sql("INSERT INTO test.iceberg919 VALUES (1, 'a'), (2, 'b'), (3, 'c')")
7、spark.sql("select * from test.iceberg919").show
```
+---+----+
| id|name|
+---+----+
| 1| a|
| 2| b|
| 3| c|
+---+----+
```
8、
```
spark.sql("update test.iceberg919 set name='aa' where id=1")
spark.sql("update iceberg_catalog.test.iceberg919 set name='aa' where id=1")
spark.sql("update spark_catalog.test.iceberg919 set name='aa' where id=1")
```
**all got error with : `is not an Iceberg table`**
### Affects Version(s)
master
### Kyuubi Server Log Output
```logtalk
spark.sql("update test.iceberg919 set name='aa' where id=1")
org.apache.spark.sql.AnalysisException: Project [id#25L, name#26]
+- RowFilterAndDataMaskingMarker
+- RelationV2[id#25L, name#26] spark_catalog.test.iceberg919
is not an Iceberg table
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$$anonfun$apply$1.applyOrElse(RewriteUpdateTable.scala:71)
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$$anonfun$apply$1.applyOrElse(RewriteUpdateTable.scala:53)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.$anonfun$resolveOperatorsDownWithPruning$2(AnalysisHelper.scala:170)
at org.apache.spark.sql.catalyst.trees.CurrentOrigin$.withOrigin(TreeNode.scala:82)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.$anonfun$resolveOperatorsDownWithPruning$1(AnalysisHelper.scala:170)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper$.allowInvokingTransformsInAnalyzer(AnalysisHelper.scala:323)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsDownWithPruning(AnalysisHelper.scala:168)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsDownWithPruning$(AnalysisHelper.scala:164)
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperatorsDownWithPruning(LogicalPlan.scala:30)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsWithPruning(AnalysisHelper.scala:99)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsWithPruning$(AnalysisHelper.scala:96)
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperatorsWithPruning(LogicalPlan.scala:30)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperators(AnalysisHelper.scala:76)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperators$(AnalysisHelper.scala:75)
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperators(LogicalPlan.scala:30)
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$.apply(RewriteUpdateTable.scala:53)
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$.apply(RewriteUpdateTable.scala:51)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$execute$2(RuleExecutor.scala:211)
at scala.collection.LinearSeqOptimized.foldLeft(LinearSeqOptimized.scala:126)
at scala.collection.LinearSeqOptimized.foldLeft$(LinearSeqOptimized.scala:122)
at scala.collection.immutable.List.foldLeft(List.scala:91)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$execute$1(RuleExecutor.scala:208)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$execute$1$adapted(RuleExecutor.scala:200)
at scala.collection.immutable.List.foreach(List.scala:431)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.execute(RuleExecutor.scala:200)
at org.apache.spark.sql.catalyst.analysis.Analyzer.org$apache$spark$sql$catalyst$analysis$Analyzer$$executeSameContext(Analyzer.scala:222)
at org.apache.spark.sql.catalyst.analysis.Analyzer.$anonfun$execute$1(Analyzer.scala:218)
at org.apache.spark.sql.catalyst.analysis.AnalysisContext$.withNewAnalysisContext(Analyzer.scala:167)
at org.apache.spark.sql.catalyst.analysis.Analyzer.execute(Analyzer.scala:218)
at org.apache.spark.sql.catalyst.analysis.Analyzer.execute(Analyzer.scala:182)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$executeAndTrack$1(RuleExecutor.scala:179)
at org.apache.spark.sql.catalyst.QueryPlanningTracker$.withTracker(QueryPlanningTracker.scala:88)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.executeAndTrack(RuleExecutor.scala:179)
at org.apache.spark.sql.catalyst.analysis.Analyzer.$anonfun$executeAndCheck$1(Analyzer.scala:203)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper$.markInAnalyzer(AnalysisHelper.scala:330)
at org.apache.spark.sql.catalyst.analysis.Analyzer.executeAndCheck(Analyzer.scala:202)
at org.apache.spark.sql.execution.QueryExecution.$anonfun$analyzed$1(QueryExecution.scala:88)
at org.apache.spark.sql.catalyst.QueryPlanningTracker.measurePhase(QueryPlanningTracker.scala:111)
at org.apache.spark.sql.execution.QueryExecution.$anonfun$executePhase$1(QueryExecution.scala:196)
at org.apache.spark.sql.SparkSession.withActive(SparkSession.scala:775)
at org.apache.spark.sql.execution.QueryExecution.executePhase(QueryExecution.scala:196)
at org.apache.spark.sql.execution.QueryExecution.analyzed$lzycompute(QueryExecution.scala:88)
at org.apache.spark.sql.execution.QueryExecution.analyzed(QueryExecution.scala:86)
at org.apache.spark.sql.execution.QueryExecution.assertAnalyzed(QueryExecution.scala:78)
at org.apache.spark.sql.Dataset$.$anonfun$ofRows$2(Dataset.scala:98)
at org.apache.spark.sql.SparkSession.withActive(SparkSession.scala:775)
at org.apache.spark.sql.Dataset$.ofRows(Dataset.scala:96)
at org.apache.spark.sql.SparkSession.$anonfun$sql$1(SparkSession.scala:618)
at org.apache.spark.sql.SparkSession.withActive(SparkSession.scala:775)
at org.apache.spark.sql.SparkSession.sql(SparkSession.scala:613)
... 47 elided
```
### Kyuubi Engine Log Output
_No response_
### Kyuubi Server Configurations
_No response_
### Kyuubi Engine Configurations
_No response_
### Additional context
_No response_
### Are you willing to submit PR?
- [ ] Yes. I can submit a PR independently to fix.
- [ ] Yes. I would be willing to submit a PR with guidance from the Kyuubi community to fix.
- [ ] No. I cannot submit a PR at this time. | 1.0 | [Bug] [authZ]can't update iceberg table - ### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
### Search before asking
- [X] I have searched in the [issues](https://github.com/apache/incubator-kyuubi/issues?q=is%3Aissue) and found no similar issues.
### Describe the bug
env: spark:3.2.1 \ authz:master
1、complie authz from master branch
clean package -pl :kyuubi-spark-authz_2.12 -DskipTests -Dspark.version=3.2.1 -Dranger.version=1.2.0
2、put kyuubi-spark-authz_2.12-1.7.0-SNAPSHOT.jar to $SPARK_HOME/jars
3、config spark
spark.sql.extensions org.apache.kyuubi.plugin.spark.authz.ranger.RangerSparkExtension,org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions,org.apache.kyuubi.sql.KyuubiSparkSQLExtension
spark.sql.catalog.iceberg_catalog org.apache.iceberg.spark.SparkCatalog
spark.sql.catalog.iceberg_catalog.type hive
spark.sql.catalog.spark_catalog org.apache.iceberg.spark.SparkSessionCatalog
spark.sql.catalog.spark_catalog.type hive
4、use spark-shell
5、spark.sql("create table test.iceberg919(id bigint, name string) USING iceberg")
6、spark.sql("INSERT INTO test.iceberg919 VALUES (1, 'a'), (2, 'b'), (3, 'c')")
7、spark.sql("select * from test.iceberg919").show
```
+---+----+
| id|name|
+---+----+
| 1| a|
| 2| b|
| 3| c|
+---+----+
```
8、
```
spark.sql("update test.iceberg919 set name='aa' where id=1")
spark.sql("update iceberg_catalog.test.iceberg919 set name='aa' where id=1")
spark.sql("update spark_catalog.test.iceberg919 set name='aa' where id=1")
```
**all got error with : `is not an Iceberg table`**
### Affects Version(s)
master
### Kyuubi Server Log Output
```logtalk
spark.sql("update test.iceberg919 set name='aa' where id=1")
org.apache.spark.sql.AnalysisException: Project [id#25L, name#26]
+- RowFilterAndDataMaskingMarker
+- RelationV2[id#25L, name#26] spark_catalog.test.iceberg919
is not an Iceberg table
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$$anonfun$apply$1.applyOrElse(RewriteUpdateTable.scala:71)
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$$anonfun$apply$1.applyOrElse(RewriteUpdateTable.scala:53)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.$anonfun$resolveOperatorsDownWithPruning$2(AnalysisHelper.scala:170)
at org.apache.spark.sql.catalyst.trees.CurrentOrigin$.withOrigin(TreeNode.scala:82)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.$anonfun$resolveOperatorsDownWithPruning$1(AnalysisHelper.scala:170)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper$.allowInvokingTransformsInAnalyzer(AnalysisHelper.scala:323)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsDownWithPruning(AnalysisHelper.scala:168)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsDownWithPruning$(AnalysisHelper.scala:164)
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperatorsDownWithPruning(LogicalPlan.scala:30)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsWithPruning(AnalysisHelper.scala:99)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperatorsWithPruning$(AnalysisHelper.scala:96)
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperatorsWithPruning(LogicalPlan.scala:30)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperators(AnalysisHelper.scala:76)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper.resolveOperators$(AnalysisHelper.scala:75)
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperators(LogicalPlan.scala:30)
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$.apply(RewriteUpdateTable.scala:53)
at org.apache.spark.sql.catalyst.analysis.RewriteUpdateTable$.apply(RewriteUpdateTable.scala:51)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$execute$2(RuleExecutor.scala:211)
at scala.collection.LinearSeqOptimized.foldLeft(LinearSeqOptimized.scala:126)
at scala.collection.LinearSeqOptimized.foldLeft$(LinearSeqOptimized.scala:122)
at scala.collection.immutable.List.foldLeft(List.scala:91)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$execute$1(RuleExecutor.scala:208)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$execute$1$adapted(RuleExecutor.scala:200)
at scala.collection.immutable.List.foreach(List.scala:431)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.execute(RuleExecutor.scala:200)
at org.apache.spark.sql.catalyst.analysis.Analyzer.org$apache$spark$sql$catalyst$analysis$Analyzer$$executeSameContext(Analyzer.scala:222)
at org.apache.spark.sql.catalyst.analysis.Analyzer.$anonfun$execute$1(Analyzer.scala:218)
at org.apache.spark.sql.catalyst.analysis.AnalysisContext$.withNewAnalysisContext(Analyzer.scala:167)
at org.apache.spark.sql.catalyst.analysis.Analyzer.execute(Analyzer.scala:218)
at org.apache.spark.sql.catalyst.analysis.Analyzer.execute(Analyzer.scala:182)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.$anonfun$executeAndTrack$1(RuleExecutor.scala:179)
at org.apache.spark.sql.catalyst.QueryPlanningTracker$.withTracker(QueryPlanningTracker.scala:88)
at org.apache.spark.sql.catalyst.rules.RuleExecutor.executeAndTrack(RuleExecutor.scala:179)
at org.apache.spark.sql.catalyst.analysis.Analyzer.$anonfun$executeAndCheck$1(Analyzer.scala:203)
at org.apache.spark.sql.catalyst.plans.logical.AnalysisHelper$.markInAnalyzer(AnalysisHelper.scala:330)
at org.apache.spark.sql.catalyst.analysis.Analyzer.executeAndCheck(Analyzer.scala:202)
at org.apache.spark.sql.execution.QueryExecution.$anonfun$analyzed$1(QueryExecution.scala:88)
at org.apache.spark.sql.catalyst.QueryPlanningTracker.measurePhase(QueryPlanningTracker.scala:111)
at org.apache.spark.sql.execution.QueryExecution.$anonfun$executePhase$1(QueryExecution.scala:196)
at org.apache.spark.sql.SparkSession.withActive(SparkSession.scala:775)
at org.apache.spark.sql.execution.QueryExecution.executePhase(QueryExecution.scala:196)
at org.apache.spark.sql.execution.QueryExecution.analyzed$lzycompute(QueryExecution.scala:88)
at org.apache.spark.sql.execution.QueryExecution.analyzed(QueryExecution.scala:86)
at org.apache.spark.sql.execution.QueryExecution.assertAnalyzed(QueryExecution.scala:78)
at org.apache.spark.sql.Dataset$.$anonfun$ofRows$2(Dataset.scala:98)
at org.apache.spark.sql.SparkSession.withActive(SparkSession.scala:775)
at org.apache.spark.sql.Dataset$.ofRows(Dataset.scala:96)
at org.apache.spark.sql.SparkSession.$anonfun$sql$1(SparkSession.scala:618)
at org.apache.spark.sql.SparkSession.withActive(SparkSession.scala:775)
at org.apache.spark.sql.SparkSession.sql(SparkSession.scala:613)
... 47 elided
```
### Kyuubi Engine Log Output
_No response_
### Kyuubi Server Configurations
_No response_
### Kyuubi Engine Configurations
_No response_
### Additional context
_No response_
### Are you willing to submit PR?
- [ ] Yes. I can submit a PR independently to fix.
- [ ] Yes. I would be willing to submit a PR with guidance from the Kyuubi community to fix.
- [ ] No. I cannot submit a PR at this time. | priority | can t update iceberg table code of conduct i agree to follow this project s search before asking i have searched in the and found no similar issues describe the bug env spark authz master 、complie authz from master branch clean package pl kyuubi spark authz dskiptests dspark version dranger version 、put kyuubi spark authz snapshot jar to spark home jars 、config spark spark sql extensions org apache kyuubi plugin spark authz ranger rangersparkextension org apache iceberg spark extensions icebergsparksessionextensions org apache kyuubi sql kyuubisparksqlextension spark sql catalog iceberg catalog org apache iceberg spark sparkcatalog spark sql catalog iceberg catalog type hive spark sql catalog spark catalog org apache iceberg spark sparksessioncatalog spark sql catalog spark catalog type hive 、use spark shell 、spark sql create table test id bigint name string using iceberg 、spark sql insert into test values a b c 、spark sql select from test show id name a b c 、 spark sql update test set name aa where id spark sql update iceberg catalog test set name aa where id spark sql update spark catalog test set name aa where id all got error with is not an iceberg table affects version s master kyuubi server log output logtalk spark sql update test set name aa where id org apache spark sql analysisexception project rowfilteranddatamaskingmarker spark catalog test is not an iceberg table at org apache spark sql catalyst analysis rewriteupdatetable anonfun apply applyorelse rewriteupdatetable scala at org apache spark sql catalyst analysis rewriteupdatetable anonfun apply applyorelse rewriteupdatetable scala at org apache spark sql catalyst plans logical analysishelper anonfun resolveoperatorsdownwithpruning analysishelper scala at org apache spark sql catalyst trees currentorigin withorigin treenode scala at org apache spark sql catalyst plans logical analysishelper anonfun resolveoperatorsdownwithpruning analysishelper scala at org apache spark sql catalyst plans logical analysishelper allowinvokingtransformsinanalyzer analysishelper scala at org apache spark sql catalyst plans logical analysishelper resolveoperatorsdownwithpruning analysishelper scala at org apache spark sql catalyst plans logical analysishelper resolveoperatorsdownwithpruning analysishelper scala at org apache spark sql catalyst plans logical logicalplan resolveoperatorsdownwithpruning logicalplan scala at org apache spark sql catalyst plans logical analysishelper resolveoperatorswithpruning analysishelper scala at org apache spark sql catalyst plans logical analysishelper resolveoperatorswithpruning analysishelper scala at org apache spark sql catalyst plans logical logicalplan resolveoperatorswithpruning logicalplan scala at org apache spark sql catalyst plans logical analysishelper resolveoperators analysishelper scala at org apache spark sql catalyst plans logical analysishelper resolveoperators analysishelper scala at org apache spark sql catalyst plans logical logicalplan resolveoperators logicalplan scala at org apache spark sql catalyst analysis rewriteupdatetable apply rewriteupdatetable scala at org apache spark sql catalyst analysis rewriteupdatetable apply rewriteupdatetable scala at org apache spark sql catalyst rules ruleexecutor anonfun execute ruleexecutor scala at scala collection linearseqoptimized foldleft linearseqoptimized scala at scala collection linearseqoptimized foldleft linearseqoptimized scala at scala collection immutable list foldleft list scala at org apache spark sql catalyst rules ruleexecutor anonfun execute ruleexecutor scala at org apache spark sql catalyst rules ruleexecutor anonfun execute adapted ruleexecutor scala at scala collection immutable list foreach list scala at org apache spark sql catalyst rules ruleexecutor execute ruleexecutor scala at org apache spark sql catalyst analysis analyzer org apache spark sql catalyst analysis analyzer executesamecontext analyzer scala at org apache spark sql catalyst analysis analyzer anonfun execute analyzer scala at org apache spark sql catalyst analysis analysiscontext withnewanalysiscontext analyzer scala at org apache spark sql catalyst analysis analyzer execute analyzer scala at org apache spark sql catalyst analysis analyzer execute analyzer scala at org apache spark sql catalyst rules ruleexecutor anonfun executeandtrack ruleexecutor scala at org apache spark sql catalyst queryplanningtracker withtracker queryplanningtracker scala at org apache spark sql catalyst rules ruleexecutor executeandtrack ruleexecutor scala at org apache spark sql catalyst analysis analyzer anonfun executeandcheck analyzer scala at org apache spark sql catalyst plans logical analysishelper markinanalyzer analysishelper scala at org apache spark sql catalyst analysis analyzer executeandcheck analyzer scala at org apache spark sql execution queryexecution anonfun analyzed queryexecution scala at org apache spark sql catalyst queryplanningtracker measurephase queryplanningtracker scala at org apache spark sql execution queryexecution anonfun executephase queryexecution scala at org apache spark sql sparksession withactive sparksession scala at org apache spark sql execution queryexecution executephase queryexecution scala at org apache spark sql execution queryexecution analyzed lzycompute queryexecution scala at org apache spark sql execution queryexecution analyzed queryexecution scala at org apache spark sql execution queryexecution assertanalyzed queryexecution scala at org apache spark sql dataset anonfun ofrows dataset scala at org apache spark sql sparksession withactive sparksession scala at org apache spark sql dataset ofrows dataset scala at org apache spark sql sparksession anonfun sql sparksession scala at org apache spark sql sparksession withactive sparksession scala at org apache spark sql sparksession sql sparksession scala elided kyuubi engine log output no response kyuubi server configurations no response kyuubi engine configurations no response additional context no response are you willing to submit pr yes i can submit a pr independently to fix yes i would be willing to submit a pr with guidance from the kyuubi community to fix no i cannot submit a pr at this time | 1 |
80,464 | 7,748,559,119 | IssuesEvent | 2018-05-30 08:42:42 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | roachtest: kv95/encrypt=true/nodes=3 failed on release-2.0 | C-test-failure O-robot | SHA: https://github.com/cockroachdb/cockroach/commits/32b7aa635af34c5b150abba9df1cd51a5fafe804
Parameters:
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=686347&tab=buildLog
```
cluster.go:678,kv.go:33,kv.go:60: /home/agent/work/.go/bin/roachprod start teamcity-686347-kv95-encrypt-true-nodes-3:1-3 --encrypt: exit status 1
``` | 1.0 | roachtest: kv95/encrypt=true/nodes=3 failed on release-2.0 - SHA: https://github.com/cockroachdb/cockroach/commits/32b7aa635af34c5b150abba9df1cd51a5fafe804
Parameters:
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=686347&tab=buildLog
```
cluster.go:678,kv.go:33,kv.go:60: /home/agent/work/.go/bin/roachprod start teamcity-686347-kv95-encrypt-true-nodes-3:1-3 --encrypt: exit status 1
``` | non_priority | roachtest encrypt true nodes failed on release sha parameters failed test cluster go kv go kv go home agent work go bin roachprod start teamcity encrypt true nodes encrypt exit status | 0 |
173,203 | 27,399,226,814 | IssuesEvent | 2023-02-28 22:32:36 | chapel-lang/chapel | https://api.github.com/repos/chapel-lang/chapel | closed | IO module: Should we keep (and rename) openreader/openwriter? | type: Design area: Libraries / Modules type: Chapel 2.0 | ```chapel
proc openreader(path:string,
param kind=iokind.dynamic, param locking=true,
start:int(64) = 0, end:int(64) = max(int(64)),
hints:iohints = IOHINT_NONE)
: channel(false, kind, locking) throws
proc openwriter(path:string,
param kind=iokind.dynamic, param locking=true,
start:int(64) = 0, end:int(64) = max(int(64)),
hints:iohints = IOHINT_NONE)
: channel(true, kind, locking) throws
```
These two functions are for creating a file and returning a reading/writing channel on that file (respectively). They are equivalent to calling `open` followed by `file.reader` or `file.writer` as the case may be, and are provided as a convenience.
Should we keep these functions?
If we keep them, we should probably rename them to `openReader` and `openWriter`.
#20133 talks about replacing their `start` and `end` arguments with a single `region` argument. Their arguments that are based on channel fields should also get updated to match any changes to them.
Should we error if an invalid region was specified? E.g. starting earlier than 0, ending before it starts, etc.
If we keep them, we should also update their documentation to reflect the same errors as `open` (see #20139) | 1.0 | IO module: Should we keep (and rename) openreader/openwriter? - ```chapel
proc openreader(path:string,
param kind=iokind.dynamic, param locking=true,
start:int(64) = 0, end:int(64) = max(int(64)),
hints:iohints = IOHINT_NONE)
: channel(false, kind, locking) throws
proc openwriter(path:string,
param kind=iokind.dynamic, param locking=true,
start:int(64) = 0, end:int(64) = max(int(64)),
hints:iohints = IOHINT_NONE)
: channel(true, kind, locking) throws
```
These two functions are for creating a file and returning a reading/writing channel on that file (respectively). They are equivalent to calling `open` followed by `file.reader` or `file.writer` as the case may be, and are provided as a convenience.
Should we keep these functions?
If we keep them, we should probably rename them to `openReader` and `openWriter`.
#20133 talks about replacing their `start` and `end` arguments with a single `region` argument. Their arguments that are based on channel fields should also get updated to match any changes to them.
Should we error if an invalid region was specified? E.g. starting earlier than 0, ending before it starts, etc.
If we keep them, we should also update their documentation to reflect the same errors as `open` (see #20139) | non_priority | io module should we keep and rename openreader openwriter chapel proc openreader path string param kind iokind dynamic param locking true start int end int max int hints iohints iohint none channel false kind locking throws proc openwriter path string param kind iokind dynamic param locking true start int end int max int hints iohints iohint none channel true kind locking throws these two functions are for creating a file and returning a reading writing channel on that file respectively they are equivalent to calling open followed by file reader or file writer as the case may be and are provided as a convenience should we keep these functions if we keep them we should probably rename them to openreader and openwriter talks about replacing their start and end arguments with a single region argument their arguments that are based on channel fields should also get updated to match any changes to them should we error if an invalid region was specified e g starting earlier than ending before it starts etc if we keep them we should also update their documentation to reflect the same errors as open see | 0 |
258,686 | 19,569,251,044 | IssuesEvent | 2022-01-04 07:40:38 | eclipse/eclipsefuro-web | https://api.github.com/repos/eclipse/eclipsefuro-web | closed | Elaboration of Getting Started Guide | documentation | Users who belong to the target group of the Furo Web Stack should be able to create a minimal executable example within a maximum of **30** minutes.
We also need descriptions of the core concepts including examples. | 1.0 | Elaboration of Getting Started Guide - Users who belong to the target group of the Furo Web Stack should be able to create a minimal executable example within a maximum of **30** minutes.
We also need descriptions of the core concepts including examples. | non_priority | elaboration of getting started guide users who belong to the target group of the furo web stack should be able to create a minimal executable example within a maximum of minutes we also need descriptions of the core concepts including examples | 0 |
91,209 | 8,300,464,636 | IssuesEvent | 2018-09-21 08:12:28 | xcat2/xcat2-task-management | https://api.github.com/repos/xcat2/xcat2-task-management | closed | Feature verify: xcat-inventory support regular expression | priority:high test | What to do:
* [ ] offer [test plan of xcat-inventory support regular expression](https://github.com/xcat2/xcat-core/wiki/Test-Design-of-xcat-inventory-regular-expression)
* [ ] implement test cases depending on above test plan | 1.0 | Feature verify: xcat-inventory support regular expression - What to do:
* [ ] offer [test plan of xcat-inventory support regular expression](https://github.com/xcat2/xcat-core/wiki/Test-Design-of-xcat-inventory-regular-expression)
* [ ] implement test cases depending on above test plan | non_priority | feature verify xcat inventory support regular expression what to do offer implement test cases depending on above test plan | 0 |
766,540 | 26,887,807,792 | IssuesEvent | 2023-02-06 05:52:08 | verocloud/color-sorting-cli | https://api.github.com/repos/verocloud/color-sorting-cli | opened | svg2txt: passing current directory saves in parent directory | bug priority:medium | Passing the current folder, results in the extracted colors being saved in the parent directory instead of the current directory.
```
cd ../compute
<redacted>/harmony svg2txt -r -f hexcode ./
Colors extracted and saved to /Users/adrian/Downloads/_Textual/Azure_Public_Service_Icons/Icons/compute.txt
```
Expected behavior was to save the file in the current directory, where the command was run. | 1.0 | svg2txt: passing current directory saves in parent directory - Passing the current folder, results in the extracted colors being saved in the parent directory instead of the current directory.
```
cd ../compute
<redacted>/harmony svg2txt -r -f hexcode ./
Colors extracted and saved to /Users/adrian/Downloads/_Textual/Azure_Public_Service_Icons/Icons/compute.txt
```
Expected behavior was to save the file in the current directory, where the command was run. | priority | passing current directory saves in parent directory passing the current folder results in the extracted colors being saved in the parent directory instead of the current directory cd compute harmony r f hexcode colors extracted and saved to users adrian downloads textual azure public service icons icons compute txt expected behavior was to save the file in the current directory where the command was run | 1 |
309,075 | 9,461,074,360 | IssuesEvent | 2019-04-17 12:40:18 | openml/OpenML | https://api.github.com/repos/openml/OpenML | closed | junk after document element: line 5, column 0 | High priority bug frontend issue | _From @janvanrijn on December 22, 2017 14:38_
dataset uploading breaks when you also tag the dataset in the process (probably also runs, flows, tasks)
_Copied from original issue: openml/website#221_ | 1.0 | junk after document element: line 5, column 0 - _From @janvanrijn on December 22, 2017 14:38_
dataset uploading breaks when you also tag the dataset in the process (probably also runs, flows, tasks)
_Copied from original issue: openml/website#221_ | priority | junk after document element line column from janvanrijn on december dataset uploading breaks when you also tag the dataset in the process probably also runs flows tasks copied from original issue openml website | 1 |
109,307 | 16,843,676,543 | IssuesEvent | 2021-06-19 02:47:56 | bharathirajatut/fitbit-api-example-java2 | https://api.github.com/repos/bharathirajatut/fitbit-api-example-java2 | opened | CVE-2020-8840 (High) detected in jackson-databind-2.8.1.jar | security vulnerability | ## CVE-2020-8840 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.8.1.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: fitbit-api-example-java2/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.1/jackson-databind-2.8.1.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-web-1.4.0.RELEASE.jar (Root Library)
- :x: **jackson-databind-2.8.1.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://api.github.com/repos/bharathirajatut/fitbit-api-example-java2/commits/8c153ad064e8f07a4ddade35ac13a9b485ca3dac">8c153ad064e8f07a4ddade35ac13a9b485ca3dac</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>
FasterXML jackson-databind 2.0.0 through 2.9.10.2 lacks certain xbean-reflect/JNDI blocking, as demonstrated by org.apache.xbean.propertyeditor.JndiConverter.
<p>Publish Date: 2020-02-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8840>CVE-2020-8840</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/FasterXML/jackson-databind/issues/2620">https://github.com/FasterXML/jackson-databind/issues/2620</a></p>
<p>Release Date: 2020-02-10</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.3</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2020-8840 (High) detected in jackson-databind-2.8.1.jar - ## CVE-2020-8840 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.8.1.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: fitbit-api-example-java2/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.1/jackson-databind-2.8.1.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-web-1.4.0.RELEASE.jar (Root Library)
- :x: **jackson-databind-2.8.1.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://api.github.com/repos/bharathirajatut/fitbit-api-example-java2/commits/8c153ad064e8f07a4ddade35ac13a9b485ca3dac">8c153ad064e8f07a4ddade35ac13a9b485ca3dac</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>
FasterXML jackson-databind 2.0.0 through 2.9.10.2 lacks certain xbean-reflect/JNDI blocking, as demonstrated by org.apache.xbean.propertyeditor.JndiConverter.
<p>Publish Date: 2020-02-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8840>CVE-2020-8840</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/FasterXML/jackson-databind/issues/2620">https://github.com/FasterXML/jackson-databind/issues/2620</a></p>
<p>Release Date: 2020-02-10</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.3</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 jackson databind jar cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file fitbit api example pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy spring boot starter web release jar root library x jackson databind jar vulnerable library found in head commit a href found in base branch master vulnerability details fasterxml jackson databind through lacks certain xbean reflect jndi blocking as demonstrated by org apache xbean propertyeditor jndiconverter 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 com fasterxml jackson core jackson databind step up your open source security game with whitesource | 0 |
5,972 | 2,800,270,821 | IssuesEvent | 2015-05-13 08:57:53 | IDgis/geo-publisher-test | https://api.github.com/repos/IDgis/geo-publisher-test | closed | Vertrouwelijke laag in een groep hangt aan alle groepen in die groep het vertrouwelijk label | readyfortest | Zie IDgis/geo-publisher#619 | 1.0 | Vertrouwelijke laag in een groep hangt aan alle groepen in die groep het vertrouwelijk label - Zie IDgis/geo-publisher#619 | non_priority | vertrouwelijke laag in een groep hangt aan alle groepen in die groep het vertrouwelijk label zie idgis geo publisher | 0 |
757,036 | 26,494,124,438 | IssuesEvent | 2023-01-18 02:55:51 | SuddenDevelopment/StopMotion | https://api.github.com/repos/SuddenDevelopment/StopMotion | closed | add keyframe behavior change | Priority High | add preferences for insert key behavior
if no keyframe on current frame, insert do not move.
if keyframe exists at current frame,
- no key to the right exists = move right and insert new keyframe
- key exists to the right = shift all keys right and insert new keyframe
| 1.0 | add keyframe behavior change - add preferences for insert key behavior
if no keyframe on current frame, insert do not move.
if keyframe exists at current frame,
- no key to the right exists = move right and insert new keyframe
- key exists to the right = shift all keys right and insert new keyframe
| priority | add keyframe behavior change add preferences for insert key behavior if no keyframe on current frame insert do not move if keyframe exists at current frame no key to the right exists move right and insert new keyframe key exists to the right shift all keys right and insert new keyframe | 1 |
598,836 | 18,256,780,785 | IssuesEvent | 2021-10-03 06:44:09 | cloudnativedaysjp/reviewapp-operator | https://api.github.com/repos/cloudnativedaysjp/reviewapp-operator | opened | Makefile のリファクタ | low priority | Makefile を読むと `go-get-tool` というのがあるので、kustomize やら argocd-cli やらを hack 以下のスクリプトでインストールしてるのを直す | 1.0 | Makefile のリファクタ - Makefile を読むと `go-get-tool` というのがあるので、kustomize やら argocd-cli やらを hack 以下のスクリプトでインストールしてるのを直す | priority | makefile のリファクタ makefile を読むと go get tool というのがあるので、kustomize やら argocd cli やらを hack 以下のスクリプトでインストールしてるのを直す | 1 |
210,410 | 7,189,403,087 | IssuesEvent | 2018-02-02 13:55:15 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | Test issue for waffle kanban | Priority: Blocker review | ### Description
A few sentences describing the overall goals of the issue.
### In case of Bug (otherwise remove this paragraph)
*Browser Affected*
(use this site: https://www.whatsmybrowser.org/ for non expert users)
- [ ] Internet Explorer
- [ ] Chrome
- [ ] Firefox
- [ ] Safari
*Browser Version Affected*
- Indicate the browser version in which the issue has been found
*Steps to reproduce*
- A list of steps to reproduce the bug
- ...
*Expected Result*
- Describe here the expected result
*Current Result*
- Describe here the current behavior
### Other useful information (optional):
| 1.0 | Test issue for waffle kanban - ### Description
A few sentences describing the overall goals of the issue.
### In case of Bug (otherwise remove this paragraph)
*Browser Affected*
(use this site: https://www.whatsmybrowser.org/ for non expert users)
- [ ] Internet Explorer
- [ ] Chrome
- [ ] Firefox
- [ ] Safari
*Browser Version Affected*
- Indicate the browser version in which the issue has been found
*Steps to reproduce*
- A list of steps to reproduce the bug
- ...
*Expected Result*
- Describe here the expected result
*Current Result*
- Describe here the current behavior
### Other useful information (optional):
| priority | test issue for waffle kanban description a few sentences describing the overall goals of the issue in case of bug otherwise remove this paragraph browser affected use this site for non expert users internet explorer chrome firefox safari browser version affected indicate the browser version in which the issue has been found steps to reproduce a list of steps to reproduce the bug expected result describe here the expected result current result describe here the current behavior other useful information optional | 1 |
26,855 | 7,875,543,826 | IssuesEvent | 2018-06-25 20:47:26 | GLVis/glvis | https://api.github.com/repos/GLVis/glvis | closed | About install on Ubuntu 2018.04 LTS | bug building | I tried to install the glvis on Ubuntu 2018.04 LTS, but failed with the following error.
> /usr/bin/x86_64-linux-gnu-ld: lib/libglvis.a(aux_vis.o): Symbol 'XGetWindowAttributes' is not defined
> //usr/lib/x86_64-linux-gnu/libX11.so.6: error adding symbols: DSO missing from command line
After searching on Google, I got the answer as follows.
https://askubuntu.com/questions/1035062/glvis-linker-error-undefined-reference-to-symbol-xgetwindowattributs
Hope that this will be helpful to people with the same problem. | 1.0 | About install on Ubuntu 2018.04 LTS - I tried to install the glvis on Ubuntu 2018.04 LTS, but failed with the following error.
> /usr/bin/x86_64-linux-gnu-ld: lib/libglvis.a(aux_vis.o): Symbol 'XGetWindowAttributes' is not defined
> //usr/lib/x86_64-linux-gnu/libX11.so.6: error adding symbols: DSO missing from command line
After searching on Google, I got the answer as follows.
https://askubuntu.com/questions/1035062/glvis-linker-error-undefined-reference-to-symbol-xgetwindowattributs
Hope that this will be helpful to people with the same problem. | non_priority | about install on ubuntu lts i tried to install the glvis on ubuntu lts but failed with the following error usr bin linux gnu ld lib libglvis a aux vis o symbol xgetwindowattributes is not defined usr lib linux gnu so error adding symbols dso missing from command line after searching on google i got the answer as follows hope that this will be helpful to people with the same problem | 0 |
306,064 | 26,432,428,899 | IssuesEvent | 2023-01-15 00:38:21 | devssa/onde-codar-em-salvador | https://api.github.com/repos/devssa/onde-codar-em-salvador | closed | [QA] [REMOTO] [TAMBEM PCD] [SENIOR] [PLENO] Analista de QA na [SOLUTIS] | TESTE PLENO SENIOR SQL SOAP TESTE AUTOMATIZADO REMOTO APIs WCF QA HELP WANTED VAGA PARA PCD TAMBÉM POSTMAN 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
- Em nossos processos transitamos entre sistemas legados até projetos com Inteligência Artificial, DevOps, Machine Learning e muito mais. Por isso, buscamos profissionais antenados e flexíveis.
- Para essa oportunidade precisamos de Analista de Testes Pleno/Sênior com experiência em automação de testes em times ágeis (SCRUM), melhorando o fluxo de trabalho, implantado e automatizando usando as melhores práticas de Teste de Software, que seja proativo, que goste de desenvolvimento ágil, de buscar e dividir conhecimentos.
RESPONSABILIDADES E ATRIBUIÇÕES
- Conhecimentos com Framework SCRUM e orientado a entrega contínua de valor para o usuário;
- Experiência na elaboração de Roteiros de Testes, Análise e mapeamento de casos de testes com requisitos de negócios;
- Experiência em construir indicadores e processos de QA, Metodologias Ágeis / Jira;
- Experiência com Automação de Testes utilizando as ferramentas como: JUnit / Selenium / Cucumber etc.;
- Domínio de técnicas de documentação, planejamento, elaboração e controle de testes.
## Local
- Remoto
## Benefícios
- Informações diretamente com o responsável/ recrutador da vaga
## Requisitos
**Obrigatórios:**
- Elaboração de casos de testes, automatização e execução, analisando com estratégia e técnicas de testes de software para garantir a eficiência da solução e competitividade no mercado com um produto de qualidade;
- Analisar junto com a equipe de desenvolvimento e negócio, prazos para execução de testes;
- Atuar junto ao time DevOps no processo de automação de testes.
- Ferramentas de consumo de API ( Soap UI / Postman / WCFTest)
- Conhecimento de SQL para manipulação de Querys
## Contratação
- a combinar
## Nossa empresa
- Somos apaixonados por tecnologia e esse valor está presente em nossas ações e proposta de trabalho. Ambiente descontraído e criativo, horário flexível, possibilidade de trabalho home office, eventos e programas internos com games... Isso faz parte do nosso dia-a-dia.
- Engajamento, busca intensa por conhecimento, empatia e criatividade são a nossa receita para cultivar e colher, sempre, o melhor resultado tecnológico.
- Essa é a Solutis, flexível, acolhedora, inquieta, amante da tecnologia e de tudo que ela nos proporciona de mais incrível.
- Venha fazer parte do nosso time!
## Como se candidatar
- [Clique aqui para se candidatar](https://solutis.gupy.io/jobs/330797?jobBoardSource=gupy_public_page)
| 2.0 | [QA] [REMOTO] [TAMBEM PCD] [SENIOR] [PLENO] Analista de QA na [SOLUTIS] - <!--
==================================================
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
- Em nossos processos transitamos entre sistemas legados até projetos com Inteligência Artificial, DevOps, Machine Learning e muito mais. Por isso, buscamos profissionais antenados e flexíveis.
- Para essa oportunidade precisamos de Analista de Testes Pleno/Sênior com experiência em automação de testes em times ágeis (SCRUM), melhorando o fluxo de trabalho, implantado e automatizando usando as melhores práticas de Teste de Software, que seja proativo, que goste de desenvolvimento ágil, de buscar e dividir conhecimentos.
RESPONSABILIDADES E ATRIBUIÇÕES
- Conhecimentos com Framework SCRUM e orientado a entrega contínua de valor para o usuário;
- Experiência na elaboração de Roteiros de Testes, Análise e mapeamento de casos de testes com requisitos de negócios;
- Experiência em construir indicadores e processos de QA, Metodologias Ágeis / Jira;
- Experiência com Automação de Testes utilizando as ferramentas como: JUnit / Selenium / Cucumber etc.;
- Domínio de técnicas de documentação, planejamento, elaboração e controle de testes.
## Local
- Remoto
## Benefícios
- Informações diretamente com o responsável/ recrutador da vaga
## Requisitos
**Obrigatórios:**
- Elaboração de casos de testes, automatização e execução, analisando com estratégia e técnicas de testes de software para garantir a eficiência da solução e competitividade no mercado com um produto de qualidade;
- Analisar junto com a equipe de desenvolvimento e negócio, prazos para execução de testes;
- Atuar junto ao time DevOps no processo de automação de testes.
- Ferramentas de consumo de API ( Soap UI / Postman / WCFTest)
- Conhecimento de SQL para manipulação de Querys
## Contratação
- a combinar
## Nossa empresa
- Somos apaixonados por tecnologia e esse valor está presente em nossas ações e proposta de trabalho. Ambiente descontraído e criativo, horário flexível, possibilidade de trabalho home office, eventos e programas internos com games... Isso faz parte do nosso dia-a-dia.
- Engajamento, busca intensa por conhecimento, empatia e criatividade são a nossa receita para cultivar e colher, sempre, o melhor resultado tecnológico.
- Essa é a Solutis, flexível, acolhedora, inquieta, amante da tecnologia e de tudo que ela nos proporciona de mais incrível.
- Venha fazer parte do nosso time!
## Como se candidatar
- [Clique aqui para se candidatar](https://solutis.gupy.io/jobs/330797?jobBoardSource=gupy_public_page)
| non_priority | analista de qa 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 em nossos processos transitamos entre sistemas legados até projetos com inteligência artificial devops machine learning e muito mais por isso buscamos profissionais antenados e flexíveis para essa oportunidade precisamos de analista de testes pleno sênior com experiência em automação de testes em times ágeis scrum melhorando o fluxo de trabalho implantado e automatizando usando as melhores práticas de teste de software que seja proativo que goste de desenvolvimento ágil de buscar e dividir conhecimentos responsabilidades e atribuições conhecimentos com framework scrum e orientado a entrega contínua de valor para o usuário experiência na elaboração de roteiros de testes análise e mapeamento de casos de testes com requisitos de negócios experiência em construir indicadores e processos de qa metodologias ágeis jira experiência com automação de testes utilizando as ferramentas como junit selenium cucumber etc domínio de técnicas de documentação planejamento elaboração e controle de testes local remoto benefícios informações diretamente com o responsável recrutador da vaga requisitos obrigatórios elaboração de casos de testes automatização e execução analisando com estratégia e técnicas de testes de software para garantir a eficiência da solução e competitividade no mercado com um produto de qualidade analisar junto com a equipe de desenvolvimento e negócio prazos para execução de testes atuar junto ao time devops no processo de automação de testes ferramentas de consumo de api soap ui postman wcftest conhecimento de sql para manipulação de querys contratação a combinar nossa empresa somos apaixonados por tecnologia e esse valor está presente em nossas ações e proposta de trabalho ambiente descontraído e criativo horário flexível possibilidade de trabalho home office eventos e programas internos com games isso faz parte do nosso dia a dia engajamento busca intensa por conhecimento empatia e criatividade são a nossa receita para cultivar e colher sempre o melhor resultado tecnológico essa é a solutis flexível acolhedora inquieta amante da tecnologia e de tudo que ela nos proporciona de mais incrível venha fazer parte do nosso time como se candidatar | 0 |
131,844 | 12,491,948,905 | IssuesEvent | 2020-06-01 05:52:16 | aaesalamanca/d-eventer | https://api.github.com/repos/aaesalamanca/d-eventer | closed | Hacer capturas de pantalla | documentation | - [x] Iniciar sesión
- [x] Ver los planes disponibles
- [x] Ver los planes apuntados
- [x] Ver la lista de _chats_
- [x] Ver el _chat_
- [x] Ver perfil | 1.0 | Hacer capturas de pantalla - - [x] Iniciar sesión
- [x] Ver los planes disponibles
- [x] Ver los planes apuntados
- [x] Ver la lista de _chats_
- [x] Ver el _chat_
- [x] Ver perfil | non_priority | hacer capturas de pantalla iniciar sesión ver los planes disponibles ver los planes apuntados ver la lista de chats ver el chat ver perfil | 0 |
95,183 | 8,552,308,691 | IssuesEvent | 2018-11-07 20:40:13 | Azure/azure-cli | https://api.github.com/repos/Azure/azure-cli | closed | Unable to find modules during test execution. | Question Test | **Describe the bug**
When trying to run the CLI tests for our command module in both the terminal and vs code, we either get an error that it cannot find the "polling" module (when running from the terminal) or an error that it cannot find the "automation" module (when running from vs code).
`Traceback (most recent call last):
File "C:\Python27\lib\site-packages\azure_devtools\scenario_tests\base.py", line 140, in setUp
patch(self)
File "f:\projects\ecosystem\azure-cli-fork\src\azure-cli-testsdk\azure\cli\testsdk\patches.py", line 75, in patch_long_run_operation_delay
_shortcut_long_run_operation)
File "C:\Python27\lib\site-packages\azure_devtools\scenario_tests\patches.py", line 36, in mock_in_unit_test
mp.__enter__()
File "C:\Python27\lib\site-packages\mock\mock.py", line 1353, in __enter__
self.target = self.getter()
File "C:\Python27\lib\site-packages\mock\mock.py", line 1523, in <lambda>
getter = lambda: _importer(target)
File "C:\Python27\lib\site-packages\mock\mock.py", line 1210, in _importer
thing = _dot_lookup(thing, comp, import_path)
File "C:\Python27\lib\site-packages\mock\mock.py", line 1199, in _dot_lookup
__import__(import_path)
File "C:\Python27\lib\site-packages\msrestazure\polling\arm_polling.py", line 34, in <module>
from msrest.polling import PollingMethod
ImportError: No module named polling`
**To Reproduce**
Go through dev setup. Attempt to run the iot tests.
**Expected behavior**
I expect the tests to be able to find modules that have already existed. I expect tests to potentially break due to changes in functionality, but not because of missing modules.
**Environment summary**
Install Method: VSCode instructions [here](https://github.com/Azure/azure-cli/blob/dev/doc/configuring_your_machine.md)
OS version: Windows 10
Shell Type 1: integrated vs code terminal
Shell Type 2: vs code test runner configuration
**Additional context**
I should not that all of this is happening when trying to run the tests inside of vs code with both the integrated terminal as well as in the vs code debug view. | 1.0 | Unable to find modules during test execution. - **Describe the bug**
When trying to run the CLI tests for our command module in both the terminal and vs code, we either get an error that it cannot find the "polling" module (when running from the terminal) or an error that it cannot find the "automation" module (when running from vs code).
`Traceback (most recent call last):
File "C:\Python27\lib\site-packages\azure_devtools\scenario_tests\base.py", line 140, in setUp
patch(self)
File "f:\projects\ecosystem\azure-cli-fork\src\azure-cli-testsdk\azure\cli\testsdk\patches.py", line 75, in patch_long_run_operation_delay
_shortcut_long_run_operation)
File "C:\Python27\lib\site-packages\azure_devtools\scenario_tests\patches.py", line 36, in mock_in_unit_test
mp.__enter__()
File "C:\Python27\lib\site-packages\mock\mock.py", line 1353, in __enter__
self.target = self.getter()
File "C:\Python27\lib\site-packages\mock\mock.py", line 1523, in <lambda>
getter = lambda: _importer(target)
File "C:\Python27\lib\site-packages\mock\mock.py", line 1210, in _importer
thing = _dot_lookup(thing, comp, import_path)
File "C:\Python27\lib\site-packages\mock\mock.py", line 1199, in _dot_lookup
__import__(import_path)
File "C:\Python27\lib\site-packages\msrestazure\polling\arm_polling.py", line 34, in <module>
from msrest.polling import PollingMethod
ImportError: No module named polling`
**To Reproduce**
Go through dev setup. Attempt to run the iot tests.
**Expected behavior**
I expect the tests to be able to find modules that have already existed. I expect tests to potentially break due to changes in functionality, but not because of missing modules.
**Environment summary**
Install Method: VSCode instructions [here](https://github.com/Azure/azure-cli/blob/dev/doc/configuring_your_machine.md)
OS version: Windows 10
Shell Type 1: integrated vs code terminal
Shell Type 2: vs code test runner configuration
**Additional context**
I should not that all of this is happening when trying to run the tests inside of vs code with both the integrated terminal as well as in the vs code debug view. | non_priority | unable to find modules during test execution describe the bug when trying to run the cli tests for our command module in both the terminal and vs code we either get an error that it cannot find the polling module when running from the terminal or an error that it cannot find the automation module when running from vs code traceback most recent call last file c lib site packages azure devtools scenario tests base py line in setup patch self file f projects ecosystem azure cli fork src azure cli testsdk azure cli testsdk patches py line in patch long run operation delay shortcut long run operation file c lib site packages azure devtools scenario tests patches py line in mock in unit test mp enter file c lib site packages mock mock py line in enter self target self getter file c lib site packages mock mock py line in getter lambda importer target file c lib site packages mock mock py line in importer thing dot lookup thing comp import path file c lib site packages mock mock py line in dot lookup import import path file c lib site packages msrestazure polling arm polling py line in from msrest polling import pollingmethod importerror no module named polling to reproduce go through dev setup attempt to run the iot tests expected behavior i expect the tests to be able to find modules that have already existed i expect tests to potentially break due to changes in functionality but not because of missing modules environment summary install method vscode instructions os version windows shell type integrated vs code terminal shell type vs code test runner configuration additional context i should not that all of this is happening when trying to run the tests inside of vs code with both the integrated terminal as well as in the vs code debug view | 0 |
57,023 | 8,136,936,137 | IssuesEvent | 2018-08-20 10:00:36 | kubernetes/minikube | https://api.github.com/repos/kubernetes/minikube | closed | Minikube v0.21.0 hostPath PVCs do not bind (Pending forever). | help wanted kind/documentation lifecycle/rotten | <!-- Thanks for filing an issue! Before hitting the button, please answer these questions.-->
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one):
BUG REPORT
<!--
If this is a BUG REPORT, please:
- Fill in as much of the template below as you can. If you leave out
information, we can't help you as well.
If this is a FEATURE REQUEST, please:
- Describe *in detail* the feature/behavior/change you'd like to see.
In both cases, be ready for followup questions, and please respond in a timely
manner. If we can't reproduce a bug or think a feature already exists, we
might close your issue. If we're wrong, PLEASE feel free to reopen it and
explain why.
-->
**Minikube version** (use `minikube version`):
minikube version: v0.21.0
**Environment**:
- **OS** (e.g. from /etc/os-release):
Red Hat Enterprise Linux Workstation release 7.3 (Maipo)
- **VM Driver** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep DriverName`):
kvm
- **ISO version** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep -i ISO` or `minikube ssh cat /etc/VERSION`):
minikube-v0.23.0.iso
- **Install tools**:
- **Others**:
**What happened**:
HostPath PVCs will not bind to PVs -- PVCs stuck in `Pending` forever.
**What you expected to happen**:
HostPath PVCs successfully bind, as it did in Minikube v0.20.0
**How to reproduce it** (as minimally and precisely as possible):
Create test.yml:
```
---
kind: PersistentVolume
apiVersion: v1
metadata:
name: test-pv0
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 1Gi
hostPath:
path: /data/test
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: test-claim0
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
volumeName: test-pv0
```
Execute: `kubectl apply -f test.yml`
**Anything else do we need to know**:
This worked fine in v0.20.0 of minikube -- seems to be a regression in newest version. Any ideas, work-arounds would be greatly appreciated! | 1.0 | Minikube v0.21.0 hostPath PVCs do not bind (Pending forever). - <!-- Thanks for filing an issue! Before hitting the button, please answer these questions.-->
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one):
BUG REPORT
<!--
If this is a BUG REPORT, please:
- Fill in as much of the template below as you can. If you leave out
information, we can't help you as well.
If this is a FEATURE REQUEST, please:
- Describe *in detail* the feature/behavior/change you'd like to see.
In both cases, be ready for followup questions, and please respond in a timely
manner. If we can't reproduce a bug or think a feature already exists, we
might close your issue. If we're wrong, PLEASE feel free to reopen it and
explain why.
-->
**Minikube version** (use `minikube version`):
minikube version: v0.21.0
**Environment**:
- **OS** (e.g. from /etc/os-release):
Red Hat Enterprise Linux Workstation release 7.3 (Maipo)
- **VM Driver** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep DriverName`):
kvm
- **ISO version** (e.g. `cat ~/.minikube/machines/minikube/config.json | grep -i ISO` or `minikube ssh cat /etc/VERSION`):
minikube-v0.23.0.iso
- **Install tools**:
- **Others**:
**What happened**:
HostPath PVCs will not bind to PVs -- PVCs stuck in `Pending` forever.
**What you expected to happen**:
HostPath PVCs successfully bind, as it did in Minikube v0.20.0
**How to reproduce it** (as minimally and precisely as possible):
Create test.yml:
```
---
kind: PersistentVolume
apiVersion: v1
metadata:
name: test-pv0
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 1Gi
hostPath:
path: /data/test
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: test-claim0
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
volumeName: test-pv0
```
Execute: `kubectl apply -f test.yml`
**Anything else do we need to know**:
This worked fine in v0.20.0 of minikube -- seems to be a regression in newest version. Any ideas, work-arounds would be greatly appreciated! | non_priority | minikube hostpath pvcs do not bind pending forever is this a bug report or feature request choose one bug report if this is a bug report please fill in as much of the template below as you can if you leave out information we can t help you as well if this is a feature request please describe in detail the feature behavior change you d like to see in both cases be ready for followup questions and please respond in a timely manner if we can t reproduce a bug or think a feature already exists we might close your issue if we re wrong please feel free to reopen it and explain why minikube version use minikube version minikube version environment os e g from etc os release red hat enterprise linux workstation release maipo vm driver e g cat minikube machines minikube config json grep drivername kvm iso version e g cat minikube machines minikube config json grep i iso or minikube ssh cat etc version minikube iso install tools others what happened hostpath pvcs will not bind to pvs pvcs stuck in pending forever what you expected to happen hostpath pvcs successfully bind as it did in minikube how to reproduce it as minimally and precisely as possible create test yml kind persistentvolume apiversion metadata name test spec accessmodes readwriteonce capacity storage hostpath path data test apiversion kind persistentvolumeclaim metadata name test spec accessmodes readwriteonce resources requests storage volumename test execute kubectl apply f test yml anything else do we need to know this worked fine in of minikube seems to be a regression in newest version any ideas work arounds would be greatly appreciated | 0 |
81,811 | 10,188,998,444 | IssuesEvent | 2019-08-11 15:50:29 | answeropedia/answeropedia.org | https://api.github.com/repos/answeropedia/answeropedia.org | opened | Поправить блок "Ансверопедия на других языках" | redesign | Сейчас так:

Надо заменить на текст "Ансверопедия доступна на других языках: English, Francis, и еще 13 языков" | 1.0 | Поправить блок "Ансверопедия на других языках" - Сейчас так:

Надо заменить на текст "Ансверопедия доступна на других языках: English, Francis, и еще 13 языков" | non_priority | поправить блок ансверопедия на других языках сейчас так надо заменить на текст ансверопедия доступна на других языках english francis и еще языков | 0 |
203,411 | 7,063,924,903 | IssuesEvent | 2018-01-06 00:24:04 | lxde/lxqt | https://api.github.com/repos/lxde/lxqt | closed | Problem with SVG symbolic icons + Qt5-5.10 | high-priority libqtxdg | After I recompiled the whole LXQt (including libqtxdg) against Qt5-5.10.0, the SVG symbolic icons didn't follow widget palettes anymore. I also did another recompilation to no avail.
A change in private functions of Qt-5.10? I haven't looked into the Qt-5.10 source yet. | 1.0 | Problem with SVG symbolic icons + Qt5-5.10 - After I recompiled the whole LXQt (including libqtxdg) against Qt5-5.10.0, the SVG symbolic icons didn't follow widget palettes anymore. I also did another recompilation to no avail.
A change in private functions of Qt-5.10? I haven't looked into the Qt-5.10 source yet. | priority | problem with svg symbolic icons after i recompiled the whole lxqt including libqtxdg against the svg symbolic icons didn t follow widget palettes anymore i also did another recompilation to no avail a change in private functions of qt i haven t looked into the qt source yet | 1 |
137,414 | 30,686,852,808 | IssuesEvent | 2023-07-26 12:54:49 | h4sh5/pypi-auto-scanner | https://api.github.com/repos/h4sh5/pypi-auto-scanner | opened | ruamel-std-warnings 0.2.2 has 2 GuardDog issues | guarddog code-execution | https://pypi.org/project/ruamel-std-warnings
https://inspector.pypi.io/project/ruamel-std-warnings
```{
"dependency": "ruamel-std-warnings",
"version": "0.2.2",
"result": {
"issues": 2,
"errors": {},
"results": {
"code-execution": [
{
"location": "ruamel.std.warnings-0.2.2/setup.py:328",
"code": " os.system('pip install .')",
"message": "This package is executing OS commands in the setup.py file"
},
{
"location": "ruamel.std.warnings-0.2.2/setup.py:911",
"code": " subprocess.check_output(cmd)",
"message": "This package is executing OS commands in the setup.py file"
}
]
},
"path": "/tmp/tmpjlgzbd0j/ruamel-std-warnings"
}
}``` | 1.0 | ruamel-std-warnings 0.2.2 has 2 GuardDog issues - https://pypi.org/project/ruamel-std-warnings
https://inspector.pypi.io/project/ruamel-std-warnings
```{
"dependency": "ruamel-std-warnings",
"version": "0.2.2",
"result": {
"issues": 2,
"errors": {},
"results": {
"code-execution": [
{
"location": "ruamel.std.warnings-0.2.2/setup.py:328",
"code": " os.system('pip install .')",
"message": "This package is executing OS commands in the setup.py file"
},
{
"location": "ruamel.std.warnings-0.2.2/setup.py:911",
"code": " subprocess.check_output(cmd)",
"message": "This package is executing OS commands in the setup.py file"
}
]
},
"path": "/tmp/tmpjlgzbd0j/ruamel-std-warnings"
}
}``` | non_priority | ruamel std warnings has guarddog issues dependency ruamel std warnings version result issues errors results code execution location ruamel std warnings setup py code os system pip install message this package is executing os commands in the setup py file location ruamel std warnings setup py code subprocess check output cmd message this package is executing os commands in the setup py file path tmp ruamel std warnings | 0 |
365,861 | 10,798,817,801 | IssuesEvent | 2019-11-06 10:47:55 | luna/enso | https://api.github.com/repos/luna/enso | closed | Barebones Packaging for Enso | Category: External Change: Non-Breaking Difficulty: Intermediate Priority: High Type: Enhancement | ### Summary
As part of the basic Jupyter kernel integration taking place as part of #264, we have the need to make the Enso binary easy to call. To that end, we need to remove the need to specify the classpath by generating a stand-alone `.jar` file for the Enso binary.
This work will still be relevant in the future as the interpreter binary evolves into the Enso language server proper.
### Value
While this effort _could_ be deferred to a later sprint, it does not represent a significant amount of work and will enable much easier use of Enso for the value introspection task mentioned above. The estimate is as minimal as I can provide, but this task actually represents as little as a few hours of work.
### Specification
- Establish how best to package Enso and its classpath into a stand-alone `.jar`.
- Package enso such that it can be called using the simple invocation below.
### Acceptance Criteria & Test Cases
- The enso binary can be called simply `java -jar enso.jar --run MyFile.enso`.
| 1.0 | Barebones Packaging for Enso - ### Summary
As part of the basic Jupyter kernel integration taking place as part of #264, we have the need to make the Enso binary easy to call. To that end, we need to remove the need to specify the classpath by generating a stand-alone `.jar` file for the Enso binary.
This work will still be relevant in the future as the interpreter binary evolves into the Enso language server proper.
### Value
While this effort _could_ be deferred to a later sprint, it does not represent a significant amount of work and will enable much easier use of Enso for the value introspection task mentioned above. The estimate is as minimal as I can provide, but this task actually represents as little as a few hours of work.
### Specification
- Establish how best to package Enso and its classpath into a stand-alone `.jar`.
- Package enso such that it can be called using the simple invocation below.
### Acceptance Criteria & Test Cases
- The enso binary can be called simply `java -jar enso.jar --run MyFile.enso`.
| priority | barebones packaging for enso summary as part of the basic jupyter kernel integration taking place as part of we have the need to make the enso binary easy to call to that end we need to remove the need to specify the classpath by generating a stand alone jar file for the enso binary this work will still be relevant in the future as the interpreter binary evolves into the enso language server proper value while this effort could be deferred to a later sprint it does not represent a significant amount of work and will enable much easier use of enso for the value introspection task mentioned above the estimate is as minimal as i can provide but this task actually represents as little as a few hours of work specification establish how best to package enso and its classpath into a stand alone jar package enso such that it can be called using the simple invocation below acceptance criteria test cases the enso binary can be called simply java jar enso jar run myfile enso | 1 |
118,169 | 15,244,030,522 | IssuesEvent | 2021-02-19 12:10:01 | hoprnet/hoprnet-org | https://api.github.com/repos/hoprnet/hoprnet-org | opened | /win Screensaver image looks stretched | type:design workflow:new issue | # Page
/win
# Current behavior
The image ration looks wrong, see the provided asset

# Expected behavior & solution
Display the image in a correct way, it has to have the same ratio as the Vimeo-frames.
You may need to cut the asset therefore. | 1.0 | /win Screensaver image looks stretched - # Page
/win
# Current behavior
The image ration looks wrong, see the provided asset

# Expected behavior & solution
Display the image in a correct way, it has to have the same ratio as the Vimeo-frames.
You may need to cut the asset therefore. | non_priority | win screensaver image looks stretched page win current behavior the image ration looks wrong see the provided asset expected behavior solution display the image in a correct way it has to have the same ratio as the vimeo frames you may need to cut the asset therefore | 0 |
79,805 | 3,547,192,763 | IssuesEvent | 2016-01-20 08:27:51 | codenameone/CodenameOne | https://api.github.com/repos/codenameone/CodenameOne | closed | New Animation Manager breaks Poker and Solitaire demos | Priority-Critical | The new Animation Manager (december 2015) breaks animation compatibility. The Poker and Solitaire demos (and my app) no longer work properly.
Also, the Developer Guide (version 2016-01-13), chapter/appendix Casual Game Programming, needs updating since it lists a CN1Poker version that doesn't properly work on an Android device: the dealing cards animation shows the cards mostly jumping and only sometimes sliding to their positions.
CN1 version: plugin 3.2.6, libs 2016-01-11.
Solitaire: in the Simulator, the layout and animations work mostly fine but on my iOS and Android devices there are a lot of problems.
Simulator (Windows 7, NetBeans 8.0.2):
- I replaced the font icons by text since they are missing.
- But how to access the hamburger menu? I don't see the 3 dots and there is even no space for it.
- Sometimes it is possible to drags a groups of cards with some downfacing cards taken; while dragged they are temporarily flipped facing up.
- Autoplay doesn't always seem to work. (Not all moves are played.)
On iOS 9.2 (iPad 4), iOS 8.4 (iPhone 4):
- [?] is shown in the hamburger menu check boxes.
- After startup, the tableau background card-backs jump to the bottom of the container/screen.
- Sometimes, in the deal-from-deck animation, cards in the rightmost tableau are temporarily facing up, and cards already facing up are flipped facing down. The final deal-state is correct, however.
- Undo/Redo: sometimes results in a facing-up card on deck 0 and a facing-down on deck 1.
- Redo sometimes 'jumps' to the new layout instead of animating.
iPhone only:
- A sequence of autoplay moves left an inconsistent foundation state: top cards heart-J, club-10, club-K, diamond-Q; i.e., 2 club-cards on different foundation stacks.
On Android 5.1.1 (Nexus 7) there are more problems.
- The deal-from-deck animation is not a pretty sight. Cards are inserted (slide to) at the bottom of the tableau stacks, so they slide under the other cards. The moving cards should be facing down but are usually facing up, always showing the first card dealt to tableau 1. The cards in rightmost tableau are temporarily facing up. Finally, cards already facing up are flipped facing down and back again. The final deal-state is correct, however.
- Autoplay is also not correct when there are several moves in a row. During the animations, several foundation cards facing up change their card value (front) temporarily. Also the moving cards slide under the foundation card (and sometimes over, but this is the exception).
- After finishing the game, the well-done screen is corrupted since the text seems to be displayed not overlayed but below the cards (in a big white space), which are only partly visible in a tiny portion at the top of the screen.
- Starting a new game often fails because deal-from-deck is not started; the screen shows a deck and four kings on the foundations with the tableau empty. When tapping the deck, a card is dealt and the well done sequence is show. Sometimes repeating this results in successfully starting a new game. | 1.0 | New Animation Manager breaks Poker and Solitaire demos - The new Animation Manager (december 2015) breaks animation compatibility. The Poker and Solitaire demos (and my app) no longer work properly.
Also, the Developer Guide (version 2016-01-13), chapter/appendix Casual Game Programming, needs updating since it lists a CN1Poker version that doesn't properly work on an Android device: the dealing cards animation shows the cards mostly jumping and only sometimes sliding to their positions.
CN1 version: plugin 3.2.6, libs 2016-01-11.
Solitaire: in the Simulator, the layout and animations work mostly fine but on my iOS and Android devices there are a lot of problems.
Simulator (Windows 7, NetBeans 8.0.2):
- I replaced the font icons by text since they are missing.
- But how to access the hamburger menu? I don't see the 3 dots and there is even no space for it.
- Sometimes it is possible to drags a groups of cards with some downfacing cards taken; while dragged they are temporarily flipped facing up.
- Autoplay doesn't always seem to work. (Not all moves are played.)
On iOS 9.2 (iPad 4), iOS 8.4 (iPhone 4):
- [?] is shown in the hamburger menu check boxes.
- After startup, the tableau background card-backs jump to the bottom of the container/screen.
- Sometimes, in the deal-from-deck animation, cards in the rightmost tableau are temporarily facing up, and cards already facing up are flipped facing down. The final deal-state is correct, however.
- Undo/Redo: sometimes results in a facing-up card on deck 0 and a facing-down on deck 1.
- Redo sometimes 'jumps' to the new layout instead of animating.
iPhone only:
- A sequence of autoplay moves left an inconsistent foundation state: top cards heart-J, club-10, club-K, diamond-Q; i.e., 2 club-cards on different foundation stacks.
On Android 5.1.1 (Nexus 7) there are more problems.
- The deal-from-deck animation is not a pretty sight. Cards are inserted (slide to) at the bottom of the tableau stacks, so they slide under the other cards. The moving cards should be facing down but are usually facing up, always showing the first card dealt to tableau 1. The cards in rightmost tableau are temporarily facing up. Finally, cards already facing up are flipped facing down and back again. The final deal-state is correct, however.
- Autoplay is also not correct when there are several moves in a row. During the animations, several foundation cards facing up change their card value (front) temporarily. Also the moving cards slide under the foundation card (and sometimes over, but this is the exception).
- After finishing the game, the well-done screen is corrupted since the text seems to be displayed not overlayed but below the cards (in a big white space), which are only partly visible in a tiny portion at the top of the screen.
- Starting a new game often fails because deal-from-deck is not started; the screen shows a deck and four kings on the foundations with the tableau empty. When tapping the deck, a card is dealt and the well done sequence is show. Sometimes repeating this results in successfully starting a new game. | priority | new animation manager breaks poker and solitaire demos the new animation manager december breaks animation compatibility the poker and solitaire demos and my app no longer work properly also the developer guide version chapter appendix casual game programming needs updating since it lists a version that doesn t properly work on an android device the dealing cards animation shows the cards mostly jumping and only sometimes sliding to their positions version plugin libs solitaire in the simulator the layout and animations work mostly fine but on my ios and android devices there are a lot of problems simulator windows netbeans i replaced the font icons by text since they are missing but how to access the hamburger menu i don t see the dots and there is even no space for it sometimes it is possible to drags a groups of cards with some downfacing cards taken while dragged they are temporarily flipped facing up autoplay doesn t always seem to work not all moves are played on ios ipad ios iphone is shown in the hamburger menu check boxes after startup the tableau background card backs jump to the bottom of the container screen sometimes in the deal from deck animation cards in the rightmost tableau are temporarily facing up and cards already facing up are flipped facing down the final deal state is correct however undo redo sometimes results in a facing up card on deck and a facing down on deck redo sometimes jumps to the new layout instead of animating iphone only a sequence of autoplay moves left an inconsistent foundation state top cards heart j club club k diamond q i e club cards on different foundation stacks on android nexus there are more problems the deal from deck animation is not a pretty sight cards are inserted slide to at the bottom of the tableau stacks so they slide under the other cards the moving cards should be facing down but are usually facing up always showing the first card dealt to tableau the cards in rightmost tableau are temporarily facing up finally cards already facing up are flipped facing down and back again the final deal state is correct however autoplay is also not correct when there are several moves in a row during the animations several foundation cards facing up change their card value front temporarily also the moving cards slide under the foundation card and sometimes over but this is the exception after finishing the game the well done screen is corrupted since the text seems to be displayed not overlayed but below the cards in a big white space which are only partly visible in a tiny portion at the top of the screen starting a new game often fails because deal from deck is not started the screen shows a deck and four kings on the foundations with the tableau empty when tapping the deck a card is dealt and the well done sequence is show sometimes repeating this results in successfully starting a new game | 1 |
29,360 | 5,658,871,418 | IssuesEvent | 2017-04-10 11:22:06 | PowerDNS/pdns | https://api.github.com/repos/PowerDNS/pdns | closed | LDAP backend does not properly reconnect | auth defect | If the LDAP server was restarted and thus the LDAP connection is invalid the LDAP backend does not correctly reconnect to the LDAP server and is blocked.
| 1.0 | LDAP backend does not properly reconnect - If the LDAP server was restarted and thus the LDAP connection is invalid the LDAP backend does not correctly reconnect to the LDAP server and is blocked.
| non_priority | ldap backend does not properly reconnect if the ldap server was restarted and thus the ldap connection is invalid the ldap backend does not correctly reconnect to the ldap server and is blocked | 0 |
164,960 | 6,259,462,111 | IssuesEvent | 2017-07-14 18:07:37 | idaholab/raven | https://api.github.com/repos/idaholab/raven | opened | Additional variables in solution export | improvement priority_normal | --------
Issue Description
--------
##### What did you expect to see happen?
In the `<SolutionExport> <HistorySet>` of the SPSA optimizer, I would like to have more variables than just the inputs (`<variable name="variable name">`) and the optimization output (`<objectVar>`).
This would be very useful, since the additional variables would be easily available in the csv or any other `<OutStreams>` of that `<HistorySet>`.
##### What did you see instead?
If I specify another variable, i.e. an output from another module of an `<EnsembleModel>`, I get the following error:
SPSA : ERROR -> Unrecognized output request: 'variable name'
----------------
For Change Control Board: Issue Review
----------------
This review should occur before any development is performed as a response to this issue.
- [ ] 1. Is it tagged with a type: defect or improvement?
- [ ] 2. Is it tagged with a priority: critical, normal or minor?
- [ ] 3. If it will impact requirements or requirements tests, is it tagged with requirements?
- [ ] 4. If it is a defect, can it cause wrong results for users? If so an email needs to be sent to the users.
- [ ] 5. Is a rationale provided? (Such as explaining why the improvement is needed or why current code is wrong.)
-------
For Change Control Board: Issue Closure
-------
This review should occur when the issue is imminently going to be closed.
- [ ] 1. If the issue is a defect, is the defect fixed?
- [ ] 2. If the issue is a defect, is the defect tested for in the regression test system? (If not explain why not.)
- [ ] 3. If the issue can impact users, has an email to the users group been written (the email should specify if the defect impacts stable or master)?
- [ ] 4. If the issue is a defect, does it impact the latest stable branch? If yes, is there any issue tagged with stable (create if needed)?
- [ ] 5. If the issue is being closed without a merge request, has an explanation of why it is being closed been provided?
| 1.0 | Additional variables in solution export - --------
Issue Description
--------
##### What did you expect to see happen?
In the `<SolutionExport> <HistorySet>` of the SPSA optimizer, I would like to have more variables than just the inputs (`<variable name="variable name">`) and the optimization output (`<objectVar>`).
This would be very useful, since the additional variables would be easily available in the csv or any other `<OutStreams>` of that `<HistorySet>`.
##### What did you see instead?
If I specify another variable, i.e. an output from another module of an `<EnsembleModel>`, I get the following error:
SPSA : ERROR -> Unrecognized output request: 'variable name'
----------------
For Change Control Board: Issue Review
----------------
This review should occur before any development is performed as a response to this issue.
- [ ] 1. Is it tagged with a type: defect or improvement?
- [ ] 2. Is it tagged with a priority: critical, normal or minor?
- [ ] 3. If it will impact requirements or requirements tests, is it tagged with requirements?
- [ ] 4. If it is a defect, can it cause wrong results for users? If so an email needs to be sent to the users.
- [ ] 5. Is a rationale provided? (Such as explaining why the improvement is needed or why current code is wrong.)
-------
For Change Control Board: Issue Closure
-------
This review should occur when the issue is imminently going to be closed.
- [ ] 1. If the issue is a defect, is the defect fixed?
- [ ] 2. If the issue is a defect, is the defect tested for in the regression test system? (If not explain why not.)
- [ ] 3. If the issue can impact users, has an email to the users group been written (the email should specify if the defect impacts stable or master)?
- [ ] 4. If the issue is a defect, does it impact the latest stable branch? If yes, is there any issue tagged with stable (create if needed)?
- [ ] 5. If the issue is being closed without a merge request, has an explanation of why it is being closed been provided?
| priority | additional variables in solution export issue description what did you expect to see happen in the of the spsa optimizer i would like to have more variables than just the inputs and the optimization output this would be very useful since the additional variables would be easily available in the csv or any other of that what did you see instead if i specify another variable i e an output from another module of an i get the following error spsa error unrecognized output request variable name for change control board issue review this review should occur before any development is performed as a response to this issue is it tagged with a type defect or improvement is it tagged with a priority critical normal or minor if it will impact requirements or requirements tests is it tagged with requirements if it is a defect can it cause wrong results for users if so an email needs to be sent to the users is a rationale provided such as explaining why the improvement is needed or why current code is wrong for change control board issue closure this review should occur when the issue is imminently going to be closed if the issue is a defect is the defect fixed if the issue is a defect is the defect tested for in the regression test system if not explain why not if the issue can impact users has an email to the users group been written the email should specify if the defect impacts stable or master if the issue is a defect does it impact the latest stable branch if yes is there any issue tagged with stable create if needed if the issue is being closed without a merge request has an explanation of why it is being closed been provided | 1 |
162,487 | 12,678,035,560 | IssuesEvent | 2020-06-19 09:01:36 | finos/waltz | https://api.github.com/repos/finos/waltz | closed | Move gh-pages back into master | fixed (test & close) | Inconvenient to update docs across two branches, `master` & `gh-pages`. Will look to merge them back into `master\docs`
| 1.0 | Move gh-pages back into master - Inconvenient to update docs across two branches, `master` & `gh-pages`. Will look to merge them back into `master\docs`
| non_priority | move gh pages back into master inconvenient to update docs across two branches master gh pages will look to merge them back into master docs | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.