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
295,226
9,083,338,475
IssuesEvent
2019-02-17 19:41:26
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
opened
Wheelbarrow - unstable in tight places.
Semi-High Priority
As far as I know - the Wheelbarrow is designed for bottlenecks, but can not be used in them. ![20190217204557_1](https://user-images.githubusercontent.com/4980243/52917801-94254d80-3300-11e9-8012-f822a603b8ee.jpg) ![20190217204154_1](https://user-images.githubusercontent.com/4980243/52917802-94254d80-3300-11e9-9793-cd7f74bbaa29.jpg) ![20190217204203_1](https://user-images.githubusercontent.com/4980243/52917804-94bde400-3300-11e9-8f02-80e6244b215e.jpg) ![20190217204311_1](https://user-images.githubusercontent.com/4980243/52917805-94bde400-3300-11e9-9ab2-2f433b7bc14b.jpg) https://youtu.be/w7Z5pF1N5BQ
1.0
Wheelbarrow - unstable in tight places. - As far as I know - the Wheelbarrow is designed for bottlenecks, but can not be used in them. ![20190217204557_1](https://user-images.githubusercontent.com/4980243/52917801-94254d80-3300-11e9-8012-f822a603b8ee.jpg) ![20190217204154_1](https://user-images.githubusercontent.com/4980243/52917802-94254d80-3300-11e9-9793-cd7f74bbaa29.jpg) ![20190217204203_1](https://user-images.githubusercontent.com/4980243/52917804-94bde400-3300-11e9-8f02-80e6244b215e.jpg) ![20190217204311_1](https://user-images.githubusercontent.com/4980243/52917805-94bde400-3300-11e9-9ab2-2f433b7bc14b.jpg) https://youtu.be/w7Z5pF1N5BQ
priority
wheelbarrow unstable in tight places as far as i know the wheelbarrow is designed for bottlenecks but can not be used in them
1
798,151
28,238,169,224
IssuesEvent
2023-04-06 03:45:45
AY2223S2-CS2103T-F12-4/tp
https://api.github.com/repos/AY2223S2-CS2103T-F12-4/tp
closed
[PE-D][Tester D] Capitalisation for jar file name
priority.Low severity.Low
UG states that jar file is Ultron.jar but the actual jar file is ultron.jar. However, it does not affect functionality as jar file names are case insensitive. ![Screenshot 2023-03-31 at 2.53.01 PM.png](https://raw.githubusercontent.com/gyulong1/ped/main/files/67137488-d59a-4362-9e5a-ae81b31de80a.png) <!--session: 1680242296715-29bb0fea-05f1-41ae-b4d9-71039571a17e--> <!--Version: Web v3.4.7--> ------------- Labels: `type.DocumentationBug` `severity.VeryLow` original: gyulong1/ped#9
1.0
[PE-D][Tester D] Capitalisation for jar file name - UG states that jar file is Ultron.jar but the actual jar file is ultron.jar. However, it does not affect functionality as jar file names are case insensitive. ![Screenshot 2023-03-31 at 2.53.01 PM.png](https://raw.githubusercontent.com/gyulong1/ped/main/files/67137488-d59a-4362-9e5a-ae81b31de80a.png) <!--session: 1680242296715-29bb0fea-05f1-41ae-b4d9-71039571a17e--> <!--Version: Web v3.4.7--> ------------- Labels: `type.DocumentationBug` `severity.VeryLow` original: gyulong1/ped#9
priority
capitalisation for jar file name ug states that jar file is ultron jar but the actual jar file is ultron jar however it does not affect functionality as jar file names are case insensitive labels type documentationbug severity verylow original ped
1
583,905
17,401,098,346
IssuesEvent
2021-08-02 19:48:45
PyTorchLightning/pytorch-lightning
https://api.github.com/repos/PyTorchLightning/pytorch-lightning
closed
Errors are masked with DDP when processes are created external to lightning
DDP Priority P0 bug / fix help wanted
## 🐛 Bug Process reconciliation added recently during the error handling path has a bug: https://github.com/PyTorchLightning/pytorch-lightning/blob/16392a7de787a1c0c0163f9[…]95f69178d5aef3a9/pytorch_lightning/plugins/training_type/ddp.py `_sync_dir` is initialized only during `call_children_scripts` , which is not called if the processes are externally created. hence this will mask errors when training with Slurm or torch distributed elastic or other custom cluster environments Users will see this issue instead: ``` torch.save(True, os.path.join(sync_dir, f"{self.global_rank}.pl")) TypeError: expected str, bytes or os.PathLike object, not NoneType ``` which is an exception that occurs during the handling of the root cause exception. this makes it trickier to debug ### Expected behavior There should be no exceptions during the exception handling path so the root error is clear to users ### Environment This is present on Lightning 1.4
1.0
Errors are masked with DDP when processes are created external to lightning - ## 🐛 Bug Process reconciliation added recently during the error handling path has a bug: https://github.com/PyTorchLightning/pytorch-lightning/blob/16392a7de787a1c0c0163f9[…]95f69178d5aef3a9/pytorch_lightning/plugins/training_type/ddp.py `_sync_dir` is initialized only during `call_children_scripts` , which is not called if the processes are externally created. hence this will mask errors when training with Slurm or torch distributed elastic or other custom cluster environments Users will see this issue instead: ``` torch.save(True, os.path.join(sync_dir, f"{self.global_rank}.pl")) TypeError: expected str, bytes or os.PathLike object, not NoneType ``` which is an exception that occurs during the handling of the root cause exception. this makes it trickier to debug ### Expected behavior There should be no exceptions during the exception handling path so the root error is clear to users ### Environment This is present on Lightning 1.4
priority
errors are masked with ddp when processes are created external to lightning 🐛 bug process reconciliation added recently during the error handling path has a bug pytorch lightning plugins training type ddp py sync dir is initialized only during call children scripts which is not called if the processes are externally created hence this will mask errors when training with slurm or torch distributed elastic or other custom cluster environments users will see this issue instead torch save true os path join sync dir f self global rank pl typeerror expected str bytes or os pathlike object not nonetype which is an exception that occurs during the handling of the root cause exception this makes it trickier to debug expected behavior there should be no exceptions during the exception handling path so the root error is clear to users environment this is present on lightning
1
5,725
3,976,030,960
IssuesEvent
2016-05-05 09:27:48
Virtual-Labs/fab-laboratory-coep
https://api.github.com/repos/Virtual-Labs/fab-laboratory-coep
closed
QA_Hunting, Fishing, Gathering Tools_Simulation_p1
Category: Usability Developed By: VLEAD Release Number: Production Severity: S2 Status: Open
Defect Description : In the How to trap fish with chepasimulation page of "Hunting, Fishing, Gathering Tools" experiment, the reset button is missing in the page instead reset button should be displayed on the screen inorder to clear the arranged parts from the positions Actual Result : In the How to trap fish with chepa simulation page of "Hunting, Fishing, Gathering Tools" experiment, the reset button is missing in the page Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Test Step Link: https://github.com/Virtual-Labs/anthropology-iitg/blob/master/test-cases/integration_test-cases/Hunting%2C%20Fishing%2C%20Gathering%20Tools/Hunting%2C%20Fishing%2C%20Gathering%20Tools_06_Simulation_p1.org
True
QA_Hunting, Fishing, Gathering Tools_Simulation_p1 - Defect Description : In the How to trap fish with chepasimulation page of "Hunting, Fishing, Gathering Tools" experiment, the reset button is missing in the page instead reset button should be displayed on the screen inorder to clear the arranged parts from the positions Actual Result : In the How to trap fish with chepa simulation page of "Hunting, Fishing, Gathering Tools" experiment, the reset button is missing in the page Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Test Step Link: https://github.com/Virtual-Labs/anthropology-iitg/blob/master/test-cases/integration_test-cases/Hunting%2C%20Fishing%2C%20Gathering%20Tools/Hunting%2C%20Fishing%2C%20Gathering%20Tools_06_Simulation_p1.org
non_priority
qa hunting fishing gathering tools simulation defect description in the how to trap fish with chepasimulation page of hunting fishing gathering tools experiment the reset button is missing in the page instead reset button should be displayed on the screen inorder to clear the arranged parts from the positions actual result in the how to trap fish with chepa simulation page of hunting fishing gathering tools experiment the reset button is missing in the page environment os windows ubuntu centos browsers firefox chrome chromium bandwidth hardware configuration processor test step link
0
298,659
9,200,638,507
IssuesEvent
2019-03-07 17:32:10
qissue-bot/QGIS
https://api.github.com/repos/qissue-bot/QGIS
closed
name of layer can't be seen when it's created
Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report
--- Author Name: **pascal-ferrand-tiscali-fr -** (pascal-ferrand-tiscali-fr -) Original Redmine Issue: 224, https://issues.qgis.org/issues/224 Original Assignee: Gary Sherman --- on GQIS-0.8.0_preview-1_source working on linux we can't see name of vector layer at its creation in "légende". it appear only after have been delete and call. it's the same with qgis-0.8.0-win32-060724
1.0
name of layer can't be seen when it's created - --- Author Name: **pascal-ferrand-tiscali-fr -** (pascal-ferrand-tiscali-fr -) Original Redmine Issue: 224, https://issues.qgis.org/issues/224 Original Assignee: Gary Sherman --- on GQIS-0.8.0_preview-1_source working on linux we can't see name of vector layer at its creation in "légende". it appear only after have been delete and call. it's the same with qgis-0.8.0-win32-060724
priority
name of layer can t be seen when it s created author name pascal ferrand tiscali fr pascal ferrand tiscali fr original redmine issue original assignee gary sherman on gqis preview source working on linux we can t see name of vector layer at its creation in légende it appear only after have been delete and call it s the same with qgis
1
274,156
8,557,626,472
IssuesEvent
2018-11-08 16:08:50
our-city-app/mobicage-ios-client
https://api.github.com/repos/our-city-app/mobicage-ios-client
closed
Disable Cordova web storage backup to iCloud
priority_major type_bug
10-12 12:59:05.533 (UI) Loading dynamic embedded app with id threefold-payments 2018-10-12 12:59:05.582462+0200 em-be-threefold-staging[38495:15437005] Started backup to iCloud! Please be careful. Your application might be rejected by Apple if you store too much data. For more information please read "iOS Data Storage Guidelines" at: https://developer.apple.com/icloud/documentation/data-storage/ To disable web storage backup to iCloud, set the BackupWebStorage preference to "local" in the Cordova config.xml file
1.0
Disable Cordova web storage backup to iCloud - 10-12 12:59:05.533 (UI) Loading dynamic embedded app with id threefold-payments 2018-10-12 12:59:05.582462+0200 em-be-threefold-staging[38495:15437005] Started backup to iCloud! Please be careful. Your application might be rejected by Apple if you store too much data. For more information please read "iOS Data Storage Guidelines" at: https://developer.apple.com/icloud/documentation/data-storage/ To disable web storage backup to iCloud, set the BackupWebStorage preference to "local" in the Cordova config.xml file
priority
disable cordova web storage backup to icloud ui loading dynamic embedded app with id threefold payments em be threefold staging started backup to icloud please be careful your application might be rejected by apple if you store too much data for more information please read ios data storage guidelines at to disable web storage backup to icloud set the backupwebstorage preference to local in the cordova config xml file
1
660,876
22,034,422,899
IssuesEvent
2022-05-28 10:40:40
nakhll-company/nakhll_frontend
https://api.github.com/repos/nakhll-company/nakhll_frontend
closed
نمایش شماره کاربر در هنگام ارسال کد تایید
Priority 1
بهتر است شماره ای که کاربر وارد کرده در صفحه ارسال کد تایید نوشته شود تا کاربر بتواند آن را چک کند و در صورتی که اشتباه باشد آن را ویرایش کند. مثلا "کد تایید برای شماره 09123456789 ارسال شد" و در پایین صفحه داشته باشیم: "شماره اشتباه است؟ ویرایش شماره"
1.0
نمایش شماره کاربر در هنگام ارسال کد تایید - بهتر است شماره ای که کاربر وارد کرده در صفحه ارسال کد تایید نوشته شود تا کاربر بتواند آن را چک کند و در صورتی که اشتباه باشد آن را ویرایش کند. مثلا "کد تایید برای شماره 09123456789 ارسال شد" و در پایین صفحه داشته باشیم: "شماره اشتباه است؟ ویرایش شماره"
priority
نمایش شماره کاربر در هنگام ارسال کد تایید بهتر است شماره ای که کاربر وارد کرده در صفحه ارسال کد تایید نوشته شود تا کاربر بتواند آن را چک کند و در صورتی که اشتباه باشد آن را ویرایش کند مثلا کد تایید برای شماره ارسال شد و در پایین صفحه داشته باشیم شماره اشتباه است؟ ویرایش شماره
1
55,891
8,034,148,166
IssuesEvent
2018-07-29 15:18:35
BookStackApp/BookStack
https://api.github.com/repos/BookStackApp/BookStack
closed
Request Discord as additional third party authentication
Documentation Update Enhancement
Request to add Discord as an authentication method. Discord and socialite info: https://discordapp.com/developers/docs/topics/oauth2 https://socialiteproviders.github.io/providers/discord.html
1.0
Request Discord as additional third party authentication - Request to add Discord as an authentication method. Discord and socialite info: https://discordapp.com/developers/docs/topics/oauth2 https://socialiteproviders.github.io/providers/discord.html
non_priority
request discord as additional third party authentication request to add discord as an authentication method discord and socialite info
0
496,714
14,353,028,787
IssuesEvent
2020-11-30 06:00:02
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Rest interface allows to create two API Products and APIs with same context
Priority/Normal Type/Bug
### Description: When publishing APIs using the publisher v1 API-Products REST API, it allows to create two API Products and APIs with same context. Although it is not possible from GUI. ### Steps to reproduce: 1. Publish and API/API product using publisher REST API or publisher UI. 2. Publish another API/API Product with the same context using publisher REST API. ### Affected Product Version: APIM-3.1.0
1.0
Rest interface allows to create two API Products and APIs with same context - ### Description: When publishing APIs using the publisher v1 API-Products REST API, it allows to create two API Products and APIs with same context. Although it is not possible from GUI. ### Steps to reproduce: 1. Publish and API/API product using publisher REST API or publisher UI. 2. Publish another API/API Product with the same context using publisher REST API. ### Affected Product Version: APIM-3.1.0
priority
rest interface allows to create two api products and apis with same context description when publishing apis using the publisher api products rest api it allows to create two api products and apis with same context although it is not possible from gui steps to reproduce publish and api api product using publisher rest api or publisher ui publish another api api product with the same context using publisher rest api affected product version apim
1
784,514
27,574,146,254
IssuesEvent
2023-03-08 11:39:35
GoogleCloudPlatform/python-docs-samples
https://api.github.com/repos/GoogleCloudPlatform/python-docs-samples
closed
compute.client_library.snippets.tests.test_custom_types: test_add_extended_memory_to_instance failed
priority: p1 type: bug api: compute samples flakybot: issue
This test failed! To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot). If I'm commenting on this issue too often, add the `flakybot: quiet` label and I will stop commenting. --- commit: 84d23766cd52bc2a6469ceccac02e1feaab5e430 buildURL: [Build Status](https://source.cloud.google.com/results/invocations/4a4da949-110b-4930-9fff-7599f030888a), [Sponge](http://sponge2/4a4da949-110b-4930-9fff-7599f030888a) status: failed <details><summary>Test output</summary><br><pre>Traceback (most recent call last): File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/retry.py", line 191, in retry_target return target() ^^^^^^^^ File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 120, in _done_or_raise raise _OperationNotComplete() google.api_core.future.polling._OperationNotComplete The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 137, in _blocking_poll polling(self._done_or_raise)(retry=retry) File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/retry.py", line 349, in retry_wrapped_func return retry_target( ^^^^^^^^^^^^^ File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/retry.py", line 207, in retry_target raise exceptions.RetryError( google.api_core.exceptions.RetryError: Deadline of 300.0s exceeded while calling target function, last exception: During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/workspace/compute/client_library/snippets/tests/test_custom_types.py", line 56, in instance delete_instance(PROJECT, INSTANCE_ZONE, instance_name) File "/workspace/compute/client_library/snippets/instances/delete.py", line 93, in delete_instance wait_for_extended_operation(operation, "instance deletion") File "/workspace/compute/client_library/snippets/instances/delete.py", line 59, in wait_for_extended_operation result = operation.result(timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 256, in result self._blocking_poll(timeout=timeout, retry=retry, polling=polling) File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 139, in _blocking_poll raise concurrent.futures.TimeoutError( TimeoutError: Operation did not complete within the designated timeout of 300 seconds.</pre></details>
1.0
compute.client_library.snippets.tests.test_custom_types: test_add_extended_memory_to_instance failed - This test failed! To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot). If I'm commenting on this issue too often, add the `flakybot: quiet` label and I will stop commenting. --- commit: 84d23766cd52bc2a6469ceccac02e1feaab5e430 buildURL: [Build Status](https://source.cloud.google.com/results/invocations/4a4da949-110b-4930-9fff-7599f030888a), [Sponge](http://sponge2/4a4da949-110b-4930-9fff-7599f030888a) status: failed <details><summary>Test output</summary><br><pre>Traceback (most recent call last): File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/retry.py", line 191, in retry_target return target() ^^^^^^^^ File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 120, in _done_or_raise raise _OperationNotComplete() google.api_core.future.polling._OperationNotComplete The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 137, in _blocking_poll polling(self._done_or_raise)(retry=retry) File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/retry.py", line 349, in retry_wrapped_func return retry_target( ^^^^^^^^^^^^^ File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/retry.py", line 207, in retry_target raise exceptions.RetryError( google.api_core.exceptions.RetryError: Deadline of 300.0s exceeded while calling target function, last exception: During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/workspace/compute/client_library/snippets/tests/test_custom_types.py", line 56, in instance delete_instance(PROJECT, INSTANCE_ZONE, instance_name) File "/workspace/compute/client_library/snippets/instances/delete.py", line 93, in delete_instance wait_for_extended_operation(operation, "instance deletion") File "/workspace/compute/client_library/snippets/instances/delete.py", line 59, in wait_for_extended_operation result = operation.result(timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 256, in result self._blocking_poll(timeout=timeout, retry=retry, polling=polling) File "/workspace/compute/client_library/.nox/py-3-11/lib/python3.11/site-packages/google/api_core/future/polling.py", line 139, in _blocking_poll raise concurrent.futures.TimeoutError( TimeoutError: Operation did not complete within the designated timeout of 300 seconds.</pre></details>
priority
compute client library snippets tests test custom types test add extended memory to instance failed this test failed to configure my behavior see if i m commenting on this issue too often add the flakybot quiet label and i will stop commenting commit buildurl status failed test output traceback most recent call last file workspace compute client library nox py lib site packages google api core retry py line in retry target return target file workspace compute client library nox py lib site packages google api core future polling py line in done or raise raise operationnotcomplete google api core future polling operationnotcomplete the above exception was the direct cause of the following exception traceback most recent call last file workspace compute client library nox py lib site packages google api core future polling py line in blocking poll polling self done or raise retry retry file workspace compute client library nox py lib site packages google api core retry py line in retry wrapped func return retry target file workspace compute client library nox py lib site packages google api core retry py line in retry target raise exceptions retryerror google api core exceptions retryerror deadline of exceeded while calling target function last exception during handling of the above exception another exception occurred traceback most recent call last file workspace compute client library snippets tests test custom types py line in instance delete instance project instance zone instance name file workspace compute client library snippets instances delete py line in delete instance wait for extended operation operation instance deletion file workspace compute client library snippets instances delete py line in wait for extended operation result operation result timeout timeout file workspace compute client library nox py lib site packages google api core future polling py line in result self blocking poll timeout timeout retry retry polling polling file workspace compute client library nox py lib site packages google api core future polling py line in blocking poll raise concurrent futures timeouterror timeouterror operation did not complete within the designated timeout of seconds
1
258,469
22,321,701,755
IssuesEvent
2022-06-14 07:06:44
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
roachtest: import/tpch/nodes=8 failed
C-test-failure O-robot O-roachtest branch-master release-blocker
roachtest.import/tpch/nodes=8 [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/5465013?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/5465013?buildTab=artifacts#/import/tpch/nodes=8) on master @ [b0a8d28feb8befa417933d0a2ee99511b16414a1](https://github.com/cockroachdb/cockroach/commits/b0a8d28feb8befa417933d0a2ee99511b16414a1): ``` test artifacts and logs in: /artifacts/import/tpch/nodes=8/run_1 monitor.go:127,import.go:312,test_runner.go:884: monitor failure: monitor command failure: unexpected node event: 8: dead (exit status 137) (1) attached stack trace -- stack trace: | main.(*monitorImpl).WaitE | main/pkg/cmd/roachtest/monitor.go:115 | main.(*monitorImpl).Wait | main/pkg/cmd/roachtest/monitor.go:123 | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests.registerImportTPCH.func1 | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests/import.go:312 | [...repeated from below...] Wraps: (2) monitor failure Wraps: (3) attached stack trace -- stack trace: | main.(*monitorImpl).wait.func3 | main/pkg/cmd/roachtest/monitor.go:202 | runtime.goexit | GOROOT/src/runtime/asm_amd64.s:1581 Wraps: (4) monitor command failure Wraps: (5) unexpected node event: 8: dead (exit status 137) Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.withPrefix (5) *errors.errorString ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=4</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #82137 roachtest: import/tpch/nodes=8 failed [C-test-failure O-roachtest O-robot T-bulkio branch-release-21.2 release-blocker sync-me] </p> </details> /cc @cockroachdb/bulk-io <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*import/tpch/nodes=8.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
2.0
roachtest: import/tpch/nodes=8 failed - roachtest.import/tpch/nodes=8 [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/5465013?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/5465013?buildTab=artifacts#/import/tpch/nodes=8) on master @ [b0a8d28feb8befa417933d0a2ee99511b16414a1](https://github.com/cockroachdb/cockroach/commits/b0a8d28feb8befa417933d0a2ee99511b16414a1): ``` test artifacts and logs in: /artifacts/import/tpch/nodes=8/run_1 monitor.go:127,import.go:312,test_runner.go:884: monitor failure: monitor command failure: unexpected node event: 8: dead (exit status 137) (1) attached stack trace -- stack trace: | main.(*monitorImpl).WaitE | main/pkg/cmd/roachtest/monitor.go:115 | main.(*monitorImpl).Wait | main/pkg/cmd/roachtest/monitor.go:123 | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests.registerImportTPCH.func1 | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests/import.go:312 | [...repeated from below...] Wraps: (2) monitor failure Wraps: (3) attached stack trace -- stack trace: | main.(*monitorImpl).wait.func3 | main/pkg/cmd/roachtest/monitor.go:202 | runtime.goexit | GOROOT/src/runtime/asm_amd64.s:1581 Wraps: (4) monitor command failure Wraps: (5) unexpected node event: 8: dead (exit status 137) Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.withPrefix (5) *errors.errorString ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=4</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #82137 roachtest: import/tpch/nodes=8 failed [C-test-failure O-roachtest O-robot T-bulkio branch-release-21.2 release-blocker sync-me] </p> </details> /cc @cockroachdb/bulk-io <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*import/tpch/nodes=8.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
non_priority
roachtest import tpch nodes failed roachtest import tpch nodes with on master test artifacts and logs in artifacts import tpch nodes run monitor go import go test runner go monitor failure monitor command failure unexpected node event dead exit status attached stack trace stack trace main monitorimpl waite main pkg cmd roachtest monitor go main monitorimpl wait main pkg cmd roachtest monitor go github com cockroachdb cockroach pkg cmd roachtest tests registerimporttpch github com cockroachdb cockroach pkg cmd roachtest tests import go wraps monitor failure wraps attached stack trace stack trace main monitorimpl wait main pkg cmd roachtest monitor go runtime goexit goroot src runtime asm s wraps monitor command failure wraps unexpected node event dead exit status error types withstack withstack errutil withprefix withstack withstack errutil withprefix errors errorstring parameters roachtest cloud gce roachtest cpu roachtest ssd help see see same failure on other branches roachtest import tpch nodes failed cc cockroachdb bulk io
0
266,673
28,432,799,301
IssuesEvent
2023-04-15 01:12:25
nagyesta/abort-mission
https://api.github.com/repos/nagyesta/abort-mission
opened
spring-context-5.3.25.jar: 1 vulnerabilities (highest severity is: 5.5)
Mend: dependency security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-context-5.3.25.jar</b></p></summary> <p></p> <p>Path to dependency file: /strongback/strongback-h2-supplier/build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (spring-context version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2023-20863](https://www.mend.io/vulnerability-database/CVE-2023-20863) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.5 | spring-expression-5.3.25.jar | Transitive | 5.3.27 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2023-20863</summary> ### Vulnerable Library - <b>spring-expression-5.3.25.jar</b></p> <p>Spring Expression Language (SpEL)</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /boosters/testkit/build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar</p> <p> Dependency Hierarchy: - spring-context-5.3.25.jar (Root Library) - :x: **spring-expression-5.3.25.jar** (Vulnerable Library) <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> In spring framework versions prior to 5.2.24 release+ ,5.3.27+ and 6.0.8+ , it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition. <p>Publish Date: 2023-04-13 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-20863>CVE-2023-20863</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>5.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-20863">https://nvd.nist.gov/vuln/detail/CVE-2023-20863</a></p> <p>Release Date: 2023-04-13</p> <p>Fix Resolution (org.springframework:spring-expression): 6.0.8</p> <p>Direct dependency fix Resolution (org.springframework:spring-context): 5.3.27</p> </p> <p></p> Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) </details>
True
spring-context-5.3.25.jar: 1 vulnerabilities (highest severity is: 5.5) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-context-5.3.25.jar</b></p></summary> <p></p> <p>Path to dependency file: /strongback/strongback-h2-supplier/build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (spring-context version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2023-20863](https://www.mend.io/vulnerability-database/CVE-2023-20863) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.5 | spring-expression-5.3.25.jar | Transitive | 5.3.27 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2023-20863</summary> ### Vulnerable Library - <b>spring-expression-5.3.25.jar</b></p> <p>Spring Expression Language (SpEL)</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /boosters/testkit/build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar,/home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.25/d681cdb86611f03d8ef29654edde219fe5afef1d/spring-expression-5.3.25.jar</p> <p> Dependency Hierarchy: - spring-context-5.3.25.jar (Root Library) - :x: **spring-expression-5.3.25.jar** (Vulnerable Library) <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> In spring framework versions prior to 5.2.24 release+ ,5.3.27+ and 6.0.8+ , it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition. <p>Publish Date: 2023-04-13 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-20863>CVE-2023-20863</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>5.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-20863">https://nvd.nist.gov/vuln/detail/CVE-2023-20863</a></p> <p>Release Date: 2023-04-13</p> <p>Fix Resolution (org.springframework:spring-expression): 6.0.8</p> <p>Direct dependency fix Resolution (org.springframework:spring-context): 5.3.27</p> </p> <p></p> Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) </details>
non_priority
spring context jar vulnerabilities highest severity is vulnerable library spring context jar path to dependency file strongback strongback supplier build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar vulnerabilities cve severity cvss dependency type fixed in spring context version remediation available medium spring expression jar transitive details cve vulnerable library spring expression jar spring expression language spel library home page a href path to dependency file boosters testkit build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar home wss scanner gradle caches modules files org springframework spring expression spring expression jar dependency hierarchy spring context jar root library x spring expression jar vulnerable library found in base branch main vulnerability details in spring framework versions prior to release and it is possible for a user to provide a specially crafted spel expression that may cause a denial of service dos condition publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring expression direct dependency fix resolution org springframework spring context step up your open source security game with mend
0
17,356
3,605,385,281
IssuesEvent
2016-02-04 04:44:56
red/red
https://api.github.com/repos/red/red
closed
`foreach` always iterates over 3 pixels
Red status.built status.tested type.bug
`foreach` always iterates over 3 pixels of an image, regardless of the size. ``` red>> foreach i make image! 100x100 [probe i] 0.0.0.255 0.0.0.255 0.0.0.255 == 0.0.0.255 ``` ``` red>> foreach i make image! 1x1 [probe i] 0.0.0.255 none none == none ```
1.0
`foreach` always iterates over 3 pixels - `foreach` always iterates over 3 pixels of an image, regardless of the size. ``` red>> foreach i make image! 100x100 [probe i] 0.0.0.255 0.0.0.255 0.0.0.255 == 0.0.0.255 ``` ``` red>> foreach i make image! 1x1 [probe i] 0.0.0.255 none none == none ```
non_priority
foreach always iterates over pixels foreach always iterates over pixels of an image regardless of the size red foreach i make image red foreach i make image none none none
0
384,394
26,583,897,954
IssuesEvent
2023-01-22 19:51:31
RalphHightower/RalphHightower
https://api.github.com/repos/RalphHightower/RalphHightower
closed
MurdaughAlex_TimeLine.md: 2023-01-16 P&C Update
documentation
**What page should this be added to?**<br> MurdaughAlex_TimeLine.md **What section/heading should this be added to?**<br> Chronological in events **Include the Markdown text that is to be added below:**<br> | JANUARY 16, 2023 5:00 AM | [Veteran murder trial prosecutor hired by SC attorney general. Will he join Murdaugh team?](https://www.thestate.com/news/local/crime/article270603642.html#storylink=cpy) | **Describe alternatives you've considered**<br> Bookmarks in browsers are not portable. **Additional context**<br> Add any other context or screenshots about the feature request here.
1.0
MurdaughAlex_TimeLine.md: 2023-01-16 P&C Update - **What page should this be added to?**<br> MurdaughAlex_TimeLine.md **What section/heading should this be added to?**<br> Chronological in events **Include the Markdown text that is to be added below:**<br> | JANUARY 16, 2023 5:00 AM | [Veteran murder trial prosecutor hired by SC attorney general. Will he join Murdaugh team?](https://www.thestate.com/news/local/crime/article270603642.html#storylink=cpy) | **Describe alternatives you've considered**<br> Bookmarks in browsers are not portable. **Additional context**<br> Add any other context or screenshots about the feature request here.
non_priority
murdaughalex timeline md p c update what page should this be added to murdaughalex timeline md what section heading should this be added to chronological in events include the markdown text that is to be added below january am describe alternatives you ve considered bookmarks in browsers are not portable additional context add any other context or screenshots about the feature request here
0
4,882
2,754,636,110
IssuesEvent
2015-04-25 21:26:47
d3athrow/vgstation13
https://api.github.com/repos/d3athrow/vgstation13
closed
MoMMI blank overlay has incorrect sprites
Bug Needs Moar Testing
For the Blank overlay that MoMMIs can select, Chickens will instead look like Cows. Haven't tried it with anything else.
1.0
MoMMI blank overlay has incorrect sprites - For the Blank overlay that MoMMIs can select, Chickens will instead look like Cows. Haven't tried it with anything else.
non_priority
mommi blank overlay has incorrect sprites for the blank overlay that mommis can select chickens will instead look like cows haven t tried it with anything else
0
202,065
23,054,650,072
IssuesEvent
2022-07-25 02:36:19
SmartBear/readyapi-swagger-assertion-plugin
https://api.github.com/repos/SmartBear/readyapi-swagger-assertion-plugin
opened
CVE-2022-34169 (High) detected in xalan-2.7.2.jar
security vulnerability
## CVE-2022-34169 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>xalan-2.7.2.jar</b></p></summary> <p>Xalan-Java is an XSLT processor for transforming XML documents into HTML, text, or other XML document types. It implements XSL Transformations (XSLT) Version 1.0 and XML Path Language (XPath) Version 1.0 and can be used from the command line, in an applet or a servlet, or as a module in other program.</p> <p>Library home page: <a href="http://xml.apache.org/xalan-j/">http://xml.apache.org/xalan-j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/xalan/xalan/2.7.2/xalan-2.7.2.jar</p> <p> Dependency Hierarchy: - ready-api-soapui-pro-1.7.0.jar (Root Library) - ready-api-soapui-1.7.0.jar - ready-api-core-1.7.0.jar - :x: **xalan-2.7.2.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The Apache Xalan Java XSLT library is vulnerable to an integer truncation issue when processing malicious XSLT stylesheets. This can be used to corrupt Java class files generated by the internal XSLTC compiler and execute arbitrary Java bytecode. The Apache Xalan Java project is dormant and in the process of being retired. No future releases of Apache Xalan Java to address this issue are expected. Note: Java runtimes (such as OpenJDK) include repackaged copies of Xalan. <p>Publish Date: 2022-07-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-34169>CVE-2022-34169</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p>
True
CVE-2022-34169 (High) detected in xalan-2.7.2.jar - ## CVE-2022-34169 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>xalan-2.7.2.jar</b></p></summary> <p>Xalan-Java is an XSLT processor for transforming XML documents into HTML, text, or other XML document types. It implements XSL Transformations (XSLT) Version 1.0 and XML Path Language (XPath) Version 1.0 and can be used from the command line, in an applet or a servlet, or as a module in other program.</p> <p>Library home page: <a href="http://xml.apache.org/xalan-j/">http://xml.apache.org/xalan-j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/xalan/xalan/2.7.2/xalan-2.7.2.jar</p> <p> Dependency Hierarchy: - ready-api-soapui-pro-1.7.0.jar (Root Library) - ready-api-soapui-1.7.0.jar - ready-api-core-1.7.0.jar - :x: **xalan-2.7.2.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The Apache Xalan Java XSLT library is vulnerable to an integer truncation issue when processing malicious XSLT stylesheets. This can be used to corrupt Java class files generated by the internal XSLTC compiler and execute arbitrary Java bytecode. The Apache Xalan Java project is dormant and in the process of being retired. No future releases of Apache Xalan Java to address this issue are expected. Note: Java runtimes (such as OpenJDK) include repackaged copies of Xalan. <p>Publish Date: 2022-07-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-34169>CVE-2022-34169</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p>
non_priority
cve high detected in xalan jar cve high severity vulnerability vulnerable library xalan jar xalan java is an xslt processor for transforming xml documents into html text or other xml document types it implements xsl transformations xslt version and xml path language xpath version and can be used from the command line in an applet or a servlet or as a module in other program library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository xalan xalan xalan jar dependency hierarchy ready api soapui pro jar root library ready api soapui jar ready api core jar x xalan jar vulnerable library found in base branch master vulnerability details the apache xalan java xslt library is vulnerable to an integer truncation issue when processing malicious xslt stylesheets this can be used to corrupt java class files generated by the internal xsltc compiler and execute arbitrary java bytecode the apache xalan java project is dormant and in the process of being retired no future releases of apache xalan java to address this issue are expected note java runtimes such as openjdk include repackaged copies of xalan publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href
0
226,473
7,519,784,665
IssuesEvent
2018-04-12 12:45:28
wordpress-mobile/AztecEditor-Android
https://api.github.com/repos/wordpress-mobile/AztecEditor-Android
closed
Crash report wpandroid 9.6: IOOB in AztecText.onTextContextMenuItem
Groundskeeping bug high priority
WPAndroid 9.6 / Aztec 1.3 ``` Fatal Exception: java.lang.IndexOutOfBoundsException: 32, -31 at android.text.PackedIntVector.deleteAt(PackedIntVector.java:222) at android.text.DynamicLayout.reflow(DynamicLayout.java:317) at android.text.DynamicLayout.-wrap0(Unknown Source) at android.text.DynamicLayout$ChangeWatcher.reflow(DynamicLayout.java:752) at android.text.DynamicLayout$ChangeWatcher.onSpanChanged(DynamicLayout.java:781) at android.text.SpannableStringBuilder.sendSpanChanged(SpannableStringBuilder.java:1292) at android.text.SpannableStringBuilder.sendToSpanWatchers(SpannableStringBuilder.java:647) at android.text.SpannableStringBuilder.replace(SpannableStringBuilder.java:577) at android.text.SpannableStringBuilder.replace(SpannableStringBuilder.java:504) at android.text.SpannableStringBuilder.replace(SpannableStringBuilder.java:502) at android.widget.TextView.paste(TextView.java:11193) at android.widget.TextView.onTextContextMenuItem(TextView.java:10841) at org.wordpress.aztec.AztecText.onTextContextMenuItem(AztecText.kt:1304) at android.widget.Editor$TextActionModeCallback.onActionItemClicked(Editor.java:3976) at com.android.internal.policy.DecorView$ActionModeCallback2Wrapper.onActionItemClicked(DecorView.java:2459) at com.android.internal.view.FloatingActionMode$3.onMenuItemSelected(FloatingActionMode.java:96) at com.android.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:761) at com.android.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:167) at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:908) at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:898) at com.android.internal.view.FloatingActionMode.lambda$-com_android_internal_view_FloatingActionMode_4856(FloatingActionMode.java:121) at com.android.internal.view.-$Lambda$IoKM3AcgDw3Ok5aFi0zlym2p3IA.$m$0(Unknown Source:4) at com.android.internal.view.-$Lambda$IoKM3AcgDw3Ok5aFi0zlym2p3IA.onMenuItemClick(Unknown Source) at com.android.internal.widget.FloatingToolbar$FloatingToolbarPopup$2.onClick(FloatingToolbar.java:425) at android.view.View.performClick(View.java:6294) at android.view.View$PerformClick.run(View.java:24770) at android.os.Handler.handleCallback(Handler.java:790) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6494) at java.lang.reflect.Method.invoke(Method.java) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807) ```
1.0
Crash report wpandroid 9.6: IOOB in AztecText.onTextContextMenuItem - WPAndroid 9.6 / Aztec 1.3 ``` Fatal Exception: java.lang.IndexOutOfBoundsException: 32, -31 at android.text.PackedIntVector.deleteAt(PackedIntVector.java:222) at android.text.DynamicLayout.reflow(DynamicLayout.java:317) at android.text.DynamicLayout.-wrap0(Unknown Source) at android.text.DynamicLayout$ChangeWatcher.reflow(DynamicLayout.java:752) at android.text.DynamicLayout$ChangeWatcher.onSpanChanged(DynamicLayout.java:781) at android.text.SpannableStringBuilder.sendSpanChanged(SpannableStringBuilder.java:1292) at android.text.SpannableStringBuilder.sendToSpanWatchers(SpannableStringBuilder.java:647) at android.text.SpannableStringBuilder.replace(SpannableStringBuilder.java:577) at android.text.SpannableStringBuilder.replace(SpannableStringBuilder.java:504) at android.text.SpannableStringBuilder.replace(SpannableStringBuilder.java:502) at android.widget.TextView.paste(TextView.java:11193) at android.widget.TextView.onTextContextMenuItem(TextView.java:10841) at org.wordpress.aztec.AztecText.onTextContextMenuItem(AztecText.kt:1304) at android.widget.Editor$TextActionModeCallback.onActionItemClicked(Editor.java:3976) at com.android.internal.policy.DecorView$ActionModeCallback2Wrapper.onActionItemClicked(DecorView.java:2459) at com.android.internal.view.FloatingActionMode$3.onMenuItemSelected(FloatingActionMode.java:96) at com.android.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:761) at com.android.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:167) at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:908) at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:898) at com.android.internal.view.FloatingActionMode.lambda$-com_android_internal_view_FloatingActionMode_4856(FloatingActionMode.java:121) at com.android.internal.view.-$Lambda$IoKM3AcgDw3Ok5aFi0zlym2p3IA.$m$0(Unknown Source:4) at com.android.internal.view.-$Lambda$IoKM3AcgDw3Ok5aFi0zlym2p3IA.onMenuItemClick(Unknown Source) at com.android.internal.widget.FloatingToolbar$FloatingToolbarPopup$2.onClick(FloatingToolbar.java:425) at android.view.View.performClick(View.java:6294) at android.view.View$PerformClick.run(View.java:24770) at android.os.Handler.handleCallback(Handler.java:790) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6494) at java.lang.reflect.Method.invoke(Method.java) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807) ```
priority
crash report wpandroid ioob in aztectext ontextcontextmenuitem wpandroid aztec fatal exception java lang indexoutofboundsexception at android text packedintvector deleteat packedintvector java at android text dynamiclayout reflow dynamiclayout java at android text dynamiclayout unknown source at android text dynamiclayout changewatcher reflow dynamiclayout java at android text dynamiclayout changewatcher onspanchanged dynamiclayout java at android text spannablestringbuilder sendspanchanged spannablestringbuilder java at android text spannablestringbuilder sendtospanwatchers spannablestringbuilder java at android text spannablestringbuilder replace spannablestringbuilder java at android text spannablestringbuilder replace spannablestringbuilder java at android text spannablestringbuilder replace spannablestringbuilder java at android widget textview paste textview java at android widget textview ontextcontextmenuitem textview java at org wordpress aztec aztectext ontextcontextmenuitem aztectext kt at android widget editor textactionmodecallback onactionitemclicked editor java at com android internal policy decorview onactionitemclicked decorview java at com android internal view floatingactionmode onmenuitemselected floatingactionmode java at com android internal view menu menubuilder dispatchmenuitemselected menubuilder java at com android internal view menu menuitemimpl invoke menuitemimpl java at com android internal view menu menubuilder performitemaction menubuilder java at com android internal view menu menubuilder performitemaction menubuilder java at com android internal view floatingactionmode lambda com android internal view floatingactionmode floatingactionmode java at com android internal view lambda m unknown source at com android internal view lambda onmenuitemclick unknown source at com android internal widget floatingtoolbar floatingtoolbarpopup onclick floatingtoolbar java at android view view performclick view java at android view view performclick run view java at android os handler handlecallback handler java at android os handler dispatchmessage handler java at android os looper loop looper java at android app activitythread main activitythread java at java lang reflect method invoke method java at com android internal os runtimeinit methodandargscaller run runtimeinit java at com android internal os zygoteinit main zygoteinit java
1
81,614
7,787,942,131
IssuesEvent
2018-06-07 01:28:01
equella/Equella
https://api.github.com/repos/equella/Equella
closed
New Course permissions editor: Privilege drop down display issue in chrome
Ready for Testing Unreleased bug
The height of the dropdown doesn't seem to be working correctly in chrome, it's fine on edge and firefox ![not big enough](https://user-images.githubusercontent.com/4625498/40754464-dbd96e62-64bc-11e8-8ba9-26913a720f7c.PNG)
1.0
New Course permissions editor: Privilege drop down display issue in chrome - The height of the dropdown doesn't seem to be working correctly in chrome, it's fine on edge and firefox ![not big enough](https://user-images.githubusercontent.com/4625498/40754464-dbd96e62-64bc-11e8-8ba9-26913a720f7c.PNG)
non_priority
new course permissions editor privilege drop down display issue in chrome the height of the dropdown doesn t seem to be working correctly in chrome it s fine on edge and firefox
0
745,891
26,005,782,196
IssuesEvent
2022-12-20 19:12:47
grpc/grpc
https://api.github.com/repos/grpc/grpc
closed
argumentnullexception
kind/bug lang/C# priority/P2 untriaged
<!-- PLEASE DO NOT POST A QUESTION HERE. This form is for bug reports and feature requests ONLY! For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc For questions that specifically need to be answered by gRPC team members, please ask/look for answers at grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new) --> ### What version of gRPC and what language are you using? grpc 2.36.1 csharp ### What operating system (Linux, Windows,...) and version? Windows 19042.867 ### What runtime / compiler are you using (e.g. python version or version of gcc) visual studio 16.9.2 ### What did you do? run UWP in release mode. repo: https://github.com/HppZ/grpc-bug ### What did you expect to see? no argumentnullexception. ### What did you see instead? argumentnullexception occured. Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs). See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better. ### Anything else we should know about your project / environment? ![image](https://user-images.githubusercontent.com/12285582/111904602-b6ab6700-8a82-11eb-846f-9a5b84e7e600.png) related issue: https://github.com/grpc/grpc/issues/18188
1.0
argumentnullexception - <!-- PLEASE DO NOT POST A QUESTION HERE. This form is for bug reports and feature requests ONLY! For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc For questions that specifically need to be answered by gRPC team members, please ask/look for answers at grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new) --> ### What version of gRPC and what language are you using? grpc 2.36.1 csharp ### What operating system (Linux, Windows,...) and version? Windows 19042.867 ### What runtime / compiler are you using (e.g. python version or version of gcc) visual studio 16.9.2 ### What did you do? run UWP in release mode. repo: https://github.com/HppZ/grpc-bug ### What did you expect to see? no argumentnullexception. ### What did you see instead? argumentnullexception occured. Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs). See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better. ### Anything else we should know about your project / environment? ![image](https://user-images.githubusercontent.com/12285582/111904602-b6ab6700-8a82-11eb-846f-9a5b84e7e600.png) related issue: https://github.com/grpc/grpc/issues/18188
priority
argumentnullexception please do not post a question here this form is for bug reports and feature requests only for general questions and troubleshooting please ask look for answers at stackoverflow with grpc tag for questions that specifically need to be answered by grpc team members please ask look for answers at grpc io mailing list issues specific to grpc java grpc go grpc node grpc dart grpc web should be created in the repository they belong to e g what version of grpc and what language are you using grpc csharp what operating system linux windows and version windows what runtime compiler are you using e g python version or version of gcc visual studio what did you do run uwp in release mode repo what did you expect to see no argumentnullexception what did you see instead argumentnullexception occured make sure you include information that can help us debug full error message exception listing stack trace logs see for how to diagnose problems better anything else we should know about your project environment related issue
1
803,566
29,183,007,934
IssuesEvent
2023-05-19 13:23:03
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.coursera.org - site is not usable
status-needsinfo browser-firefox priority-important os-mac engine-gecko
<!-- @browser: Firefox 113.0 --> <!-- @ua_header: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/113.0 --> <!-- @reported_with: desktop-reporter --> **URL**: https://www.coursera.org/learn/foundations-user-experience-design/supplement/Otp7y/the-product-development-life-cycle **Browser / Version**: Firefox 113.0 **Operating System**: Mac OS X 10.15 **Tested Another Browser**: Yes Edge **Problem type**: Site is not usable **Description**: Page not loading correctly **Steps to Reproduce**: I can't scroll the page down, fixed on the top. <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2023/5/3e8d481c-4e4c-489a-9ec6-11cd3aa6a01b.jpg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20230416180020</li><li>channel: aurora</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2023/5/f3f2ec23-2323-415e-bab8-abd728bdd420) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.coursera.org - site is not usable - <!-- @browser: Firefox 113.0 --> <!-- @ua_header: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/113.0 --> <!-- @reported_with: desktop-reporter --> **URL**: https://www.coursera.org/learn/foundations-user-experience-design/supplement/Otp7y/the-product-development-life-cycle **Browser / Version**: Firefox 113.0 **Operating System**: Mac OS X 10.15 **Tested Another Browser**: Yes Edge **Problem type**: Site is not usable **Description**: Page not loading correctly **Steps to Reproduce**: I can't scroll the page down, fixed on the top. <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2023/5/3e8d481c-4e4c-489a-9ec6-11cd3aa6a01b.jpg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20230416180020</li><li>channel: aurora</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2023/5/f3f2ec23-2323-415e-bab8-abd728bdd420) _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
site is not usable url browser version firefox operating system mac os x tested another browser yes edge problem type site is not usable description page not loading correctly steps to reproduce i can t scroll the page down fixed on the top view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel aurora hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
1
387,624
11,463,671,084
IssuesEvent
2020-02-07 16:26:44
aragon/aragon-cli
https://api.github.com/repos/aragon/aragon-cli
closed
Warn user if their mainnet ENS registry configuration points to the old registry
:skull: security 🦅 flock/nest high priority
See [ENS migration](https://medium.com/the-ethereum-name-service/ens-registry-migration-bug-fix-new-features-64379193a5a). Many old Aragon app repos will undoubtedly have the old ENS registry hardcoded in their `arapp.json` configuration. We should detect this for mainnet configurations and: 1. Switch to the new registry address 2. Warn the user that they should update their configuration to use the new registry address.
1.0
Warn user if their mainnet ENS registry configuration points to the old registry - See [ENS migration](https://medium.com/the-ethereum-name-service/ens-registry-migration-bug-fix-new-features-64379193a5a). Many old Aragon app repos will undoubtedly have the old ENS registry hardcoded in their `arapp.json` configuration. We should detect this for mainnet configurations and: 1. Switch to the new registry address 2. Warn the user that they should update their configuration to use the new registry address.
priority
warn user if their mainnet ens registry configuration points to the old registry see many old aragon app repos will undoubtedly have the old ens registry hardcoded in their arapp json configuration we should detect this for mainnet configurations and switch to the new registry address warn the user that they should update their configuration to use the new registry address
1
252,761
8,041,479,354
IssuesEvent
2018-07-31 03:12:57
CameraKit/camerakit-android
https://api.github.com/repos/CameraKit/camerakit-android
closed
Create new istance without preview
Priority: High
<!-- PLEASE DON'T DELETE THIS TEMPLATE UNTIL YOU HAVE READ THE FIRST SECTION. --> ### Is this a bug report? Yes <!-- If you answered "Yes": We expect that it will take you about 30 minutes to produce a high-quality bug report. While this may seem like a lot, putting care into issues helps us fix them faster. For bug reports, it is REQUIRED to fill the rest of this template, or the issue will be closed. If you answered "No": We use GitHub Issues exclusively for tracking bugs in CameraKit. If you're looking for help, the Community page at https://github.com/wonderkiln/CameraKit-Android list various resources that should help you get started. Now scroll below! --> ### Have you read the [Contributing Guidelines](.github/CONTRIBUTING.md)? Yes ### Environment ### Steps to Reproduce <!-- How would you describe your issue to someone who doesn’t know you or your project? Try to write a sequence of steps that anybody can repeat to see the issue. Be specific! If the bug cannot be reproduced, your issue may be closed. --> (Write your steps here:) 1. Create a new CameraView instance with cameraview = new CameraView(this) 2. start camera 3. take a photo ### Expected Behavior <!-- How did you expect your project to behave? It’s fine if you’re not sure your understanding is correct. Just write down what you thought would happen. --> get a photo ### Actual Behavior <!-- Did something go wrong? Is something broken, or not behaving as you expected? Describe this section in detail, and attach screenshots if possible. Don't just say "it doesn't work"! --> Crash error: FATAL EXCEPTION: CameraViewWorker after onImage event the app crash ### Reproducible Demo <!-- Please share a project that reproduces the issue. --> (Paste the link to an example project and exact instructions to reproduce the issue.) <!-- What happens if you skip this step? Someone will read your bug report, and maybe will be able to help you, but it’s unlikely that it will get much attention from the team. Eventually, the issue will likely get closed in favor of issues that have reproducible demos. Please remember that: * Issues without reproducible demos have a very low priority. * The person fixing the bug would have to do that anyway. Please be respectful of their time. * You might figure out the issues yourself as you work on extracting it. Thanks for helping us help you! --> <!-- Love CameraKit-Android? Please consider supporting our collective: 👉 https://opencollective.com/CameraKit-Android/donate -->
1.0
Create new istance without preview - <!-- PLEASE DON'T DELETE THIS TEMPLATE UNTIL YOU HAVE READ THE FIRST SECTION. --> ### Is this a bug report? Yes <!-- If you answered "Yes": We expect that it will take you about 30 minutes to produce a high-quality bug report. While this may seem like a lot, putting care into issues helps us fix them faster. For bug reports, it is REQUIRED to fill the rest of this template, or the issue will be closed. If you answered "No": We use GitHub Issues exclusively for tracking bugs in CameraKit. If you're looking for help, the Community page at https://github.com/wonderkiln/CameraKit-Android list various resources that should help you get started. Now scroll below! --> ### Have you read the [Contributing Guidelines](.github/CONTRIBUTING.md)? Yes ### Environment ### Steps to Reproduce <!-- How would you describe your issue to someone who doesn’t know you or your project? Try to write a sequence of steps that anybody can repeat to see the issue. Be specific! If the bug cannot be reproduced, your issue may be closed. --> (Write your steps here:) 1. Create a new CameraView instance with cameraview = new CameraView(this) 2. start camera 3. take a photo ### Expected Behavior <!-- How did you expect your project to behave? It’s fine if you’re not sure your understanding is correct. Just write down what you thought would happen. --> get a photo ### Actual Behavior <!-- Did something go wrong? Is something broken, or not behaving as you expected? Describe this section in detail, and attach screenshots if possible. Don't just say "it doesn't work"! --> Crash error: FATAL EXCEPTION: CameraViewWorker after onImage event the app crash ### Reproducible Demo <!-- Please share a project that reproduces the issue. --> (Paste the link to an example project and exact instructions to reproduce the issue.) <!-- What happens if you skip this step? Someone will read your bug report, and maybe will be able to help you, but it’s unlikely that it will get much attention from the team. Eventually, the issue will likely get closed in favor of issues that have reproducible demos. Please remember that: * Issues without reproducible demos have a very low priority. * The person fixing the bug would have to do that anyway. Please be respectful of their time. * You might figure out the issues yourself as you work on extracting it. Thanks for helping us help you! --> <!-- Love CameraKit-Android? Please consider supporting our collective: 👉 https://opencollective.com/CameraKit-Android/donate -->
priority
create new istance without preview please don t delete this template until you have read the first section is this a bug report yes if you answered yes we expect that it will take you about minutes to produce a high quality bug report while this may seem like a lot putting care into issues helps us fix them faster for bug reports it is required to fill the rest of this template or the issue will be closed if you answered no we use github issues exclusively for tracking bugs in camerakit if you re looking for help the community page at list various resources that should help you get started now scroll below have you read the github contributing md yes environment steps to reproduce how would you describe your issue to someone who doesn’t know you or your project try to write a sequence of steps that anybody can repeat to see the issue be specific if the bug cannot be reproduced your issue may be closed write your steps here create a new cameraview instance with cameraview new cameraview this start camera take a photo expected behavior how did you expect your project to behave it’s fine if you’re not sure your understanding is correct just write down what you thought would happen get a photo actual behavior did something go wrong is something broken or not behaving as you expected describe this section in detail and attach screenshots if possible don t just say it doesn t work crash error fatal exception cameraviewworker after onimage event the app crash reproducible demo please share a project that reproduces the issue paste the link to an example project and exact instructions to reproduce the issue what happens if you skip this step someone will read your bug report and maybe will be able to help you but it’s unlikely that it will get much attention from the team eventually the issue will likely get closed in favor of issues that have reproducible demos please remember that issues without reproducible demos have a very low priority the person fixing the bug would have to do that anyway please be respectful of their time you might figure out the issues yourself as you work on extracting it thanks for helping us help you love camerakit android please consider supporting our collective 👉
1
267,959
23,335,909,970
IssuesEvent
2022-08-09 09:54:49
microsoft/AzureStorageExplorer
https://api.github.com/repos/microsoft/AzureStorageExplorer
closed
A loading icon always displays in the editor of one non-empty blob container/queue against the language 'Hungarian'
🧪 testing :gear: blobs :gear: queues :beetle: regression :globe_with_meridians: localization
**Storage Explorer Version**: 1.26.0-dev **Build Number**: 20220808.1 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 22.04/MacOS Monterey 12.5 (Apple M1 Pro) **Reproduce Languages**: Hungarian **Architecture**: ia32/x64 **How Found**: Verifying bug 5269 **Regression From**: Previous release (1.24.3) ## Steps to Reproduce ## 1. Launch Storage Explorer -> Open 'Settings' -> 'Application -> Regional Settings'. 2. Select 'magyar' -> Restart Storage Explorer. 3. Expand one non-ADLS Gen2 storage account -> Blob Container. 4. Open one non-empty blob container. 5. Check no loading icon displays in the editor. ## Expected Experience ## No loading icon displays in the editor. ## Actual Experience ## A loading icon always displays in the editor. ![image](https://user-images.githubusercontent.com/41351993/183364222-a726392d-6488-42a4-9840-2b904ff31c3c.png) ## Additional Context ## 1. Verified this issue on all languages, it only reproduces on 'Hungarian'. 2. Here is the log: [2022-08-08_005447.zip](https://github.com/microsoft/AzureStorageExplorer/files/9279954/2022-08-08_005447.zip)
1.0
A loading icon always displays in the editor of one non-empty blob container/queue against the language 'Hungarian' - **Storage Explorer Version**: 1.26.0-dev **Build Number**: 20220808.1 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 22.04/MacOS Monterey 12.5 (Apple M1 Pro) **Reproduce Languages**: Hungarian **Architecture**: ia32/x64 **How Found**: Verifying bug 5269 **Regression From**: Previous release (1.24.3) ## Steps to Reproduce ## 1. Launch Storage Explorer -> Open 'Settings' -> 'Application -> Regional Settings'. 2. Select 'magyar' -> Restart Storage Explorer. 3. Expand one non-ADLS Gen2 storage account -> Blob Container. 4. Open one non-empty blob container. 5. Check no loading icon displays in the editor. ## Expected Experience ## No loading icon displays in the editor. ## Actual Experience ## A loading icon always displays in the editor. ![image](https://user-images.githubusercontent.com/41351993/183364222-a726392d-6488-42a4-9840-2b904ff31c3c.png) ## Additional Context ## 1. Verified this issue on all languages, it only reproduces on 'Hungarian'. 2. Here is the log: [2022-08-08_005447.zip](https://github.com/microsoft/AzureStorageExplorer/files/9279954/2022-08-08_005447.zip)
non_priority
a loading icon always displays in the editor of one non empty blob container queue against the language hungarian storage explorer version dev build number branch main platform os windows linux ubuntu macos monterey apple pro reproduce languages hungarian architecture how found verifying bug regression from previous release steps to reproduce launch storage explorer open settings application regional settings select magyar restart storage explorer expand one non adls storage account blob container open one non empty blob container check no loading icon displays in the editor expected experience no loading icon displays in the editor actual experience a loading icon always displays in the editor additional context verified this issue on all languages it only reproduces on hungarian here is the log
0
142,034
5,451,825,775
IssuesEvent
2017-03-08 00:33:10
chrisblakley/Nebula
https://api.github.com/repos/chrisblakley/Nebula
closed
Theme Data JSON File isn't updating again
Backend (Server) Bug High Priority
Haven't looked into it yet, but the JSON file containing theme data (such as version number) is no longer updating again.
1.0
Theme Data JSON File isn't updating again - Haven't looked into it yet, but the JSON file containing theme data (such as version number) is no longer updating again.
priority
theme data json file isn t updating again haven t looked into it yet but the json file containing theme data such as version number is no longer updating again
1
256,561
19,427,857,377
IssuesEvent
2021-12-21 08:30:00
Blushtones/testing
https://api.github.com/repos/Blushtones/testing
closed
how to use this repository in(with) another GitHub repository
documentation
not sure how to do this, maybe overthinking it @caprenter
1.0
how to use this repository in(with) another GitHub repository - not sure how to do this, maybe overthinking it @caprenter
non_priority
how to use this repository in with another github repository not sure how to do this maybe overthinking it caprenter
0
444,163
31,024,627,555
IssuesEvent
2023-08-10 08:18:09
adevinta/spark
https://api.github.com/repos/adevinta/spark
closed
[Components] Update RadioGroup documentation
documentation
### Documentation update Update the component documentation following the latests changes of our [guide](https://sparkui.vercel.app/?path=/docs/contributing-writing-packages-documentation--docs)
1.0
[Components] Update RadioGroup documentation - ### Documentation update Update the component documentation following the latests changes of our [guide](https://sparkui.vercel.app/?path=/docs/contributing-writing-packages-documentation--docs)
non_priority
update radiogroup documentation documentation update update the component documentation following the latests changes of our
0
516,205
14,977,050,357
IssuesEvent
2021-01-28 08:58:41
bounswe/bounswe2020group5
https://api.github.com/repos/bounswe/bounswe2020group5
closed
backend/ Implementing the chat services
Priority: High Status: In Progress assignment backend
We need to implement the chat services and endpoints in backend
1.0
backend/ Implementing the chat services - We need to implement the chat services and endpoints in backend
priority
backend implementing the chat services we need to implement the chat services and endpoints in backend
1
210,593
16,375,373,286
IssuesEvent
2021-05-16 01:12:46
Rah-Faf/github-slideshow
https://api.github.com/repos/Rah-Faf/github-slideshow
closed
Time Management Techniques
documentation
Objectives: - prioritize objectives and goals - adopt techniques for organizing work - keep a to-do list - keep focused and manage distractions - build in buffers - plan ahead - review what you've done -
1.0
Time Management Techniques - Objectives: - prioritize objectives and goals - adopt techniques for organizing work - keep a to-do list - keep focused and manage distractions - build in buffers - plan ahead - review what you've done -
non_priority
time management techniques objectives prioritize objectives and goals adopt techniques for organizing work keep a to do list keep focused and manage distractions build in buffers plan ahead review what you ve done
0
69,676
30,440,748,863
IssuesEvent
2023-07-15 03:13:17
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
Error with hardcoded image versions in ingress-nginx howto
triaged cxp doc-enhancement Pri1 awaiting-customer-response azure-kubernetes-service/svc aks-networking/subsvc
Hi, the settings in the page give the ingress-nginx error, referred to here: [https://github.com/kubernetes/ingress-nginx/issues/9928](https://github.com/kubernetes/ingress-nginx/issues/9928) E0712 15:44:57.996314 8 leaderelection.go:334] error initially creating leader election record: configmaps is forbidden: User "system:serviceaccount:ingress-nginx:ingress-nginx" cannot create resource "configmaps" in API group "" in the namespace "ingress-nginx" Things seem to work ok if you take helm 4.7.1 and not override the default image versions --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.* * ID: fd0e7d5a-37e9-07dc-f395-9cb5bb580e45 * Version Independent ID: 7e4faf70-9724-7e7b-832b-1cd99a974920 * Content: [Create an ingress controller in Azure Kubernetes Service (AKS) - Azure Kubernetes Service](https://learn.microsoft.com/en-us/azure/aks/ingress-basic?tabs=azure-cli) * Content Source: [articles/aks/ingress-basic.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/aks/ingress-basic.md) * Service: **azure-kubernetes-service** * Sub-service: **aks-networking** * GitHub Login: @asudbring * Microsoft Alias: **allensu**
1.0
Error with hardcoded image versions in ingress-nginx howto - Hi, the settings in the page give the ingress-nginx error, referred to here: [https://github.com/kubernetes/ingress-nginx/issues/9928](https://github.com/kubernetes/ingress-nginx/issues/9928) E0712 15:44:57.996314 8 leaderelection.go:334] error initially creating leader election record: configmaps is forbidden: User "system:serviceaccount:ingress-nginx:ingress-nginx" cannot create resource "configmaps" in API group "" in the namespace "ingress-nginx" Things seem to work ok if you take helm 4.7.1 and not override the default image versions --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.* * ID: fd0e7d5a-37e9-07dc-f395-9cb5bb580e45 * Version Independent ID: 7e4faf70-9724-7e7b-832b-1cd99a974920 * Content: [Create an ingress controller in Azure Kubernetes Service (AKS) - Azure Kubernetes Service](https://learn.microsoft.com/en-us/azure/aks/ingress-basic?tabs=azure-cli) * Content Source: [articles/aks/ingress-basic.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/aks/ingress-basic.md) * Service: **azure-kubernetes-service** * Sub-service: **aks-networking** * GitHub Login: @asudbring * Microsoft Alias: **allensu**
non_priority
error with hardcoded image versions in ingress nginx howto hi the settings in the page give the ingress nginx error referred to here leaderelection go error initially creating leader election record configmaps is forbidden user system serviceaccount ingress nginx ingress nginx cannot create resource configmaps in api group in the namespace ingress nginx things seem to work ok if you take helm and not override the default image versions document details ⚠ do not edit this section it is required for learn microsoft com ➟ github issue linking id version independent id content content source service azure kubernetes service sub service aks networking github login asudbring microsoft alias allensu
0
70,258
23,080,654,898
IssuesEvent
2022-07-26 06:51:08
zed-industries/feedback
https://api.github.com/repos/zed-industries/feedback
closed
Go formatting does not work unless there's a final newline
defect language / framework
### Check for existing issues - [X] Completed ### Describe the bug Go formatting does not work unless the file contains a final newline. This is evident by the fact that a unformatted document does not format upon save. Adding a final newline, successfully formats the document upon saving it. ### To reproduce 1. `mkdir -p test-case && cd test-case && go mod init testcase.zed.dev && touch main.go && zed .` 2. Navigate to `main.go` and paste the following: ```golang package main import "fmt" func main() { fmt.Println("Hello, world!") } ``` 3. Save the document. ### Expected behavior It should correctly format the document even when there's no final newline. ### Environment Zed 0.48.1 – /Applications/Zed.app macOS 12.4 architecture arm64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature In the video below I deliberately break the formatting of the file and save. Nothing happens. By appending a final newline and saving the document again, the file successfully gets formatted. https://user-images.githubusercontent.com/503025/180074233-09d983fa-c78b-45b0-ad69-5970f52f8333.mov ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue [Zed.log](https://github.com/zed-industries/feedback/files/9154255/Zed.log)
1.0
Go formatting does not work unless there's a final newline - ### Check for existing issues - [X] Completed ### Describe the bug Go formatting does not work unless the file contains a final newline. This is evident by the fact that a unformatted document does not format upon save. Adding a final newline, successfully formats the document upon saving it. ### To reproduce 1. `mkdir -p test-case && cd test-case && go mod init testcase.zed.dev && touch main.go && zed .` 2. Navigate to `main.go` and paste the following: ```golang package main import "fmt" func main() { fmt.Println("Hello, world!") } ``` 3. Save the document. ### Expected behavior It should correctly format the document even when there's no final newline. ### Environment Zed 0.48.1 – /Applications/Zed.app macOS 12.4 architecture arm64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature In the video below I deliberately break the formatting of the file and save. Nothing happens. By appending a final newline and saving the document again, the file successfully gets formatted. https://user-images.githubusercontent.com/503025/180074233-09d983fa-c78b-45b0-ad69-5970f52f8333.mov ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue [Zed.log](https://github.com/zed-industries/feedback/files/9154255/Zed.log)
non_priority
go formatting does not work unless there s a final newline check for existing issues completed describe the bug go formatting does not work unless the file contains a final newline this is evident by the fact that a unformatted document does not format upon save adding a final newline successfully formats the document upon saving it to reproduce mkdir p test case cd test case go mod init testcase zed dev touch main go zed navigate to main go and paste the following golang package main import fmt func main fmt println hello world save the document expected behavior it should correctly format the document even when there s no final newline environment zed – applications zed app macos architecture if applicable add mockups screenshots to help explain present your vision of the feature in the video below i deliberately break the formatting of the file and save nothing happens by appending a final newline and saving the document again the file successfully gets formatted if applicable attach your library logs zed zed log file to this issue
0
284,343
8,737,422,816
IssuesEvent
2018-12-11 22:31:34
trimstray/multitor
https://api.github.com/repos/trimstray/multitor
closed
privoxy not run in arch linux with multitor
Priority: Medium Status: Completed Type: Bug
I have the problem that privoxy does not work command: multitor --init 2 -u misec --socks-port 9000 --control-port 9900 --proxy privoxy the working processes: [ root ]# netstat -tapn | grep LISTEN | grep "tor\|haproxy\|polipo\|privoxy\|node" tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 2237/tor tcp 0 0 127.0.0.1:9001 0.0.0.0:* LISTEN 2296/tor tcp 0 0 127.0.0.1:9900 0.0.0.0:* LISTEN 2237/tor tcp 0 0 127.0.0.1:9901 0.0.0.0:* LISTEN 2296/tor tcp 0 0 127.0.0.1:9050 0.0.0.0:* LISTEN 14827/tor tcp 0 0 127.0.0.1:16379 0.0.0.0:* LISTEN 2395/haproxy tcp 0 0 127.0.0.1:16380 0.0.0.0:* LISTEN 2395/haproxy privoxy only works if I run it manually with the configuration file of the /multitor/etc directory /usr/bin/privoxy --no-daemon privoxy.cfg what is happening?
1.0
privoxy not run in arch linux with multitor - I have the problem that privoxy does not work command: multitor --init 2 -u misec --socks-port 9000 --control-port 9900 --proxy privoxy the working processes: [ root ]# netstat -tapn | grep LISTEN | grep "tor\|haproxy\|polipo\|privoxy\|node" tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 2237/tor tcp 0 0 127.0.0.1:9001 0.0.0.0:* LISTEN 2296/tor tcp 0 0 127.0.0.1:9900 0.0.0.0:* LISTEN 2237/tor tcp 0 0 127.0.0.1:9901 0.0.0.0:* LISTEN 2296/tor tcp 0 0 127.0.0.1:9050 0.0.0.0:* LISTEN 14827/tor tcp 0 0 127.0.0.1:16379 0.0.0.0:* LISTEN 2395/haproxy tcp 0 0 127.0.0.1:16380 0.0.0.0:* LISTEN 2395/haproxy privoxy only works if I run it manually with the configuration file of the /multitor/etc directory /usr/bin/privoxy --no-daemon privoxy.cfg what is happening?
priority
privoxy not run in arch linux with multitor i have the problem that privoxy does not work command multitor init u misec socks port control port proxy privoxy the working processes netstat tapn grep listen grep tor haproxy polipo privoxy node tcp listen tor tcp listen tor tcp listen tor tcp listen tor tcp listen tor tcp listen haproxy tcp listen haproxy privoxy only works if i run it manually with the configuration file of the multitor etc directory usr bin privoxy no daemon privoxy cfg what is happening
1
590,584
17,781,810,291
IssuesEvent
2021-08-31 06:04:50
gardener/gardener-extension-provider-azure
https://api.github.com/repos/gardener/gardener-extension-provider-azure
closed
Shoot with VMO (VMSS Flex) cannot be deleted when the underlying resource group is deleted
area/quality kind/bug platform/azure priority/3
/area quality /kind bug /priority 3 /platform azure **What happened**: Shoot with VMO (VMSS Flex) cannot be deleted when the underlying resource group is deleted **What you expected to happen**: Shoot with VMO (VMSS Flex) to be deleted when the underlying resource group is deleted **How to reproduce it (as minimally and precisely as possible)**: 1. Create Shoot with VMO (VMSS Flex) 2. Delete manually the underlying resource group 3. Make sure that the Worker deletion fails with: ```yaml status: lastError: codes: - ERR_CONFIGURATION_PROBLEM description: 'Error deleting worker: failed to cleanup machine dependencies: compute.VirtualMachineScaleSetsClient#List: Failure responding to request: StatusCode=404 -- Original Error: autorest/azure: Service returned an error. Status=404 Code="ResourceGroupNotFound" Message="Resource group ''shoot--foo--bar' could not be found."' ``` **Anything else we need to know?**: See also https://github.com/gardener/machine-controller-manager-provider-azure/issues/19 **Environment**: - Gardener version (if relevant): - Extension version: v1.21.2 - Kubernetes version (use `kubectl version`): - Cloud provider or hardware configuration: - Others:
1.0
Shoot with VMO (VMSS Flex) cannot be deleted when the underlying resource group is deleted - /area quality /kind bug /priority 3 /platform azure **What happened**: Shoot with VMO (VMSS Flex) cannot be deleted when the underlying resource group is deleted **What you expected to happen**: Shoot with VMO (VMSS Flex) to be deleted when the underlying resource group is deleted **How to reproduce it (as minimally and precisely as possible)**: 1. Create Shoot with VMO (VMSS Flex) 2. Delete manually the underlying resource group 3. Make sure that the Worker deletion fails with: ```yaml status: lastError: codes: - ERR_CONFIGURATION_PROBLEM description: 'Error deleting worker: failed to cleanup machine dependencies: compute.VirtualMachineScaleSetsClient#List: Failure responding to request: StatusCode=404 -- Original Error: autorest/azure: Service returned an error. Status=404 Code="ResourceGroupNotFound" Message="Resource group ''shoot--foo--bar' could not be found."' ``` **Anything else we need to know?**: See also https://github.com/gardener/machine-controller-manager-provider-azure/issues/19 **Environment**: - Gardener version (if relevant): - Extension version: v1.21.2 - Kubernetes version (use `kubectl version`): - Cloud provider or hardware configuration: - Others:
priority
shoot with vmo vmss flex cannot be deleted when the underlying resource group is deleted area quality kind bug priority platform azure what happened shoot with vmo vmss flex cannot be deleted when the underlying resource group is deleted what you expected to happen shoot with vmo vmss flex to be deleted when the underlying resource group is deleted how to reproduce it as minimally and precisely as possible create shoot with vmo vmss flex delete manually the underlying resource group make sure that the worker deletion fails with yaml status lasterror codes err configuration problem description error deleting worker failed to cleanup machine dependencies compute virtualmachinescalesetsclient list failure responding to request statuscode original error autorest azure service returned an error status code resourcegroupnotfound message resource group shoot foo bar could not be found anything else we need to know see also environment gardener version if relevant extension version kubernetes version use kubectl version cloud provider or hardware configuration others
1
720,297
24,787,124,377
IssuesEvent
2022-10-24 10:44:38
poja/RL
https://api.github.com/repos/poja/RL
closed
ValueFunc: use caching of (pos, (val, probs))
priority-medium
Need to share cache between players on self play, and across threads
1.0
ValueFunc: use caching of (pos, (val, probs)) - Need to share cache between players on self play, and across threads
priority
valuefunc use caching of pos val probs need to share cache between players on self play and across threads
1
107,094
23,346,086,500
IssuesEvent
2022-08-09 18:07:02
WordPress/openverse-frontend
https://api.github.com/repos/WordPress/openverse-frontend
closed
Rollback script only looks at most recent 10 versions of the frontend image
🟧 priority: high 🛠 goal: fix 💻 aspect: code
## Description <!-- Concisely describe the bug. Compare your experience with what you expected to happen. --> <!-- For example: "I clicked the 'submit' button and instead of seeing a thank you message, I saw a blank page." --> If you try to rollback to a valid version that is not on the first page of results the rollback workflow will fail: https://github.com/WordPress/openverse-frontend/actions/runs/2803805784 ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. <!-- Step 1 ... --> Dispatch the rollback workflow to a valid version that is not on the first page of results from the package version endpoint 2. <!-- Step 2 ... --> See the failure from the link in the description. ## Resolution <!-- Replace the [ ] with [x] to check the box. --> - [ ] 🙋 I would be interested in resolving this bug.
1.0
Rollback script only looks at most recent 10 versions of the frontend image - ## Description <!-- Concisely describe the bug. Compare your experience with what you expected to happen. --> <!-- For example: "I clicked the 'submit' button and instead of seeing a thank you message, I saw a blank page." --> If you try to rollback to a valid version that is not on the first page of results the rollback workflow will fail: https://github.com/WordPress/openverse-frontend/actions/runs/2803805784 ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. <!-- Step 1 ... --> Dispatch the rollback workflow to a valid version that is not on the first page of results from the package version endpoint 2. <!-- Step 2 ... --> See the failure from the link in the description. ## Resolution <!-- Replace the [ ] with [x] to check the box. --> - [ ] 🙋 I would be interested in resolving this bug.
non_priority
rollback script only looks at most recent versions of the frontend image description if you try to rollback to a valid version that is not on the first page of results the rollback workflow will fail reproduction dispatch the rollback workflow to a valid version that is not on the first page of results from the package version endpoint see the failure from the link in the description resolution 🙋 i would be interested in resolving this bug
0
186,955
14,426,868,445
IssuesEvent
2020-12-06 00:28:37
kalexmills/github-vet-tests-dec2020
https://api.github.com/repos/kalexmills/github-vet-tests-dec2020
closed
munnerz/k8s-api-pager-demo: vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go; 6 LoC
fresh test tiny vendored
Found a possible issue in [munnerz/k8s-api-pager-demo](https://www.github.com/munnerz/k8s-api-pager-demo) at [vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go](https://github.com/munnerz/k8s-api-pager-demo/blob/c4470dbbc304d9f165df0b77ae15da170b07b16a/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L71) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to v at line 68 may start a goroutine [Click here to see the code in its original context.](https://github.com/munnerz/k8s-api-pager-demo/blob/c4470dbbc304d9f165df0b77ae15da170b07b16a/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L71) <details> <summary>Click here to show the 6 line(s) of Go which triggered the analyzer.</summary> ```go for k, v := range cases { actual := ErrorToAPIStatus(k) if !reflect.DeepEqual(actual, &v) { t.Errorf("%s: Expected %#v, Got %#v", k, v, actual) } } ``` </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: c4470dbbc304d9f165df0b77ae15da170b07b16a
1.0
munnerz/k8s-api-pager-demo: vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go; 6 LoC - Found a possible issue in [munnerz/k8s-api-pager-demo](https://www.github.com/munnerz/k8s-api-pager-demo) at [vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go](https://github.com/munnerz/k8s-api-pager-demo/blob/c4470dbbc304d9f165df0b77ae15da170b07b16a/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L71) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to v at line 68 may start a goroutine [Click here to see the code in its original context.](https://github.com/munnerz/k8s-api-pager-demo/blob/c4470dbbc304d9f165df0b77ae15da170b07b16a/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L71) <details> <summary>Click here to show the 6 line(s) of Go which triggered the analyzer.</summary> ```go for k, v := range cases { actual := ErrorToAPIStatus(k) if !reflect.DeepEqual(actual, &v) { t.Errorf("%s: Expected %#v, Got %#v", k, v, actual) } } ``` </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: c4470dbbc304d9f165df0b77ae15da170b07b16a
non_priority
munnerz api pager demo vendor io apiserver pkg endpoints handlers responsewriters status test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call which takes a reference to v at line may start a goroutine click here to show the line s of go which triggered the analyzer go for k v range cases actual errortoapistatus k if reflect deepequal actual v t errorf s expected v got v k v actual 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
227,356
7,531,292,867
IssuesEvent
2018-04-15 03:37:50
MrBlizzard/RCAdmins-Tracker
https://api.github.com/repos/MrBlizzard/RCAdmins-Tracker
opened
[Perms] Rank perms required to create Vote Crates
awaiting information priority:low
Admin is able to create vote, vip, PokemonEgg and FossilEgg crates, however Deity and Challenger cannot. No confirmed information on other ranks, further information needed.
1.0
[Perms] Rank perms required to create Vote Crates - Admin is able to create vote, vip, PokemonEgg and FossilEgg crates, however Deity and Challenger cannot. No confirmed information on other ranks, further information needed.
priority
rank perms required to create vote crates admin is able to create vote vip pokemonegg and fossilegg crates however deity and challenger cannot no confirmed information on other ranks further information needed
1
324,136
9,884,456,075
IssuesEvent
2019-06-24 22:13:19
kubernetes-sigs/kind
https://api.github.com/repos/kubernetes-sigs/kind
closed
Make kind load docker-image only load if the image is not already on the nodes
kind/feature priority/important-longterm
Currently `kind load docker-image` always tars up the image and sends it, even if the nodes already contains the exact image. To make image loading faster, Kind should look at the image ID and only load over the image if the nodes don't have it yet.
1.0
Make kind load docker-image only load if the image is not already on the nodes - Currently `kind load docker-image` always tars up the image and sends it, even if the nodes already contains the exact image. To make image loading faster, Kind should look at the image ID and only load over the image if the nodes don't have it yet.
priority
make kind load docker image only load if the image is not already on the nodes currently kind load docker image always tars up the image and sends it even if the nodes already contains the exact image to make image loading faster kind should look at the image id and only load over the image if the nodes don t have it yet
1
252,055
8,031,182,926
IssuesEvent
2018-07-27 23:08:28
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
USER ISSUE: Pflanzen
Medium Priority Respond ASAP
**Version:** 0.7.3.2 beta **Steps to Reproduce:** das wieder geht **Expected behavior:** das Pflanzen wieder wachsen **Actual behavior:** Pflanzen wachsen nicht mehr
1.0
USER ISSUE: Pflanzen - **Version:** 0.7.3.2 beta **Steps to Reproduce:** das wieder geht **Expected behavior:** das Pflanzen wieder wachsen **Actual behavior:** Pflanzen wachsen nicht mehr
priority
user issue pflanzen version beta steps to reproduce das wieder geht expected behavior das pflanzen wieder wachsen actual behavior pflanzen wachsen nicht mehr
1
58,253
14,349,742,355
IssuesEvent
2020-11-29 17:52:17
tensorflow/tensorflow
https://api.github.com/repos/tensorflow/tensorflow
opened
Unable to install CUDA 11.1 and cuDNN 8.05 for tensorflow 2.3
type:build/install
<em>Please make sure that this is a build/installation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em> **System information** - OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 - Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: - TensorFlow installed from (source or binary): binary - TensorFlow version: 2.3 - Python version: 3.8.5 - Installed using virtualenv? pip? conda?: pip - Bazel version (if compiling from source): - GCC/Compiler version (if compiling from source): - CUDA/cuDNN version: 11.1 and 8.05 - GPU model and memory: GeForce GTX 1650 4GB **Describe the problem** Unable to detect GPU **Provide the exact sequence of commands / steps that you executed before running into the problem** Installed tensorflow 2.3 Installed CUDA 11.1 Downloaded cuDNN 8.05 added files from cuDNN to the respective folders in CUDA directory added CUDA to the path imported tensorflow-gpu in python shows error that gpu not found **Any other info / logs** Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.
1.0
Unable to install CUDA 11.1 and cuDNN 8.05 for tensorflow 2.3 - <em>Please make sure that this is a build/installation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em> **System information** - OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 - Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: - TensorFlow installed from (source or binary): binary - TensorFlow version: 2.3 - Python version: 3.8.5 - Installed using virtualenv? pip? conda?: pip - Bazel version (if compiling from source): - GCC/Compiler version (if compiling from source): - CUDA/cuDNN version: 11.1 and 8.05 - GPU model and memory: GeForce GTX 1650 4GB **Describe the problem** Unable to detect GPU **Provide the exact sequence of commands / steps that you executed before running into the problem** Installed tensorflow 2.3 Installed CUDA 11.1 Downloaded cuDNN 8.05 added files from cuDNN to the respective folders in CUDA directory added CUDA to the path imported tensorflow-gpu in python shows error that gpu not found **Any other info / logs** Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.
non_priority
unable to install cuda and cudnn for tensorflow please make sure that this is a build installation issue as per our we only address code doc bugs performance issues feature requests and build installation issues on github tag build template system information os platform and distribution e g linux ubuntu windows mobile device e g iphone pixel samsung galaxy if the issue happens on mobile device tensorflow installed from source or binary binary tensorflow version python version installed using virtualenv pip conda pip bazel version if compiling from source gcc compiler version if compiling from source cuda cudnn version and gpu model and memory geforce gtx describe the problem unable to detect gpu provide the exact sequence of commands steps that you executed before running into the problem installed tensorflow installed cuda downloaded cudnn added files from cudnn to the respective folders in cuda directory added cuda to the path imported tensorflow gpu in python shows error that gpu not found any other info logs include any logs or source code that would be helpful to diagnose the problem if including tracebacks please include the full traceback large logs and files should be attached
0
117,785
15,174,251,462
IssuesEvent
2021-02-13 17:37:11
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.0 Staging-1506] Can't chat / tab and do stuff while auto-running in a Truck / Cart
Category: Design Priority: Low Squad: Otter
When you auto-run in a Truck or a Wood Cart, it stops when you try to chat or tab into inventory. I can't be a reckless driver that texts and drives ;). 1) Version 0.9.0 Staging-1506 2) Steps to reproduce - Enter Truck - Auto-run - Tab - truck stops - Untab - truck resumes - Start typing in chat - truck stops - Send message in chat - truck resumes - Open chat window - everything is fine Video: https://youtu.be/3zk5_qUHP34 3) Expected behavior Truck should continue to drive while you text and drive 4) Actual behavior Truck stops when you tab or when you're typing in chat 5) Providing Log files https://mega.nz/file/8EQQFITL#O1JgcSDXX2RX-7NIM3F6u1mCSy8vr1u2dkYX--0NCh4
1.0
[0.9.0 Staging-1506] Can't chat / tab and do stuff while auto-running in a Truck / Cart - When you auto-run in a Truck or a Wood Cart, it stops when you try to chat or tab into inventory. I can't be a reckless driver that texts and drives ;). 1) Version 0.9.0 Staging-1506 2) Steps to reproduce - Enter Truck - Auto-run - Tab - truck stops - Untab - truck resumes - Start typing in chat - truck stops - Send message in chat - truck resumes - Open chat window - everything is fine Video: https://youtu.be/3zk5_qUHP34 3) Expected behavior Truck should continue to drive while you text and drive 4) Actual behavior Truck stops when you tab or when you're typing in chat 5) Providing Log files https://mega.nz/file/8EQQFITL#O1JgcSDXX2RX-7NIM3F6u1mCSy8vr1u2dkYX--0NCh4
non_priority
can t chat tab and do stuff while auto running in a truck cart when you auto run in a truck or a wood cart it stops when you try to chat or tab into inventory i can t be a reckless driver that texts and drives version staging steps to reproduce enter truck auto run tab truck stops untab truck resumes start typing in chat truck stops send message in chat truck resumes open chat window everything is fine video expected behavior truck should continue to drive while you text and drive actual behavior truck stops when you tab or when you re typing in chat providing log files
0
676,863
23,140,566,367
IssuesEvent
2022-07-28 18:03:55
phetsims/chipper
https://api.github.com/repos/phetsims/chipper
opened
Update documentation about precommit hooks, precommit-hook-changed-repos and commit workflow
priority:2-high
Today, @kathy-phet asked me to update documentation about precommit-hook-changed-repos and that commit process. * SR/MK: PSA: New caching strategy for super speed pre commit hooks. Thanks SR! * Caching is super fast, and automatically set up in all linting and pre commit hooks. * We also have two new scripts for your use: * absolute-tsc uses the cache layer for type checking * precommit-hook-changed-repos will run the pre-commit hooks on all repos with working copy changes. These results are cached so that the actual git hooks upon commit and super speedy. * SR to update documentation for devs / new devs, and MS to review. * To be clear, we are no longer pursuing pre-push hooks (this solves that).
1.0
Update documentation about precommit hooks, precommit-hook-changed-repos and commit workflow - Today, @kathy-phet asked me to update documentation about precommit-hook-changed-repos and that commit process. * SR/MK: PSA: New caching strategy for super speed pre commit hooks. Thanks SR! * Caching is super fast, and automatically set up in all linting and pre commit hooks. * We also have two new scripts for your use: * absolute-tsc uses the cache layer for type checking * precommit-hook-changed-repos will run the pre-commit hooks on all repos with working copy changes. These results are cached so that the actual git hooks upon commit and super speedy. * SR to update documentation for devs / new devs, and MS to review. * To be clear, we are no longer pursuing pre-push hooks (this solves that).
priority
update documentation about precommit hooks precommit hook changed repos and commit workflow today kathy phet asked me to update documentation about precommit hook changed repos and that commit process sr mk psa new caching strategy for super speed pre commit hooks thanks sr caching is super fast and automatically set up in all linting and pre commit hooks we also have two new scripts for your use absolute tsc uses the cache layer for type checking precommit hook changed repos will run the pre commit hooks on all repos with working copy changes these results are cached so that the actual git hooks upon commit and super speedy sr to update documentation for devs new devs and ms to review to be clear we are no longer pursuing pre push hooks this solves that
1
20,517
2,622,851,698
IssuesEvent
2015-03-04 08:05:35
max99x/pagemon-chrome-ext
https://api.github.com/repos/max99x/pagemon-chrome-ext
closed
wish to monitor only the middle column of a page
auto-migrated Priority-Medium
``` What steps will reproduce the problem? every time recheck the page What is the expected output? What do you see instead? no update no update What version of the Chrome are you using? On what operating system? 20 What are the error log messages? To view them, go to Wrench -> Tools -> Extensions -> Developer Mode -> expand Page Monitor -> "background.htm" -> Console. Please provide any additional information below. Wish to monitor only the middle column of a page which contains 3 columns in total, or monitor only a portion in a page, since the data in the 1st and the 3rd columns are frequently changed as if advertisements. ``` Original issue reported on code.google.com by `wong....@gmail.com` on 12 Jul 2012 at 7:18
1.0
wish to monitor only the middle column of a page - ``` What steps will reproduce the problem? every time recheck the page What is the expected output? What do you see instead? no update no update What version of the Chrome are you using? On what operating system? 20 What are the error log messages? To view them, go to Wrench -> Tools -> Extensions -> Developer Mode -> expand Page Monitor -> "background.htm" -> Console. Please provide any additional information below. Wish to monitor only the middle column of a page which contains 3 columns in total, or monitor only a portion in a page, since the data in the 1st and the 3rd columns are frequently changed as if advertisements. ``` Original issue reported on code.google.com by `wong....@gmail.com` on 12 Jul 2012 at 7:18
priority
wish to monitor only the middle column of a page what steps will reproduce the problem every time recheck the page what is the expected output what do you see instead no update no update what version of the chrome are you using on what operating system what are the error log messages to view them go to wrench tools extensions developer mode expand page monitor background htm console please provide any additional information below wish to monitor only the middle column of a page which contains columns in total or monitor only a portion in a page since the data in the and the columns are frequently changed as if advertisements original issue reported on code google com by wong gmail com on jul at
1
5,237
2,915,820,290
IssuesEvent
2015-06-23 14:28:05
mk23/jmxproxy
https://api.github.com/repos/mk23/jmxproxy
closed
Add support for attribute history.
documentation enhancement
- [x] Add configuration for number of past metrics to save - [x] Add request query parameter for how many past metrics to retrieve - [x] Add API implementation for attribute history - [x] Add test cases for history implementation - [x] Add UI to request and display historical metrics on graphs - [x] Add documentation for api and config changes
1.0
Add support for attribute history. - - [x] Add configuration for number of past metrics to save - [x] Add request query parameter for how many past metrics to retrieve - [x] Add API implementation for attribute history - [x] Add test cases for history implementation - [x] Add UI to request and display historical metrics on graphs - [x] Add documentation for api and config changes
non_priority
add support for attribute history add configuration for number of past metrics to save add request query parameter for how many past metrics to retrieve add api implementation for attribute history add test cases for history implementation add ui to request and display historical metrics on graphs add documentation for api and config changes
0
702,872
24,139,590,139
IssuesEvent
2022-09-21 13:56:52
telerik/kendo-ui-core
https://api.github.com/repos/telerik/kendo-ui-core
opened
Switch is not rendered as expected when used inside a popup editor
Bug SEV: Low C: Grid jQuery2 Priority 5 C: Switch
### Bug report When the Switch is used inside a Kendo Grid popup it is not rendered as expected. ### Reproduction of the problem 1. Open the Dojo - https://dojo.telerik.com/@NeliKondova/uRaJITug 2. Click on the Edit button ### Current behavior The Switch is rendered incorrectly: ![image](https://user-images.githubusercontent.com/14364791/191522235-2327ba0d-15ac-4fc1-b9c4-d52eaa7a8819.png) ### Expected/desired behavior The Switch thumb should be rendered inside the Switch track. #### The issue is a regression starting width Kendo 2022.3.913 ### Environment * **Kendo UI version:** 2022.3.913 * **Browser:** [all ]
1.0
Switch is not rendered as expected when used inside a popup editor - ### Bug report When the Switch is used inside a Kendo Grid popup it is not rendered as expected. ### Reproduction of the problem 1. Open the Dojo - https://dojo.telerik.com/@NeliKondova/uRaJITug 2. Click on the Edit button ### Current behavior The Switch is rendered incorrectly: ![image](https://user-images.githubusercontent.com/14364791/191522235-2327ba0d-15ac-4fc1-b9c4-d52eaa7a8819.png) ### Expected/desired behavior The Switch thumb should be rendered inside the Switch track. #### The issue is a regression starting width Kendo 2022.3.913 ### Environment * **Kendo UI version:** 2022.3.913 * **Browser:** [all ]
priority
switch is not rendered as expected when used inside a popup editor bug report when the switch is used inside a kendo grid popup it is not rendered as expected reproduction of the problem open the dojo click on the edit button current behavior the switch is rendered incorrectly expected desired behavior the switch thumb should be rendered inside the switch track the issue is a regression starting width kendo environment kendo ui version browser
1
718,617
24,725,763,796
IssuesEvent
2022-10-20 13:57:31
GIScience/oshdb
https://api.github.com/repos/GIScience/oshdb
closed
add aggregateByGeometry method with callback function
enhancement priority:low
from https://github.com/GIScience/oshdb/issues/165#issuecomment-487129692: > I believe it wouldn't be too hard to add a second `aggregateByGeometry` method that not only accepts the map of geometries but also a function that returns a "feature" geometry. Then one could use the `aggregateByGeometry` functionality also in even more use cases, e.g. where the geometry needs to be modified before the aggregate step (e.g. computing a buffer around a snapshot geometry, or calculating the mean centroid of all contributions happening on a single osm entity, etc.).
1.0
add aggregateByGeometry method with callback function - from https://github.com/GIScience/oshdb/issues/165#issuecomment-487129692: > I believe it wouldn't be too hard to add a second `aggregateByGeometry` method that not only accepts the map of geometries but also a function that returns a "feature" geometry. Then one could use the `aggregateByGeometry` functionality also in even more use cases, e.g. where the geometry needs to be modified before the aggregate step (e.g. computing a buffer around a snapshot geometry, or calculating the mean centroid of all contributions happening on a single osm entity, etc.).
priority
add aggregatebygeometry method with callback function from i believe it wouldn t be too hard to add a second aggregatebygeometry method that not only accepts the map of geometries but also a function that returns a feature geometry then one could use the aggregatebygeometry functionality also in even more use cases e g where the geometry needs to be modified before the aggregate step e g computing a buffer around a snapshot geometry or calculating the mean centroid of all contributions happening on a single osm entity etc
1
48,638
2,999,244,061
IssuesEvent
2015-07-23 18:03:20
IQSS/dataverse
https://api.github.com/repos/IQSS/dataverse
closed
API: Review logging level and format for builtin-users
Component: API Priority: Medium Status: QA Type: Suggestion
Review appropriate logging and format for builtin endpoint: /api/builtin-users
1.0
API: Review logging level and format for builtin-users - Review appropriate logging and format for builtin endpoint: /api/builtin-users
priority
api review logging level and format for builtin users review appropriate logging and format for builtin endpoint api builtin users
1
213,905
7,261,406,727
IssuesEvent
2018-02-18 20:27:45
theQRL/QRL
https://api.github.com/repos/theQRL/QRL
closed
Remove the optional "Type" property from the Transaction message definition in qrl.proto
Priority: Critical Type: Maintenance
It seems that the "Type" property from the Transaction message definition in qrl.proto is optional (from @jleni), we could remove it to make it less ambiguous. see https://github.com/theQRL/QRL/blob/0b91299ad4fc672fb64610392d541bd3d84de28c/qrl/protos/qrl.proto#L364
1.0
Remove the optional "Type" property from the Transaction message definition in qrl.proto - It seems that the "Type" property from the Transaction message definition in qrl.proto is optional (from @jleni), we could remove it to make it less ambiguous. see https://github.com/theQRL/QRL/blob/0b91299ad4fc672fb64610392d541bd3d84de28c/qrl/protos/qrl.proto#L364
priority
remove the optional type property from the transaction message definition in qrl proto it seems that the type property from the transaction message definition in qrl proto is optional from jleni we could remove it to make it less ambiguous see
1
327,147
9,967,169,674
IssuesEvent
2019-07-08 13:02:46
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.patreon.com - site is not usable
browser-firefox-mobile engine-gecko priority-important type-tracking-protection-strict
<!-- @browser: Firefox Mobile 68.0 --> <!-- @ua_header: Mozilla/5.0 (Android 7.1.1; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 --> <!-- @reported_with: mobile-reporter --> <!-- @extra_labels: type-tracking-protection-strict --> **URL**: https://www.patreon.com/login?ru=%2F **Browser / Version**: Firefox Mobile 68.0 **Operating System**: Android 7.1.1 **Tested Another Browser**: Yes **Problem type**: Site is not usable **Description**: login button does nothing **Steps to Reproduce**: [![Screenshot Description](https://webcompat.com/uploads/2019/7/6d8299ba-58be-4d81-b1d5-15945e6d4d98-thumb.jpeg)](https://webcompat.com/uploads/2019/7/6d8299ba-58be-4d81-b1d5-15945e6d4d98.jpeg) <details> <summary>Browser Configuration</summary> <ul> <li>mixed active content blocked: false</li><li>image.mem.shared: true</li><li>buildID: 20190628222626</li><li>tracking content blocked: true (strict)</li><li>gfx.webrender.blob-images: true</li><li>hasTouchScreen: true</li><li>mixed passive content blocked: false</li><li>gfx.webrender.enabled: false</li><li>gfx.webrender.all: false</li><li>channel: nightly</li> </ul> <p>Console Messages:</p> <pre> [u'[JavaScript Warning: "The resource at https://www.google-analytics.com/analytics.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "The resource at https://www.google.com/recaptcha/api.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "onmozfullscreenchange is deprecated." {file: "https://c1.patreon.com/content-based/commons.b81178c8132387db052b.js" line: 1}]', u'[JavaScript Warning: "onmozfullscreenerror is deprecated." {file: "https://c1.patreon.com/content-based/commons.b81178c8132387db052b.js" line: 1}]', u'[JavaScript Warning: "The resource at https://connect.facebook.net/en_US/sdk.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "The resource at https://connect.facebook.net/en_US/fbevents.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "The resource at https://www.google.com/recaptcha/api.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "Loading failed for the <script> with source https://connect.facebook.net/en_US/fbevents.js." {file: "https://www.patreon.com/login?ru=%2F" line: 1}]', u'[JavaScript Warning: "Loading failed for the <script> with source https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.10.0-min.gz.js." {file: "https://www.patreon.com/login?ru=%2F" line: 1}]', u'[JavaScript Warning: "Loading failed for the <script> with source https://cdn.siftscience.com/s.js." {file: "https://www.patreon.com/login?ru=%2F" line: 1}]'] </pre> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.patreon.com - site is not usable - <!-- @browser: Firefox Mobile 68.0 --> <!-- @ua_header: Mozilla/5.0 (Android 7.1.1; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 --> <!-- @reported_with: mobile-reporter --> <!-- @extra_labels: type-tracking-protection-strict --> **URL**: https://www.patreon.com/login?ru=%2F **Browser / Version**: Firefox Mobile 68.0 **Operating System**: Android 7.1.1 **Tested Another Browser**: Yes **Problem type**: Site is not usable **Description**: login button does nothing **Steps to Reproduce**: [![Screenshot Description](https://webcompat.com/uploads/2019/7/6d8299ba-58be-4d81-b1d5-15945e6d4d98-thumb.jpeg)](https://webcompat.com/uploads/2019/7/6d8299ba-58be-4d81-b1d5-15945e6d4d98.jpeg) <details> <summary>Browser Configuration</summary> <ul> <li>mixed active content blocked: false</li><li>image.mem.shared: true</li><li>buildID: 20190628222626</li><li>tracking content blocked: true (strict)</li><li>gfx.webrender.blob-images: true</li><li>hasTouchScreen: true</li><li>mixed passive content blocked: false</li><li>gfx.webrender.enabled: false</li><li>gfx.webrender.all: false</li><li>channel: nightly</li> </ul> <p>Console Messages:</p> <pre> [u'[JavaScript Warning: "The resource at https://www.google-analytics.com/analytics.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "The resource at https://www.google.com/recaptcha/api.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "onmozfullscreenchange is deprecated." {file: "https://c1.patreon.com/content-based/commons.b81178c8132387db052b.js" line: 1}]', u'[JavaScript Warning: "onmozfullscreenerror is deprecated." {file: "https://c1.patreon.com/content-based/commons.b81178c8132387db052b.js" line: 1}]', u'[JavaScript Warning: "The resource at https://connect.facebook.net/en_US/sdk.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "The resource at https://connect.facebook.net/en_US/fbevents.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "The resource at https://www.google.com/recaptcha/api.js was blocked because content blocking is enabled." {file: "https://www.patreon.com/login?ru=%2F" line: 0}]', u'[JavaScript Warning: "Loading failed for the <script> with source https://connect.facebook.net/en_US/fbevents.js." {file: "https://www.patreon.com/login?ru=%2F" line: 1}]', u'[JavaScript Warning: "Loading failed for the <script> with source https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.10.0-min.gz.js." {file: "https://www.patreon.com/login?ru=%2F" line: 1}]', u'[JavaScript Warning: "Loading failed for the <script> with source https://cdn.siftscience.com/s.js." {file: "https://www.patreon.com/login?ru=%2F" line: 1}]'] </pre> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
site is not usable url browser version firefox mobile operating system android tested another browser yes problem type site is not usable description login button does nothing steps to reproduce browser configuration mixed active content blocked false image mem shared true buildid tracking content blocked true strict gfx webrender blob images true hastouchscreen true mixed passive content blocked false gfx webrender enabled false gfx webrender all false channel nightly console messages u u u u u u u u u from with ❤️
1
168,682
6,383,428,446
IssuesEvent
2017-08-03 00:14:22
minio/minio
https://api.github.com/repos/minio/minio
opened
Document Preview for pdf, txt, docs, all other files
priority: medium
Need to figure out how the users can articulate what a doc, pdf, text, rtf files have in them without having to download them.
1.0
Document Preview for pdf, txt, docs, all other files - Need to figure out how the users can articulate what a doc, pdf, text, rtf files have in them without having to download them.
priority
document preview for pdf txt docs all other files need to figure out how the users can articulate what a doc pdf text rtf files have in them without having to download them
1
9,038
2,615,123,135
IssuesEvent
2015-03-01 05:50:37
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
closed
Google Prediction Java Sample Example
auto-migrated Priority-Medium Type-Defect
``` Version of google-api-java-client (e.g. 1.5.0-beta)? 1.5.1-beta Java environment (e.g. Java 6, Android 2.3, App Engine)? Java 6 Describe the problem. There is no proper Example of using Google Prediction API. We need how to an Explainatory example giving the full details of how to use the Google prediction API with JAVA as a programming Language. Thanks How would you expect it to be fixed? Sample Google Prediction Example in Java with proper instructions ``` Original issue reported on code.google.com by `heggi.sa...@gmail.com` on 25 Oct 2011 at 7:25
1.0
Google Prediction Java Sample Example - ``` Version of google-api-java-client (e.g. 1.5.0-beta)? 1.5.1-beta Java environment (e.g. Java 6, Android 2.3, App Engine)? Java 6 Describe the problem. There is no proper Example of using Google Prediction API. We need how to an Explainatory example giving the full details of how to use the Google prediction API with JAVA as a programming Language. Thanks How would you expect it to be fixed? Sample Google Prediction Example in Java with proper instructions ``` Original issue reported on code.google.com by `heggi.sa...@gmail.com` on 25 Oct 2011 at 7:25
non_priority
google prediction java sample example version of google api java client e g beta beta java environment e g java android app engine java describe the problem there is no proper example of using google prediction api we need how to an explainatory example giving the full details of how to use the google prediction api with java as a programming language thanks how would you expect it to be fixed sample google prediction example in java with proper instructions original issue reported on code google com by heggi sa gmail com on oct at
0
240,410
18,350,030,503
IssuesEvent
2021-10-08 11:21:07
Para-C/Para-C
https://api.github.com/repos/Para-C/Para-C
opened
[Docs-Change] Implement reference for importing directives
documentation good first issue hacktoberfest dev-branch-only
**Describe the change** Add the reference section for import directives, which should contain the following items: - Provide info about the `#include <directive>` directive - Provide info about the `#include <name> from <header>` and `#include <name> from <header> as <new-name>` *(will be not in the language in the next versions, but added later. This should be added as an important note `.. note::`)* These should contain the standard items such as Syntax, Examples, and Additional Notes if required. **Additional context** A new section needs to be added, called Pre-Processor -> new issue [here]()
1.0
[Docs-Change] Implement reference for importing directives - **Describe the change** Add the reference section for import directives, which should contain the following items: - Provide info about the `#include <directive>` directive - Provide info about the `#include <name> from <header>` and `#include <name> from <header> as <new-name>` *(will be not in the language in the next versions, but added later. This should be added as an important note `.. note::`)* These should contain the standard items such as Syntax, Examples, and Additional Notes if required. **Additional context** A new section needs to be added, called Pre-Processor -> new issue [here]()
non_priority
implement reference for importing directives describe the change add the reference section for import directives which should contain the following items provide info about the include directive provide info about the include from and include from as will be not in the language in the next versions but added later this should be added as an important note note these should contain the standard items such as syntax examples and additional notes if required additional context a new section needs to be added called pre processor new issue
0
187,236
15,094,585,133
IssuesEvent
2021-02-07 07:10:18
timo-cmd2/Kimono
https://api.github.com/repos/timo-cmd2/Kimono
opened
Add website and docs
documentation enhancement
For a better overview and how to follow up with kimono... todo Rusty english xD
1.0
Add website and docs - For a better overview and how to follow up with kimono... todo Rusty english xD
non_priority
add website and docs for a better overview and how to follow up with kimono todo rusty english xd
0
95,870
10,895,439,397
IssuesEvent
2019-11-19 10:39:18
loco-3d/crocoddyl
https://api.github.com/repos/loco-3d/crocoddyl
closed
Updated the REAME file + cleaned up references - [merged]
documentation gitlab merge request
In GitLab by @cmastalli on Apr 4, 2019, 10:32 _Merges topic/update-readme -> devel_ This is related to the reported issue #160.
1.0
Updated the REAME file + cleaned up references - [merged] - In GitLab by @cmastalli on Apr 4, 2019, 10:32 _Merges topic/update-readme -> devel_ This is related to the reported issue #160.
non_priority
updated the reame file cleaned up references in gitlab by cmastalli on apr merges topic update readme devel this is related to the reported issue
0
45,057
5,683,269,430
IssuesEvent
2017-04-13 12:13:54
Princeton-CDH/winthrop-django
https://api.github.com/repos/Princeton-CDH/winthrop-django
closed
add and delete annotations tags
awaiting testing
As an annotation data editor I would like to be able to add and delete various tags by which I can classify annotations that are entirely non-verbal, or in which non-verbal elements have a key role. For example: manicule, dash, underlining, probatio pennae, monad, alchemical symbol, cipher.
1.0
add and delete annotations tags - As an annotation data editor I would like to be able to add and delete various tags by which I can classify annotations that are entirely non-verbal, or in which non-verbal elements have a key role. For example: manicule, dash, underlining, probatio pennae, monad, alchemical symbol, cipher.
non_priority
add and delete annotations tags as an annotation data editor i would like to be able to add and delete various tags by which i can classify annotations that are entirely non verbal or in which non verbal elements have a key role for example manicule dash underlining probatio pennae monad alchemical symbol cipher
0
681,448
23,311,575,707
IssuesEvent
2022-08-08 08:44:47
wasmerio/wasmer
https://api.github.com/repos/wasmerio/wasmer
closed
Update Rust Wasmer Docs to new 3.0 API
🎉 enhancement priority-medium
We need to update the examples to use the new API: https://docs.wasmer.io/integrations/examples/instance Source: https://github.com/wasmerio/docs.wasmer.io
1.0
Update Rust Wasmer Docs to new 3.0 API - We need to update the examples to use the new API: https://docs.wasmer.io/integrations/examples/instance Source: https://github.com/wasmerio/docs.wasmer.io
priority
update rust wasmer docs to new api we need to update the examples to use the new api source
1
319,915
27,407,417,835
IssuesEvent
2023-03-01 08:06:44
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
reopened
Fix layers.test_conv1d_transpose_layer
Sub Task Ivy Stateful API Failing Test
| | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/4300768686/jobs/7497292459" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="null" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a> |jax|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> <details> <summary>Not found</summary> Not found </details>
1.0
Fix layers.test_conv1d_transpose_layer - | | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/4300768686/jobs/7497292459" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="null" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a> |jax|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> <details> <summary>Not found</summary> Not found </details>
non_priority
fix layers test transpose layer tensorflow img src torch img src numpy img src jax img src not found not found
0
371,164
10,962,422,480
IssuesEvent
2019-11-27 17:13:01
prysmaticlabs/prysm
https://api.github.com/repos/prysmaticlabs/prysm
closed
Syncing is possible if a node has a different clock
Priority: Medium
Opening up this issue for discussion, what should we do if a node has a different clock with he beacon node and then try to sync?
1.0
Syncing is possible if a node has a different clock - Opening up this issue for discussion, what should we do if a node has a different clock with he beacon node and then try to sync?
priority
syncing is possible if a node has a different clock opening up this issue for discussion what should we do if a node has a different clock with he beacon node and then try to sync
1
56,557
3,080,247,579
IssuesEvent
2015-08-21 20:56:51
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Срабатывает отключенное автообновление
bug imported Priority-Medium wontfix
_From [toss.Alexey](https://code.google.com/u/toss.Alexey/) on May 10, 2012 22:58:15_ Автообновление включено. "Запускать каждый день в:" выключено. Но автообновление всё-равно запускается в полночь. r502 beta24 _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=754_
1.0
Срабатывает отключенное автообновление - _From [toss.Alexey](https://code.google.com/u/toss.Alexey/) on May 10, 2012 22:58:15_ Автообновление включено. "Запускать каждый день в:" выключено. Но автообновление всё-равно запускается в полночь. r502 beta24 _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=754_
priority
срабатывает отключенное автообновление from on may автообновление включено запускать каждый день в выключено но автообновление всё равно запускается в полночь original issue
1
249,667
26,968,414,566
IssuesEvent
2023-02-09 01:17:26
artkamote/examples
https://api.github.com/repos/artkamote/examples
opened
CVE-2023-23931 (Medium) detected in cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl
security vulnerability
## CVE-2023-23931 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl</b></p></summary> <p>cryptography is a package which provides cryptographic recipes and primitives to Python developers.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/c2/fa/fa9a8933c285895935d1392922fe721e9cb1b2c1881d14f149213a227ee3/cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/c2/fa/fa9a8933c285895935d1392922fe721e9cb1b2c1881d14f149213a227ee3/cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl</a></p> <p>Path to dependency file: /aws-python-auth0-custom-authorizers-api/requirements.txt</p> <p>Path to vulnerable library: /aws-python-auth0-custom-authorizers-api/requirements.txt</p> <p> Dependency Hierarchy: - :x: **cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. In affected versions `Cipher.update_into` would accept Python objects which implement the buffer protocol, but provide only immutable buffers. This would allow immutable objects (such as `bytes`) to be mutated, thus violating fundamental rules of Python and resulting in corrupted output. This now correctly raises an exception. This issue has been present since `update_into` was originally introduced in cryptography 1.8. <p>Publish Date: 2023-02-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-23931>CVE-2023-23931</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.cve.org/CVERecord?id=CVE-2023-23931">https://www.cve.org/CVERecord?id=CVE-2023-23931</a></p> <p>Release Date: 2023-02-07</p> <p>Fix Resolution: cryptography - 39.0.1</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-2023-23931 (Medium) detected in cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl - ## CVE-2023-23931 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl</b></p></summary> <p>cryptography is a package which provides cryptographic recipes and primitives to Python developers.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/c2/fa/fa9a8933c285895935d1392922fe721e9cb1b2c1881d14f149213a227ee3/cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/c2/fa/fa9a8933c285895935d1392922fe721e9cb1b2c1881d14f149213a227ee3/cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl</a></p> <p>Path to dependency file: /aws-python-auth0-custom-authorizers-api/requirements.txt</p> <p>Path to vulnerable library: /aws-python-auth0-custom-authorizers-api/requirements.txt</p> <p> Dependency Hierarchy: - :x: **cryptography-2.3-cp34-abi3-manylinux1_x86_64.whl** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. In affected versions `Cipher.update_into` would accept Python objects which implement the buffer protocol, but provide only immutable buffers. This would allow immutable objects (such as `bytes`) to be mutated, thus violating fundamental rules of Python and resulting in corrupted output. This now correctly raises an exception. This issue has been present since `update_into` was originally introduced in cryptography 1.8. <p>Publish Date: 2023-02-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-23931>CVE-2023-23931</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.cve.org/CVERecord?id=CVE-2023-23931">https://www.cve.org/CVERecord?id=CVE-2023-23931</a></p> <p>Release Date: 2023-02-07</p> <p>Fix Resolution: cryptography - 39.0.1</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 cryptography whl cve medium severity vulnerability vulnerable library cryptography whl cryptography is a package which provides cryptographic recipes and primitives to python developers library home page a href path to dependency file aws python custom authorizers api requirements txt path to vulnerable library aws python custom authorizers api requirements txt dependency hierarchy x cryptography whl vulnerable library found in base branch master vulnerability details cryptography is a package designed to expose cryptographic primitives and recipes to python developers in affected versions cipher update into would accept python objects which implement the buffer protocol but provide only immutable buffers this would allow immutable objects such as bytes to be mutated thus violating fundamental rules of python and resulting in corrupted output this now correctly raises an exception this issue has been present since update into was originally introduced in cryptography publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution cryptography step up your open source security game with mend
0
476,353
13,737,175,185
IssuesEvent
2020-10-05 12:50:37
kubernetes/kube-state-metrics
https://api.github.com/repos/kubernetes/kube-state-metrics
opened
Kubernetes v1.19+ ingress and certificates deprecation issues
priority/important-soon
We get the following warning when using v1.19 kuberentes cluster: > Server Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.2", GitCommit:"f5743093fd1c663cb0cbc89748f730662345d44d", GitTreeState:"clean", BuildDate:"2020-09-16T13:32:58Z", GoVersion:"go1.15", Compiler:"gc", Platform:"linux/amd64"} Warning msg when running kube-state-metrics: > W1005 14:47:25.621123 93191 warnings.go:67] certificates.k8s.io/v1beta1 CertificateSigningRequest is deprecated in v1.19+, unavailable in v1.22+; use certificates.k8s.io/v1 CertificateSigningRequest W1005 14:47:25.706963 93191 warnings.go:67] extensions/v1beta1 Ingress is deprecated in v1.14+, unavailable in v1.22+; use networking.k8s.io/v1 Ingress W1005 14:47:25.757402 93191 warnings.go:67] certificates.k8s.io/v1beta1 CertificateSigningRequest is deprecated in v1.19+, unavailable in v1.22+; use certificates.k8s.io/v1 CertificateSigningRequest W1005 14:47:25.758390 93191 warnings.go:67] extensions/v1beta1 Ingress is deprecated in v1.14+, unavailable in v1.22+; use networking.k8s.io/v1 Ingress We should migrate to newer versions of `CertificateSigningRequest` and `Ingress`.
1.0
Kubernetes v1.19+ ingress and certificates deprecation issues - We get the following warning when using v1.19 kuberentes cluster: > Server Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.2", GitCommit:"f5743093fd1c663cb0cbc89748f730662345d44d", GitTreeState:"clean", BuildDate:"2020-09-16T13:32:58Z", GoVersion:"go1.15", Compiler:"gc", Platform:"linux/amd64"} Warning msg when running kube-state-metrics: > W1005 14:47:25.621123 93191 warnings.go:67] certificates.k8s.io/v1beta1 CertificateSigningRequest is deprecated in v1.19+, unavailable in v1.22+; use certificates.k8s.io/v1 CertificateSigningRequest W1005 14:47:25.706963 93191 warnings.go:67] extensions/v1beta1 Ingress is deprecated in v1.14+, unavailable in v1.22+; use networking.k8s.io/v1 Ingress W1005 14:47:25.757402 93191 warnings.go:67] certificates.k8s.io/v1beta1 CertificateSigningRequest is deprecated in v1.19+, unavailable in v1.22+; use certificates.k8s.io/v1 CertificateSigningRequest W1005 14:47:25.758390 93191 warnings.go:67] extensions/v1beta1 Ingress is deprecated in v1.14+, unavailable in v1.22+; use networking.k8s.io/v1 Ingress We should migrate to newer versions of `CertificateSigningRequest` and `Ingress`.
priority
kubernetes ingress and certificates deprecation issues we get the following warning when using kuberentes cluster server version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux warning msg when running kube state metrics warnings go certificates io certificatesigningrequest is deprecated in unavailable in use certificates io certificatesigningrequest warnings go extensions ingress is deprecated in unavailable in use networking io ingress warnings go certificates io certificatesigningrequest is deprecated in unavailable in use certificates io certificatesigningrequest warnings go extensions ingress is deprecated in unavailable in use networking io ingress we should migrate to newer versions of certificatesigningrequest and ingress
1
54,230
3,061,109,030
IssuesEvent
2015-08-15 05:57:36
oppia/oppia
https://api.github.com/repos/oppia/oppia
closed
Stop automatic scroll down
priority: medium type: feature
``` In as much detail as possible, please describe what you would like to see. Avoid automatic scroll to the next card, it doesn’t give time to the user to properly read the feedback. What operating system are you using? Mac-ios Please provide any additional information below. ``` Original issue reported on code.google.com by `li...@google.com` on 4 Aug 2015 at 9:38
1.0
Stop automatic scroll down - ``` In as much detail as possible, please describe what you would like to see. Avoid automatic scroll to the next card, it doesn’t give time to the user to properly read the feedback. What operating system are you using? Mac-ios Please provide any additional information below. ``` Original issue reported on code.google.com by `li...@google.com` on 4 Aug 2015 at 9:38
priority
stop automatic scroll down in as much detail as possible please describe what you would like to see avoid automatic scroll to the next card it doesn’t give time to the user to properly read the feedback what operating system are you using mac ios please provide any additional information below original issue reported on code google com by li google com on aug at
1
393,723
27,006,499,967
IssuesEvent
2023-02-10 12:07:27
Programmiermethoden/PM-Dungeon
https://api.github.com/repos/Programmiermethoden/PM-Dungeon
closed
[DOCUMENTATION] Readme
documentation
Ergänzen der Readme um - Beispielbildern - Architekturdiagrammen - ggf. Verlinkungen
1.0
[DOCUMENTATION] Readme - Ergänzen der Readme um - Beispielbildern - Architekturdiagrammen - ggf. Verlinkungen
non_priority
readme ergänzen der readme um beispielbildern architekturdiagrammen ggf verlinkungen
0
111,816
24,200,724,809
IssuesEvent
2022-09-24 14:26:37
foundry-rs/foundry
https://api.github.com/repos/foundry-rs/foundry
reopened
feat: `vm.mineSalt` cheat code
T-feature Cmd-forge-test C-forge A-cheatcodes Cmd-forge-script
### Component Forge ### Describe the feature you would like It's common to want to deploy with vanity addresses, which can be done two ways: 1. Mine a private key that results in a contract with the right vanity pattern when deployed with some nonce 2. Mine a salt for create2 that results in a contract with the right vanity pattern Right now with approach 2 it's easy to mine a 4 character salt in a solidity script with a simple `for` loop, however you run out of gas (exceeds the u64 limit) if you try e.g. 8 characters. A cheat code for approach 1 isn't in consideration here since you'd need to fund the address mid-script and that feels clunky. While of course you can do all the mining outside of the script, for short vanity addresses it's convenient to do this in the script, and without needing to rely on `ffi` or worry about the gas limit. Proposed UX: ```solidity // Mine a salt for the given initcode hash and deployer that matches the provided // pattern, specified as "0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", with the // X's replaced by the desired pattern, (initcodeHash, deployer, pattern, caseSensitive) => (salt, contractAddress) function mineSalt(bytes32 initcodeHash, address deployer, string calldata pattern, bool exact) external returns (bytes32 salt, address contractAddress) ``` Above, the user provides: - The standard initcode hash and deployer address used for create2 address computation - The pattern to match, using the syntax that [profanity's](https://github.com/johguse/profanity) `--matching` flag uses - A boolean to indicate if the match must be exact (case-sensitive) And it returns the computed salt and the resulting address. ### Additional context _No response_
1.0
feat: `vm.mineSalt` cheat code - ### Component Forge ### Describe the feature you would like It's common to want to deploy with vanity addresses, which can be done two ways: 1. Mine a private key that results in a contract with the right vanity pattern when deployed with some nonce 2. Mine a salt for create2 that results in a contract with the right vanity pattern Right now with approach 2 it's easy to mine a 4 character salt in a solidity script with a simple `for` loop, however you run out of gas (exceeds the u64 limit) if you try e.g. 8 characters. A cheat code for approach 1 isn't in consideration here since you'd need to fund the address mid-script and that feels clunky. While of course you can do all the mining outside of the script, for short vanity addresses it's convenient to do this in the script, and without needing to rely on `ffi` or worry about the gas limit. Proposed UX: ```solidity // Mine a salt for the given initcode hash and deployer that matches the provided // pattern, specified as "0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", with the // X's replaced by the desired pattern, (initcodeHash, deployer, pattern, caseSensitive) => (salt, contractAddress) function mineSalt(bytes32 initcodeHash, address deployer, string calldata pattern, bool exact) external returns (bytes32 salt, address contractAddress) ``` Above, the user provides: - The standard initcode hash and deployer address used for create2 address computation - The pattern to match, using the syntax that [profanity's](https://github.com/johguse/profanity) `--matching` flag uses - A boolean to indicate if the match must be exact (case-sensitive) And it returns the computed salt and the resulting address. ### Additional context _No response_
non_priority
feat vm minesalt cheat code component forge describe the feature you would like it s common to want to deploy with vanity addresses which can be done two ways mine a private key that results in a contract with the right vanity pattern when deployed with some nonce mine a salt for that results in a contract with the right vanity pattern right now with approach it s easy to mine a character salt in a solidity script with a simple for loop however you run out of gas exceeds the limit if you try e g characters a cheat code for approach isn t in consideration here since you d need to fund the address mid script and that feels clunky while of course you can do all the mining outside of the script for short vanity addresses it s convenient to do this in the script and without needing to rely on ffi or worry about the gas limit proposed ux solidity mine a salt for the given initcode hash and deployer that matches the provided pattern specified as with the x s replaced by the desired pattern initcodehash deployer pattern casesensitive salt contractaddress function minesalt initcodehash address deployer string calldata pattern bool exact external returns salt address contractaddress above the user provides the standard initcode hash and deployer address used for address computation the pattern to match using the syntax that matching flag uses a boolean to indicate if the match must be exact case sensitive and it returns the computed salt and the resulting address additional context no response
0
243,992
18,736,434,237
IssuesEvent
2021-11-04 08:17:54
AY2122S1-CS2103T-T15-2/tp
https://api.github.com/repos/AY2122S1-CS2103T-T15-2/tp
opened
[DOCS] Developer Guide diagrams
type.Documentation
Developer Guide Implementations - eadd - Samuel - emark - Samuel - tadd - Chi Xu - tdone - Chi Xu - madd - Leeroy - mlist /e - Leeroy
1.0
[DOCS] Developer Guide diagrams - Developer Guide Implementations - eadd - Samuel - emark - Samuel - tadd - Chi Xu - tdone - Chi Xu - madd - Leeroy - mlist /e - Leeroy
non_priority
developer guide diagrams developer guide implementations eadd samuel emark samuel tadd chi xu tdone chi xu madd leeroy mlist e leeroy
0
396,409
11,709,009,071
IssuesEvent
2020-03-08 16:26:53
jrabbit/pyborg-1up
https://api.github.com/repos/jrabbit/pyborg-1up
closed
mastodon/twitter parity
Low-Priority/Wishlist mastodon
should respect (ignore) cws, #nobot tags in profiles and other fediverse politenesses
1.0
mastodon/twitter parity - should respect (ignore) cws, #nobot tags in profiles and other fediverse politenesses
priority
mastodon twitter parity should respect ignore cws nobot tags in profiles and other fediverse politenesses
1
164,878
20,507,972,639
IssuesEvent
2022-03-01 01:14:44
peterwkc85/Cucumber_Test
https://api.github.com/repos/peterwkc85/Cucumber_Test
opened
CVE-2020-9546 (High) detected in jackson-databind-2.8.6.jar
security vulnerability
## CVE-2020-9546 - 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.6.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 vulnerable library: /jar/jackson-databind-2.8.6.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.8.6.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> FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.hadoop.shaded.com.zaxxer.hikari.HikariConfig (aka shaded hikari-config). <p>Publish Date: 2020-03-02 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-9546>CVE-2020-9546</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9546">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9546</a></p> <p>Release Date: 2020-03-02</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.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-9546 (High) detected in jackson-databind-2.8.6.jar - ## CVE-2020-9546 - 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.6.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 vulnerable library: /jar/jackson-databind-2.8.6.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.8.6.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> FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.hadoop.shaded.com.zaxxer.hikari.HikariConfig (aka shaded hikari-config). <p>Publish Date: 2020-03-02 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-9546>CVE-2020-9546</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9546">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9546</a></p> <p>Release Date: 2020-03-02</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.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 vulnerable library jar jackson databind jar dependency hierarchy x jackson databind jar vulnerable library vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to org apache hadoop shaded com zaxxer hikari hikariconfig aka shaded hikari config 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
43,120
5,521,404,350
IssuesEvent
2017-03-19 15:22:03
cyblocker/CollaGitHub
https://api.github.com/repos/cyblocker/CollaGitHub
reopened
Play with This Repository
bottest
Hi @libin4594, @zinc-30, @heathersherry, @xzhflying, @haidaoxiaofei, @chineshboy, @SiYuanHan, @chenzhao, @KeithYue, @pengdiandian001, @anandinasu, and @tujiayang. I am pleased to let you know that the bot is currently working and you can play with it to get the direct experience of the bot usage. Currently, you all are assigned a fake profile and you may try to post anything inside this repository under Issues. For instance, you may ask a thing about our group or your technical questions. Anything is welcome. I encourage you to comment on the bot about its function. If you trigger any bug of the bot, please do not hesitate to let me know it. Thanks, and enjoy!
1.0
Play with This Repository - Hi @libin4594, @zinc-30, @heathersherry, @xzhflying, @haidaoxiaofei, @chineshboy, @SiYuanHan, @chenzhao, @KeithYue, @pengdiandian001, @anandinasu, and @tujiayang. I am pleased to let you know that the bot is currently working and you can play with it to get the direct experience of the bot usage. Currently, you all are assigned a fake profile and you may try to post anything inside this repository under Issues. For instance, you may ask a thing about our group or your technical questions. Anything is welcome. I encourage you to comment on the bot about its function. If you trigger any bug of the bot, please do not hesitate to let me know it. Thanks, and enjoy!
non_priority
play with this repository hi zinc heathersherry xzhflying haidaoxiaofei chineshboy siyuanhan chenzhao keithyue anandinasu and tujiayang i am pleased to let you know that the bot is currently working and you can play with it to get the direct experience of the bot usage currently you all are assigned a fake profile and you may try to post anything inside this repository under issues for instance you may ask a thing about our group or your technical questions anything is welcome i encourage you to comment on the bot about its function if you trigger any bug of the bot please do not hesitate to let me know it thanks and enjoy
0
55,126
6,430,216,048
IssuesEvent
2017-08-10 05:16:56
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
Consistent timeout of pull-kubernetetes-verify on a PR touching hack/ directory.
sig/testing
/kind bug I have a PR that I am trying to merge that ads a flag to hack/verify-flags/known-flags.txt (https://github.com/kubernetes/kubernetes/pull/49382). I can't get pull-kubernetes-verify to pass as it keeps timing out (https://k8s-gubernator.appspot.com/builds/kubernetes-jenkins/pr-logs/pull/49382/pull-kubernetes-verify/) Comparing with logs other PRs that do pass the check I have an additional 15 minutes spent on fetching godeps due to change in hack/ directory. As it usually takes ~45mins to run a successfull pull-kubernetes-verify, my chances of merging are close to 0. Example excerpt from https://storage.googleapis.com/kubernetes-jenkins/pr-logs/pull/49382/pull-kubernetes-verify/43937/build-log.txt Verifying hack/make-rules/../../hack/verify-godeps.sh I0807 13:48:00.045] Checking for 'Godeps/' changes against 'bootstrap-upstream/master' I0807 13:48:00.267] No 'Godeps/' changes detected. I0807 13:48:00.271] Checking for 'vendor/' changes against 'bootstrap-upstream/master' I0807 13:48:00.506] No 'vendor/' changes detected. I0807 13:48:00.510] Checking for 'hack/' changes against 'bootstrap-upstream/master' I0807 13:48:02.323] +++ [0807 13:48:02] Starting to download all kubernetes godeps. This takes a while I0807 13:50:53.413] +++ [0807 13:50:53] Download finished I0807 13:50:53.714] Running godep save. This will take around 15 minutes. I0807 14:05:21.760] I0807 14:05:21.761] Don't forget to run: I0807 14:05:21.761] - hack/update-bazel.sh to recreate the BUILD files I0807 14:05:21.761] - hack/update-godep-licenses.sh if you added or removed a dependency! I0807 14:05:22.247] Godeps Verified. I0807 14:05:22.248] Removing /tmp/gopath.jlBk34 I0807 14:05:24.930] SUCCESS hack/make-rules/../../hack/verify-godeps.sh 1044s
1.0
Consistent timeout of pull-kubernetetes-verify on a PR touching hack/ directory. - /kind bug I have a PR that I am trying to merge that ads a flag to hack/verify-flags/known-flags.txt (https://github.com/kubernetes/kubernetes/pull/49382). I can't get pull-kubernetes-verify to pass as it keeps timing out (https://k8s-gubernator.appspot.com/builds/kubernetes-jenkins/pr-logs/pull/49382/pull-kubernetes-verify/) Comparing with logs other PRs that do pass the check I have an additional 15 minutes spent on fetching godeps due to change in hack/ directory. As it usually takes ~45mins to run a successfull pull-kubernetes-verify, my chances of merging are close to 0. Example excerpt from https://storage.googleapis.com/kubernetes-jenkins/pr-logs/pull/49382/pull-kubernetes-verify/43937/build-log.txt Verifying hack/make-rules/../../hack/verify-godeps.sh I0807 13:48:00.045] Checking for 'Godeps/' changes against 'bootstrap-upstream/master' I0807 13:48:00.267] No 'Godeps/' changes detected. I0807 13:48:00.271] Checking for 'vendor/' changes against 'bootstrap-upstream/master' I0807 13:48:00.506] No 'vendor/' changes detected. I0807 13:48:00.510] Checking for 'hack/' changes against 'bootstrap-upstream/master' I0807 13:48:02.323] +++ [0807 13:48:02] Starting to download all kubernetes godeps. This takes a while I0807 13:50:53.413] +++ [0807 13:50:53] Download finished I0807 13:50:53.714] Running godep save. This will take around 15 minutes. I0807 14:05:21.760] I0807 14:05:21.761] Don't forget to run: I0807 14:05:21.761] - hack/update-bazel.sh to recreate the BUILD files I0807 14:05:21.761] - hack/update-godep-licenses.sh if you added or removed a dependency! I0807 14:05:22.247] Godeps Verified. I0807 14:05:22.248] Removing /tmp/gopath.jlBk34 I0807 14:05:24.930] SUCCESS hack/make-rules/../../hack/verify-godeps.sh 1044s
non_priority
consistent timeout of pull kubernetetes verify on a pr touching hack directory kind bug i have a pr that i am trying to merge that ads a flag to hack verify flags known flags txt i can t get pull kubernetes verify to pass as it keeps timing out comparing with logs other prs that do pass the check i have an additional minutes spent on fetching godeps due to change in hack directory as it usually takes to run a successfull pull kubernetes verify my chances of merging are close to example excerpt from verifying hack make rules hack verify godeps sh checking for godeps changes against bootstrap upstream master no godeps changes detected checking for vendor changes against bootstrap upstream master no vendor changes detected checking for hack changes against bootstrap upstream master starting to download all kubernetes godeps this takes a while download finished running godep save this will take around minutes don t forget to run hack update bazel sh to recreate the build files hack update godep licenses sh if you added or removed a dependency godeps verified removing tmp gopath   hack make rules hack verify godeps sh
0
162,760
6,167,928,914
IssuesEvent
2017-06-30 00:40:38
SpeedCurve-Metrics/SpeedCurve
https://api.github.com/repos/SpeedCurve-Metrics/SpeedCurve
closed
Filmstrip scrolling bug when changing display options
priority medium type bug
When changing the time units for the filmstrip the scrolling widget we use doesn't update correctly. Looks like a bug in the JS widget we use. Will look for a bug fix or replacement. If you resize your browser window when it happens or reload the page then the UI sorts itself out.
1.0
Filmstrip scrolling bug when changing display options - When changing the time units for the filmstrip the scrolling widget we use doesn't update correctly. Looks like a bug in the JS widget we use. Will look for a bug fix or replacement. If you resize your browser window when it happens or reload the page then the UI sorts itself out.
priority
filmstrip scrolling bug when changing display options when changing the time units for the filmstrip the scrolling widget we use doesn t update correctly looks like a bug in the js widget we use will look for a bug fix or replacement if you resize your browser window when it happens or reload the page then the ui sorts itself out
1
187,788
14,432,178,521
IssuesEvent
2020-12-07 01:05:46
kalexmills/github-vet-tests-dec2020
https://api.github.com/repos/kalexmills/github-vet-tests-dec2020
closed
griesemer/dotGo2016: src/net/interface_test.go; 17 LoC
fresh small test
Found a possible issue in [griesemer/dotGo2016](https://www.github.com/griesemer/dotGo2016) at [src/net/interface_test.go](https://github.com/griesemer/dotGo2016/blob/22d27943428143d0d1c85d48a8ea2d07acde165e/src/net/interface_test.go#L56-L72) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to ifi at line 61 may start a goroutine [Click here to see the code in its original context.](https://github.com/griesemer/dotGo2016/blob/22d27943428143d0d1c85d48a8ea2d07acde165e/src/net/interface_test.go#L56-L72) <details> <summary>Click here to show the 17 line(s) of Go which triggered the analyzer.</summary> ```go for _, ifi := range ift { ifxi, err := InterfaceByIndex(ifi.Index) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(ifxi, &ifi) { t.Errorf("got %v; want %v", ifxi, ifi) } ifxn, err := InterfaceByName(ifi.Name) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(ifxn, &ifi) { t.Errorf("got %v; want %v", ifxn, ifi) } t.Logf("%s: flags=%v index=%d mtu=%d hwaddr=%v", ifi.Name, ifi.Flags, ifi.Index, ifi.MTU, ifi.HardwareAddr) } ``` </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: 22d27943428143d0d1c85d48a8ea2d07acde165e
1.0
griesemer/dotGo2016: src/net/interface_test.go; 17 LoC - Found a possible issue in [griesemer/dotGo2016](https://www.github.com/griesemer/dotGo2016) at [src/net/interface_test.go](https://github.com/griesemer/dotGo2016/blob/22d27943428143d0d1c85d48a8ea2d07acde165e/src/net/interface_test.go#L56-L72) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to ifi at line 61 may start a goroutine [Click here to see the code in its original context.](https://github.com/griesemer/dotGo2016/blob/22d27943428143d0d1c85d48a8ea2d07acde165e/src/net/interface_test.go#L56-L72) <details> <summary>Click here to show the 17 line(s) of Go which triggered the analyzer.</summary> ```go for _, ifi := range ift { ifxi, err := InterfaceByIndex(ifi.Index) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(ifxi, &ifi) { t.Errorf("got %v; want %v", ifxi, ifi) } ifxn, err := InterfaceByName(ifi.Name) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(ifxn, &ifi) { t.Errorf("got %v; want %v", ifxn, ifi) } t.Logf("%s: flags=%v index=%d mtu=%d hwaddr=%v", ifi.Name, ifi.Flags, ifi.Index, ifi.MTU, ifi.HardwareAddr) } ``` </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: 22d27943428143d0d1c85d48a8ea2d07acde165e
non_priority
griesemer src net interface test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call which takes a reference to ifi at line may start a goroutine click here to show the line s of go which triggered the analyzer go for ifi range ift ifxi err interfacebyindex ifi index if err nil t fatal err if reflect deepequal ifxi ifi t errorf got v want v ifxi ifi ifxn err interfacebyname ifi name if err nil t fatal err if reflect deepequal ifxn ifi t errorf got v want v ifxn ifi t logf s flags v index d mtu d hwaddr v ifi name ifi flags ifi index ifi mtu ifi hardwareaddr 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
269,960
20,513,519,609
IssuesEvent
2022-03-01 09:24:20
importPI19fromDHGE/emb3-gulla-kerst
https://api.github.com/repos/importPI19fromDHGE/emb3-gulla-kerst
opened
Bluetooth konfigurieren
documentation enhancement
- Auseinandersetzung mit dem Bluetooth-Protokoll - was wollen wir hier eigentlich haben? - BlueALSA / ??? --> Ton zu PulseAudio bringen - Geräte-Kompatibilität? - Wie sieht es mit USB-Bluetooth-Modulen aus
1.0
Bluetooth konfigurieren - - Auseinandersetzung mit dem Bluetooth-Protokoll - was wollen wir hier eigentlich haben? - BlueALSA / ??? --> Ton zu PulseAudio bringen - Geräte-Kompatibilität? - Wie sieht es mit USB-Bluetooth-Modulen aus
non_priority
bluetooth konfigurieren auseinandersetzung mit dem bluetooth protokoll was wollen wir hier eigentlich haben bluealsa ton zu pulseaudio bringen geräte kompatibilität wie sieht es mit usb bluetooth modulen aus
0
816,196
30,593,039,419
IssuesEvent
2023-07-21 18:53:47
Faithful-Resource-Pack/Discord-Bot
https://api.github.com/repos/Faithful-Resource-Pack/Discord-Bot
closed
[Bug] Random rotation is completely broken on TS bot
bug help wanted high priority
### What happened? Outright won't give any result, saying the image is too big even when it isn't. ### To reproduce 1. Run `/tile random:rotation` on any texture 2. See the error messasge ### Screenshot(s) <img width="441" alt="Screen Shot 2023-07-20 at 11 24 53 PM" src="https://github.com/Faithful-Resource-Pack/Discord-Bot/assets/75297863/16adb32d-94be-4eca-8c3c-7a75ee589ebb"> ### Notes Probably related to the canvas changes made in e3b74c3 since that was related to rotating images.
1.0
[Bug] Random rotation is completely broken on TS bot - ### What happened? Outright won't give any result, saying the image is too big even when it isn't. ### To reproduce 1. Run `/tile random:rotation` on any texture 2. See the error messasge ### Screenshot(s) <img width="441" alt="Screen Shot 2023-07-20 at 11 24 53 PM" src="https://github.com/Faithful-Resource-Pack/Discord-Bot/assets/75297863/16adb32d-94be-4eca-8c3c-7a75ee589ebb"> ### Notes Probably related to the canvas changes made in e3b74c3 since that was related to rotating images.
priority
random rotation is completely broken on ts bot what happened outright won t give any result saying the image is too big even when it isn t to reproduce run tile random rotation on any texture see the error messasge screenshot s img width alt screen shot at pm src notes probably related to the canvas changes made in since that was related to rotating images
1
75,289
3,461,337,159
IssuesEvent
2015-12-20 00:10:28
DarkstarProject/darkstar
https://api.github.com/repos/DarkstarProject/darkstar
closed
Auto HP Bug
High Priority
This is still a thing, didn't see any issues relating to it, is there already one open that someone knows about? Occasionally players will automatically be returned to their home point upon death without any prompt to release.
1.0
Auto HP Bug - This is still a thing, didn't see any issues relating to it, is there already one open that someone knows about? Occasionally players will automatically be returned to their home point upon death without any prompt to release.
priority
auto hp bug this is still a thing didn t see any issues relating to it is there already one open that someone knows about occasionally players will automatically be returned to their home point upon death without any prompt to release
1
314,956
9,605,089,582
IssuesEvent
2019-05-10 22:14:32
mnights101/erosradar
https://api.github.com/repos/mnights101/erosradar
closed
Index adjustments and text changes
Priority
- [x] Remove check in /check out boxes from index /move to search criteria under massage and strip clubs, change text to check in/ select date check out/ select time | drop down values:(morning, afternoon, evening) - [x] Remove List Your Place text / replace with: Place ads - [x] Remove Where do you want to go / replace with: Enter a location to search ![eros-remove-check-in](https://user-images.githubusercontent.com/10249755/56760221-c2903080-6768-11e9-802a-2b395fd51172.png)
1.0
Index adjustments and text changes - - [x] Remove check in /check out boxes from index /move to search criteria under massage and strip clubs, change text to check in/ select date check out/ select time | drop down values:(morning, afternoon, evening) - [x] Remove List Your Place text / replace with: Place ads - [x] Remove Where do you want to go / replace with: Enter a location to search ![eros-remove-check-in](https://user-images.githubusercontent.com/10249755/56760221-c2903080-6768-11e9-802a-2b395fd51172.png)
priority
index adjustments and text changes remove check in check out boxes from index move to search criteria under massage and strip clubs change text to check in select date check out select time drop down values morning afternoon evening remove list your place text replace with place ads remove where do you want to go replace with enter a location to search
1
366,379
10,819,922,915
IssuesEvent
2019-11-08 15:21:39
Santa-Polytecha/playroom-web
https://api.github.com/repos/Santa-Polytecha/playroom-web
closed
🔀 Add Vuejs router
Priority: Medium Status: Completed Type: Enhancement invalid
A router is necessary to navigate in the web app. For now, everything is under the `<App/>` component, and the navigation is counter-intuitive.
1.0
🔀 Add Vuejs router - A router is necessary to navigate in the web app. For now, everything is under the `<App/>` component, and the navigation is counter-intuitive.
priority
🔀 add vuejs router a router is necessary to navigate in the web app for now everything is under the component and the navigation is counter intuitive
1
67,576
3,275,274,648
IssuesEvent
2015-10-26 14:58:39
PhenotypeFoundation/PhenotypeDatabase
https://api.github.com/repos/PhenotypeFoundation/PhenotypeDatabase
closed
Wrong redirect after I delete a study from My Studies-list
enhancement Priority low
When I view one of my studies in the study list, and then 'Delete WHOLE STUDY', I'm redirected to the page 'Browse all studies'. However, I came from My studies. This is confusing, since these lists are different. (On hyve server, gscf 0.9.1.1)
1.0
Wrong redirect after I delete a study from My Studies-list - When I view one of my studies in the study list, and then 'Delete WHOLE STUDY', I'm redirected to the page 'Browse all studies'. However, I came from My studies. This is confusing, since these lists are different. (On hyve server, gscf 0.9.1.1)
priority
wrong redirect after i delete a study from my studies list when i view one of my studies in the study list and then delete whole study i m redirected to the page browse all studies however i came from my studies this is confusing since these lists are different on hyve server gscf
1
29,988
24,454,125,579
IssuesEvent
2022-10-07 04:11:38
hackforla/food-oasis
https://api.github.com/repos/hackforla/food-oasis
reopened
Improve app performance
Role: Front-end size: 2pt Feature: Infrastructure Feature: Accessibility PM: Food Seekers
### Overview Currently, there has not been much focus on the actual performance of the app. This matters since we expect many users will access our app on budget phones with slow connections or on old computers. ### Actions - [ ] Audit the current performance of our app - [ ] Discuss possible solutions according to the audit ### Ideas To get optimal performance may require a full refactor. For now this issue just focuses on low hanging fruit. ### Ressources See below
1.0
Improve app performance - ### Overview Currently, there has not been much focus on the actual performance of the app. This matters since we expect many users will access our app on budget phones with slow connections or on old computers. ### Actions - [ ] Audit the current performance of our app - [ ] Discuss possible solutions according to the audit ### Ideas To get optimal performance may require a full refactor. For now this issue just focuses on low hanging fruit. ### Ressources See below
non_priority
improve app performance overview currently there has not been much focus on the actual performance of the app this matters since we expect many users will access our app on budget phones with slow connections or on old computers actions audit the current performance of our app discuss possible solutions according to the audit ideas to get optimal performance may require a full refactor for now this issue just focuses on low hanging fruit ressources see below
0
251,836
18,976,501,959
IssuesEvent
2021-11-20 04:00:22
CiscoDevNet/terraform-provider-aci
https://api.github.com/repos/CiscoDevNet/terraform-provider-aci
closed
Create sections in documentation to group resources and data sources together.
documentation enhancement
<!--- 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 other comments that do not add relevant new information or questions, 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 ---> ### Description We need to create sub sections for resources and data sources to make it easier for people to find them. For example we should separate the Tenant and Infra sections and we could also have a L4-L7 section in the Tenant part. (This is not exhaustif). <!--- Please leave a helpful description of the feature request here. --->
1.0
Create sections in documentation to group resources and data sources together. - <!--- 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 other comments that do not add relevant new information or questions, 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 ---> ### Description We need to create sub sections for resources and data sources to make it easier for people to find them. For example we should separate the Tenant and Infra sections and we could also have a L4-L7 section in the Tenant part. (This is not exhaustif). <!--- Please leave a helpful description of the feature request here. --->
non_priority
create sections in documentation to group resources and data sources together 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 other comments that do not add relevant new information or questions 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 description we need to create sub sections for resources and data sources to make it easier for people to find them for example we should separate the tenant and infra sections and we could also have a section in the tenant part this is not exhaustif
0
118,976
12,002,753,800
IssuesEvent
2020-04-09 08:22:10
Students-of-the-city-of-Kostroma/trpo_automation
https://api.github.com/repos/Students-of-the-city-of-Kostroma/trpo_automation
closed
Разработать структуру модуля
Sprint N documentation
Архитектура, взаимосвязь, иерархия классов модуля. Результаты представить в виде UML диаграммы либо диаграммы любой другой нотации, наглядно показывающей структуру модуля
1.0
Разработать структуру модуля - Архитектура, взаимосвязь, иерархия классов модуля. Результаты представить в виде UML диаграммы либо диаграммы любой другой нотации, наглядно показывающей структуру модуля
non_priority
разработать структуру модуля архитектура взаимосвязь иерархия классов модуля результаты представить в виде uml диаграммы либо диаграммы любой другой нотации наглядно показывающей структуру модуля
0
292,346
25,206,805,163
IssuesEvent
2022-11-13 19:35:41
MinhazMurks/Bannerlord.Tweaks
https://api.github.com/repos/MinhazMurks/Bannerlord.Tweaks
opened
Test Elite Melee Militia Spawn Chance
testing
Test to see if tweak: "Elite Melee Militia Spawn Chance" works
1.0
Test Elite Melee Militia Spawn Chance - Test to see if tweak: "Elite Melee Militia Spawn Chance" works
non_priority
test elite melee militia spawn chance test to see if tweak elite melee militia spawn chance works
0
47,613
6,062,020,076
IssuesEvent
2017-06-14 08:23:26
geetsisbac/WCVVENIXYFVIRBXH3BYTI6TE
https://api.github.com/repos/geetsisbac/WCVVENIXYFVIRBXH3BYTI6TE
reopened
XotjKx1IFYGwN1cEbmSW87RqukvcZjA3RzxNtlLmKeGJS85g39ZM72hUmo18oB4ADpKDogrA1vYKXxhwvfCzbkc+e52ZOXUBAz7+FjTVhnQ9tHmXKRoOBYbvWSq2L/LnmsKTopHQFVeH5+hwo0iQ27KWxFEwCJSEtdqTcLQu3To=
design
ycRP42SdWhQdxkG/JS0YyAE+0UA/3lmwHiSvYA0xlZVHLKdHFuhgAFbP929lcfmUYCIOqymx8faKnAWctRCnTQSXDZGfilVpUtBvpHONm0OQhzGR/bRJ+ogWYqTZ8G3InTTrB8DL/TWVbNYKj4tF8NND+XpCyTf6BD2YFA6QhxnY4C8pF/wOsemoMMugLYaNXeAZYwnh3lIGAdp6HTxnXugFsBXOccdjz4Aj2qPa0dAyGd4CHAlmPNnev7tvfcUpqRNbyQ46NJnDRIFpg/SDQd84aiQBi1UfuBVIWye2EIt4fZBZcMghkR3AcxZdLWgMtO4iN4QdpBFhaoAYwAYvD2pocH6hxG0VBr7fvSiaJnY83UyV84PiYYQEenE0rI+vPN1MlfOD4mGEBHpxNKyPrzzdTJXzg+JhhAR6cTSsj6883UyV84PiYYQEenE0rI+vTYih87gU9lRlQIAVN5TxqgumT0MnX9ZvehDqiSPXWAokUo5m5NBQOo/SE3+BTLxDwaVFwPZ8SOeW4Fv6vpqz9gP4nq4fH2LMkgAOueXdEUl6vXglqHO07NKDxAGn5oJgadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S+oRMl3HYQMH/BA7sa1m9+Bn/sszAqbRRXJ5ev6TLIAl58901wmrAGkIe2bhISmXy5V7fOOS734YDy4RluCDFJKcaADNC3tFeHRs/xt/5cKTt0ydirx0XR93d9c9TBnVT5zcELtGgV/W8zwKJW68g84MeUu7ZIcchmeiZOZ6OmsEx04UhEQ22w3xNbILWcwAPP00Hjf5rXfSpWAMhP9AdJCMVbZNSzWDKGv5ukWM5mBhGnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvDpyWiJCC83eDo2Hrna3eH+txQvwxNFyEU5IDlKLcQJYpa+cSkVOirjXM1XmroELtgePUjjeThW+xO+xcWxbJeMYqZyTL57GZ02xJ+HUXhqE2c9TulfaoaNgzSd/otxbEadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S920/RPC10FJ1eNTOmhZacOxRVTcTZNIPOv2LzuaScOzMvpj5NFbuo2lU1dfIXHHB47QKBVcJfBDe5YZZi+j8B8B0RAP1xXuwFS86uNVu+Xokx7Xxv/3SQPPHxFGQabJyKyEyOCDZ85TnOGy670FIlzhL29oO9oyJCKBJO/awNQfmnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvadtXI+2dwabKuMdfjqbRLx/+tWB7R8WFLeOCySDmT1s/MYuwML5OGetLO+D/E96NeEy16yW29BMeNWVdZdXA4yRSjmbk0FA6j9ITf4FMvEOuz24hbglKroeFmqxB7k8AMVbZNSzWDKGv5ukWM5mBhGnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvDYQxvDiI+aKKSVM0s1VzPNjVw1mWi+lR+ndGN1dZkIDu7O5PDD4UaEhkxWI0ER4TkM0v1hZv+6pkmvfFcPl/gJR7J51kHP9UcEQ6ldZDXB8vBpmML9qxqiUCT0czlqoQ3l81yJwpQU8crlffC4vdwWnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvKkn3uQF+H/NLAz931IY5P0F/1NNkHz1XcWXWFaOmHRN9XLO42l2GHTCDl8ShQrT+Y7dIBC4ehAgRBHkgTiyjxeHWRbbFWnVt6DnXn48xqUeUOTvYkAX6Hv4I/DixG4yBadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S8skM8/mIGoEAl24Ldor9ocmouq0CmiDGCiTmAz/aoQBWa1tfsht8J+BBfwz/CogQTa7huTO5AOWAzlj76M4MzzFZZiYTmGDKlmL2ddBYg0BftXIY1RkERtdVTR9j76K79MWBOGEq8IzbC0AgEommvAadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S896+1PQWAcUyieqsAt9alE8CCr7sO1AkXLt6Je0C3/dz8xi7Awvk4Z60s74P8T3o10/UfEmYubB2tBW+YieEQmJFKOZuTQUDqP0hN/gUy8Q5+QBHViJVOl6aOXWbGY907tYG1DpDw4yljCySkeu0DeadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S9FQApudwVLjKbMyfrnfygvgb4XfZEFXfwVENxxE11cCdjBL9XgRb2ozNtlikLkl8cKkdOlCrqEv8Wchc9GcVD2Vwzkb21LDsYaP52+S0eaaUsZFQuZs2fGT0CINvEa4oBp21cj7Z3Bpsq4x1+OptEvadtXI+2dwabKuMdfjqbRL1YzUDTPG1+KNGliORvsTteEnAi+khCRe55Y+ZlFo7ZsRRhKHsAzhXu2GlDSW6KFU6BJ5Gr03uTCyaJVQuAkij+S/IAxQTJfMTAegCGW6rAmLYdEGtTCS3B9bL9CzHxP0ky9eEDm+YFgnmtgpmGadntp21cj7Z3Bpsq4x1+OptEvadtXI+2dwabKuMdfjqbRLz3r7U9BYBxTKJ6qwC31qUTwIKvuw7UCRcu3ol7QLf935EF+Bbq75EY+DX6J9rmTizc4R48VV8Cyy1aM4tB8z8ljRN6avt1INDIyZkekRMpbeOmTPZCwggSBetqBvX1OpUDnTetZPjqCcDEH1DSBxTWJiXYVo/bUcBzAJ/LbCqapyfj7gfwBG3IRhqj4RjTixsuMhqf/4ttYJ4hiddbWhBtgtfk+XdEmT4QpD9RXlCqEGpHP5jUJ5DvFInNQ9CvkavmesTYMDpC/gDJslpJmiIkuJfCLMGLGNuzQj0+Zau9h
1.0
XotjKx1IFYGwN1cEbmSW87RqukvcZjA3RzxNtlLmKeGJS85g39ZM72hUmo18oB4ADpKDogrA1vYKXxhwvfCzbkc+e52ZOXUBAz7+FjTVhnQ9tHmXKRoOBYbvWSq2L/LnmsKTopHQFVeH5+hwo0iQ27KWxFEwCJSEtdqTcLQu3To= - ycRP42SdWhQdxkG/JS0YyAE+0UA/3lmwHiSvYA0xlZVHLKdHFuhgAFbP929lcfmUYCIOqymx8faKnAWctRCnTQSXDZGfilVpUtBvpHONm0OQhzGR/bRJ+ogWYqTZ8G3InTTrB8DL/TWVbNYKj4tF8NND+XpCyTf6BD2YFA6QhxnY4C8pF/wOsemoMMugLYaNXeAZYwnh3lIGAdp6HTxnXugFsBXOccdjz4Aj2qPa0dAyGd4CHAlmPNnev7tvfcUpqRNbyQ46NJnDRIFpg/SDQd84aiQBi1UfuBVIWye2EIt4fZBZcMghkR3AcxZdLWgMtO4iN4QdpBFhaoAYwAYvD2pocH6hxG0VBr7fvSiaJnY83UyV84PiYYQEenE0rI+vPN1MlfOD4mGEBHpxNKyPrzzdTJXzg+JhhAR6cTSsj6883UyV84PiYYQEenE0rI+vTYih87gU9lRlQIAVN5TxqgumT0MnX9ZvehDqiSPXWAokUo5m5NBQOo/SE3+BTLxDwaVFwPZ8SOeW4Fv6vpqz9gP4nq4fH2LMkgAOueXdEUl6vXglqHO07NKDxAGn5oJgadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S+oRMl3HYQMH/BA7sa1m9+Bn/sszAqbRRXJ5ev6TLIAl58901wmrAGkIe2bhISmXy5V7fOOS734YDy4RluCDFJKcaADNC3tFeHRs/xt/5cKTt0ydirx0XR93d9c9TBnVT5zcELtGgV/W8zwKJW68g84MeUu7ZIcchmeiZOZ6OmsEx04UhEQ22w3xNbILWcwAPP00Hjf5rXfSpWAMhP9AdJCMVbZNSzWDKGv5ukWM5mBhGnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvDpyWiJCC83eDo2Hrna3eH+txQvwxNFyEU5IDlKLcQJYpa+cSkVOirjXM1XmroELtgePUjjeThW+xO+xcWxbJeMYqZyTL57GZ02xJ+HUXhqE2c9TulfaoaNgzSd/otxbEadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S920/RPC10FJ1eNTOmhZacOxRVTcTZNIPOv2LzuaScOzMvpj5NFbuo2lU1dfIXHHB47QKBVcJfBDe5YZZi+j8B8B0RAP1xXuwFS86uNVu+Xokx7Xxv/3SQPPHxFGQabJyKyEyOCDZ85TnOGy670FIlzhL29oO9oyJCKBJO/awNQfmnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvadtXI+2dwabKuMdfjqbRLx/+tWB7R8WFLeOCySDmT1s/MYuwML5OGetLO+D/E96NeEy16yW29BMeNWVdZdXA4yRSjmbk0FA6j9ITf4FMvEOuz24hbglKroeFmqxB7k8AMVbZNSzWDKGv5ukWM5mBhGnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvDYQxvDiI+aKKSVM0s1VzPNjVw1mWi+lR+ndGN1dZkIDu7O5PDD4UaEhkxWI0ER4TkM0v1hZv+6pkmvfFcPl/gJR7J51kHP9UcEQ6ldZDXB8vBpmML9qxqiUCT0czlqoQ3l81yJwpQU8crlffC4vdwWnbVyPtncGmyrjHX46m0S9p21cj7Z3Bpsq4x1+OptEvKkn3uQF+H/NLAz931IY5P0F/1NNkHz1XcWXWFaOmHRN9XLO42l2GHTCDl8ShQrT+Y7dIBC4ehAgRBHkgTiyjxeHWRbbFWnVt6DnXn48xqUeUOTvYkAX6Hv4I/DixG4yBadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S8skM8/mIGoEAl24Ldor9ocmouq0CmiDGCiTmAz/aoQBWa1tfsht8J+BBfwz/CogQTa7huTO5AOWAzlj76M4MzzFZZiYTmGDKlmL2ddBYg0BftXIY1RkERtdVTR9j76K79MWBOGEq8IzbC0AgEommvAadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S896+1PQWAcUyieqsAt9alE8CCr7sO1AkXLt6Je0C3/dz8xi7Awvk4Z60s74P8T3o10/UfEmYubB2tBW+YieEQmJFKOZuTQUDqP0hN/gUy8Q5+QBHViJVOl6aOXWbGY907tYG1DpDw4yljCySkeu0DeadtXI+2dwabKuMdfjqbRL2nbVyPtncGmyrjHX46m0S9FQApudwVLjKbMyfrnfygvgb4XfZEFXfwVENxxE11cCdjBL9XgRb2ozNtlikLkl8cKkdOlCrqEv8Wchc9GcVD2Vwzkb21LDsYaP52+S0eaaUsZFQuZs2fGT0CINvEa4oBp21cj7Z3Bpsq4x1+OptEvadtXI+2dwabKuMdfjqbRL1YzUDTPG1+KNGliORvsTteEnAi+khCRe55Y+ZlFo7ZsRRhKHsAzhXu2GlDSW6KFU6BJ5Gr03uTCyaJVQuAkij+S/IAxQTJfMTAegCGW6rAmLYdEGtTCS3B9bL9CzHxP0ky9eEDm+YFgnmtgpmGadntp21cj7Z3Bpsq4x1+OptEvadtXI+2dwabKuMdfjqbRLz3r7U9BYBxTKJ6qwC31qUTwIKvuw7UCRcu3ol7QLf935EF+Bbq75EY+DX6J9rmTizc4R48VV8Cyy1aM4tB8z8ljRN6avt1INDIyZkekRMpbeOmTPZCwggSBetqBvX1OpUDnTetZPjqCcDEH1DSBxTWJiXYVo/bUcBzAJ/LbCqapyfj7gfwBG3IRhqj4RjTixsuMhqf/4ttYJ4hiddbWhBtgtfk+XdEmT4QpD9RXlCqEGpHP5jUJ5DvFInNQ9CvkavmesTYMDpC/gDJslpJmiIkuJfCLMGLGNuzQj0+Zau9h
non_priority
brj bn xt xo otxbeadtxi optevadtxi d optevdyqxvdii lr h bbfwz optevadtxi kngliorvstteenai s optevadtxi bucbzaj
0
132,116
5,170,161,201
IssuesEvent
2017-01-18 04:32:00
RoboJackets/robocup-software
https://api.github.com/repos/RoboJackets/robocup-software
closed
Right Click kick at speed seems to be broken
area / simulator exp / beginner priority / medium status / new type / bug
This seems to be a recent thing, it was working at comp last year. Probably needs a bisect. Not sure if this isn't a duplicate, let me know if it is. When the right click kick ball occurs, the ball is first moved to a weird location, then kicked. This is most likely an issue with the simulator. The location where the ball moves to seems to depend on the initial placemnet of the ball and/or the strength/direction of the kick.
1.0
Right Click kick at speed seems to be broken - This seems to be a recent thing, it was working at comp last year. Probably needs a bisect. Not sure if this isn't a duplicate, let me know if it is. When the right click kick ball occurs, the ball is first moved to a weird location, then kicked. This is most likely an issue with the simulator. The location where the ball moves to seems to depend on the initial placemnet of the ball and/or the strength/direction of the kick.
priority
right click kick at speed seems to be broken this seems to be a recent thing it was working at comp last year probably needs a bisect not sure if this isn t a duplicate let me know if it is when the right click kick ball occurs the ball is first moved to a weird location then kicked this is most likely an issue with the simulator the location where the ball moves to seems to depend on the initial placemnet of the ball and or the strength direction of the kick
1
24,033
12,195,308,229
IssuesEvent
2020-04-29 17:09:27
GoogleChrome/web.dev
https://api.github.com/repos/GoogleChrome/web.dev
closed
content: Mention preloading in the Lighthouse FOIT audit
content update lighthouse performance
## What page(s) need to be updated? https://web.dev/font-display/ ### Why is this update needed? Makes developers aware of more strategies at their disposal. ### What's the deadline? N/A #### Is it a hard deadline? N/A
True
content: Mention preloading in the Lighthouse FOIT audit - ## What page(s) need to be updated? https://web.dev/font-display/ ### Why is this update needed? Makes developers aware of more strategies at their disposal. ### What's the deadline? N/A #### Is it a hard deadline? N/A
non_priority
content mention preloading in the lighthouse foit audit what page s need to be updated why is this update needed makes developers aware of more strategies at their disposal what s the deadline n a is it a hard deadline n a
0
199,304
6,988,031,108
IssuesEvent
2017-12-14 11:20:02
the-ethan-hunt/B.E.N.J.I.
https://api.github.com/repos/the-ethan-hunt/B.E.N.J.I.
closed
Not displaying to tkinter widgets (linux)
bug Difficulty:Medium KWoC Linux Priority : High
All information or messages are displayed to standard output rather than to tkinter widgets. Eg. All news information.
1.0
Not displaying to tkinter widgets (linux) - All information or messages are displayed to standard output rather than to tkinter widgets. Eg. All news information.
priority
not displaying to tkinter widgets linux all information or messages are displayed to standard output rather than to tkinter widgets eg all news information
1
437,384
30,596,285,721
IssuesEvent
2023-07-21 22:36:02
Agoric/agoric-sdk
https://api.github.com/repos/Agoric/agoric-sdk
opened
drop zoe.install(bundle)
documentation enhancement Zoe
## What is the Problem Being Solved? Zoe currently published two functions: `E(zoe).install(bundleId, bundleLabel)`, (though the first param must actually be a bundleId) and `E(zoe).installBundleID(bundleId, bundleLabel)`. [The only one documented](https://docs.agoric.com/reference/zoe-api/zoe.html#e-zoe-install-bundle) is the former, but we no longer give users any way to get access to a bundle. ## Description of the Design The `install()` method should be deprecated and dropped, and the documentation should be updated, along with information about how one can get access to a bundleId. ## Security Considerations Just confusion. ## Scaling Considerations None ## Test Plan N/A ## Upgrade Considerations Version migration, but we can be certain that no one is relying on the defunct version.
1.0
drop zoe.install(bundle) - ## What is the Problem Being Solved? Zoe currently published two functions: `E(zoe).install(bundleId, bundleLabel)`, (though the first param must actually be a bundleId) and `E(zoe).installBundleID(bundleId, bundleLabel)`. [The only one documented](https://docs.agoric.com/reference/zoe-api/zoe.html#e-zoe-install-bundle) is the former, but we no longer give users any way to get access to a bundle. ## Description of the Design The `install()` method should be deprecated and dropped, and the documentation should be updated, along with information about how one can get access to a bundleId. ## Security Considerations Just confusion. ## Scaling Considerations None ## Test Plan N/A ## Upgrade Considerations Version migration, but we can be certain that no one is relying on the defunct version.
non_priority
drop zoe install bundle what is the problem being solved zoe currently published two functions e zoe install bundleid bundlelabel though the first param must actually be a bundleid and e zoe installbundleid bundleid bundlelabel is the former but we no longer give users any way to get access to a bundle description of the design the install method should be deprecated and dropped and the documentation should be updated along with information about how one can get access to a bundleid security considerations just confusion scaling considerations none test plan n a upgrade considerations version migration but we can be certain that no one is relying on the defunct version
0
296,420
9,115,465,861
IssuesEvent
2019-02-22 05:07:54
WeAreDevs/material-clicker
https://api.github.com/repos/WeAreDevs/material-clicker
opened
Achievements
enhancement priority: low
When doing certain things, you can trigger an achievement. I propose an API Something similar to promises. ```js registerAchievement({ id: 'win-universe', name: 'Win the Universe' description: 'Example to show how cool the world is.' }, (award) => { // add event handles and stuff to detect if they get the achievement award(); // call award to give the achievement. }); ```
1.0
Achievements - When doing certain things, you can trigger an achievement. I propose an API Something similar to promises. ```js registerAchievement({ id: 'win-universe', name: 'Win the Universe' description: 'Example to show how cool the world is.' }, (award) => { // add event handles and stuff to detect if they get the achievement award(); // call award to give the achievement. }); ```
priority
achievements when doing certain things you can trigger an achievement i propose an api something similar to promises js registerachievement id win universe name win the universe description example to show how cool the world is award add event handles and stuff to detect if they get the achievement award call award to give the achievement
1
33,967
7,314,613,137
IssuesEvent
2018-03-01 08:03:18
PowerDNS/pdns
https://api.github.com/repos/PowerDNS/pdns
closed
dnsdist 1.2.0 complains about incorrect option but starts anyway
defect dnsdist
- Program: dnsdist <!-- delete the ones that do not apply --> - Issue type: Bug report ### Short description dnsdist 1.2.0 complains about option; starts anyway <!-- If this is a bug report, use the following part of the the template and delete the part at the bottom --> ### Steps to reproduce ``` $ /usr/sbin/dnsdist --check-bla --config /tmp/dddd /usr/sbin/dnsdist: unrecognized option '--check-bla' Added downstream server 127.0.0.2:5353 ``` ### Expected behaviour diagnostic message and exit (1)
1.0
dnsdist 1.2.0 complains about incorrect option but starts anyway - - Program: dnsdist <!-- delete the ones that do not apply --> - Issue type: Bug report ### Short description dnsdist 1.2.0 complains about option; starts anyway <!-- If this is a bug report, use the following part of the the template and delete the part at the bottom --> ### Steps to reproduce ``` $ /usr/sbin/dnsdist --check-bla --config /tmp/dddd /usr/sbin/dnsdist: unrecognized option '--check-bla' Added downstream server 127.0.0.2:5353 ``` ### Expected behaviour diagnostic message and exit (1)
non_priority
dnsdist complains about incorrect option but starts anyway program dnsdist issue type bug report short description dnsdist complains about option starts anyway if this is a bug report use the following part of the the template and delete the part at the bottom steps to reproduce usr sbin dnsdist check bla config tmp dddd usr sbin dnsdist unrecognized option check bla added downstream server expected behaviour diagnostic message and exit
0
1,470
2,546,752,778
IssuesEvent
2015-01-30 03:38:17
d3athrow/vgstation13
https://api.github.com/repos/d3athrow/vgstation13
closed
Observers are not polled for special roles
Needs Moar Testing
This goes for stuff like pAI, posibrains, diona nymphs, xenos and so on. Those who hit observe are not polled for special roles, only those who have been in the round already are notified. Found that after being a mouse and ghosting, prompts for roles show up as they should.
1.0
Observers are not polled for special roles - This goes for stuff like pAI, posibrains, diona nymphs, xenos and so on. Those who hit observe are not polled for special roles, only those who have been in the round already are notified. Found that after being a mouse and ghosting, prompts for roles show up as they should.
non_priority
observers are not polled for special roles this goes for stuff like pai posibrains diona nymphs xenos and so on those who hit observe are not polled for special roles only those who have been in the round already are notified found that after being a mouse and ghosting prompts for roles show up as they should
0
249,195
18,858,169,585
IssuesEvent
2021-11-12 09:27:45
HangZelin/pe
https://api.github.com/repos/HangZelin/pe
opened
Sequence diagram return arrow wrong format
type.DocumentationBug severity.Low
The return arrow should be dashed, but in your findExpensesCommand DescriptionContainsKeywordsPredicate, it passes back with solid arrow. ![Bug.png](https://raw.githubusercontent.com/HangZelin/pe/main/files/808bf99d-c3bd-4e94-8a8e-d672e608b659.png) <!--session: 1636703045478-2cb5bca2-00d4-433b-9adc-c7a5b09970e1--> <!--Version: Web v3.4.1-->
1.0
Sequence diagram return arrow wrong format - The return arrow should be dashed, but in your findExpensesCommand DescriptionContainsKeywordsPredicate, it passes back with solid arrow. ![Bug.png](https://raw.githubusercontent.com/HangZelin/pe/main/files/808bf99d-c3bd-4e94-8a8e-d672e608b659.png) <!--session: 1636703045478-2cb5bca2-00d4-433b-9adc-c7a5b09970e1--> <!--Version: Web v3.4.1-->
non_priority
sequence diagram return arrow wrong format the return arrow should be dashed but in your findexpensescommand descriptioncontainskeywordspredicate it passes back with solid arrow
0
237,038
7,755,126,262
IssuesEvent
2018-05-31 09:11:27
flotos/idm_twitter
https://api.github.com/repos/flotos/idm_twitter
closed
Web architecture plannification
Point: 3 Priority: High
Definition Of Done: * The technology stack and design pattern are well defined
1.0
Web architecture plannification - Definition Of Done: * The technology stack and design pattern are well defined
priority
web architecture plannification definition of done the technology stack and design pattern are well defined
1
372,671
26,013,218,580
IssuesEvent
2022-12-21 05:16:01
appsmithorg/appsmith-docs
https://api.github.com/repos/appsmithorg/appsmith-docs
closed
[Docs]: Support OnFocus and OnBlur for a few widgets
Documentation Ready for Doc Team User Education Pod
### Is there an existing issue for this? - [X] I have searched the existing issues ### Engineering Ticket Link https://github.com/appsmithorg/appsmith/issues/6452 ### Release Date v1.8.13 ### First Draft #669 ### Loom video [Loom](https://www.loom.com/share/4a7eb406ccd74dfba09e56045068ccd7) ### Discord/slack/intercom Link if needed _No response_ ### PRD https://appsmith.notion.site/Widget-onFocus-and-onBlur-events-36fc98f9d0d04ce0b369247e91e01e5b ### Test plan/cases _No response_ ### Use cases or user requests _No response_
1.0
[Docs]: Support OnFocus and OnBlur for a few widgets - ### Is there an existing issue for this? - [X] I have searched the existing issues ### Engineering Ticket Link https://github.com/appsmithorg/appsmith/issues/6452 ### Release Date v1.8.13 ### First Draft #669 ### Loom video [Loom](https://www.loom.com/share/4a7eb406ccd74dfba09e56045068ccd7) ### Discord/slack/intercom Link if needed _No response_ ### PRD https://appsmith.notion.site/Widget-onFocus-and-onBlur-events-36fc98f9d0d04ce0b369247e91e01e5b ### Test plan/cases _No response_ ### Use cases or user requests _No response_
non_priority
support onfocus and onblur for a few widgets is there an existing issue for this i have searched the existing issues engineering ticket link release date first draft loom video discord slack intercom link if needed no response prd test plan cases no response use cases or user requests no response
0
216,636
24,282,585,519
IssuesEvent
2022-09-28 18:48:17
interserver/vps_host_server
https://api.github.com/repos/interserver/vps_host_server
opened
CVE-2019-11358 (Medium) detected in detain/phpsysinfo-dev-master
security vulnerability
## CVE-2019-11358 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>detain/phpsysinfo-dev-master</b></p></summary> <p>phpSysInfo is a customizable PHP Script that parses /proc, and formats information nicely. It will display information about system facts like Uptime, CPU, Memory, PCI devices, SCSI devices, IDE devices, Network adapters, Disk usage, and more.</p> <p>Library home page: <a href="https://api.github.com/repos/detain/phpsysinfo/zipball/4742aca48809163f1aad4bb73c0aca6e54f19d5a">https://api.github.com/repos/detain/phpsysinfo/zipball/4742aca48809163f1aad4bb73c0aca6e54f19d5a</a></p> <p> Dependency Hierarchy: - :x: **detain/phpsysinfo-dev-master** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/interserver/vps_host_server/commit/753cde356eaf5ead6e1093329583842a94df77ed">753cde356eaf5ead6e1093329583842a94df77ed</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype. <p>Publish Date: 2019-04-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p> <p>Release Date: 2019-04-20</p> <p>Fix Resolution: 3.4.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-11358 (Medium) detected in detain/phpsysinfo-dev-master - ## CVE-2019-11358 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>detain/phpsysinfo-dev-master</b></p></summary> <p>phpSysInfo is a customizable PHP Script that parses /proc, and formats information nicely. It will display information about system facts like Uptime, CPU, Memory, PCI devices, SCSI devices, IDE devices, Network adapters, Disk usage, and more.</p> <p>Library home page: <a href="https://api.github.com/repos/detain/phpsysinfo/zipball/4742aca48809163f1aad4bb73c0aca6e54f19d5a">https://api.github.com/repos/detain/phpsysinfo/zipball/4742aca48809163f1aad4bb73c0aca6e54f19d5a</a></p> <p> Dependency Hierarchy: - :x: **detain/phpsysinfo-dev-master** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/interserver/vps_host_server/commit/753cde356eaf5ead6e1093329583842a94df77ed">753cde356eaf5ead6e1093329583842a94df77ed</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype. <p>Publish Date: 2019-04-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p> <p>Release Date: 2019-04-20</p> <p>Fix Resolution: 3.4.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium detected in detain phpsysinfo dev master cve medium severity vulnerability vulnerable library detain phpsysinfo dev master phpsysinfo is a customizable php script that parses proc and formats information nicely it will display information about system facts like uptime cpu memory pci devices scsi devices ide devices network adapters disk usage and more library home page a href dependency hierarchy x detain phpsysinfo dev master vulnerable library found in head commit a href found in base branch master vulnerability details jquery before as used in drupal backdrop cms and other products mishandles jquery extend true because of object prototype pollution if an unsanitized source object contained an enumerable proto property it could extend the native object prototype publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
3,484
3,466,165,820
IssuesEvent
2015-12-22 01:05:04
zerotier/ZeroTierOne
https://api.github.com/repos/zerotier/ZeroTierOne
closed
ZeroTier window larger than screen on 13" MacBook
bug usability
I've just upgraded ZeroTier on OSX to the latest version. It was built from source and installed using `make mac-dist-pkg`. Unfortunately, the installation changed the old UI. The new vertical layout is larger than my screen, and there is no way to resize the window. Should be an easy fix. System: OSX El Capitan Version 10.11.1 (15B42) MacBook Pro (Retina, 13-inch, Mid 2014) Display: 13.3-inch (2560 x 1600)
True
ZeroTier window larger than screen on 13" MacBook - I've just upgraded ZeroTier on OSX to the latest version. It was built from source and installed using `make mac-dist-pkg`. Unfortunately, the installation changed the old UI. The new vertical layout is larger than my screen, and there is no way to resize the window. Should be an easy fix. System: OSX El Capitan Version 10.11.1 (15B42) MacBook Pro (Retina, 13-inch, Mid 2014) Display: 13.3-inch (2560 x 1600)
non_priority
zerotier window larger than screen on macbook i ve just upgraded zerotier on osx to the latest version it was built from source and installed using make mac dist pkg unfortunately the installation changed the old ui the new vertical layout is larger than my screen and there is no way to resize the window should be an easy fix system osx el capitan version macbook pro retina inch mid display inch x
0
78,245
15,569,948,007
IssuesEvent
2021-03-17 01:22:01
jrrk/riscv-linux
https://api.github.com/repos/jrrk/riscv-linux
opened
CVE-2018-19407 (Medium) detected in linux-amlogicv4.18
security vulnerability
## CVE-2018-19407 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-amlogicv4.18</b></p></summary> <p> <p>Intel Wired LAN patch queue for net</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-amlogic.git>https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-amlogic.git</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/x86/kvm/x86.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/x86/kvm/x86.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The vcpu_scan_ioapic function in arch/x86/kvm/x86.c in the Linux kernel through 4.19.2 allows local users to cause a denial of service (NULL pointer dereference and BUG) via crafted system calls that reach a situation where ioapic is uninitialized. <p>Publish Date: 2018-11-21 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19407>CVE-2018-19407</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19407">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19407</a></p> <p>Release Date: 2018-11-21</p> <p>Fix Resolution: v4.20-rc5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2018-19407 (Medium) detected in linux-amlogicv4.18 - ## CVE-2018-19407 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-amlogicv4.18</b></p></summary> <p> <p>Intel Wired LAN patch queue for net</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-amlogic.git>https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-amlogic.git</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/x86/kvm/x86.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/x86/kvm/x86.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The vcpu_scan_ioapic function in arch/x86/kvm/x86.c in the Linux kernel through 4.19.2 allows local users to cause a denial of service (NULL pointer dereference and BUG) via crafted system calls that reach a situation where ioapic is uninitialized. <p>Publish Date: 2018-11-21 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19407>CVE-2018-19407</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19407">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19407</a></p> <p>Release Date: 2018-11-21</p> <p>Fix Resolution: v4.20-rc5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium detected in linux cve medium severity vulnerability vulnerable library linux intel wired lan patch queue for net library home page a href vulnerable source files riscv linux arch kvm c riscv linux arch kvm c vulnerability details the vcpu scan ioapic function in arch kvm c in the linux kernel through allows local users to cause a denial of service null pointer dereference and bug via crafted system calls that reach a situation where ioapic is uninitialized publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
116,891
4,708,218,768
IssuesEvent
2016-10-13 22:39:31
joshuagaul/aqueous-rift
https://api.github.com/repos/joshuagaul/aqueous-rift
closed
Water Availability UI
Priority 1
Create space for Map in the main screen (or wherever else you would like)
1.0
Water Availability UI - Create space for Map in the main screen (or wherever else you would like)
priority
water availability ui create space for map in the main screen or wherever else you would like
1
532,380
15,555,172,477
IssuesEvent
2021-03-16 05:35:05
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Test console support for grapghql APIs.
Feature/GraphQL Priority/Normal Publisher Type/Improvement Type/React-UI
### Describe your problem(s) At the moment, the publisher test console doesn't support graphql APIs. Test APIs(testconsole) should be in prototype state. But currently, we implemented a way like engaged graphql handlers only for the published APIs. ### Describe your solution <!-- Describe the feature/improvement --> ### How will you implement it <!-- If you like to suggest an approach or a design --> --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
1.0
Test console support for grapghql APIs. - ### Describe your problem(s) At the moment, the publisher test console doesn't support graphql APIs. Test APIs(testconsole) should be in prototype state. But currently, we implemented a way like engaged graphql handlers only for the published APIs. ### Describe your solution <!-- Describe the feature/improvement --> ### How will you implement it <!-- If you like to suggest an approach or a design --> --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
priority
test console support for grapghql apis describe your problem s at the moment the publisher test console doesn t support graphql apis test apis testconsole should be in prototype state but currently we implemented a way like engaged graphql handlers only for the published apis describe your solution how will you implement it optional fields related issues suggested labels suggested assignees
1
15,442
19,706,690,488
IssuesEvent
2022-01-12 23:01:54
Globox1997/BackSlot
https://api.github.com/repos/Globox1997/BackSlot
closed
Backslot does not display correctly in 1.18.1 latest ver
incompatibility
When using Backslot in 1.18.1, sheathed swords do not display correctly, for some reason, if a sword is in your inventory at all after leaving your mainhand, it will ALWAYS display on your hip. Even if the config option for it is disabled. This leads to even weirder issues if you equip the blade to your hip slot or your back slot. (As seen in image equipping to hip slot) ![image](https://user-images.githubusercontent.com/62717881/147487486-0d2b5dde-f03f-4ea7-9491-6f4adb030a36.png) As far as I can tell, there's no console errors, The only mods I have that touch the playermodel are Emotecraft and Figura. This issue did not occur in1.17, seems to be 1.18 exclusive.
True
Backslot does not display correctly in 1.18.1 latest ver - When using Backslot in 1.18.1, sheathed swords do not display correctly, for some reason, if a sword is in your inventory at all after leaving your mainhand, it will ALWAYS display on your hip. Even if the config option for it is disabled. This leads to even weirder issues if you equip the blade to your hip slot or your back slot. (As seen in image equipping to hip slot) ![image](https://user-images.githubusercontent.com/62717881/147487486-0d2b5dde-f03f-4ea7-9491-6f4adb030a36.png) As far as I can tell, there's no console errors, The only mods I have that touch the playermodel are Emotecraft and Figura. This issue did not occur in1.17, seems to be 1.18 exclusive.
non_priority
backslot does not display correctly in latest ver when using backslot in sheathed swords do not display correctly for some reason if a sword is in your inventory at all after leaving your mainhand it will always display on your hip even if the config option for it is disabled this leads to even weirder issues if you equip the blade to your hip slot or your back slot as seen in image equipping to hip slot as far as i can tell there s no console errors the only mods i have that touch the playermodel are emotecraft and figura this issue did not occur seems to be exclusive
0
22,421
3,645,250,226
IssuesEvent
2016-02-15 13:51:37
GoldenSoftwareLtd/gedemin
https://api.github.com/repos/GoldenSoftwareLtd/gedemin
closed
Авансовый отчет
Bank Gorodok Priority-High Type-Defect
Originally reported on Google Code with ID 1383 ``` Не возможно правильно оформить авансовый отчет так как негде ввести сумму полученную в кассе наличными. ``` Reported by `PogoSG` on 2009-05-26 12:18:26
1.0
Авансовый отчет - Originally reported on Google Code with ID 1383 ``` Не возможно правильно оформить авансовый отчет так как негде ввести сумму полученную в кассе наличными. ``` Reported by `PogoSG` on 2009-05-26 12:18:26
non_priority
авансовый отчет originally reported on google code with id не возможно правильно оформить авансовый отчет так как негде ввести сумму полученную в кассе наличными reported by pogosg on
0
32,848
4,792,277,029
IssuesEvent
2016-10-31 15:07:28
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
: TestStoreRangeDownReplicate failed under stress
Robot test-failure
SHA: https://github.com/cockroachdb/cockroach/commits/7207111aa3a43df0552509365fdec741a53f873f Stress build found a failed test: ``` I161030 07:27:23.653183 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.656665 14316 gossip/gossip.go:237 [n?] initial resolvers: [] W161030 07:27:23.657081 14316 gossip/gossip.go:1055 [n?] no resolvers found; use --join to specify a connected node I161030 07:27:23.657404 14316 base/node_id.go:62 NodeID set to 1 I161030 07:27:23.681293 14316 storage/store.go:1152 [n1,s1]: failed initial metrics computation: [n1,s1]: system config not yet available I161030 07:27:23.681623 14316 gossip/gossip.go:280 [n1] NodeDescriptor set to node_id:1 address:<network_field:"tcp" address_field:"127.0.0.1:53917" > attrs:<> locality:<> I161030 07:27:23.691112 14426 storage/replica_proposal.go:292 [s1,r1/1:/M{in-ax}] new range lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0s [physicalTime=1970-01-01 00:00:00 +0000 UTC] I161030 07:27:23.712871 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.714694 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.715111 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.715429 14316 base/node_id.go:62 NodeID set to 2 I161030 07:27:23.726755 14316 storage/store.go:1152 [n2,s2]: failed initial metrics computation: [n2,s2]: system config not yet available I161030 07:27:23.727079 14316 gossip/gossip.go:280 [n2] NodeDescriptor set to node_id:2 address:<network_field:"tcp" address_field:"127.0.0.1:44300" > attrs:<> locality:<> I161030 07:27:23.731998 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.754264 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.754702 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.760886 14316 base/node_id.go:62 NodeID set to 3 I161030 07:27:23.761447 14515 gossip/client.go:126 [n2] node 2: started gossip client to 127.0.0.1:53917 I161030 07:27:23.777101 14533 gossip/client.go:126 [n3] node 3: started gossip client to 127.0.0.1:53917 I161030 07:27:23.779094 14316 storage/store.go:1152 [n3,s3]: failed initial metrics computation: [n3,s3]: system config not yet available I161030 07:27:23.779423 14316 gossip/gossip.go:280 [n3] NodeDescriptor set to node_id:3 address:<network_field:"tcp" address_field:"127.0.0.1:55980" > attrs:<> locality:<> I161030 07:27:23.781880 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.796455 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.796981 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.797371 14316 base/node_id.go:62 NodeID set to 4 I161030 07:27:23.820162 14316 storage/store.go:1152 [n4,s4]: failed initial metrics computation: [n4,s4]: system config not yet available I161030 07:27:23.820764 14316 gossip/gossip.go:280 [n4] NodeDescriptor set to node_id:4 address:<network_field:"tcp" address_field:"127.0.0.1:47521" > attrs:<> locality:<> I161030 07:27:23.829415 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.861288 14653 gossip/client.go:126 [n4] node 4: started gossip client to 127.0.0.1:53917 I161030 07:27:23.863555 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.863972 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.864294 14316 base/node_id.go:62 NodeID set to 5 I161030 07:27:23.875557 14316 storage/store.go:1152 [n5,s5]: failed initial metrics computation: [n5,s5]: system config not yet available I161030 07:27:23.875879 14316 gossip/gossip.go:280 [n5] NodeDescriptor set to node_id:5 address:<network_field:"tcp" address_field:"127.0.0.1:48364" > attrs:<> locality:<> I161030 07:27:23.892371 14395 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:53917 I161030 07:27:23.898230 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:44300}) I161030 07:27:23.921919 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:47521}) I161030 07:27:23.932910 14395 gossip/client.go:131 [n5] node 5: closing client to node 1 (127.0.0.1:53917): received forward from node 1 to 2 (127.0.0.1:44300) I161030 07:27:23.933681 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 3 ({tcp 127.0.0.1:55980}) I161030 07:27:23.934219 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 3 ({tcp 127.0.0.1:55980}) I161030 07:27:23.941802 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:47521}) I161030 07:27:23.944891 14736 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:44300 I161030 07:27:24.028303 14316 storage/client_test.go:420 gossip network initialized I161030 07:27:24.041618 14316 storage/replica_raftstorage.go:446 [s1,r1/1:/M{in-ax}] generated snapshot 2a46f6ca for range 1 at index 21 in 109.399µs. I161030 07:27:24.044627 14316 storage/store.go:3061 streamed snapshot: kv pairs: 40, log entries: 11 I161030 07:27:24.046366 14851 storage/replica_raftstorage.go:577 [s2] [n2,s2,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 21 (id=2a46f6ca, encoded size=16, 1 rocksdb batches, 11 log entries) I161030 07:27:24.051034 14851 storage/replica_raftstorage.go:580 [s2] [n2,s2,r1/?:/M{in-ax}]: with replicaID [?], applied preemptive snapshot in 0.004s I161030 07:27:24.057428 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 I161030 07:27:24.086827 14832 storage/replica.go:1860 [s1,r1/1:/M{in-ax}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161030 07:27:24.136707 14874 storage/raft_transport.go:423 raft transport stream to node 1 established I161030 07:27:24.143992 14316 storage/replica_raftstorage.go:446 [s1,r1/1:/M{in-ax}] generated snapshot 7a702b34 for range 1 at index 25 in 99.399µs. I161030 07:27:24.220163 14878 storage/replica_raftstorage.go:577 [s3] [n3,s3,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 25 (id=7a702b34, encoded size=16, 1 rocksdb batches, 15 log entries) I161030 07:27:24.221867 14316 storage/store.go:3061 streamed snapshot: kv pairs: 45, log entries: 15 I161030 07:27:24.245227 14878 storage/replica_raftstorage.go:580 [s3] [n3,s3,r1/?:/M{in-ax}]: with replicaID [?], applied preemptive snapshot in 0.025s I161030 07:27:24.293737 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > next_replica_id:3 I161030 07:27:24.421110 14859 storage/replica.go:1860 [s1,r1/1:/M{in-ax}] proposing ADD_REPLICA {NodeID:3 StoreID:3 ReplicaID:3} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] I161030 07:27:24.608892 14979 storage/raft_transport.go:423 raft transport stream to node 1 established I161030 07:27:24.954460 14316 storage/replica_command.go:2363 initiating a split of this range at key "m" [r2] I161030 07:27:25.475498 14316 storage/replica_raftstorage.go:446 [s1,r2/1:{"m"-/Max}] generated snapshot 757e3438 for range 2 at index 10 in 125.499µs. I161030 07:27:25.513565 14316 storage/store.go:3061 streamed snapshot: kv pairs: 28, log entries: 0 I161030 07:27:25.518688 15124 storage/replica_raftstorage.go:577 [s4] [n4,s4,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 10 (id=757e3438, encoded size=16, 1 rocksdb batches, 0 log entries) I161030 07:27:25.520011 15124 storage/replica_raftstorage.go:580 [s4] [n4,s4,r2/?:{"m"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.001s I161030 07:27:25.542514 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > next_replica_id:4 W161030 07:27:25.843937 15095 storage/stores.go:218 range not contained in one range: [/Meta2/Max,"m\x00"), but have [/Min,"m") I161030 07:27:26.522977 15082 storage/replica.go:1860 [s1,r2/1:{"m"-/Max}] proposing ADD_REPLICA {NodeID:4 StoreID:4 ReplicaID:4} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4}] I161030 07:27:26.676574 14316 storage/replica_raftstorage.go:446 [s1,r2/1:{"m"-/Max}] generated snapshot c4de21f7 for range 2 at index 14 in 104.999µs. I161030 07:27:26.681441 14316 storage/store.go:3061 streamed snapshot: kv pairs: 30, log entries: 4 I161030 07:27:26.685970 15005 storage/replica_raftstorage.go:577 [s5] [n5,s5,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 14 (id=c4de21f7, encoded size=16, 1 rocksdb batches, 4 log entries) I161030 07:27:26.687899 15005 storage/replica_raftstorage.go:580 [s5] [n5,s5,r2/?:{"m"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.002s I161030 07:27:26.796554 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > replicas:<node_id:4 store_id:4 replica_id:4 > next_replica_id:5 I161030 07:27:26.889869 15234 storage/raft_transport.go:423 raft transport stream to node 1 established I161030 07:27:27.740338 15177 storage/replica.go:1860 [s1,r2/1:{"m"-/Max}] proposing ADD_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4} {NodeID:5 StoreID:5 ReplicaID:5}] I161030 07:27:28.086194 14425 storage/replica.go:1860 [s1,r2/1:{"m"-/Max}] proposing ADD_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4} {NodeID:5 StoreID:5 ReplicaID:5}] I161030 07:27:28.346981 15278 storage/raft_transport.go:423 raft transport stream to node 1 established W161030 07:27:28.755593 14891 storage/store.go:745 storeMu: mutex held by github.com/cockroachdb/cockroach/pkg/storage.(*Store).HandleRaftUncoalescedRequest for 119.761392ms (>100ms): goroutine 14891 [running]: runtime/debug.Stack(0x1bc0c90, 0x1bc0cd0, 0x52) /usr/local/go/src/runtime/debug/stack.go:24 +0x79 github.com/cockroachdb/cockroach/pkg/util/syncutil.ThresholdLogger.func1(0x72369f0) /go/src/github.com/cockroachdb/cockroach/pkg/util/syncutil/timedmutex.go:65 +0xe1 github.com/cockroachdb/cockroach/pkg/util/syncutil.(*TimedMutex).Unlock(0xc42813fb28) /go/src/github.com/cockroachdb/cockroach/pkg/util/syncutil/timedmutex.go:92 +0x80 github.com/cockroachdb/cockroach/pkg/storage.(*Store).HandleRaftUncoalescedRequest(0xc42813f880, 0x7f0d3ea5cd38, 0xc426b693b0, 0xc423f31980, 0x7f0d39f51550, 0xc426d5ee10, 0xd7a5c1) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2647 +0x20e github.com/cockroachdb/cockroach/pkg/storage.(*Store).HandleRaftRequest(0xc42813f880, 0x7f0d3ea5cd38, 0xc426b693b0, 0xc423f31980, 0x7f0d39f51550, 0xc426d5ee10, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2613 +0x243 github.com/cockroachdb/cockroach/pkg/storage.(*RaftTransport).handleRaftRequest(0xc4214e4840, 0x7f0d3ea5cd38, 0xc426b693b0, 0xc423f31980, 0x7f0d39f51550, 0xc426d5ee10, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/raft_transport.go:252 +0xfb github.com/cockroachdb/cockroach/pkg/storage.(*RaftTransport).RaftMessageBatch.func1.1.1(0x235afa0, 0xc426d5ee10, 0xc4214e4840, 0xc4209d9788, 0xc4209d9790) /go/src/github.com/cockroachdb/cockroach/pkg/storage/raft_transport.go:306 +0x173 github.com/cockroachdb/cockroach/pkg/storage.(*RaftTransport).RaftMessageBatch.func1.1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/raft_transport.go:314 +0x45 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc427259050, 0xc426b69440) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:196 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:197 +0x66 I161030 07:27:31.143048 14566 storage/replica_proposal.go:292 [s3,r1/3:{/Min-"m"}] new range lease replica {3 3 3} 1970-01-01 00:00:09.9 +0000 UTC 5.4s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 9.9s [physicalTime=1970-01-01 00:00:21.6 +0000 UTC] I161030 07:27:31.244921 14428 storage/replica_proposal.go:341 [s1,r2/1:{"m"-/Max}] range [n1,s1,r2/1:{"m"-/Max}]: transferring raft leadership to replica ID 3 I161030 07:27:31.331133 14490 storage/replica_proposal.go:292 [s3,r2/3:{"m"-/Max}] new range lease replica {3 3 3} 1970-01-01 00:00:20.7 +0000 UTC 1.8s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 20.7s [physicalTime=1970-01-01 00:00:21.6 +0000 UTC] I161030 07:27:31.397812 15458 storage/raft_transport.go:423 raft transport stream to node 2 established I161030 07:27:31.485784 15459 storage/raft_transport.go:423 raft transport stream to node 4 established I161030 07:27:31.505815 15460 storage/raft_transport.go:423 raft transport stream to node 5 established I161030 07:27:31.556779 15444 storage/raft_transport.go:423 raft transport stream to node 3 established I161030 07:27:31.570292 15446 storage/raft_transport.go:423 raft transport stream to node 3 established I161030 07:27:31.610704 15477 storage/raft_transport.go:423 raft transport stream to node 3 established I161030 07:27:32.024543 14497 storage/replica.go:1908 [s3,r1/3:{/Min-"m"}] not quiescing: 1 pending commands I161030 07:27:32.044181 14426 storage/replica_proposal.go:292 [s1,r1/1:{/Min-"m"}] new range lease replica {1 1 1} 1970-01-01 00:00:15.3 +0000 UTC 28.8s following replica {3 3 3} 1970-01-01 00:00:09.9 +0000 UTC 5.4s [physicalTime=1970-01-01 00:00:43.2 +0000 UTC] I161030 07:27:33.081570 15514 storage/raft_transport.go:423 raft transport stream to node 2 established I161030 07:27:33.095066 15486 storage/raft_transport.go:423 raft transport stream to node 4 established I161030 07:27:33.254303 15531 storage/raft_transport.go:423 raft transport stream to node 5 established I161030 07:27:33.376762 15603 storage/raft_transport.go:423 raft transport stream to node 5 established I161030 07:27:34.739984 14316 storage/replica_command.go:3240 [replicate,s3,r2/3:{"m"-/Max}] change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > replicas:<node_id:4 store_id:4 replica_id:4 > replicas:<node_id:5 store_id:5 replica_id:5 > next_replica_id:6 I161030 07:27:36.757776 15747 storage/replica.go:1860 [s3,r2/3:{"m"-/Max}] proposing REMOVE_REPLICA {NodeID:1 StoreID:1 ReplicaID:1} for range 2: [{NodeID:5 StoreID:5 ReplicaID:5} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4}] I161030 07:27:37.014782 14316 storage/replica_command.go:3240 [replicate,s3,r2/3:{"m"-/Max}] change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:5 store_id:5 replica_id:5 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > replicas:<node_id:4 store_id:4 replica_id:4 > next_replica_id:6 I161030 07:27:37.046655 15277 storage/store.go:2922 [s1] [n1,s1,r2/1:{"m"-/Max}]: added to replica GC queue (peer suggestion) I161030 07:27:37.099100 15099 storage/store.go:2922 [s1] [n1,s1,r2/1:{"m"-/Max}]: added to replica GC queue (peer suggestion) I161030 07:27:37.754229 15601 storage/raft_transport.go:423 raft transport stream to node 2 established I161030 07:27:38.404394 15823 storage/raft_transport.go:423 raft transport stream to node 4 established I161030 07:27:38.448979 14569 storage/replica.go:1908 [s3,r2/3:{"m"-/Max}] not quiescing: 1 pending commands I161030 07:27:38.616888 15833 storage/replica.go:1860 [s3,r2/3:{"m"-/Max}] proposing REMOVE_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:4 StoreID:4 ReplicaID:4} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] I161030 07:27:38.796101 14493 storage/replica.go:1860 [s3,r2/3:{"m"-/Max}] proposing REMOVE_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:4 StoreID:4 ReplicaID:4} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] W161030 07:27:38.889718 14566 raft/raft.go:696 [s3,r1/3:{/Min-"m"}] 3 stepped down to follower since quorum is not active I161030 07:27:38.983221 15488 storage/store.go:2922 [s5] [n5,s5,r2/5:{"m"-/Max}]: added to replica GC queue (peer suggestion) I161030 07:27:39.045318 15900 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/queue.go:467 I161030 07:27:39.071016 15898 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/intent_resolver.go:383 1 storage/client_test.go:507 1 kv/txn_coord_sender.go:911 E161030 07:27:39.102644 14393 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous I161030 07:27:39.130069 15896 util/stop/stopper.go:455 quiescing; tasks left: 10 storage/client_test.go:507 1 storage/replica_range_lease.go:150 1 storage/queue.go:467 E161030 07:27:39.144876 14388 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: range 1: replica {3 3 3} not lease holder; node_id:1 store_id:1 replica_id:1 is E161030 07:27:39.146341 14393 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161030 07:27:39.146493 14600 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:27:39.147569 14600 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer W161030 07:27:39.196014 15768 storage/intent_resolver.go:101 [s1] asynchronous resolveIntents failed: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161030 07:27:39.199520 14441 storage/queue.go:558 [replicaGC] on [n1,s1,r2/1:{"m"-/Max}]: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer W161030 07:27:39.225984 15892 storage/intent_resolver.go:337 [n3,s3,r2/3:{"m"-/Max}]: failed to resolve intents: failed to send RPC: sending to all 3 replicas failed; last error: failed to send RPC: store is stopped E161030 07:27:39.231876 14738 storage/queue.go:558 [replicaGC] on [n5,s5,r2/5:{"m"-/Max}]: failed to send RPC: sending to all 5 replicas failed; last error: failed to send RPC: store is stopped E161030 07:27:39.232181 14538 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:27:39.233309 14538 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:27:39.233469 15896 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/queue.go:467 1 storage/client_test.go:507 E161030 07:27:39.244953 14381 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161030 07:27:39.246558 14388 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:27:39.248304 15898 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/intent_resolver.go:383 I161030 07:27:39.248534 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks E161030 07:27:39.251579 14393 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161030 07:27:39.251714 14381 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161030 07:27:39.251862 14388 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:27:39.268072 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks E161030 07:27:39.270182 14538 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer W161030 07:27:39.270315 14839 storage/raft_transport.go:463 no handler found for store 1 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:1 store_id:1 replica_id:1 > union:<error:<message:"sender replica too old, discarding message" transaction_restart:NONE origin_node:0 detail:<replica_too_old:<> > now:<wall_time:0 logical:0 > > > W161030 07:27:39.271266 14982 storage/store.go:2926 [s3] got error from range 1, replica {1 1 1}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:3 StoreID:3 ReplicaID:3}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:1} W161030 07:27:39.292296 15742 storage/store.go:2926 [s4] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161030 07:27:39.292503 15742 storage/store.go:2926 [s4] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161030 07:27:39.292699 15742 storage/store.go:2926 [s4] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161030 07:27:39.293013 14839 storage/raft_transport.go:463 no handler found for store 1 in response range_id:1 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:1 store_id:1 replica_id:1 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:1 StoreID:1 ReplicaID:1}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161030 07:27:39.294937 15742 storage/store.go:2926 [s4] got error from range 0, replica {2 2 0}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:0}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:0} I161030 07:27:39.296614 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.299492 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.301765 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.310592 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks W161030 07:27:39.311372 15460 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.311633 15444 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.311852 15486 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF W161030 07:27:39.312223 15601 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.312431 15477 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.312620 15316 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.312845 15097 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF W161030 07:27:39.313060 14979 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161030 07:27:39.313333 15458 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.313542 14837 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.313885 15514 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.314093 15603 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.314307 15531 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.314516 15823 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF W161030 07:27:39.314724 15446 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.316143 15234 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF I161030 07:27:39.316867 14531 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:55980->127.0.0.1:55006: use of closed network connection I161030 07:27:39.317034 14358 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:53917->127.0.0.1:57013: use of closed network connection I161030 07:27:39.317196 14602 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:48364->127.0.0.1:42029: use of closed network connection W161030 07:27:39.317346 14941 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.317495 14874 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161030 07:27:39.317643 15278 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161030 07:27:39.317789 15459 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF I161030 07:27:39.318206 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.318623 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.319076 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.319410 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.320697 14552 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:47521->127.0.0.1:36777: use of closed network connection I161030 07:27:39.320877 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks client_raft_test.go:1010: Failed to achieve proper replication within 10 seconds ```
1.0
: TestStoreRangeDownReplicate failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/7207111aa3a43df0552509365fdec741a53f873f Stress build found a failed test: ``` I161030 07:27:23.653183 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.656665 14316 gossip/gossip.go:237 [n?] initial resolvers: [] W161030 07:27:23.657081 14316 gossip/gossip.go:1055 [n?] no resolvers found; use --join to specify a connected node I161030 07:27:23.657404 14316 base/node_id.go:62 NodeID set to 1 I161030 07:27:23.681293 14316 storage/store.go:1152 [n1,s1]: failed initial metrics computation: [n1,s1]: system config not yet available I161030 07:27:23.681623 14316 gossip/gossip.go:280 [n1] NodeDescriptor set to node_id:1 address:<network_field:"tcp" address_field:"127.0.0.1:53917" > attrs:<> locality:<> I161030 07:27:23.691112 14426 storage/replica_proposal.go:292 [s1,r1/1:/M{in-ax}] new range lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0s [physicalTime=1970-01-01 00:00:00 +0000 UTC] I161030 07:27:23.712871 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.714694 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.715111 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.715429 14316 base/node_id.go:62 NodeID set to 2 I161030 07:27:23.726755 14316 storage/store.go:1152 [n2,s2]: failed initial metrics computation: [n2,s2]: system config not yet available I161030 07:27:23.727079 14316 gossip/gossip.go:280 [n2] NodeDescriptor set to node_id:2 address:<network_field:"tcp" address_field:"127.0.0.1:44300" > attrs:<> locality:<> I161030 07:27:23.731998 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.754264 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.754702 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.760886 14316 base/node_id.go:62 NodeID set to 3 I161030 07:27:23.761447 14515 gossip/client.go:126 [n2] node 2: started gossip client to 127.0.0.1:53917 I161030 07:27:23.777101 14533 gossip/client.go:126 [n3] node 3: started gossip client to 127.0.0.1:53917 I161030 07:27:23.779094 14316 storage/store.go:1152 [n3,s3]: failed initial metrics computation: [n3,s3]: system config not yet available I161030 07:27:23.779423 14316 gossip/gossip.go:280 [n3] NodeDescriptor set to node_id:3 address:<network_field:"tcp" address_field:"127.0.0.1:55980" > attrs:<> locality:<> I161030 07:27:23.781880 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.796455 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.796981 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.797371 14316 base/node_id.go:62 NodeID set to 4 I161030 07:27:23.820162 14316 storage/store.go:1152 [n4,s4]: failed initial metrics computation: [n4,s4]: system config not yet available I161030 07:27:23.820764 14316 gossip/gossip.go:280 [n4] NodeDescriptor set to node_id:4 address:<network_field:"tcp" address_field:"127.0.0.1:47521" > attrs:<> locality:<> I161030 07:27:23.829415 14316 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:27:23.861288 14653 gossip/client.go:126 [n4] node 4: started gossip client to 127.0.0.1:53917 I161030 07:27:23.863555 14316 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:53917] W161030 07:27:23.863972 14316 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:27:23.864294 14316 base/node_id.go:62 NodeID set to 5 I161030 07:27:23.875557 14316 storage/store.go:1152 [n5,s5]: failed initial metrics computation: [n5,s5]: system config not yet available I161030 07:27:23.875879 14316 gossip/gossip.go:280 [n5] NodeDescriptor set to node_id:5 address:<network_field:"tcp" address_field:"127.0.0.1:48364" > attrs:<> locality:<> I161030 07:27:23.892371 14395 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:53917 I161030 07:27:23.898230 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:44300}) I161030 07:27:23.921919 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:47521}) I161030 07:27:23.932910 14395 gossip/client.go:131 [n5] node 5: closing client to node 1 (127.0.0.1:53917): received forward from node 1 to 2 (127.0.0.1:44300) I161030 07:27:23.933681 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 3 ({tcp 127.0.0.1:55980}) I161030 07:27:23.934219 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 3 ({tcp 127.0.0.1:55980}) I161030 07:27:23.941802 14727 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:47521}) I161030 07:27:23.944891 14736 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:44300 I161030 07:27:24.028303 14316 storage/client_test.go:420 gossip network initialized I161030 07:27:24.041618 14316 storage/replica_raftstorage.go:446 [s1,r1/1:/M{in-ax}] generated snapshot 2a46f6ca for range 1 at index 21 in 109.399µs. I161030 07:27:24.044627 14316 storage/store.go:3061 streamed snapshot: kv pairs: 40, log entries: 11 I161030 07:27:24.046366 14851 storage/replica_raftstorage.go:577 [s2] [n2,s2,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 21 (id=2a46f6ca, encoded size=16, 1 rocksdb batches, 11 log entries) I161030 07:27:24.051034 14851 storage/replica_raftstorage.go:580 [s2] [n2,s2,r1/?:/M{in-ax}]: with replicaID [?], applied preemptive snapshot in 0.004s I161030 07:27:24.057428 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 I161030 07:27:24.086827 14832 storage/replica.go:1860 [s1,r1/1:/M{in-ax}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161030 07:27:24.136707 14874 storage/raft_transport.go:423 raft transport stream to node 1 established I161030 07:27:24.143992 14316 storage/replica_raftstorage.go:446 [s1,r1/1:/M{in-ax}] generated snapshot 7a702b34 for range 1 at index 25 in 99.399µs. I161030 07:27:24.220163 14878 storage/replica_raftstorage.go:577 [s3] [n3,s3,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 25 (id=7a702b34, encoded size=16, 1 rocksdb batches, 15 log entries) I161030 07:27:24.221867 14316 storage/store.go:3061 streamed snapshot: kv pairs: 45, log entries: 15 I161030 07:27:24.245227 14878 storage/replica_raftstorage.go:580 [s3] [n3,s3,r1/?:/M{in-ax}]: with replicaID [?], applied preemptive snapshot in 0.025s I161030 07:27:24.293737 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > next_replica_id:3 I161030 07:27:24.421110 14859 storage/replica.go:1860 [s1,r1/1:/M{in-ax}] proposing ADD_REPLICA {NodeID:3 StoreID:3 ReplicaID:3} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] I161030 07:27:24.608892 14979 storage/raft_transport.go:423 raft transport stream to node 1 established I161030 07:27:24.954460 14316 storage/replica_command.go:2363 initiating a split of this range at key "m" [r2] I161030 07:27:25.475498 14316 storage/replica_raftstorage.go:446 [s1,r2/1:{"m"-/Max}] generated snapshot 757e3438 for range 2 at index 10 in 125.499µs. I161030 07:27:25.513565 14316 storage/store.go:3061 streamed snapshot: kv pairs: 28, log entries: 0 I161030 07:27:25.518688 15124 storage/replica_raftstorage.go:577 [s4] [n4,s4,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 10 (id=757e3438, encoded size=16, 1 rocksdb batches, 0 log entries) I161030 07:27:25.520011 15124 storage/replica_raftstorage.go:580 [s4] [n4,s4,r2/?:{"m"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.001s I161030 07:27:25.542514 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > next_replica_id:4 W161030 07:27:25.843937 15095 storage/stores.go:218 range not contained in one range: [/Meta2/Max,"m\x00"), but have [/Min,"m") I161030 07:27:26.522977 15082 storage/replica.go:1860 [s1,r2/1:{"m"-/Max}] proposing ADD_REPLICA {NodeID:4 StoreID:4 ReplicaID:4} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4}] I161030 07:27:26.676574 14316 storage/replica_raftstorage.go:446 [s1,r2/1:{"m"-/Max}] generated snapshot c4de21f7 for range 2 at index 14 in 104.999µs. I161030 07:27:26.681441 14316 storage/store.go:3061 streamed snapshot: kv pairs: 30, log entries: 4 I161030 07:27:26.685970 15005 storage/replica_raftstorage.go:577 [s5] [n5,s5,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 14 (id=c4de21f7, encoded size=16, 1 rocksdb batches, 4 log entries) I161030 07:27:26.687899 15005 storage/replica_raftstorage.go:580 [s5] [n5,s5,r2/?:{"m"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.002s I161030 07:27:26.796554 14316 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > replicas:<node_id:4 store_id:4 replica_id:4 > next_replica_id:5 I161030 07:27:26.889869 15234 storage/raft_transport.go:423 raft transport stream to node 1 established I161030 07:27:27.740338 15177 storage/replica.go:1860 [s1,r2/1:{"m"-/Max}] proposing ADD_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4} {NodeID:5 StoreID:5 ReplicaID:5}] I161030 07:27:28.086194 14425 storage/replica.go:1860 [s1,r2/1:{"m"-/Max}] proposing ADD_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4} {NodeID:5 StoreID:5 ReplicaID:5}] I161030 07:27:28.346981 15278 storage/raft_transport.go:423 raft transport stream to node 1 established W161030 07:27:28.755593 14891 storage/store.go:745 storeMu: mutex held by github.com/cockroachdb/cockroach/pkg/storage.(*Store).HandleRaftUncoalescedRequest for 119.761392ms (>100ms): goroutine 14891 [running]: runtime/debug.Stack(0x1bc0c90, 0x1bc0cd0, 0x52) /usr/local/go/src/runtime/debug/stack.go:24 +0x79 github.com/cockroachdb/cockroach/pkg/util/syncutil.ThresholdLogger.func1(0x72369f0) /go/src/github.com/cockroachdb/cockroach/pkg/util/syncutil/timedmutex.go:65 +0xe1 github.com/cockroachdb/cockroach/pkg/util/syncutil.(*TimedMutex).Unlock(0xc42813fb28) /go/src/github.com/cockroachdb/cockroach/pkg/util/syncutil/timedmutex.go:92 +0x80 github.com/cockroachdb/cockroach/pkg/storage.(*Store).HandleRaftUncoalescedRequest(0xc42813f880, 0x7f0d3ea5cd38, 0xc426b693b0, 0xc423f31980, 0x7f0d39f51550, 0xc426d5ee10, 0xd7a5c1) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2647 +0x20e github.com/cockroachdb/cockroach/pkg/storage.(*Store).HandleRaftRequest(0xc42813f880, 0x7f0d3ea5cd38, 0xc426b693b0, 0xc423f31980, 0x7f0d39f51550, 0xc426d5ee10, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2613 +0x243 github.com/cockroachdb/cockroach/pkg/storage.(*RaftTransport).handleRaftRequest(0xc4214e4840, 0x7f0d3ea5cd38, 0xc426b693b0, 0xc423f31980, 0x7f0d39f51550, 0xc426d5ee10, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/raft_transport.go:252 +0xfb github.com/cockroachdb/cockroach/pkg/storage.(*RaftTransport).RaftMessageBatch.func1.1.1(0x235afa0, 0xc426d5ee10, 0xc4214e4840, 0xc4209d9788, 0xc4209d9790) /go/src/github.com/cockroachdb/cockroach/pkg/storage/raft_transport.go:306 +0x173 github.com/cockroachdb/cockroach/pkg/storage.(*RaftTransport).RaftMessageBatch.func1.1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/raft_transport.go:314 +0x45 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc427259050, 0xc426b69440) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:196 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:197 +0x66 I161030 07:27:31.143048 14566 storage/replica_proposal.go:292 [s3,r1/3:{/Min-"m"}] new range lease replica {3 3 3} 1970-01-01 00:00:09.9 +0000 UTC 5.4s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 9.9s [physicalTime=1970-01-01 00:00:21.6 +0000 UTC] I161030 07:27:31.244921 14428 storage/replica_proposal.go:341 [s1,r2/1:{"m"-/Max}] range [n1,s1,r2/1:{"m"-/Max}]: transferring raft leadership to replica ID 3 I161030 07:27:31.331133 14490 storage/replica_proposal.go:292 [s3,r2/3:{"m"-/Max}] new range lease replica {3 3 3} 1970-01-01 00:00:20.7 +0000 UTC 1.8s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 20.7s [physicalTime=1970-01-01 00:00:21.6 +0000 UTC] I161030 07:27:31.397812 15458 storage/raft_transport.go:423 raft transport stream to node 2 established I161030 07:27:31.485784 15459 storage/raft_transport.go:423 raft transport stream to node 4 established I161030 07:27:31.505815 15460 storage/raft_transport.go:423 raft transport stream to node 5 established I161030 07:27:31.556779 15444 storage/raft_transport.go:423 raft transport stream to node 3 established I161030 07:27:31.570292 15446 storage/raft_transport.go:423 raft transport stream to node 3 established I161030 07:27:31.610704 15477 storage/raft_transport.go:423 raft transport stream to node 3 established I161030 07:27:32.024543 14497 storage/replica.go:1908 [s3,r1/3:{/Min-"m"}] not quiescing: 1 pending commands I161030 07:27:32.044181 14426 storage/replica_proposal.go:292 [s1,r1/1:{/Min-"m"}] new range lease replica {1 1 1} 1970-01-01 00:00:15.3 +0000 UTC 28.8s following replica {3 3 3} 1970-01-01 00:00:09.9 +0000 UTC 5.4s [physicalTime=1970-01-01 00:00:43.2 +0000 UTC] I161030 07:27:33.081570 15514 storage/raft_transport.go:423 raft transport stream to node 2 established I161030 07:27:33.095066 15486 storage/raft_transport.go:423 raft transport stream to node 4 established I161030 07:27:33.254303 15531 storage/raft_transport.go:423 raft transport stream to node 5 established I161030 07:27:33.376762 15603 storage/raft_transport.go:423 raft transport stream to node 5 established I161030 07:27:34.739984 14316 storage/replica_command.go:3240 [replicate,s3,r2/3:{"m"-/Max}] change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > replicas:<node_id:4 store_id:4 replica_id:4 > replicas:<node_id:5 store_id:5 replica_id:5 > next_replica_id:6 I161030 07:27:36.757776 15747 storage/replica.go:1860 [s3,r2/3:{"m"-/Max}] proposing REMOVE_REPLICA {NodeID:1 StoreID:1 ReplicaID:1} for range 2: [{NodeID:5 StoreID:5 ReplicaID:5} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3} {NodeID:4 StoreID:4 ReplicaID:4}] I161030 07:27:37.014782 14316 storage/replica_command.go:3240 [replicate,s3,r2/3:{"m"-/Max}] change replicas: read existing descriptor range_id:2 start_key:"m" end_key:"\377\377" replicas:<node_id:5 store_id:5 replica_id:5 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:3 store_id:3 replica_id:3 > replicas:<node_id:4 store_id:4 replica_id:4 > next_replica_id:6 I161030 07:27:37.046655 15277 storage/store.go:2922 [s1] [n1,s1,r2/1:{"m"-/Max}]: added to replica GC queue (peer suggestion) I161030 07:27:37.099100 15099 storage/store.go:2922 [s1] [n1,s1,r2/1:{"m"-/Max}]: added to replica GC queue (peer suggestion) I161030 07:27:37.754229 15601 storage/raft_transport.go:423 raft transport stream to node 2 established I161030 07:27:38.404394 15823 storage/raft_transport.go:423 raft transport stream to node 4 established I161030 07:27:38.448979 14569 storage/replica.go:1908 [s3,r2/3:{"m"-/Max}] not quiescing: 1 pending commands I161030 07:27:38.616888 15833 storage/replica.go:1860 [s3,r2/3:{"m"-/Max}] proposing REMOVE_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:4 StoreID:4 ReplicaID:4} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] I161030 07:27:38.796101 14493 storage/replica.go:1860 [s3,r2/3:{"m"-/Max}] proposing REMOVE_REPLICA {NodeID:5 StoreID:5 ReplicaID:5} for range 2: [{NodeID:4 StoreID:4 ReplicaID:4} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] W161030 07:27:38.889718 14566 raft/raft.go:696 [s3,r1/3:{/Min-"m"}] 3 stepped down to follower since quorum is not active I161030 07:27:38.983221 15488 storage/store.go:2922 [s5] [n5,s5,r2/5:{"m"-/Max}]: added to replica GC queue (peer suggestion) I161030 07:27:39.045318 15900 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/queue.go:467 I161030 07:27:39.071016 15898 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/intent_resolver.go:383 1 storage/client_test.go:507 1 kv/txn_coord_sender.go:911 E161030 07:27:39.102644 14393 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous I161030 07:27:39.130069 15896 util/stop/stopper.go:455 quiescing; tasks left: 10 storage/client_test.go:507 1 storage/replica_range_lease.go:150 1 storage/queue.go:467 E161030 07:27:39.144876 14388 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: range 1: replica {3 3 3} not lease holder; node_id:1 store_id:1 replica_id:1 is E161030 07:27:39.146341 14393 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161030 07:27:39.146493 14600 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:27:39.147569 14600 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer W161030 07:27:39.196014 15768 storage/intent_resolver.go:101 [s1] asynchronous resolveIntents failed: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161030 07:27:39.199520 14441 storage/queue.go:558 [replicaGC] on [n1,s1,r2/1:{"m"-/Max}]: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer W161030 07:27:39.225984 15892 storage/intent_resolver.go:337 [n3,s3,r2/3:{"m"-/Max}]: failed to resolve intents: failed to send RPC: sending to all 3 replicas failed; last error: failed to send RPC: store is stopped E161030 07:27:39.231876 14738 storage/queue.go:558 [replicaGC] on [n5,s5,r2/5:{"m"-/Max}]: failed to send RPC: sending to all 5 replicas failed; last error: failed to send RPC: store is stopped E161030 07:27:39.232181 14538 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:27:39.233309 14538 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:27:39.233469 15896 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/queue.go:467 1 storage/client_test.go:507 E161030 07:27:39.244953 14381 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161030 07:27:39.246558 14388 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:27:39.248304 15898 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/intent_resolver.go:383 I161030 07:27:39.248534 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks E161030 07:27:39.251579 14393 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161030 07:27:39.251714 14381 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161030 07:27:39.251862 14388 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:27:39.268072 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks E161030 07:27:39.270182 14538 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer W161030 07:27:39.270315 14839 storage/raft_transport.go:463 no handler found for store 1 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:1 store_id:1 replica_id:1 > union:<error:<message:"sender replica too old, discarding message" transaction_restart:NONE origin_node:0 detail:<replica_too_old:<> > now:<wall_time:0 logical:0 > > > W161030 07:27:39.271266 14982 storage/store.go:2926 [s3] got error from range 1, replica {1 1 1}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:3 StoreID:3 ReplicaID:3}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:1} W161030 07:27:39.292296 15742 storage/store.go:2926 [s4] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161030 07:27:39.292503 15742 storage/store.go:2926 [s4] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161030 07:27:39.292699 15742 storage/store.go:2926 [s4] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161030 07:27:39.293013 14839 storage/raft_transport.go:463 no handler found for store 1 in response range_id:1 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:1 store_id:1 replica_id:1 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:1 StoreID:1 ReplicaID:1}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161030 07:27:39.294937 15742 storage/store.go:2926 [s4] got error from range 0, replica {2 2 0}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:0}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:0} I161030 07:27:39.296614 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.299492 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.301765 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.310592 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks W161030 07:27:39.311372 15460 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.311633 15444 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.311852 15486 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF W161030 07:27:39.312223 15601 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.312431 15477 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.312620 15316 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.312845 15097 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF W161030 07:27:39.313060 14979 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161030 07:27:39.313333 15458 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.313542 14837 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.313885 15514 storage/raft_transport.go:428 raft transport stream to node 2 failed: EOF W161030 07:27:39.314093 15603 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.314307 15531 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161030 07:27:39.314516 15823 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF W161030 07:27:39.314724 15446 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.316143 15234 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF I161030 07:27:39.316867 14531 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:55980->127.0.0.1:55006: use of closed network connection I161030 07:27:39.317034 14358 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:53917->127.0.0.1:57013: use of closed network connection I161030 07:27:39.317196 14602 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:48364->127.0.0.1:42029: use of closed network connection W161030 07:27:39.317346 14941 storage/raft_transport.go:428 raft transport stream to node 3 failed: EOF W161030 07:27:39.317495 14874 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161030 07:27:39.317643 15278 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161030 07:27:39.317789 15459 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF I161030 07:27:39.318206 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.318623 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.319076 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.319410 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:27:39.320697 14552 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:47521->127.0.0.1:36777: use of closed network connection I161030 07:27:39.320877 15895 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks client_raft_test.go:1010: Failed to achieve proper replication within 10 seconds ```
non_priority
teststorerangedownreplicate failed under stress sha stress build found a failed test storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no resolvers found use join to specify a connected node base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage replica proposal go new range lease replica utc following replica utc storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to gossip client go node started gossip client to gossip client go node started gossip client to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage engine rocksdb go opening in memory rocksdb instance gossip client go node started gossip client to gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality gossip client go node started gossip client to gossip server go refusing gossip from node max conns forwarding to tcp gossip server go refusing gossip from node max conns forwarding to tcp gossip client go node closing client to node received forward from node to gossip server go refusing gossip from node max conns forwarding to tcp gossip server go refusing gossip from node max conns forwarding to tcp gossip server go refusing gossip from node max conns forwarding to tcp gossip client go node started gossip client to storage client test go gossip network initialized storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key end key replicas next replica id storage replica go proposing add replica nodeid storeid replicaid for range storage raft transport go raft transport stream to node established storage replica raftstorage go generated snapshot for range at index in storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key end key replicas replicas next replica id storage replica go proposing add replica nodeid storeid replicaid for range storage raft transport go raft transport stream to node established storage replica command go initiating a split of this range at key m storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key m end key replicas replicas replicas next replica id storage stores go range not contained in one range max m but have min m storage replica go proposing add replica nodeid storeid replicaid for range storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key m end key replicas replicas replicas replicas next replica id storage raft transport go raft transport stream to node established storage replica go proposing add replica nodeid storeid replicaid for range storage replica go proposing add replica nodeid storeid replicaid for range storage raft transport go raft transport stream to node established storage store go storemu mutex held by github com cockroachdb cockroach pkg storage store handleraftuncoalescedrequest for goroutine runtime debug stack usr local go src runtime debug stack go github com cockroachdb cockroach pkg util syncutil thresholdlogger go src github com cockroachdb cockroach pkg util syncutil timedmutex go github com cockroachdb cockroach pkg util syncutil timedmutex unlock go src github com cockroachdb cockroach pkg util syncutil timedmutex go github com cockroachdb cockroach pkg storage store handleraftuncoalescedrequest go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage store handleraftrequest go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage rafttransport handleraftrequest go src github com cockroachdb cockroach pkg storage raft transport go github com cockroachdb cockroach pkg storage rafttransport raftmessagebatch go src github com cockroachdb cockroach pkg storage raft transport go github com cockroachdb cockroach pkg storage rafttransport raftmessagebatch go src github com cockroachdb cockroach pkg storage raft transport go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go storage replica proposal go new range lease replica utc following replica utc storage replica proposal go range transferring raft leadership to replica id storage replica proposal go new range lease replica utc following replica utc storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage replica go not quiescing pending commands storage replica proposal go new range lease replica utc following replica utc storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage replica command go change replicas read existing descriptor range id start key m end key replicas replicas replicas replicas replicas next replica id storage replica go proposing remove replica nodeid storeid replicaid for range storage replica command go change replicas read existing descriptor range id start key m end key replicas replicas replicas replicas next replica id storage store go added to replica gc queue peer suggestion storage store go added to replica gc queue peer suggestion storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage replica go not quiescing pending commands storage replica go proposing remove replica nodeid storeid replicaid for range storage replica go proposing remove replica nodeid storeid replicaid for range raft raft go stepped down to follower since quorum is not active storage store go added to replica gc queue peer suggestion util stop stopper go quiescing tasks left storage queue go util stop stopper go quiescing tasks left storage intent resolver go storage client test go kv txn coord sender go storage node liveness go failed liveness heartbeat transaction commit result is ambiguous util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage queue go storage node liveness go failed liveness heartbeat failed to send rpc sending to all replicas failed last error range replica not lease holder node id store id replica id is storage node liveness go failed liveness heartbeat node unavailable try another peer storage node liveness go failed liveness heartbeat transaction commit result is ambiguous storage node liveness go failed liveness heartbeat node unavailable try another peer storage intent resolver go asynchronous resolveintents failed failed to send rpc sending to all replicas failed last error node unavailable try another peer storage queue go on failed to send rpc sending to all replicas failed last error node unavailable try another peer storage intent resolver go failed to resolve intents failed to send rpc sending to all replicas failed last error failed to send rpc store is stopped storage queue go on failed to send rpc sending to all replicas failed last error failed to send rpc store is stopped storage node liveness go failed liveness heartbeat transaction commit result is ambiguous storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go quiescing tasks left storage queue go storage client test go storage node liveness go failed liveness heartbeat failed to send rpc sending to all replicas failed last error node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go quiescing tasks left storage intent resolver go util stop stopper go stop has been called stopping or quiescing all running tasks storage node liveness go failed liveness heartbeat node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go stop has been called stopping or quiescing all running tasks storage node liveness go failed liveness heartbeat node unavailable try another peer storage raft transport go no handler found for store in response range id from replica to replica union now storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage raft transport go no handler found for store in response range id from replica to replica union storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof server go transport handlestreams failed to read frame read tcp use of closed network connection server go transport handlestreams failed to read frame read tcp use of closed network connection server go transport handlestreams failed to read frame read tcp use of closed network connection storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks server go transport handlestreams failed to read frame read tcp use of closed network connection util stop stopper go stop has been called stopping or quiescing all running tasks client raft test go failed to achieve proper replication within seconds
0
466,179
13,398,162,687
IssuesEvent
2020-09-03 12:46:14
googleapis/google-cloud-php
https://api.github.com/repos/googleapis/google-cloud-php
closed
Synthesis failed for recommendationengine
api: recommendationengine autosynth failure priority: p1 type: bug
Hello! Autosynth couldn't regenerate recommendationengine. :broken_heart: Here's the output from running `synth.py`: ``` ed.org/packages/30/9e/f663a2aa66a09d838042ae1a2c5659828bb9b41ea3a6efa20a20fd92b121/Jinja2-2.11.2-py2.py3-none-any.whl Saved ./Jinja2-2.11.2-py2.py3-none-any.whl Collecting MarkupSafe==1.1.1 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 5)) Using cached https://files.pythonhosted.org/packages/b2/5f/23e0023be6bb885d00ffbefad2942bc51a620328ee910f64abe5a8d18dd1/MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Saved ./MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Collecting protobuf==3.13.0 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 6)) Using cached https://files.pythonhosted.org/packages/30/79/510974552cebff2ba04038544799450defe75e96ea5f1675dbf72cc8744f/protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Saved ./protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Collecting pypandoc==1.5 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 7)) Using cached https://files.pythonhosted.org/packages/d6/b7/5050dc1769c8a93d3ec7c4bd55be161991c94b8b235f88bf7c764449e708/pypandoc-1.5.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmpfs/tmp/tmpskbm9_b0/setuptools-tmp/setuptools/__init__.py", line 6, in <module> import distutils.core File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/_distutils_hack/__init__.py", line 82, in create_module return importlib.import_module('._distutils', 'setuptools') File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named 'setuptools._distutils' ---------------------------------------- (Command "python setup.py egg_info" failed with error code 1 in /tmpfs/tmp/pip-build-hmfe9k4f/pypandoc/ ) ERROR: no such package '@gapic_generator_python_pip_deps//': pip_import failed: Collecting click==7.1.2 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 1)) Using cached https://files.pythonhosted.org/packages/d2/3d/fa76db83bf75c4f8d338c2fd15c8d33fdd7ad23a9b5e57eb6c5de26b430e/click-7.1.2-py2.py3-none-any.whl Saved ./click-7.1.2-py2.py3-none-any.whl Collecting google-api-core==1.22.1 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 2)) Using cached https://files.pythonhosted.org/packages/e0/2d/7c6c75013105e1d2b6eaa1bf18a56995be1dbc673c38885aea31136e9918/google_api_core-1.22.1-py2.py3-none-any.whl Saved ./google_api_core-1.22.1-py2.py3-none-any.whl Collecting googleapis-common-protos==1.52.0 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 3)) Using cached https://files.pythonhosted.org/packages/03/74/3956721ea1eb4bcf7502a311fdaa60b85bd751de4e57d1943afe9b334141/googleapis_common_protos-1.52.0-py2.py3-none-any.whl Saved ./googleapis_common_protos-1.52.0-py2.py3-none-any.whl Collecting jinja2==2.11.2 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 4)) Using cached https://files.pythonhosted.org/packages/30/9e/f663a2aa66a09d838042ae1a2c5659828bb9b41ea3a6efa20a20fd92b121/Jinja2-2.11.2-py2.py3-none-any.whl Saved ./Jinja2-2.11.2-py2.py3-none-any.whl Collecting MarkupSafe==1.1.1 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 5)) Using cached https://files.pythonhosted.org/packages/b2/5f/23e0023be6bb885d00ffbefad2942bc51a620328ee910f64abe5a8d18dd1/MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Saved ./MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Collecting protobuf==3.13.0 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 6)) Using cached https://files.pythonhosted.org/packages/30/79/510974552cebff2ba04038544799450defe75e96ea5f1675dbf72cc8744f/protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Saved ./protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Collecting pypandoc==1.5 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 7)) Using cached https://files.pythonhosted.org/packages/d6/b7/5050dc1769c8a93d3ec7c4bd55be161991c94b8b235f88bf7c764449e708/pypandoc-1.5.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmpfs/tmp/tmpskbm9_b0/setuptools-tmp/setuptools/__init__.py", line 6, in <module> import distutils.core File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/_distutils_hack/__init__.py", line 82, in create_module return importlib.import_module('._distutils', 'setuptools') File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named 'setuptools._distutils' ---------------------------------------- (Command "python setup.py egg_info" failed with error code 1 in /tmpfs/tmp/pip-build-hmfe9k4f/pypandoc/ ) INFO: Elapsed time: 2.257s INFO: 0 processes. FAILED: Build did NOT complete successfully (0 packages loaded) FAILED: Build did NOT complete successfully (0 packages loaded) Traceback (most recent call last): File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/tmpfs/src/github/synthtool/synthtool/__main__.py", line 102, in <module> main() File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 829, in __call__ return self.main(*args, **kwargs) File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 782, in main rv = self.invoke(ctx) File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 1066, in invoke return ctx.invoke(self.callback, **ctx.params) File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 610, in invoke return callback(*args, **kwargs) File "/tmpfs/src/github/synthtool/synthtool/__main__.py", line 94, in main spec.loader.exec_module(synth_module) # type: ignore File "<frozen importlib._bootstrap_external>", line 678, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "/home/kbuilder/.cache/synthtool/google-cloud-php/RecommendationEngine/synth.py", line 30, in <module> bazel_target=f'//google/cloud/recommendationengine/v1beta1:google-cloud-recommendationengine-v1beta1-php') File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 58, in php_library return self._generate_code(service, version, "php", **kwargs) File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 183, in _generate_code shell.run(bazel_run_args) File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 39, in run raise exc File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 33, in run encoding="utf-8", File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 438, in run output=stdout, stderr=stderr) subprocess.CalledProcessError: Command '['bazel', '--max_idle_secs=240', 'build', '//google/cloud/recommendationengine/v1beta1:google-cloud-recommendationengine-v1beta1-php']' returned non-zero exit status 1. 2020-08-31 03:01:33,561 autosynth [ERROR] > Synthesis failed 2020-08-31 03:01:33,561 autosynth [DEBUG] > Running: git reset --hard HEAD HEAD is now at 62944c93 chore: escape `*` characters in comments (#3286) 2020-08-31 03:01:33,593 autosynth [DEBUG] > Running: git checkout autosynth-recommendationengine Switched to branch 'autosynth-recommendationengine' Traceback (most recent call last): File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 690, in <module> main() File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 539, in main return _inner_main(temp_dir) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 670, in _inner_main commit_count = synthesize_loop(x, multiple_prs, change_pusher, synthesizer) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 375, in synthesize_loop has_changes = toolbox.synthesize_version_in_new_branch(synthesizer, youngest) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 273, in synthesize_version_in_new_branch synthesizer.synthesize(synth_log_path, self.environ) File "/tmpfs/src/github/synthtool/autosynth/synthesizer.py", line 120, in synthesize synth_proc.check_returncode() # Raise an exception. File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 389, in check_returncode self.stderr) subprocess.CalledProcessError: Command '['/tmpfs/src/github/synthtool/env/bin/python3', '-m', 'synthtool', '--metadata', 'synth.metadata', 'synth.py', '--']' returned non-zero exit status 1. ``` Google internal developers can see the full log [here](http://sponge2/results/invocations/1b5e0742-36b1-492a-8590-1fc7815812fc/targets/github%2Fsynthtool;config=default/tests;query=google-cloud-php;failed=false).
1.0
Synthesis failed for recommendationengine - Hello! Autosynth couldn't regenerate recommendationengine. :broken_heart: Here's the output from running `synth.py`: ``` ed.org/packages/30/9e/f663a2aa66a09d838042ae1a2c5659828bb9b41ea3a6efa20a20fd92b121/Jinja2-2.11.2-py2.py3-none-any.whl Saved ./Jinja2-2.11.2-py2.py3-none-any.whl Collecting MarkupSafe==1.1.1 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 5)) Using cached https://files.pythonhosted.org/packages/b2/5f/23e0023be6bb885d00ffbefad2942bc51a620328ee910f64abe5a8d18dd1/MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Saved ./MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Collecting protobuf==3.13.0 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 6)) Using cached https://files.pythonhosted.org/packages/30/79/510974552cebff2ba04038544799450defe75e96ea5f1675dbf72cc8744f/protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Saved ./protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Collecting pypandoc==1.5 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 7)) Using cached https://files.pythonhosted.org/packages/d6/b7/5050dc1769c8a93d3ec7c4bd55be161991c94b8b235f88bf7c764449e708/pypandoc-1.5.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmpfs/tmp/tmpskbm9_b0/setuptools-tmp/setuptools/__init__.py", line 6, in <module> import distutils.core File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/_distutils_hack/__init__.py", line 82, in create_module return importlib.import_module('._distutils', 'setuptools') File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named 'setuptools._distutils' ---------------------------------------- (Command "python setup.py egg_info" failed with error code 1 in /tmpfs/tmp/pip-build-hmfe9k4f/pypandoc/ ) ERROR: no such package '@gapic_generator_python_pip_deps//': pip_import failed: Collecting click==7.1.2 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 1)) Using cached https://files.pythonhosted.org/packages/d2/3d/fa76db83bf75c4f8d338c2fd15c8d33fdd7ad23a9b5e57eb6c5de26b430e/click-7.1.2-py2.py3-none-any.whl Saved ./click-7.1.2-py2.py3-none-any.whl Collecting google-api-core==1.22.1 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 2)) Using cached https://files.pythonhosted.org/packages/e0/2d/7c6c75013105e1d2b6eaa1bf18a56995be1dbc673c38885aea31136e9918/google_api_core-1.22.1-py2.py3-none-any.whl Saved ./google_api_core-1.22.1-py2.py3-none-any.whl Collecting googleapis-common-protos==1.52.0 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 3)) Using cached https://files.pythonhosted.org/packages/03/74/3956721ea1eb4bcf7502a311fdaa60b85bd751de4e57d1943afe9b334141/googleapis_common_protos-1.52.0-py2.py3-none-any.whl Saved ./googleapis_common_protos-1.52.0-py2.py3-none-any.whl Collecting jinja2==2.11.2 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 4)) Using cached https://files.pythonhosted.org/packages/30/9e/f663a2aa66a09d838042ae1a2c5659828bb9b41ea3a6efa20a20fd92b121/Jinja2-2.11.2-py2.py3-none-any.whl Saved ./Jinja2-2.11.2-py2.py3-none-any.whl Collecting MarkupSafe==1.1.1 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 5)) Using cached https://files.pythonhosted.org/packages/b2/5f/23e0023be6bb885d00ffbefad2942bc51a620328ee910f64abe5a8d18dd1/MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Saved ./MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl Collecting protobuf==3.13.0 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 6)) Using cached https://files.pythonhosted.org/packages/30/79/510974552cebff2ba04038544799450defe75e96ea5f1675dbf72cc8744f/protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Saved ./protobuf-3.13.0-cp36-cp36m-manylinux1_x86_64.whl Collecting pypandoc==1.5 (from -r /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/gapic_generator_python/requirements.txt (line 7)) Using cached https://files.pythonhosted.org/packages/d6/b7/5050dc1769c8a93d3ec7c4bd55be161991c94b8b235f88bf7c764449e708/pypandoc-1.5.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmpfs/tmp/tmpskbm9_b0/setuptools-tmp/setuptools/__init__.py", line 6, in <module> import distutils.core File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/_distutils_hack/__init__.py", line 82, in create_module return importlib.import_module('._distutils', 'setuptools') File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named 'setuptools._distutils' ---------------------------------------- (Command "python setup.py egg_info" failed with error code 1 in /tmpfs/tmp/pip-build-hmfe9k4f/pypandoc/ ) INFO: Elapsed time: 2.257s INFO: 0 processes. FAILED: Build did NOT complete successfully (0 packages loaded) FAILED: Build did NOT complete successfully (0 packages loaded) Traceback (most recent call last): File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/tmpfs/src/github/synthtool/synthtool/__main__.py", line 102, in <module> main() File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 829, in __call__ return self.main(*args, **kwargs) File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 782, in main rv = self.invoke(ctx) File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 1066, in invoke return ctx.invoke(self.callback, **ctx.params) File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 610, in invoke return callback(*args, **kwargs) File "/tmpfs/src/github/synthtool/synthtool/__main__.py", line 94, in main spec.loader.exec_module(synth_module) # type: ignore File "<frozen importlib._bootstrap_external>", line 678, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "/home/kbuilder/.cache/synthtool/google-cloud-php/RecommendationEngine/synth.py", line 30, in <module> bazel_target=f'//google/cloud/recommendationengine/v1beta1:google-cloud-recommendationengine-v1beta1-php') File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 58, in php_library return self._generate_code(service, version, "php", **kwargs) File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 183, in _generate_code shell.run(bazel_run_args) File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 39, in run raise exc File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 33, in run encoding="utf-8", File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 438, in run output=stdout, stderr=stderr) subprocess.CalledProcessError: Command '['bazel', '--max_idle_secs=240', 'build', '//google/cloud/recommendationengine/v1beta1:google-cloud-recommendationengine-v1beta1-php']' returned non-zero exit status 1. 2020-08-31 03:01:33,561 autosynth [ERROR] > Synthesis failed 2020-08-31 03:01:33,561 autosynth [DEBUG] > Running: git reset --hard HEAD HEAD is now at 62944c93 chore: escape `*` characters in comments (#3286) 2020-08-31 03:01:33,593 autosynth [DEBUG] > Running: git checkout autosynth-recommendationengine Switched to branch 'autosynth-recommendationengine' Traceback (most recent call last): File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 690, in <module> main() File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 539, in main return _inner_main(temp_dir) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 670, in _inner_main commit_count = synthesize_loop(x, multiple_prs, change_pusher, synthesizer) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 375, in synthesize_loop has_changes = toolbox.synthesize_version_in_new_branch(synthesizer, youngest) File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 273, in synthesize_version_in_new_branch synthesizer.synthesize(synth_log_path, self.environ) File "/tmpfs/src/github/synthtool/autosynth/synthesizer.py", line 120, in synthesize synth_proc.check_returncode() # Raise an exception. File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 389, in check_returncode self.stderr) subprocess.CalledProcessError: Command '['/tmpfs/src/github/synthtool/env/bin/python3', '-m', 'synthtool', '--metadata', 'synth.metadata', 'synth.py', '--']' returned non-zero exit status 1. ``` Google internal developers can see the full log [here](http://sponge2/results/invocations/1b5e0742-36b1-492a-8590-1fc7815812fc/targets/github%2Fsynthtool;config=default/tests;query=google-cloud-php;failed=false).
priority
synthesis failed for recommendationengine hello autosynth couldn t regenerate recommendationengine broken heart here s the output from running synth py ed org packages none any whl saved none any whl collecting markupsafe from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved markupsafe whl collecting protobuf from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved protobuf whl collecting pypandoc from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached complete output from command python setup py egg info traceback most recent call last file line in file tmpfs tmp setuptools tmp setuptools init py line in import distutils core file tmpfs src github synthtool env lib site packages distutils hack init py line in create module return importlib import module distutils setuptools file home kbuilder pyenv versions lib importlib init py line in import module return bootstrap gcd import name package level modulenotfounderror no module named setuptools distutils command python setup py egg info failed with error code in tmpfs tmp pip build pypandoc error no such package gapic generator python pip deps pip import failed collecting click from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved click none any whl collecting google api core from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved google api core none any whl collecting googleapis common protos from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved googleapis common protos none any whl collecting from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved none any whl collecting markupsafe from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved markupsafe whl collecting protobuf from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached saved protobuf whl collecting pypandoc from r home kbuilder cache bazel bazel kbuilder external gapic generator python requirements txt line using cached complete output from command python setup py egg info traceback most recent call last file line in file tmpfs tmp setuptools tmp setuptools init py line in import distutils core file tmpfs src github synthtool env lib site packages distutils hack init py line in create module return importlib import module distutils setuptools file home kbuilder pyenv versions lib importlib init py line in import module return bootstrap gcd import name package level modulenotfounderror no module named setuptools distutils command python setup py egg info failed with error code in tmpfs tmp pip build pypandoc info elapsed time info processes failed build did not complete successfully packages loaded failed build did not complete successfully packages loaded traceback most recent call last file home kbuilder pyenv versions lib runpy py line in run module as main main mod spec file home kbuilder pyenv versions lib runpy py line in run code exec code run globals file tmpfs src github synthtool synthtool main py line in main file tmpfs src github synthtool env lib site packages click core py line in call return self main args kwargs file tmpfs src github synthtool env lib site packages click core py line in main rv self invoke ctx file tmpfs src github synthtool env lib site packages click core py line in invoke return ctx invoke self callback ctx params file tmpfs src github synthtool env lib site packages click core py line in invoke return callback args kwargs file tmpfs src github synthtool synthtool main py line in main spec loader exec module synth module type ignore file line in exec module file line in call with frames removed file home kbuilder cache synthtool google cloud php recommendationengine synth py line in bazel target f google cloud recommendationengine google cloud recommendationengine php file tmpfs src github synthtool synthtool gcp gapic bazel py line in php library return self generate code service version php kwargs file tmpfs src github synthtool synthtool gcp gapic bazel py line in generate code shell run bazel run args file tmpfs src github synthtool synthtool shell py line in run raise exc file tmpfs src github synthtool synthtool shell py line in run encoding utf file home kbuilder pyenv versions lib subprocess py line in run output stdout stderr stderr subprocess calledprocesserror command returned non zero exit status autosynth synthesis failed autosynth running git reset hard head head is now at chore escape characters in comments autosynth running git checkout autosynth recommendationengine switched to branch autosynth recommendationengine traceback most recent call last file home kbuilder pyenv versions lib runpy py line in run module as main main mod spec file home kbuilder pyenv versions lib runpy py line in run code exec code run globals file tmpfs src github synthtool autosynth synth py line in main file tmpfs src github synthtool autosynth synth py line in main return inner main temp dir file tmpfs src github synthtool autosynth synth py line in inner main commit count synthesize loop x multiple prs change pusher synthesizer file tmpfs src github synthtool autosynth synth py line in synthesize loop has changes toolbox synthesize version in new branch synthesizer youngest file tmpfs src github synthtool autosynth synth py line in synthesize version in new branch synthesizer synthesize synth log path self environ file tmpfs src github synthtool autosynth synthesizer py line in synthesize synth proc check returncode raise an exception file home kbuilder pyenv versions lib subprocess py line in check returncode self stderr subprocess calledprocesserror command returned non zero exit status google internal developers can see the full log
1