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 957 | labels stringlengths 4 795 | body stringlengths 1 259k | index stringclasses 12
values | text_combine stringlengths 96 259k | label stringclasses 2
values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
621,725 | 19,595,442,019 | IssuesEvent | 2022-01-05 17:17:22 | NOAA-GSL/VxLegacyIngest | https://api.github.com/repos/NOAA-GSL/VxLegacyIngest | opened | Add new global verification run to our RAOB and surface suites | Priority: Medium | Judy has requested a new global run to be added to our RAOB and surface verification. These runs are present on Hera in the following directory:
/home/rtfim/UFS-CAMsuite_dev1/FV3GFSrun/rt_ufscam_l127_dev1
She would like this model to be named "FV3_GSL_L127_dev1". | 1.0 | Add new global verification run to our RAOB and surface suites - Judy has requested a new global run to be added to our RAOB and surface verification. These runs are present on Hera in the following directory:
/home/rtfim/UFS-CAMsuite_dev1/FV3GFSrun/rt_ufscam_l127_dev1
She would like this model to be named "FV3_GSL_L127_dev1". | priority | add new global verification run to our raob and surface suites judy has requested a new global run to be added to our raob and surface verification these runs are present on hera in the following directory home rtfim ufs camsuite rt ufscam she would like this model to be named gsl | 1 |
755,009 | 26,412,663,653 | IssuesEvent | 2023-01-13 13:33:52 | renovatebot/renovate | https://api.github.com/repos/renovatebot/renovate | closed | Composer private repositories not working | type:bug priority-3-medium manager:composer status:in-progress | <!--
PLEASE DO NOT REPORT ANY SECURITY CONCERNS THIS WAY
Email renovate-disclosure@whitesourcesoftware.com instead.
-->
**How are you running Renovate?**
- [x] WhiteSource Renovate hosted app on github.com
- [ ] Self hosted
If using the hosted app, please skip to the next section.
Otherwise, if self-hosted, please complete the following:
Please select which platform you are using:
- [ ] Azure DevOps (dev.azure.com)
- [ ] Azure DevOps Server
- [ ] Bitbucket Cloud (bitbucket.org)
- [ ] Bitbucket Server
- [ ] Gitea
- [ ] github.com
- [ ] GitHub Enterprise Server
- [ ] gitlab.com
- [ ] GitLab self-hosted
Renovate version: ...
As the discussion (https://github.com/renovatebot/renovate/discussions/10560) has dried out, I'll create an issue:
I have now simplified this experiment a lot. I now have 3 repositories:
- devgeniem/renovate-test, the repository that I want to get updated by Renovate
- devgeniem/devops-renovate-config, the repository that holds Renovate configs that are extended in renovate-test
- devgeniem/renovate-private-repository-test, a dummy private repository
My Renovate config looks like this:
**devgeniem/renovate-test/.github/renovate.json**:
```
{
"extends": ["github>devgeniem/devops-renovate-config:default", "github>devgeniem/devops-renovate-config:wordpress"]
}
```
**devgeniem/devops-renovate-config/default.json**:
```
{
"enabled": false
}
```
**devgeniem/devops-renovate-config/wordpress.json**:
```
{
"enabled": true,
"enabledManagers": [
"composer"
],
"packageRules": [
{
"excludePackagePatterns": [
"johnpbloch/wordpress"
],
"enabled": false,
"matchPackagePatterns": [
"*"
]
}
]
}
```
And my **devgeniem/renovate-test/composer.json** looks like this:
```
{
"name": "devgeniem/renovate-test",
"type": "project",
"license": "MIT",
"config": {
"preferred-install": "dist"
},
"repositories": {
"devgeniem/renovate-private-repository-test": {
"type": "git",
"url": "git@github.com:devgeniem/renovate-private-repository-test.git"
}
},
"require": {
"devgeniem/renovate-private-repository-test": "^1.0",
"johnpbloch/wordpress": "5.4.2"
}
}
```
And my **devgeniem/renovate-test/composer.json** looks like this:
```
{
"name": "devgeniem/renovate-private-repository-test",
"require": {}
}
```
I have added three repositories to Renovate:
<img width="503" alt="Screenshot 2021-06-30 at 9 02 55" src="https://user-images.githubusercontent.com/22659221/123909684-06eb6c80-d982-11eb-905f-19bdc87578ef.png">
And still I receive the same error:
<img width="859" alt="Screenshot 2021-06-30 at 9 03 50" src="https://user-images.githubusercontent.com/22659221/123909744-208cb400-d982-11eb-9873-c8d1561cf546.png">
Renovate does not grant access of a private repository to composer even if said repository has been added to Renovate.
...
**Relevant debug logs**
<!--
Try not to raise a bug report unless you've looked at the logs first.
If you're running self-hosted, run with `LOG_LEVEL=debug` in your environment variables and search for whatever dependency/branch/PR that is causing the problem. If you are using the Renovate App, log into https://app.renovatebot.com/dashboard and locate the correct job log for when the problem occurred (e.g. when the PR was created).
Paste the *relevant* logs here, not the entire thing and not just a link to the dashboard (others do not have permissions to view them).
-->
<details><summary>Click me to see logs</summary>
```
Copy/paste any log here, between the starting and ending backticks
```
</details>
**Have you created a minimal reproduction repository?**
Please read the [minimal reproductions documentation](https://github.com/renovatebot/renovate/blob/main/docs/development/minimal-reproductions.md) to learn how to make a good minimal reproduction repository.
- [ ] I have provided a minimal reproduction repository
- [ ] I don't have time for that, but it happens in a public repository I have linked to
- [x] I don't have time for that, and cannot share my private repository
- [ ] The nature of this bug means it's impossible to reproduce publicly
**Additional context**
<!-- Add any other context about the problem here, including your own debugging or ideas on what went wrong. -->
...
| 1.0 | Composer private repositories not working - <!--
PLEASE DO NOT REPORT ANY SECURITY CONCERNS THIS WAY
Email renovate-disclosure@whitesourcesoftware.com instead.
-->
**How are you running Renovate?**
- [x] WhiteSource Renovate hosted app on github.com
- [ ] Self hosted
If using the hosted app, please skip to the next section.
Otherwise, if self-hosted, please complete the following:
Please select which platform you are using:
- [ ] Azure DevOps (dev.azure.com)
- [ ] Azure DevOps Server
- [ ] Bitbucket Cloud (bitbucket.org)
- [ ] Bitbucket Server
- [ ] Gitea
- [ ] github.com
- [ ] GitHub Enterprise Server
- [ ] gitlab.com
- [ ] GitLab self-hosted
Renovate version: ...
As the discussion (https://github.com/renovatebot/renovate/discussions/10560) has dried out, I'll create an issue:
I have now simplified this experiment a lot. I now have 3 repositories:
- devgeniem/renovate-test, the repository that I want to get updated by Renovate
- devgeniem/devops-renovate-config, the repository that holds Renovate configs that are extended in renovate-test
- devgeniem/renovate-private-repository-test, a dummy private repository
My Renovate config looks like this:
**devgeniem/renovate-test/.github/renovate.json**:
```
{
"extends": ["github>devgeniem/devops-renovate-config:default", "github>devgeniem/devops-renovate-config:wordpress"]
}
```
**devgeniem/devops-renovate-config/default.json**:
```
{
"enabled": false
}
```
**devgeniem/devops-renovate-config/wordpress.json**:
```
{
"enabled": true,
"enabledManagers": [
"composer"
],
"packageRules": [
{
"excludePackagePatterns": [
"johnpbloch/wordpress"
],
"enabled": false,
"matchPackagePatterns": [
"*"
]
}
]
}
```
And my **devgeniem/renovate-test/composer.json** looks like this:
```
{
"name": "devgeniem/renovate-test",
"type": "project",
"license": "MIT",
"config": {
"preferred-install": "dist"
},
"repositories": {
"devgeniem/renovate-private-repository-test": {
"type": "git",
"url": "git@github.com:devgeniem/renovate-private-repository-test.git"
}
},
"require": {
"devgeniem/renovate-private-repository-test": "^1.0",
"johnpbloch/wordpress": "5.4.2"
}
}
```
And my **devgeniem/renovate-test/composer.json** looks like this:
```
{
"name": "devgeniem/renovate-private-repository-test",
"require": {}
}
```
I have added three repositories to Renovate:
<img width="503" alt="Screenshot 2021-06-30 at 9 02 55" src="https://user-images.githubusercontent.com/22659221/123909684-06eb6c80-d982-11eb-905f-19bdc87578ef.png">
And still I receive the same error:
<img width="859" alt="Screenshot 2021-06-30 at 9 03 50" src="https://user-images.githubusercontent.com/22659221/123909744-208cb400-d982-11eb-9873-c8d1561cf546.png">
Renovate does not grant access of a private repository to composer even if said repository has been added to Renovate.
...
**Relevant debug logs**
<!--
Try not to raise a bug report unless you've looked at the logs first.
If you're running self-hosted, run with `LOG_LEVEL=debug` in your environment variables and search for whatever dependency/branch/PR that is causing the problem. If you are using the Renovate App, log into https://app.renovatebot.com/dashboard and locate the correct job log for when the problem occurred (e.g. when the PR was created).
Paste the *relevant* logs here, not the entire thing and not just a link to the dashboard (others do not have permissions to view them).
-->
<details><summary>Click me to see logs</summary>
```
Copy/paste any log here, between the starting and ending backticks
```
</details>
**Have you created a minimal reproduction repository?**
Please read the [minimal reproductions documentation](https://github.com/renovatebot/renovate/blob/main/docs/development/minimal-reproductions.md) to learn how to make a good minimal reproduction repository.
- [ ] I have provided a minimal reproduction repository
- [ ] I don't have time for that, but it happens in a public repository I have linked to
- [x] I don't have time for that, and cannot share my private repository
- [ ] The nature of this bug means it's impossible to reproduce publicly
**Additional context**
<!-- Add any other context about the problem here, including your own debugging or ideas on what went wrong. -->
...
| priority | composer private repositories not working please do not report any security concerns this way email renovate disclosure whitesourcesoftware com instead how are you running renovate whitesource renovate hosted app on github com self hosted if using the hosted app please skip to the next section otherwise if self hosted please complete the following please select which platform you are using azure devops dev azure com azure devops server bitbucket cloud bitbucket org bitbucket server gitea github com github enterprise server gitlab com gitlab self hosted renovate version as the discussion has dried out i ll create an issue i have now simplified this experiment a lot i now have repositories devgeniem renovate test the repository that i want to get updated by renovate devgeniem devops renovate config the repository that holds renovate configs that are extended in renovate test devgeniem renovate private repository test a dummy private repository my renovate config looks like this devgeniem renovate test github renovate json extends devgeniem devops renovate config default json enabled false devgeniem devops renovate config wordpress json enabled true enabledmanagers composer packagerules excludepackagepatterns johnpbloch wordpress enabled false matchpackagepatterns and my devgeniem renovate test composer json looks like this name devgeniem renovate test type project license mit config preferred install dist repositories devgeniem renovate private repository test type git url git github com devgeniem renovate private repository test git require devgeniem renovate private repository test johnpbloch wordpress and my devgeniem renovate test composer json looks like this name devgeniem renovate private repository test require i have added three repositories to renovate img width alt screenshot at src and still i receive the same error img width alt screenshot at src renovate does not grant access of a private repository to composer even if said repository has been added to renovate relevant debug logs try not to raise a bug report unless you ve looked at the logs first if you re running self hosted run with log level debug in your environment variables and search for whatever dependency branch pr that is causing the problem if you are using the renovate app log into and locate the correct job log for when the problem occurred e g when the pr was created paste the relevant logs here not the entire thing and not just a link to the dashboard others do not have permissions to view them click me to see logs copy paste any log here between the starting and ending backticks have you created a minimal reproduction repository please read the to learn how to make a good minimal reproduction repository i have provided a minimal reproduction repository i don t have time for that but it happens in a public repository i have linked to i don t have time for that and cannot share my private repository the nature of this bug means it s impossible to reproduce publicly additional context | 1 |
377,028 | 11,162,025,523 | IssuesEvent | 2019-12-26 16:10:28 | jqwidgets/jQWidgets | https://api.github.com/repos/jqwidgets/jQWidgets | closed | jqxTabs - Close tabs when added dynamically | medium priority | After add a new tab, if I want to close the new added tab - incorrect closing of the chosen tab. (usually first tab closed instead the new added tab). I check at 8.2.0 version in demo page is working, but after update 8.3.2 not working.
Example:
http://jsfiddle.net/khsf5a1d/
| 1.0 | jqxTabs - Close tabs when added dynamically - After add a new tab, if I want to close the new added tab - incorrect closing of the chosen tab. (usually first tab closed instead the new added tab). I check at 8.2.0 version in demo page is working, but after update 8.3.2 not working.
Example:
http://jsfiddle.net/khsf5a1d/
| priority | jqxtabs close tabs when added dynamically after add a new tab if i want to close the new added tab incorrect closing of the chosen tab usually first tab closed instead the new added tab i check at version in demo page is working but after update not working example | 1 |
606,659 | 18,767,385,951 | IssuesEvent | 2021-11-06 06:34:42 | wesnoth/wesnoth | https://api.github.com/repos/wesnoth/wesnoth | closed | [1.16] The unit panel tooltip is not shown on names and descriptions | Bug Confirmed UI Regression Medium Priority | ### Game and System Information
- What version of the game are you running?
- 1.15.15
- Where did you download it from? (Steam, Mac App Store, our website, built from source, etc.)
- The official site/SourceForge
- If you're using a custom build, what compiler did you use, and what commit did you build at?
- Not a custom build
- What OS are you running?
- Windows 10
### Describe the bug
A tooltip doesn't show up when mouse hovers over a long unit name on the right in-scenario panel. It makes long names impossible to read unless they show up in a dialog which doesn't bound to happen.
### To Reproduce
Steps to reproduce the behavior:
1. First, load a scenario.
2. Then, find or spawn a unit with a long name that doesn't fit the right panel.
3. Lastly, hover a mouse over the top entry that is the name in bold white characters.
4. Observe that there is no tooltip.
### Expected behavior
A full-name tooltip used to be shown in 1.14.
### Screenshots
The localized fort guard name is cropped by the right edge and a tooptip with the full information is not available although there is the cursor over it.

### Additional context
The fix will probably bear some regression as the behaviour was correct in 1.14.
| 1.0 | [1.16] The unit panel tooltip is not shown on names and descriptions - ### Game and System Information
- What version of the game are you running?
- 1.15.15
- Where did you download it from? (Steam, Mac App Store, our website, built from source, etc.)
- The official site/SourceForge
- If you're using a custom build, what compiler did you use, and what commit did you build at?
- Not a custom build
- What OS are you running?
- Windows 10
### Describe the bug
A tooltip doesn't show up when mouse hovers over a long unit name on the right in-scenario panel. It makes long names impossible to read unless they show up in a dialog which doesn't bound to happen.
### To Reproduce
Steps to reproduce the behavior:
1. First, load a scenario.
2. Then, find or spawn a unit with a long name that doesn't fit the right panel.
3. Lastly, hover a mouse over the top entry that is the name in bold white characters.
4. Observe that there is no tooltip.
### Expected behavior
A full-name tooltip used to be shown in 1.14.
### Screenshots
The localized fort guard name is cropped by the right edge and a tooptip with the full information is not available although there is the cursor over it.

### Additional context
The fix will probably bear some regression as the behaviour was correct in 1.14.
| priority | the unit panel tooltip is not shown on names and descriptions game and system information what version of the game are you running where did you download it from steam mac app store our website built from source etc the official site sourceforge if you re using a custom build what compiler did you use and what commit did you build at not a custom build what os are you running windows describe the bug a tooltip doesn t show up when mouse hovers over a long unit name on the right in scenario panel it makes long names impossible to read unless they show up in a dialog which doesn t bound to happen to reproduce steps to reproduce the behavior first load a scenario then find or spawn a unit with a long name that doesn t fit the right panel lastly hover a mouse over the top entry that is the name in bold white characters observe that there is no tooltip expected behavior a full name tooltip used to be shown in screenshots the localized fort guard name is cropped by the right edge and a tooptip with the full information is not available although there is the cursor over it additional context the fix will probably bear some regression as the behaviour was correct in | 1 |
310,373 | 9,489,247,136 | IssuesEvent | 2019-04-22 21:53:42 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | urdf parser does not parse dynamics damping tag | priority: medium team: manipulation type: cleanup type: feature request | Using http://underactuated.mit.edu/src/double_pendulum/double_pendulum.urdf from MBP results in different dynamics than RBP, because the MBP parser is not reading the `<dynamics damping="0.1" />` tags.
It seems like we certainly could:
https://drake.mit.edu/doxygen_cxx/classdrake_1_1multibody_1_1_revolute_joint.html#aad91b55e6b714db4ba96190e6fab07ac
| 1.0 | urdf parser does not parse dynamics damping tag - Using http://underactuated.mit.edu/src/double_pendulum/double_pendulum.urdf from MBP results in different dynamics than RBP, because the MBP parser is not reading the `<dynamics damping="0.1" />` tags.
It seems like we certainly could:
https://drake.mit.edu/doxygen_cxx/classdrake_1_1multibody_1_1_revolute_joint.html#aad91b55e6b714db4ba96190e6fab07ac
| priority | urdf parser does not parse dynamics damping tag using from mbp results in different dynamics than rbp because the mbp parser is not reading the tags it seems like we certainly could | 1 |
354,409 | 10,567,119,992 | IssuesEvent | 2019-10-06 00:41:11 | ohdzdev/NutritionSystem | https://api.github.com/repos/ohdzdev/NutritionSystem | closed | Feat: Recent Changes Report | Frontend Priority: Medium enhancement | **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
* As a nutritionist, I need to see the most recent diet changes in a list form.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
### Sidebar
* Create a Reports sidebar entry under Kitchen and above Nutrition Setup.
### The Page
* Should be simply a dropdown of reports, when a report is selected a conditionally rendered form appears (and its corresponding empty result area too). User fills out form and the result is rendered.
* Both the form and the output should be in their own component.
* All information should be loaded asynchronously and behind a loading spinner in the result area to give user context that something is going on.
### The Functionality
* Recent Changes should be found from the current date and # of days behind via a simple number input controlled via formik.
* When user hits submit the submit button should gray out and loader should start
* The list of results should not be presented in a table, but a simple card. Layout as follows:
* Title: `Diet ### - clock icon (5-14-2019 9:14AM)`
* Body1: `Reason: ~~~~~` (make sure this can go multiple lines and wrap correctly
* Body2: `(Person icon) person email`
* Footer: link to the specific diet: `Link (arrow link fontawesome)`
* This specific report should try and only use a portion of the screen since the cards are sparse. (use the grid to offset by 2 and shrink 2 so we are only using 8 of the available 12) to get that nice centered look. In mobile utilize all the space.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
| 1.0 | Feat: Recent Changes Report - **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
* As a nutritionist, I need to see the most recent diet changes in a list form.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
### Sidebar
* Create a Reports sidebar entry under Kitchen and above Nutrition Setup.
### The Page
* Should be simply a dropdown of reports, when a report is selected a conditionally rendered form appears (and its corresponding empty result area too). User fills out form and the result is rendered.
* Both the form and the output should be in their own component.
* All information should be loaded asynchronously and behind a loading spinner in the result area to give user context that something is going on.
### The Functionality
* Recent Changes should be found from the current date and # of days behind via a simple number input controlled via formik.
* When user hits submit the submit button should gray out and loader should start
* The list of results should not be presented in a table, but a simple card. Layout as follows:
* Title: `Diet ### - clock icon (5-14-2019 9:14AM)`
* Body1: `Reason: ~~~~~` (make sure this can go multiple lines and wrap correctly
* Body2: `(Person icon) person email`
* Footer: link to the specific diet: `Link (arrow link fontawesome)`
* This specific report should try and only use a portion of the screen since the cards are sparse. (use the grid to offset by 2 and shrink 2 so we are only using 8 of the available 12) to get that nice centered look. In mobile utilize all the space.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
| priority | feat recent changes report is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when as a nutritionist i need to see the most recent diet changes in a list form describe the solution you d like a clear and concise description of what you want to happen sidebar create a reports sidebar entry under kitchen and above nutrition setup the page should be simply a dropdown of reports when a report is selected a conditionally rendered form appears and its corresponding empty result area too user fills out form and the result is rendered both the form and the output should be in their own component all information should be loaded asynchronously and behind a loading spinner in the result area to give user context that something is going on the functionality recent changes should be found from the current date and of days behind via a simple number input controlled via formik when user hits submit the submit button should gray out and loader should start the list of results should not be presented in a table but a simple card layout as follows title diet clock icon reason make sure this can go multiple lines and wrap correctly person icon person email footer link to the specific diet link arrow link fontawesome this specific report should try and only use a portion of the screen since the cards are sparse use the grid to offset by and shrink so we are only using of the available to get that nice centered look in mobile utilize all the space describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered additional context add any other context or screenshots about the feature request here | 1 |
146,552 | 5,623,948,561 | IssuesEvent | 2017-04-04 15:58:00 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | opened | [craftercms] Create backup/restore tasks | new feature Priority: Medium | Create backup and restore tasks in crafter.sh/bat.
This must work on *nix and Windows.
Backup process:
- mysqldump the database and zip
- zip data/repos with low compression
- zip data/indexes with low compression
- zip data/deployer
- zip the whole thing with no compression
Make sure to take the target path/filename from the caller to produce the backup.
Restore process:
- make sure the system is down
- check if data/repos exists, warn that you're going to delete it, ask user to accept
- check if data/indexes exists, warn that you're going to delete it, ask user to accept
- check if data/deployer exists, warn that you're going to delete it, ask user to accept
- start mariadb only
- restore database
- stop mariadb
- start the system
- for all sites (loop against folder in data/repos)
-- call http://docs.craftercms.org/en/latest/developers/projects/studio/api/repo/sync-from-repo.html
Ping me if you have any questions. | 1.0 | [craftercms] Create backup/restore tasks - Create backup and restore tasks in crafter.sh/bat.
This must work on *nix and Windows.
Backup process:
- mysqldump the database and zip
- zip data/repos with low compression
- zip data/indexes with low compression
- zip data/deployer
- zip the whole thing with no compression
Make sure to take the target path/filename from the caller to produce the backup.
Restore process:
- make sure the system is down
- check if data/repos exists, warn that you're going to delete it, ask user to accept
- check if data/indexes exists, warn that you're going to delete it, ask user to accept
- check if data/deployer exists, warn that you're going to delete it, ask user to accept
- start mariadb only
- restore database
- stop mariadb
- start the system
- for all sites (loop against folder in data/repos)
-- call http://docs.craftercms.org/en/latest/developers/projects/studio/api/repo/sync-from-repo.html
Ping me if you have any questions. | priority | create backup restore tasks create backup and restore tasks in crafter sh bat this must work on nix and windows backup process mysqldump the database and zip zip data repos with low compression zip data indexes with low compression zip data deployer zip the whole thing with no compression make sure to take the target path filename from the caller to produce the backup restore process make sure the system is down check if data repos exists warn that you re going to delete it ask user to accept check if data indexes exists warn that you re going to delete it ask user to accept check if data deployer exists warn that you re going to delete it ask user to accept start mariadb only restore database stop mariadb start the system for all sites loop against folder in data repos call ping me if you have any questions | 1 |
823,753 | 31,032,248,817 | IssuesEvent | 2023-08-10 13:12:11 | diba-io/bitmask-core | https://api.github.com/repos/diba-io/bitmask-core | opened | Create RgbWalletExt | priority-medium rgb bitcoin | **Description**
Create an extension to current RgbWallet with cache strategies to reduce calls to blockexplorer. | 1.0 | Create RgbWalletExt - **Description**
Create an extension to current RgbWallet with cache strategies to reduce calls to blockexplorer. | priority | create rgbwalletext description create an extension to current rgbwallet with cache strategies to reduce calls to blockexplorer | 1 |
246,593 | 7,895,416,728 | IssuesEvent | 2018-06-29 03:08:29 | aowen87/BAR | https://api.github.com/repos/aowen87/BAR | closed | Add the ability to output a file of double from the x ray image query. | Expected Use: 3 - Occasional Feature Impact: 3 - Medium OS: All Priority: Normal Support Group: Any | John Field, who is working with Steve Langer would like the ability to have the x ray image query output a file of doubles.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. The following information
could not be accurately captured in the new ticket:
Original author: Eric Brugger
Original creation: 11/19/2014 03:49 pm
Original update: 11/21/2014 06:59 pm
Ticket number: 2068 | 1.0 | Add the ability to output a file of double from the x ray image query. - John Field, who is working with Steve Langer would like the ability to have the x ray image query output a file of doubles.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. The following information
could not be accurately captured in the new ticket:
Original author: Eric Brugger
Original creation: 11/19/2014 03:49 pm
Original update: 11/21/2014 06:59 pm
Ticket number: 2068 | priority | add the ability to output a file of double from the x ray image query john field who is working with steve langer would like the ability to have the x ray image query output a file of doubles redmine migration this ticket was migrated from redmine the following information could not be accurately captured in the new ticket original author eric brugger original creation pm original update pm ticket number | 1 |
695,025 | 23,840,695,288 | IssuesEvent | 2022-09-06 09:58:19 | opensrp/opensrp-client-anc | https://api.github.com/repos/opensrp/opensrp-client-anc | closed | [Ona Support Request]: Syncing of partial contacts | 🚧 WIP Tech Partner (Zambia & Rwanda) medium priority | ### Affected App or Server Version
v1.6.8
### What kind of support do you need?
To sync partial contact information and be able to show when synced using peer to peer that a contact is in progress.
### What is the acceptance criteria for your support request?
To be able to sync a partial contact and get information regarding a contact before it is fully completed (e.g. if a user fills in information under profile and physical exams only and saves that information, if synced using peer to peer, that information should be reflected on the receiving tablet and also show it is in progress).
### Relevant Information
_No response_ | 1.0 | [Ona Support Request]: Syncing of partial contacts - ### Affected App or Server Version
v1.6.8
### What kind of support do you need?
To sync partial contact information and be able to show when synced using peer to peer that a contact is in progress.
### What is the acceptance criteria for your support request?
To be able to sync a partial contact and get information regarding a contact before it is fully completed (e.g. if a user fills in information under profile and physical exams only and saves that information, if synced using peer to peer, that information should be reflected on the receiving tablet and also show it is in progress).
### Relevant Information
_No response_ | priority | syncing of partial contacts affected app or server version what kind of support do you need to sync partial contact information and be able to show when synced using peer to peer that a contact is in progress what is the acceptance criteria for your support request to be able to sync a partial contact and get information regarding a contact before it is fully completed e g if a user fills in information under profile and physical exams only and saves that information if synced using peer to peer that information should be reflected on the receiving tablet and also show it is in progress relevant information no response | 1 |
188,309 | 6,775,103,959 | IssuesEvent | 2017-10-27 13:09:23 | HBHWoolacotts/RPii | https://api.github.com/repos/HBHWoolacotts/RPii | closed | Feature Request - can we the ability to store a repetative Note into the Delivery Team Diary? | Label: Future Dev Request Priority - Medium | Notes like these get entered in daily (which is a pain!).
It would be a great feature if we could save notes on a repetative basis so they always show.
Required for Manager Access Level (55) and above only - if it's easier though, something under the System tab could be used?

| 1.0 | Feature Request - can we the ability to store a repetative Note into the Delivery Team Diary? - Notes like these get entered in daily (which is a pain!).
It would be a great feature if we could save notes on a repetative basis so they always show.
Required for Manager Access Level (55) and above only - if it's easier though, something under the System tab could be used?

| priority | feature request can we the ability to store a repetative note into the delivery team diary notes like these get entered in daily which is a pain it would be a great feature if we could save notes on a repetative basis so they always show required for manager access level and above only if it s easier though something under the system tab could be used | 1 |
434,307 | 12,516,342,310 | IssuesEvent | 2020-06-03 09:13:47 | input-output-hk/cardano-node | https://api.github.com/repos/input-output-hk/cardano-node | closed | [FR] - CLI - Query for Stake Address | cli revision enhancement priority medium | Should return both reward account and current delegation choice
| 1.0 | [FR] - CLI - Query for Stake Address - Should return both reward account and current delegation choice
| priority | cli query for stake address should return both reward account and current delegation choice | 1 |
189,792 | 6,801,799,490 | IssuesEvent | 2017-11-02 17:57:51 | CS2103AUG2017-F09-B3/main | https://api.github.com/repos/CS2103AUG2017-F09-B3/main | closed | As a user, i want to be able complete the command automatically | priority.medium status.completed type.enhancement | So that i do not have to memorize all the commands needed. | 1.0 | As a user, i want to be able complete the command automatically - So that i do not have to memorize all the commands needed. | priority | as a user i want to be able complete the command automatically so that i do not have to memorize all the commands needed | 1 |
306,865 | 9,412,357,533 | IssuesEvent | 2019-04-10 03:40:18 | conan-community/community | https://api.github.com/repos/conan-community/community | closed | [boost] Unable to link stacktrace library. | Feedback please! complex: low priority: medium stage: queue type: question | ### Description of Problem
I've created a new project to test boost with conan but found out that the stacktrace library can't link, others boost libraries works fine.
**conanfile.txt**
```
[requires]
boost/1.69.0@conan/stable
[options]
boost:magic_autolink=True
[generators]
cmake
```
**CMakeLists.txt**
```
cmake_minimum_required(VERSION 3.6)
project(conan_test CXX)
include(${CMAKE_CURRENT_SOURCE_DIR}/conan/conanbuildinfo.cmake)
conan_basic_setup()
add_executable(conan_test main.cpp)
target_link_libraries(conan_test ${CONAN_LIBS})
```
**main.cpp**
```
#include <iostream>
#include <boost/stacktrace/stacktrace.hpp>
int main()
{
std::cout << boost::stacktrace::stacktrace() << std::endl;
system("pause");
return EXIT_SUCCESS;
}
```
**Used command to install boost:**
```
conan install .. -s build_type=Debug --build boost
```
### Package Details
* Package Name/Version: **boost/1.69.0@conan/stable**
* Operating System: **Windows**
* Operation System Version: **Windows 10 Home 1809**
* Compiler+version: **MSVC Visual Studio 15**
* Conan version: **conan 1.3.2**
* Python version: **python 3.7.0**
### Build logs
```
Error LNK2005 "public: static unsigned __int64 __cdecl boost::stacktrace::detail::this_thread_frames::collect(void const * *,unsigned __int64,unsigned __int64)" (?collect@this_thread_frames@detail@stacktrace@boost@@SA_KPEAPEBX_K1@Z) already defined in main.cpp.obj C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CMakeLists.txt C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\libboost_stacktrace_noop.lib(noop.obj) 1
```
| 1.0 | [boost] Unable to link stacktrace library. - ### Description of Problem
I've created a new project to test boost with conan but found out that the stacktrace library can't link, others boost libraries works fine.
**conanfile.txt**
```
[requires]
boost/1.69.0@conan/stable
[options]
boost:magic_autolink=True
[generators]
cmake
```
**CMakeLists.txt**
```
cmake_minimum_required(VERSION 3.6)
project(conan_test CXX)
include(${CMAKE_CURRENT_SOURCE_DIR}/conan/conanbuildinfo.cmake)
conan_basic_setup()
add_executable(conan_test main.cpp)
target_link_libraries(conan_test ${CONAN_LIBS})
```
**main.cpp**
```
#include <iostream>
#include <boost/stacktrace/stacktrace.hpp>
int main()
{
std::cout << boost::stacktrace::stacktrace() << std::endl;
system("pause");
return EXIT_SUCCESS;
}
```
**Used command to install boost:**
```
conan install .. -s build_type=Debug --build boost
```
### Package Details
* Package Name/Version: **boost/1.69.0@conan/stable**
* Operating System: **Windows**
* Operation System Version: **Windows 10 Home 1809**
* Compiler+version: **MSVC Visual Studio 15**
* Conan version: **conan 1.3.2**
* Python version: **python 3.7.0**
### Build logs
```
Error LNK2005 "public: static unsigned __int64 __cdecl boost::stacktrace::detail::this_thread_frames::collect(void const * *,unsigned __int64,unsigned __int64)" (?collect@this_thread_frames@detail@stacktrace@boost@@SA_KPEAPEBX_K1@Z) already defined in main.cpp.obj C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CMakeLists.txt C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\libboost_stacktrace_noop.lib(noop.obj) 1
```
| priority | unable to link stacktrace library description of problem i ve created a new project to test boost with conan but found out that the stacktrace library can t link others boost libraries works fine conanfile txt boost conan stable boost magic autolink true cmake cmakelists txt cmake minimum required version project conan test cxx include cmake current source dir conan conanbuildinfo cmake conan basic setup add executable conan test main cpp target link libraries conan test conan libs main cpp include include int main std cout boost stacktrace stacktrace std endl system pause return exit success used command to install boost conan install s build type debug build boost package details package name version boost conan stable operating system windows operation system version windows home compiler version msvc visual studio conan version conan python version python build logs error public static unsigned cdecl boost stacktrace detail this thread frames collect void const unsigned unsigned collect this thread frames detail stacktrace boost sa kpeapebx z already defined in main cpp obj c program files microsoft visual studio professional ide cmakelists txt c program files microsoft visual studio professional ide libboost stacktrace noop lib noop obj | 1 |
828,561 | 31,834,185,918 | IssuesEvent | 2023-09-14 12:35:16 | submariner-io/shipyard | https://api.github.com/repos/submariner-io/shipyard | closed | Consuming project check should check updated library as well | enhancement shipyard size:small priority:medium | Currently the "E2E consuming projects" check rebuilds the image, but the Shipyard go library isn't shipped in the image but rather through go.mod.
We should update the check so that it uses the library with the changes from the PR.
One way this is achievable is by copying the go files into the base image and using local replace in `go.mod` to point to the code inside the image. Or we could allow mounting external volumes through our "dapper" and use local replace that way. | 1.0 | Consuming project check should check updated library as well - Currently the "E2E consuming projects" check rebuilds the image, but the Shipyard go library isn't shipped in the image but rather through go.mod.
We should update the check so that it uses the library with the changes from the PR.
One way this is achievable is by copying the go files into the base image and using local replace in `go.mod` to point to the code inside the image. Or we could allow mounting external volumes through our "dapper" and use local replace that way. | priority | consuming project check should check updated library as well currently the consuming projects check rebuilds the image but the shipyard go library isn t shipped in the image but rather through go mod we should update the check so that it uses the library with the changes from the pr one way this is achievable is by copying the go files into the base image and using local replace in go mod to point to the code inside the image or we could allow mounting external volumes through our dapper and use local replace that way | 1 |
439,670 | 12,685,202,577 | IssuesEvent | 2020-06-20 02:47:41 | canonn-science/CAPIv2-Strapi | https://api.github.com/repos/canonn-science/CAPIv2-Strapi | opened | [TO-DO] Remove outdated fields from models | priority: medium status: WIP | **All Models**
Remove extool ID field as extool is no longer active
**Guardian Structures**
Remove databank field, as no longer needed since types are mapped to specific blueprints | 1.0 | [TO-DO] Remove outdated fields from models - **All Models**
Remove extool ID field as extool is no longer active
**Guardian Structures**
Remove databank field, as no longer needed since types are mapped to specific blueprints | priority | remove outdated fields from models all models remove extool id field as extool is no longer active guardian structures remove databank field as no longer needed since types are mapped to specific blueprints | 1 |
565,753 | 16,768,893,256 | IssuesEvent | 2021-06-14 12:34:37 | oppia/oppiabot | https://api.github.com/repos/oppia/oppiabot | closed | Oppiabot does not assign author after pull request has been approved | Priority: Medium | In some pull requests, oppiabot does not assign the appropriate user to merge the pull request even after adding the LGTM label.
See https://github.com/oppia/oppia/pull/11376, https://github.com/oppia/oppia/pull/11316.
__Expected Behaviour__
Oppiabot should assign the PR author if they have merging privileges or assign the project owner from the changelog label to merge the pull request if the PR author doesn't have merging privileges.
| 1.0 | Oppiabot does not assign author after pull request has been approved - In some pull requests, oppiabot does not assign the appropriate user to merge the pull request even after adding the LGTM label.
See https://github.com/oppia/oppia/pull/11376, https://github.com/oppia/oppia/pull/11316.
__Expected Behaviour__
Oppiabot should assign the PR author if they have merging privileges or assign the project owner from the changelog label to merge the pull request if the PR author doesn't have merging privileges.
| priority | oppiabot does not assign author after pull request has been approved in some pull requests oppiabot does not assign the appropriate user to merge the pull request even after adding the lgtm label see expected behaviour oppiabot should assign the pr author if they have merging privileges or assign the project owner from the changelog label to merge the pull request if the pr author doesn t have merging privileges | 1 |
77,139 | 3,506,264,806 | IssuesEvent | 2016-01-08 05:06:12 | OregonCore/OregonCore | https://api.github.com/repos/OregonCore/OregonCore | opened | [Teron Gorefiend] Shadow of Death (BB #200) | migrated Priority: Medium Type: Bug | This issue was migrated from bitbucket.
**Original Reporter:**
**Original Date:** 15.06.2010 13:48:38 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** new
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/200
<hr>
He don't cast shadow of death. | 1.0 | [Teron Gorefiend] Shadow of Death (BB #200) - This issue was migrated from bitbucket.
**Original Reporter:**
**Original Date:** 15.06.2010 13:48:38 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** new
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/200
<hr>
He don't cast shadow of death. | priority | shadow of death bb this issue was migrated from bitbucket original reporter original date gmt original priority major original type bug original state new direct link he don t cast shadow of death | 1 |
57,221 | 3,081,249,664 | IssuesEvent | 2015-08-22 14:40:47 | bitfighter/bitfighter | https://api.github.com/repos/bitfighter/bitfighter | closed | Getting the bot's name (and a few other things) in main() is too soon [LUA] | bug imported invalid Priority-Medium | _From [corteocarl](https://code.google.com/u/corteocarl/) on June 05, 2014 18:26:38_
What steps will reproduce the problem? 1. getName() in main What is the expected output? What do you see instead? You expect the bot's name, but you get "Robot" What version of the product are you using? On what operating system? 019c Please provide any additional information below. This will also happen for a few other things; I don't remember which though
_Original issue: http://code.google.com/p/bitfighter/issues/detail?id=442_ | 1.0 | Getting the bot's name (and a few other things) in main() is too soon [LUA] - _From [corteocarl](https://code.google.com/u/corteocarl/) on June 05, 2014 18:26:38_
What steps will reproduce the problem? 1. getName() in main What is the expected output? What do you see instead? You expect the bot's name, but you get "Robot" What version of the product are you using? On what operating system? 019c Please provide any additional information below. This will also happen for a few other things; I don't remember which though
_Original issue: http://code.google.com/p/bitfighter/issues/detail?id=442_ | priority | getting the bot s name and a few other things in main is too soon from on june what steps will reproduce the problem getname in main what is the expected output what do you see instead you expect the bot s name but you get robot what version of the product are you using on what operating system please provide any additional information below this will also happen for a few other things i don t remember which though original issue | 1 |
280,803 | 8,686,862,527 | IssuesEvent | 2018-12-03 12:05:05 | edenlabllc/ehealth.api | https://api.github.com/repos/edenlabllc/ehealth.api | closed | [Changes] Create medication request - improve validation according to new attributes | [zube]: Inbox kind/task priority/medium project/reimbursement status/todo | [Changes] Create medication request - improve validation according to new attributes
1. There can be more than one medication request with type _plan_ at the same period with the same innm
2. Apply different schemas for plan and order
3. Validate attributes:
* prior prescription - valid medication request
* context - valid Encounter
* intent - dictionary
* category - dictionary
* dosage instructions - valid object
child of edenlabllc/ehealth.api#3474 | 1.0 | [Changes] Create medication request - improve validation according to new attributes - [Changes] Create medication request - improve validation according to new attributes
1. There can be more than one medication request with type _plan_ at the same period with the same innm
2. Apply different schemas for plan and order
3. Validate attributes:
* prior prescription - valid medication request
* context - valid Encounter
* intent - dictionary
* category - dictionary
* dosage instructions - valid object
child of edenlabllc/ehealth.api#3474 | priority | create medication request improve validation according to new attributes create medication request improve validation according to new attributes there can be more than one medication request with type plan at the same period with the same innm apply different schemas for plan and order validate attributes prior prescription valid medication request context valid encounter intent dictionary category dictionary dosage instructions valid object child of edenlabllc ehealth api | 1 |
822,471 | 30,873,920,438 | IssuesEvent | 2023-08-03 13:11:03 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | opened | [Resolve Dependabot Alert] Insufficient Granularity of Access Control in JSDom | medium-priority platform-cop-frontend platform-cop | ### Description
Update `jsdom` to a non vulnerable version. This requires upgrading to a breaking version of `jsdom` [caution: update seems to affect unit tests and site rendering]
### Dependabot Alert:
https://github.com/department-of-veterans-affairs/vets-website/security/dependabot/53
https://github.com/department-of-veterans-affairs/vets-website/security/dependabot/64
| 1.0 | [Resolve Dependabot Alert] Insufficient Granularity of Access Control in JSDom - ### Description
Update `jsdom` to a non vulnerable version. This requires upgrading to a breaking version of `jsdom` [caution: update seems to affect unit tests and site rendering]
### Dependabot Alert:
https://github.com/department-of-veterans-affairs/vets-website/security/dependabot/53
https://github.com/department-of-veterans-affairs/vets-website/security/dependabot/64
| priority | insufficient granularity of access control in jsdom description update jsdom to a non vulnerable version this requires upgrading to a breaking version of jsdom dependabot alert | 1 |
550,953 | 16,135,119,165 | IssuesEvent | 2021-04-29 10:46:27 | Baystation12/Baystation12 | https://api.github.com/repos/Baystation12/Baystation12 | closed | Offship sensors in ZAC | Could Reproduce :bug: Oversight :bug: Priority: Medium | <!--
Anything inside tags like these is a comment and will not be displayed in the final issue.
Be careful not to write inside them!
Every field other than 'specific information for locating' is required.
If you do not fill out the 'specific information' field, please delete the header.
/!\ Omitting or not answering a required field will result in your issue being closed. /!\
Repeated violation of this rule, or joke or spam issues, will result in punishment.
PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS
(The lines with four #'s)
Don't edit them or delete them - it's part of the formatting
-->
#### Description of issue
Offships like Skrellship, Caulship and Voxship get ZAC sensor readouts when they're printed
#### Difference between expected and actual behavior
Offships should probably get sensor readouts in languages they're guaranteed to speak, not ZAC.
#### Steps to reproduce
Spawn on an offship, like Skrellship, and scan something with sensors.
#### Specific information for locating
<!-- e.g. an object name, paste specific message outputs... -->
/obj/machinery/computer/ship/sensors
#### Length of time in which bug has been known to occur
<!--
Be specific if you approximately know the time it's been occurring
for—this can speed up finding the source. If you're not sure
about it, tell us too!
-->
Since the language-paper PR
#### Client version, Server revision & Game ID
<!-- Found with the "Show server revision" verb in the OOC tab in game. -->
Client Version: 513
Server Revision: 3e6a592ea98678b920159b1171f9851606aad7e6 - dev - 2021-04-11
Game ID: cbx-c1Gb
#### Issue bingo
<!-- Check these by writing an x inside the [ ] (like this: [x])-->
<!-- Don't forget to remove the space between the brackets, or it won't work! -->
- [x] Issue could be reproduced at least once
- [x] Issue could be reproduced by different players
- [x] Issue could be reproduced in multiple rounds
- [x] Issue happened in a recent (less than 7 days ago) round
- [x] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
| 1.0 | Offship sensors in ZAC - <!--
Anything inside tags like these is a comment and will not be displayed in the final issue.
Be careful not to write inside them!
Every field other than 'specific information for locating' is required.
If you do not fill out the 'specific information' field, please delete the header.
/!\ Omitting or not answering a required field will result in your issue being closed. /!\
Repeated violation of this rule, or joke or spam issues, will result in punishment.
PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS
(The lines with four #'s)
Don't edit them or delete them - it's part of the formatting
-->
#### Description of issue
Offships like Skrellship, Caulship and Voxship get ZAC sensor readouts when they're printed
#### Difference between expected and actual behavior
Offships should probably get sensor readouts in languages they're guaranteed to speak, not ZAC.
#### Steps to reproduce
Spawn on an offship, like Skrellship, and scan something with sensors.
#### Specific information for locating
<!-- e.g. an object name, paste specific message outputs... -->
/obj/machinery/computer/ship/sensors
#### Length of time in which bug has been known to occur
<!--
Be specific if you approximately know the time it's been occurring
for—this can speed up finding the source. If you're not sure
about it, tell us too!
-->
Since the language-paper PR
#### Client version, Server revision & Game ID
<!-- Found with the "Show server revision" verb in the OOC tab in game. -->
Client Version: 513
Server Revision: 3e6a592ea98678b920159b1171f9851606aad7e6 - dev - 2021-04-11
Game ID: cbx-c1Gb
#### Issue bingo
<!-- Check these by writing an x inside the [ ] (like this: [x])-->
<!-- Don't forget to remove the space between the brackets, or it won't work! -->
- [x] Issue could be reproduced at least once
- [x] Issue could be reproduced by different players
- [x] Issue could be reproduced in multiple rounds
- [x] Issue happened in a recent (less than 7 days ago) round
- [x] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
| priority | offship sensors in zac anything inside tags like these is a comment and will not be displayed in the final issue be careful not to write inside them every field other than specific information for locating is required if you do not fill out the specific information field please delete the header omitting or not answering a required field will result in your issue being closed repeated violation of this rule or joke or spam issues will result in punishment put your answers on the blank lines below the headers the lines with four s don t edit them or delete them it s part of the formatting description of issue offships like skrellship caulship and voxship get zac sensor readouts when they re printed difference between expected and actual behavior offships should probably get sensor readouts in languages they re guaranteed to speak not zac steps to reproduce spawn on an offship like skrellship and scan something with sensors specific information for locating obj machinery computer ship sensors length of time in which bug has been known to occur be specific if you approximately know the time it s been occurring for—this can speed up finding the source if you re not sure about it tell us too since the language paper pr client version server revision game id client version server revision dev game id cbx issue bingo issue could be reproduced at least once issue could be reproduced by different players issue could be reproduced in multiple rounds issue happened in a recent less than days ago round | 1 |
704,346 | 24,193,362,574 | IssuesEvent | 2022-09-23 20:07:47 | COS301-SE-2022/Happy-Muncher | https://api.github.com/repos/COS301-SE-2022/Happy-Muncher | reopened | Budget dates | type: enhancement scope: front-end Priority: medium | Date-picker in each month. Passed and future months must be un-editable. GL prices must only be added to current month | 1.0 | Budget dates - Date-picker in each month. Passed and future months must be un-editable. GL prices must only be added to current month | priority | budget dates date picker in each month passed and future months must be un editable gl prices must only be added to current month | 1 |
490,351 | 14,118,575,895 | IssuesEvent | 2020-11-08 14:15:53 | bennyboer/bbb_app | https://api.github.com/repos/bennyboer/bbb_app | closed | Pencil line not as smooth as in the web app | bug medium priority size: small | The pencil line in the app is shown not as smooth as in the web app. | 1.0 | Pencil line not as smooth as in the web app - The pencil line in the app is shown not as smooth as in the web app. | priority | pencil line not as smooth as in the web app the pencil line in the app is shown not as smooth as in the web app | 1 |
682,957 | 23,364,200,694 | IssuesEvent | 2022-08-10 14:08:54 | NIAEFEUP/tts-revamp-fe | https://api.github.com/repos/NIAEFEUP/tts-revamp-fe | closed | Multiple schedule options (tabs) | medium priority high effort | Students should be able to have multiple schedule options (up to 10, just like sigarra)
### Resources
- https://headlessui.dev/react/tabs
### Tasks
- [ ] Add tabs component
- [ ] Course options array has 10 entries
| 1.0 | Multiple schedule options (tabs) - Students should be able to have multiple schedule options (up to 10, just like sigarra)
### Resources
- https://headlessui.dev/react/tabs
### Tasks
- [ ] Add tabs component
- [ ] Course options array has 10 entries
| priority | multiple schedule options tabs students should be able to have multiple schedule options up to just like sigarra resources tasks add tabs component course options array has entries | 1 |
570,149 | 17,019,788,685 | IssuesEvent | 2021-07-02 17:01:09 | VoltanFr/memcheck | https://api.github.com/repos/VoltanFr/memcheck | closed | Open multiple edit pages from search | complexity-low priority-medium | It is common to need to edit multiple cards out of the result of a search. Needing to open them one by one is a pain. See if it is possible to open all the selected cards in new tabs. We probably want to set a limit on the selection size. | 1.0 | Open multiple edit pages from search - It is common to need to edit multiple cards out of the result of a search. Needing to open them one by one is a pain. See if it is possible to open all the selected cards in new tabs. We probably want to set a limit on the selection size. | priority | open multiple edit pages from search it is common to need to edit multiple cards out of the result of a search needing to open them one by one is a pain see if it is possible to open all the selected cards in new tabs we probably want to set a limit on the selection size | 1 |
43,125 | 2,882,897,093 | IssuesEvent | 2015-06-11 08:49:58 | HubTurbo/HubTurbo | https://api.github.com/repos/HubTurbo/HubTurbo | closed | Wrong issue selected when selected issue disappears | aspect-ui feature-panels priority.medium status.accepted type.bug | Select issue.
Switch to bView and do something that makes the issue no longer matching to the filter.
Switch to HT. Press down arrow before the refresh happens. the next issue is selected and loaded in bView. So far so good.
Refresh completes after a few seconds and the previously selected issue disappears, as it should.
Selection (which was already in the right issue) jumps one issue downwards and selects the wrong issue. | 1.0 | Wrong issue selected when selected issue disappears - Select issue.
Switch to bView and do something that makes the issue no longer matching to the filter.
Switch to HT. Press down arrow before the refresh happens. the next issue is selected and loaded in bView. So far so good.
Refresh completes after a few seconds and the previously selected issue disappears, as it should.
Selection (which was already in the right issue) jumps one issue downwards and selects the wrong issue. | priority | wrong issue selected when selected issue disappears select issue switch to bview and do something that makes the issue no longer matching to the filter switch to ht press down arrow before the refresh happens the next issue is selected and loaded in bview so far so good refresh completes after a few seconds and the previously selected issue disappears as it should selection which was already in the right issue jumps one issue downwards and selects the wrong issue | 1 |
816,809 | 30,613,332,083 | IssuesEvent | 2023-07-23 22:04:14 | Fiserv/Support | https://api.github.com/repos/Fiserv/Support | closed | Search Should Maintain Filters | enhancement CommerceHub Priority - Medium Severity - Medium stale | **Page**
Search
**Describe the bug**
When you leave the search results and click back it doesn't maintain the previous filtering.
**To Reproduce**
Search for any term and filter to Commerce Hub. Select an article. Click the back button to return to search results.
**Expected behavior**
Search should persist the filtering so a client does not need to continually refilter the results when they are looking for an article.
| 1.0 | Search Should Maintain Filters - **Page**
Search
**Describe the bug**
When you leave the search results and click back it doesn't maintain the previous filtering.
**To Reproduce**
Search for any term and filter to Commerce Hub. Select an article. Click the back button to return to search results.
**Expected behavior**
Search should persist the filtering so a client does not need to continually refilter the results when they are looking for an article.
| priority | search should maintain filters page search describe the bug when you leave the search results and click back it doesn t maintain the previous filtering to reproduce search for any term and filter to commerce hub select an article click the back button to return to search results expected behavior search should persist the filtering so a client does not need to continually refilter the results when they are looking for an article | 1 |
367,109 | 10,840,569,115 | IssuesEvent | 2019-11-12 08:38:24 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.8.2.0 staging-991] "None" tooltip in skill window | Fixed Medium Priority QA Staging | When you hover cursor over text or icon:




Slightly below text:




| 1.0 | [0.8.2.0 staging-991] "None" tooltip in skill window - When you hover cursor over text or icon:




Slightly below text:




| priority | none tooltip in skill window when you hover cursor over text or icon slightly below text | 1 |
64,890 | 3,219,357,386 | IssuesEvent | 2015-10-08 09:16:53 | MarcusWolschon/osmeditor4android | https://api.github.com/repos/MarcusWolschon/osmeditor4android | opened | Check bing usage | Medium Priority Other | It seems as if bing is now enforcing usage limits, this is not directly an issue for vespucci as we use our own and different api key than id, P2 and JOSm (which all use the same :-)), and it is unlikely that we will run in to the limit, however access to the bing account and the possibility to check usage would be good. | 1.0 | Check bing usage - It seems as if bing is now enforcing usage limits, this is not directly an issue for vespucci as we use our own and different api key than id, P2 and JOSm (which all use the same :-)), and it is unlikely that we will run in to the limit, however access to the bing account and the possibility to check usage would be good. | priority | check bing usage it seems as if bing is now enforcing usage limits this is not directly an issue for vespucci as we use our own and different api key than id and josm which all use the same and it is unlikely that we will run in to the limit however access to the bing account and the possibility to check usage would be good | 1 |
79,330 | 3,534,645,587 | IssuesEvent | 2016-01-16 00:22:23 | washingtontrails/vms | https://api.github.com/repos/washingtontrails/vms | opened | VMS: Pyramid Find a Work Party text seach questions | Medium Priority Pyramid Question VMS BUDGET | The Find a Work Party has a text search field under the advanced search option.
Questions are:
1) What text is included in this search?
2) If the WP text is updated in Salesforce, how long before we should expect this to be searchable? Say the crew leader for the WP changes.
| 1.0 | VMS: Pyramid Find a Work Party text seach questions - The Find a Work Party has a text search field under the advanced search option.
Questions are:
1) What text is included in this search?
2) If the WP text is updated in Salesforce, how long before we should expect this to be searchable? Say the crew leader for the WP changes.
| priority | vms pyramid find a work party text seach questions the find a work party has a text search field under the advanced search option questions are what text is included in this search if the wp text is updated in salesforce how long before we should expect this to be searchable say the crew leader for the wp changes | 1 |
98,650 | 4,029,716,248 | IssuesEvent | 2016-05-18 11:49:20 | talgarusi/Itorerut-Project | https://api.github.com/repos/talgarusi/Itorerut-Project | closed | choose the name of a new list | 0 - Backlog Development Difficulty: Medium Priority: Low | when creating a new list, enable the option for the user to choose a name ->with popup or something | 1.0 | choose the name of a new list - when creating a new list, enable the option for the user to choose a name ->with popup or something | priority | choose the name of a new list when creating a new list enable the option for the user to choose a name with popup or something | 1 |
191,652 | 6,836,065,243 | IssuesEvent | 2017-11-10 05:19:54 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio-ui] In-context edit pencils are visible for user Reviewer | bug priority: medium | ### Expected behavior
In-context edit pencils should not be visible for user Reviewer in preview (In-Context Edit is not available for user Reviewer from the context nav)
### Actual behavior
In-context edit pencils are visible for user Reviewer in preview
### Steps to reproduce the problem
* Create a site using Website_editorial bp
* Create a user Reviewer and add the user to the Reviewer group in the site created above
* Login as user Reviewer, preview the home page or an article, notice the pencils

### Log/stack trace (use https://gist.github.com)
### Specs: version, OS, browser, etc.
OS X, Chrome browser
Studio Version Number: 3.0.2-SNAPSHOT-bcd638
Build Number: bcd63822d17c1965788f1c24587ce63a1cc9f457
Build Date/Time: 11-09-2017 10:05:22 -0500 | 1.0 | [studio-ui] In-context edit pencils are visible for user Reviewer - ### Expected behavior
In-context edit pencils should not be visible for user Reviewer in preview (In-Context Edit is not available for user Reviewer from the context nav)
### Actual behavior
In-context edit pencils are visible for user Reviewer in preview
### Steps to reproduce the problem
* Create a site using Website_editorial bp
* Create a user Reviewer and add the user to the Reviewer group in the site created above
* Login as user Reviewer, preview the home page or an article, notice the pencils

### Log/stack trace (use https://gist.github.com)
### Specs: version, OS, browser, etc.
OS X, Chrome browser
Studio Version Number: 3.0.2-SNAPSHOT-bcd638
Build Number: bcd63822d17c1965788f1c24587ce63a1cc9f457
Build Date/Time: 11-09-2017 10:05:22 -0500 | priority | in context edit pencils are visible for user reviewer expected behavior in context edit pencils should not be visible for user reviewer in preview in context edit is not available for user reviewer from the context nav actual behavior in context edit pencils are visible for user reviewer in preview steps to reproduce the problem create a site using website editorial bp create a user reviewer and add the user to the reviewer group in the site created above login as user reviewer preview the home page or an article notice the pencils log stack trace use specs version os browser etc os x chrome browser studio version number snapshot build number build date time | 1 |
597,589 | 18,167,053,738 | IssuesEvent | 2021-09-27 15:36:17 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | Observable resource of coap server seems to not support a restart of an observer | bug priority: medium area: Networking | **Describe the bug**
If I start an observer for the `/obs` resource, and stop it after some time and then restart an observer, the counter will be received only a single time and will be never received again in the future.
**To Reproduce**
Steps to reproduce the behavior:
1. Build the coap_server sample
2. Observe the resource i.e. coap get -o coap://xx.xx.xx.xx/obs
3. Abruptly stop the observer
4. Observe the resource i.e. coap get -o coap://xx.xx.xx.xx/obs
5. Wait and see that no counter updates are being received anymore
**Expected behavior**
I would expect that the coap server sending counter updates to my second observer and also performs retransmits to my first observer.
**Impact**
I am not able to stop an observer and restart it afterwards.
**Logs and console output**
*** Booting Zephyr OS build zephyr-v2.6.0 ***
Observer
```
coap get -o coap://xx.xx.xx.xx/obs
(2.05) Counter: 0
(2.05) Counter: 1
(2.05) Counter: 2
^CTerminate batch job (Y/N)?
coap get -o coap://xx.xx.xx.xx/obs
(2.05) Counter: 3
```
Coap Server
```
[00:00:00.057,000] <inf> net_config: Initializing network
[00:00:00.057,000] <inf> net_config: Waiting interface 1 (0x80000dc8) to be up...
[00:00:03.011,000] <inf> net_config: Interface 1 (0x80000dc8) coming up
[00:00:03.011,000] <inf> eth_mcux: ETH_0 enabled 100M full-duplex mode.
[00:00:03.011,000] <inf> net_config: Running dhcpv4 client...
[00:00:04.374,000] <err> net_arp: Gateway not set for iface 0x80000dc8
[00:00:04.481,000] <err> net_arp: Gateway not set for iface 0x80000dc8
[00:00:05.027,000] <inf> net_dhcpv4: Received: xx.xx.xx.xx
[00:00:05.027,000] <inf> net_config: IPv4 address: xx.xx.xx.xx
[00:00:05.027,000] <inf> net_config: Lease time: 604800 seconds
[00:00:05.027,000] <inf> net_config: Subnet: xx.xx.xx.xx
[00:00:05.027,000] <inf> net_config: Router: xx.xx.xx.xx
[00:00:05.027,000] <dbg> net_coap_server_sample.main: Start CoAP-server sample
[00:00:13.209,000] <inf> net_coap_server_sample: *******
[00:00:13.209,000] <inf> net_coap_server_sample: type: 0 code 1 id 24601
[00:00:13.209,000] <inf> net_coap_server_sample: *******
[00:00:13.209,000] <dbg> net_coap_server_sample: Response
64 45 60 19 f4 3d ad ac 61 02 60 ff 43 6f 75 6e |dE`..=.. a.`.Coun
74 65 72 3a 20 30 0a |ter: 0.
[00:00:18.210,000] <dbg> net_coap_server_sample: Response
44 45 d1 e6 f4 3d ad ac 61 03 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 31 0a |ter: 1.
[00:00:23.210,000] <dbg> net_coap_server_sample: Response
44 45 d1 e7 f4 3d ad ac 61 04 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 32 0a |ter: 2.
[00:00:28.211,000] <dbg> net_coap_server_sample: Response
44 45 d1 e8 f4 3d ad ac 61 05 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 33 0a |ter: 3.
[00:00:33.196,000] <inf> net_coap_server_sample: *******
[00:00:33.196,000] <inf> net_coap_server_sample: type: 0 code 1 id 59996
[00:00:33.196,000] <inf> net_coap_server_sample: *******
[00:00:33.196,000] <dbg> net_coap_server_sample: Response
64 45 ea 5c 2d 6d 19 a6 61 05 60 ff 43 6f 75 6e |dE.\-m.. a.`.Coun
74 65 72 3a 20 33 0a |ter: 3.
[00:00:38.196,000] <dbg> net_coap_server_sample: Response
44 45 d1 e9 f4 3d ad ac 61 06 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 34 0a |ter: 4.
[00:00:38.249,000] <dbg> net_coap_server_sample: Response
44 45 d1 ea 2d 6d 19 a6 61 06 60 ff 43 6f 75 6e |DE..-m.. a.`.Coun
74 65 72 3a 20 34 0a |ter: 4.
```
**Environment (please complete the following information):**
- Observer: Windows
- Zephyr V2.6.0
| 1.0 | Observable resource of coap server seems to not support a restart of an observer - **Describe the bug**
If I start an observer for the `/obs` resource, and stop it after some time and then restart an observer, the counter will be received only a single time and will be never received again in the future.
**To Reproduce**
Steps to reproduce the behavior:
1. Build the coap_server sample
2. Observe the resource i.e. coap get -o coap://xx.xx.xx.xx/obs
3. Abruptly stop the observer
4. Observe the resource i.e. coap get -o coap://xx.xx.xx.xx/obs
5. Wait and see that no counter updates are being received anymore
**Expected behavior**
I would expect that the coap server sending counter updates to my second observer and also performs retransmits to my first observer.
**Impact**
I am not able to stop an observer and restart it afterwards.
**Logs and console output**
*** Booting Zephyr OS build zephyr-v2.6.0 ***
Observer
```
coap get -o coap://xx.xx.xx.xx/obs
(2.05) Counter: 0
(2.05) Counter: 1
(2.05) Counter: 2
^CTerminate batch job (Y/N)?
coap get -o coap://xx.xx.xx.xx/obs
(2.05) Counter: 3
```
Coap Server
```
[00:00:00.057,000] <inf> net_config: Initializing network
[00:00:00.057,000] <inf> net_config: Waiting interface 1 (0x80000dc8) to be up...
[00:00:03.011,000] <inf> net_config: Interface 1 (0x80000dc8) coming up
[00:00:03.011,000] <inf> eth_mcux: ETH_0 enabled 100M full-duplex mode.
[00:00:03.011,000] <inf> net_config: Running dhcpv4 client...
[00:00:04.374,000] <err> net_arp: Gateway not set for iface 0x80000dc8
[00:00:04.481,000] <err> net_arp: Gateway not set for iface 0x80000dc8
[00:00:05.027,000] <inf> net_dhcpv4: Received: xx.xx.xx.xx
[00:00:05.027,000] <inf> net_config: IPv4 address: xx.xx.xx.xx
[00:00:05.027,000] <inf> net_config: Lease time: 604800 seconds
[00:00:05.027,000] <inf> net_config: Subnet: xx.xx.xx.xx
[00:00:05.027,000] <inf> net_config: Router: xx.xx.xx.xx
[00:00:05.027,000] <dbg> net_coap_server_sample.main: Start CoAP-server sample
[00:00:13.209,000] <inf> net_coap_server_sample: *******
[00:00:13.209,000] <inf> net_coap_server_sample: type: 0 code 1 id 24601
[00:00:13.209,000] <inf> net_coap_server_sample: *******
[00:00:13.209,000] <dbg> net_coap_server_sample: Response
64 45 60 19 f4 3d ad ac 61 02 60 ff 43 6f 75 6e |dE`..=.. a.`.Coun
74 65 72 3a 20 30 0a |ter: 0.
[00:00:18.210,000] <dbg> net_coap_server_sample: Response
44 45 d1 e6 f4 3d ad ac 61 03 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 31 0a |ter: 1.
[00:00:23.210,000] <dbg> net_coap_server_sample: Response
44 45 d1 e7 f4 3d ad ac 61 04 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 32 0a |ter: 2.
[00:00:28.211,000] <dbg> net_coap_server_sample: Response
44 45 d1 e8 f4 3d ad ac 61 05 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 33 0a |ter: 3.
[00:00:33.196,000] <inf> net_coap_server_sample: *******
[00:00:33.196,000] <inf> net_coap_server_sample: type: 0 code 1 id 59996
[00:00:33.196,000] <inf> net_coap_server_sample: *******
[00:00:33.196,000] <dbg> net_coap_server_sample: Response
64 45 ea 5c 2d 6d 19 a6 61 05 60 ff 43 6f 75 6e |dE.\-m.. a.`.Coun
74 65 72 3a 20 33 0a |ter: 3.
[00:00:38.196,000] <dbg> net_coap_server_sample: Response
44 45 d1 e9 f4 3d ad ac 61 06 60 ff 43 6f 75 6e |DE...=.. a.`.Coun
74 65 72 3a 20 34 0a |ter: 4.
[00:00:38.249,000] <dbg> net_coap_server_sample: Response
44 45 d1 ea 2d 6d 19 a6 61 06 60 ff 43 6f 75 6e |DE..-m.. a.`.Coun
74 65 72 3a 20 34 0a |ter: 4.
```
**Environment (please complete the following information):**
- Observer: Windows
- Zephyr V2.6.0
| priority | observable resource of coap server seems to not support a restart of an observer describe the bug if i start an observer for the obs resource and stop it after some time and then restart an observer the counter will be received only a single time and will be never received again in the future to reproduce steps to reproduce the behavior build the coap server sample observe the resource i e coap get o coap xx xx xx xx obs abruptly stop the observer observe the resource i e coap get o coap xx xx xx xx obs wait and see that no counter updates are being received anymore expected behavior i would expect that the coap server sending counter updates to my second observer and also performs retransmits to my first observer impact i am not able to stop an observer and restart it afterwards logs and console output booting zephyr os build zephyr observer coap get o coap xx xx xx xx obs counter counter counter cterminate batch job y n coap get o coap xx xx xx xx obs counter coap server net config initializing network net config waiting interface to be up net config interface coming up eth mcux eth enabled full duplex mode net config running client net arp gateway not set for iface net arp gateway not set for iface net received xx xx xx xx net config address xx xx xx xx net config lease time seconds net config subnet xx xx xx xx net config router xx xx xx xx net coap server sample main start coap server sample net coap server sample net coap server sample type code id net coap server sample net coap server sample response ad ac ff de a coun ter net coap server sample response ad ac ff de a coun ter net coap server sample response ad ac ff de a coun ter net coap server sample response ad ac ff de a coun ter net coap server sample net coap server sample type code id net coap server sample net coap server sample response ea ff de m a coun ter net coap server sample response ad ac ff de a coun ter net coap server sample response ea ff de m a coun ter environment please complete the following information observer windows zephyr | 1 |
386,389 | 11,437,908,893 | IssuesEvent | 2020-02-05 01:31:46 | ngageoint/hootenanny-ui | https://api.github.com/repos/ngageoint/hootenanny-ui | closed | UI job status log not showing all logging statements | Category: UI Defined Priority: Medium Type: Bug | The status log leaves out several status messages from a conflate job. This is making it more difficult to diagnose user problems when a job crashes, since we don't know exactly where its crashing.
@SeeBee2018 | 1.0 | UI job status log not showing all logging statements - The status log leaves out several status messages from a conflate job. This is making it more difficult to diagnose user problems when a job crashes, since we don't know exactly where its crashing.
@SeeBee2018 | priority | ui job status log not showing all logging statements the status log leaves out several status messages from a conflate job this is making it more difficult to diagnose user problems when a job crashes since we don t know exactly where its crashing | 1 |
697,049 | 23,925,878,909 | IssuesEvent | 2022-09-09 22:38:13 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [DocDB][LST] Timed out: Timed out waiting for Create Table with enable_leader_failure_detection=false | kind/bug area/docdb priority/medium status/awaiting-triage | Jira Link: [DB-3445](https://yugabyte.atlassian.net/browse/DB-3445)
### Description
This is a new LST test trying to set random master/tserver flags:
```
$ cd ~/code/yb-long-system-test
$ git checkout git checkout 879d8291
$ python3.9 ./long_system_test.py --complexity=full --create-destroy-local --yb-ctl-flags="--replication_factor 3" --nodes=127.0.0.1:5433,127.0.0.2:5433,127.0.0.3:5433 --runtime=5 --threads=4 --seed=210354
2022-09-09 17:03:00,450 MainThread INFO
2022-09-09 17:03:00,450 MainThread INFO --------------------------------------------------------------------------------
2022-09-09 17:03:00,451 MainThread INFO Running Long System Test 0.1 - https://github.com/yugabyte/yb-long-system-test/
2022-09-09 17:03:00,451 MainThread INFO --------------------------------------------------------------------------------
2022-09-09 17:03:00,451 MainThread INFO
2022-09-09 17:03:00,461 MainThread INFO Reproduce with: git checkout 879d8291 && ./long_system_test.py --complexity=full --create-destroy-local --yb-ctl-flags=--replication_factor 3 --nodes=127.0.0.1:5433,127.0.0.2:5433,127.0.0.3:5433 --runtime=5 --threads=4 --seed=210354
2022-09-09 17:03:00,461 MainThread INFO /home/deen/code/yugabyte-db/bin/yb-ctl destroy
2022-09-09 17:03:03,940 MainThread INFO /home/deen/code/yugabyte-db/bin/yb-ctl --replication_factor 3 create --tserver_flags=enable_leader_failure_detection=false --master_flags=enable_automatic_tablet_splitting=false
2022-09-09 17:03:15,107 MainThread INFO Database version: PostgreSQL 11.2-YB-2.15.3.0-b0 on x86_64-pc-linux-gnu, compiled by clang version 13.0.1 (https://github.com/yugabyte/llvm-project.git 0131d8e1a20f72a0f374979985db4c2871be71bc), 64-bit
2022-09-09 17:03:15,109 MainThread INFO Creating tables for database db_lst_210354
Traceback (most recent call last):
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 564, in <module>
main()
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 555, in main
lst.run()
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 428, in run
self._create_tables()
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 221, in _create_tables
self.database.create_relations(cur)
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 280, in create_relations
table.create(cur)
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 136, in create
self.execute(cur, query)
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 26, in execute
raise e
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 19, in execute
cur.execute(query)
psycopg2.errors.InternalError_: Timed out: Timed out waiting for Create Table
```
[lst_2022-09-09_17:03:00_210354.zip](https://github.com/yugabyte/yugabyte-db/files/9537770/lst_2022-09-09_17.03.00_210354.zip)
Yugabyte-data directory accessible from Yugabyte org: https://drive.google.com/file/d/1_jGivfLlgoOBFb0zWrQuoVuRQVhjN_CN/view?usp=sharing
It can be reproduced:
```
$ cd ~/code/yugabyte-db
$ bin/yb-ctl --replication_factor 3 create --tserver_flags=enable_leader_failure_detection=false
CREATE TABLE t0(c0_json JSON NOT NULL,
c1_json JSON NOT NULL DEFAULT '{"a": 6, "b": ["0", "1", "2", "3", "4", "5", "6", "7"], "c": false}'::json,
c2_jsonb JSONB NOT NULL DEFAULT '{"a": 2, "b": ["0", "1", "2", "3"], "c": false}'::jsonb,
c3_daterange DATERANGE) SPLIT INTO 47 TABLETS;
```
Works fine without `--tserver_flags=enable_leader_failure_detection=false` | 1.0 | [DocDB][LST] Timed out: Timed out waiting for Create Table with enable_leader_failure_detection=false - Jira Link: [DB-3445](https://yugabyte.atlassian.net/browse/DB-3445)
### Description
This is a new LST test trying to set random master/tserver flags:
```
$ cd ~/code/yb-long-system-test
$ git checkout git checkout 879d8291
$ python3.9 ./long_system_test.py --complexity=full --create-destroy-local --yb-ctl-flags="--replication_factor 3" --nodes=127.0.0.1:5433,127.0.0.2:5433,127.0.0.3:5433 --runtime=5 --threads=4 --seed=210354
2022-09-09 17:03:00,450 MainThread INFO
2022-09-09 17:03:00,450 MainThread INFO --------------------------------------------------------------------------------
2022-09-09 17:03:00,451 MainThread INFO Running Long System Test 0.1 - https://github.com/yugabyte/yb-long-system-test/
2022-09-09 17:03:00,451 MainThread INFO --------------------------------------------------------------------------------
2022-09-09 17:03:00,451 MainThread INFO
2022-09-09 17:03:00,461 MainThread INFO Reproduce with: git checkout 879d8291 && ./long_system_test.py --complexity=full --create-destroy-local --yb-ctl-flags=--replication_factor 3 --nodes=127.0.0.1:5433,127.0.0.2:5433,127.0.0.3:5433 --runtime=5 --threads=4 --seed=210354
2022-09-09 17:03:00,461 MainThread INFO /home/deen/code/yugabyte-db/bin/yb-ctl destroy
2022-09-09 17:03:03,940 MainThread INFO /home/deen/code/yugabyte-db/bin/yb-ctl --replication_factor 3 create --tserver_flags=enable_leader_failure_detection=false --master_flags=enable_automatic_tablet_splitting=false
2022-09-09 17:03:15,107 MainThread INFO Database version: PostgreSQL 11.2-YB-2.15.3.0-b0 on x86_64-pc-linux-gnu, compiled by clang version 13.0.1 (https://github.com/yugabyte/llvm-project.git 0131d8e1a20f72a0f374979985db4c2871be71bc), 64-bit
2022-09-09 17:03:15,109 MainThread INFO Creating tables for database db_lst_210354
Traceback (most recent call last):
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 564, in <module>
main()
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 555, in main
lst.run()
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 428, in run
self._create_tables()
File "/home/deen/code/yb-long-system-test/./long_system_test.py", line 221, in _create_tables
self.database.create_relations(cur)
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 280, in create_relations
table.create(cur)
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 136, in create
self.execute(cur, query)
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 26, in execute
raise e
File "/home/deen/code/yb-long-system-test/lst/dbobject.py", line 19, in execute
cur.execute(query)
psycopg2.errors.InternalError_: Timed out: Timed out waiting for Create Table
```
[lst_2022-09-09_17:03:00_210354.zip](https://github.com/yugabyte/yugabyte-db/files/9537770/lst_2022-09-09_17.03.00_210354.zip)
Yugabyte-data directory accessible from Yugabyte org: https://drive.google.com/file/d/1_jGivfLlgoOBFb0zWrQuoVuRQVhjN_CN/view?usp=sharing
It can be reproduced:
```
$ cd ~/code/yugabyte-db
$ bin/yb-ctl --replication_factor 3 create --tserver_flags=enable_leader_failure_detection=false
CREATE TABLE t0(c0_json JSON NOT NULL,
c1_json JSON NOT NULL DEFAULT '{"a": 6, "b": ["0", "1", "2", "3", "4", "5", "6", "7"], "c": false}'::json,
c2_jsonb JSONB NOT NULL DEFAULT '{"a": 2, "b": ["0", "1", "2", "3"], "c": false}'::jsonb,
c3_daterange DATERANGE) SPLIT INTO 47 TABLETS;
```
Works fine without `--tserver_flags=enable_leader_failure_detection=false` | priority | timed out timed out waiting for create table with enable leader failure detection false jira link description this is a new lst test trying to set random master tserver flags cd code yb long system test git checkout git checkout long system test py complexity full create destroy local yb ctl flags replication factor nodes runtime threads seed mainthread info mainthread info mainthread info running long system test mainthread info mainthread info mainthread info reproduce with git checkout long system test py complexity full create destroy local yb ctl flags replication factor nodes runtime threads seed mainthread info home deen code yugabyte db bin yb ctl destroy mainthread info home deen code yugabyte db bin yb ctl replication factor create tserver flags enable leader failure detection false master flags enable automatic tablet splitting false mainthread info database version postgresql yb on pc linux gnu compiled by clang version bit mainthread info creating tables for database db lst traceback most recent call last file home deen code yb long system test long system test py line in main file home deen code yb long system test long system test py line in main lst run file home deen code yb long system test long system test py line in run self create tables file home deen code yb long system test long system test py line in create tables self database create relations cur file home deen code yb long system test lst dbobject py line in create relations table create cur file home deen code yb long system test lst dbobject py line in create self execute cur query file home deen code yb long system test lst dbobject py line in execute raise e file home deen code yb long system test lst dbobject py line in execute cur execute query errors internalerror timed out timed out waiting for create table yugabyte data directory accessible from yugabyte org it can be reproduced cd code yugabyte db bin yb ctl replication factor create tserver flags enable leader failure detection false create table json json not null json json not null default a b c false json jsonb jsonb not null default a b c false jsonb daterange daterange split into tablets works fine without tserver flags enable leader failure detection false | 1 |
544,022 | 15,888,791,842 | IssuesEvent | 2021-04-10 09:00:42 | gnosis/ido-starter | https://api.github.com/repos/gnosis/ido-starter | closed | min-bid-amount == 0 is not allowed | medium-priority | Currently, the app. is not warning the user, if the minimum bidding amount per order == 0.
Users should be warned. | 1.0 | min-bid-amount == 0 is not allowed - Currently, the app. is not warning the user, if the minimum bidding amount per order == 0.
Users should be warned. | priority | min bid amount is not allowed currently the app is not warning the user if the minimum bidding amount per order users should be warned | 1 |
138,996 | 5,354,693,284 | IssuesEvent | 2017-02-20 10:39:02 | happah-graphics/happah-applets | https://api.github.com/repos/happah-graphics/happah-applets | closed | Migrate from RequireJS to Webpack | enhancement priority-medium | For now we used requirejs to load modules, this worked fine for well formated ES5 AMD modules.
Newer dependencies like Angular2 need a universal module loader. | 1.0 | Migrate from RequireJS to Webpack - For now we used requirejs to load modules, this worked fine for well formated ES5 AMD modules.
Newer dependencies like Angular2 need a universal module loader. | priority | migrate from requirejs to webpack for now we used requirejs to load modules this worked fine for well formated amd modules newer dependencies like need a universal module loader | 1 |
637,082 | 20,619,865,694 | IssuesEvent | 2022-03-07 16:25:16 | bounswe/bounswe2022group1 | https://api.github.com/repos/bounswe/bounswe2022group1 | closed | Finding a proper weekly meeting time for the next week | Priority-Medium | Should decide whether we will hold the next week's meeting on Tuesday or Wednesday at 22.30. | 1.0 | Finding a proper weekly meeting time for the next week - Should decide whether we will hold the next week's meeting on Tuesday or Wednesday at 22.30. | priority | finding a proper weekly meeting time for the next week should decide whether we will hold the next week s meeting on tuesday or wednesday at | 1 |
707,289 | 24,301,337,618 | IssuesEvent | 2022-09-29 14:04:47 | Kong/kubernetes-ingress-controller | https://api.github.com/repos/Kong/kubernetes-ingress-controller | opened | Update Gateway API to 0.5.1 | priority/medium area/gateway-api size/medium | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Problem Statement
The Gateway API 0.5.1 has been released and we need to make us compliant with the conformance test changes.
### Proposed Solution
* bump the Gateway API to 0.5.1
* identify the conformance test failures
* fix the controller behavior to be conformant with the API
### Additional information
_No response_
### Acceptance Criteria
- [ ] The Gateway API is updated to the latest (0.5.1) version
- [ ] all the conformance tests pass | 1.0 | Update Gateway API to 0.5.1 - ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Problem Statement
The Gateway API 0.5.1 has been released and we need to make us compliant with the conformance test changes.
### Proposed Solution
* bump the Gateway API to 0.5.1
* identify the conformance test failures
* fix the controller behavior to be conformant with the API
### Additional information
_No response_
### Acceptance Criteria
- [ ] The Gateway API is updated to the latest (0.5.1) version
- [ ] all the conformance tests pass | priority | update gateway api to is there an existing issue for this i have searched the existing issues problem statement the gateway api has been released and we need to make us compliant with the conformance test changes proposed solution bump the gateway api to identify the conformance test failures fix the controller behavior to be conformant with the api additional information no response acceptance criteria the gateway api is updated to the latest version all the conformance tests pass | 1 |
534,643 | 15,631,604,035 | IssuesEvent | 2021-03-22 05:17:07 | kubesphere/kubesphere | https://api.github.com/repos/kubesphere/kubesphere | closed | The status of a new pipeline should not be displayed as 'Warning' | area/devops kind/bug priority/medium | **Describe the Bug**
**Versions Used**
KubeSphere: `dev:latest`
**Preset conditions**
There is a devops project 'dev1'
**How To Reproduce**
Steps to reproduce the behavior:
1. Go to devops project 'dev1'
2. Create a new pipeline based on gitlab
3. View status of the new pipeline
**Expected behavior**
The status of a new pipeline is 'Healthy'
**Actual behavior**
The status of a new pipeline is 'Warning'

/priority medium
/area devops
/cc @kubesphere/sig-devops
/kind bug
/milestone 3.1.0 | 1.0 | The status of a new pipeline should not be displayed as 'Warning' - **Describe the Bug**
**Versions Used**
KubeSphere: `dev:latest`
**Preset conditions**
There is a devops project 'dev1'
**How To Reproduce**
Steps to reproduce the behavior:
1. Go to devops project 'dev1'
2. Create a new pipeline based on gitlab
3. View status of the new pipeline
**Expected behavior**
The status of a new pipeline is 'Healthy'
**Actual behavior**
The status of a new pipeline is 'Warning'

/priority medium
/area devops
/cc @kubesphere/sig-devops
/kind bug
/milestone 3.1.0 | priority | the status of a new pipeline should not be displayed as warning describe the bug versions used kubesphere dev latest preset conditions there is a devops project how to reproduce steps to reproduce the behavior go to devops project create a new pipeline based on gitlab view status of the new pipeline expected behavior the status of a new pipeline is healthy actual behavior the status of a new pipeline is warning priority medium area devops cc kubesphere sig devops kind bug milestone | 1 |
330,327 | 10,038,648,789 | IssuesEvent | 2019-07-18 15:33:16 | ipfs/ipfs-cluster | https://api.github.com/repos/ipfs/ipfs-cluster | closed | [Daemon] Do not load API components which have been removed from the config | blocked difficulty:moderate enhancement/feature priority:medium | <!--
Hello! You are about to create an issue in ipfs-cluster. We ask you to please read and complete the following template.
Note: it might be easier to just click on these check boxes right after creating the issue.
-->
#### Basic information
* [x] Type (mark as appropiate):
* [ ] Bug
* [x] Feature request
* [ ] Enhancement
#### Description
We should be able to initialize Cluster with multiple API components.
As a nice-to-have, the `config` module should tell us when no configuration exists in the JSON for a certain component, and use that as an indication to decide which components are used when creating the `Cluster` object from `ipfs-cluster-service`.
<!--
Include a description of the problem or the feature.
When reporting a bug, please try to include:
* What you were doing when you experienced the bug.
* Any relevant log messages (and the peers they belong to if you have logs for several peers).
* When possible, steps to reproduce the bug.
-->
| 1.0 | [Daemon] Do not load API components which have been removed from the config - <!--
Hello! You are about to create an issue in ipfs-cluster. We ask you to please read and complete the following template.
Note: it might be easier to just click on these check boxes right after creating the issue.
-->
#### Basic information
* [x] Type (mark as appropiate):
* [ ] Bug
* [x] Feature request
* [ ] Enhancement
#### Description
We should be able to initialize Cluster with multiple API components.
As a nice-to-have, the `config` module should tell us when no configuration exists in the JSON for a certain component, and use that as an indication to decide which components are used when creating the `Cluster` object from `ipfs-cluster-service`.
<!--
Include a description of the problem or the feature.
When reporting a bug, please try to include:
* What you were doing when you experienced the bug.
* Any relevant log messages (and the peers they belong to if you have logs for several peers).
* When possible, steps to reproduce the bug.
-->
| priority | do not load api components which have been removed from the config hello you are about to create an issue in ipfs cluster we ask you to please read and complete the following template note it might be easier to just click on these check boxes right after creating the issue basic information type mark as appropiate bug feature request enhancement description we should be able to initialize cluster with multiple api components as a nice to have the config module should tell us when no configuration exists in the json for a certain component and use that as an indication to decide which components are used when creating the cluster object from ipfs cluster service include a description of the problem or the feature when reporting a bug please try to include what you were doing when you experienced the bug any relevant log messages and the peers they belong to if you have logs for several peers when possible steps to reproduce the bug | 1 |
763,113 | 26,745,744,426 | IssuesEvent | 2023-01-30 15:52:51 | lorenzwalthert/precommit | https://api.github.com/repos/lorenzwalthert/precommit | closed | Can additional dependencies include private github repositories? | Complexity: High Priority: Medium Status: Unassigned Type: Enhancement | Hello developers,
is pre-commit able to fetch private github repos as dependencies?
I am currently trying to setup the precommit config yaml for an R-package that depends on another private github repository R-package, but it seems it cannot find it - my guess is because it is internal and therefore (?) not exposed in the API?
In particular, https://api.github.com/repos/orgname/reponame cannot be retrieved and gives 404.
Are any workarounds possible here? Maybe it is something we can fix in our github settings? or provide tokens or so?
Thanks,
cheers
Daniel
| 1.0 | Can additional dependencies include private github repositories? - Hello developers,
is pre-commit able to fetch private github repos as dependencies?
I am currently trying to setup the precommit config yaml for an R-package that depends on another private github repository R-package, but it seems it cannot find it - my guess is because it is internal and therefore (?) not exposed in the API?
In particular, https://api.github.com/repos/orgname/reponame cannot be retrieved and gives 404.
Are any workarounds possible here? Maybe it is something we can fix in our github settings? or provide tokens or so?
Thanks,
cheers
Daniel
| priority | can additional dependencies include private github repositories hello developers is pre commit able to fetch private github repos as dependencies i am currently trying to setup the precommit config yaml for an r package that depends on another private github repository r package but it seems it cannot find it my guess is because it is internal and therefore not exposed in the api in particular cannot be retrieved and gives are any workarounds possible here maybe it is something we can fix in our github settings or provide tokens or so thanks cheers daniel | 1 |
24,266 | 2,667,018,565 | IssuesEvent | 2015-03-22 05:01:05 | NewCreature/EOF | https://api.github.com/repos/NewCreature/EOF | closed | Suppressed anchor definition causes chart to be marked as modified | bug imported Priority-Medium | _From [raynebc](https://code.google.com/u/raynebc/) on May 10, 2010 14:02:02_
If Beat>Anchor Beat is used and a timestamp is given that causes EOF to
prevent the operation (ie. if it would pass beyond another existing
anchor), EOF still marks the chart as modified even though no change was
carried out.
_Original issue: http://code.google.com/p/editor-on-fire/issues/detail?id=47_ | 1.0 | Suppressed anchor definition causes chart to be marked as modified - _From [raynebc](https://code.google.com/u/raynebc/) on May 10, 2010 14:02:02_
If Beat>Anchor Beat is used and a timestamp is given that causes EOF to
prevent the operation (ie. if it would pass beyond another existing
anchor), EOF still marks the chart as modified even though no change was
carried out.
_Original issue: http://code.google.com/p/editor-on-fire/issues/detail?id=47_ | priority | suppressed anchor definition causes chart to be marked as modified from on may if beat anchor beat is used and a timestamp is given that causes eof to prevent the operation ie if it would pass beyond another existing anchor eof still marks the chart as modified even though no change was carried out original issue | 1 |
398,570 | 11,741,880,216 | IssuesEvent | 2020-03-11 22:55:34 | thaliawww/concrexit | https://api.github.com/repos/thaliawww/concrexit | closed | Sorteer dropdowns alfabetisch in admin | priority: medium | In GitLab by @joostrijneveld on Jan 9, 2017, 21:35
Ga alle 'create'-formuliertjes even langs, en kijk of de dropdown onhandig gesorteerd is. Zo ja, fix het. Dit gebeurt typisch met lijsten met leden, bijvoorbeeld bij het toevoegen van nieuwe commissielidmaatschappen. | 1.0 | Sorteer dropdowns alfabetisch in admin - In GitLab by @joostrijneveld on Jan 9, 2017, 21:35
Ga alle 'create'-formuliertjes even langs, en kijk of de dropdown onhandig gesorteerd is. Zo ja, fix het. Dit gebeurt typisch met lijsten met leden, bijvoorbeeld bij het toevoegen van nieuwe commissielidmaatschappen. | priority | sorteer dropdowns alfabetisch in admin in gitlab by joostrijneveld on jan ga alle create formuliertjes even langs en kijk of de dropdown onhandig gesorteerd is zo ja fix het dit gebeurt typisch met lijsten met leden bijvoorbeeld bij het toevoegen van nieuwe commissielidmaatschappen | 1 |
449,329 | 12,967,353,325 | IssuesEvent | 2020-07-21 02:54:46 | ansible/awx | https://api.github.com/repos/ansible/awx | closed | Add an Organizational "Use" Role | component:api priority:medium state:needs_devel type:enhancement | ##### ISSUE TYPE
- Feature Idea
##### SUMMARY
<!-- Briefly describe the problem or desired enhancement. -->
Per an user's request, they would like the addition of an "Use" role on an organizational level. The organizational "Use" role should give access to all of the resources within the configured organization. | 1.0 | Add an Organizational "Use" Role - ##### ISSUE TYPE
- Feature Idea
##### SUMMARY
<!-- Briefly describe the problem or desired enhancement. -->
Per an user's request, they would like the addition of an "Use" role on an organizational level. The organizational "Use" role should give access to all of the resources within the configured organization. | priority | add an organizational use role issue type feature idea summary per an user s request they would like the addition of an use role on an organizational level the organizational use role should give access to all of the resources within the configured organization | 1 |
283,182 | 8,717,628,393 | IssuesEvent | 2018-12-07 17:44:56 | Stivius/XiboLinuxStack | https://api.github.com/repos/Stivius/XiboLinuxStack | closed | Refactor media and region classes | medium priority refactoring | The design of this classes is overcomplicated and needs to be refactored. We need an intermediate layer between media and region that should be called RegionContent (the media that is placed in the region).
Also, the event system should simplify the reaction (which can be different) of different media to the same event.
- [x] Event System
- [x] Implement intermediate layer RegionContent
- [x] Fix unit-tests | 1.0 | Refactor media and region classes - The design of this classes is overcomplicated and needs to be refactored. We need an intermediate layer between media and region that should be called RegionContent (the media that is placed in the region).
Also, the event system should simplify the reaction (which can be different) of different media to the same event.
- [x] Event System
- [x] Implement intermediate layer RegionContent
- [x] Fix unit-tests | priority | refactor media and region classes the design of this classes is overcomplicated and needs to be refactored we need an intermediate layer between media and region that should be called regioncontent the media that is placed in the region also the event system should simplify the reaction which can be different of different media to the same event event system implement intermediate layer regioncontent fix unit tests | 1 |
270,434 | 8,460,243,202 | IssuesEvent | 2018-10-22 18:16:58 | spacetelescope/jwql | https://api.github.com/repos/spacetelescope/jwql | closed | Python 3.6 Requirement | Environment Medium Priority wontfix | Please add Python 3.6 requirement to the dependencies in environment.yml i.e.
`dependencies:
- python=3.6`
| 1.0 | Python 3.6 Requirement - Please add Python 3.6 requirement to the dependencies in environment.yml i.e.
`dependencies:
- python=3.6`
| priority | python requirement please add python requirement to the dependencies in environment yml i e dependencies python | 1 |
613,025 | 19,071,219,140 | IssuesEvent | 2021-11-27 00:08:58 | HEPData/hepdata | https://api.github.com/repos/HEPData/hepdata | closed | records: broken download link on resource file landing page and special treatment needed for .html files | type: bug priority: high complexity: medium | Some records migrated from the old HepData site, for example, [ins1208923](https://www.hepdata.net/record/ins1208923) ([old HepData](http://hepdata.cedar.ac.uk/view/ins1208923)) have resources like:
```yaml
additional_resources:
- {description: Rivet analysis, location: 'http://rivet.hepforge.org/analyses#CMS_2013_I1208923'}
- {description: Link to correlation matrices for the Inclusive Jet data, location: /resource/9901922/inclusive_corr.html}
- {description: Link to fastNLO v2.1 table (inclusive jets), location: /resource/1208923/fnl2332d_I1208923.tab.gz}
- {description: Link to correlation matrices for the Dijet data, location: /resource/9901922/dijet_corr.html}
- {description: Link to fastNLO v2.1 table (dijet mass), location: /resource/1208923/fnl2412e_I1208923.tab.gz}
- {description: Link to the detailed systematics for the Inclusive Jet data, location: /resource/9901922/inclusive_sys.html}
- {description: Link to the detailed systematics for the DiJet data, location: /resource/9901922/dijet_sys.html}
```
The resource files are stored in a subdirectory of the main data directory (`/opt/hepdata/var/data/94/66887/resources`). The last six resources are correctly given a DOI, but the "Download" links are broken from the resource file landing pages, although they work correctly from the "Additional Publication Resources" widget.
Moreover, the landing page for the `.html` files just downloads the `.html` file rather than return the landing page. Presumably this is because the media type is `text/html`, so we might have to treat this as a special case, e.g. if the media type is `text/html` only return the content directly instead of the landing page if the `flask.request.accept_mimetypes` list has length 1, since [most web browsers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values) will send an `Accept` header with multiple media types.
Could you please address these issues, @alisonrclarke? | 1.0 | records: broken download link on resource file landing page and special treatment needed for .html files - Some records migrated from the old HepData site, for example, [ins1208923](https://www.hepdata.net/record/ins1208923) ([old HepData](http://hepdata.cedar.ac.uk/view/ins1208923)) have resources like:
```yaml
additional_resources:
- {description: Rivet analysis, location: 'http://rivet.hepforge.org/analyses#CMS_2013_I1208923'}
- {description: Link to correlation matrices for the Inclusive Jet data, location: /resource/9901922/inclusive_corr.html}
- {description: Link to fastNLO v2.1 table (inclusive jets), location: /resource/1208923/fnl2332d_I1208923.tab.gz}
- {description: Link to correlation matrices for the Dijet data, location: /resource/9901922/dijet_corr.html}
- {description: Link to fastNLO v2.1 table (dijet mass), location: /resource/1208923/fnl2412e_I1208923.tab.gz}
- {description: Link to the detailed systematics for the Inclusive Jet data, location: /resource/9901922/inclusive_sys.html}
- {description: Link to the detailed systematics for the DiJet data, location: /resource/9901922/dijet_sys.html}
```
The resource files are stored in a subdirectory of the main data directory (`/opt/hepdata/var/data/94/66887/resources`). The last six resources are correctly given a DOI, but the "Download" links are broken from the resource file landing pages, although they work correctly from the "Additional Publication Resources" widget.
Moreover, the landing page for the `.html` files just downloads the `.html` file rather than return the landing page. Presumably this is because the media type is `text/html`, so we might have to treat this as a special case, e.g. if the media type is `text/html` only return the content directly instead of the landing page if the `flask.request.accept_mimetypes` list has length 1, since [most web browsers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values) will send an `Accept` header with multiple media types.
Could you please address these issues, @alisonrclarke? | priority | records broken download link on resource file landing page and special treatment needed for html files some records migrated from the old hepdata site for example have resources like yaml additional resources description rivet analysis location description link to correlation matrices for the inclusive jet data location resource inclusive corr html description link to fastnlo table inclusive jets location resource tab gz description link to correlation matrices for the dijet data location resource dijet corr html description link to fastnlo table dijet mass location resource tab gz description link to the detailed systematics for the inclusive jet data location resource inclusive sys html description link to the detailed systematics for the dijet data location resource dijet sys html the resource files are stored in a subdirectory of the main data directory opt hepdata var data resources the last six resources are correctly given a doi but the download links are broken from the resource file landing pages although they work correctly from the additional publication resources widget moreover the landing page for the html files just downloads the html file rather than return the landing page presumably this is because the media type is text html so we might have to treat this as a special case e g if the media type is text html only return the content directly instead of the landing page if the flask request accept mimetypes list has length since will send an accept header with multiple media types could you please address these issues alisonrclarke | 1 |
778,289 | 27,310,133,438 | IssuesEvent | 2023-02-24 11:28:23 | karelumair/Quotes-API | https://api.github.com/repos/karelumair/Quotes-API | closed | Run celery and flask with single command | Status: In Progress Type: Enhancement Priority: Medium Rock: Medium | Find a way to run celery and flask app together. Best possible way is to use docker. | 1.0 | Run celery and flask with single command - Find a way to run celery and flask app together. Best possible way is to use docker. | priority | run celery and flask with single command find a way to run celery and flask app together best possible way is to use docker | 1 |
244,464 | 7,875,299,712 | IssuesEvent | 2018-06-25 19:57:54 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | USER ISSUE: Cannot move powered cart inventory | Medium Priority | **Version:** 0.7.1.2 beta
**Steps to Reproduce:**
Try to drag the powered cart inventory
**Expected behavior:**
it moves (fuel prob blocking)
**Actual behavior:**
nothing | 1.0 | USER ISSUE: Cannot move powered cart inventory - **Version:** 0.7.1.2 beta
**Steps to Reproduce:**
Try to drag the powered cart inventory
**Expected behavior:**
it moves (fuel prob blocking)
**Actual behavior:**
nothing | priority | user issue cannot move powered cart inventory version beta steps to reproduce try to drag the powered cart inventory expected behavior it moves fuel prob blocking actual behavior nothing | 1 |
550,013 | 16,103,431,022 | IssuesEvent | 2021-04-27 12:22:14 | apluslms/a-plus | https://api.github.com/repos/apluslms/a-plus | opened | Add separate button for Aalto login (aside Haka login) | area: authentication effort: hours experience: beginner priority: medium | In a recent change (pull request #804 ) Aalto (or other local organization) login button was replaced by general Haka login, that directs user to organization selector, to allow login also using other Haka organization accounts than Aalto. This was an intermediate step (due to difficulties in shibboleth configuration), and a separate button for local organization login should now be added back, as majority of students would be using it, and usually some additional guidance may need to be added, e.g. for open university students to use local organization account instead of other organization. | 1.0 | Add separate button for Aalto login (aside Haka login) - In a recent change (pull request #804 ) Aalto (or other local organization) login button was replaced by general Haka login, that directs user to organization selector, to allow login also using other Haka organization accounts than Aalto. This was an intermediate step (due to difficulties in shibboleth configuration), and a separate button for local organization login should now be added back, as majority of students would be using it, and usually some additional guidance may need to be added, e.g. for open university students to use local organization account instead of other organization. | priority | add separate button for aalto login aside haka login in a recent change pull request aalto or other local organization login button was replaced by general haka login that directs user to organization selector to allow login also using other haka organization accounts than aalto this was an intermediate step due to difficulties in shibboleth configuration and a separate button for local organization login should now be added back as majority of students would be using it and usually some additional guidance may need to be added e g for open university students to use local organization account instead of other organization | 1 |
190,685 | 6,821,535,872 | IssuesEvent | 2017-11-07 17:01:53 | vmware/vic | https://api.github.com/repos/vmware/vic | closed | 6-17-Configure-TLS fails against vCenter | kind/quality priority/medium team/container |
- Configure VCH - Replace certificates with self-signed certificate using --no-tlsverify
- Configure VCH - Server cert with trusted CA
- Configure VCH - Server cert with untrusted CA
- Configure VCH - Run Configure Without Cert Options & Ensure Certs Are Unchanged
| 1.0 | 6-17-Configure-TLS fails against vCenter -
- Configure VCH - Replace certificates with self-signed certificate using --no-tlsverify
- Configure VCH - Server cert with trusted CA
- Configure VCH - Server cert with untrusted CA
- Configure VCH - Run Configure Without Cert Options & Ensure Certs Are Unchanged
| priority | configure tls fails against vcenter configure vch replace certificates with self signed certificate using no tlsverify configure vch server cert with trusted ca configure vch server cert with untrusted ca configure vch run configure without cert options ensure certs are unchanged | 1 |
634,701 | 20,369,925,019 | IssuesEvent | 2022-02-21 10:13:24 | StingraySoftware/stingray | https://api.github.com/repos/StingraySoftware/stingray | closed | Different methods in `Simulator` return different answers | bug medium-priority | When simulating periodograms using the `Simulator` class, I get realizations that look different from the input power spectrum when passing an array of powers directly. Passing an `astropy.modeling.models` instance seems to do the correct thing. We should fix this. | 1.0 | Different methods in `Simulator` return different answers - When simulating periodograms using the `Simulator` class, I get realizations that look different from the input power spectrum when passing an array of powers directly. Passing an `astropy.modeling.models` instance seems to do the correct thing. We should fix this. | priority | different methods in simulator return different answers when simulating periodograms using the simulator class i get realizations that look different from the input power spectrum when passing an array of powers directly passing an astropy modeling models instance seems to do the correct thing we should fix this | 1 |
431,137 | 12,475,594,177 | IssuesEvent | 2020-05-29 11:55:52 | hotosm/tasking-manager | https://api.github.com/repos/hotosm/tasking-manager | closed | Split tile becomes unselectable | Priority: Medium Status: Needs implementation Type: Bug | I suspect a bug in the tasking manager: Colin_Jones split 3 tiles into 4 (due to cloud obscuring only part of the tile, so that part could be 'marked as bad imagery'. However now those subtiles are no longer selectable for editing.
The example is on https://tasks.hotosm.org/project/5381 three tiles in a row NW 'corner' of task area, which before splitting were:
https://tasks.hotosm.org/project/5381?task=66
https://tasks.hotosm.org/project/5381?task=93
https://tasks.hotosm.org/project/5381?task=112
If you click on any subtile there, it is not highlighted, but the history for https://tasks.hotosm.org/project/5381?task=10 appears (tile/task 10 is not highlighted either).
So these tile are now uneditable. Any idea what went wrong? | 1.0 | Split tile becomes unselectable - I suspect a bug in the tasking manager: Colin_Jones split 3 tiles into 4 (due to cloud obscuring only part of the tile, so that part could be 'marked as bad imagery'. However now those subtiles are no longer selectable for editing.
The example is on https://tasks.hotosm.org/project/5381 three tiles in a row NW 'corner' of task area, which before splitting were:
https://tasks.hotosm.org/project/5381?task=66
https://tasks.hotosm.org/project/5381?task=93
https://tasks.hotosm.org/project/5381?task=112
If you click on any subtile there, it is not highlighted, but the history for https://tasks.hotosm.org/project/5381?task=10 appears (tile/task 10 is not highlighted either).
So these tile are now uneditable. Any idea what went wrong? | priority | split tile becomes unselectable i suspect a bug in the tasking manager colin jones split tiles into due to cloud obscuring only part of the tile so that part could be marked as bad imagery however now those subtiles are no longer selectable for editing the example is on three tiles in a row nw corner of task area which before splitting were if you click on any subtile there it is not highlighted but the history for appears tile task is not highlighted either so these tile are now uneditable any idea what went wrong | 1 |
580,078 | 17,204,356,536 | IssuesEvent | 2021-07-17 23:36:20 | GEOSX/GEOSX | https://api.github.com/repos/GEOSX/GEOSX | closed | Floating point exception when using Trilinos/ML on OSX | effort: 1 day priority: medium type: bug | **Describe the bug**
We get SIGFPE problems when using Trilinos/ML on mac. This has been reproduced on multiple machines.
**To Reproduce**
Run Tutorial 7 (elastic beam) with `preconditionerType=amg`. Output is:
```sh
Received signal 8: Floating point exception: 8
Floating point exception:
** StackTrace of 24 frames **
Frame 1: LvArray::system::stackTraceHandler(int, bool)
Frame 2: _sigtramp
Frame 3: 0x0
Frame 4: ML_get_matrix_row
Frame 5: ML_estimate_avg_nz_per_row
Frame 6: ML_matmat_mult
...
```
**Platform:**
- OSX 10.14.6
- Clang 11.0.0
- Develop @ 9e841f0
| 1.0 | Floating point exception when using Trilinos/ML on OSX - **Describe the bug**
We get SIGFPE problems when using Trilinos/ML on mac. This has been reproduced on multiple machines.
**To Reproduce**
Run Tutorial 7 (elastic beam) with `preconditionerType=amg`. Output is:
```sh
Received signal 8: Floating point exception: 8
Floating point exception:
** StackTrace of 24 frames **
Frame 1: LvArray::system::stackTraceHandler(int, bool)
Frame 2: _sigtramp
Frame 3: 0x0
Frame 4: ML_get_matrix_row
Frame 5: ML_estimate_avg_nz_per_row
Frame 6: ML_matmat_mult
...
```
**Platform:**
- OSX 10.14.6
- Clang 11.0.0
- Develop @ 9e841f0
| priority | floating point exception when using trilinos ml on osx describe the bug we get sigfpe problems when using trilinos ml on mac this has been reproduced on multiple machines to reproduce run tutorial elastic beam with preconditionertype amg output is sh received signal floating point exception floating point exception stacktrace of frames frame lvarray system stacktracehandler int bool frame sigtramp frame frame ml get matrix row frame ml estimate avg nz per row frame ml matmat mult platform osx clang develop | 1 |
482,465 | 13,907,185,989 | IssuesEvent | 2020-10-20 12:17:28 | AY2021S1-CS2113T-T09-3/tp | https://api.github.com/repos/AY2021S1-CS2113T-T09-3/tp | closed | Allow deletion of categories from ALL books/quotes | priority.Medium type.Enhancement | - A command that allows deletion of one or more categories from ALL books/quotes tagged with it.
- Also removes the specified category from the list of categories.
Example:
- delete -c action
- delete -c action romance | 1.0 | Allow deletion of categories from ALL books/quotes - - A command that allows deletion of one or more categories from ALL books/quotes tagged with it.
- Also removes the specified category from the list of categories.
Example:
- delete -c action
- delete -c action romance | priority | allow deletion of categories from all books quotes a command that allows deletion of one or more categories from all books quotes tagged with it also removes the specified category from the list of categories example delete c action delete c action romance | 1 |
2,398 | 2,525,839,660 | IssuesEvent | 2015-01-21 06:36:09 | graybeal/ont | https://api.github.com/repos/graybeal/ont | closed | enable regular expressions in the Registry search option | 2–5 stars enhancement imported invalid Priority-Medium | _From [caru...@gmail.com](https://code.google.com/u/113886747689301365533/) on November 19, 2008 08:44:37_
What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? Please use labels and text to provide additional information.
_Original issue: http://code.google.com/p/mmisw/issues/detail?id=74_ | 1.0 | enable regular expressions in the Registry search option - _From [caru...@gmail.com](https://code.google.com/u/113886747689301365533/) on November 19, 2008 08:44:37_
What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? Please use labels and text to provide additional information.
_Original issue: http://code.google.com/p/mmisw/issues/detail?id=74_ | priority | enable regular expressions in the registry search option from on november what steps will reproduce the problem what is the expected output what do you see instead please use labels and text to provide additional information original issue | 1 |
714,633 | 24,568,587,805 | IssuesEvent | 2022-10-13 06:40:32 | svthalia/concrexit | https://api.github.com/repos/svthalia/concrexit | opened | Event admin api does not check for the organiser email address | priority: medium bug | ### Describe the bug
Since #2547 the check for the organiser email is no longer located in the model clean, therefore the model clean serializer does no longer check these values.
### How to reproduce
Steps to reproduce the behaviour:
1. Use the API
2. No clean
### Expected behaviour
Data should be cleaned.
| 1.0 | Event admin api does not check for the organiser email address - ### Describe the bug
Since #2547 the check for the organiser email is no longer located in the model clean, therefore the model clean serializer does no longer check these values.
### How to reproduce
Steps to reproduce the behaviour:
1. Use the API
2. No clean
### Expected behaviour
Data should be cleaned.
| priority | event admin api does not check for the organiser email address describe the bug since the check for the organiser email is no longer located in the model clean therefore the model clean serializer does no longer check these values how to reproduce steps to reproduce the behaviour use the api no clean expected behaviour data should be cleaned | 1 |
796,522 | 28,116,670,391 | IssuesEvent | 2023-03-31 11:17:34 | bivashy/MC-Auth-with-Link | https://api.github.com/repos/bivashy/MC-Auth-with-Link | closed | Exception when enabling velocity plugin | type: bug priority: medium |
```
Couldn't pass ProxyInitializeEvent to mcauth
java.lang.IllegalArgumentException: plugin is not registered
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:142) ~[velocity.jar:3.2.0-SNAPSHOT (git-cd35e8f8-b226)]
at com.velocitypowered.proxy.scheduler.VelocityScheduler.buildTask(VelocityScheduler.java:78) ~[velocity.jar:3.2.0-SNAPSHOT (git-cd35e8f8-b226)]
at me.mastercapexd.auth.velocity.VelocityProxyCore.schedule(VelocityProxyCore.java:125) ~[?:?]
at me.mastercapexd.auth.task.AuthenticationTimeoutTask.<init>(AuthenticationTimeoutTask.java:18) ~[?:?]
at me.mastercapexd.auth.BaseAuthPlugin.initializeBasic(BaseAuthPlugin.java:127) ~[?:?]
at me.mastercapexd.auth.BaseAuthPlugin.<init>(BaseAuthPlugin.java:98) ~[?:?]
at me.mastercapexd.auth.velocity.VelocityAuthPluginBootstrap.onProxyInitialize(VelocityAuthPluginBootstrap.java:56) ~[?:?]
```
Issue may occur because of we provide AuthPlugin instance instead of new VelocityAuthPluginBootstrap instance | 1.0 | Exception when enabling velocity plugin -
```
Couldn't pass ProxyInitializeEvent to mcauth
java.lang.IllegalArgumentException: plugin is not registered
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:142) ~[velocity.jar:3.2.0-SNAPSHOT (git-cd35e8f8-b226)]
at com.velocitypowered.proxy.scheduler.VelocityScheduler.buildTask(VelocityScheduler.java:78) ~[velocity.jar:3.2.0-SNAPSHOT (git-cd35e8f8-b226)]
at me.mastercapexd.auth.velocity.VelocityProxyCore.schedule(VelocityProxyCore.java:125) ~[?:?]
at me.mastercapexd.auth.task.AuthenticationTimeoutTask.<init>(AuthenticationTimeoutTask.java:18) ~[?:?]
at me.mastercapexd.auth.BaseAuthPlugin.initializeBasic(BaseAuthPlugin.java:127) ~[?:?]
at me.mastercapexd.auth.BaseAuthPlugin.<init>(BaseAuthPlugin.java:98) ~[?:?]
at me.mastercapexd.auth.velocity.VelocityAuthPluginBootstrap.onProxyInitialize(VelocityAuthPluginBootstrap.java:56) ~[?:?]
```
Issue may occur because of we provide AuthPlugin instance instead of new VelocityAuthPluginBootstrap instance | priority | exception when enabling velocity plugin couldn t pass proxyinitializeevent to mcauth java lang illegalargumentexception plugin is not registered at com google common base preconditions checkargument preconditions java at com velocitypowered proxy scheduler velocityscheduler buildtask velocityscheduler java at me mastercapexd auth velocity velocityproxycore schedule velocityproxycore java at me mastercapexd auth task authenticationtimeouttask authenticationtimeouttask java at me mastercapexd auth baseauthplugin initializebasic baseauthplugin java at me mastercapexd auth baseauthplugin baseauthplugin java at me mastercapexd auth velocity velocityauthpluginbootstrap onproxyinitialize velocityauthpluginbootstrap java issue may occur because of we provide authplugin instance instead of new velocityauthpluginbootstrap instance | 1 |
385,591 | 11,423,087,971 | IssuesEvent | 2020-02-03 15:19:06 | zowe/sample-spring-boot-api-service | https://api.github.com/repos/zowe/sample-spring-boot-api-service | reopened | Support access control check for DATASET resource class | Priority: Medium Type: Enhancement no-issue-activity | The [PlatformAccessControl](https://www.ibm.com/support/knowledgecenter/en/SSYKE2_8.0.0/com.ibm.java.zsecurity.api.80.doc/com.ibm.os390.security/com/ibm/os390/security/PlatformAccessControl.html) class and its underlying implementation [__check_resource_auth_np()](https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.3.0/com.ibm.zos.v2r3.bpxbd00/rckaut.htm) support the general resources only. In particular, the class can not specify `DATASET`.
But checking access to `DATASET` can be useful.
Acceptance criteria:
- The `PlatformSecurityService` implementation works well with `DATASET` resource class and can be used to check access to MVS datasets.
Implementation tips:
- Use assembler code that calls `RACROUTE REQUEST=AUTH` macro
- Call the assembler code from new JNI function in the `zowe-sdk-secur` module. This module is program-controlled so it can use `RACROUTE REQUEST=AUTH` functionality | 1.0 | Support access control check for DATASET resource class - The [PlatformAccessControl](https://www.ibm.com/support/knowledgecenter/en/SSYKE2_8.0.0/com.ibm.java.zsecurity.api.80.doc/com.ibm.os390.security/com/ibm/os390/security/PlatformAccessControl.html) class and its underlying implementation [__check_resource_auth_np()](https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.3.0/com.ibm.zos.v2r3.bpxbd00/rckaut.htm) support the general resources only. In particular, the class can not specify `DATASET`.
But checking access to `DATASET` can be useful.
Acceptance criteria:
- The `PlatformSecurityService` implementation works well with `DATASET` resource class and can be used to check access to MVS datasets.
Implementation tips:
- Use assembler code that calls `RACROUTE REQUEST=AUTH` macro
- Call the assembler code from new JNI function in the `zowe-sdk-secur` module. This module is program-controlled so it can use `RACROUTE REQUEST=AUTH` functionality | priority | support access control check for dataset resource class the class and its underlying implementation support the general resources only in particular the class can not specify dataset but checking access to dataset can be useful acceptance criteria the platformsecurityservice implementation works well with dataset resource class and can be used to check access to mvs datasets implementation tips use assembler code that calls racroute request auth macro call the assembler code from new jni function in the zowe sdk secur module this module is program controlled so it can use racroute request auth functionality | 1 |
597,982 | 18,233,086,296 | IssuesEvent | 2021-10-01 01:12:02 | Dae-Hwan/sparta-project | https://api.github.com/repos/Dae-Hwan/sparta-project | closed | 체크인 체크아웃 기능 및 날씨 api | Type: Feature/Function Priority: Medium | # 추가/개선 필요 요소
- 체크인 체크아웃 기능
- 날씨 api
# 추가/개선 필요 이유
체크인 체크아웃 기능: 자신의 업무시작시간 , 업무마무리 시간 총업무시간 확인가능
날씨 api: 현재 위치기반 날씨를 알려줄 수 있는데 도메인 서버에서 https 를 허용을 안해줘 인증서를 등록해야함
# 상세 요구 사항
# 스크린샷 | 1.0 | 체크인 체크아웃 기능 및 날씨 api - # 추가/개선 필요 요소
- 체크인 체크아웃 기능
- 날씨 api
# 추가/개선 필요 이유
체크인 체크아웃 기능: 자신의 업무시작시간 , 업무마무리 시간 총업무시간 확인가능
날씨 api: 현재 위치기반 날씨를 알려줄 수 있는데 도메인 서버에서 https 를 허용을 안해줘 인증서를 등록해야함
# 상세 요구 사항
# 스크린샷 | priority | 체크인 체크아웃 기능 및 날씨 api 추가 개선 필요 요소 체크인 체크아웃 기능 날씨 api 추가 개선 필요 이유 체크인 체크아웃 기능 자신의 업무시작시간 업무마무리 시간 총업무시간 확인가능 날씨 api 현재 위치기반 날씨를 알려줄 수 있는데 도메인 서버에서 https 를 허용을 안해줘 인증서를 등록해야함 상세 요구 사항 스크린샷 | 1 |
182,195 | 6,667,841,764 | IssuesEvent | 2017-10-03 13:59:27 | softdevteam/krun | https://api.github.com/repos/softdevteam/krun | closed | Add checks for Intel hardware cpu throttle counters | medium priority (a clear improvement but not a blocker) | The kernel has some counters for when hardware thermal throttling is triggered which can be accessed in `/sys/devices/system/cpu/cpu0/thermal_throttle/` for older cpus they only have core_throttle_count and package_throttle_count. For newer cpus there's also core_power_limit_count and package_power_limit_count. There is also counter for all thermal event in /proc/interrupts line "TRM:" which seems to be zero of normally functioning systems.
The interrupt handling for them is setup in [therm_throt.c#L520](http://elixir.free-electrons.com/linux/latest/source/arch/x86/kernel/cpu/mcheck/therm_throt.c#L520).
Most of these events come from hardware interrupts controlled with IA32_THERM_INTERRUPT. There is also the IA32_THERM_STATUS MSR that contains the state of various throttling behaviors. | 1.0 | Add checks for Intel hardware cpu throttle counters - The kernel has some counters for when hardware thermal throttling is triggered which can be accessed in `/sys/devices/system/cpu/cpu0/thermal_throttle/` for older cpus they only have core_throttle_count and package_throttle_count. For newer cpus there's also core_power_limit_count and package_power_limit_count. There is also counter for all thermal event in /proc/interrupts line "TRM:" which seems to be zero of normally functioning systems.
The interrupt handling for them is setup in [therm_throt.c#L520](http://elixir.free-electrons.com/linux/latest/source/arch/x86/kernel/cpu/mcheck/therm_throt.c#L520).
Most of these events come from hardware interrupts controlled with IA32_THERM_INTERRUPT. There is also the IA32_THERM_STATUS MSR that contains the state of various throttling behaviors. | priority | add checks for intel hardware cpu throttle counters the kernel has some counters for when hardware thermal throttling is triggered which can be accessed in sys devices system cpu thermal throttle for older cpus they only have core throttle count and package throttle count for newer cpus there s also core power limit count and package power limit count there is also counter for all thermal event in proc interrupts line trm which seems to be zero of normally functioning systems the interrupt handling for them is setup in most of these events come from hardware interrupts controlled with therm interrupt there is also the therm status msr that contains the state of various throttling behaviors | 1 |
307,173 | 9,414,249,867 | IssuesEvent | 2019-04-10 09:42:15 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | USER ISSUE: Robotic Assembly Line - bad collision | Medium Priority | **Version:** 0.7.5.0 beta staging-bad4361f
Robotic Assembly Line have really bad collision :(







| 1.0 | USER ISSUE: Robotic Assembly Line - bad collision - **Version:** 0.7.5.0 beta staging-bad4361f
Robotic Assembly Line have really bad collision :(







| priority | user issue robotic assembly line bad collision version beta staging robotic assembly line have really bad collision | 1 |
823,441 | 31,019,760,253 | IssuesEvent | 2023-08-10 03:40:49 | woocommerce/woocommerce-gateway-stripe | https://api.github.com/repos/woocommerce/woocommerce-gateway-stripe | closed | Make the way fees are calculated & stored more robust | type: enhancement component: webhooks priority: medium | See p2-p7bbVw-3Fc for much more context.
The "Stripe Payout" (net) and "Stripe Fee" are stored in the order meta, and updated when <a href="https://github.com/woocommerce/woocommerce-gateway-stripe/blob/14bb72f0028c65dd64343253ab56764882d3cb39/includes/abstracts/abstract-wc-stripe-payment-gateway.php#L768">this function</a> is called.
The problem is, whenever `update_fees` is called with a `balance_transaction` object, the fees and the net are **added** to the existing ones. That's needed for it to work well for partial refunds.
`update_fees` is called from all over the place. When a charge is completed (if it's set to capture immediately), when a charge is captured (if it's set to "authorize"), when a webhook arrives informing the site that a charge has been captured/succeeded/refunded... The linked P2 has a report of what looks like a race condition, resulting in the `net` and `fees` being double of what they should be. My guess is that a `charge.succeeded` webhook (or `charge.captured`) arrived at the same time as the charge was processed in the frontend. | 1.0 | Make the way fees are calculated & stored more robust - See p2-p7bbVw-3Fc for much more context.
The "Stripe Payout" (net) and "Stripe Fee" are stored in the order meta, and updated when <a href="https://github.com/woocommerce/woocommerce-gateway-stripe/blob/14bb72f0028c65dd64343253ab56764882d3cb39/includes/abstracts/abstract-wc-stripe-payment-gateway.php#L768">this function</a> is called.
The problem is, whenever `update_fees` is called with a `balance_transaction` object, the fees and the net are **added** to the existing ones. That's needed for it to work well for partial refunds.
`update_fees` is called from all over the place. When a charge is completed (if it's set to capture immediately), when a charge is captured (if it's set to "authorize"), when a webhook arrives informing the site that a charge has been captured/succeeded/refunded... The linked P2 has a report of what looks like a race condition, resulting in the `net` and `fees` being double of what they should be. My guess is that a `charge.succeeded` webhook (or `charge.captured`) arrived at the same time as the charge was processed in the frontend. | priority | make the way fees are calculated stored more robust see for much more context the stripe payout net and stripe fee are stored in the order meta and updated when is called the problem is whenever update fees is called with a balance transaction object the fees and the net are added to the existing ones that s needed for it to work well for partial refunds update fees is called from all over the place when a charge is completed if it s set to capture immediately when a charge is captured if it s set to authorize when a webhook arrives informing the site that a charge has been captured succeeded refunded the linked has a report of what looks like a race condition resulting in the net and fees being double of what they should be my guess is that a charge succeeded webhook or charge captured arrived at the same time as the charge was processed in the frontend | 1 |
532,890 | 15,572,730,573 | IssuesEvent | 2021-03-17 07:32:55 | AY2021S2-CS2103-T14-2/tp | https://api.github.com/repos/AY2021S2-CS2103-T14-2/tp | closed | View entire review of an entry | priority.Medium type.Task | As a user deciding to revisit a place, I would like to expand all the reviews of an entry so that I can read all the reviews in a glance. | 1.0 | View entire review of an entry - As a user deciding to revisit a place, I would like to expand all the reviews of an entry so that I can read all the reviews in a glance. | priority | view entire review of an entry as a user deciding to revisit a place i would like to expand all the reviews of an entry so that i can read all the reviews in a glance | 1 |
56,236 | 3,078,614,629 | IssuesEvent | 2015-08-21 11:32:13 | pavel-pimenov/flylinkdc-r5xx | https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx | closed | Ошибки в русской локализации | bug Component-UI imported Priority-Medium | _From [vga...@gmail.com](https://code.google.com/u/107925372590028244736/) on July 25, 2011 07:53:36_
Я, конечно, всё понимаю, но слово "невозможно" пишется слитно. ;) r400 (7008)
**Attachment:** [1.jpg](http://code.google.com/p/flylinkdc/issues/detail?id=516)
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=516_ | 1.0 | Ошибки в русской локализации - _From [vga...@gmail.com](https://code.google.com/u/107925372590028244736/) on July 25, 2011 07:53:36_
Я, конечно, всё понимаю, но слово "невозможно" пишется слитно. ;) r400 (7008)
**Attachment:** [1.jpg](http://code.google.com/p/flylinkdc/issues/detail?id=516)
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=516_ | priority | ошибки в русской локализации from on july я конечно всё понимаю но слово невозможно пишется слитно attachment original issue | 1 |
91,136 | 3,838,000,374 | IssuesEvent | 2016-04-02 03:44:37 | cs2103jan2016-f14-2j/main | https://api.github.com/repos/cs2103jan2016-f14-2j/main | closed | UI: Maybe change date to "12 Jun 2016" rather than "12/6/16" | priority.medium type.enhancement | Friend say easier to understand at one glance | 1.0 | UI: Maybe change date to "12 Jun 2016" rather than "12/6/16" - Friend say easier to understand at one glance | priority | ui maybe change date to jun rather than friend say easier to understand at one glance | 1 |
224,710 | 7,472,053,780 | IssuesEvent | 2018-04-03 11:20:55 | salesagility/SuiteCRM | https://api.github.com/repos/salesagility/SuiteCRM | closed | Wrong JS File referenced in Contacts DetailViewDefs | Fix Proposed Medium Priority Resolved: Next Release bug | <!--- Provide a general summary of the issue in the **Title** above -->
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
<!--- If you have discovered a security risk please report it by emailing security@suitecrm.com. This will be delivered to the product team who handle security issues. Please don't disclose security bugs publicly until they have been handled by the security team. --->
#### Issue
Wrong file is referenced in modules/Contacts/metadata/detailviewdefs.php on line 151
Currently it says:
```
'includes' =>
array (
0 =>
array (
'file' => 'modules/Leads/Lead.js',
),
),
```
#### Expected Behavior
It should say:
```
'includes' =>
array (
0 =>
array (
'file' => 'modules/Contacts/Contact.js',
),
),
```
#### Actual Behavior
Wrong JS file is loaded
#### Possible Fix
```
'includes' =>
array (
0 =>
array (
'file' => 'modules/Contacts/Contact.js',
),
),
```
#### Steps to Reproduce
1. Navigate to modules/Contacts/metadata/detailviewdefs.php on line 151
2. Look at code
#### Context
I was making some changes in my custom detailviewdefs.php and noticed that, I went back to ensure it wasn't just my instance and saw it was a SuiteCRM bug.
#### Your Environment
* SuiteCRM Version used: 7.10.1
* Browser name and version: 65.0.3325.181 64-bit
* Environment name and version: MySQL 5.7, PHP 7.1.12
* Operating System and version: macOS Sierra 10.12.3
| 1.0 | Wrong JS File referenced in Contacts DetailViewDefs - <!--- Provide a general summary of the issue in the **Title** above -->
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
<!--- If you have discovered a security risk please report it by emailing security@suitecrm.com. This will be delivered to the product team who handle security issues. Please don't disclose security bugs publicly until they have been handled by the security team. --->
#### Issue
Wrong file is referenced in modules/Contacts/metadata/detailviewdefs.php on line 151
Currently it says:
```
'includes' =>
array (
0 =>
array (
'file' => 'modules/Leads/Lead.js',
),
),
```
#### Expected Behavior
It should say:
```
'includes' =>
array (
0 =>
array (
'file' => 'modules/Contacts/Contact.js',
),
),
```
#### Actual Behavior
Wrong JS file is loaded
#### Possible Fix
```
'includes' =>
array (
0 =>
array (
'file' => 'modules/Contacts/Contact.js',
),
),
```
#### Steps to Reproduce
1. Navigate to modules/Contacts/metadata/detailviewdefs.php on line 151
2. Look at code
#### Context
I was making some changes in my custom detailviewdefs.php and noticed that, I went back to ensure it wasn't just my instance and saw it was a SuiteCRM bug.
#### Your Environment
* SuiteCRM Version used: 7.10.1
* Browser name and version: 65.0.3325.181 64-bit
* Environment name and version: MySQL 5.7, PHP 7.1.12
* Operating System and version: macOS Sierra 10.12.3
| priority | wrong js file referenced in contacts detailviewdefs issue wrong file is referenced in modules contacts metadata detailviewdefs php on line currently it says includes array array file modules leads lead js expected behavior it should say includes array array file modules contacts contact js actual behavior wrong js file is loaded possible fix includes array array file modules contacts contact js steps to reproduce navigate to modules contacts metadata detailviewdefs php on line look at code context i was making some changes in my custom detailviewdefs php and noticed that i went back to ensure it wasn t just my instance and saw it was a suitecrm bug your environment suitecrm version used browser name and version bit environment name and version mysql php operating system and version macos sierra | 1 |
306,863 | 9,412,341,387 | IssuesEvent | 2019-04-10 03:35:42 | smacademic/project-cgkm | https://api.github.com/repos/smacademic/project-cgkm | closed | Need Data Structure to Store Data from DB | priority - medium type - planned feature | With the BLoC pattern we will need some structure to hold the data pulled from the SQFlite database within ArcPlanner. This structure should be able to work with Stream objects in Dart to allow for proper data flow between screens. | 1.0 | Need Data Structure to Store Data from DB - With the BLoC pattern we will need some structure to hold the data pulled from the SQFlite database within ArcPlanner. This structure should be able to work with Stream objects in Dart to allow for proper data flow between screens. | priority | need data structure to store data from db with the bloc pattern we will need some structure to hold the data pulled from the sqflite database within arcplanner this structure should be able to work with stream objects in dart to allow for proper data flow between screens | 1 |
307,521 | 9,418,166,627 | IssuesEvent | 2019-04-10 18:31:52 | minio/minio | https://api.github.com/repos/minio/minio | closed | [SSE-S3] Key rotation in WORM mode | priority: medium | <!--- Provide a general summary of the issue in the Title above -->
Allow SSE-S3 key rotation in WORM mode
## Expected Behavior
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->
It should be possible to rotate keys for SSE-S3 encrypted objects, even if the server is started with WORM mode enabled. Since key rotation involves just mutating SSE-S3 specific metadata by re-wrapping the OEK (object encryption key) with a new KEK( key encryption key) derived from a new KMS data key and does not mutate the encrypted object itself, it would not violate the WORM guarantee.
## Current Behavior
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
Currently when WORM mode is enabled, we return a "The specified method is not allowed against this resource." error
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
Allow key rotation operation in WORM mode
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1. MINIO_WORM=on ./minio server /tmp/data
2. aws s3api put-object --bucket tbucket11 --key q2 --no-verify-ssl --body /home/kris/data/qrd.csv --no-verify-ssl
3. aws s3api copy-object --bucket tbucket11 --copy-source tbucket11/q2 --key q2 --no-verify-ssl --endpoint-url http://localhost:9000 --server-side-encryption AES256
4. Above operation causes a MethodNotAllowed error
## Context
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
## Regression
<!-- Is this issue a regression? (Yes / No) --> No
<!-- If Yes, optionally please include minio version or commit id or PR# that caused this regression, if you have these details. -->
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Version used (`minio version`):
* Environment name and version (e.g. nginx 1.9.1):
* Server type and version:
* Operating System and version (`uname -a`):
* Link to your project:
| 1.0 | [SSE-S3] Key rotation in WORM mode - <!--- Provide a general summary of the issue in the Title above -->
Allow SSE-S3 key rotation in WORM mode
## Expected Behavior
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->
It should be possible to rotate keys for SSE-S3 encrypted objects, even if the server is started with WORM mode enabled. Since key rotation involves just mutating SSE-S3 specific metadata by re-wrapping the OEK (object encryption key) with a new KEK( key encryption key) derived from a new KMS data key and does not mutate the encrypted object itself, it would not violate the WORM guarantee.
## Current Behavior
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
Currently when WORM mode is enabled, we return a "The specified method is not allowed against this resource." error
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
Allow key rotation operation in WORM mode
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1. MINIO_WORM=on ./minio server /tmp/data
2. aws s3api put-object --bucket tbucket11 --key q2 --no-verify-ssl --body /home/kris/data/qrd.csv --no-verify-ssl
3. aws s3api copy-object --bucket tbucket11 --copy-source tbucket11/q2 --key q2 --no-verify-ssl --endpoint-url http://localhost:9000 --server-side-encryption AES256
4. Above operation causes a MethodNotAllowed error
## Context
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
## Regression
<!-- Is this issue a regression? (Yes / No) --> No
<!-- If Yes, optionally please include minio version or commit id or PR# that caused this regression, if you have these details. -->
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Version used (`minio version`):
* Environment name and version (e.g. nginx 1.9.1):
* Server type and version:
* Operating System and version (`uname -a`):
* Link to your project:
| priority | key rotation in worm mode allow sse key rotation in worm mode expected behavior it should be possible to rotate keys for sse encrypted objects even if the server is started with worm mode enabled since key rotation involves just mutating sse specific metadata by re wrapping the oek object encryption key with a new kek key encryption key derived from a new kms data key and does not mutate the encrypted object itself it would not violate the worm guarantee current behavior currently when worm mode is enabled we return a the specified method is not allowed against this resource error possible solution allow key rotation operation in worm mode steps to reproduce for bugs minio worm on minio server tmp data aws put object bucket key no verify ssl body home kris data qrd csv no verify ssl aws copy object bucket copy source key no verify ssl endpoint url server side encryption above operation causes a methodnotallowed error context regression no your environment version used minio version environment name and version e g nginx server type and version operating system and version uname a link to your project | 1 |
87,734 | 3,757,410,728 | IssuesEvent | 2016-03-13 23:29:28 | gama-platform/gama | https://api.github.com/repos/gama-platform/gama | opened | Ubuntu 14: menu items "Add monitor" and "Toggle console" are grayed out | > Bug Affects Usability Concerns Interface OS Linux Priority Medium Version Git | This does not happen under Windows or MacOS X. | 1.0 | Ubuntu 14: menu items "Add monitor" and "Toggle console" are grayed out - This does not happen under Windows or MacOS X. | priority | ubuntu menu items add monitor and toggle console are grayed out this does not happen under windows or macos x | 1 |
384,368 | 11,388,078,656 | IssuesEvent | 2020-01-29 16:04:40 | conan-io/conan | https://api.github.com/repos/conan-io/conan | closed | [bug] Auth with Artifactory from revisions to no-revisions | complex: medium priority: low stage: queue type: bug type: look into | As previously reported in #6082, passing the `--no-overwrite` flag when uploading a conan package does not take revisions into account. This means that if "revisions" is enabaled, a new package will be uploaded, invalidating the previous revision. Although nothing is technically overwritten (since we get a new revision), the flag works in a counter intuitive way. I request a feature where there is a Conan way of preventing upoading a new revision if a revision already exists. This could be done in two ways:
1. Make the `no-overwrite` flag take revisions into account and document this.
2. Document that `--no-overwrite` does not have any effect working with revisions and implement a new flag `--no-revision` that prevents uploading new revisions.
I think the first alternative would make most sence.
| 1.0 | [bug] Auth with Artifactory from revisions to no-revisions - As previously reported in #6082, passing the `--no-overwrite` flag when uploading a conan package does not take revisions into account. This means that if "revisions" is enabaled, a new package will be uploaded, invalidating the previous revision. Although nothing is technically overwritten (since we get a new revision), the flag works in a counter intuitive way. I request a feature where there is a Conan way of preventing upoading a new revision if a revision already exists. This could be done in two ways:
1. Make the `no-overwrite` flag take revisions into account and document this.
2. Document that `--no-overwrite` does not have any effect working with revisions and implement a new flag `--no-revision` that prevents uploading new revisions.
I think the first alternative would make most sence.
| priority | auth with artifactory from revisions to no revisions as previously reported in passing the no overwrite flag when uploading a conan package does not take revisions into account this means that if revisions is enabaled a new package will be uploaded invalidating the previous revision although nothing is technically overwritten since we get a new revision the flag works in a counter intuitive way i request a feature where there is a conan way of preventing upoading a new revision if a revision already exists this could be done in two ways make the no overwrite flag take revisions into account and document this document that no overwrite does not have any effect working with revisions and implement a new flag no revision that prevents uploading new revisions i think the first alternative would make most sence | 1 |
445,216 | 12,827,653,538 | IssuesEvent | 2020-07-06 18:55:33 | carbon-design-system/ibm-dotcom-library | https://api.github.com/repos/carbon-design-system/ibm-dotcom-library | closed | Create web components package in the monorepo | Airtable Done dev package: web components priority: medium sprint demo | <!-- Avoid any type of solutions in this user story -->
<!-- replace _{{...}}_ with your own words or remove -->
#### User Story
<!-- {{Provide a detailed description of the user's need here, but avoid any type of solutions}} -->
> As a `[user role below]`:
IBM.com Library adopter
> I need to:
have an available IBM.com Library package using web components
> so that I can:
utilize the web components version of the IBM.com Library components in my application
#### Additional information
<!-- {{Please provide any additional information or resources for reference}} -->
- As discussed, we'd like to begin the creation of the IBM.com Library web components package in our monorepo
- Should publish to package name `@carbon/ibmdotcom-web-components`
- We probably want to start out with a pre-minor release version `0.0.0`?
- devops flow needed for deploy previews as well as the test environment (https://ibmdotcom-webcomponents-canary.mybluemix.net)
- @asudoh please include any additional details here
#### Acceptance criteria
- [ ] `web-components` package added to the monorepo
- [ ] devops flow setup for deploy previews based on label `package: web components`
- [ ] devops flow setup for test environment upon updates to `master`
<!-- Consider the following when writing Acceptance criteria for this story. -->
<!-- *** Each product backlog item or user story should have at least one Acceptance criteria. -->
<!-- *** Acceptance criteria defines a deliverable that can be completed in a single sprint -->
<!-- *** Each Acceptance criterion is independently testable. -->
<!-- *** Include functional as well as non-functional criteria – when relevant. -->
<!-- *** Team members write Acceptance criteria and the Product Owner verifies it. -->
| 1.0 | Create web components package in the monorepo - <!-- Avoid any type of solutions in this user story -->
<!-- replace _{{...}}_ with your own words or remove -->
#### User Story
<!-- {{Provide a detailed description of the user's need here, but avoid any type of solutions}} -->
> As a `[user role below]`:
IBM.com Library adopter
> I need to:
have an available IBM.com Library package using web components
> so that I can:
utilize the web components version of the IBM.com Library components in my application
#### Additional information
<!-- {{Please provide any additional information or resources for reference}} -->
- As discussed, we'd like to begin the creation of the IBM.com Library web components package in our monorepo
- Should publish to package name `@carbon/ibmdotcom-web-components`
- We probably want to start out with a pre-minor release version `0.0.0`?
- devops flow needed for deploy previews as well as the test environment (https://ibmdotcom-webcomponents-canary.mybluemix.net)
- @asudoh please include any additional details here
#### Acceptance criteria
- [ ] `web-components` package added to the monorepo
- [ ] devops flow setup for deploy previews based on label `package: web components`
- [ ] devops flow setup for test environment upon updates to `master`
<!-- Consider the following when writing Acceptance criteria for this story. -->
<!-- *** Each product backlog item or user story should have at least one Acceptance criteria. -->
<!-- *** Acceptance criteria defines a deliverable that can be completed in a single sprint -->
<!-- *** Each Acceptance criterion is independently testable. -->
<!-- *** Include functional as well as non-functional criteria – when relevant. -->
<!-- *** Team members write Acceptance criteria and the Product Owner verifies it. -->
| priority | create web components package in the monorepo user story as a ibm com library adopter i need to have an available ibm com library package using web components so that i can utilize the web components version of the ibm com library components in my application additional information as discussed we d like to begin the creation of the ibm com library web components package in our monorepo should publish to package name carbon ibmdotcom web components we probably want to start out with a pre minor release version devops flow needed for deploy previews as well as the test environment asudoh please include any additional details here acceptance criteria web components package added to the monorepo devops flow setup for deploy previews based on label package web components devops flow setup for test environment upon updates to master | 1 |
622,828 | 19,657,663,700 | IssuesEvent | 2022-01-10 14:09:05 | projectdiscovery/httpx | https://api.github.com/repos/projectdiscovery/httpx | closed | New feature to display / filter / match against line count of the response "body" | Priority: Medium Status: Completed Type: Enhancement | I was thinking that would be awesome if line number parameter could be accepted as content-length.
i mean, the tool could allow a user requires line numbers retrieve from the http requests to the target
Line numbers are fairly used on tools like ffuf.
I've used httpx alot and i think that only this parameter is currently missing to be a full tool to bug hunters =)
Thank you | 1.0 | New feature to display / filter / match against line count of the response "body" - I was thinking that would be awesome if line number parameter could be accepted as content-length.
i mean, the tool could allow a user requires line numbers retrieve from the http requests to the target
Line numbers are fairly used on tools like ffuf.
I've used httpx alot and i think that only this parameter is currently missing to be a full tool to bug hunters =)
Thank you | priority | new feature to display filter match against line count of the response body i was thinking that would be awesome if line number parameter could be accepted as content length i mean the tool could allow a user requires line numbers retrieve from the http requests to the target line numbers are fairly used on tools like ffuf i ve used httpx alot and i think that only this parameter is currently missing to be a full tool to bug hunters thank you | 1 |
57,681 | 3,083,255,251 | IssuesEvent | 2015-08-24 07:38:49 | magro/memcached-session-manager | https://api.github.com/repos/magro/memcached-session-manager | opened | request.getSession(false) delay 3 Seconds | bug imported Priority-Medium | _From [hix...@gmail.com](https://code.google.com/u/111202749396891281793/) on May 29, 2014 05:42:08_
<b>What steps will reproduce the problem?</b>
1.one controller login success, create session and setAttribute(), then redirect to main page.
2. before enter main page, security interceptor check session, but session is null, wait 3 Seconds later, security check is ok.
3. when use tomcat7 standard session, everything is ok.
<b>What version of the product are you using? On what operating system?</b>
memcached-session-manager 1.8.1 + tomcat7
_Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=207_ | 1.0 | request.getSession(false) delay 3 Seconds - _From [hix...@gmail.com](https://code.google.com/u/111202749396891281793/) on May 29, 2014 05:42:08_
<b>What steps will reproduce the problem?</b>
1.one controller login success, create session and setAttribute(), then redirect to main page.
2. before enter main page, security interceptor check session, but session is null, wait 3 Seconds later, security check is ok.
3. when use tomcat7 standard session, everything is ok.
<b>What version of the product are you using? On what operating system?</b>
memcached-session-manager 1.8.1 + tomcat7
_Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=207_ | priority | request getsession false delay seconds from on may what steps will reproduce the problem one controller login success create session and setattribute then redirect to main page before enter main page security interceptor check session but session is null wait seconds later security check is ok when use standard session everything is ok what version of the product are you using on what operating system memcached session manager original issue | 1 |
56,480 | 3,080,028,088 | IssuesEvent | 2015-08-21 19:37:06 | pavel-pimenov/flylinkdc-r5xx | https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx | closed | Не работают индивидуальные ограничения скорости по пользователям. | bug imported Priority-Medium | _From [a.rain...@gmail.com](https://code.google.com/u/117892482479228821242/) on February 07, 2012 12:17:35_
У части пользователей обнаружилось что не работают индивидуальные ограничения скорости по пользователям. Давайте разберёмся почему и при каких условиях они не работают…
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=678_ | 1.0 | Не работают индивидуальные ограничения скорости по пользователям. - _From [a.rain...@gmail.com](https://code.google.com/u/117892482479228821242/) on February 07, 2012 12:17:35_
У части пользователей обнаружилось что не работают индивидуальные ограничения скорости по пользователям. Давайте разберёмся почему и при каких условиях они не работают…
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=678_ | priority | не работают индивидуальные ограничения скорости по пользователям from on february у части пользователей обнаружилось что не работают индивидуальные ограничения скорости по пользователям давайте разберёмся почему и при каких условиях они не работают… original issue | 1 |
26,912 | 2,688,744,544 | IssuesEvent | 2015-03-31 03:30:12 | cs2103jan2015-w09-1j/main | https://api.github.com/repos/cs2103jan2015-w09-1j/main | closed | Set/Update name in settings | priority.medium type.enhancement UI | ... so that the user can keep track of what needs to be done first. | 1.0 | Set/Update name in settings - ... so that the user can keep track of what needs to be done first. | priority | set update name in settings so that the user can keep track of what needs to be done first | 1 |
771,783 | 27,092,124,637 | IssuesEvent | 2023-02-14 22:06:02 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [YSQL] Query execution with NLJ and IndexScan now takes long time | kind/enhancement area/ysql priority/medium | Jira Link: [DB-4528](https://yugabyte.atlassian.net/browse/DB-4528)
### Description
Current master behaviour 2.17.1.0-b351:
```
taqo=# explain analyze SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 2500 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25100 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2;
QUERY PLAN
----------------------------------------------------------------------------------------------------------------------------------------
Group (cost=8.04..8.06 rows=1 width=72) (actual time=2031000.139..2031005.593 rows=22600 loops=1)
Group Key: t1.k1, t1.k2, t2.v1, t2.v2
-> Sort (cost=8.04..8.05 rows=1 width=72) (actual time=2031000.136..2031002.025 rows=22600 loops=1)
Sort Key: t1.k1, t1.k2, t2.v1, t2.v2
Sort Method: external merge Disk: 3568kB
-> Nested Loop (cost=0.00..8.03 rows=1 width=72) (actual time=8.991..2030921.752 rows=22600 loops=1)
Join Filter: (t1.k1 = t2.k1)
Rows Removed by Join Filter: 510737400
-> Index Scan using t1_pkey on t1 (cost=0.00..4.01 rows=1 width=36) (actual time=4.118..53.790 rows=22600 loops=1)
Index Cond: ((k1 >= 2500) AND (k1 < 25100))
-> Index Scan using t2_pkey on t2 (cost=0.00..4.01 rows=1 width=40) (actual time=4.019..88.240 rows=22600 loops=22600)
Index Cond: ((k1 >= 2500) AND (k1 < 25100))
Planning Time: 11.267 ms
Execution Time: 2031007.848 ms
Peak Memory Usage: 4947 kB
(15 rows)
```
Previous master behaviour with CBO:
```
Group (cost=1374.07..1374.09 rows=1 width=72) (actual time=3694.170..3699.639 rows=22600 loops=1)
Group Key: t1.k1, t1.k2, t2.v1, t2.v2
-> Sort (cost=1374.07..1374.08 rows=1 width=72) (actual time=3694.168..3696.056 rows=22600 loops=1)
Sort Key: t1.k1, t1.k2, t2.v1, t2.v2
Sort Method: external merge Disk: 3568kB
-> Nested Loop (cost=0.00..1374.06 rows=1 width=72) (actual time=3.496..3675.485 rows=22600 loops=1)
-> Index Scan using t2_pkey on t2 (cost=0.00..1149.59 rows=9962 width=40) (actual time=3.261..17.742 rows=22600 loops=1)
Index Cond: ((k1 >= 2500) AND (k1 < 25100))
-> Index Scan using t1_pkey on t1 (cost=0.00..0.01 rows=1 width=36) (actual time=0.154..0.155 rows=1 loops=22600)
Index Cond: ((k1 = t2.k1) AND (k1 >= 2500) AND (k1 < 25100))
Planning Time: 0.995 ms
Execution Time: 3701.075 ms
Peak Memory Usage: 4942 kB
```
DDL:
[test.create.sql.zip](https://github.com/yugabyte/yugabyte-db/files/10277355/test.create.sql.zip) | 1.0 | [YSQL] Query execution with NLJ and IndexScan now takes long time - Jira Link: [DB-4528](https://yugabyte.atlassian.net/browse/DB-4528)
### Description
Current master behaviour 2.17.1.0-b351:
```
taqo=# explain analyze SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 2500 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25100 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2;
QUERY PLAN
----------------------------------------------------------------------------------------------------------------------------------------
Group (cost=8.04..8.06 rows=1 width=72) (actual time=2031000.139..2031005.593 rows=22600 loops=1)
Group Key: t1.k1, t1.k2, t2.v1, t2.v2
-> Sort (cost=8.04..8.05 rows=1 width=72) (actual time=2031000.136..2031002.025 rows=22600 loops=1)
Sort Key: t1.k1, t1.k2, t2.v1, t2.v2
Sort Method: external merge Disk: 3568kB
-> Nested Loop (cost=0.00..8.03 rows=1 width=72) (actual time=8.991..2030921.752 rows=22600 loops=1)
Join Filter: (t1.k1 = t2.k1)
Rows Removed by Join Filter: 510737400
-> Index Scan using t1_pkey on t1 (cost=0.00..4.01 rows=1 width=36) (actual time=4.118..53.790 rows=22600 loops=1)
Index Cond: ((k1 >= 2500) AND (k1 < 25100))
-> Index Scan using t2_pkey on t2 (cost=0.00..4.01 rows=1 width=40) (actual time=4.019..88.240 rows=22600 loops=22600)
Index Cond: ((k1 >= 2500) AND (k1 < 25100))
Planning Time: 11.267 ms
Execution Time: 2031007.848 ms
Peak Memory Usage: 4947 kB
(15 rows)
```
Previous master behaviour with CBO:
```
Group (cost=1374.07..1374.09 rows=1 width=72) (actual time=3694.170..3699.639 rows=22600 loops=1)
Group Key: t1.k1, t1.k2, t2.v1, t2.v2
-> Sort (cost=1374.07..1374.08 rows=1 width=72) (actual time=3694.168..3696.056 rows=22600 loops=1)
Sort Key: t1.k1, t1.k2, t2.v1, t2.v2
Sort Method: external merge Disk: 3568kB
-> Nested Loop (cost=0.00..1374.06 rows=1 width=72) (actual time=3.496..3675.485 rows=22600 loops=1)
-> Index Scan using t2_pkey on t2 (cost=0.00..1149.59 rows=9962 width=40) (actual time=3.261..17.742 rows=22600 loops=1)
Index Cond: ((k1 >= 2500) AND (k1 < 25100))
-> Index Scan using t1_pkey on t1 (cost=0.00..0.01 rows=1 width=36) (actual time=0.154..0.155 rows=1 loops=22600)
Index Cond: ((k1 = t2.k1) AND (k1 >= 2500) AND (k1 < 25100))
Planning Time: 0.995 ms
Execution Time: 3701.075 ms
Peak Memory Usage: 4942 kB
```
DDL:
[test.create.sql.zip](https://github.com/yugabyte/yugabyte-db/files/10277355/test.create.sql.zip) | priority | query execution with nlj and indexscan now takes long time jira link description current master behaviour taqo explain analyze select from join on where and and group by query plan group cost rows width actual time rows loops group key sort cost rows width actual time rows loops sort key sort method external merge disk nested loop cost rows width actual time rows loops join filter rows removed by join filter index scan using pkey on cost rows width actual time rows loops index cond and index scan using pkey on cost rows width actual time rows loops index cond and planning time ms execution time ms peak memory usage kb rows previous master behaviour with cbo group cost rows width actual time rows loops group key sort cost rows width actual time rows loops sort key sort method external merge disk nested loop cost rows width actual time rows loops index scan using pkey on cost rows width actual time rows loops index cond and index scan using pkey on cost rows width actual time rows loops index cond and and planning time ms execution time ms peak memory usage kb ddl | 1 |
16,640 | 2,615,120,475 | IssuesEvent | 2015-03-01 05:46:44 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | closed | google-api-java-client sample for Google Finance | auto-migrated Priority-Medium Type-Sample | ```
Which Google API and version (e.g. Google Calendar Data API version 2)?
Google Finance API
What format (e.g. JSON, Atom)?
JSON
What Authentation (e.g. OAuth, OAuth 2, Android, ClientLogin)?
Android
Java environment (e.g. Java 6, Android 2.3, App Engine 1.4.2)?
Android 2.2+
External references, such as API reference guide?
Please provide any additional information below.
It would be very helpful to see an example comparable to what is available on
the older google-java-client site.
```
Original issue reported on code.google.com by `whel...@gmail.com` on 17 May 2011 at 11:23 | 1.0 | google-api-java-client sample for Google Finance - ```
Which Google API and version (e.g. Google Calendar Data API version 2)?
Google Finance API
What format (e.g. JSON, Atom)?
JSON
What Authentation (e.g. OAuth, OAuth 2, Android, ClientLogin)?
Android
Java environment (e.g. Java 6, Android 2.3, App Engine 1.4.2)?
Android 2.2+
External references, such as API reference guide?
Please provide any additional information below.
It would be very helpful to see an example comparable to what is available on
the older google-java-client site.
```
Original issue reported on code.google.com by `whel...@gmail.com` on 17 May 2011 at 11:23 | priority | google api java client sample for google finance which google api and version e g google calendar data api version google finance api what format e g json atom json what authentation e g oauth oauth android clientlogin android java environment e g java android app engine android external references such as api reference guide please provide any additional information below it would be very helpful to see an example comparable to what is available on the older google java client site original issue reported on code google com by whel gmail com on may at | 1 |
51,348 | 3,012,793,011 | IssuesEvent | 2015-07-29 02:39:34 | yawlfoundation/yawl | https://api.github.com/repos/yawlfoundation/yawl | closed | Ideas for Extended Attributes | auto-migrated Priority-Medium Type-Enhancement | ```
Objective: To support a user-friendly display text generation within
dynamic forms using extended attributes
Desired outcome: Display text is represented as a function using a name
and a value and other static text.
Examples:
1: Name=FirstName, Value=Moe, displayText = $FirstName + " is" + $value.
2: Name=boolExternalStudent, Value=true, displayText = The student is an
external student or The student is not an external student (if condition
based on the value (True/False))
3. Name=Grade, Value=7 (range 1-7), displayText = The grade is a
HighDistinction (Case statement based on the value)
4. Name=boolNoScholarship, Value=T/F, displayText = Does the student has a
scholarship? (show the static text string and show a checkbox for the
boolean value)
```
Original issue reported on code.google.com by `moew...@gmail.com` on 12 Sep 2008 at 6:51 | 1.0 | Ideas for Extended Attributes - ```
Objective: To support a user-friendly display text generation within
dynamic forms using extended attributes
Desired outcome: Display text is represented as a function using a name
and a value and other static text.
Examples:
1: Name=FirstName, Value=Moe, displayText = $FirstName + " is" + $value.
2: Name=boolExternalStudent, Value=true, displayText = The student is an
external student or The student is not an external student (if condition
based on the value (True/False))
3. Name=Grade, Value=7 (range 1-7), displayText = The grade is a
HighDistinction (Case statement based on the value)
4. Name=boolNoScholarship, Value=T/F, displayText = Does the student has a
scholarship? (show the static text string and show a checkbox for the
boolean value)
```
Original issue reported on code.google.com by `moew...@gmail.com` on 12 Sep 2008 at 6:51 | priority | ideas for extended attributes objective to support a user friendly display text generation within dynamic forms using extended attributes desired outcome display text is represented as a function using a name and a value and other static text examples name firstname value moe displaytext firstname is value name boolexternalstudent value true displaytext the student is an external student or the student is not an external student if condition based on the value true false name grade value range displaytext the grade is a highdistinction case statement based on the value name boolnoscholarship value t f displaytext does the student has a scholarship show the static text string and show a checkbox for the boolean value original issue reported on code google com by moew gmail com on sep at | 1 |
387,040 | 11,455,029,462 | IssuesEvent | 2020-02-06 18:15:21 | sunpy/sunpy | https://api.github.com/repos/sunpy/sunpy | closed | Update gallery to use map utils for coordinate arrays | Effort Medium Examples Package Novice Priority Low | The new map utils provide convenience functions to get arrays of all pixels coordinates but they are not currently used in the gallery examples. | 1.0 | Update gallery to use map utils for coordinate arrays - The new map utils provide convenience functions to get arrays of all pixels coordinates but they are not currently used in the gallery examples. | priority | update gallery to use map utils for coordinate arrays the new map utils provide convenience functions to get arrays of all pixels coordinates but they are not currently used in the gallery examples | 1 |
628,977 | 20,020,133,368 | IssuesEvent | 2022-02-01 15:41:38 | stackabletech/t2 | https://api.github.com/repos/stackabletech/t2 | opened | Reduce size of testdriver image | priority/medium | The testdriver image is very large as it consists of many steps in the Dockerfile. We should optimize this. | 1.0 | Reduce size of testdriver image - The testdriver image is very large as it consists of many steps in the Dockerfile. We should optimize this. | priority | reduce size of testdriver image the testdriver image is very large as it consists of many steps in the dockerfile we should optimize this | 1 |
485,613 | 13,996,075,441 | IssuesEvent | 2020-10-28 04:57:32 | gradebook/server | https://api.github.com/repos/gradebook/server | closed | Allow grade names to be up to 55 characters in length | Effort: Low Priority: Medium question | Currently, we allow grades to have a maximum of 50 character names. This is normally fine, but now that we've made changes to the create category UI, we're running into validation errors with really long category names.
Why? Because category names and grade names have the same maximum length (50ch), but grade names have more context than category names (adding the grade "id")
As an example, if you have a category called `This will be a very long category name for a demos`, the grades will be `This will be a very long category name for a demo 35` which is 52 characters and fails validation
Proposal:
Update grade max length to be 55ch to account for increased context
@joshcosta what do you think, do you see any issues with this? | 1.0 | Allow grade names to be up to 55 characters in length - Currently, we allow grades to have a maximum of 50 character names. This is normally fine, but now that we've made changes to the create category UI, we're running into validation errors with really long category names.
Why? Because category names and grade names have the same maximum length (50ch), but grade names have more context than category names (adding the grade "id")
As an example, if you have a category called `This will be a very long category name for a demos`, the grades will be `This will be a very long category name for a demo 35` which is 52 characters and fails validation
Proposal:
Update grade max length to be 55ch to account for increased context
@joshcosta what do you think, do you see any issues with this? | priority | allow grade names to be up to characters in length currently we allow grades to have a maximum of character names this is normally fine but now that we ve made changes to the create category ui we re running into validation errors with really long category names why because category names and grade names have the same maximum length but grade names have more context than category names adding the grade id as an example if you have a category called this will be a very long category name for a demos the grades will be this will be a very long category name for a demo which is characters and fails validation proposal update grade max length to be to account for increased context joshcosta what do you think do you see any issues with this | 1 |
831,702 | 32,059,030,734 | IssuesEvent | 2023-09-24 12:44:40 | Team-Ampersand/Dotori-iOS | https://api.github.com/repos/Team-Ampersand/Dotori-iOS | closed | build phase에서 swift format 제외하기 | 2️⃣Priority: Medium 🪡 Want | ### Describe
빌드시간을 너무 잡아먹는거같아요
### Additional
_No response_ | 1.0 | build phase에서 swift format 제외하기 - ### Describe
빌드시간을 너무 잡아먹는거같아요
### Additional
_No response_ | priority | build phase에서 swift format 제외하기 describe 빌드시간을 너무 잡아먹는거같아요 additional no response | 1 |
826,500 | 31,626,736,214 | IssuesEvent | 2023-09-06 06:11:00 | oceanbase/odc | https://api.github.com/repos/oceanbase/odc | opened | [Bug]: Approval task report TaskEntities can not be empty | type-bug priority-medium | ### ODC version
ODC4.2.0
### OB version
Oceanbase 4.1.0
### What happened?
Approval task report TaskEntities can not be empty
### What did you expect to happen?
Execute the task normally
### How can we reproduce it (as minimally and precisely as possible)?
1. Create approval tasks
2. click through


### Anything else we need to know?
_No response_
### Cloud
_No response_ | 1.0 | [Bug]: Approval task report TaskEntities can not be empty - ### ODC version
ODC4.2.0
### OB version
Oceanbase 4.1.0
### What happened?
Approval task report TaskEntities can not be empty
### What did you expect to happen?
Execute the task normally
### How can we reproduce it (as minimally and precisely as possible)?
1. Create approval tasks
2. click through


### Anything else we need to know?
_No response_
### Cloud
_No response_ | priority | approval task report taskentities can not be empty odc version ob version oceanbase what happened approval task report taskentities can not be empty what did you expect to happen execute the task normally how can we reproduce it as minimally and precisely as possible create approval tasks click through anything else we need to know no response cloud no response | 1 |
70,958 | 3,349,597,189 | IssuesEvent | 2015-11-17 10:32:08 | gbif/ipt | https://api.github.com/repos/gbif/ipt | opened | Cleanup invalid resource directories on startup | enhancement Priority-Medium Type-Enhancement Usability | Issue #1191 (fixed in v2.3) may have left behind invalid resource directories (directories without a resource configuration file) inside the IPT's data directory.
These invalid resource directories should be removed, to avoid cluttering the logs with errors such as:
```
ERROR Cannot read resource configuration for {resource_shortname}
java.io.FileNotFoundException: $ipt-data/resources/{resource_shortname}/resource.xml (No such file or directory)
``` | 1.0 | Cleanup invalid resource directories on startup - Issue #1191 (fixed in v2.3) may have left behind invalid resource directories (directories without a resource configuration file) inside the IPT's data directory.
These invalid resource directories should be removed, to avoid cluttering the logs with errors such as:
```
ERROR Cannot read resource configuration for {resource_shortname}
java.io.FileNotFoundException: $ipt-data/resources/{resource_shortname}/resource.xml (No such file or directory)
``` | priority | cleanup invalid resource directories on startup issue fixed in may have left behind invalid resource directories directories without a resource configuration file inside the ipt s data directory these invalid resource directories should be removed to avoid cluttering the logs with errors such as error cannot read resource configuration for resource shortname java io filenotfoundexception ipt data resources resource shortname resource xml no such file or directory | 1 |
483,244 | 13,921,313,497 | IssuesEvent | 2020-10-21 11:45:43 | enso-org/enso | https://api.github.com/repos/enso-org/enso | opened | Calling an Ambiguous Type Constructor Breaks the Compiler | Category: Compiler Change: Non-Breaking Difficulty: Core Contributor Priority: Medium Type: Bug | <!--
Please ensure that you are running the latest version of Enso before reporting
the bug! It may have been fixed since.
-->
### General Summary
<!--
- Please include a high-level description of your bug here.
-->
Given two type definitions with the same name but in a different case. The compiler crashes when attempting to call a type constructor.
### Steps to Reproduce
```py
from Base import all
type Uri
type Uri uri_1
type URI
type URI uri_2
main = Uri ""
```
```
Exception in thread "main" org.graalvm.polyglot.PolyglotException: scala.MatchError: (uri,List(ResolvedConstructor(org.enso.interpreter.runtime.Module@4a216eb4,Cons(Uri,1)), ResolvedConstructor(org.enso.interpreter.runtime.Module@4a216eb4,Cons(URI,1)))) (of class scala.Tuple2)
at org.enso.compiler.codegen.IrToTruffle.$anonfun$generateReExportBindings$1(IrToTruffle.scala:383)
at org.enso.compiler.codegen.IrToTruffle.$anonfun$generateReExportBindings$1$adapted(IrToTruffle.scala:383)
at scala.collection.immutable.HashMap.foreach(HashMap.scala:1076)
at org.enso.compiler.codegen.IrToTruffle.generateReExportBindings(IrToTruffle.scala:383)
at org.enso.compiler.codegen.IrToTruffle.processModule(IrToTruffle.scala:146)
at org.enso.compiler.codegen.IrToTruffle.run(IrToTruffle.scala:115)
...
```
<!--
Please list the reproduction steps for your bug. For example:
1. Launch the enso interpreter in server mode `enso --server --socket:8080`.
2. Send it a message as follows, where `path/to/project` doesn't exist.
```json
{
message-type: "load-project",
load-project: {
path: "path/to/project"
}
...
}
```
3. Observe that the compiler crashes.
-->
### Expected Result
The compiler does not crash.
<!--
- A description of the results you expected from the reproduction steps.
-->
### Actual Result
Compiler crashes.
<!--
- A description of what actually happens when you run these steps.
- Please include any error output if relevant.
-->
### Enso Version
main @ 207aaaccf51d0faca79e9db7c67c1edb22a29edf
<!--
- Please include the output of `enso --version`.
For example:
```
Enso Compiler and Runtime
Version: 0.1.0
Built with: scala-2.13.3 for GraalVM 20.2.0
Built from: main* @ 919ffbdfacc44cc35a1b38f1bad5b573acdbe358
Running on: OpenJDK 64-Bit Server VM, GraalVM Community, JDK 11.0.8+10-jvmci-20.2-b03
Linux 4.15.0-112-generic (amd64)
```
-->
| 1.0 | Calling an Ambiguous Type Constructor Breaks the Compiler - <!--
Please ensure that you are running the latest version of Enso before reporting
the bug! It may have been fixed since.
-->
### General Summary
<!--
- Please include a high-level description of your bug here.
-->
Given two type definitions with the same name but in a different case. The compiler crashes when attempting to call a type constructor.
### Steps to Reproduce
```py
from Base import all
type Uri
type Uri uri_1
type URI
type URI uri_2
main = Uri ""
```
```
Exception in thread "main" org.graalvm.polyglot.PolyglotException: scala.MatchError: (uri,List(ResolvedConstructor(org.enso.interpreter.runtime.Module@4a216eb4,Cons(Uri,1)), ResolvedConstructor(org.enso.interpreter.runtime.Module@4a216eb4,Cons(URI,1)))) (of class scala.Tuple2)
at org.enso.compiler.codegen.IrToTruffle.$anonfun$generateReExportBindings$1(IrToTruffle.scala:383)
at org.enso.compiler.codegen.IrToTruffle.$anonfun$generateReExportBindings$1$adapted(IrToTruffle.scala:383)
at scala.collection.immutable.HashMap.foreach(HashMap.scala:1076)
at org.enso.compiler.codegen.IrToTruffle.generateReExportBindings(IrToTruffle.scala:383)
at org.enso.compiler.codegen.IrToTruffle.processModule(IrToTruffle.scala:146)
at org.enso.compiler.codegen.IrToTruffle.run(IrToTruffle.scala:115)
...
```
<!--
Please list the reproduction steps for your bug. For example:
1. Launch the enso interpreter in server mode `enso --server --socket:8080`.
2. Send it a message as follows, where `path/to/project` doesn't exist.
```json
{
message-type: "load-project",
load-project: {
path: "path/to/project"
}
...
}
```
3. Observe that the compiler crashes.
-->
### Expected Result
The compiler does not crash.
<!--
- A description of the results you expected from the reproduction steps.
-->
### Actual Result
Compiler crashes.
<!--
- A description of what actually happens when you run these steps.
- Please include any error output if relevant.
-->
### Enso Version
main @ 207aaaccf51d0faca79e9db7c67c1edb22a29edf
<!--
- Please include the output of `enso --version`.
For example:
```
Enso Compiler and Runtime
Version: 0.1.0
Built with: scala-2.13.3 for GraalVM 20.2.0
Built from: main* @ 919ffbdfacc44cc35a1b38f1bad5b573acdbe358
Running on: OpenJDK 64-Bit Server VM, GraalVM Community, JDK 11.0.8+10-jvmci-20.2-b03
Linux 4.15.0-112-generic (amd64)
```
-->
| priority | calling an ambiguous type constructor breaks the compiler please ensure that you are running the latest version of enso before reporting the bug it may have been fixed since general summary please include a high level description of your bug here given two type definitions with the same name but in a different case the compiler crashes when attempting to call a type constructor steps to reproduce py from base import all type uri type uri uri type uri type uri uri main uri exception in thread main org graalvm polyglot polyglotexception scala matcherror uri list resolvedconstructor org enso interpreter runtime module cons uri resolvedconstructor org enso interpreter runtime module cons uri of class scala at org enso compiler codegen irtotruffle anonfun generatereexportbindings irtotruffle scala at org enso compiler codegen irtotruffle anonfun generatereexportbindings adapted irtotruffle scala at scala collection immutable hashmap foreach hashmap scala at org enso compiler codegen irtotruffle generatereexportbindings irtotruffle scala at org enso compiler codegen irtotruffle processmodule irtotruffle scala at org enso compiler codegen irtotruffle run irtotruffle scala please list the reproduction steps for your bug for example launch the enso interpreter in server mode enso server socket send it a message as follows where path to project doesn t exist json message type load project load project path path to project observe that the compiler crashes expected result the compiler does not crash a description of the results you expected from the reproduction steps actual result compiler crashes a description of what actually happens when you run these steps please include any error output if relevant enso version main please include the output of enso version for example enso compiler and runtime version built with scala for graalvm built from main running on openjdk bit server vm graalvm community jdk jvmci linux generic | 1 |
421,686 | 12,260,223,323 | IssuesEvent | 2020-05-06 17:55:40 | DaPigGuy/PiggyFactions | https://api.github.com/repos/DaPigGuy/PiggyFactions | closed | Should add | Priority: Medium Type: Enhancement | You should add blacklist commands where you cant run commands in a claim. For example if you blacklist sethome if you dont own the claim and or faction owns tje claim you can not set home. | 1.0 | Should add - You should add blacklist commands where you cant run commands in a claim. For example if you blacklist sethome if you dont own the claim and or faction owns tje claim you can not set home. | priority | should add you should add blacklist commands where you cant run commands in a claim for example if you blacklist sethome if you dont own the claim and or faction owns tje claim you can not set home | 1 |
601,706 | 18,427,644,932 | IssuesEvent | 2021-10-14 01:28:48 | AY2122S1-CS2103T-T15-3/tp | https://api.github.com/repos/AY2122S1-CS2103T-T15-3/tp | closed | Improve Retrieve for specific student | type.Enhancement priority.Medium | # Current Issue
The current Retrieve command would retrieve queried information from all students. E.g. if there are 3 students then
```bash
retrieve \p
```
will return a list with 3 entries.
# Proposed Change/s
Proposed Improvement: Retrieve command should be able to do the following
```bash
retrieve \p Tom
```
Expected Behavior: This should retrieve one entry, which is Tom's phone number | 1.0 | Improve Retrieve for specific student - # Current Issue
The current Retrieve command would retrieve queried information from all students. E.g. if there are 3 students then
```bash
retrieve \p
```
will return a list with 3 entries.
# Proposed Change/s
Proposed Improvement: Retrieve command should be able to do the following
```bash
retrieve \p Tom
```
Expected Behavior: This should retrieve one entry, which is Tom's phone number | priority | improve retrieve for specific student current issue the current retrieve command would retrieve queried information from all students e g if there are students then bash retrieve p will return a list with entries proposed change s proposed improvement retrieve command should be able to do the following bash retrieve p tom expected behavior this should retrieve one entry which is tom s phone number | 1 |
67,445 | 3,273,629,712 | IssuesEvent | 2015-10-26 04:25:36 | npgall/cqengine | https://api.github.com/repos/npgall/cqengine | closed | Add support for SQL EXISTS and exists-based JOIN | auto-migrated Priority-Medium Type-Enhancement | ```
Add support to query against foreign collections, similar to SQL EXISTS.
SELECT * From LocalCollection
WHERE EXISTS (
SELECT * FROM ForeignCollection
WHERE LocalCollection.localAttribute = ForeignCollection.foreignAttribute
)
This would enable joins between indexed collections.
```
Original issue reported on code.google.com by `ni...@npgall.com` on 27 Jan 2013 at 10:07 | 1.0 | Add support for SQL EXISTS and exists-based JOIN - ```
Add support to query against foreign collections, similar to SQL EXISTS.
SELECT * From LocalCollection
WHERE EXISTS (
SELECT * FROM ForeignCollection
WHERE LocalCollection.localAttribute = ForeignCollection.foreignAttribute
)
This would enable joins between indexed collections.
```
Original issue reported on code.google.com by `ni...@npgall.com` on 27 Jan 2013 at 10:07 | priority | add support for sql exists and exists based join add support to query against foreign collections similar to sql exists select from localcollection where exists select from foreigncollection where localcollection localattribute foreigncollection foreignattribute this would enable joins between indexed collections original issue reported on code google com by ni npgall com on jan at | 1 |
26,251 | 2,684,269,517 | IssuesEvent | 2015-03-28 20:29:56 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | closed | Strange behaviour with Powershell | 1 star bug imported Priority-Medium | _From [JuhaPear...@gmail.com](https://code.google.com/u/100193669704337374304/) on January 17, 2013 08:13:34_
Required information! OS version: Win7 SP1 x64 ConEmu version: 120727c
Far version (if you are using Far Manager): N/A *Bug description* Running Netsh command in Powershell produces a different result than running the same command in the native Powershell console. *Steps to reproduction* 1. netsh wlan add profile filename="foo.xml"
Result:
Profile format error 0x80420011:
The network connection profile is corrupted.
Running the same command in Powershell native results in:
Profile foo is added on interface Wireless Network Connection
Extract from debug log:
16:12:30;536:32;Inject;;32;3;C:\Windows\SysWOW64\netsh.exe;"C:\Windows\system32\netsh.exe" wlan add profile "filename=Wireless Network Connection.xml";;0x00000003;0x00000007;0x0000000B
16:12:30;6896:32;SrLoad;;32;;Alloc: 0x000C0000
16:12:30;6896:32;Create;;32;3;;"C:\Windows\system32\netsh.exe" wlan add profile "filename=Wireless Network Connection.xml";Sw:1 ;;;
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=891_ | 1.0 | Strange behaviour with Powershell - _From [JuhaPear...@gmail.com](https://code.google.com/u/100193669704337374304/) on January 17, 2013 08:13:34_
Required information! OS version: Win7 SP1 x64 ConEmu version: 120727c
Far version (if you are using Far Manager): N/A *Bug description* Running Netsh command in Powershell produces a different result than running the same command in the native Powershell console. *Steps to reproduction* 1. netsh wlan add profile filename="foo.xml"
Result:
Profile format error 0x80420011:
The network connection profile is corrupted.
Running the same command in Powershell native results in:
Profile foo is added on interface Wireless Network Connection
Extract from debug log:
16:12:30;536:32;Inject;;32;3;C:\Windows\SysWOW64\netsh.exe;"C:\Windows\system32\netsh.exe" wlan add profile "filename=Wireless Network Connection.xml";;0x00000003;0x00000007;0x0000000B
16:12:30;6896:32;SrLoad;;32;;Alloc: 0x000C0000
16:12:30;6896:32;Create;;32;3;;"C:\Windows\system32\netsh.exe" wlan add profile "filename=Wireless Network Connection.xml";Sw:1 ;;;
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=891_ | priority | strange behaviour with powershell from on january required information os version conemu version far version if you are using far manager n a bug description running netsh command in powershell produces a different result than running the same command in the native powershell console steps to reproduction netsh wlan add profile filename foo xml result profile format error the network connection profile is corrupted running the same command in powershell native results in profile foo is added on interface wireless network connection extract from debug log inject c windows netsh exe c windows netsh exe wlan add profile filename wireless network connection xml srload alloc create c windows netsh exe wlan add profile filename wireless network connection xml sw original issue | 1 |
513,938 | 14,928,695,764 | IssuesEvent | 2021-01-24 20:14:33 | bounswe/bounswe2020group4 | https://api.github.com/repos/bounswe/bounswe2020group4 | closed | Admin : Ban Vendor & Customer , Unban Vendor & Customer | Backend Coding Effort: Medium Priority: High Status: Needs Review | Deadline: 24.01.2021
Admin should be able to ban vendor and customer.
If it is necessary , admin should be able to unban them again. | 1.0 | Admin : Ban Vendor & Customer , Unban Vendor & Customer - Deadline: 24.01.2021
Admin should be able to ban vendor and customer.
If it is necessary , admin should be able to unban them again. | priority | admin ban vendor customer unban vendor customer deadline admin should be able to ban vendor and customer if it is necessary admin should be able to unban them again | 1 |
297,131 | 9,160,814,969 | IssuesEvent | 2019-03-01 08:44:48 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | [Coverity CID :190931]Control flow issues in /subsys/net/lib/lwm2m/lwm2m_rw_json.c | Coverity area: LWM2M area: Networking bug priority: medium | Static code scan issues seen in File: /subsys/net/lib/lwm2m/lwm2m_rw_json.c
Category: Control flow issues
Function: read_number
Component: Networking
CID: 190931
Please fix or provide comments to square it off in coverity in the link: https://scan9.coverity.com/reports.htm#v32951/p12996 | 1.0 | [Coverity CID :190931]Control flow issues in /subsys/net/lib/lwm2m/lwm2m_rw_json.c - Static code scan issues seen in File: /subsys/net/lib/lwm2m/lwm2m_rw_json.c
Category: Control flow issues
Function: read_number
Component: Networking
CID: 190931
Please fix or provide comments to square it off in coverity in the link: https://scan9.coverity.com/reports.htm#v32951/p12996 | priority | control flow issues in subsys net lib rw json c static code scan issues seen in file subsys net lib rw json c category control flow issues function read number component networking cid please fix or provide comments to square it off in coverity in the link | 1 |
217,875 | 7,328,652,101 | IssuesEvent | 2018-03-04 22:41:08 | Marri/glowfic | https://api.github.com/repos/Marri/glowfic | opened | Upgrade Redis to 4 | 3. medium priority 7. easy dev | <https://github.com/Marri/glowfic/blob/3395f035c598bb8593d6bcc65bc78bd19666417e/Gemfile#L27>
If/when Resque permits us to upgrade Redis to version 4, we should do that, by removing this explicitly dependency. | 1.0 | Upgrade Redis to 4 - <https://github.com/Marri/glowfic/blob/3395f035c598bb8593d6bcc65bc78bd19666417e/Gemfile#L27>
If/when Resque permits us to upgrade Redis to version 4, we should do that, by removing this explicitly dependency. | priority | upgrade redis to if when resque permits us to upgrade redis to version we should do that by removing this explicitly dependency | 1 |
762,348 | 26,716,091,699 | IssuesEvent | 2023-01-28 14:32:06 | sjdv1982/seamless | https://api.github.com/repos/sjdv1982/seamless | opened | Polish switch/select | apifix medium priority | The celltype argument is redundant, can be inferred from the other inputs.
Needs help being added. | 1.0 | Polish switch/select - The celltype argument is redundant, can be inferred from the other inputs.
Needs help being added. | priority | polish switch select the celltype argument is redundant can be inferred from the other inputs needs help being added | 1 |
283,574 | 8,719,960,669 | IssuesEvent | 2018-12-08 06:43:47 | aowen87/BAR | https://api.github.com/repos/aowen87/BAR | closed | make install / make package links for osmesa to libGL | bug likelihood medium priority reviewed severity high | To make the dynamic lib switch work.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 1549
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: High
Subject: make install / make package links for osmesa to libGL
Assigned to: Eric Brugger
Category:
Target version: 2.7
Author: Cyrus Harrison
Start: 07/30/2013
Due date:
% Done: 0
Estimated time:
Created: 07/30/2013 11:51 am
Updated: 08/30/2013 02:25 pm
Likelihood: 3 - Occasional
Severity: 5 - Very Serious
Found in version: trunk
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
To make the dynamic lib switch work.
Comments:
Hi Everyone,For Linux make install / make package with osmesa, I added the proper symlinks that allow us to use OSMesa as libGL at runtime.Trunk commit:edge84@cyrush:svn commit -m "linux / osmesa: install symlinks so osmesa can be used as libGL dynamically" FindVisItMesa.cmakeSending FindVisItMesa.cmakeTransmitting file data .Committed revision r21734.It took quite a while b/c :INSTALL(CODE....using: \$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}, not just ${CMAKE_INSTALL_PREFIX})-Cyrus
| 1.0 | make install / make package links for osmesa to libGL - To make the dynamic lib switch work.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 1549
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: High
Subject: make install / make package links for osmesa to libGL
Assigned to: Eric Brugger
Category:
Target version: 2.7
Author: Cyrus Harrison
Start: 07/30/2013
Due date:
% Done: 0
Estimated time:
Created: 07/30/2013 11:51 am
Updated: 08/30/2013 02:25 pm
Likelihood: 3 - Occasional
Severity: 5 - Very Serious
Found in version: trunk
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
To make the dynamic lib switch work.
Comments:
Hi Everyone,For Linux make install / make package with osmesa, I added the proper symlinks that allow us to use OSMesa as libGL at runtime.Trunk commit:edge84@cyrush:svn commit -m "linux / osmesa: install symlinks so osmesa can be used as libGL dynamically" FindVisItMesa.cmakeSending FindVisItMesa.cmakeTransmitting file data .Committed revision r21734.It took quite a while b/c :INSTALL(CODE....using: \$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}, not just ${CMAKE_INSTALL_PREFIX})-Cyrus
| priority | make install make package links for osmesa to libgl to make the dynamic lib switch work redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker bug priority high subject make install make package links for osmesa to libgl assigned to eric brugger category target version author cyrus harrison start due date done estimated time created am updated pm likelihood occasional severity very serious found in version trunk impact expected use os all support group any description to make the dynamic lib switch work comments hi everyone for linux make install make package with osmesa i added the proper symlinks that allow us to use osmesa as libgl at runtime trunk commit cyrush svn commit m linux osmesa install symlinks so osmesa can be used as libgl dynamically findvisitmesa cmakesending findvisitmesa cmaketransmitting file data committed revision it took quite a while b c install code using env destdir cmake install prefix not just cmake install prefix cyrus | 1 |
46,244 | 2,951,822,025 | IssuesEvent | 2015-07-07 03:09:00 | PowerPointLabs/powerpointlabs | https://api.github.com/repos/PowerPointLabs/powerpointlabs | closed | 'Sync agenda' got stuck while syncing agenda sidebar | Feature.AgendaLab Priority-Medium type-bug | I generated agenda sidebar for the quick tutorial slides. Tweaked the sidebar to be on the left of the slide, and tried to sync. The process got stuck after regenerating a few slides and remained there forever. I may have clicked on on the slides while the syncing is going on though. | 1.0 | 'Sync agenda' got stuck while syncing agenda sidebar - I generated agenda sidebar for the quick tutorial slides. Tweaked the sidebar to be on the left of the slide, and tried to sync. The process got stuck after regenerating a few slides and remained there forever. I may have clicked on on the slides while the syncing is going on though. | priority | sync agenda got stuck while syncing agenda sidebar i generated agenda sidebar for the quick tutorial slides tweaked the sidebar to be on the left of the slide and tried to sync the process got stuck after regenerating a few slides and remained there forever i may have clicked on on the slides while the syncing is going on though | 1 |
49,434 | 3,002,845,456 | IssuesEvent | 2015-07-24 19:37:14 | jayway/powermock | https://api.github.com/repos/jayway/powermock | closed | DeferSupportingClassLoader does not override findResources(), causing it to break mocked classes that call findResources() | bug imported Priority-Medium | _From [wrussell...@gmail.com](https://code.google.com/u/116145832080119398423/) on March 17, 2012 05:06:37_
What steps will reproduce the problem? 1. Download and extract powermock-resource-bug-example.zip
2. Run unit tests (mvn test) - note that xsds are downloaded
3. Tweak hosts file so that www.springframework.org points to 127.0.0.1
4. Run unit tests (mvn test) - note that unit test now fails What is the expected output? What do you see instead? Spring should find its special 'META-INF/spring.schemas' files on the classpath by calling findResources(). What version of the product are you using? On what operating system? 1.4.12-SNAPSHOT, Windows 7 x64 Please provide any additional information below. DeferSupportingClassLoader does not override ClassLoader.findResources(), which can cause classes loaded by MockClassLoader to be unable to find resources via ClassLoader.findResources(...).
I have only seen this in situations that match the following criteria:
- A Spring context (ClassPathXmlApplicationContext) is being constructed by a junit unit test being run via PowerMockRunner
- The unit test is being run on a machine that lacks internet connectivity.
- The unit test run is being managed by Maven's surefire plugin, and is running in an isolated classloader (forkMode=none)
The problem occurs when Spring attempts to load the various xsds to parse its context configuration xml file. It attempts to find special mappings files on the classpath named "META-INF/spring.schemas" - these mapping files map the various spring xsd namespaces to xsds stored in various spring jars on the classpath. If it cannot find these spring.schemas files, it will fall back and attempt to load the xsds over the network using their urls. If the machine is on a network that cannot access the internet, loading the application context configuration file will fail (as will the unit test).
I have attached an example project (powermock-resource-bug-example.zip) that demonstrates this error. With the current 1.4.12-SNAPSHOT build of powermock (and, I suspect, all prior releases), running the unit test in this project will result in Spring going out on the network and downloading the xsd. If you tweak your hosts file to point www.springframework.org to 127.0.0.1, you should see the unit test fail.
I have also attached a fix for this (findResources.diff) to this bug report, as well as two new unit tests that verify that findResource() and findResources() are both properly deferred to the deferTo ClassLoader.
**Attachment:** [powermock-resource-bug-example.zip findResources.diff](http://code.google.com/p/powermock/issues/detail?id=380)
_Original issue: http://code.google.com/p/powermock/issues/detail?id=380_ | 1.0 | DeferSupportingClassLoader does not override findResources(), causing it to break mocked classes that call findResources() - _From [wrussell...@gmail.com](https://code.google.com/u/116145832080119398423/) on March 17, 2012 05:06:37_
What steps will reproduce the problem? 1. Download and extract powermock-resource-bug-example.zip
2. Run unit tests (mvn test) - note that xsds are downloaded
3. Tweak hosts file so that www.springframework.org points to 127.0.0.1
4. Run unit tests (mvn test) - note that unit test now fails What is the expected output? What do you see instead? Spring should find its special 'META-INF/spring.schemas' files on the classpath by calling findResources(). What version of the product are you using? On what operating system? 1.4.12-SNAPSHOT, Windows 7 x64 Please provide any additional information below. DeferSupportingClassLoader does not override ClassLoader.findResources(), which can cause classes loaded by MockClassLoader to be unable to find resources via ClassLoader.findResources(...).
I have only seen this in situations that match the following criteria:
- A Spring context (ClassPathXmlApplicationContext) is being constructed by a junit unit test being run via PowerMockRunner
- The unit test is being run on a machine that lacks internet connectivity.
- The unit test run is being managed by Maven's surefire plugin, and is running in an isolated classloader (forkMode=none)
The problem occurs when Spring attempts to load the various xsds to parse its context configuration xml file. It attempts to find special mappings files on the classpath named "META-INF/spring.schemas" - these mapping files map the various spring xsd namespaces to xsds stored in various spring jars on the classpath. If it cannot find these spring.schemas files, it will fall back and attempt to load the xsds over the network using their urls. If the machine is on a network that cannot access the internet, loading the application context configuration file will fail (as will the unit test).
I have attached an example project (powermock-resource-bug-example.zip) that demonstrates this error. With the current 1.4.12-SNAPSHOT build of powermock (and, I suspect, all prior releases), running the unit test in this project will result in Spring going out on the network and downloading the xsd. If you tweak your hosts file to point www.springframework.org to 127.0.0.1, you should see the unit test fail.
I have also attached a fix for this (findResources.diff) to this bug report, as well as two new unit tests that verify that findResource() and findResources() are both properly deferred to the deferTo ClassLoader.
**Attachment:** [powermock-resource-bug-example.zip findResources.diff](http://code.google.com/p/powermock/issues/detail?id=380)
_Original issue: http://code.google.com/p/powermock/issues/detail?id=380_ | priority | defersupportingclassloader does not override findresources causing it to break mocked classes that call findresources from on march what steps will reproduce the problem download and extract powermock resource bug example zip run unit tests mvn test note that xsds are downloaded tweak hosts file so that points to run unit tests mvn test note that unit test now fails what is the expected output what do you see instead spring should find its special meta inf spring schemas files on the classpath by calling findresources what version of the product are you using on what operating system snapshot windows please provide any additional information below defersupportingclassloader does not override classloader findresources which can cause classes loaded by mockclassloader to be unable to find resources via classloader findresources i have only seen this in situations that match the following criteria a spring context classpathxmlapplicationcontext is being constructed by a junit unit test being run via powermockrunner the unit test is being run on a machine that lacks internet connectivity the unit test run is being managed by maven s surefire plugin and is running in an isolated classloader forkmode none the problem occurs when spring attempts to load the various xsds to parse its context configuration xml file it attempts to find special mappings files on the classpath named meta inf spring schemas these mapping files map the various spring xsd namespaces to xsds stored in various spring jars on the classpath if it cannot find these spring schemas files it will fall back and attempt to load the xsds over the network using their urls if the machine is on a network that cannot access the internet loading the application context configuration file will fail as will the unit test i have attached an example project powermock resource bug example zip that demonstrates this error with the current snapshot build of powermock and i suspect all prior releases running the unit test in this project will result in spring going out on the network and downloading the xsd if you tweak your hosts file to point to you should see the unit test fail i have also attached a fix for this findresources diff to this bug report as well as two new unit tests that verify that findresource and findresources are both properly deferred to the deferto classloader attachment original issue | 1 |
167,397 | 6,337,321,309 | IssuesEvent | 2017-07-26 23:32:51 | minio/buzz | https://api.github.com/repos/minio/buzz | closed | reviewers: show commented but not reviewing users in list | priority: medium | Right now, buzz will show only reviewers who entered into the GH review system in the list as respectively green, yellow, and red. This ignores all users who put a comment into a line of code, expressing interest in a specific PR, but don't actually leave a review.
Instead of this, we should add their name to the reviewers in the table, but instead of having a color, their label should just be gray, expressing interest. This should include users who don't have access to the repository. | 1.0 | reviewers: show commented but not reviewing users in list - Right now, buzz will show only reviewers who entered into the GH review system in the list as respectively green, yellow, and red. This ignores all users who put a comment into a line of code, expressing interest in a specific PR, but don't actually leave a review.
Instead of this, we should add their name to the reviewers in the table, but instead of having a color, their label should just be gray, expressing interest. This should include users who don't have access to the repository. | priority | reviewers show commented but not reviewing users in list right now buzz will show only reviewers who entered into the gh review system in the list as respectively green yellow and red this ignores all users who put a comment into a line of code expressing interest in a specific pr but don t actually leave a review instead of this we should add their name to the reviewers in the table but instead of having a color their label should just be gray expressing interest this should include users who don t have access to the repository | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.