Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 855 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 13 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 240k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
336,628 | 10,194,616,416 | IssuesEvent | 2019-08-12 16:04:31 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | reopened | Private types defined in a package can be used outside of the package | Area/Language Component/Compiler Priority/High Type/Bug | Consider the following type def in a package `foo`.
```ballerina
type Bar string|xml|json;
```
The above type can be used outside of the `foo` package without a problem. For example:
```ballerina
import ballerina/io;
import pubudu/foo;
public function main() {
json j = {"a":25};
foo:Bar f = j;
io:println(f);
}
```
Running the above program prints `{"a":25}`
Related issue: #11170 | 1.0 | Private types defined in a package can be used outside of the package - Consider the following type def in a package `foo`.
```ballerina
type Bar string|xml|json;
```
The above type can be used outside of the `foo` package without a problem. For example:
```ballerina
import ballerina/io;
import pubudu/foo;
public function main() {
json j = {"a":25};
foo:Bar f = j;
io:println(f);
}
```
Running the above program prints `{"a":25}`
Related issue: #11170 | priority | private types defined in a package can be used outside of the package consider the following type def in a package foo ballerina type bar string xml json the above type can be used outside of the foo package without a problem for example ballerina import ballerina io import pubudu foo public function main json j a foo bar f j io println f running the above program prints a related issue | 1 |
268,528 | 8,407,766,591 | IssuesEvent | 2018-10-11 22:06:11 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | Conv3D: an illegal memory access was encountered | high priority | ## 🐛 Bug
RuntimeError: cuda runtime error (77) : an illegal memory access was encountered at /pytorch/aten/src/THC/generic/THCTensorCopy.c:20
## To Reproduce
Steps to reproduce the behavior:
import torch
a = torch.randn(1, 2048, 8, 11, 11).cuda()
conv = torch.nn.Conv3d(2048, 512, (3, 1, 1), stride(1, 1, 1)).cuda()
out = conv(a)
b = torch.randn(1, 2048, 8, 12, 12).cuda()
## Expected behavior
when execute the statement "out = conv(a)", the video memory of the computer suddenly became more than 5000 M . Then, I Input the code "b = torch.randn(1, 2048, 8, 12, 12).cuda()", direct display error reporting.The error is "RuntimeError: cuda runtime error (77) : an illegal memory access was encountered at /pytorch/aten/src/THC/generic/THCTensorCopy.c:20"。When I change the size of a become (1, 2048, 8, 21, 21), the video memory is normal and no error。
## Environment
Please copy and paste the output from our
[environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py)
(or fill out the checklist below manually).
You can get the script and run it with:
```
wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py
```
- PyTorch Version (e.g., 1.0):0.4.1
- OS (e.g., Linux):16.04
- How you installed PyTorch (`conda`, `pip`, source): pip
- Build command you used (if compiling from source):
- Python version:3.6
- CUDA/cuDNN version:9.0
- GPU models and configuration:
- Any other relevant information: GPU : Titan Xp
## Additional context
<!-- Add any other context about the problem here. -->
| 1.0 | Conv3D: an illegal memory access was encountered - ## 🐛 Bug
RuntimeError: cuda runtime error (77) : an illegal memory access was encountered at /pytorch/aten/src/THC/generic/THCTensorCopy.c:20
## To Reproduce
Steps to reproduce the behavior:
import torch
a = torch.randn(1, 2048, 8, 11, 11).cuda()
conv = torch.nn.Conv3d(2048, 512, (3, 1, 1), stride(1, 1, 1)).cuda()
out = conv(a)
b = torch.randn(1, 2048, 8, 12, 12).cuda()
## Expected behavior
when execute the statement "out = conv(a)", the video memory of the computer suddenly became more than 5000 M . Then, I Input the code "b = torch.randn(1, 2048, 8, 12, 12).cuda()", direct display error reporting.The error is "RuntimeError: cuda runtime error (77) : an illegal memory access was encountered at /pytorch/aten/src/THC/generic/THCTensorCopy.c:20"。When I change the size of a become (1, 2048, 8, 21, 21), the video memory is normal and no error。
## Environment
Please copy and paste the output from our
[environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py)
(or fill out the checklist below manually).
You can get the script and run it with:
```
wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py
```
- PyTorch Version (e.g., 1.0):0.4.1
- OS (e.g., Linux):16.04
- How you installed PyTorch (`conda`, `pip`, source): pip
- Build command you used (if compiling from source):
- Python version:3.6
- CUDA/cuDNN version:9.0
- GPU models and configuration:
- Any other relevant information: GPU : Titan Xp
## Additional context
<!-- Add any other context about the problem here. -->
| priority | an illegal memory access was encountered 🐛 bug runtimeerror cuda runtime error an illegal memory access was encountered at pytorch aten src thc generic thctensorcopy c to reproduce steps to reproduce the behavior import torch a torch randn cuda conv torch nn stride cuda out conv a b torch randn cuda expected behavior when execute the statement out conv a the video memory of the computer suddenly became more than m then, i input the code b torch randn cuda direct display error reporting the error is runtimeerror cuda runtime error an illegal memory access was encountered at pytorch aten src thc generic thctensorcopy c 。when i change the size of a become the video memory is normal and no error。 environment please copy and paste the output from our or fill out the checklist below manually you can get the script and run it with wget for security purposes please check the contents of collect env py before running it python collect env py pytorch version e g os e g linux how you installed pytorch conda pip source pip build command you used if compiling from source python version cuda cudnn version gpu models and configuration any other relevant information gpu titan xp additional context | 1 |
280,495 | 8,682,601,674 | IssuesEvent | 2018-12-02 10:13:17 | BendroCorp/bendrocorp-app | https://api.github.com/repos/BendroCorp/bendrocorp-app | closed | Add system for accepting donations | api supported effort: high feature priority:normal | Add system to accept donations and implement a monthly subscriber system for members who want to help offset Bendro costs.
- [x] System will integrate with stripe
- [x] Will have a one time option
- [x] Will have a summary of expenses
- [x] Will transparently show all donations made through the system
- [x] New objects
- [x] Donation
- [x] Donation Item | 1.0 | Add system for accepting donations - Add system to accept donations and implement a monthly subscriber system for members who want to help offset Bendro costs.
- [x] System will integrate with stripe
- [x] Will have a one time option
- [x] Will have a summary of expenses
- [x] Will transparently show all donations made through the system
- [x] New objects
- [x] Donation
- [x] Donation Item | priority | add system for accepting donations add system to accept donations and implement a monthly subscriber system for members who want to help offset bendro costs system will integrate with stripe will have a one time option will have a summary of expenses will transparently show all donations made through the system new objects donation donation item | 1 |
199,186 | 6,986,532,062 | IssuesEvent | 2017-12-14 04:04:49 | steedos/apps | https://api.github.com/repos/steedos/apps | closed | 增加Session变量apps ,用于标记主菜单显示哪些Apps | fix:Done priority:High | - apps = null,显示所有apps,保持header完整功能。
- apps = [], 主导航栏为空,右上角人员下拉菜单只有注销按钮。
- apps = ["calendar"], 主导航栏只显示当前App名称,右上角人员下拉菜单只有注销按钮。 | 1.0 | 增加Session变量apps ,用于标记主菜单显示哪些Apps - - apps = null,显示所有apps,保持header完整功能。
- apps = [], 主导航栏为空,右上角人员下拉菜单只有注销按钮。
- apps = ["calendar"], 主导航栏只显示当前App名称,右上角人员下拉菜单只有注销按钮。 | priority | 增加session变量apps ,用于标记主菜单显示哪些apps apps null,显示所有apps,保持header完整功能。 apps 主导航栏为空,右上角人员下拉菜单只有注销按钮。 apps 主导航栏只显示当前app名称,右上角人员下拉菜单只有注销按钮。 | 1 |
524,699 | 15,219,327,645 | IssuesEvent | 2021-02-17 19:02:41 | trufflesuite/ganache-core | https://api.github.com/repos/trufflesuite/ganache-core | closed | Add test so https://github.com/trufflesuite/ganache-core/pull/257 doesn't regress | bug priority-high | Need to add tests to ensure old db formats for transactions are backwards compatible.
See https://github.com/trufflesuite/ganache-core/pull/257 | 1.0 | Add test so https://github.com/trufflesuite/ganache-core/pull/257 doesn't regress - Need to add tests to ensure old db formats for transactions are backwards compatible.
See https://github.com/trufflesuite/ganache-core/pull/257 | priority | add test so doesn t regress need to add tests to ensure old db formats for transactions are backwards compatible see | 1 |
672,098 | 22,787,434,246 | IssuesEvent | 2022-07-09 13:25:59 | pombase/pombase-chado | https://api.github.com/repos/pombase/pombase-chado | opened | Duplicate alleles in Chado | bug high priority | While testing pombase/pombase-chado#986 I noticed that there are a bunch of duplicate alleles in Chado. That's annoying as I thought I had fixed that years ago. They seem to be mostly deletions.
Examples: zip3delta, scs22delta, tif1delta
but there are over 100 others.
| 1.0 | Duplicate alleles in Chado - While testing pombase/pombase-chado#986 I noticed that there are a bunch of duplicate alleles in Chado. That's annoying as I thought I had fixed that years ago. They seem to be mostly deletions.
Examples: zip3delta, scs22delta, tif1delta
but there are over 100 others.
| priority | duplicate alleles in chado while testing pombase pombase chado i noticed that there are a bunch of duplicate alleles in chado that s annoying as i thought i had fixed that years ago they seem to be mostly deletions examples but there are over others | 1 |
605,612 | 18,737,747,519 | IssuesEvent | 2021-11-04 09:52:29 | ballerina-platform/ballerina-openapi | https://api.github.com/repos/ballerina-platform/ballerina-openapi | closed | Map OAS response when ballerina resource has `http:Request` request body type | Type/Improvement Points/2 Priority/High BallerinaToOpenAPI SwanLake | **Description:**
```ballerina
service / on new http:Listener(9090) {
resource function post passthrough(http:Request req) returns error? {
...
return response;
}
}
```
**Describe your problem(s)**
Incomplete OAS generated due to the `http:Request` . By looking at the high level we will be unable to map request details in the OAS
**Describe your solution(s)**
Skip the code generation for a given resource which has `http:Request` in the parameter.
Provide new API for the `ballerina to OpenAPI` with providing the errors and the OAS definitions
| 1.0 | Map OAS response when ballerina resource has `http:Request` request body type - **Description:**
```ballerina
service / on new http:Listener(9090) {
resource function post passthrough(http:Request req) returns error? {
...
return response;
}
}
```
**Describe your problem(s)**
Incomplete OAS generated due to the `http:Request` . By looking at the high level we will be unable to map request details in the OAS
**Describe your solution(s)**
Skip the code generation for a given resource which has `http:Request` in the parameter.
Provide new API for the `ballerina to OpenAPI` with providing the errors and the OAS definitions
| priority | map oas response when ballerina resource has http request request body type description ballerina service on new http listener resource function post passthrough http request req returns error return response describe your problem s incomplete oas generated due to the http request by looking at the high level we will be unable to map request details in the oas describe your solution s skip the code generation for a given resource which has http request in the parameter provide new api for the ballerina to openapi with providing the errors and the oas definitions | 1 |
528,334 | 15,364,607,610 | IssuesEvent | 2021-03-01 22:14:37 | phetsims/scenery-phet | https://api.github.com/repos/phetsims/scenery-phet | closed | DragBoundsProperty should update when the targetNode dimensions change | priority:2-high status:blocks-publication status:ready-for-review | From https://github.com/phetsims/gas-properties/issues/170 there was a TODO which read:
```js
// TODO: https://github.com/phetsims/gas-properties/issues/170 Should we also detect changes in the size of the
// target node itself?
```
@pixelzoom replied during the review:
> Re this TODO in DragBoundsProperty…. Yes.
| 1.0 | DragBoundsProperty should update when the targetNode dimensions change - From https://github.com/phetsims/gas-properties/issues/170 there was a TODO which read:
```js
// TODO: https://github.com/phetsims/gas-properties/issues/170 Should we also detect changes in the size of the
// target node itself?
```
@pixelzoom replied during the review:
> Re this TODO in DragBoundsProperty…. Yes.
| priority | dragboundsproperty should update when the targetnode dimensions change from there was a todo which read js todo should we also detect changes in the size of the target node itself pixelzoom replied during the review re this todo in dragboundsproperty… yes | 1 |
404,276 | 11,854,543,197 | IssuesEvent | 2020-03-25 01:10:46 | art-community/ART | https://api.github.com/repos/art-community/ART | closed | Bugs with configurator | bug configurator high priority | * errors in configurations after start without configurations in rocks
* sometimes when call an configurator's url will be empty page (ART HTTP Handler not calling)
* refresh not working | 1.0 | Bugs with configurator - * errors in configurations after start without configurations in rocks
* sometimes when call an configurator's url will be empty page (ART HTTP Handler not calling)
* refresh not working | priority | bugs with configurator errors in configurations after start without configurations in rocks sometimes when call an configurator s url will be empty page art http handler not calling refresh not working | 1 |
309,943 | 9,482,016,594 | IssuesEvent | 2019-04-21 11:16:35 | Luca1152/gravity-box | https://api.github.com/repos/Luca1152/gravity-box | opened | Pack maps | Priority: High Status: Available Type: Enhancement | ## Description
Packing every map file into a single file would greatly decrease the loading time (at least when the game will have more than 9 levels). | 1.0 | Pack maps - ## Description
Packing every map file into a single file would greatly decrease the loading time (at least when the game will have more than 9 levels). | priority | pack maps description packing every map file into a single file would greatly decrease the loading time at least when the game will have more than levels | 1 |
34,580 | 2,782,815,369 | IssuesEvent | 2015-05-06 20:03:17 | littleweaver/django-brambling | https://api.github.com/repos/littleweaver/django-brambling | closed | Reconsider stripe form display to have more labels | high priority UI/UX | This is an accessibility thing (see [bootstrap's note on labels](http://getbootstrap.com/css/#forms-inline)) and also apparently people are having trouble knowing what the mm/yy fields are for. Adding a label just for those fields looks really weird, so we need to reconsider the design in general. | 1.0 | Reconsider stripe form display to have more labels - This is an accessibility thing (see [bootstrap's note on labels](http://getbootstrap.com/css/#forms-inline)) and also apparently people are having trouble knowing what the mm/yy fields are for. Adding a label just for those fields looks really weird, so we need to reconsider the design in general. | priority | reconsider stripe form display to have more labels this is an accessibility thing see and also apparently people are having trouble knowing what the mm yy fields are for adding a label just for those fields looks really weird so we need to reconsider the design in general | 1 |
446,397 | 12,856,371,661 | IssuesEvent | 2020-07-09 07:30:06 | valeriatisch/tagmaster | https://api.github.com/repos/valeriatisch/tagmaster | closed | Ausgewähltes Bild labeln und speichern | High Priority enhancement | Aufwand 5h (Sprint 2)
Aufwand 3h (Sprint 3)
Ein Testbild sollte im Frontend über ein Tool gelabelt und abgespeichert werden können. Am Ende sollten Koordinaten entstehen, die z.B als JSON format in einer Metadatei gespeichert werden können. | 1.0 | Ausgewähltes Bild labeln und speichern - Aufwand 5h (Sprint 2)
Aufwand 3h (Sprint 3)
Ein Testbild sollte im Frontend über ein Tool gelabelt und abgespeichert werden können. Am Ende sollten Koordinaten entstehen, die z.B als JSON format in einer Metadatei gespeichert werden können. | priority | ausgewähltes bild labeln und speichern aufwand sprint aufwand sprint ein testbild sollte im frontend über ein tool gelabelt und abgespeichert werden können am ende sollten koordinaten entstehen die z b als json format in einer metadatei gespeichert werden können | 1 |
406,914 | 11,904,150,442 | IssuesEvent | 2020-03-30 16:23:24 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | GeoStory custom themes | Accepted GeoStory Priority: High enhancement | ## Description
<!-- A few sentences describing new feature -->
<!-- screenshot, video, or link to mockup/prototype are welcome -->
A user should be able to edit the following style in a story:
- global settings: background color and text color
- section background: background color (Title or Immersive)
- text content: text color: background color with alpha channel and shadow (Title or Immersive)
Theme in global settings will change style of a Paragraph section and Navigation bar.
**What kind of improvement you want to add?** (check one with "x", remove the others)
- [x] Refactoring (no functional changes, no api changes)
## Other useful information
| 1.0 | GeoStory custom themes - ## Description
<!-- A few sentences describing new feature -->
<!-- screenshot, video, or link to mockup/prototype are welcome -->
A user should be able to edit the following style in a story:
- global settings: background color and text color
- section background: background color (Title or Immersive)
- text content: text color: background color with alpha channel and shadow (Title or Immersive)
Theme in global settings will change style of a Paragraph section and Navigation bar.
**What kind of improvement you want to add?** (check one with "x", remove the others)
- [x] Refactoring (no functional changes, no api changes)
## Other useful information
| priority | geostory custom themes description a user should be able to edit the following style in a story global settings background color and text color section background background color title or immersive text content text color background color with alpha channel and shadow title or immersive theme in global settings will change style of a paragraph section and navigation bar what kind of improvement you want to add check one with x remove the others refactoring no functional changes no api changes other useful information | 1 |
239,240 | 7,787,754,629 | IssuesEvent | 2018-06-07 00:13:56 | 22arw/airshow | https://api.github.com/repos/22arw/airshow | opened | Air show paying exhibitors | good first issue high priority | Mrs. Kellogg wanted to highlight paying exhibitors at the top of the exhibits page above STEM exhibits. Per her email:
> Kevin,
>Can you make a category under your exhibitor tab called Air Show Exhibitors. These are the people who paid for exhibit space on the flight line so I am requesting this category comes before the STEM. I would like the list to be in alphabetical order, please. City of Derby, Cosmosphere, Embry-Riddle Aeronautical University, J Bias Real Estate Group, T-Mobile, Sylvania Auto Light, Spirit AeroSystems.
We just need to add another accordion section above the STEM exhibits with these exhibitors. | 1.0 | Air show paying exhibitors - Mrs. Kellogg wanted to highlight paying exhibitors at the top of the exhibits page above STEM exhibits. Per her email:
> Kevin,
>Can you make a category under your exhibitor tab called Air Show Exhibitors. These are the people who paid for exhibit space on the flight line so I am requesting this category comes before the STEM. I would like the list to be in alphabetical order, please. City of Derby, Cosmosphere, Embry-Riddle Aeronautical University, J Bias Real Estate Group, T-Mobile, Sylvania Auto Light, Spirit AeroSystems.
We just need to add another accordion section above the STEM exhibits with these exhibitors. | priority | air show paying exhibitors mrs kellogg wanted to highlight paying exhibitors at the top of the exhibits page above stem exhibits per her email kevin can you make a category under your exhibitor tab called air show exhibitors these are the people who paid for exhibit space on the flight line so i am requesting this category comes before the stem i would like the list to be in alphabetical order please city of derby cosmosphere embry riddle aeronautical university j bias real estate group t mobile sylvania auto light spirit aerosystems we just need to add another accordion section above the stem exhibits with these exhibitors | 1 |
370,377 | 10,931,194,965 | IssuesEvent | 2019-11-23 08:04:03 | bounswe/bounswe2019group10 | https://api.github.com/repos/bounswe/bounswe2019group10 | closed | Search endpoints include more information | Priority: High Relation: Backend Type: Enhancement | Language will be passed as an input and level will be checked | 1.0 | Search endpoints include more information - Language will be passed as an input and level will be checked | priority | search endpoints include more information language will be passed as an input and level will be checked | 1 |
198,384 | 6,972,809,384 | IssuesEvent | 2017-12-11 18:16:28 | DavidAlt/VATumorBoard | https://api.github.com/repos/DavidAlt/VATumorBoard | opened | FReq: oncology-specific info | Data Integration high priority | "The system shall display information from the electronic health record pertaining to oncology care of the patient." | 1.0 | FReq: oncology-specific info - "The system shall display information from the electronic health record pertaining to oncology care of the patient." | priority | freq oncology specific info the system shall display information from the electronic health record pertaining to oncology care of the patient | 1 |
415,809 | 12,135,017,508 | IssuesEvent | 2020-04-23 11:48:13 | infor-design/enterprise-ng | https://api.github.com/repos/infor-design/enterprise-ng | closed | Menubutton: Initially disabled button not working when enabled | [2] priority: high type: bug :bug: | **Describe the bug**
An initially disabled `soho-menu-button`, e.g. `[disabled]="isDisabled"` where `isDisabled` is initially set to true, does not work when later enabled. Its menu does not open when clicked.
Cause: For an initially disabled menu button, the class "is-disabled" is added to the button (by the underlying jQuery control?), in addition to the regular disabled attribute. When later enabled, "is-disabled" remains and the button does not work. The css issue is there for any button, but not causing any bad effects for a regular button (click event still firing).
This is probably an issue in the underlying jQuery control(s), but I have only reproduced for the angular components.
**To Reproduce**
1. Modify menu-button.demo.ts & html so that the buttons have a disabled binding
2. The boolean bound to [disabled] shall be set to true initially
3. Toggle the disabled binding using e.g. some other button.
2. Click on menu button
**Expected behavior**
Menu should open
**Actual behavior**
Menu does not open, "is-disabled" class stuck on button.
**Version**
- ids-enterprise-ng: 7.0.2
- ids-enterprise: 4.27.3
**Screenshots**

**Additional context**
The "is-disabled" class is only being added if the button is initially disabled. If the button is initially enabled, then made disabled, class is not added. Can class be skipped always? | 1.0 | Menubutton: Initially disabled button not working when enabled - **Describe the bug**
An initially disabled `soho-menu-button`, e.g. `[disabled]="isDisabled"` where `isDisabled` is initially set to true, does not work when later enabled. Its menu does not open when clicked.
Cause: For an initially disabled menu button, the class "is-disabled" is added to the button (by the underlying jQuery control?), in addition to the regular disabled attribute. When later enabled, "is-disabled" remains and the button does not work. The css issue is there for any button, but not causing any bad effects for a regular button (click event still firing).
This is probably an issue in the underlying jQuery control(s), but I have only reproduced for the angular components.
**To Reproduce**
1. Modify menu-button.demo.ts & html so that the buttons have a disabled binding
2. The boolean bound to [disabled] shall be set to true initially
3. Toggle the disabled binding using e.g. some other button.
2. Click on menu button
**Expected behavior**
Menu should open
**Actual behavior**
Menu does not open, "is-disabled" class stuck on button.
**Version**
- ids-enterprise-ng: 7.0.2
- ids-enterprise: 4.27.3
**Screenshots**

**Additional context**
The "is-disabled" class is only being added if the button is initially disabled. If the button is initially enabled, then made disabled, class is not added. Can class be skipped always? | priority | menubutton initially disabled button not working when enabled describe the bug an initially disabled soho menu button e g isdisabled where isdisabled is initially set to true does not work when later enabled its menu does not open when clicked cause for an initially disabled menu button the class is disabled is added to the button by the underlying jquery control in addition to the regular disabled attribute when later enabled is disabled remains and the button does not work the css issue is there for any button but not causing any bad effects for a regular button click event still firing this is probably an issue in the underlying jquery control s but i have only reproduced for the angular components to reproduce modify menu button demo ts html so that the buttons have a disabled binding the boolean bound to shall be set to true initially toggle the disabled binding using e g some other button click on menu button expected behavior menu should open actual behavior menu does not open is disabled class stuck on button version ids enterprise ng ids enterprise screenshots additional context the is disabled class is only being added if the button is initially disabled if the button is initially enabled then made disabled class is not added can class be skipped always | 1 |
38,540 | 2,848,496,119 | IssuesEvent | 2015-05-29 23:38:23 | GiraffaFS/giraffa | https://api.github.com/repos/GiraffaFS/giraffa | closed | NamespaceAgent should log filesystem Exceptions at debug level | bug Priority-High | Currently, NamespaceAgent logs any encountered Exceptions from filesystem calls at INFO level, which is unnecessary and results in nasty looking logs for innocuous Exceptions (such as FileNotFoundException before a file is created, etc.). The logging level should be changed to DEBUG. | 1.0 | NamespaceAgent should log filesystem Exceptions at debug level - Currently, NamespaceAgent logs any encountered Exceptions from filesystem calls at INFO level, which is unnecessary and results in nasty looking logs for innocuous Exceptions (such as FileNotFoundException before a file is created, etc.). The logging level should be changed to DEBUG. | priority | namespaceagent should log filesystem exceptions at debug level currently namespaceagent logs any encountered exceptions from filesystem calls at info level which is unnecessary and results in nasty looking logs for innocuous exceptions such as filenotfoundexception before a file is created etc the logging level should be changed to debug | 1 |
27,224 | 2,691,136,198 | IssuesEvent | 2015-03-31 19:51:15 | littleweaver/django-brambling | https://api.github.com/repos/littleweaver/django-brambling | closed | Clean up behavior of "next step button" | has pull request high priority | Right now, it sometimes looks like it should have submit button functionality when it does not. Also, it and the countdown should maybe not be at the top of the page. See https://github.com/littleweaver/django-brambling/commit/37f4f8a2263e#commitcomment-8032523 and nearby comments | 1.0 | Clean up behavior of "next step button" - Right now, it sometimes looks like it should have submit button functionality when it does not. Also, it and the countdown should maybe not be at the top of the page. See https://github.com/littleweaver/django-brambling/commit/37f4f8a2263e#commitcomment-8032523 and nearby comments | priority | clean up behavior of next step button right now it sometimes looks like it should have submit button functionality when it does not also it and the countdown should maybe not be at the top of the page see and nearby comments | 1 |
401,724 | 11,796,771,573 | IssuesEvent | 2020-03-18 11:25:15 | perfectsense/gyro | https://api.github.com/repos/perfectsense/gyro | closed | Resource fails to delete if created using @uses-credentials | bug priority:high | **Describe the bug**
If a resource is created using the `@uses-credentials` directive to use an alternate credential, deleting the resource fails.
**To Reproduce**
init file
```
.
.
#default credentials
@credentials '<type>'
.
.
@end
#alternate credentials
@credentials '<type>' 'alternate-credentials'
.
.
.
@end
```
resource config file
```
aws::vpc vpc-example
cidr-block: "10.0.0.0/16"
@uses-credentials: "alternate-credentials"
end
```
**Expected behavior**
Resource should be successfully be deleted
**Stacktrace**
```
Looking for changes...
- Delete aws::vpc vpc-example (vpc-07487b85e4b00dc47)
Are you sure you want to change resources? (y/N) y
- Deleting aws::vpc vpc-example (vpc-07487b85e4b00dc47)
Error: Can't delete aws::vpc vpc-example resource!
Caused by: Unexpected error: software.amazon.awssdk.services.ec2.model.Ec2Exception: The vpc ID 'vpc-07487b85e4b00dc47' does not exist (Service: Ec2, Status Code: 400, Request ID: 546cea1e-adf1-42ea-8b83-7e514c660a24)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handleErrorResponse(CombinedResponseHandler.java:125)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handleResponse(CombinedResponseHandler.java:81)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handle(CombinedResponseHandler.java:61)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handle(CombinedResponseHandler.java:42)
at software.amazon.awssdk.core.internal.http.pipeline.stages.HandleResponseStage.execute(HandleResponseStage.java:40)
at software.amazon.awssdk.core.internal.http.pipeline.stages.HandleResponseStage.execute(HandleResponseStage.java:30)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallAttemptTimeoutTrackingStage.execute(ApiCallAttemptTimeoutTrackingStage.java:74)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallAttemptTimeoutTrackingStage.execute(ApiCallAttemptTimeoutTrackingStage.java:43)
at software.amazon.awssdk.core.internal.http.pipeline.stages.TimeoutExceptionHandlingStage.execute(TimeoutExceptionHandlingStage.java:78)
at software.amazon.awssdk.core.internal.http.pipeline.stages.TimeoutExceptionHandlingStage.execute(TimeoutExceptionHandlingStage.java:40)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage$RetryExecutor.doExecute(RetryableStage.java:114)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage$RetryExecutor.execute(RetryableStage.java:87)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage.execute(RetryableStage.java:63)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage.execute(RetryableStage.java:43)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.StreamManagingStage.execute(StreamManagingStage.java:57)
at software.amazon.awssdk.core.internal.http.StreamManagingStage.execute(StreamManagingStage.java:37)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallTimeoutTrackingStage.executeWithTimer(ApiCallTimeoutTrackingStage.java:81)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallTimeoutTrackingStage.execute(ApiCallTimeoutTrackingStage.java:61)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallTimeoutTrackingStage.execute(ApiCallTimeoutTrackingStage.java:43)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ExecutionFailureExceptionReportingStage.execute(ExecutionFailureExceptionReportingStage.java:37)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ExecutionFailureExceptionReportingStage.execute(ExecutionFailureExceptionReportingStage.java:26)
at software.amazon.awssdk.core.internal.http.AmazonSyncHttpClient$RequestExecutionBuilderImpl.execute(AmazonSyncHttpClient.java:198)
at software.amazon.awssdk.core.internal.handler.BaseSyncClientHandler.invoke(BaseSyncClientHandler.java:122)
at software.amazon.awssdk.core.internal.handler.BaseSyncClientHandler.doExecute(BaseSyncClientHandler.java:148)
at software.amazon.awssdk.core.internal.handler.BaseSyncClientHandler.execute(BaseSyncClientHandler.java:102)
at software.amazon.awssdk.core.client.handler.SdkSyncClientHandler.execute(SdkSyncClientHandler.java:45)
at software.amazon.awssdk.awscore.client.handler.AwsSyncClientHandler.execute(AwsSyncClientHandler.java:55)
at software.amazon.awssdk.services.ec2.DefaultEc2Client.deleteVpc(DefaultEc2Client.java:6873)
at gyro.aws.ec2.VpcResource.delete(VpcResource.java:376)
at gyro.core.diff.Delete.execute(Delete.java:60)
at gyro.core.diff.Diff.executeChange(Diff.java:412)
at gyro.core.diff.Diff.executeDelete(Diff.java:384)
at gyro.core.diff.Diff.execute(Diff.java:348)
at gyro.core.command.UpCommand.doExecute(UpCommand.java:63)
at gyro.core.command.AbstractConfigCommand.doExecute(AbstractConfigCommand.java:131)
at gyro.core.command.AbstractCommand.execute(AbstractCommand.java:75)
at gyro.cli.Gyro.run(Gyro.java:198)
at gyro.cli.Gyro.main(Gyro.java:76)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48)
at org.springframework.boot.loader.Launcher.launch(Launcher.java:87)
at org.springframework.boot.loader.Launcher.launch(Launcher.java:50)
at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:51)
```
**Additional context**
When deleting the resource, it looses the value for using alternate credentials and instead uses the default credentials which leads to this failure
| 1.0 | Resource fails to delete if created using @uses-credentials - **Describe the bug**
If a resource is created using the `@uses-credentials` directive to use an alternate credential, deleting the resource fails.
**To Reproduce**
init file
```
.
.
#default credentials
@credentials '<type>'
.
.
@end
#alternate credentials
@credentials '<type>' 'alternate-credentials'
.
.
.
@end
```
resource config file
```
aws::vpc vpc-example
cidr-block: "10.0.0.0/16"
@uses-credentials: "alternate-credentials"
end
```
**Expected behavior**
Resource should be successfully be deleted
**Stacktrace**
```
Looking for changes...
- Delete aws::vpc vpc-example (vpc-07487b85e4b00dc47)
Are you sure you want to change resources? (y/N) y
- Deleting aws::vpc vpc-example (vpc-07487b85e4b00dc47)
Error: Can't delete aws::vpc vpc-example resource!
Caused by: Unexpected error: software.amazon.awssdk.services.ec2.model.Ec2Exception: The vpc ID 'vpc-07487b85e4b00dc47' does not exist (Service: Ec2, Status Code: 400, Request ID: 546cea1e-adf1-42ea-8b83-7e514c660a24)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handleErrorResponse(CombinedResponseHandler.java:125)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handleResponse(CombinedResponseHandler.java:81)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handle(CombinedResponseHandler.java:61)
at software.amazon.awssdk.core.internal.http.CombinedResponseHandler.handle(CombinedResponseHandler.java:42)
at software.amazon.awssdk.core.internal.http.pipeline.stages.HandleResponseStage.execute(HandleResponseStage.java:40)
at software.amazon.awssdk.core.internal.http.pipeline.stages.HandleResponseStage.execute(HandleResponseStage.java:30)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallAttemptTimeoutTrackingStage.execute(ApiCallAttemptTimeoutTrackingStage.java:74)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallAttemptTimeoutTrackingStage.execute(ApiCallAttemptTimeoutTrackingStage.java:43)
at software.amazon.awssdk.core.internal.http.pipeline.stages.TimeoutExceptionHandlingStage.execute(TimeoutExceptionHandlingStage.java:78)
at software.amazon.awssdk.core.internal.http.pipeline.stages.TimeoutExceptionHandlingStage.execute(TimeoutExceptionHandlingStage.java:40)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage$RetryExecutor.doExecute(RetryableStage.java:114)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage$RetryExecutor.execute(RetryableStage.java:87)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage.execute(RetryableStage.java:63)
at software.amazon.awssdk.core.internal.http.pipeline.stages.RetryableStage.execute(RetryableStage.java:43)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.StreamManagingStage.execute(StreamManagingStage.java:57)
at software.amazon.awssdk.core.internal.http.StreamManagingStage.execute(StreamManagingStage.java:37)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallTimeoutTrackingStage.executeWithTimer(ApiCallTimeoutTrackingStage.java:81)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallTimeoutTrackingStage.execute(ApiCallTimeoutTrackingStage.java:61)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ApiCallTimeoutTrackingStage.execute(ApiCallTimeoutTrackingStage.java:43)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.pipeline.RequestPipelineBuilder$ComposingRequestPipelineStage.execute(RequestPipelineBuilder.java:206)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ExecutionFailureExceptionReportingStage.execute(ExecutionFailureExceptionReportingStage.java:37)
at software.amazon.awssdk.core.internal.http.pipeline.stages.ExecutionFailureExceptionReportingStage.execute(ExecutionFailureExceptionReportingStage.java:26)
at software.amazon.awssdk.core.internal.http.AmazonSyncHttpClient$RequestExecutionBuilderImpl.execute(AmazonSyncHttpClient.java:198)
at software.amazon.awssdk.core.internal.handler.BaseSyncClientHandler.invoke(BaseSyncClientHandler.java:122)
at software.amazon.awssdk.core.internal.handler.BaseSyncClientHandler.doExecute(BaseSyncClientHandler.java:148)
at software.amazon.awssdk.core.internal.handler.BaseSyncClientHandler.execute(BaseSyncClientHandler.java:102)
at software.amazon.awssdk.core.client.handler.SdkSyncClientHandler.execute(SdkSyncClientHandler.java:45)
at software.amazon.awssdk.awscore.client.handler.AwsSyncClientHandler.execute(AwsSyncClientHandler.java:55)
at software.amazon.awssdk.services.ec2.DefaultEc2Client.deleteVpc(DefaultEc2Client.java:6873)
at gyro.aws.ec2.VpcResource.delete(VpcResource.java:376)
at gyro.core.diff.Delete.execute(Delete.java:60)
at gyro.core.diff.Diff.executeChange(Diff.java:412)
at gyro.core.diff.Diff.executeDelete(Diff.java:384)
at gyro.core.diff.Diff.execute(Diff.java:348)
at gyro.core.command.UpCommand.doExecute(UpCommand.java:63)
at gyro.core.command.AbstractConfigCommand.doExecute(AbstractConfigCommand.java:131)
at gyro.core.command.AbstractCommand.execute(AbstractCommand.java:75)
at gyro.cli.Gyro.run(Gyro.java:198)
at gyro.cli.Gyro.main(Gyro.java:76)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48)
at org.springframework.boot.loader.Launcher.launch(Launcher.java:87)
at org.springframework.boot.loader.Launcher.launch(Launcher.java:50)
at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:51)
```
**Additional context**
When deleting the resource, it looses the value for using alternate credentials and instead uses the default credentials which leads to this failure
| priority | resource fails to delete if created using uses credentials describe the bug if a resource is created using the uses credentials directive to use an alternate credential deleting the resource fails to reproduce init file default credentials credentials end alternate credentials credentials alternate credentials end resource config file aws vpc vpc example cidr block uses credentials alternate credentials end expected behavior resource should be successfully be deleted stacktrace looking for changes delete aws vpc vpc example vpc are you sure you want to change resources y n y deleting aws vpc vpc example vpc error can t delete aws vpc vpc example resource caused by unexpected error software amazon awssdk services model the vpc id vpc does not exist service status code request id at software amazon awssdk core internal http combinedresponsehandler handleerrorresponse combinedresponsehandler java at software amazon awssdk core internal http combinedresponsehandler handleresponse combinedresponsehandler java at software amazon awssdk core internal http combinedresponsehandler handle combinedresponsehandler java at software amazon awssdk core internal http combinedresponsehandler handle combinedresponsehandler java at software amazon awssdk core internal http pipeline stages handleresponsestage execute handleresponsestage java at software amazon awssdk core internal http pipeline stages handleresponsestage execute handleresponsestage java at software amazon awssdk core internal http pipeline requestpipelinebuilder composingrequestpipelinestage execute requestpipelinebuilder java at software amazon awssdk core internal http pipeline stages apicallattempttimeouttrackingstage execute apicallattempttimeouttrackingstage java at software amazon awssdk core internal http pipeline stages apicallattempttimeouttrackingstage execute apicallattempttimeouttrackingstage java at software amazon awssdk core internal http pipeline stages timeoutexceptionhandlingstage execute timeoutexceptionhandlingstage java at software amazon awssdk core internal http pipeline stages timeoutexceptionhandlingstage execute timeoutexceptionhandlingstage java at software amazon awssdk core internal http pipeline stages retryablestage retryexecutor doexecute retryablestage java at software amazon awssdk core internal http pipeline stages retryablestage retryexecutor execute retryablestage java at software amazon awssdk core internal http pipeline stages retryablestage execute retryablestage java at software amazon awssdk core internal http pipeline stages retryablestage execute retryablestage java at software amazon awssdk core internal http pipeline requestpipelinebuilder composingrequestpipelinestage execute requestpipelinebuilder java at software amazon awssdk core internal http streammanagingstage execute streammanagingstage java at software amazon awssdk core internal http streammanagingstage execute streammanagingstage java at software amazon awssdk core internal http pipeline stages apicalltimeouttrackingstage executewithtimer apicalltimeouttrackingstage java at software amazon awssdk core internal http pipeline stages apicalltimeouttrackingstage execute apicalltimeouttrackingstage java at software amazon awssdk core internal http pipeline stages apicalltimeouttrackingstage execute apicalltimeouttrackingstage java at software amazon awssdk core internal http pipeline requestpipelinebuilder composingrequestpipelinestage execute requestpipelinebuilder java at software amazon awssdk core internal http pipeline requestpipelinebuilder composingrequestpipelinestage execute requestpipelinebuilder java at software amazon awssdk core internal http pipeline stages executionfailureexceptionreportingstage execute executionfailureexceptionreportingstage java at software amazon awssdk core internal http pipeline stages executionfailureexceptionreportingstage execute executionfailureexceptionreportingstage java at software amazon awssdk core internal http amazonsynchttpclient requestexecutionbuilderimpl execute amazonsynchttpclient java at software amazon awssdk core internal handler basesyncclienthandler invoke basesyncclienthandler java at software amazon awssdk core internal handler basesyncclienthandler doexecute basesyncclienthandler java at software amazon awssdk core internal handler basesyncclienthandler execute basesyncclienthandler java at software amazon awssdk core client handler sdksyncclienthandler execute sdksyncclienthandler java at software amazon awssdk awscore client handler awssyncclienthandler execute awssyncclienthandler java at software amazon awssdk services deletevpc java at gyro aws vpcresource delete vpcresource java at gyro core diff delete execute delete java at gyro core diff diff executechange diff java at gyro core diff diff executedelete diff java at gyro core diff diff execute diff java at gyro core command upcommand doexecute upcommand java at gyro core command abstractconfigcommand doexecute abstractconfigcommand java at gyro core command abstractcommand execute abstractcommand java at gyro cli gyro run gyro java at gyro cli gyro main gyro java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org springframework boot loader mainmethodrunner run mainmethodrunner java at org springframework boot loader launcher launch launcher java at org springframework boot loader launcher launch launcher java at org springframework boot loader jarlauncher main jarlauncher java additional context when deleting the resource it looses the value for using alternate credentials and instead uses the default credentials which leads to this failure | 1 |
369,492 | 10,913,957,352 | IssuesEvent | 2019-11-21 08:03:17 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | voice.mozilla.org - site is not usable | browser-focus-geckoview engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important | <!-- @browser: Firefox Mobile 71.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:71.0) Gecko/71.0 Firefox/71.0 -->
<!-- @reported_with: -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://voice.mozilla.org/fr
**Browser / Version**: Firefox Mobile 71.0
**Operating System**: Android 8.0.0
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: The voice can't be recorded on this site while i'm using firefox focus.
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | voice.mozilla.org - site is not usable - <!-- @browser: Firefox Mobile 71.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:71.0) Gecko/71.0 Firefox/71.0 -->
<!-- @reported_with: -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://voice.mozilla.org/fr
**Browser / Version**: Firefox Mobile 71.0
**Operating System**: Android 8.0.0
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: The voice can't be recorded on this site while i'm using firefox focus.
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | voice mozilla org site is not usable url browser version firefox mobile operating system android tested another browser no problem type site is not usable description the voice can t be recorded on this site while i m using firefox focus steps to reproduce browser configuration none from with ❤️ | 1 |
341,146 | 10,289,553,738 | IssuesEvent | 2019-08-27 11:08:51 | OpenSRP/opensrp-client-chw | https://api.github.com/repos/OpenSRP/opensrp-client-chw | closed | Immunizations at birth are missing from the child home visit - French version | bug high priority | In the new release, something broke, and the birth immunizations are not appearing anymore on the French version.
I'm guessing it might have had something to do with updating the French translation for this task (https://github.com/OpenSRP/opensrp-client-chw/issues/574) | 1.0 | Immunizations at birth are missing from the child home visit - French version - In the new release, something broke, and the birth immunizations are not appearing anymore on the French version.
I'm guessing it might have had something to do with updating the French translation for this task (https://github.com/OpenSRP/opensrp-client-chw/issues/574) | priority | immunizations at birth are missing from the child home visit french version in the new release something broke and the birth immunizations are not appearing anymore on the french version i m guessing it might have had something to do with updating the french translation for this task | 1 |
496,256 | 14,343,793,472 | IssuesEvent | 2020-11-28 11:19:22 | Zettlr/Zettlr | https://api.github.com/repos/Zettlr/Zettlr | closed | [1.8.0] Win10, Sticky menu bar overlapping opened preferences dialog | bug [non-critical] confirmed priority:high scope:Windows | ## Description
When I choose from main menu `File / Preferences / Manage Tags` (or any other choice from the Preferernces sub menu), the application menu stays open and overlapps the opened dialog
## Reproducing
Click File / Preferences / Manage Tags on Win10 menu
## Expected behaviour
Menu shoud close before dialog opens

<!-- Please provide information on your operating system -->
## Platform
- OS and version: Win10
- Zettlr Version: 1.8.0 (final)
| 1.0 | [1.8.0] Win10, Sticky menu bar overlapping opened preferences dialog - ## Description
When I choose from main menu `File / Preferences / Manage Tags` (or any other choice from the Preferernces sub menu), the application menu stays open and overlapps the opened dialog
## Reproducing
Click File / Preferences / Manage Tags on Win10 menu
## Expected behaviour
Menu shoud close before dialog opens

<!-- Please provide information on your operating system -->
## Platform
- OS and version: Win10
- Zettlr Version: 1.8.0 (final)
| priority | sticky menu bar overlapping opened preferences dialog description when i choose from main menu file preferences manage tags or any other choice from the preferernces sub menu the application menu stays open and overlapps the opened dialog reproducing click file preferences manage tags on menu expected behaviour menu shoud close before dialog opens platform os and version zettlr version final | 1 |
397,113 | 11,723,763,780 | IssuesEvent | 2020-03-10 09:43:18 | bbc/simorgh | https://api.github.com/repos/bbc/simorgh | closed | Update translations for serbian and ukchina | Refinement Needed high-priority ws-home | **Is your feature request related to a problem? Please describe.**
We're launching front pages for serbian and ukchina. We should make sure the translations for these services, for the two different scripts, are all correct. (Cyrillic and Latin for Serbian and Simplified and Traditional for UK China)
**Describe the solution you'd like**
Update translations.
**Describe alternatives you've considered**
N/A
**Testing notes**
[Tester to complete]
Dev insight: Ensure you run the E2Es for the serbian and ukchina front pages and they all still pass.
- [ ] This feature is expected to need manual testing.
**Additional context**
| 1.0 | Update translations for serbian and ukchina - **Is your feature request related to a problem? Please describe.**
We're launching front pages for serbian and ukchina. We should make sure the translations for these services, for the two different scripts, are all correct. (Cyrillic and Latin for Serbian and Simplified and Traditional for UK China)
**Describe the solution you'd like**
Update translations.
**Describe alternatives you've considered**
N/A
**Testing notes**
[Tester to complete]
Dev insight: Ensure you run the E2Es for the serbian and ukchina front pages and they all still pass.
- [ ] This feature is expected to need manual testing.
**Additional context**
| priority | update translations for serbian and ukchina is your feature request related to a problem please describe we re launching front pages for serbian and ukchina we should make sure the translations for these services for the two different scripts are all correct cyrillic and latin for serbian and simplified and traditional for uk china describe the solution you d like update translations describe alternatives you ve considered n a testing notes dev insight ensure you run the for the serbian and ukchina front pages and they all still pass this feature is expected to need manual testing additional context | 1 |
229,184 | 7,572,367,580 | IssuesEvent | 2018-04-23 14:47:14 | metasfresh/metasfresh | https://api.github.com/repos/metasfresh/metasfresh | closed | Role Permission for Pharma Permission and Authorization changes | branch:master branch:release priority:high type:enhancement | ### Is this a bug or feature request?
Feature Request
### What is the current behavior?
Currently, it is not possible to allow the update of fields just for users of a specific role.
#### Which are the steps to reproduce?
Open, try and see.
### What is the expected or desired behavior?
In Window Business Partner Pharma, the setting of the following fields shall be restricted to a specific role only:
- Business Partner
- Manufacturing Permission
- Wholesale Permission
- Agent
- Pharmacy Permission
- Veterinary Permission
- Type A: Authorisation for all Products
- Type B: No Authorisation for Pharmaceutical Products
- Authorisation Date for "Type A"
The solution shall be to create 2 process/ actions (1 vendor, 1 customer) that shall be visible (if possible easily) when selecting customer and vendor subtab row and flags customer/ vendor = Y. Only the specific role will have the process permissions. Those fields shall be readonly always. | 1.0 | Role Permission for Pharma Permission and Authorization changes - ### Is this a bug or feature request?
Feature Request
### What is the current behavior?
Currently, it is not possible to allow the update of fields just for users of a specific role.
#### Which are the steps to reproduce?
Open, try and see.
### What is the expected or desired behavior?
In Window Business Partner Pharma, the setting of the following fields shall be restricted to a specific role only:
- Business Partner
- Manufacturing Permission
- Wholesale Permission
- Agent
- Pharmacy Permission
- Veterinary Permission
- Type A: Authorisation for all Products
- Type B: No Authorisation for Pharmaceutical Products
- Authorisation Date for "Type A"
The solution shall be to create 2 process/ actions (1 vendor, 1 customer) that shall be visible (if possible easily) when selecting customer and vendor subtab row and flags customer/ vendor = Y. Only the specific role will have the process permissions. Those fields shall be readonly always. | priority | role permission for pharma permission and authorization changes is this a bug or feature request feature request what is the current behavior currently it is not possible to allow the update of fields just for users of a specific role which are the steps to reproduce open try and see what is the expected or desired behavior in window business partner pharma the setting of the following fields shall be restricted to a specific role only business partner manufacturing permission wholesale permission agent pharmacy permission veterinary permission type a authorisation for all products type b no authorisation for pharmaceutical products authorisation date for type a the solution shall be to create process actions vendor customer that shall be visible if possible easily when selecting customer and vendor subtab row and flags customer vendor y only the specific role will have the process permissions those fields shall be readonly always | 1 |
236,795 | 7,752,920,955 | IssuesEvent | 2018-05-30 21:58:49 | DLR-SC/tigl | https://api.github.com/repos/DLR-SC/tigl | closed | Update all macOS packages to deployment target 10.9 | Priority-High | Since 10.9 replaces libstd++ with libc++, all c++ packages have to be recompiled.
Conda uses 10.9 deployment target now by default! | 1.0 | Update all macOS packages to deployment target 10.9 - Since 10.9 replaces libstd++ with libc++, all c++ packages have to be recompiled.
Conda uses 10.9 deployment target now by default! | priority | update all macos packages to deployment target since replaces libstd with libc all c packages have to be recompiled conda uses deployment target now by default | 1 |
263,571 | 8,292,715,826 | IssuesEvent | 2018-09-20 02:27:42 | evil-mad/EggBot | https://api.github.com/repos/evil-mad/EggBot | closed | Inkscape hatch extension "hatch spacing" set to zero | bug priority-high | I was just using your hatch extension, and found when the hatch spacing was set to zero, and live preview is selected, my computer froze.
I'm running Ubuntu 18.04, Inkscape 0.92.
Looking at the eggbot_hatch.py on line 1005, i += spacing, the while loop will never end. So I changed in eggbot_hatch.inx on line 29, min = "0.1". | 1.0 | Inkscape hatch extension "hatch spacing" set to zero - I was just using your hatch extension, and found when the hatch spacing was set to zero, and live preview is selected, my computer froze.
I'm running Ubuntu 18.04, Inkscape 0.92.
Looking at the eggbot_hatch.py on line 1005, i += spacing, the while loop will never end. So I changed in eggbot_hatch.inx on line 29, min = "0.1". | priority | inkscape hatch extension hatch spacing set to zero i was just using your hatch extension and found when the hatch spacing was set to zero and live preview is selected my computer froze i m running ubuntu inkscape looking at the eggbot hatch py on line i spacing the while loop will never end so i changed in eggbot hatch inx on line min | 1 |
659,595 | 21,934,377,009 | IssuesEvent | 2022-05-23 12:38:19 | DIT113-V22/group-14 | https://api.github.com/repos/DIT113-V22/group-14 | closed | Remove QR code from plant pots | sprint #3 High Priority improvements | The QR code processing is hindered by the choice of having the QR codes wrapped on the plant pots. Should add signpost in front of the plants instead so the surface doesn't influence the streching of the code
- [x] Edit each type of tomato plant asset ( baby, unripe, ripe, sick) and remove QR codes from plant pots
- [x] Replace existing plants assets with the new plants
- [x] Create signpost asset
- [x] Create one signpost texture with a QR code
- [x] Add a demo signpost for testing and demo | 1.0 | Remove QR code from plant pots - The QR code processing is hindered by the choice of having the QR codes wrapped on the plant pots. Should add signpost in front of the plants instead so the surface doesn't influence the streching of the code
- [x] Edit each type of tomato plant asset ( baby, unripe, ripe, sick) and remove QR codes from plant pots
- [x] Replace existing plants assets with the new plants
- [x] Create signpost asset
- [x] Create one signpost texture with a QR code
- [x] Add a demo signpost for testing and demo | priority | remove qr code from plant pots the qr code processing is hindered by the choice of having the qr codes wrapped on the plant pots should add signpost in front of the plants instead so the surface doesn t influence the streching of the code edit each type of tomato plant asset baby unripe ripe sick and remove qr codes from plant pots replace existing plants assets with the new plants create signpost asset create one signpost texture with a qr code add a demo signpost for testing and demo | 1 |
653,771 | 21,626,121,231 | IssuesEvent | 2022-05-05 02:33:11 | bossbuwi/existence | https://api.github.com/repos/bossbuwi/existence | closed | Organize guarded endpoints | logic high priority endpoint cleanup | Create a standard pattern for guarded and unguarded endpoints to prevent the filters from clogging up with antmatchers. | 1.0 | Organize guarded endpoints - Create a standard pattern for guarded and unguarded endpoints to prevent the filters from clogging up with antmatchers. | priority | organize guarded endpoints create a standard pattern for guarded and unguarded endpoints to prevent the filters from clogging up with antmatchers | 1 |
167,065 | 6,331,867,213 | IssuesEvent | 2017-07-26 11:06:14 | fgpv-vpgf/fgpv-vpgf | https://api.github.com/repos/fgpv-vpgf/fgpv-vpgf | closed | Unable to import zipped shapefile | bug-type: regression priority: high problem: bug | Tested build: http://fgpv.cloudapp.net/demo/develop/dev/samples/index-samples.html
Test data:[ne_10m_airports.zip](https://github.com/fgpv-vpgf/fgpv-vpgf/files/1102652/ne_10m_airports.zip)
Importing zipped shapefile gives an error of "incorrect format". Please investigate

| 1.0 | Unable to import zipped shapefile - Tested build: http://fgpv.cloudapp.net/demo/develop/dev/samples/index-samples.html
Test data:[ne_10m_airports.zip](https://github.com/fgpv-vpgf/fgpv-vpgf/files/1102652/ne_10m_airports.zip)
Importing zipped shapefile gives an error of "incorrect format". Please investigate

| priority | unable to import zipped shapefile tested build test data importing zipped shapefile gives an error of incorrect format please investigate | 1 |
266,260 | 8,364,826,664 | IssuesEvent | 2018-10-04 01:13:53 | CS2103-AY1819S1-W12-3/main | https://api.github.com/repos/CS2103-AY1819S1-W12-3/main | opened | As a user, I want to mass import multiple cards at the same time from a single file. | priority.High status.Ongoing type.Story | So that I can tag large amount of questions and answers at once. | 1.0 | As a user, I want to mass import multiple cards at the same time from a single file. - So that I can tag large amount of questions and answers at once. | priority | as a user i want to mass import multiple cards at the same time from a single file so that i can tag large amount of questions and answers at once | 1 |
421,309 | 12,255,578,698 | IssuesEvent | 2020-05-06 10:26:58 | bryntum/support | https://api.github.com/repos/bryntum/support | closed | Runtime Error: "Unassigning and canceling does not bring element back | Runtime Error high-priority not reproducible | Unassigning and canceling does not bring element back
=====================================================
Occurred: 1 times
URL: https://bryntum.com/examples/scheduler-pro/pro-percent-done/
[Open in Rootcause](https://app.therootcause.io/f3eed078e152aacd8079a591a40bb113974be037)
#### An error was logged by [RootCause:](http://app.therootcause.io)
 Stack trace: | 1.0 | Runtime Error: "Unassigning and canceling does not bring element back - Unassigning and canceling does not bring element back
=====================================================
Occurred: 1 times
URL: https://bryntum.com/examples/scheduler-pro/pro-percent-done/
[Open in Rootcause](https://app.therootcause.io/f3eed078e152aacd8079a591a40bb113974be037)
#### An error was logged by [RootCause:](http://app.therootcause.io)
 Stack trace: | priority | runtime error unassigning and canceling does not bring element back unassigning and canceling does not bring element back occurred times url an error was logged by stack trace | 1 |
762,435 | 26,718,545,722 | IssuesEvent | 2023-01-28 21:06:17 | FRC7540/WolfBot2023 | https://api.github.com/repos/FRC7540/WolfBot2023 | closed | Movement of Robot | High Priority WIP | ## Summary
Robot must be able to move forwards, backwards, left, right, and rotate.
## Context
- Mecanum Drive Base
- Use XBOX Controller or Flight stick
- Strafing required
- Variable speed required
- Dampening required
- Code must work for both autonomous AND Teleop
- Controls MUST be documented
## Acceptance Criteria
- Driving accepts user input
- Controls are documented
- Must be able to strafe and turn
- Must have multiple speed modes (fine control and full speed)
- Robot does not jerk around
| 1.0 | Movement of Robot - ## Summary
Robot must be able to move forwards, backwards, left, right, and rotate.
## Context
- Mecanum Drive Base
- Use XBOX Controller or Flight stick
- Strafing required
- Variable speed required
- Dampening required
- Code must work for both autonomous AND Teleop
- Controls MUST be documented
## Acceptance Criteria
- Driving accepts user input
- Controls are documented
- Must be able to strafe and turn
- Must have multiple speed modes (fine control and full speed)
- Robot does not jerk around
| priority | movement of robot summary robot must be able to move forwards backwards left right and rotate context mecanum drive base use xbox controller or flight stick strafing required variable speed required dampening required code must work for both autonomous and teleop controls must be documented acceptance criteria driving accepts user input controls are documented must be able to strafe and turn must have multiple speed modes fine control and full speed robot does not jerk around | 1 |
710,191 | 24,409,701,394 | IssuesEvent | 2022-10-05 11:13:42 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | torch.nn.PixelShuffle crash with floating point exception when input has 0 size in the last three dimensions | high priority module: nn good first issue module: error checking triaged actionable | ### 🐛 Describe the bug
`torch.nn.PixelShuffle` crash with floating point exception when input has 0 size in the last three dimensions
```
import torch
layer = torch.nn.PixelShuffle(1)
model_input = torch.ones((1,1,1,1,0))
pred = layer(model_input)
```
Also crash when input is
```
model_input = torch.ones((1,1,1,1,0))
model_input = torch.ones((1,1,1,0,1))
model_input = torch.ones((1,1,0,1,1))
```
Output:
```
Floating point exception (core dumped)
```
### Versions
Collecting environment information...
PyTorch version: 1.13.0.dev20220915+cpu
Is debug build: False
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: Ubuntu 18.04.4 LTS (x86_64)
GCC version: Could not collect
Clang version: Could not collect
CMake version: Could not collect
Libc version: glibc-2.10
Python version: 3.7.6 (default, Jan 8 2020, 19:59:22) [GCC 7.3.0] (64-bit runtime)
Python platform: Linux-4.15.0-176-generic-x86_64-with-debian-buster-sid
Is CUDA available: False
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: True
Versions of relevant libraries:
[pip3] numpy==1.19.2
[pip3] torch==1.13.0.dev20220915+cpu
[pip3] torchaudio==0.13.0.dev20220915+cpu
[pip3] torchvision==0.14.0.dev20220915+cpu
[conda] blas 1.0 mkl
[conda] mkl 2020.2 256
[conda] mkl-service 2.3.0 py37he8ac12f_0
[conda] mkl_fft 1.3.0 py37h54f3939_0
[conda] mkl_random 1.1.1 py37h0573a6f_0
[conda] numpy 1.19.2 py37h54aff64_0
[conda] numpy-base 1.19.2 py37hfa32c7d_0
[conda] torch 1.13.0.dev20220915+cpu pypi_0 pypi
[conda] torchaudio 0.13.0.dev20220915+cpu pypi_0 pypi
[conda] torchvision 0.14.0.dev20220915+cpu pypi_0 pypi
cc @ezyang @gchanan @zou3519 @albanD @mruberry @jbschlosser @walterddr @kshitij12345 @saketh-are | 1.0 | torch.nn.PixelShuffle crash with floating point exception when input has 0 size in the last three dimensions - ### 🐛 Describe the bug
`torch.nn.PixelShuffle` crash with floating point exception when input has 0 size in the last three dimensions
```
import torch
layer = torch.nn.PixelShuffle(1)
model_input = torch.ones((1,1,1,1,0))
pred = layer(model_input)
```
Also crash when input is
```
model_input = torch.ones((1,1,1,1,0))
model_input = torch.ones((1,1,1,0,1))
model_input = torch.ones((1,1,0,1,1))
```
Output:
```
Floating point exception (core dumped)
```
### Versions
Collecting environment information...
PyTorch version: 1.13.0.dev20220915+cpu
Is debug build: False
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: Ubuntu 18.04.4 LTS (x86_64)
GCC version: Could not collect
Clang version: Could not collect
CMake version: Could not collect
Libc version: glibc-2.10
Python version: 3.7.6 (default, Jan 8 2020, 19:59:22) [GCC 7.3.0] (64-bit runtime)
Python platform: Linux-4.15.0-176-generic-x86_64-with-debian-buster-sid
Is CUDA available: False
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: True
Versions of relevant libraries:
[pip3] numpy==1.19.2
[pip3] torch==1.13.0.dev20220915+cpu
[pip3] torchaudio==0.13.0.dev20220915+cpu
[pip3] torchvision==0.14.0.dev20220915+cpu
[conda] blas 1.0 mkl
[conda] mkl 2020.2 256
[conda] mkl-service 2.3.0 py37he8ac12f_0
[conda] mkl_fft 1.3.0 py37h54f3939_0
[conda] mkl_random 1.1.1 py37h0573a6f_0
[conda] numpy 1.19.2 py37h54aff64_0
[conda] numpy-base 1.19.2 py37hfa32c7d_0
[conda] torch 1.13.0.dev20220915+cpu pypi_0 pypi
[conda] torchaudio 0.13.0.dev20220915+cpu pypi_0 pypi
[conda] torchvision 0.14.0.dev20220915+cpu pypi_0 pypi
cc @ezyang @gchanan @zou3519 @albanD @mruberry @jbschlosser @walterddr @kshitij12345 @saketh-are | priority | torch nn pixelshuffle crash with floating point exception when input has size in the last three dimensions 🐛 describe the bug torch nn pixelshuffle crash with floating point exception when input has size in the last three dimensions import torch layer torch nn pixelshuffle model input torch ones pred layer model input also crash when input is model input torch ones model input torch ones model input torch ones output floating point exception core dumped versions collecting environment information pytorch version cpu is debug build false cuda used to build pytorch none rocm used to build pytorch n a os ubuntu lts gcc version could not collect clang version could not collect cmake version could not collect libc version glibc python version default jan bit runtime python platform linux generic with debian buster sid is cuda available false cuda runtime version no cuda gpu models and configuration no cuda nvidia driver version no cuda cudnn version no cuda hip runtime version n a miopen runtime version n a is xnnpack available true versions of relevant libraries numpy torch cpu torchaudio cpu torchvision cpu blas mkl mkl mkl service mkl fft mkl random numpy numpy base torch cpu pypi pypi torchaudio cpu pypi pypi torchvision cpu pypi pypi cc ezyang gchanan alband mruberry jbschlosser walterddr saketh are | 1 |
59,123 | 3,103,319,303 | IssuesEvent | 2015-08-31 09:02:34 | HubTurbo/HubTurbo | https://api.github.com/repos/HubTurbo/HubTurbo | closed | Ctrl+R is triggering a 'reply' action | aspect-navigation priority.high type.bug | When I use the Ctrl+R shortcut, it changes the repo, but also trigger a 'reply' action. | 1.0 | Ctrl+R is triggering a 'reply' action - When I use the Ctrl+R shortcut, it changes the repo, but also trigger a 'reply' action. | priority | ctrl r is triggering a reply action when i use the ctrl r shortcut it changes the repo but also trigger a reply action | 1 |
105,957 | 4,254,911,100 | IssuesEvent | 2016-07-09 03:28:07 | mantidproject/mantid | https://api.github.com/repos/mantidproject/mantid | opened | ParaView fails to build with CMake 3.6 | Priority: High | <!-- TEMPLATE FOR BUG REPORTS -->
### Expected behavior
### Actual behavior
### Steps to reproduce the behavior
### Platforms affected
| 1.0 | ParaView fails to build with CMake 3.6 - <!-- TEMPLATE FOR BUG REPORTS -->
### Expected behavior
### Actual behavior
### Steps to reproduce the behavior
### Platforms affected
| priority | paraview fails to build with cmake expected behavior actual behavior steps to reproduce the behavior platforms affected | 1 |
544,572 | 15,894,686,063 | IssuesEvent | 2021-04-11 11:10:18 | bench-routes/bench-routes | https://api.github.com/repos/bench-routes/bench-routes | opened | Fix QueryResponse not found after recent merges | bug priority:high | PR #435 added support for null blocks. However, when opening the monitoring screen, the logs show errors as shown in the snapshot. This requires to be fixed (and not a workaround). We should see what is causing a change of type other than `QueryResponse` and then fix it to show that `QueryResponse` is always expected. Until then, the few routes in the monitoring screen might be broken. | 1.0 | Fix QueryResponse not found after recent merges - PR #435 added support for null blocks. However, when opening the monitoring screen, the logs show errors as shown in the snapshot. This requires to be fixed (and not a workaround). We should see what is causing a change of type other than `QueryResponse` and then fix it to show that `QueryResponse` is always expected. Until then, the few routes in the monitoring screen might be broken. | priority | fix queryresponse not found after recent merges pr added support for null blocks however when opening the monitoring screen the logs show errors as shown in the snapshot this requires to be fixed and not a workaround we should see what is causing a change of type other than queryresponse and then fix it to show that queryresponse is always expected until then the few routes in the monitoring screen might be broken | 1 |
312,059 | 9,542,428,371 | IssuesEvent | 2019-05-01 03:57:01 | vectorlit/unofficial_gencon_mobile | https://api.github.com/repos/vectorlit/unofficial_gencon_mobile | opened | Documentation: General project documentation | enhancement high priority | This project is in sore need of general documentation. Any assistance in this area is valued. | 1.0 | Documentation: General project documentation - This project is in sore need of general documentation. Any assistance in this area is valued. | priority | documentation general project documentation this project is in sore need of general documentation any assistance in this area is valued | 1 |
811,364 | 30,285,181,209 | IssuesEvent | 2023-07-08 15:29:32 | status-im/status-desktop | https://api.github.com/repos/status-im/status-desktop | opened | Implement the ability to search OpenSea Collectables when creating a new permission | ui-team feature priority 1: high priority F1: mandatory messenger-team | See designs here: https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?type=design&node-id=23289%3A500766&mode=design&t=qSxLPn009YqUtemm-1
When creating or editing permission, it should be possible for the user to reference any collectable listed on OpenSea in the permission.

cc'ing @jrainville @iurimatias | 2.0 | Implement the ability to search OpenSea Collectables when creating a new permission - See designs here: https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?type=design&node-id=23289%3A500766&mode=design&t=qSxLPn009YqUtemm-1
When creating or editing permission, it should be possible for the user to reference any collectable listed on OpenSea in the permission.

cc'ing @jrainville @iurimatias | priority | implement the ability to search opensea collectables when creating a new permission see designs here when creating or editing permission it should be possible for the user to reference any collectable listed on opensea in the permission cc ing jrainville iurimatias | 1 |
712,685 | 24,503,632,664 | IssuesEvent | 2022-10-10 14:37:51 | AY2223S1-CS2103T-W16-1/tp | https://api.github.com/repos/AY2223S1-CS2103T-W16-1/tp | closed | As a hotel manager, I want to be able to save the details of the guests | type.Story priority.High | ... so that the data is not lost between sessions | 1.0 | As a hotel manager, I want to be able to save the details of the guests - ... so that the data is not lost between sessions | priority | as a hotel manager i want to be able to save the details of the guests so that the data is not lost between sessions | 1 |
724,205 | 24,920,439,136 | IssuesEvent | 2022-10-30 22:11:45 | Valks-Games/sankari | https://api.github.com/repos/Valks-Games/sankari | closed | Setting BasicEnemy prop "FallOffCliff" to `true` prevents the enemy from moving | bug good first issue help wanted coding holding up project high priority | 

This enemy is called "Enemy6", it becomes active when the player enters the trigger called "Activate Enemies" under triggers node.


Note that if the following code is commented out, the enemy will not move regardless if the prop `FallOffCliff` is set to true or not.

*BasicEnemy.cs does extend from Entity.cs so there might be something in there from preventing the enemy from moving.* | 1.0 | Setting BasicEnemy prop "FallOffCliff" to `true` prevents the enemy from moving - 

This enemy is called "Enemy6", it becomes active when the player enters the trigger called "Activate Enemies" under triggers node.


Note that if the following code is commented out, the enemy will not move regardless if the prop `FallOffCliff` is set to true or not.

*BasicEnemy.cs does extend from Entity.cs so there might be something in there from preventing the enemy from moving.* | priority | setting basicenemy prop falloffcliff to true prevents the enemy from moving this enemy is called it becomes active when the player enters the trigger called activate enemies under triggers node note that if the following code is commented out the enemy will not move regardless if the prop falloffcliff is set to true or not basicenemy cs does extend from entity cs so there might be something in there from preventing the enemy from moving | 1 |
789,693 | 27,802,363,257 | IssuesEvent | 2023-03-17 16:48:08 | model-checking/kani | https://api.github.com/repos/model-checking/kani | closed | Investigate why mir-linker test requires an unwind annotation | T-High Priority [C] Internal T-CBMC | This is concerned with the mir-linker test (`tests/cargo-kani/mir-linker/src/lib.rs`).
Before CBMC 5.72.0, this test did not require an unwind annotation.
With CBMC 5.72.0, not specifying an unwind value causes it to unwind forever (see #1941).
Investigate why. | 1.0 | Investigate why mir-linker test requires an unwind annotation - This is concerned with the mir-linker test (`tests/cargo-kani/mir-linker/src/lib.rs`).
Before CBMC 5.72.0, this test did not require an unwind annotation.
With CBMC 5.72.0, not specifying an unwind value causes it to unwind forever (see #1941).
Investigate why. | priority | investigate why mir linker test requires an unwind annotation this is concerned with the mir linker test tests cargo kani mir linker src lib rs before cbmc this test did not require an unwind annotation with cbmc not specifying an unwind value causes it to unwind forever see investigate why | 1 |
376,498 | 11,147,899,810 | IssuesEvent | 2019-12-23 14:01:57 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | twitter.com - site is not usable | browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical | <!-- @browser: Firefox 73.0 -->
<!-- @ua_header: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0 -->
<!-- @reported_with: desktop-reporter -->
**URL**: https://twitter.com/
**Browser / Version**: Firefox 73.0
**Operating System**: Ubuntu
**Tested Another Browser**: Yes
**Problem type**: Site is not usable
**Description**: Site not usable
**Steps to Reproduce**:
[](https://webcompat.com/uploads/2019/12/a95597ea-fa80-4e6e-99cb-58eb880d94d7.jpeg)
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191222154432</li><li>channel: nightly</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/2019/12/37a6c872-41fc-41de-875a-28453cd17d77)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | twitter.com - site is not usable - <!-- @browser: Firefox 73.0 -->
<!-- @ua_header: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0 -->
<!-- @reported_with: desktop-reporter -->
**URL**: https://twitter.com/
**Browser / Version**: Firefox 73.0
**Operating System**: Ubuntu
**Tested Another Browser**: Yes
**Problem type**: Site is not usable
**Description**: Site not usable
**Steps to Reproduce**:
[](https://webcompat.com/uploads/2019/12/a95597ea-fa80-4e6e-99cb-58eb880d94d7.jpeg)
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191222154432</li><li>channel: nightly</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/2019/12/37a6c872-41fc-41de-875a-28453cd17d77)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | twitter com site is not usable url browser version firefox operating system ubuntu tested another browser yes problem type site is not usable description site not usable steps to reproduce browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel nightly hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
475,886 | 13,727,459,479 | IssuesEvent | 2020-10-04 06:33:19 | AY2021S1-CS2103T-F12-3/tp | https://api.github.com/repos/AY2021S1-CS2103T-F12-3/tp | opened | As a user, I can edit a grade that I received from a module | priority.High type.Story | so that I can update my results if there are mistakes. | 1.0 | As a user, I can edit a grade that I received from a module - so that I can update my results if there are mistakes. | priority | as a user i can edit a grade that i received from a module so that i can update my results if there are mistakes | 1 |
697,856 | 23,956,030,154 | IssuesEvent | 2022-09-12 15:01:41 | Azordev/did-admin-panel | https://api.github.com/repos/Azordev/did-admin-panel | closed | HACER UNA VISTA PARA NUEVO PROVEEDOR ./ MAKE A VIEW FOR A NEW SUPPLIER . | EE-3 priority high DEV Check QA check | ### EXPLANATION
Al seleccionar nuevo proveedor se pasara a la siguiente vista donde se abrirá un espacio para pedir una serie de datos para ingresar a proveedor el primer dato que pedirá sera el nombre de la empresa con el titulo "Nombre de la empresa " y debajo estará un espacio para poder escribir el nombre de la empresa a ingresar
When you select new supplier you will go to the next view where a space will open to ask for a series of data to enter the supplier, the first data requested will be the name of the company with the title "Name of the company" and below will be a space to write the name of the company to enter.
### SCREENSHOTS

Crear este titulo y espacio

### USER STORY
Yo como usuario proveedor quiero que al seleccionar "Añadir nuevo proveedor" se muestre una vista donde se muestre la opción de " nombre de la empresa" para que pueda afiliar mi empresa
As a supplier user, I want to select "Add new supplier" to display a view where the "company name" option is shown so that I can affiliate my company.
### ACEPTANCE CRITERIA
En esta vista se dará un espacio con el titulo "nombre de la empresa" para agregarla y pueda afiliarme
In this view there will be a space with the title "name of the company" to add it so that I can become a member.
# Referencias
- Por favor terminar en 3 días. Mas información: https://github.com/Azordev/did-admin-panel/issues/192
| 1.0 | HACER UNA VISTA PARA NUEVO PROVEEDOR ./ MAKE A VIEW FOR A NEW SUPPLIER . - ### EXPLANATION
Al seleccionar nuevo proveedor se pasara a la siguiente vista donde se abrirá un espacio para pedir una serie de datos para ingresar a proveedor el primer dato que pedirá sera el nombre de la empresa con el titulo "Nombre de la empresa " y debajo estará un espacio para poder escribir el nombre de la empresa a ingresar
When you select new supplier you will go to the next view where a space will open to ask for a series of data to enter the supplier, the first data requested will be the name of the company with the title "Name of the company" and below will be a space to write the name of the company to enter.
### SCREENSHOTS

Crear este titulo y espacio

### USER STORY
Yo como usuario proveedor quiero que al seleccionar "Añadir nuevo proveedor" se muestre una vista donde se muestre la opción de " nombre de la empresa" para que pueda afiliar mi empresa
As a supplier user, I want to select "Add new supplier" to display a view where the "company name" option is shown so that I can affiliate my company.
### ACEPTANCE CRITERIA
En esta vista se dará un espacio con el titulo "nombre de la empresa" para agregarla y pueda afiliarme
In this view there will be a space with the title "name of the company" to add it so that I can become a member.
# Referencias
- Por favor terminar en 3 días. Mas información: https://github.com/Azordev/did-admin-panel/issues/192
| priority | hacer una vista para nuevo proveedor make a view for a new supplier explanation al seleccionar nuevo proveedor se pasara a la siguiente vista donde se abrirá un espacio para pedir una serie de datos para ingresar a proveedor el primer dato que pedirá sera el nombre de la empresa con el titulo nombre de la empresa y debajo estará un espacio para poder escribir el nombre de la empresa a ingresar when you select new supplier you will go to the next view where a space will open to ask for a series of data to enter the supplier the first data requested will be the name of the company with the title name of the company and below will be a space to write the name of the company to enter screenshots crear este titulo y espacio user story yo como usuario proveedor quiero que al seleccionar añadir nuevo proveedor se muestre una vista donde se muestre la opción de nombre de la empresa para que pueda afiliar mi empresa as a supplier user i want to select add new supplier to display a view where the company name option is shown so that i can affiliate my company aceptance criteria en esta vista se dará un espacio con el titulo nombre de la empresa para agregarla y pueda afiliarme in this view there will be a space with the title name of the company to add it so that i can become a member referencias por favor terminar en días mas información | 1 |
467,295 | 13,445,428,790 | IssuesEvent | 2020-09-08 11:23:25 | tracits/rodant | https://api.github.com/repos/tracits/rodant | closed | Exported dataset uses <unset> instead of NULL | effort:low enhancement priority:high | In the exported .csv file, if a variable does not have a set value, it's exported as <unset>. It should probably be NULL, "", or NA since <unset> will be interpreted as a string when handling the data on the backend site. This happens for variables that have been added and not yet collected (for example occupation), this will never be set for patients that are not included for this followup - and should logically not be 999 (unknown). NULL would be more appropriate?
Suggested change: Export data as "" or NULL when a variable does not have a set value. | 1.0 | Exported dataset uses <unset> instead of NULL - In the exported .csv file, if a variable does not have a set value, it's exported as <unset>. It should probably be NULL, "", or NA since <unset> will be interpreted as a string when handling the data on the backend site. This happens for variables that have been added and not yet collected (for example occupation), this will never be set for patients that are not included for this followup - and should logically not be 999 (unknown). NULL would be more appropriate?
Suggested change: Export data as "" or NULL when a variable does not have a set value. | priority | exported dataset uses instead of null in the exported csv file if a variable does not have a set value it s exported as it should probably be null or na since will be interpreted as a string when handling the data on the backend site this happens for variables that have been added and not yet collected for example occupation this will never be set for patients that are not included for this followup and should logically not be unknown null would be more appropriate suggested change export data as or null when a variable does not have a set value | 1 |
217,263 | 7,319,562,227 | IssuesEvent | 2018-03-02 01:31:34 | sul-dlss/preservation_catalog | https://api.github.com/repos/sul-dlss/preservation_catalog | closed | (CV) for each manInv file, compare checksums | checksum validation high priority needs review | for a given moab,
for each version's `manifestInventory.xml` file
- parse it and get all of filenames with their checksum for the selected algorithm
- compare the computed checksum for that version's manifests files against the checksum read from `manifestInventory.xml` file
This functionality may live inside moab-versioning gem, but will need to be called from app/service/checksum_validator.c2m_validation, which is where we will know which algorithm is selected.
Need to at least know the data structure for the computed checksums in #518) | 1.0 | (CV) for each manInv file, compare checksums - for a given moab,
for each version's `manifestInventory.xml` file
- parse it and get all of filenames with their checksum for the selected algorithm
- compare the computed checksum for that version's manifests files against the checksum read from `manifestInventory.xml` file
This functionality may live inside moab-versioning gem, but will need to be called from app/service/checksum_validator.c2m_validation, which is where we will know which algorithm is selected.
Need to at least know the data structure for the computed checksums in #518) | priority | cv for each maninv file compare checksums for a given moab for each version s manifestinventory xml file parse it and get all of filenames with their checksum for the selected algorithm compare the computed checksum for that version s manifests files against the checksum read from manifestinventory xml file this functionality may live inside moab versioning gem but will need to be called from app service checksum validator validation which is where we will know which algorithm is selected need to at least know the data structure for the computed checksums in | 1 |
345,477 | 10,368,189,289 | IssuesEvent | 2019-09-07 14:58:51 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | After last update the cookie bar text shows the html code (a href) instead of creating a link. | Urgent [Priority: HIGH] bug | Ref:https://secure.helpscout.net/conversation/945900095/80087?folderId=2770543
Also, recreate this issue in local
See this screenshot: https://prnt.sc/p1ocp0 | 1.0 | After last update the cookie bar text shows the html code (a href) instead of creating a link. - Ref:https://secure.helpscout.net/conversation/945900095/80087?folderId=2770543
Also, recreate this issue in local
See this screenshot: https://prnt.sc/p1ocp0 | priority | after last update the cookie bar text shows the html code a href instead of creating a link ref also recreate this issue in local see this screenshot | 1 |
87,111 | 3,736,997,077 | IssuesEvent | 2016-03-08 17:43:35 | nfprojects/nfengine | https://api.github.com/repos/nfprojects/nfengine | closed | nfRendererOGL4: Multiple OpenGL contexts | enhancement high priority medium | Supporting multiple OS windows requires nfRendererOGL4 to perform switching between contexts. Of course, the situation varies between platforms - resource sharing between contexts is differently implemented, plus OpenGL Extensions must be handled in a different way.
Linux seems to have a slightly easier to handle ABI, so it would be a good starting point.
**Task list:**
- [x] Add a Context singleton, which will perform following actions:
- [x] Allocate a main OpenGL Context (aka. Master Context).
- [x] Expose data needed to create per-Backbuffer contexts (aka. Slave Contexts) in a multi-platform way.
- [x] Implement the solution on Linux only, as Extensions there do not depend on Contexts.
- [x] Port the solution to Windows:
- [x] Master Context and Slave Context implementation on Windows.
- [x] OpenGL Extensions on Windows are context-dependent, so each created context should have its own OGL Extension pointer set. | 1.0 | nfRendererOGL4: Multiple OpenGL contexts - Supporting multiple OS windows requires nfRendererOGL4 to perform switching between contexts. Of course, the situation varies between platforms - resource sharing between contexts is differently implemented, plus OpenGL Extensions must be handled in a different way.
Linux seems to have a slightly easier to handle ABI, so it would be a good starting point.
**Task list:**
- [x] Add a Context singleton, which will perform following actions:
- [x] Allocate a main OpenGL Context (aka. Master Context).
- [x] Expose data needed to create per-Backbuffer contexts (aka. Slave Contexts) in a multi-platform way.
- [x] Implement the solution on Linux only, as Extensions there do not depend on Contexts.
- [x] Port the solution to Windows:
- [x] Master Context and Slave Context implementation on Windows.
- [x] OpenGL Extensions on Windows are context-dependent, so each created context should have its own OGL Extension pointer set. | priority | multiple opengl contexts supporting multiple os windows requires to perform switching between contexts of course the situation varies between platforms resource sharing between contexts is differently implemented plus opengl extensions must be handled in a different way linux seems to have a slightly easier to handle abi so it would be a good starting point task list add a context singleton which will perform following actions allocate a main opengl context aka master context expose data needed to create per backbuffer contexts aka slave contexts in a multi platform way implement the solution on linux only as extensions there do not depend on contexts port the solution to windows master context and slave context implementation on windows opengl extensions on windows are context dependent so each created context should have its own ogl extension pointer set | 1 |
799,365 | 28,305,016,311 | IssuesEvent | 2023-04-10 10:06:17 | bounswe/bounswe2023group8 | https://api.github.com/repos/bounswe/bounswe2023group8 | closed | Creating Individual Contribution Report - Begüm | status: in progress priority: high effort: low | "Individual Contribution Report" should be structured as follows:
- [ ] Member: Info about myself (name, group)
- [ ] Responsibilities: Overall description of the responsibilities that are assigned to me
- [ ] Main contributions: Overall description of my contributions to the project until Milestone. Provide the links to your work and related issues in your project repository,
- [ ] Management related significant issues: My issues that contribute to the management of our software project
- [ ] Additional information (optional): Further relevant information related to my contributions | 1.0 | Creating Individual Contribution Report - Begüm - "Individual Contribution Report" should be structured as follows:
- [ ] Member: Info about myself (name, group)
- [ ] Responsibilities: Overall description of the responsibilities that are assigned to me
- [ ] Main contributions: Overall description of my contributions to the project until Milestone. Provide the links to your work and related issues in your project repository,
- [ ] Management related significant issues: My issues that contribute to the management of our software project
- [ ] Additional information (optional): Further relevant information related to my contributions | priority | creating individual contribution report begüm individual contribution report should be structured as follows member info about myself name group responsibilities overall description of the responsibilities that are assigned to me main contributions overall description of my contributions to the project until milestone provide the links to your work and related issues in your project repository management related significant issues my issues that contribute to the management of our software project additional information optional further relevant information related to my contributions | 1 |
677,284 | 23,157,110,910 | IssuesEvent | 2022-07-29 14:00:59 | AlexsLemonade/scpca-portal | https://api.github.com/repos/AlexsLemonade/scpca-portal | closed | Update where we read cell_count to sample_cell_count_estimate | High Priority client / front-end | ### Context
We will be changing the field `cell_count` on the Sample model with a PR for this issue:
https://github.com/AlexsLemonade/scpca-portal/issues/269
### Solution or next step
We will need to update the client side (samples table etc) where we currently read `sample.cell_count` and instead read `sample.sample_cell_count_estimate`.
| 1.0 | Update where we read cell_count to sample_cell_count_estimate - ### Context
We will be changing the field `cell_count` on the Sample model with a PR for this issue:
https://github.com/AlexsLemonade/scpca-portal/issues/269
### Solution or next step
We will need to update the client side (samples table etc) where we currently read `sample.cell_count` and instead read `sample.sample_cell_count_estimate`.
| priority | update where we read cell count to sample cell count estimate context we will be changing the field cell count on the sample model with a pr for this issue solution or next step we will need to update the client side samples table etc where we currently read sample cell count and instead read sample sample cell count estimate | 1 |
246,454 | 7,895,362,765 | IssuesEvent | 2018-06-29 02:47:30 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Law website error: Type error line 751 | High Priority | Version: 0.7.2.4 beta
Browser Chrome
Dedicated server
Action taken
Selected law District proposal law thats in progress to vote
Uncaught TypeError: causeeffect.updateMapsInfo is not a function
at OrbitControls.js:751
(anonymous) @ OrbitControls.js:751
setTimeout (async)
onMouseWheel @ OrbitControls.js:751 | 1.0 | Law website error: Type error line 751 - Version: 0.7.2.4 beta
Browser Chrome
Dedicated server
Action taken
Selected law District proposal law thats in progress to vote
Uncaught TypeError: causeeffect.updateMapsInfo is not a function
at OrbitControls.js:751
(anonymous) @ OrbitControls.js:751
setTimeout (async)
onMouseWheel @ OrbitControls.js:751 | priority | law website error type error line version beta browser chrome dedicated server action taken selected law district proposal law thats in progress to vote uncaught typeerror causeeffect updatemapsinfo is not a function at orbitcontrols js anonymous orbitcontrols js settimeout async onmousewheel orbitcontrols js | 1 |
505,270 | 14,630,882,628 | IssuesEvent | 2020-12-23 18:39:32 | bounswe/bounswe2020group5 | https://api.github.com/repos/bounswe/bounswe2020group5 | opened | frontend/search page will be implemented | Priority: High Status: Needs Review frontend | Filter and sorting implementations according to certain fields. | 1.0 | frontend/search page will be implemented - Filter and sorting implementations according to certain fields. | priority | frontend search page will be implemented filter and sorting implementations according to certain fields | 1 |
549,222 | 16,088,118,329 | IssuesEvent | 2021-04-26 13:44:15 | Znypr/my-thai-star | https://api.github.com/repos/Znypr/my-thai-star | opened | Bestellungs Status: Implementierung internen Status | Sprint#2 high priority medium | - Bestellungen brauchen intern einen Status-Feld welches den aktuellen Status speichert | 1.0 | Bestellungs Status: Implementierung internen Status - - Bestellungen brauchen intern einen Status-Feld welches den aktuellen Status speichert | priority | bestellungs status implementierung internen status bestellungen brauchen intern einen status feld welches den aktuellen status speichert | 1 |
448,551 | 12,952,388,082 | IssuesEvent | 2020-07-19 20:21:00 | UC-Davis-molecular-computing/scadnano | https://api.github.com/repos/UC-Davis-molecular-computing/scadnano | closed | fix bug where strand highlights as selectable on mouseover after switching from strand select mode to "all ends" select mode | bug closed in dev high priority | Switching from strand to any other mode (including individual end modes, even picking 4 of them in series) doesn't do this. But having strands be selectable, then clicking on "all ends" in select mode, the strands highlight on mouseover. (But they aren't selectable; clicking on them does not select them.) | 1.0 | fix bug where strand highlights as selectable on mouseover after switching from strand select mode to "all ends" select mode - Switching from strand to any other mode (including individual end modes, even picking 4 of them in series) doesn't do this. But having strands be selectable, then clicking on "all ends" in select mode, the strands highlight on mouseover. (But they aren't selectable; clicking on them does not select them.) | priority | fix bug where strand highlights as selectable on mouseover after switching from strand select mode to all ends select mode switching from strand to any other mode including individual end modes even picking of them in series doesn t do this but having strands be selectable then clicking on all ends in select mode the strands highlight on mouseover but they aren t selectable clicking on them does not select them | 1 |
633,361 | 20,252,908,254 | IssuesEvent | 2022-02-14 19:47:37 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | reopened | [studio][studio-ui] Bulk publish on first publish | enhancement priority: high | ### Feature Request
#### Is your feature request related to a problem? Please describe.
The first publishing of a site can lead to issues without an initial bulk publish of the entire site.
#### Describe the solution you'd like
Make bulk publishing a recommended operation upon a first publish operation.
##### Tasks
- [x] #5262
- [x] [studio-ui] The publishing dialog(s) will check the above API, if a site has never been published the dialog will show "The entire site will be published along with this publish request since this is the very first publish."
- [x] [studio-ui] The dialog for approval/rejection will show the same warning for the reviewer
- [x] [studio-ui] The dialog will not show dependencies/packages/individual files in this case
- [x] [studio-ui] Update the publishing targets retrieval service to use `/publish/available_targets`
- [x] [studio] Studio publishing system will detect that the site has never been published before and therefore bulk publish (clone/etc) the entire sandbox the first time regardless of any other consideration
- [ ] [docs] Remove API v1 `get-available-publishing-channels` service [https://docs.craftercms.org/en/4.0/developers/projects/studio/api/deployment/get-available-publishing-channels.html](url)
- [ ] [studio] Depricate/Remove API v1 `get-available-publishing-channels` service
#### Describe alternatives you've considered
Publish on create.
Allow/disallow bulk publish on first publish.
| 1.0 | [studio][studio-ui] Bulk publish on first publish - ### Feature Request
#### Is your feature request related to a problem? Please describe.
The first publishing of a site can lead to issues without an initial bulk publish of the entire site.
#### Describe the solution you'd like
Make bulk publishing a recommended operation upon a first publish operation.
##### Tasks
- [x] #5262
- [x] [studio-ui] The publishing dialog(s) will check the above API, if a site has never been published the dialog will show "The entire site will be published along with this publish request since this is the very first publish."
- [x] [studio-ui] The dialog for approval/rejection will show the same warning for the reviewer
- [x] [studio-ui] The dialog will not show dependencies/packages/individual files in this case
- [x] [studio-ui] Update the publishing targets retrieval service to use `/publish/available_targets`
- [x] [studio] Studio publishing system will detect that the site has never been published before and therefore bulk publish (clone/etc) the entire sandbox the first time regardless of any other consideration
- [ ] [docs] Remove API v1 `get-available-publishing-channels` service [https://docs.craftercms.org/en/4.0/developers/projects/studio/api/deployment/get-available-publishing-channels.html](url)
- [ ] [studio] Depricate/Remove API v1 `get-available-publishing-channels` service
#### Describe alternatives you've considered
Publish on create.
Allow/disallow bulk publish on first publish.
| priority | bulk publish on first publish feature request is your feature request related to a problem please describe the first publishing of a site can lead to issues without an initial bulk publish of the entire site describe the solution you d like make bulk publishing a recommended operation upon a first publish operation tasks the publishing dialog s will check the above api if a site has never been published the dialog will show the entire site will be published along with this publish request since this is the very first publish the dialog for approval rejection will show the same warning for the reviewer the dialog will not show dependencies packages individual files in this case update the publishing targets retrieval service to use publish available targets studio publishing system will detect that the site has never been published before and therefore bulk publish clone etc the entire sandbox the first time regardless of any other consideration remove api get available publishing channels service url depricate remove api get available publishing channels service describe alternatives you ve considered publish on create allow disallow bulk publish on first publish | 1 |
624,562 | 19,701,405,214 | IssuesEvent | 2022-01-12 16:58:35 | CovidTrackerFr/vitemadose-ios | https://api.github.com/repos/CovidTrackerFr/vitemadose-ios | closed | [Bug] App crashes if "pharmacie" is sent | bug high priority | **Describe the bug**
When I want to display the list of centres for _Bourg la Reine_, the app crashes because for this city there is at least one centre with centre type "pharmacie", even if others are "drugstores".
**To Reproduce**
Steps to reproduce the behavior:
1. Start app
2. Select "Bourg La Reine"
3. Boom
**Expected behavior**
List of centres must be displayed
**Screenshots**
Not relevant
**Smartphone (please complete the following information):**
- Device: iPhone 12 Pro
- OS: iOS 15.1
- App version: in dev
**Additional context**
Bug is not in production because parsing of centre types is still in dev.
| 1.0 | [Bug] App crashes if "pharmacie" is sent - **Describe the bug**
When I want to display the list of centres for _Bourg la Reine_, the app crashes because for this city there is at least one centre with centre type "pharmacie", even if others are "drugstores".
**To Reproduce**
Steps to reproduce the behavior:
1. Start app
2. Select "Bourg La Reine"
3. Boom
**Expected behavior**
List of centres must be displayed
**Screenshots**
Not relevant
**Smartphone (please complete the following information):**
- Device: iPhone 12 Pro
- OS: iOS 15.1
- App version: in dev
**Additional context**
Bug is not in production because parsing of centre types is still in dev.
| priority | app crashes if pharmacie is sent describe the bug when i want to display the list of centres for bourg la reine the app crashes because for this city there is at least one centre with centre type pharmacie even if others are drugstores to reproduce steps to reproduce the behavior start app select bourg la reine boom expected behavior list of centres must be displayed screenshots not relevant smartphone please complete the following information device iphone pro os ios app version in dev additional context bug is not in production because parsing of centre types is still in dev | 1 |
695,208 | 23,848,934,174 | IssuesEvent | 2022-09-06 16:05:47 | pepkit/peppy | https://api.github.com/repos/pepkit/peppy | closed | to_dict() and from_dict() optimization! | priority-high enhancement - devs | Right now from_dict returns all possible variables that were initialized in the class. Some of that values are mostly identical.
In the pephub_db it can lead to the huge disc space is taken this variables. It will be a problem in the nearest future. e.g. download 1K projects from GEO.
We need to optimize this functions ASAP. | 1.0 | to_dict() and from_dict() optimization! - Right now from_dict returns all possible variables that were initialized in the class. Some of that values are mostly identical.
In the pephub_db it can lead to the huge disc space is taken this variables. It will be a problem in the nearest future. e.g. download 1K projects from GEO.
We need to optimize this functions ASAP. | priority | to dict and from dict optimization right now from dict returns all possible variables that were initialized in the class some of that values are mostly identical in the pephub db it can lead to the huge disc space is taken this variables it will be a problem in the nearest future e g download projects from geo we need to optimize this functions asap | 1 |
631,510 | 20,152,882,730 | IssuesEvent | 2022-02-09 14:04:18 | netdata/netdata-cloud | https://api.github.com/repos/netdata/netdata-cloud | opened | [BUG] Error in charts in custom dashboards when user does a fresh log-in | bug internal submit priority/high visualizations-team cloud-backend | **Describe the bug**
Originated from [community report](https://community.netdata.cloud/t/dashboard-charts-not-showing-data-before-visiting-node/2513).
When a user logs in to netdata cloud and visits a custom dashboard containing charts from single node view, the relevant requests result in 404 from server:
Request:
GET https://app.netdata.cloud/api/v2/nodes/{node_id}
Response:
{"errorMsgKey":"ErrNodeInstanceNotFound","errorMessage":"could not find node instance","errorCode":"njvsYRMOlZ-347354315"}
However, the root cause of this seems to be in the _query request, returning empty results:
Request:
POST https://app.netdata.cloud/api/v2/spaces/31a2fba1-8ee2-4fa0-9fed-bb437e3fb75c/charts/_query
Response:
{"results":null}
**To Reproduce**
Create a dashboard containing a chart from a single node view. In the particular example we are looking at, we are adding disk_space related charts to this dashboard.
Log out.
Log back-in and visit this dashboard.
**Expected behavior**
The charts within the dashboard to show data without the user having to visit the single node view of the contributing nodes.
**Screenshots**
Issue before visiting the single node view of one of the contributing nodes to the dashboard:

View after visiting single node view:

**Desktop (please complete the following information):**
- OS: MacOS
- Browser Chrome
- Version 97.0.4692.99
| 1.0 | [BUG] Error in charts in custom dashboards when user does a fresh log-in - **Describe the bug**
Originated from [community report](https://community.netdata.cloud/t/dashboard-charts-not-showing-data-before-visiting-node/2513).
When a user logs in to netdata cloud and visits a custom dashboard containing charts from single node view, the relevant requests result in 404 from server:
Request:
GET https://app.netdata.cloud/api/v2/nodes/{node_id}
Response:
{"errorMsgKey":"ErrNodeInstanceNotFound","errorMessage":"could not find node instance","errorCode":"njvsYRMOlZ-347354315"}
However, the root cause of this seems to be in the _query request, returning empty results:
Request:
POST https://app.netdata.cloud/api/v2/spaces/31a2fba1-8ee2-4fa0-9fed-bb437e3fb75c/charts/_query
Response:
{"results":null}
**To Reproduce**
Create a dashboard containing a chart from a single node view. In the particular example we are looking at, we are adding disk_space related charts to this dashboard.
Log out.
Log back-in and visit this dashboard.
**Expected behavior**
The charts within the dashboard to show data without the user having to visit the single node view of the contributing nodes.
**Screenshots**
Issue before visiting the single node view of one of the contributing nodes to the dashboard:

View after visiting single node view:

**Desktop (please complete the following information):**
- OS: MacOS
- Browser Chrome
- Version 97.0.4692.99
| priority | error in charts in custom dashboards when user does a fresh log in describe the bug originated from when a user logs in to netdata cloud and visits a custom dashboard containing charts from single node view the relevant requests result in from server request get response errormsgkey errnodeinstancenotfound errormessage could not find node instance errorcode njvsyrmolz however the root cause of this seems to be in the query request returning empty results request post response results null to reproduce create a dashboard containing a chart from a single node view in the particular example we are looking at we are adding disk space related charts to this dashboard log out log back in and visit this dashboard expected behavior the charts within the dashboard to show data without the user having to visit the single node view of the contributing nodes screenshots issue before visiting the single node view of one of the contributing nodes to the dashboard view after visiting single node view desktop please complete the following information os macos browser chrome version | 1 |
202,711 | 7,051,503,905 | IssuesEvent | 2018-01-03 12:05:45 | chingu-voyage3/bears-31-api | https://api.github.com/repos/chingu-voyage3/bears-31-api | closed | Write list group meetings endpoint logic | api feature high priority | Implement the functionality to return all the meetings for a given group. This should **only be accessible to group members**.
Return the list of all the meetings or an error if something went wrong. | 1.0 | Write list group meetings endpoint logic - Implement the functionality to return all the meetings for a given group. This should **only be accessible to group members**.
Return the list of all the meetings or an error if something went wrong. | priority | write list group meetings endpoint logic implement the functionality to return all the meetings for a given group this should only be accessible to group members return the list of all the meetings or an error if something went wrong | 1 |
353,824 | 10,559,355,487 | IssuesEvent | 2019-10-04 11:22:01 | ushahidi/opendesign | https://api.github.com/repos/ushahidi/opendesign | closed | Mid-term report for Adobe & Ushahidi [Internal] | Admin/Finance Done! Highest Priority | Internal document to look at what's been achieved to date and what is still in progress. | 1.0 | Mid-term report for Adobe & Ushahidi [Internal] - Internal document to look at what's been achieved to date and what is still in progress. | priority | mid term report for adobe ushahidi internal document to look at what s been achieved to date and what is still in progress | 1 |
520,965 | 15,098,517,517 | IssuesEvent | 2021-02-07 23:04:05 | gatech-sysml/modin | https://api.github.com/repos/gatech-sysml/modin | closed | CuDF Backend Environmental Variable | High Priority bug | To properly integrate the new cudf backend with the modin-gpu code, we need to add an environmental variable to switch between backends. The version of modin that modin-gpu was based on has now refactored the code for backend checking, and now we need to investigate this. | 1.0 | CuDF Backend Environmental Variable - To properly integrate the new cudf backend with the modin-gpu code, we need to add an environmental variable to switch between backends. The version of modin that modin-gpu was based on has now refactored the code for backend checking, and now we need to investigate this. | priority | cudf backend environmental variable to properly integrate the new cudf backend with the modin gpu code we need to add an environmental variable to switch between backends the version of modin that modin gpu was based on has now refactored the code for backend checking and now we need to investigate this | 1 |
318,088 | 9,674,232,173 | IssuesEvent | 2019-05-22 09:25:21 | HGustavs/LenaSYS | https://api.github.com/repos/HGustavs/LenaSYS | closed | Shortcut changes | Diagram gruppA2019 highPriority | After I merged a solution for adding multiple short-cuts without paying enough attention to the merge, we added a lot of shortcuts that are unwanted. I an attempt to solve the problems I created, here is a a list on exactly how the shorts should be:
(LOOK BELOW EACH IMAGE FOR THE WANTED CHANGES)

Shortcuts for Save, Load, Import should be removed, along with the tool tips.

Shortcuts for Global appearance & Change appearance, Add group to selected & remove group from selected should be removed, along with the tool tips. Shortcut for Reset View should be changed from Shift + 0 to Shift + O. Add group to selected & remove group from selected should be renamed to: Group Objects / Ungroup Objects.

Shortcuts for Display All Tools, Toggle A4 Holes, A4 Holes Right, Toggle A4 orientation should be removed, along with the tool tips.

Shortcuts for Vertical Center, Horizontal Center and Snap to Grid should be removed, along with the tool tips.

Shortcuts for Horizontal and Vertical should be removed, along with the tool tips.

The entire menu option "Lock object proportions" should be removed along with shortcut and tool tip.
These decisions have been made based on a lengthy discussion about the importance of the option, the accessibility of the shortcut etc.
| 1.0 | Shortcut changes - After I merged a solution for adding multiple short-cuts without paying enough attention to the merge, we added a lot of shortcuts that are unwanted. I an attempt to solve the problems I created, here is a a list on exactly how the shorts should be:
(LOOK BELOW EACH IMAGE FOR THE WANTED CHANGES)

Shortcuts for Save, Load, Import should be removed, along with the tool tips.

Shortcuts for Global appearance & Change appearance, Add group to selected & remove group from selected should be removed, along with the tool tips. Shortcut for Reset View should be changed from Shift + 0 to Shift + O. Add group to selected & remove group from selected should be renamed to: Group Objects / Ungroup Objects.

Shortcuts for Display All Tools, Toggle A4 Holes, A4 Holes Right, Toggle A4 orientation should be removed, along with the tool tips.

Shortcuts for Vertical Center, Horizontal Center and Snap to Grid should be removed, along with the tool tips.

Shortcuts for Horizontal and Vertical should be removed, along with the tool tips.

The entire menu option "Lock object proportions" should be removed along with shortcut and tool tip.
These decisions have been made based on a lengthy discussion about the importance of the option, the accessibility of the shortcut etc.
| priority | shortcut changes after i merged a solution for adding multiple short cuts without paying enough attention to the merge we added a lot of shortcuts that are unwanted i an attempt to solve the problems i created here is a a list on exactly how the shorts should be look below each image for the wanted changes shortcuts for save load import should be removed along with the tool tips shortcuts for global appearance change appearance add group to selected remove group from selected should be removed along with the tool tips shortcut for reset view should be changed from shift to shift o add group to selected remove group from selected should be renamed to group objects ungroup objects shortcuts for display all tools toggle holes holes right toggle orientation should be removed along with the tool tips shortcuts for vertical center horizontal center and snap to grid should be removed along with the tool tips shortcuts for horizontal and vertical should be removed along with the tool tips the entire menu option lock object proportions should be removed along with shortcut and tool tip these decisions have been made based on a lengthy discussion about the importance of the option the accessibility of the shortcut etc | 1 |
403,461 | 11,841,325,344 | IssuesEvent | 2020-03-23 20:34:25 | moonwards1/Moonwards-Virtual-Moon | https://api.github.com/repos/moonwards1/Moonwards-Virtual-Moon | closed | Audio tour of major features | high priority | As a simple and engaging activity for early visitors, I would like us to set up a few small clickable objects near major colony features, which when clicked, play an audio file in which I talk a bit about that machine, or structure.
This can be regarded as a stretch goal, but it is easy enough to do, and would really help. During active initial promotion I'll be keeping the game open all the time so i notice any visitor, but won't be there constantly. This helps cover things when I'm not there. | 1.0 | Audio tour of major features - As a simple and engaging activity for early visitors, I would like us to set up a few small clickable objects near major colony features, which when clicked, play an audio file in which I talk a bit about that machine, or structure.
This can be regarded as a stretch goal, but it is easy enough to do, and would really help. During active initial promotion I'll be keeping the game open all the time so i notice any visitor, but won't be there constantly. This helps cover things when I'm not there. | priority | audio tour of major features as a simple and engaging activity for early visitors i would like us to set up a few small clickable objects near major colony features which when clicked play an audio file in which i talk a bit about that machine or structure this can be regarded as a stretch goal but it is easy enough to do and would really help during active initial promotion i ll be keeping the game open all the time so i notice any visitor but won t be there constantly this helps cover things when i m not there | 1 |
766,542 | 26,887,963,868 | IssuesEvent | 2023-02-06 06:04:00 | wso2/api-manager | https://api.github.com/repos/wso2/api-manager | closed | Slowness in rendering the users in the MI Dashboard | Type/Improvement Priority/Highest Component/MI Missing/Component commitment 4.2.0-beta | ### Problem
Hi Team,
When log in to the MI Dashboard and try to view the users, the list is rendered very slowly in the browser. To be more specific, it takes around three minutes to render the user list in the Dashboard when the user count is significantly high.
When investigating this issue, I noticed that Dashboard uses two distinct management API calls in MI to retrieve the user information.
Get a list of users via [1].
Get information about individual users via [2].
Basically the second HTTP call is made multiple times based on the number of users returned from the first call. In the customer's case where around 500 users are available, the second HTTP call is made that many times to get individual user details. This process seems to be quite costly and time consuming. As a result, it takes a long time to render the user list in the dashboard.
I would highly appreciate it if you can check this issue and do the needful at earliest.
[1] - https://github.com/wso2/product-mi-tooling/blob/v4.2.0-alpha/monitoring-dashboard/components/org.wso2.ei.dashboard.core/src/main/java/org/wso2/ei/dashboard/micro/integrator/delegates/UsersDelegate.java#L167
[2] - https://github.com/wso2/product-mi-tooling/blob/v4.2.0-alpha/monitoring-dashboard/components/org.wso2.ei.dashboard.core/src/main/java/org/wso2/ei/dashboard/micro/integrator/delegates/UsersDelegate.java#L171
### Solution
1. Avoid sending the second call mentioned above to fetch individual user information.
### Affected Component
MI
### Version
4.2.0-beta
### Implementation
_No response_
### Related Issues
_No response_
### Suggested Labels
_No response_ | 1.0 | Slowness in rendering the users in the MI Dashboard - ### Problem
Hi Team,
When log in to the MI Dashboard and try to view the users, the list is rendered very slowly in the browser. To be more specific, it takes around three minutes to render the user list in the Dashboard when the user count is significantly high.
When investigating this issue, I noticed that Dashboard uses two distinct management API calls in MI to retrieve the user information.
Get a list of users via [1].
Get information about individual users via [2].
Basically the second HTTP call is made multiple times based on the number of users returned from the first call. In the customer's case where around 500 users are available, the second HTTP call is made that many times to get individual user details. This process seems to be quite costly and time consuming. As a result, it takes a long time to render the user list in the dashboard.
I would highly appreciate it if you can check this issue and do the needful at earliest.
[1] - https://github.com/wso2/product-mi-tooling/blob/v4.2.0-alpha/monitoring-dashboard/components/org.wso2.ei.dashboard.core/src/main/java/org/wso2/ei/dashboard/micro/integrator/delegates/UsersDelegate.java#L167
[2] - https://github.com/wso2/product-mi-tooling/blob/v4.2.0-alpha/monitoring-dashboard/components/org.wso2.ei.dashboard.core/src/main/java/org/wso2/ei/dashboard/micro/integrator/delegates/UsersDelegate.java#L171
### Solution
1. Avoid sending the second call mentioned above to fetch individual user information.
### Affected Component
MI
### Version
4.2.0-beta
### Implementation
_No response_
### Related Issues
_No response_
### Suggested Labels
_No response_ | priority | slowness in rendering the users in the mi dashboard problem hi team when log in to the mi dashboard and try to view the users the list is rendered very slowly in the browser to be more specific it takes around three minutes to render the user list in the dashboard when the user count is significantly high when investigating this issue i noticed that dashboard uses two distinct management api calls in mi to retrieve the user information get a list of users via get information about individual users via basically the second http call is made multiple times based on the number of users returned from the first call in the customer s case where around users are available the second http call is made that many times to get individual user details this process seems to be quite costly and time consuming as a result it takes a long time to render the user list in the dashboard i would highly appreciate it if you can check this issue and do the needful at earliest solution avoid sending the second call mentioned above to fetch individual user information affected component mi version beta implementation no response related issues no response suggested labels no response | 1 |
50,263 | 3,006,283,729 | IssuesEvent | 2015-07-27 09:23:43 | Itseez/opencv | https://api.github.com/repos/Itseez/opencv | opened | Segmentation fault inside cvSetTrackbarPos | auto-transferred bug category: highgui-gui priority: normal | Transferred from http://code.opencv.org/issues/2706
```
|| Nikita Manovich on 2013-01-16 08:27
|| Priority: Normal
|| Affected: None
|| Category: highgui-gui
|| Tracker: Bug
|| Difficulty: None
|| PR:
|| Platform: None / None
```
Segmentation fault inside cvSetTrackbarPos
-----------
```
I have attached an example from a book. When I tried to close the window using "X" I had segmentation fault inside cvSetTrackbarPos function from highgui module because in this case trackbar variable was NULL.
I didn't investigate the structure of the module in depth but with the attached patch I don't see the crash anymore.
```
History
-------
##### Marina Kolpakova on 2013-01-16 23:17
```
- Category set to highgui-gui
``` | 1.0 | Segmentation fault inside cvSetTrackbarPos - Transferred from http://code.opencv.org/issues/2706
```
|| Nikita Manovich on 2013-01-16 08:27
|| Priority: Normal
|| Affected: None
|| Category: highgui-gui
|| Tracker: Bug
|| Difficulty: None
|| PR:
|| Platform: None / None
```
Segmentation fault inside cvSetTrackbarPos
-----------
```
I have attached an example from a book. When I tried to close the window using "X" I had segmentation fault inside cvSetTrackbarPos function from highgui module because in this case trackbar variable was NULL.
I didn't investigate the structure of the module in depth but with the attached patch I don't see the crash anymore.
```
History
-------
##### Marina Kolpakova on 2013-01-16 23:17
```
- Category set to highgui-gui
``` | priority | segmentation fault inside cvsettrackbarpos transferred from nikita manovich on priority normal affected none category highgui gui tracker bug difficulty none pr platform none none segmentation fault inside cvsettrackbarpos i have attached an example from a book when i tried to close the window using x i had segmentation fault inside cvsettrackbarpos function from highgui module because in this case trackbar variable was null i didn t investigate the structure of the module in depth but with the attached patch i don t see the crash anymore history marina kolpakova on category set to highgui gui | 1 |
109,567 | 4,389,650,299 | IssuesEvent | 2016-08-08 22:58:08 | berkshelf/berkshelf | https://api.github.com/repos/berkshelf/berkshelf | closed | berkshelf: problems with ruby 2.3.0 | Bug High Priority | Setup:
- ruby 2.3.0 installed via rbenv
- berkshelf 4.1.1 installed via gem install
- doing a `berks install` in a project
Lots (multiple times per used cookbook) the following warnings are generated, this is probably caused by httpclient 2.6.0.1:
/home/tom/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/httpclient-2.6.0.1/lib/httpclient/session.rb:950:in `read_body_length': Object#timeout is deprecated, use Timeout.timeout instead
Berkshelf then fails with:
Ridley::Errors::ClientError SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
SSL verify is disabled in ~/.berkshelf/config.json
Calling `berks install -d` gives:
D, [2016-02-15T17:17:06.958292 #22444] DEBUG -- : request env: #<struct Faraday::Env method=:get, body=nil, url=#<Addressable::URI:0x3ffababa0dfc URI:https://chef-1.hst.sznet.de:443/cookbooks/apt/2.9.2>, request=#<Faraday::RequestOptions (empty)>, request_headers={"Accept"=>"application/json", "Content-Type"=>"application/json", "X-Chef-Version"=>"11.4.0", "User-Agent"=>"Ridley v4.4.2", "X-OPS-SIGN"=>"algorithm=sha1;version=1.0;", "X-OPS-USERID"=>"tseliger", "X-OPS-TIMESTAMP"=>"2016-02-15T16:17:06Z", "X-OPS-CONTENT-HASH"=>"removed", "X-OPS-AUTHORIZATION-1"=>"removed", "X-OPS-AUTHORIZATION-2"=>"removed", "X-OPS-AUTHORIZATION-3"=>"removed", "X-OPS-AUTHORIZATION-4"=>"removed", "X-OPS-AUTHORIZATION-5"=>"removed", "X-OPS-AUTHORIZATION-6"=>"removed", "HOST"=>"chef-1.hst.sznet.de:443"}, ssl=#<Faraday::SSLOptions verify=true>, parallel_manager=nil, params=nil, response=nil, response_headers=nil, status=nil>
Seems like faraday tries to use SSL verify, even though it is disabled in berkshelf config | 1.0 | berkshelf: problems with ruby 2.3.0 - Setup:
- ruby 2.3.0 installed via rbenv
- berkshelf 4.1.1 installed via gem install
- doing a `berks install` in a project
Lots (multiple times per used cookbook) the following warnings are generated, this is probably caused by httpclient 2.6.0.1:
/home/tom/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/httpclient-2.6.0.1/lib/httpclient/session.rb:950:in `read_body_length': Object#timeout is deprecated, use Timeout.timeout instead
Berkshelf then fails with:
Ridley::Errors::ClientError SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
SSL verify is disabled in ~/.berkshelf/config.json
Calling `berks install -d` gives:
D, [2016-02-15T17:17:06.958292 #22444] DEBUG -- : request env: #<struct Faraday::Env method=:get, body=nil, url=#<Addressable::URI:0x3ffababa0dfc URI:https://chef-1.hst.sznet.de:443/cookbooks/apt/2.9.2>, request=#<Faraday::RequestOptions (empty)>, request_headers={"Accept"=>"application/json", "Content-Type"=>"application/json", "X-Chef-Version"=>"11.4.0", "User-Agent"=>"Ridley v4.4.2", "X-OPS-SIGN"=>"algorithm=sha1;version=1.0;", "X-OPS-USERID"=>"tseliger", "X-OPS-TIMESTAMP"=>"2016-02-15T16:17:06Z", "X-OPS-CONTENT-HASH"=>"removed", "X-OPS-AUTHORIZATION-1"=>"removed", "X-OPS-AUTHORIZATION-2"=>"removed", "X-OPS-AUTHORIZATION-3"=>"removed", "X-OPS-AUTHORIZATION-4"=>"removed", "X-OPS-AUTHORIZATION-5"=>"removed", "X-OPS-AUTHORIZATION-6"=>"removed", "HOST"=>"chef-1.hst.sznet.de:443"}, ssl=#<Faraday::SSLOptions verify=true>, parallel_manager=nil, params=nil, response=nil, response_headers=nil, status=nil>
Seems like faraday tries to use SSL verify, even though it is disabled in berkshelf config | priority | berkshelf problems with ruby setup ruby installed via rbenv berkshelf installed via gem install doing a berks install in a project lots multiple times per used cookbook the following warnings are generated this is probably caused by httpclient home tom rbenv versions lib ruby gems gems httpclient lib httpclient session rb in read body length object timeout is deprecated use timeout timeout instead berkshelf then fails with ridley errors clienterror ssl connect returned errno state read server certificate b certificate verify failed ssl verify is disabled in berkshelf config json calling berks install d gives d debug request env request headers accept application json content type application json x chef version user agent ridley x ops sign algorithm version x ops userid tseliger x ops timestamp x ops content hash removed x ops authorization removed x ops authorization removed x ops authorization removed x ops authorization removed x ops authorization removed x ops authorization removed host chef hst sznet de ssl parallel manager nil params nil response nil response headers nil status nil seems like faraday tries to use ssl verify even though it is disabled in berkshelf config | 1 |
171,246 | 6,485,361,892 | IssuesEvent | 2017-08-19 09:31:21 | fossasia/open-event-webapp | https://api.github.com/repos/fossasia/open-event-webapp | closed | Convert List and Calendar view into one "changing" button | enhancement has-PR Priority: High | 
List view and calendar view are two buttons. Instead there should be just one button, which shows:
* a) an icon for "calendar view" (when list view is activated)
* b) in the same location an icon for "list view (when calendar view is activated)
| 1.0 | Convert List and Calendar view into one "changing" button - 
List view and calendar view are two buttons. Instead there should be just one button, which shows:
* a) an icon for "calendar view" (when list view is activated)
* b) in the same location an icon for "list view (when calendar view is activated)
| priority | convert list and calendar view into one changing button list view and calendar view are two buttons instead there should be just one button which shows a an icon for calendar view when list view is activated b in the same location an icon for list view when calendar view is activated | 1 |
737,967 | 25,539,589,693 | IssuesEvent | 2022-11-29 14:27:23 | woocommerce/woocommerce-android | https://api.github.com/repos/woocommerce/woocommerce-android | closed | Do not allow to generate variation candidates for variations that exist on Core but not locally. | type: bug priority: high feature: variation list | ### Describe the bug
If a product has more than 25 possible variations, the app will propose variation candidates that would duplicate existing variations.
#### Details
When loading a list of variations, **the app removes all locally stored variations before saving the first page of the newly fetched list**. This results in a false result of variations generation algorithm as its input are locally stored variations. So the flow of events is following:
1. User has a product that has 80 variation candidates
2. User taps on "generate all variations."
3. The app generates 80 variation candidates
4. The app sends a request to create 80 variations
5. The Core creates 80 variations. It sends back to the app those 80 variations.
6. App saves those 80 variations locally.
7. The app refreshes the list of variations (or the user, after some time, opens the list of variations in the app)
8. **The app removes all 80 variations and fetches 25 variations because this is how we sync with the Core state** ([source of the current `trunk`](https://github.com/wordpress-mobile/WordPress-FluxC-Android/blob/trunk/plugins/woocommerce/src/main/kotlin/org/wordpress/android/fluxc/store/WCProductStore.kt#L1132-L1136))
9. User taps on "generate all variations" again because **the app thinks now that it only has 25 variations on this product**. So it will generate 80-25=55 variation candidates which all will be duplicates.
### Screenshots
In the sample below, the number of all possible variation candidates is **84**. After creating those 84 variations, the app shows that we still could create 59 variations which is the difference between all variations and the first page with 25 variations fetched: 84-25=59
https://user-images.githubusercontent.com/5845095/204020789-6ada89ae-3ad7-4325-b7da-c2f9eea154dd.mov
### Expected behavior
The app should not generate variation candidates which would duplicate existing variations.
### Possible approaches to investigate
1. Think of a better way to sync locally stored variations with those on core
2. Drop pagination for variations (so we always fetch the complete list)
| 1.0 | Do not allow to generate variation candidates for variations that exist on Core but not locally. - ### Describe the bug
If a product has more than 25 possible variations, the app will propose variation candidates that would duplicate existing variations.
#### Details
When loading a list of variations, **the app removes all locally stored variations before saving the first page of the newly fetched list**. This results in a false result of variations generation algorithm as its input are locally stored variations. So the flow of events is following:
1. User has a product that has 80 variation candidates
2. User taps on "generate all variations."
3. The app generates 80 variation candidates
4. The app sends a request to create 80 variations
5. The Core creates 80 variations. It sends back to the app those 80 variations.
6. App saves those 80 variations locally.
7. The app refreshes the list of variations (or the user, after some time, opens the list of variations in the app)
8. **The app removes all 80 variations and fetches 25 variations because this is how we sync with the Core state** ([source of the current `trunk`](https://github.com/wordpress-mobile/WordPress-FluxC-Android/blob/trunk/plugins/woocommerce/src/main/kotlin/org/wordpress/android/fluxc/store/WCProductStore.kt#L1132-L1136))
9. User taps on "generate all variations" again because **the app thinks now that it only has 25 variations on this product**. So it will generate 80-25=55 variation candidates which all will be duplicates.
### Screenshots
In the sample below, the number of all possible variation candidates is **84**. After creating those 84 variations, the app shows that we still could create 59 variations which is the difference between all variations and the first page with 25 variations fetched: 84-25=59
https://user-images.githubusercontent.com/5845095/204020789-6ada89ae-3ad7-4325-b7da-c2f9eea154dd.mov
### Expected behavior
The app should not generate variation candidates which would duplicate existing variations.
### Possible approaches to investigate
1. Think of a better way to sync locally stored variations with those on core
2. Drop pagination for variations (so we always fetch the complete list)
| priority | do not allow to generate variation candidates for variations that exist on core but not locally describe the bug if a product has more than possible variations the app will propose variation candidates that would duplicate existing variations details when loading a list of variations the app removes all locally stored variations before saving the first page of the newly fetched list this results in a false result of variations generation algorithm as its input are locally stored variations so the flow of events is following user has a product that has variation candidates user taps on generate all variations the app generates variation candidates the app sends a request to create variations the core creates variations it sends back to the app those variations app saves those variations locally the app refreshes the list of variations or the user after some time opens the list of variations in the app the app removes all variations and fetches variations because this is how we sync with the core state user taps on generate all variations again because the app thinks now that it only has variations on this product so it will generate variation candidates which all will be duplicates screenshots in the sample below the number of all possible variation candidates is after creating those variations the app shows that we still could create variations which is the difference between all variations and the first page with variations fetched expected behavior the app should not generate variation candidates which would duplicate existing variations possible approaches to investigate think of a better way to sync locally stored variations with those on core drop pagination for variations so we always fetch the complete list | 1 |
528,895 | 15,376,572,120 | IssuesEvent | 2021-03-02 16:07:08 | hotosm/tasking-manager | https://api.github.com/repos/hotosm/tasking-manager | closed | Create public organization frontend page | Component: Frontend Difficulty: 5 Priority: High Status: Needs implementation Type: Enhancement | Create a public frontend page for organizations.
URL: `/organisations/<id>/`
**Content:**
- [ ] Projects list
- [ ] Basic organization information
- [ ] Managers list
- [ ] Teams list
It can be something similat to the teams page:

**Permissions:**
- It should be accessible by any user, even unauthenticated ones | 1.0 | Create public organization frontend page - Create a public frontend page for organizations.
URL: `/organisations/<id>/`
**Content:**
- [ ] Projects list
- [ ] Basic organization information
- [ ] Managers list
- [ ] Teams list
It can be something similat to the teams page:

**Permissions:**
- It should be accessible by any user, even unauthenticated ones | priority | create public organization frontend page create a public frontend page for organizations url organisations content projects list basic organization information managers list teams list it can be something similat to the teams page permissions it should be accessible by any user even unauthenticated ones | 1 |
575,828 | 17,063,638,469 | IssuesEvent | 2021-07-07 02:52:13 | Team-uMigrate/umigrate | https://api.github.com/repos/Team-uMigrate/umigrate | closed | App: Create UsersList component | easy high priority | We need to create a reusable component that renders a list of users passed in as props. Follow the designs on figma and use the right components (usually material-ui/react-native-paper). | 1.0 | App: Create UsersList component - We need to create a reusable component that renders a list of users passed in as props. Follow the designs on figma and use the right components (usually material-ui/react-native-paper). | priority | app create userslist component we need to create a reusable component that renders a list of users passed in as props follow the designs on figma and use the right components usually material ui react native paper | 1 |
128,728 | 5,074,566,114 | IssuesEvent | 2016-12-27 15:02:59 | gitomator/gitomator-classroom | https://api.github.com/repos/gitomator/gitomator-classroom | closed | Cache teams | Priority-High | In `make-access-permissions`, when using `-p mixed` (i.e. mix user names and team names in the configuration, and let Gitomator figure out which is which), we currently make an API call (at least one) for each repo, just to figure out whether a name refers to a team or a user.
This results in a terrible behaviour when using a large configuration file (e.g. ~160 repos) - The script seems to be hanging (although it isn't) for a long time, before it actually starts setting permissions. | 1.0 | Cache teams - In `make-access-permissions`, when using `-p mixed` (i.e. mix user names and team names in the configuration, and let Gitomator figure out which is which), we currently make an API call (at least one) for each repo, just to figure out whether a name refers to a team or a user.
This results in a terrible behaviour when using a large configuration file (e.g. ~160 repos) - The script seems to be hanging (although it isn't) for a long time, before it actually starts setting permissions. | priority | cache teams in make access permissions when using p mixed i e mix user names and team names in the configuration and let gitomator figure out which is which we currently make an api call at least one for each repo just to figure out whether a name refers to a team or a user this results in a terrible behaviour when using a large configuration file e g repos the script seems to be hanging although it isn t for a long time before it actually starts setting permissions | 1 |
480,901 | 13,878,000,713 | IssuesEvent | 2020-10-17 07:18:07 | volcano-sh/volcano | https://api.github.com/repos/volcano-sh/volcano | closed | Identify the worker nodes for scheduler. | area/scheduling kind/bug lifecycle/stale priority/high | **Is this a BUG REPORT or FEATURE REQUEST?**:
/kind bug
**Description**:
Open an issue according to https://github.com/volcano-sh/volcano/pull/435 by @suigh ; that's a valid case to me, and we should handle that.
This logic is used to remove the nodes (E.g. master) that cannot be used.
The related logic in precidate will still keep there in case reusing them in the future.
This fix can resolve the issue in following link partially, please see it for more details.
kubernetes-sigs/kube-batch#889
This fix can resolve an issue of DRF. Append the details here:
Let's say there are 2 nodes in cluster, one is master, another is worker. Master has 4 cpu, 8G memory, worker has 8 cpu, 4G memory. There are two jobs with many tasks, a task in the first job asks for 1cpu and 0.5G memory, a task in the second job asks for 0.5cpu and 1G memory.
If the master node is included by DRF, there will be 12cpu and 12G memory, and by the current ordering rule (see jobOrderFn in drf.go:203), the code will:
a. get one task from first job and assign resource.
b. get one task from second job and assign resource.
c. repeat a and b until there are no tasks/resource.
If the master node is not included by DRF, there will be 8 cpu and 4G memory, the code will:
a. get one task from first job and assign resource.
b. get one task from second job and assign resource.
c. get one task from first job and assign resource.
d. get one task from first job and assign resource.
e. get one task from second job and assign resource.
As we can see, from the step d, the result is different, it is impacted if the master node is included, while we cannot use it at all, it should be removed. | 1.0 | Identify the worker nodes for scheduler. - **Is this a BUG REPORT or FEATURE REQUEST?**:
/kind bug
**Description**:
Open an issue according to https://github.com/volcano-sh/volcano/pull/435 by @suigh ; that's a valid case to me, and we should handle that.
This logic is used to remove the nodes (E.g. master) that cannot be used.
The related logic in precidate will still keep there in case reusing them in the future.
This fix can resolve the issue in following link partially, please see it for more details.
kubernetes-sigs/kube-batch#889
This fix can resolve an issue of DRF. Append the details here:
Let's say there are 2 nodes in cluster, one is master, another is worker. Master has 4 cpu, 8G memory, worker has 8 cpu, 4G memory. There are two jobs with many tasks, a task in the first job asks for 1cpu and 0.5G memory, a task in the second job asks for 0.5cpu and 1G memory.
If the master node is included by DRF, there will be 12cpu and 12G memory, and by the current ordering rule (see jobOrderFn in drf.go:203), the code will:
a. get one task from first job and assign resource.
b. get one task from second job and assign resource.
c. repeat a and b until there are no tasks/resource.
If the master node is not included by DRF, there will be 8 cpu and 4G memory, the code will:
a. get one task from first job and assign resource.
b. get one task from second job and assign resource.
c. get one task from first job and assign resource.
d. get one task from first job and assign resource.
e. get one task from second job and assign resource.
As we can see, from the step d, the result is different, it is impacted if the master node is included, while we cannot use it at all, it should be removed. | priority | identify the worker nodes for scheduler is this a bug report or feature request kind bug description open an issue according to by suigh that s a valid case to me and we should handle that this logic is used to remove the nodes e g master that cannot be used the related logic in precidate will still keep there in case reusing them in the future this fix can resolve the issue in following link partially please see it for more details kubernetes sigs kube batch this fix can resolve an issue of drf append the details here let s say there are nodes in cluster one is master another is worker master has cpu memory worker has cpu memory there are two jobs with many tasks a task in the first job asks for and memory a task in the second job asks for and memory if the master node is included by drf there will be and memory and by the current ordering rule see joborderfn in drf go the code will a get one task from first job and assign resource b get one task from second job and assign resource c repeat a and b until there are no tasks resource if the master node is not included by drf there will be cpu and memory the code will a get one task from first job and assign resource b get one task from second job and assign resource c get one task from first job and assign resource d get one task from first job and assign resource e get one task from second job and assign resource as we can see from the step d the result is different it is impacted if the master node is included while we cannot use it at all it should be removed | 1 |
185,668 | 6,726,489,906 | IssuesEvent | 2017-10-17 10:02:43 | ballerinalang/composer | https://api.github.com/repos/ballerinalang/composer | closed | Cannot import a swagger | 0.94-pre-release Priority/Highest Severity/Blocker | Tried to import a swagger. But it fails with the following errors.

| 1.0 | Cannot import a swagger - Tried to import a swagger. But it fails with the following errors.

| priority | cannot import a swagger tried to import a swagger but it fails with the following errors | 1 |
383,814 | 11,362,596,005 | IssuesEvent | 2020-01-26 22:20:56 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | Bug in Instant article's Single option | NEXT UPDATE [Priority: HIGH] bug | - [x] If we disable "Instant articles" from the posts in editor, then it is still showing in the instant article feed
For reference: https://wordpress.org/support/topic/problems-with-instant-articles-feed-filter/
- [x] when clicking on "enable" or "disable" in Instant article Metabox, it is effecting in "Show AMP for Current page" metabox. See for more info: https://github.com/ahmedkaludi/accelerated-mobile-pages/files/3910093/AwesomeScreenshot-2019-12-2-1575273846587.zip
| 1.0 | Bug in Instant article's Single option - - [x] If we disable "Instant articles" from the posts in editor, then it is still showing in the instant article feed
For reference: https://wordpress.org/support/topic/problems-with-instant-articles-feed-filter/
- [x] when clicking on "enable" or "disable" in Instant article Metabox, it is effecting in "Show AMP for Current page" metabox. See for more info: https://github.com/ahmedkaludi/accelerated-mobile-pages/files/3910093/AwesomeScreenshot-2019-12-2-1575273846587.zip
| priority | bug in instant article s single option if we disable instant articles from the posts in editor then it is still showing in the instant article feed for reference when clicking on enable or disable in instant article metabox it is effecting in show amp for current page metabox see for more info | 1 |
671,588 | 22,768,110,981 | IssuesEvent | 2022-07-08 07:20:14 | woocommerce/google-listings-and-ads | https://api.github.com/repos/woocommerce/google-listings-and-ads | closed | WC 6.7 compatibility issue: navigation does not work in certain pages | type: bug priority: high | ### Describe the bug:
This issue arises from my WooCommerce 6.7 compatibility testing in issue https://github.com/woocommerce/google-listings-and-ads/issues/1577.
In certain pages such as Edit Free Listings, clicking on the "<" back navigation button in the plugin does not do anything. Same with clicking on the browser's back button. Clicking on the "Continue" button in the Edit Free Listings Step 1 does not bring the user to Step 2.
In addition, clicking on some other WC menu items below does not do anything too:
- WooCommerce
- WooCommerce > Home
- WooCommerce > Customers
- Analytics
- Analytics > All menu items.
This might be related: the above URLs share the same URL pattern: `/wp-admin/admin.php?page=wc-admin&path=<...>`.
Note that this issue only happens in WC 6.7.0 beta 1 and beta 2. If we roll back to version 6.6, it works as expected. WC version switching is done by using [WooCommerce Beta Tester](https://wordpress.org/plugins/woocommerce-beta-tester/). I tested this with https://github.com/woocommerce/google-listings-and-ads/releases/tag/1.13.6.
📹 See demo video below with my voice annotation:
https://user-images.githubusercontent.com/417342/176746047-e89ccafe-3e82-49bc-b0a8-edcb7ad75b5a.mov
### Steps to reproduce:
1. Use WC 6.7 beta 1 or beta 2.
2. Go to Edit Free Listings page.
3. Click on the back button on the top left corner. Nothing happens.
4. Click on WooCommerce or Analytics pages. Nothing happens.
### Expected behavior:
There should be page navigation when we click on the button or menu items.
### Actual behavior:
Nothing happens when we click on the button or menu items.
| 1.0 | WC 6.7 compatibility issue: navigation does not work in certain pages - ### Describe the bug:
This issue arises from my WooCommerce 6.7 compatibility testing in issue https://github.com/woocommerce/google-listings-and-ads/issues/1577.
In certain pages such as Edit Free Listings, clicking on the "<" back navigation button in the plugin does not do anything. Same with clicking on the browser's back button. Clicking on the "Continue" button in the Edit Free Listings Step 1 does not bring the user to Step 2.
In addition, clicking on some other WC menu items below does not do anything too:
- WooCommerce
- WooCommerce > Home
- WooCommerce > Customers
- Analytics
- Analytics > All menu items.
This might be related: the above URLs share the same URL pattern: `/wp-admin/admin.php?page=wc-admin&path=<...>`.
Note that this issue only happens in WC 6.7.0 beta 1 and beta 2. If we roll back to version 6.6, it works as expected. WC version switching is done by using [WooCommerce Beta Tester](https://wordpress.org/plugins/woocommerce-beta-tester/). I tested this with https://github.com/woocommerce/google-listings-and-ads/releases/tag/1.13.6.
📹 See demo video below with my voice annotation:
https://user-images.githubusercontent.com/417342/176746047-e89ccafe-3e82-49bc-b0a8-edcb7ad75b5a.mov
### Steps to reproduce:
1. Use WC 6.7 beta 1 or beta 2.
2. Go to Edit Free Listings page.
3. Click on the back button on the top left corner. Nothing happens.
4. Click on WooCommerce or Analytics pages. Nothing happens.
### Expected behavior:
There should be page navigation when we click on the button or menu items.
### Actual behavior:
Nothing happens when we click on the button or menu items.
| priority | wc compatibility issue navigation does not work in certain pages describe the bug this issue arises from my woocommerce compatibility testing in issue in certain pages such as edit free listings clicking on the back navigation button in the plugin does not do anything same with clicking on the browser s back button clicking on the continue button in the edit free listings step does not bring the user to step in addition clicking on some other wc menu items below does not do anything too woocommerce woocommerce home woocommerce customers analytics analytics all menu items this might be related the above urls share the same url pattern wp admin admin php page wc admin path note that this issue only happens in wc beta and beta if we roll back to version it works as expected wc version switching is done by using i tested this with 📹 see demo video below with my voice annotation steps to reproduce use wc beta or beta go to edit free listings page click on the back button on the top left corner nothing happens click on woocommerce or analytics pages nothing happens expected behavior there should be page navigation when we click on the button or menu items actual behavior nothing happens when we click on the button or menu items | 1 |
129,984 | 5,107,426,237 | IssuesEvent | 2017-01-05 14:55:09 | wso2/carbon-uuf | https://api.github.com/repos/wso2/carbon-uuf | closed | Define export range instead of specific version or * | Priority: High Type: Bug | In the import-packages, we need to specify the range (generally it is major version range, example: [1.0.0,2.0.0). In [1], we have not specified the range or specified a particular version.
[1] - https://github.com/wso2/carbon-uuf/blob/master/components/uuf-httpconnector-msf4j/pom.xml | 1.0 | Define export range instead of specific version or * - In the import-packages, we need to specify the range (generally it is major version range, example: [1.0.0,2.0.0). In [1], we have not specified the range or specified a particular version.
[1] - https://github.com/wso2/carbon-uuf/blob/master/components/uuf-httpconnector-msf4j/pom.xml | priority | define export range instead of specific version or in the import packages we need to specify the range generally it is major version range example we have not specified the range or specified a particular version | 1 |
3,880 | 2,541,589,780 | IssuesEvent | 2015-01-28 10:06:06 | david415/HoneyBadger | https://api.github.com/repos/david415/HoneyBadger | opened | exit cleanly when control-c is captured | bug highest priority | currently honey_badger does not shutdown nicely... let's make sure the goroutine/channel pipeline closes itself in the correct order. | 1.0 | exit cleanly when control-c is captured - currently honey_badger does not shutdown nicely... let's make sure the goroutine/channel pipeline closes itself in the correct order. | priority | exit cleanly when control c is captured currently honey badger does not shutdown nicely let s make sure the goroutine channel pipeline closes itself in the correct order | 1 |
477,267 | 13,758,809,113 | IssuesEvent | 2020-10-07 01:07:59 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | state_dict for quantized models | high priority module: serialization oncall: quantization triaged | According to https://discuss.pytorch.org/t/nightly-packed-params-no-longer-returned-via-state-dict-method/84588/6, state_dict for quantized model seems to be problematic in 1.6
to repro:
```python
import torch
from torchvision.models.quantization import mobilenet as qmobilenet
def quantize_model(model, inp):
model.fuse_model()
model.qconfig = torch.quantization.get_default_qconfig('fbgemm')
torch.quantization.prepare(model, inplace=True)
model(inp)
torch.quantization.convert(model, inplace=True)
qmodel = qmobilenet.mobilenet_v2(pretrained=True).eval()
pt_inp = torch.rand((1, 3, 224, 224))
quantize_model(qmodel, pt_inp)
script_module = torch.jit.trace(qmodel, pt_inp).eval()
graph = script_module.graph
print(script_module.state_dict())
_, params = torch._C._jit_pass_lower_graph(graph, script_module._c)
```
cc @ezyang @gchanan @zou3519 @mruberry @jerryzh168 @jianyuh @dzhulgakov @raghuramank100 @jamesr66a @vkuzo | 1.0 | state_dict for quantized models - According to https://discuss.pytorch.org/t/nightly-packed-params-no-longer-returned-via-state-dict-method/84588/6, state_dict for quantized model seems to be problematic in 1.6
to repro:
```python
import torch
from torchvision.models.quantization import mobilenet as qmobilenet
def quantize_model(model, inp):
model.fuse_model()
model.qconfig = torch.quantization.get_default_qconfig('fbgemm')
torch.quantization.prepare(model, inplace=True)
model(inp)
torch.quantization.convert(model, inplace=True)
qmodel = qmobilenet.mobilenet_v2(pretrained=True).eval()
pt_inp = torch.rand((1, 3, 224, 224))
quantize_model(qmodel, pt_inp)
script_module = torch.jit.trace(qmodel, pt_inp).eval()
graph = script_module.graph
print(script_module.state_dict())
_, params = torch._C._jit_pass_lower_graph(graph, script_module._c)
```
cc @ezyang @gchanan @zou3519 @mruberry @jerryzh168 @jianyuh @dzhulgakov @raghuramank100 @jamesr66a @vkuzo | priority | state dict for quantized models according to state dict for quantized model seems to be problematic in to repro python import torch from torchvision models quantization import mobilenet as qmobilenet def quantize model model inp model fuse model model qconfig torch quantization get default qconfig fbgemm torch quantization prepare model inplace true model inp torch quantization convert model inplace true qmodel qmobilenet mobilenet pretrained true eval pt inp torch rand quantize model qmodel pt inp script module torch jit trace qmodel pt inp eval graph script module graph print script module state dict params torch c jit pass lower graph graph script module c cc ezyang gchanan mruberry jianyuh dzhulgakov vkuzo | 1 |
796,181 | 28,101,181,554 | IssuesEvent | 2023-03-30 19:38:32 | poissonconsulting/ypr | https://api.github.com/repos/poissonconsulting/ypr | opened | aes_string()` is deprecated | Difficulty: 2 Intermediate Effort: 2 Medium Priority: 2 High | ```
`aes_string()` was deprecated in ggplot2 3.0.0.
i Please use tidy evaluation ideoms with `aes()`
``` | 1.0 | aes_string()` is deprecated - ```
`aes_string()` was deprecated in ggplot2 3.0.0.
i Please use tidy evaluation ideoms with `aes()`
``` | priority | aes string is deprecated aes string was deprecated in i please use tidy evaluation ideoms with aes | 1 |
589,744 | 17,760,603,635 | IssuesEvent | 2021-08-29 16:14:52 | TheKye/Eco-WorldEdit | https://api.github.com/repos/TheKye/Eco-WorldEdit | closed | Incompatible with Elixr Mods - Decorative Pack | Type: Bug Priority: High Status: Fixed/Done | Reported by Hudson#0476 in Discord
```
[14:35:16.215] [42] [Error] [Eco] Newtonsoft.Json.JsonSerializationException: Error converting value "Eco.EM.Windows.PinkGlassCubeBlock, em-windows, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null" to type 'System.Type'. Path 'Blocks[0].BlockType', line 1, position 240.
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureType(JsonReader reader, Object value, CultureInfo culture, JsonContract contract, Type targetType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.ResolvePropertyAndCreatorValues(JsonObjectContract contract, JsonProperty containerProperty, JsonReader reader, Type objectType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObjectUsingCreatorWithParameters(JsonReader reader, JsonObjectContract contract, JsonProperty containerProperty, ObjectConstructor`1 creator, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateList(IList list, JsonReader reader, JsonArrayContract contract, JsonProperty containerProperty, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.ResolvePropertyAndCreatorValues(JsonObjectContract contract, JsonProperty containerProperty, JsonReader reader, Type objectType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObjectUsingCreatorWithParameters(JsonReader reader, JsonObjectContract contract, JsonProperty containerProperty, ObjectConstructor`1 creator, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize[T](JsonReader reader)
at Eco.Mods.WorldEdit.Serializer.WorldEditSerializer.Deserialize[T](Stream stream)
at Eco.Mods.WorldEdit.Serializer.WorldEditSerializer.Deserialize(Stream stream)
at Eco.Mods.WorldEdit.Commands.ImportCommand.Execute(WorldRange selection)
at Eco.Mods.WorldEdit.Commands.WorldEditCommand.Invoke(WorldRange selection)
at Eco.Mods.WorldEdit.Commands.WorldEditCommand.Invoke()
at Eco.Mods.WorldEdit.WorldEditCommands.Import(User user, String fileName)
System.ArgumentException: Could not cast or convert from System.String to System.Type.
at Newtonsoft.Json.Utilities.ConvertUtils.EnsureTypeAssignable(Object value, Type initialType, Type targetType)
at Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(Object initialValue, CultureInfo culture, Type targetType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureType(JsonReader reader, Object value, CultureInfo culture, JsonContract contract, Type targetType)
``` | 1.0 | Incompatible with Elixr Mods - Decorative Pack - Reported by Hudson#0476 in Discord
```
[14:35:16.215] [42] [Error] [Eco] Newtonsoft.Json.JsonSerializationException: Error converting value "Eco.EM.Windows.PinkGlassCubeBlock, em-windows, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null" to type 'System.Type'. Path 'Blocks[0].BlockType', line 1, position 240.
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureType(JsonReader reader, Object value, CultureInfo culture, JsonContract contract, Type targetType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.ResolvePropertyAndCreatorValues(JsonObjectContract contract, JsonProperty containerProperty, JsonReader reader, Type objectType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObjectUsingCreatorWithParameters(JsonReader reader, JsonObjectContract contract, JsonProperty containerProperty, ObjectConstructor`1 creator, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateList(IList list, JsonReader reader, JsonArrayContract contract, JsonProperty containerProperty, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.ResolvePropertyAndCreatorValues(JsonObjectContract contract, JsonProperty containerProperty, JsonReader reader, Type objectType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObjectUsingCreatorWithParameters(JsonReader reader, JsonObjectContract contract, JsonProperty containerProperty, ObjectConstructor`1 creator, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize[T](JsonReader reader)
at Eco.Mods.WorldEdit.Serializer.WorldEditSerializer.Deserialize[T](Stream stream)
at Eco.Mods.WorldEdit.Serializer.WorldEditSerializer.Deserialize(Stream stream)
at Eco.Mods.WorldEdit.Commands.ImportCommand.Execute(WorldRange selection)
at Eco.Mods.WorldEdit.Commands.WorldEditCommand.Invoke(WorldRange selection)
at Eco.Mods.WorldEdit.Commands.WorldEditCommand.Invoke()
at Eco.Mods.WorldEdit.WorldEditCommands.Import(User user, String fileName)
System.ArgumentException: Could not cast or convert from System.String to System.Type.
at Newtonsoft.Json.Utilities.ConvertUtils.EnsureTypeAssignable(Object value, Type initialType, Type targetType)
at Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(Object initialValue, CultureInfo culture, Type targetType)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureType(JsonReader reader, Object value, CultureInfo culture, JsonContract contract, Type targetType)
``` | priority | incompatible with elixr mods decorative pack reported by hudson in discord newtonsoft json jsonserializationexception error converting value eco em windows pinkglasscubeblock em windows version culture neutral publickeytoken null to type system type path blocks blocktype line position at newtonsoft json serialization jsonserializerinternalreader ensuretype jsonreader reader object value cultureinfo culture jsoncontract contract type targettype at newtonsoft json serialization jsonserializerinternalreader createvalueinternal jsonreader reader type objecttype jsoncontract contract jsonproperty member jsoncontainercontract containercontract jsonproperty containermember object existingvalue at newtonsoft json serialization jsonserializerinternalreader resolvepropertyandcreatorvalues jsonobjectcontract contract jsonproperty containerproperty jsonreader reader type objecttype at newtonsoft json serialization jsonserializerinternalreader createobjectusingcreatorwithparameters jsonreader reader jsonobjectcontract contract jsonproperty containerproperty objectconstructor creator string id at newtonsoft json serialization jsonserializerinternalreader createobject jsonreader reader type objecttype jsoncontract contract jsonproperty member jsoncontainercontract containercontract jsonproperty containermember object existingvalue at newtonsoft json serialization jsonserializerinternalreader createvalueinternal jsonreader reader type objecttype jsoncontract contract jsonproperty member jsoncontainercontract containercontract jsonproperty containermember object existingvalue at newtonsoft json serialization jsonserializerinternalreader populatelist ilist list jsonreader reader jsonarraycontract contract jsonproperty containerproperty string id at newtonsoft json serialization jsonserializerinternalreader createlist jsonreader reader type objecttype jsoncontract contract jsonproperty member object existingvalue string id at newtonsoft json serialization jsonserializerinternalreader createvalueinternal jsonreader reader type objecttype jsoncontract contract jsonproperty member jsoncontainercontract containercontract jsonproperty containermember object existingvalue at newtonsoft json serialization jsonserializerinternalreader resolvepropertyandcreatorvalues jsonobjectcontract contract jsonproperty containerproperty jsonreader reader type objecttype at newtonsoft json serialization jsonserializerinternalreader createobjectusingcreatorwithparameters jsonreader reader jsonobjectcontract contract jsonproperty containerproperty objectconstructor creator string id at newtonsoft json serialization jsonserializerinternalreader createobject jsonreader reader type objecttype jsoncontract contract jsonproperty member jsoncontainercontract containercontract jsonproperty containermember object existingvalue at newtonsoft json serialization jsonserializerinternalreader createvalueinternal jsonreader reader type objecttype jsoncontract contract jsonproperty member jsoncontainercontract containercontract jsonproperty containermember object existingvalue at newtonsoft json serialization jsonserializerinternalreader deserialize jsonreader reader type objecttype boolean checkadditionalcontent at newtonsoft json jsonserializer deserializeinternal jsonreader reader type objecttype at newtonsoft json jsonserializer deserialize jsonreader reader type objecttype at newtonsoft json jsonserializer deserialize jsonreader reader at eco mods worldedit serializer worldeditserializer deserialize stream stream at eco mods worldedit serializer worldeditserializer deserialize stream stream at eco mods worldedit commands importcommand execute worldrange selection at eco mods worldedit commands worldeditcommand invoke worldrange selection at eco mods worldedit commands worldeditcommand invoke at eco mods worldedit worldeditcommands import user user string filename system argumentexception could not cast or convert from system string to system type at newtonsoft json utilities convertutils ensuretypeassignable object value type initialtype type targettype at newtonsoft json utilities convertutils convertorcast object initialvalue cultureinfo culture type targettype at newtonsoft json serialization jsonserializerinternalreader ensuretype jsonreader reader object value cultureinfo culture jsoncontract contract type targettype | 1 |
257,959 | 8,149,216,764 | IssuesEvent | 2018-08-22 08:56:25 | gama-platform/gama | https://api.github.com/repos/gama-platform/gama | opened | Temporary blocking of the opening of OpenGL displays when bottom layout is showed, mouse is in the display and more than 1 displays are shown | > Bug Affects Usability Concerns Interface Display OpenGL OS macOS Priority High Version Git | **Describe the bug**
A long title for a very strange bug. When 2 or more OpenGL displays are defined, if the preference for setting the bottom layout is on, the opening of the 2nd one will be blocked (with a stroboscopic effect mixing the image of the first and second one) if the mouse is in the display, until the mouse is moved.
**To Reproduce**
Steps to reproduce the behavior:
1. Open a model with 2 OpenGL displays
2. Set the preference Displays>Presentation>Show bottom overlay to true
3. Open the experiment, with the mouse in the display view
4. See the beautiful stroboscopic effect and move the mouse to eliminate it
**Expected behavior**
No blocking and no effect, of course.
**Screenshots**
Difficult to show on a screenshot.
**Desktop (please complete the following information):**
- OS: macOS High Sierra
- PC Model: MBP 15" 2017
- GAMA version: git
- Java version: 1.8
- Graphics cards / Display system: [can be useful for displays, OpenGL problems]
**Additional context**
Add any other context about the problem here.
| 1.0 | Temporary blocking of the opening of OpenGL displays when bottom layout is showed, mouse is in the display and more than 1 displays are shown - **Describe the bug**
A long title for a very strange bug. When 2 or more OpenGL displays are defined, if the preference for setting the bottom layout is on, the opening of the 2nd one will be blocked (with a stroboscopic effect mixing the image of the first and second one) if the mouse is in the display, until the mouse is moved.
**To Reproduce**
Steps to reproduce the behavior:
1. Open a model with 2 OpenGL displays
2. Set the preference Displays>Presentation>Show bottom overlay to true
3. Open the experiment, with the mouse in the display view
4. See the beautiful stroboscopic effect and move the mouse to eliminate it
**Expected behavior**
No blocking and no effect, of course.
**Screenshots**
Difficult to show on a screenshot.
**Desktop (please complete the following information):**
- OS: macOS High Sierra
- PC Model: MBP 15" 2017
- GAMA version: git
- Java version: 1.8
- Graphics cards / Display system: [can be useful for displays, OpenGL problems]
**Additional context**
Add any other context about the problem here.
| priority | temporary blocking of the opening of opengl displays when bottom layout is showed mouse is in the display and more than displays are shown describe the bug a long title for a very strange bug when or more opengl displays are defined if the preference for setting the bottom layout is on the opening of the one will be blocked with a stroboscopic effect mixing the image of the first and second one if the mouse is in the display until the mouse is moved to reproduce steps to reproduce the behavior open a model with opengl displays set the preference displays presentation show bottom overlay to true open the experiment with the mouse in the display view see the beautiful stroboscopic effect and move the mouse to eliminate it expected behavior no blocking and no effect of course screenshots difficult to show on a screenshot desktop please complete the following information os macos high sierra pc model mbp gama version git java version graphics cards display system additional context add any other context about the problem here | 1 |
326,997 | 9,963,285,924 | IssuesEvent | 2019-07-07 22:05:04 | Steven-Wagner/Tender-api | https://api.github.com/repos/Steven-Wagner/Tender-api | opened | Create Purchased Products Table | Priority: High | Purcahsed Products Table should include these columns:
- [ ] id
- [ ] FK - products.id
- [ ] FK - users.id (purchaser)
- [ ] Timestamp
- [ ] Bonus | 1.0 | Create Purchased Products Table - Purcahsed Products Table should include these columns:
- [ ] id
- [ ] FK - products.id
- [ ] FK - users.id (purchaser)
- [ ] Timestamp
- [ ] Bonus | priority | create purchased products table purcahsed products table should include these columns id fk products id fk users id purchaser timestamp bonus | 1 |
235,561 | 7,740,280,245 | IssuesEvent | 2018-05-28 20:38:32 | nimona/go-nimona | https://api.github.com/repos/nimona/go-nimona | closed | Block exchange should announce its blocks on the DHT | Priority: High Status: Available Type: Enhancement | * [ ] When BLX starts up it should announce all blocks on the DHT
* [ ] When adding a new block on the BLX it should also announce it on the DHT | 1.0 | Block exchange should announce its blocks on the DHT - * [ ] When BLX starts up it should announce all blocks on the DHT
* [ ] When adding a new block on the BLX it should also announce it on the DHT | priority | block exchange should announce its blocks on the dht when blx starts up it should announce all blocks on the dht when adding a new block on the blx it should also announce it on the dht | 1 |
54,412 | 3,067,608,782 | IssuesEvent | 2015-08-18 11:31:58 | UnifiedViews/Core | https://api.github.com/repos/UnifiedViews/Core | closed | Delete pipeline executions - wrong counting of number of deleted records | priority: High resolution: fixed severity: bug status: resolved | As the pipeline executions are pruned (Settings ->Managed debug and working data -> Delete ), the number of deleted executions does not reflect the reality. In my case I did:
1) List pipeline executions:
<img width="1643" alt="screen shot 2015-08-14 at 18 07 01" src="https://cloud.githubusercontent.com/assets/3014917/9278218/9e3e65b2-42af-11e5-8d47-d9de14196ba5.png">
2) Running pruning of executions (take not of "number of records deleted"):
<img width="411" alt="screen shot 2015-08-14 at 18 07 17" src="https://cloud.githubusercontent.com/assets/3014917/9278229/b28933d0-42af-11e5-8f3d-96aeecec9d61.png">
3) Listing pipeline executions again
<img width="1646" alt="screen shot 2015-08-14 at 18 07 24" src="https://cloud.githubusercontent.com/assets/3014917/9278231/bbc43c10-42af-11e5-8827-a43537ef5f90.png">
So only one execution was deleted, but in step 2) it tells me that 3 records was deleted
| 1.0 | Delete pipeline executions - wrong counting of number of deleted records - As the pipeline executions are pruned (Settings ->Managed debug and working data -> Delete ), the number of deleted executions does not reflect the reality. In my case I did:
1) List pipeline executions:
<img width="1643" alt="screen shot 2015-08-14 at 18 07 01" src="https://cloud.githubusercontent.com/assets/3014917/9278218/9e3e65b2-42af-11e5-8d47-d9de14196ba5.png">
2) Running pruning of executions (take not of "number of records deleted"):
<img width="411" alt="screen shot 2015-08-14 at 18 07 17" src="https://cloud.githubusercontent.com/assets/3014917/9278229/b28933d0-42af-11e5-8f3d-96aeecec9d61.png">
3) Listing pipeline executions again
<img width="1646" alt="screen shot 2015-08-14 at 18 07 24" src="https://cloud.githubusercontent.com/assets/3014917/9278231/bbc43c10-42af-11e5-8827-a43537ef5f90.png">
So only one execution was deleted, but in step 2) it tells me that 3 records was deleted
| priority | delete pipeline executions wrong counting of number of deleted records as the pipeline executions are pruned settings managed debug and working data delete the number of deleted executions does not reflect the reality in my case i did list pipeline executions img width alt screen shot at src running pruning of executions take not of number of records deleted img width alt screen shot at src listing pipeline executions again img width alt screen shot at src so only one execution was deleted but in step it tells me that records was deleted | 1 |
7,009 | 2,596,358,630 | IssuesEvent | 2015-02-20 20:07:55 | tsgrp/OpenAnnotate | https://api.github.com/repos/tsgrp/OpenAnnotate | closed | Icons need to be updated for Redact mode and Annotation Mode | enhancement High Priority Redaction | See image below, but since the app is now used for both, we need to be more careful with our wording

| 1.0 | Icons need to be updated for Redact mode and Annotation Mode - See image below, but since the app is now used for both, we need to be more careful with our wording

| priority | icons need to be updated for redact mode and annotation mode see image below but since the app is now used for both we need to be more careful with our wording | 1 |
536,137 | 15,704,779,338 | IssuesEvent | 2021-03-26 15:23:06 | Signbank/Global-signbank | https://api.github.com/repos/Signbank/Global-signbank | opened | Creating gloss images is broken | bug high priority | Both the automatic generation of gloss images, and the button for "Create Citation Form Image from Current Video" (in the edit mode) seem to be broken.
(For the new dataset IS_WFD2007, I saw that on the server, there was not yet a folder under glossimage/. Creating that folder didn't solve the issue. However, it doesn't work for dataset ISL either, and for that dataset the folder had already been generated.) | 1.0 | Creating gloss images is broken - Both the automatic generation of gloss images, and the button for "Create Citation Form Image from Current Video" (in the edit mode) seem to be broken.
(For the new dataset IS_WFD2007, I saw that on the server, there was not yet a folder under glossimage/. Creating that folder didn't solve the issue. However, it doesn't work for dataset ISL either, and for that dataset the folder had already been generated.) | priority | creating gloss images is broken both the automatic generation of gloss images and the button for create citation form image from current video in the edit mode seem to be broken for the new dataset is i saw that on the server there was not yet a folder under glossimage creating that folder didn t solve the issue however it doesn t work for dataset isl either and for that dataset the folder had already been generated | 1 |
163,636 | 6,202,842,735 | IssuesEvent | 2017-07-06 10:12:19 | kedgeproject/kedge | https://api.github.com/repos/kedgeproject/kedge | closed | Empty deployment gets generated when any invalid yaml data is passed | kind/bug priority/high | The following happens:
```console
$ cat /tmp/empty
batman:
$ kedge generate -f /tmp/empty
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: ""
spec:
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: ""
spec:
containers: null
status: {}
```
An error should have been thrown instead! | 1.0 | Empty deployment gets generated when any invalid yaml data is passed - The following happens:
```console
$ cat /tmp/empty
batman:
$ kedge generate -f /tmp/empty
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: ""
spec:
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: ""
spec:
containers: null
status: {}
```
An error should have been thrown instead! | priority | empty deployment gets generated when any invalid yaml data is passed the following happens console cat tmp empty batman kedge generate f tmp empty apiversion extensions kind deployment metadata creationtimestamp null labels app spec strategy template metadata creationtimestamp null labels app spec containers null status an error should have been thrown instead | 1 |
283,743 | 8,723,147,885 | IssuesEvent | 2018-12-09 19:12:32 | semperfiwebdesign/all-in-one-seo-pack | https://api.github.com/repos/semperfiwebdesign/all-in-one-seo-pack | closed | sitemap 404s on nginx | Initial Review Priority | High | On Local by Flywheel, create a new site with nginx, and the sitemap is a 404. The xsl file and rss sitemap load.
| 1.0 | sitemap 404s on nginx - On Local by Flywheel, create a new site with nginx, and the sitemap is a 404. The xsl file and rss sitemap load.
| priority | sitemap on nginx on local by flywheel create a new site with nginx and the sitemap is a the xsl file and rss sitemap load | 1 |
188,013 | 6,767,387,159 | IssuesEvent | 2017-10-26 03:00:08 | CS2103AUG2017-T14-B1/main | https://api.github.com/repos/CS2103AUG2017-T14-B1/main | closed | add more than one instance for Phone number | priority.high type.enhancement | As a user, I want to add additional phone numbers apart from the primary phone number.
| 1.0 | add more than one instance for Phone number - As a user, I want to add additional phone numbers apart from the primary phone number.
| priority | add more than one instance for phone number as a user i want to add additional phone numbers apart from the primary phone number | 1 |
405,118 | 11,867,847,433 | IssuesEvent | 2020-03-26 07:59:43 | PopupMaker/Popup-Maker | https://api.github.com/repos/PopupMaker/Popup-Maker | closed | WP 5.4 causes menu editor fields in nav menu editor to render twice. | component-admin priority-high scope-reliability type-bug type-regression | WP core is finally adding the hook used for rendering custom fields in the nav menu editor, but this causes a modern custom walker to run the action a second time rendering duplicate fields.
Possible solutions:
* Only register admin nav menu walker if WP version is <5.4
* Bailout early if fields have already been rendered using a static variable or property. | 1.0 | WP 5.4 causes menu editor fields in nav menu editor to render twice. - WP core is finally adding the hook used for rendering custom fields in the nav menu editor, but this causes a modern custom walker to run the action a second time rendering duplicate fields.
Possible solutions:
* Only register admin nav menu walker if WP version is <5.4
* Bailout early if fields have already been rendered using a static variable or property. | priority | wp causes menu editor fields in nav menu editor to render twice wp core is finally adding the hook used for rendering custom fields in the nav menu editor but this causes a modern custom walker to run the action a second time rendering duplicate fields possible solutions only register admin nav menu walker if wp version is bailout early if fields have already been rendered using a static variable or property | 1 |
484,482 | 13,940,468,588 | IssuesEvent | 2020-10-22 17:57:10 | OpenLiberty/ci.maven | https://api.github.com/repos/OpenLiberty/ci.maven | closed | Handle Dockerfile copying config folders | devMode devModeContainers high priority | If a Dockerfile copies an entire folder of contents into the image's config dir, dev mode needs to ensure that changes to those files are reflected in the container (ideally without having to restart the container).
This is an extension of https://github.com/OpenLiberty/ci.maven/issues/845 which handled individual config files only. | 1.0 | Handle Dockerfile copying config folders - If a Dockerfile copies an entire folder of contents into the image's config dir, dev mode needs to ensure that changes to those files are reflected in the container (ideally without having to restart the container).
This is an extension of https://github.com/OpenLiberty/ci.maven/issues/845 which handled individual config files only. | priority | handle dockerfile copying config folders if a dockerfile copies an entire folder of contents into the image s config dir dev mode needs to ensure that changes to those files are reflected in the container ideally without having to restart the container this is an extension of which handled individual config files only | 1 |
515,899 | 14,971,374,966 | IssuesEvent | 2021-01-27 21:03:04 | CMSCompOps/WmAgentScripts | https://api.github.com/repos/CMSCompOps/WmAgentScripts | closed | Extending the sitewhitelist with CERN HLT without checking the pileup existence at CERN | BUG Priority: High | **Impact of the bug**
Prod jobs and workflows running at HLT
**Describe the bug**
This piece of code [1] extends the sitelist of workflows by adding CERN HLT after some checks. Note that there is no check for the PU existence at CERN. Workflows whose PU is not at CERN are going to fail in that case.
[1] https://github.com/CMSCompOps/WmAgentScripts/blob/master/Unified/equalizor.py#L957-L980
**How to reproduce it**
Check this equalizor log:
```
Adding /haozturk_task_EXO-RunIIFall18GS-03946__v1_T_210127_144447_1838/EXO-RunIIFall18GS-03946_0 in resizing, calculating 10 < 1102 < 1837 MB, using 3 to 15 cores
Performance tuning of task EXO-RunIIFall18GS-03946_0
None MB base memory at 8 core
None MB per thread
None min assuming runing 1-thread
None KBs read estimated per thread
adding the HLT in whitelist of /haozturk_task_EXO-RunIIFall18GS-03946__v1_T_210127_144447_1838/EXO-RunIIFall18GS-03946_0 to 0 for 60000
```
**Expected behavior**
Workflows should be assigned to CERN HLT if the PU is at CERN.
**Additional context and error message**
@z4027163 FYI
| 1.0 | Extending the sitewhitelist with CERN HLT without checking the pileup existence at CERN - **Impact of the bug**
Prod jobs and workflows running at HLT
**Describe the bug**
This piece of code [1] extends the sitelist of workflows by adding CERN HLT after some checks. Note that there is no check for the PU existence at CERN. Workflows whose PU is not at CERN are going to fail in that case.
[1] https://github.com/CMSCompOps/WmAgentScripts/blob/master/Unified/equalizor.py#L957-L980
**How to reproduce it**
Check this equalizor log:
```
Adding /haozturk_task_EXO-RunIIFall18GS-03946__v1_T_210127_144447_1838/EXO-RunIIFall18GS-03946_0 in resizing, calculating 10 < 1102 < 1837 MB, using 3 to 15 cores
Performance tuning of task EXO-RunIIFall18GS-03946_0
None MB base memory at 8 core
None MB per thread
None min assuming runing 1-thread
None KBs read estimated per thread
adding the HLT in whitelist of /haozturk_task_EXO-RunIIFall18GS-03946__v1_T_210127_144447_1838/EXO-RunIIFall18GS-03946_0 to 0 for 60000
```
**Expected behavior**
Workflows should be assigned to CERN HLT if the PU is at CERN.
**Additional context and error message**
@z4027163 FYI
| priority | extending the sitewhitelist with cern hlt without checking the pileup existence at cern impact of the bug prod jobs and workflows running at hlt describe the bug this piece of code extends the sitelist of workflows by adding cern hlt after some checks note that there is no check for the pu existence at cern workflows whose pu is not at cern are going to fail in that case how to reproduce it check this equalizor log adding haozturk task exo t exo in resizing calculating mb using to cores performance tuning of task exo none mb base memory at core none mb per thread none min assuming runing thread none kbs read estimated per thread adding the hlt in whitelist of haozturk task exo t exo to for expected behavior workflows should be assigned to cern hlt if the pu is at cern additional context and error message fyi | 1 |
122,647 | 4,838,519,999 | IssuesEvent | 2016-11-09 03:55:37 | a8cteam51/smittenkitchen | https://api.github.com/repos/a8cteam51/smittenkitchen | closed | email post function -- missing message box + extraneous field | high-priority | We have two concerns about the email post function (in the collection of DO MORE: icons):
1. Previously, as in my last design, it had a message box, which was always used for context. (I.e. "Here's the recipe I was telling you about last night!" etc.) Would love to get that back.
2. There is a second box below the sender email field and it's not clear what it's for -- our best guess is that it's for another email address? Not sure. It's not needed for anything, from what we can see.
Thank you.
| 1.0 | email post function -- missing message box + extraneous field - We have two concerns about the email post function (in the collection of DO MORE: icons):
1. Previously, as in my last design, it had a message box, which was always used for context. (I.e. "Here's the recipe I was telling you about last night!" etc.) Would love to get that back.
2. There is a second box below the sender email field and it's not clear what it's for -- our best guess is that it's for another email address? Not sure. It's not needed for anything, from what we can see.
Thank you.
| priority | email post function missing message box extraneous field we have two concerns about the email post function in the collection of do more icons previously as in my last design it had a message box which was always used for context i e here s the recipe i was telling you about last night etc would love to get that back there is a second box below the sender email field and it s not clear what it s for our best guess is that it s for another email address not sure it s not needed for anything from what we can see thank you | 1 |
168,820 | 6,387,291,961 | IssuesEvent | 2017-08-03 13:22:26 | hrecht/censusapi | https://api.github.com/repos/hrecht/censusapi | closed | Fix example broke from API update | bug high priority | Getting a build error on this example:
`varsbds<- listCensusMetadata(name="timeseries/bds/firms", type = "v")`
Likely due to new API metadata features(s) that went live recently https://www.census.gov/data/developers/updates.html | 1.0 | Fix example broke from API update - Getting a build error on this example:
`varsbds<- listCensusMetadata(name="timeseries/bds/firms", type = "v")`
Likely due to new API metadata features(s) that went live recently https://www.census.gov/data/developers/updates.html | priority | fix example broke from api update getting a build error on this example varsbds listcensusmetadata name timeseries bds firms type v likely due to new api metadata features s that went live recently | 1 |
235,905 | 7,744,075,012 | IssuesEvent | 2018-05-29 14:30:41 | Gloirin/m2gTest | https://api.github.com/repos/Gloirin/m2gTest | closed | 0001042:
improve preferences dialog | Tinebase JavaScript bug high priority | **Reported by pschuele on 8 May 2009 10:46**
- update registry on save
- use listeneres/events for reload of mainscreen
- fix dialog if ext window
| 1.0 | 0001042:
improve preferences dialog - **Reported by pschuele on 8 May 2009 10:46**
- update registry on save
- use listeneres/events for reload of mainscreen
- fix dialog if ext window
| priority | improve preferences dialog reported by pschuele on may update registry on save use listeneres events for reload of mainscreen fix dialog if ext window | 1 |
544,132 | 15,890,012,824 | IssuesEvent | 2021-04-10 13:52:54 | AY2021S2-CS2103T-T13-4/tp | https://api.github.com/repos/AY2021S2-CS2103T-T13-4/tp | closed | As a user, I want to view all properties and appointments side by side | priority.High | so that I can simultaneously view related property and appointment data . | 1.0 | As a user, I want to view all properties and appointments side by side - so that I can simultaneously view related property and appointment data . | priority | as a user i want to view all properties and appointments side by side so that i can simultaneously view related property and appointment data | 1 |
505,870 | 14,653,765,378 | IssuesEvent | 2020-12-28 06:55:57 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.forbes.com - site is not usable | browser-fenix engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important | <!-- @browser: Firefox Mobile 85.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:85.0) Gecko/85.0 Firefox/85.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/64318 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.forbes.com/sites/gordonkelly/2020/12/22/apple-iphone-13-pro-max-smaller-notch-new-cameras-iphone-12-pro-max-upgrade/amp/
**Browser / Version**: Firefox Mobile 85.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: Page not loading correctly
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/bd3af172-efd2-4e82-b502-e815e2e30a28.jpeg">
</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: 20201220193140</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/12/c33b9fd8-e7c0-4001-aa6b-6578c51571c7)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.forbes.com - site is not usable - <!-- @browser: Firefox Mobile 85.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:85.0) Gecko/85.0 Firefox/85.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/64318 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.forbes.com/sites/gordonkelly/2020/12/22/apple-iphone-13-pro-max-smaller-notch-new-cameras-iphone-12-pro-max-upgrade/amp/
**Browser / Version**: Firefox Mobile 85.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: Page not loading correctly
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/bd3af172-efd2-4e82-b502-e815e2e30a28.jpeg">
</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: 20201220193140</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/12/c33b9fd8-e7c0-4001-aa6b-6578c51571c7)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | site is not usable url browser version firefox mobile operating system android tested another browser no problem type site is not usable description page not loading correctly steps to reproduce 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 beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
567,218 | 16,850,591,752 | IssuesEvent | 2021-06-20 12:29:48 | huridocs/uwazi | https://api.github.com/repos/huridocs/uwazi | opened | Uncaught TypeError: e.selectionRectangles[0] is undefined | Bug Priority: High | When adding entries to TOC, some combinations of document/segment toss the error `Uncaught TypeError: e.selectionRectangles[0] is undefined`.
Ie. in the attached sample document, try to add the title "0.1 Representing word-meaning in vector spaces".
[paper3.pdf](https://github.com/huridocs/uwazi/files/6682279/paper3.pdf)
| 1.0 | Uncaught TypeError: e.selectionRectangles[0] is undefined - When adding entries to TOC, some combinations of document/segment toss the error `Uncaught TypeError: e.selectionRectangles[0] is undefined`.
Ie. in the attached sample document, try to add the title "0.1 Representing word-meaning in vector spaces".
[paper3.pdf](https://github.com/huridocs/uwazi/files/6682279/paper3.pdf)
| priority | uncaught typeerror e selectionrectangles is undefined when adding entries to toc some combinations of document segment toss the error uncaught typeerror e selectionrectangles is undefined ie in the attached sample document try to add the title representing word meaning in vector spaces | 1 |
369,732 | 10,917,009,930 | IssuesEvent | 2019-11-21 14:25:51 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | Width of the recent posts and related posts thumbnail image should be same | Urgent [Priority: HIGH] bug | Screenshot: https://monosnap.com/file/AKGQ8Zo5Jcx9xT2sRbChsN4qIWaJlI
Width of the recent posts featured image thumbnail image and related image are not same when the user is selecting Single post design two.
Screenshot: https://monosnap.com/file/EAJIyu9uibEdwrvUUGCTpL0FF3mPNg
Ref: https://secure.helpscout.net/conversation/950852344/81430?folderId=1060554 | 1.0 | Width of the recent posts and related posts thumbnail image should be same - Screenshot: https://monosnap.com/file/AKGQ8Zo5Jcx9xT2sRbChsN4qIWaJlI
Width of the recent posts featured image thumbnail image and related image are not same when the user is selecting Single post design two.
Screenshot: https://monosnap.com/file/EAJIyu9uibEdwrvUUGCTpL0FF3mPNg
Ref: https://secure.helpscout.net/conversation/950852344/81430?folderId=1060554 | priority | width of the recent posts and related posts thumbnail image should be same screenshot width of the recent posts featured image thumbnail image and related image are not same when the user is selecting single post design two screenshot ref | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.