Unnamed: 0
int64 0
832k
| id
float64 2.49B
32.1B
| type
stringclasses 1
value | created_at
stringlengths 19
19
| repo
stringlengths 5
112
| repo_url
stringlengths 34
141
| action
stringclasses 3
values | title
stringlengths 1
855
| labels
stringlengths 4
721
| body
stringlengths 1
261k
| index
stringclasses 13
values | text_combine
stringlengths 96
261k
| label
stringclasses 2
values | text
stringlengths 96
240k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
160,957
| 6,106,097,859
|
IssuesEvent
|
2017-06-21 02:34:04
|
bethlakshmi/GBE2
|
https://api.github.com/repos/bethlakshmi/GBE2
|
opened
|
Site is waaaaay too slow
|
bug High Priority
|
Most of the time (like 4 out of 5 times) loading any page on www.Burlesque-Expo.com takes forever. Doesn't matter if the page is published, public, or in the admin section. The site is so slow as an admin that it's almost impossible to use.
|
1.0
|
Site is waaaaay too slow - Most of the time (like 4 out of 5 times) loading any page on www.Burlesque-Expo.com takes forever. Doesn't matter if the page is published, public, or in the admin section. The site is so slow as an admin that it's almost impossible to use.
|
priority
|
site is waaaaay too slow most of the time like out of times loading any page on takes forever doesn t matter if the page is published public or in the admin section the site is so slow as an admin that it s almost impossible to use
| 1
|
352,986
| 10,547,839,383
|
IssuesEvent
|
2019-10-03 03:00:53
|
ehimetakahashilab/papers
|
https://api.github.com/repos/ehimetakahashilab/papers
|
closed
|
[DesignGaia2019] 実験方針について書く章を足す
|
Priority: high
|
## WHY
- 実験の方針がわかりにくい
## WHAT
- 新たに章を用意して,説明する
- Hybrid TPIメトリクス,メトリクスの求め方, 時間展開回路に適応するための対応
- FFの可観測性ALL1にする理由(故障消失問題を除く)
|
1.0
|
[DesignGaia2019] 実験方針について書く章を足す - ## WHY
- 実験の方針がわかりにくい
## WHAT
- 新たに章を用意して,説明する
- Hybrid TPIメトリクス,メトリクスの求め方, 時間展開回路に適応するための対応
- FFの可観測性ALL1にする理由(故障消失問題を除く)
|
priority
|
実験方針について書く章を足す why 実験の方針がわかりにくい what 新たに章を用意して,説明する hybrid tpiメトリクス,メトリクスの求め方 時間展開回路に適応するための対応 故障消失問題を除く
| 1
|
830,461
| 32,009,258,404
|
IssuesEvent
|
2023-09-21 16:48:19
|
DSpace/dspace-angular
|
https://api.github.com/repos/DSpace/dspace-angular
|
opened
|
"Edit Group" page always requests all member subgroups and EPersons. This has bad performance for large groups.
|
bug high priority authorization
|
**Describe the bug**
Related to https://github.com/DSpace/DSpace/issues/9052
"Edit Group" page always requests all member subgroups and EPersons. This has bad performance for large groups.
The Angular UI includes code which requests *every EPerson in a Group* or *every Subgroup in a Group* in order to determine whether a given EPerson or Group is already included in a given parent Group.
For example:
* `isMemberOfGroup` in `members-list.component.ts`: https://github.com/DSpace/dspace-angular/blob/main/src/app/access-control/group-registry/group-form/members-list/members-list.component.ts#L216C1-L233C3
* `isSubgroupOfGroup` in `subgroups-list.component.ts`: https://github.com/DSpace/dspace-angular/blob/main/src/app/access-control/group-registry/group-form/subgroup-list/subgroups-list.component.ts#L138-L159
This behavior is used to determine whether to display a Remove or Add button in the "Add EPeople" and "Add Subgroups" section of the "Edit Group" page. See circled content below.

**To Reproduce**
Steps to reproduce the behavior:
1. Login as an Admin. Open your browser's DevTools
2. Go to Access Control and click on Groups.
3. Edit a Group that has members (either EPerson or SubGroup)
4. Verify your DevTools shows a request similar to one of these:
* `/server/api/eperson/groups/[uuid]/epersons?page=0&size=9999` (if the group you are editing has Eperson members)
* `/server/api/eperson/groups/[uuid]/subgroups?page=0&size=9999` (if the group you are editing has subgroup members)
The `size=9999` tells the REST API to return up to 9,999 results on the first page. This essentially disables pagination, unless there are 10,000 or more results.
**Expected behavior**
The User Interface should never send a request to load all objects at once. This should be redesigned to no longer need to load every object at once.
**Related work**
Directly related to https://github.com/DSpace/DSpace/issues/9052 (However, this ticket describes improper behavior in dspace-angular, while 9052 describes improper behavior in the backend)
|
1.0
|
"Edit Group" page always requests all member subgroups and EPersons. This has bad performance for large groups. - **Describe the bug**
Related to https://github.com/DSpace/DSpace/issues/9052
"Edit Group" page always requests all member subgroups and EPersons. This has bad performance for large groups.
The Angular UI includes code which requests *every EPerson in a Group* or *every Subgroup in a Group* in order to determine whether a given EPerson or Group is already included in a given parent Group.
For example:
* `isMemberOfGroup` in `members-list.component.ts`: https://github.com/DSpace/dspace-angular/blob/main/src/app/access-control/group-registry/group-form/members-list/members-list.component.ts#L216C1-L233C3
* `isSubgroupOfGroup` in `subgroups-list.component.ts`: https://github.com/DSpace/dspace-angular/blob/main/src/app/access-control/group-registry/group-form/subgroup-list/subgroups-list.component.ts#L138-L159
This behavior is used to determine whether to display a Remove or Add button in the "Add EPeople" and "Add Subgroups" section of the "Edit Group" page. See circled content below.

**To Reproduce**
Steps to reproduce the behavior:
1. Login as an Admin. Open your browser's DevTools
2. Go to Access Control and click on Groups.
3. Edit a Group that has members (either EPerson or SubGroup)
4. Verify your DevTools shows a request similar to one of these:
* `/server/api/eperson/groups/[uuid]/epersons?page=0&size=9999` (if the group you are editing has Eperson members)
* `/server/api/eperson/groups/[uuid]/subgroups?page=0&size=9999` (if the group you are editing has subgroup members)
The `size=9999` tells the REST API to return up to 9,999 results on the first page. This essentially disables pagination, unless there are 10,000 or more results.
**Expected behavior**
The User Interface should never send a request to load all objects at once. This should be redesigned to no longer need to load every object at once.
**Related work**
Directly related to https://github.com/DSpace/DSpace/issues/9052 (However, this ticket describes improper behavior in dspace-angular, while 9052 describes improper behavior in the backend)
|
priority
|
edit group page always requests all member subgroups and epersons this has bad performance for large groups describe the bug related to edit group page always requests all member subgroups and epersons this has bad performance for large groups the angular ui includes code which requests every eperson in a group or every subgroup in a group in order to determine whether a given eperson or group is already included in a given parent group for example ismemberofgroup in members list component ts issubgroupofgroup in subgroups list component ts this behavior is used to determine whether to display a remove or add button in the add epeople and add subgroups section of the edit group page see circled content below to reproduce steps to reproduce the behavior login as an admin open your browser s devtools go to access control and click on groups edit a group that has members either eperson or subgroup verify your devtools shows a request similar to one of these server api eperson groups epersons page size if the group you are editing has eperson members server api eperson groups subgroups page size if the group you are editing has subgroup members the size tells the rest api to return up to results on the first page this essentially disables pagination unless there are or more results expected behavior the user interface should never send a request to load all objects at once this should be redesigned to no longer need to load every object at once related work directly related to however this ticket describes improper behavior in dspace angular while describes improper behavior in the backend
| 1
|
481,813
| 13,892,363,206
|
IssuesEvent
|
2020-10-19 12:05:51
|
bryntum/support
|
https://api.github.com/repos/bryntum/support
|
closed
|
Calendar doesn't clean old events on store reload
|
bug forum high-priority resolved
|
https://bryntum.com/examples/calendar/basic/
call from the console:
```
calendar.crudManager.load()
```
All events will doubled. Should clears old results and shows new.
[Forum post](https://www.bryntum.com/forum/viewtopic.php?f=54&t=14762&p=74971)
However despite documentation mentioned that the default behaviour of load() will clear the store but it didn't happen for me.
|
1.0
|
Calendar doesn't clean old events on store reload - https://bryntum.com/examples/calendar/basic/
call from the console:
```
calendar.crudManager.load()
```
All events will doubled. Should clears old results and shows new.
[Forum post](https://www.bryntum.com/forum/viewtopic.php?f=54&t=14762&p=74971)
However despite documentation mentioned that the default behaviour of load() will clear the store but it didn't happen for me.
|
priority
|
calendar doesn t clean old events on store reload call from the console calendar crudmanager load all events will doubled should clears old results and shows new however despite documentation mentioned that the default behaviour of load will clear the store but it didn t happen for me
| 1
|
828,379
| 31,825,085,360
|
IssuesEvent
|
2023-09-14 06:56:15
|
keycloak/keycloak
|
https://api.github.com/repos/keycloak/keycloak
|
closed
|
User attributes can't be saved when user profile is enabled
|
kind/bug priority/critical impact/high area/admin/ui team/ui
|
### Before reporting an issue
- [X] I have searched existing issues
- [X] I have reproduced the issue with the [latest nightly release](https://github.com/keycloak/keycloak/releases/tag/nightly)
### Area
admin/ui
### Describe the bug
User attributes can't be saved
### Version
main
### Expected behavior
Attributes are saved
### Actual behavior
not
### How to Reproduce?
Enable the user profile on the realm
Add a custom attribute
Open the user details
Fill the field you just created
Press save
Reload the page and see the field go blank
### Anything else?
_No response_
|
1.0
|
User attributes can't be saved when user profile is enabled - ### Before reporting an issue
- [X] I have searched existing issues
- [X] I have reproduced the issue with the [latest nightly release](https://github.com/keycloak/keycloak/releases/tag/nightly)
### Area
admin/ui
### Describe the bug
User attributes can't be saved
### Version
main
### Expected behavior
Attributes are saved
### Actual behavior
not
### How to Reproduce?
Enable the user profile on the realm
Add a custom attribute
Open the user details
Fill the field you just created
Press save
Reload the page and see the field go blank
### Anything else?
_No response_
|
priority
|
user attributes can t be saved when user profile is enabled before reporting an issue i have searched existing issues i have reproduced the issue with the area admin ui describe the bug user attributes can t be saved version main expected behavior attributes are saved actual behavior not how to reproduce enable the user profile on the realm add a custom attribute open the user details fill the field you just created press save reload the page and see the field go blank anything else no response
| 1
|
477,013
| 13,754,036,386
|
IssuesEvent
|
2020-10-06 16:23:15
|
retrowax/Zombusters
|
https://api.github.com/repos/retrowax/Zombusters
|
opened
|
Add Redbubble Store link on the Game
|
high priority
|
Add the store link on the game menu to allow users buy merch from the game
|
1.0
|
Add Redbubble Store link on the Game - Add the store link on the game menu to allow users buy merch from the game
|
priority
|
add redbubble store link on the game add the store link on the game menu to allow users buy merch from the game
| 1
|
383,518
| 11,357,067,555
|
IssuesEvent
|
2020-01-25 01:39:38
|
v0idp/Mellow
|
https://api.github.com/repos/v0idp/Mellow
|
closed
|
Rework the auth and session with proper middleware to secure endpoints
|
Hight Priority Rework
|
The auth and session code needs to be reworked to a safe and proper way middleware so we can secure the endpoints for the configuration.
|
1.0
|
Rework the auth and session with proper middleware to secure endpoints - The auth and session code needs to be reworked to a safe and proper way middleware so we can secure the endpoints for the configuration.
|
priority
|
rework the auth and session with proper middleware to secure endpoints the auth and session code needs to be reworked to a safe and proper way middleware so we can secure the endpoints for the configuration
| 1
|
556,274
| 16,480,667,858
|
IssuesEvent
|
2021-05-24 11:08:09
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.omegle.com - video or audio doesn't play
|
browser-firefox-ios bugbug-probability-high os-ios priority-normal
|
<!-- @browser: Firefox iOS 33.1 -->
<!-- @ua_header: Mozilla/5.0 (iPhone; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/33.1 Mobile/15E148 Safari/605.1.15 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/74814 -->
**URL**: https://www.omegle.com/
**Browser / Version**: Firefox iOS 33.1
**Operating System**: iOS 14.4.2
**Tested Another Browser**: Yes Other
**Problem type**: Video or audio doesn't play
**Description**: There is no video
**Steps to Reproduce**:
Firefox unable to see videos, camera is blocked
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.omegle.com - video or audio doesn't play - <!-- @browser: Firefox iOS 33.1 -->
<!-- @ua_header: Mozilla/5.0 (iPhone; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/33.1 Mobile/15E148 Safari/605.1.15 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/74814 -->
**URL**: https://www.omegle.com/
**Browser / Version**: Firefox iOS 33.1
**Operating System**: iOS 14.4.2
**Tested Another Browser**: Yes Other
**Problem type**: Video or audio doesn't play
**Description**: There is no video
**Steps to Reproduce**:
Firefox unable to see videos, camera is blocked
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
priority
|
video or audio doesn t play url browser version firefox ios operating system ios tested another browser yes other problem type video or audio doesn t play description there is no video steps to reproduce firefox unable to see videos camera is blocked browser configuration none from with ❤️
| 1
|
597,165
| 18,156,513,750
|
IssuesEvent
|
2021-09-27 02:52:15
|
gambitph/Stackable
|
https://api.github.com/repos/gambitph/Stackable
|
closed
|
Global Typography: The font is not applied in frontend
|
bug high priority v2 compatibility
|
<!--
Before posting, make sure that:
1. you are running the latest version of Stackable, and
2. you have searched whether your issue has already been reported
-->
**To Reproduce**
Steps to reproduce the behavior:
1. Add a Hero block
2. Select the Heading in Hero > change to H1
3. Set H1 font family in Global Typography to Monospace
4. See bug in frontend - The font is not applied
**Desktop (please complete the following information):**
- OS: MacOS
- Browser: Chrome
- Browser Version: Version 93.0.4577.82 (Official Build) (x86_64)
|
1.0
|
Global Typography: The font is not applied in frontend - <!--
Before posting, make sure that:
1. you are running the latest version of Stackable, and
2. you have searched whether your issue has already been reported
-->
**To Reproduce**
Steps to reproduce the behavior:
1. Add a Hero block
2. Select the Heading in Hero > change to H1
3. Set H1 font family in Global Typography to Monospace
4. See bug in frontend - The font is not applied
**Desktop (please complete the following information):**
- OS: MacOS
- Browser: Chrome
- Browser Version: Version 93.0.4577.82 (Official Build) (x86_64)
|
priority
|
global typography the font is not applied in frontend before posting make sure that you are running the latest version of stackable and you have searched whether your issue has already been reported to reproduce steps to reproduce the behavior add a hero block select the heading in hero change to set font family in global typography to monospace see bug in frontend the font is not applied desktop please complete the following information os macos browser chrome browser version version official build
| 1
|
150,565
| 5,775,427,743
|
IssuesEvent
|
2017-04-28 10:09:07
|
antoinecarme/pyaf
|
https://api.github.com/repos/antoinecarme/pyaf
|
closed
|
Avoid unnecessary failures
|
class:bug priority:high topic:modeling_quality
|
Sometimes the signal is too small/easy to forecast. PyAF fails when the signal has only one row !!!
The goal here is to make pyaf as robust as possible against very small/bad datasets
PyAF should automatically produce reasonable/naive/trivial models in these cases.
It should not fail in any case (normal behavior expected, useful for M2M context)
|
1.0
|
Avoid unnecessary failures - Sometimes the signal is too small/easy to forecast. PyAF fails when the signal has only one row !!!
The goal here is to make pyaf as robust as possible against very small/bad datasets
PyAF should automatically produce reasonable/naive/trivial models in these cases.
It should not fail in any case (normal behavior expected, useful for M2M context)
|
priority
|
avoid unnecessary failures sometimes the signal is too small easy to forecast pyaf fails when the signal has only one row the goal here is to make pyaf as robust as possible against very small bad datasets pyaf should automatically produce reasonable naive trivial models in these cases it should not fail in any case normal behavior expected useful for context
| 1
|
274,894
| 8,569,181,029
|
IssuesEvent
|
2018-11-11 07:30:57
|
Shyam-Chen/Backend-Starter-Kit
|
https://api.github.com/repos/Shyam-Chen/Backend-Starter-Kit
|
opened
|
Modular
|
priority: high
|
### Propose
1. `rest` Folder -> `core/rest.js`
2. `document`Folder -> `core/document` (`mongoose.connect(MONGODB_URI, { useNewUrlParser: true });`)
2. `graphql` Folder -> `core/graphql.js`
3. `relational` Folder -> `core/relational.js`
|
1.0
|
Modular - ### Propose
1. `rest` Folder -> `core/rest.js`
2. `document`Folder -> `core/document` (`mongoose.connect(MONGODB_URI, { useNewUrlParser: true });`)
2. `graphql` Folder -> `core/graphql.js`
3. `relational` Folder -> `core/relational.js`
|
priority
|
modular propose rest folder core rest js document folder core document mongoose connect mongodb uri usenewurlparser true graphql folder core graphql js relational folder core relational js
| 1
|
527,267
| 15,339,294,084
|
IssuesEvent
|
2021-02-27 01:26:07
|
andrewtougas/21mafia
|
https://api.github.com/repos/andrewtougas/21mafia
|
closed
|
Create Vue Components
|
component: vue enhancement priority: high
|
Create Vue components for pages in the application.
Views Components:
* [x] `Home.vue`
* [x] `History.vue`
* [x] `Teams.vue`
* [x] `Scoring.vue`
* [x] `TeamsVsOpponents.vue`
All Views Sub-Components:
* [x] All sub-components
> Migrated from Gitlab
|
1.0
|
Create Vue Components - Create Vue components for pages in the application.
Views Components:
* [x] `Home.vue`
* [x] `History.vue`
* [x] `Teams.vue`
* [x] `Scoring.vue`
* [x] `TeamsVsOpponents.vue`
All Views Sub-Components:
* [x] All sub-components
> Migrated from Gitlab
|
priority
|
create vue components create vue components for pages in the application views components home vue history vue teams vue scoring vue teamsvsopponents vue all views sub components all sub components migrated from gitlab
| 1
|
138,275
| 5,331,026,050
|
IssuesEvent
|
2017-02-15 18:28:22
|
vmware/vic
|
https://api.github.com/repos/vmware/vic
|
opened
|
Handle failure to load x509 certificate leaf during VCH creation
|
kind/bug kind/customer-found priority/high
|
**Story**
As a customer of VIC I want to be able to use custom host certificates for my VCH.
**Detail**
When specifying `--cert` and `--key` the following was observed:
```
←[34mINFO←[0m[2017-02-14T09:42:40Z] ### Installing VCH ####
time=2017-02-14T09:42:40.320460200Z level=debug msg=[BEGIN] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).processParams:495]
←[34mINFO←[0m[2017-02-14T09:42:40Z] vSphere password for <snip>:
←[33mWARN←[0m[2017-02-14T09:42:47Z] Using administrative user for VCH operation - use --ops-user to improve security (see -x for advanced help)
←[37mDEBU←[0m[2017-02-14T09:42:47Z] public network: IP {"<snip>" "<snip>"} gateway {"<snip>" "<snip>"} dest: []
←[37mDEBU←[0m[2017-02-14T09:42:47Z] VCH DNS servers: [<snip>]
time=2017-02-14T09:42:47.421605800Z level=debug msg=[BEGIN] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).loadCertificates:924]
time=2017-02-14T09:42:47.451629200Z level=debug msg=[BEGIN] [github.com/vmware/vic/pkg/certificate.ParseCertificate:245]
time=2017-02-14T09:42:47.453630700Z level=debug msg=[ END ] [github.com/vmware/vic/pkg/certificate.ParseCertificate:245] [2.0015ms]
time=2017-02-14T09:42:47.455638700Z level=debug msg=[ END ] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).loadCertificates:924] [34.0329ms]
time=2017-02-14T09:42:47.457633900Z level=debug msg=[ END ] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).processParams:495] [7.1371737s]
←[31mERRO←[0m[2017-02-14T09:42:47Z] --------------------
←[31mERRO←[0m[2017-02-14T09:42:47Z] vic-machine-windows.exe failed: runtime error: invalid memory address or nil pointer dereference
```
A speculative fix that added a check [here](https://github.com/vmware/vic/blob/2a0f9352d8501b79c510b2d26bc9856c3fba9a64/cmd/vic-machine/create/create.go#L991) for a nil Leaf got us past this issue.
It's not clear why we were unable to load the x509 leaf.
**Acceptance**
- [ ] Code change to warn on failure to load x509 Leaf - should note inability to confirm certificate CommonName and --tls-cname match
- [ ] Test that uses certificates that result in this failure - bug1812313 will try to determine what about these certificates causes this failure.
|
1.0
|
Handle failure to load x509 certificate leaf during VCH creation - **Story**
As a customer of VIC I want to be able to use custom host certificates for my VCH.
**Detail**
When specifying `--cert` and `--key` the following was observed:
```
←[34mINFO←[0m[2017-02-14T09:42:40Z] ### Installing VCH ####
time=2017-02-14T09:42:40.320460200Z level=debug msg=[BEGIN] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).processParams:495]
←[34mINFO←[0m[2017-02-14T09:42:40Z] vSphere password for <snip>:
←[33mWARN←[0m[2017-02-14T09:42:47Z] Using administrative user for VCH operation - use --ops-user to improve security (see -x for advanced help)
←[37mDEBU←[0m[2017-02-14T09:42:47Z] public network: IP {"<snip>" "<snip>"} gateway {"<snip>" "<snip>"} dest: []
←[37mDEBU←[0m[2017-02-14T09:42:47Z] VCH DNS servers: [<snip>]
time=2017-02-14T09:42:47.421605800Z level=debug msg=[BEGIN] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).loadCertificates:924]
time=2017-02-14T09:42:47.451629200Z level=debug msg=[BEGIN] [github.com/vmware/vic/pkg/certificate.ParseCertificate:245]
time=2017-02-14T09:42:47.453630700Z level=debug msg=[ END ] [github.com/vmware/vic/pkg/certificate.ParseCertificate:245] [2.0015ms]
time=2017-02-14T09:42:47.455638700Z level=debug msg=[ END ] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).loadCertificates:924] [34.0329ms]
time=2017-02-14T09:42:47.457633900Z level=debug msg=[ END ] [github.com/vmware/vic/cmd/vic-machine/create.(*Create).processParams:495] [7.1371737s]
←[31mERRO←[0m[2017-02-14T09:42:47Z] --------------------
←[31mERRO←[0m[2017-02-14T09:42:47Z] vic-machine-windows.exe failed: runtime error: invalid memory address or nil pointer dereference
```
A speculative fix that added a check [here](https://github.com/vmware/vic/blob/2a0f9352d8501b79c510b2d26bc9856c3fba9a64/cmd/vic-machine/create/create.go#L991) for a nil Leaf got us past this issue.
It's not clear why we were unable to load the x509 leaf.
**Acceptance**
- [ ] Code change to warn on failure to load x509 Leaf - should note inability to confirm certificate CommonName and --tls-cname match
- [ ] Test that uses certificates that result in this failure - bug1812313 will try to determine what about these certificates causes this failure.
|
priority
|
handle failure to load certificate leaf during vch creation story as a customer of vic i want to be able to use custom host certificates for my vch detail when specifying cert and key the following was observed ← installing vch time level debug msg ← vsphere password for ← using administrative user for vch operation use ops user to improve security see x for advanced help ← public network ip gateway dest ← vch dns servers time level debug msg time level debug msg time level debug msg time level debug msg time level debug msg ← ← vic machine windows exe failed runtime error invalid memory address or nil pointer dereference a speculative fix that added a check for a nil leaf got us past this issue it s not clear why we were unable to load the leaf acceptance code change to warn on failure to load leaf should note inability to confirm certificate commonname and tls cname match test that uses certificates that result in this failure will try to determine what about these certificates causes this failure
| 1
|
117,225
| 4,712,556,533
|
IssuesEvent
|
2016-10-14 17:09:09
|
bddenhartog/docker-murmur
|
https://api.github.com/repos/bddenhartog/docker-murmur
|
closed
|
Add better option coverage
|
Priority: High Status: In Progress Type: Enhancement
|
Currently, the configuration options do not cover all possible options. Review them and implement options that make sense for a containerized installation of murmur, and allow for those options to be set via environment variables.
Originally this issue stated that the `+x` substitution should be removed. It has been decided that the `+x` substitution **should remain** and be used for variable that we want to determine are set *and not empty*. Refer to [this StackOverflow question](http://stackoverflow.com/questions/3601515/how-to-check-if-a-variable-is-set-in-bash) for more information.
- Resource: https://wiki.mumble.info/wiki/Murmur.ini
|
1.0
|
Add better option coverage - Currently, the configuration options do not cover all possible options. Review them and implement options that make sense for a containerized installation of murmur, and allow for those options to be set via environment variables.
Originally this issue stated that the `+x` substitution should be removed. It has been decided that the `+x` substitution **should remain** and be used for variable that we want to determine are set *and not empty*. Refer to [this StackOverflow question](http://stackoverflow.com/questions/3601515/how-to-check-if-a-variable-is-set-in-bash) for more information.
- Resource: https://wiki.mumble.info/wiki/Murmur.ini
|
priority
|
add better option coverage currently the configuration options do not cover all possible options review them and implement options that make sense for a containerized installation of murmur and allow for those options to be set via environment variables originally this issue stated that the x substitution should be removed it has been decided that the x substitution should remain and be used for variable that we want to determine are set and not empty refer to for more information resource
| 1
|
408,726
| 11,951,156,281
|
IssuesEvent
|
2020-04-03 16:22:56
|
Longwelwind/swords-and-ravens
|
https://api.github.com/repos/Longwelwind/swords-and-ravens
|
closed
|
Renly Baratheon's ability does not maintain routed status
|
priority:high type:bug
|
At the moment, Renly Baratheon's ability creates a new knight from scratch when upgrading a footman.
This causes the deletion of the unit's routed/wounded status, turning it back into a combat ready unit.
This interaction allows Baratheon to "reset" a wounded footman, that can be later be used in the same round for an attack, support or another defense if the region is attacked again.
Relevant ruling from the FAQ:
_Q: Can a player use Renly Baratheon to upgrade one of their routed footman?_
A: Yes. But the new unit remains routed until the end of the round.
|
1.0
|
Renly Baratheon's ability does not maintain routed status - At the moment, Renly Baratheon's ability creates a new knight from scratch when upgrading a footman.
This causes the deletion of the unit's routed/wounded status, turning it back into a combat ready unit.
This interaction allows Baratheon to "reset" a wounded footman, that can be later be used in the same round for an attack, support or another defense if the region is attacked again.
Relevant ruling from the FAQ:
_Q: Can a player use Renly Baratheon to upgrade one of their routed footman?_
A: Yes. But the new unit remains routed until the end of the round.
|
priority
|
renly baratheon s ability does not maintain routed status at the moment renly baratheon s ability creates a new knight from scratch when upgrading a footman this causes the deletion of the unit s routed wounded status turning it back into a combat ready unit this interaction allows baratheon to reset a wounded footman that can be later be used in the same round for an attack support or another defense if the region is attacked again relevant ruling from the faq q can a player use renly baratheon to upgrade one of their routed footman a yes but the new unit remains routed until the end of the round
| 1
|
764,714
| 26,813,464,656
|
IssuesEvent
|
2023-02-02 01:08:26
|
zephyrproject-rtos/zephyr
|
https://api.github.com/repos/zephyrproject-rtos/zephyr
|
closed
|
Missing fixes for v2.7 LTS backported from main
|
priority: high LTS Backport
|
The v2.7 LTS branch is exhibiting crashes when used as basis for custom work.
Missing fixes from the main branch are:
- commit 46eb3e5f ("gen_app_partitions: add .sdata/.sbss section into
app_smem")
- commit df80c77e ("scripts: gen_syscalls: fix access validation size
on extra params array")
- commit 2cdac33d ("scripts: gen_syscalls: add missing --split-type case")
- commit 1db5c8b9 ("scripts: gen_syscalls: fix argument marshalling with
64-bit debug builds")
|
1.0
|
Missing fixes for v2.7 LTS backported from main - The v2.7 LTS branch is exhibiting crashes when used as basis for custom work.
Missing fixes from the main branch are:
- commit 46eb3e5f ("gen_app_partitions: add .sdata/.sbss section into
app_smem")
- commit df80c77e ("scripts: gen_syscalls: fix access validation size
on extra params array")
- commit 2cdac33d ("scripts: gen_syscalls: add missing --split-type case")
- commit 1db5c8b9 ("scripts: gen_syscalls: fix argument marshalling with
64-bit debug builds")
|
priority
|
missing fixes for lts backported from main the lts branch is exhibiting crashes when used as basis for custom work missing fixes from the main branch are commit gen app partitions add sdata sbss section into app smem commit scripts gen syscalls fix access validation size on extra params array commit scripts gen syscalls add missing split type case commit scripts gen syscalls fix argument marshalling with bit debug builds
| 1
|
316,185
| 9,638,348,493
|
IssuesEvent
|
2019-05-16 10:55:49
|
unitystation/unitystation
|
https://api.github.com/repos/unitystation/unitystation
|
closed
|
Clientside NRE when touching electric devices B: 40
|
Bounty Bug High Priority Non-Intrusive
|
# Description
## Category
BUG
## Detailed Bug Report
```
NullReferenceException: Object reference not set to an instance of an object
PowerSupplyControlInheritance.ConstructionInteraction (UnityEngine.GameObject originator, UnityEngine.Vector3 position, System.String hand) (at Assets/Scripts/Electricity/Inheritance/PowerSupplyControlInheritance.cs:137)
PowerSupplyControlInheritance.Interact (UnityEngine.GameObject originator, UnityEngine.Vector3 position, System.String hand) (at Assets/Scripts/Electricity/Inheritance/PowerSupplyControlInheritance.cs:129)
InputTrigger.Interact (UnityEngine.Vector3 position) (at Assets/Scripts/Input System/Triggers/InputTrigger.cs:50)
InputTrigger.Trigger (UnityEngine.Vector3 position) (at Assets/Scripts/Input System/Triggers/InputTrigger.cs:35)
```
## Steps to Reproduce
Please enter the steps to reproduce the bug or behaviour:
1. Host from build, join from editor as an engineer
2. Try touching SMES
|
1.0
|
Clientside NRE when touching electric devices B: 40 - # Description
## Category
BUG
## Detailed Bug Report
```
NullReferenceException: Object reference not set to an instance of an object
PowerSupplyControlInheritance.ConstructionInteraction (UnityEngine.GameObject originator, UnityEngine.Vector3 position, System.String hand) (at Assets/Scripts/Electricity/Inheritance/PowerSupplyControlInheritance.cs:137)
PowerSupplyControlInheritance.Interact (UnityEngine.GameObject originator, UnityEngine.Vector3 position, System.String hand) (at Assets/Scripts/Electricity/Inheritance/PowerSupplyControlInheritance.cs:129)
InputTrigger.Interact (UnityEngine.Vector3 position) (at Assets/Scripts/Input System/Triggers/InputTrigger.cs:50)
InputTrigger.Trigger (UnityEngine.Vector3 position) (at Assets/Scripts/Input System/Triggers/InputTrigger.cs:35)
```
## Steps to Reproduce
Please enter the steps to reproduce the bug or behaviour:
1. Host from build, join from editor as an engineer
2. Try touching SMES
|
priority
|
clientside nre when touching electric devices b description category bug detailed bug report nullreferenceexception object reference not set to an instance of an object powersupplycontrolinheritance constructioninteraction unityengine gameobject originator unityengine position system string hand at assets scripts electricity inheritance powersupplycontrolinheritance cs powersupplycontrolinheritance interact unityengine gameobject originator unityengine position system string hand at assets scripts electricity inheritance powersupplycontrolinheritance cs inputtrigger interact unityengine position at assets scripts input system triggers inputtrigger cs inputtrigger trigger unityengine position at assets scripts input system triggers inputtrigger cs steps to reproduce please enter the steps to reproduce the bug or behaviour host from build join from editor as an engineer try touching smes
| 1
|
626,816
| 19,844,113,376
|
IssuesEvent
|
2022-01-21 02:46:13
|
dzuybt/tbi
|
https://api.github.com/repos/dzuybt/tbi
|
closed
|
Pagination is not working for search reuslts
|
bug high-priority
|
Current workaround: only search for a month at a time
|
1.0
|
Pagination is not working for search reuslts - Current workaround: only search for a month at a time
|
priority
|
pagination is not working for search reuslts current workaround only search for a month at a time
| 1
|
280,436
| 8,681,762,245
|
IssuesEvent
|
2018-12-01 23:31:40
|
Horyus/battlebird
|
https://api.github.com/repos/Horyus/battlebird
|
closed
|
[Plugin] btbd-crypto-plugin
|
Priority: High Status: Pending Type: Enhancement
|
|Section|Content|
|-------|--------|
|General Role| This plugin will add no middleware. Upon configuration, the module will fetch all the needed crypto material|
| Middleware | `none` |
| Bush Method | `none` |
| Exposed Method | `none` |
| Exposed Classes | `none` |
| Env Interaction | `btbd.crypto` |
| Module Dependency | `btbd-crypto` |
| Plugin Middleware Dependency | `none` |
| Plugin Middleware Before Dependency | `none` |
| Plugin Middleware After Dependency | `none` |
|
1.0
|
[Plugin] btbd-crypto-plugin - |Section|Content|
|-------|--------|
|General Role| This plugin will add no middleware. Upon configuration, the module will fetch all the needed crypto material|
| Middleware | `none` |
| Bush Method | `none` |
| Exposed Method | `none` |
| Exposed Classes | `none` |
| Env Interaction | `btbd.crypto` |
| Module Dependency | `btbd-crypto` |
| Plugin Middleware Dependency | `none` |
| Plugin Middleware Before Dependency | `none` |
| Plugin Middleware After Dependency | `none` |
|
priority
|
btbd crypto plugin section content general role this plugin will add no middleware upon configuration the module will fetch all the needed crypto material middleware none bush method none exposed method none exposed classes none env interaction btbd crypto module dependency btbd crypto plugin middleware dependency none plugin middleware before dependency none plugin middleware after dependency none
| 1
|
551,650
| 16,177,762,529
|
IssuesEvent
|
2021-05-03 09:44:17
|
sopra-fs21-group-4/server
|
https://api.github.com/repos/sopra-fs21-group-4/server
|
closed
|
Delete Lobby when last player leaves
|
high priority removed task
|
- [x] Game Master swaps when the initial Game Master leaves to another player
- [x] When no more Players are in the lobby the lobby is deleted
- [ ] Test
#24 Story 1
|
1.0
|
Delete Lobby when last player leaves - - [x] Game Master swaps when the initial Game Master leaves to another player
- [x] When no more Players are in the lobby the lobby is deleted
- [ ] Test
#24 Story 1
|
priority
|
delete lobby when last player leaves game master swaps when the initial game master leaves to another player when no more players are in the lobby the lobby is deleted test story
| 1
|
65,912
| 3,248,152,875
|
IssuesEvent
|
2015-10-17 02:32:40
|
UniVR/GolfVR
|
https://api.github.com/repos/UniVR/GolfVR
|
closed
|
Explain rules and safety instructions in the introduction
|
priority:high type:new feature
|
Explain the rules before the game begin
_Have some place to play (as the Wii introduction for the wiimote)
_Watch the ball to shoot (the time the ball is watched will define the power)
_... (to be defined)
|
1.0
|
Explain rules and safety instructions in the introduction - Explain the rules before the game begin
_Have some place to play (as the Wii introduction for the wiimote)
_Watch the ball to shoot (the time the ball is watched will define the power)
_... (to be defined)
|
priority
|
explain rules and safety instructions in the introduction explain the rules before the game begin have some place to play as the wii introduction for the wiimote watch the ball to shoot the time the ball is watched will define the power to be defined
| 1
|
438,815
| 12,651,738,081
|
IssuesEvent
|
2020-06-17 01:20:00
|
a2000-erp-team/WEBERP
|
https://api.github.com/repos/a2000-erp-team/WEBERP
|
opened
|
Trial Balance total should be in 2 decimal places.
|
ABIGAIL High Priority
|
FINANCE-REPORT&QUERIES-TRIALBALANCE (By Date)

|
1.0
|
Trial Balance total should be in 2 decimal places. - FINANCE-REPORT&QUERIES-TRIALBALANCE (By Date)

|
priority
|
trial balance total should be in decimal places finance report queries trialbalance by date
| 1
|
548,906
| 16,081,181,877
|
IssuesEvent
|
2021-04-26 05:00:37
|
ahmedkaludi/accelerated-mobile-pages
|
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
|
closed
|
single post content is not showing when using subdomain in design 1,2 3
|
NEXT UPDATE [Priority: HIGH] bug
|
single post content is not rendering while using subdomain due to ampforwp_is_amp_inURL function, which is coming false due missing amp in subdomain URL.
solution: add below condition in ampforwp_is_amp_inURL function before checking amp in array.
if (class_exists('AMPforWP_Subdomain_Endpoint') && ampforwp_get_setting('amp-subdomain-url-format')) {
return true;
}
I have added this code at user end, so need to push it in next update.
|
1.0
|
single post content is not showing when using subdomain in design 1,2 3 - single post content is not rendering while using subdomain due to ampforwp_is_amp_inURL function, which is coming false due missing amp in subdomain URL.
solution: add below condition in ampforwp_is_amp_inURL function before checking amp in array.
if (class_exists('AMPforWP_Subdomain_Endpoint') && ampforwp_get_setting('amp-subdomain-url-format')) {
return true;
}
I have added this code at user end, so need to push it in next update.
|
priority
|
single post content is not showing when using subdomain in design single post content is not rendering while using subdomain due to ampforwp is amp inurl function which is coming false due missing amp in subdomain url solution add below condition in ampforwp is amp inurl function before checking amp in array if class exists ampforwp subdomain endpoint ampforwp get setting amp subdomain url format return true i have added this code at user end so need to push it in next update
| 1
|
292,281
| 8,955,850,802
|
IssuesEvent
|
2019-01-26 12:14:44
|
code4romania/civichq-client
|
https://api.github.com/repos/code4romania/civichq-client
|
opened
|
Change footer to standard template
|
angular content enhancement front-end good first issue help wanted high priority
|
The footer should be redesigned according to the standard Code for Romania footer as displayed here
https://code4.ro/ro/
|
1.0
|
Change footer to standard template - The footer should be redesigned according to the standard Code for Romania footer as displayed here
https://code4.ro/ro/
|
priority
|
change footer to standard template the footer should be redesigned according to the standard code for romania footer as displayed here
| 1
|
433,759
| 12,510,074,726
|
IssuesEvent
|
2020-06-02 17:59:43
|
Azure/ARO-RP
|
https://api.github.com/repos/Azure/ARO-RP
|
closed
|
validate RP system logs flowing correctly via syslog
|
priority-high size-medium
|
validate that RP system logs are flowing correctly from journald -> rsyslog -> mdsd -> geneva and if not, fix
|
1.0
|
validate RP system logs flowing correctly via syslog - validate that RP system logs are flowing correctly from journald -> rsyslog -> mdsd -> geneva and if not, fix
|
priority
|
validate rp system logs flowing correctly via syslog validate that rp system logs are flowing correctly from journald rsyslog mdsd geneva and if not fix
| 1
|
622,591
| 19,650,630,078
|
IssuesEvent
|
2022-01-10 06:26:50
|
MineDragonCZ/Aunis1
|
https://api.github.com/repos/MineDragonCZ/Aunis1
|
closed
|
Error with kawoosh bouding boxes
|
Fixed Bug 1_High priority
|
After gate has close, the bouding boxes of EH are still there.
|
1.0
|
Error with kawoosh bouding boxes - After gate has close, the bouding boxes of EH are still there.
|
priority
|
error with kawoosh bouding boxes after gate has close the bouding boxes of eh are still there
| 1
|
732,891
| 25,279,320,959
|
IssuesEvent
|
2022-11-16 14:45:52
|
hack4bengal/hack4bengal.github.io
|
https://api.github.com/repos/hack4bengal/hack4bengal.github.io
|
opened
|
Image Compression Required
|
bug hacktoberfest 🛠 goal: fix 🟧 priority: high
|
### Description
Need to compress image file name name mob17.jpg
### Screenshots

### Additional information
_No response_
|
1.0
|
Image Compression Required - ### Description
Need to compress image file name name mob17.jpg
### Screenshots

### Additional information
_No response_
|
priority
|
image compression required description need to compress image file name name jpg screenshots additional information no response
| 1
|
705,279
| 24,229,251,015
|
IssuesEvent
|
2022-09-26 16:44:39
|
FrozenBlock/WilderWild
|
https://api.github.com/repos/FrozenBlock/WilderWild
|
closed
|
Fix Jellyfish Caves Placement
|
worldgen high priority awaiting response
|
They should be much smaller on average and generate ONLY under ocean biomes (but only sometimes generate at all)
|
1.0
|
Fix Jellyfish Caves Placement - They should be much smaller on average and generate ONLY under ocean biomes (but only sometimes generate at all)
|
priority
|
fix jellyfish caves placement they should be much smaller on average and generate only under ocean biomes but only sometimes generate at all
| 1
|
544,865
| 15,930,466,152
|
IssuesEvent
|
2021-04-14 00:57:07
|
ahmedkaludi/accelerated-mobile-pages
|
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
|
closed
|
Need to compatible with muffin pagebuilder
|
NEXT UPDATE [Priority: HIGH] bug
|
AMP has not compatible with the muffin page builder. The content is not showing on AMP pages. The content render for muffin builder is broken and nothing renders.
Website URL: https://asadorelescorial.es/carta-bebidas/
Reference: https://secure.helpscout.net/conversation/1476598637/189949/
|
1.0
|
Need to compatible with muffin pagebuilder -
AMP has not compatible with the muffin page builder. The content is not showing on AMP pages. The content render for muffin builder is broken and nothing renders.
Website URL: https://asadorelescorial.es/carta-bebidas/
Reference: https://secure.helpscout.net/conversation/1476598637/189949/
|
priority
|
need to compatible with muffin pagebuilder amp has not compatible with the muffin page builder the content is not showing on amp pages the content render for muffin builder is broken and nothing renders website url reference
| 1
|
686,675
| 23,500,891,757
|
IssuesEvent
|
2022-08-18 08:19:41
|
kubesphere/kubesphere
|
https://api.github.com/repos/kubesphere/kubesphere
|
closed
|
worksapce-manager cannot create worksapce
|
kind/bug priority/high
|
**Describe the Bug**


**Versions Used**
KubeSphere: `v3.3.0`
|
1.0
|
worksapce-manager cannot create worksapce -
**Describe the Bug**


**Versions Used**
KubeSphere: `v3.3.0`
|
priority
|
worksapce manager cannot create worksapce describe the bug versions used kubesphere
| 1
|
295,154
| 9,082,588,803
|
IssuesEvent
|
2019-02-17 13:43:33
|
nebula-orchestrator/nebula-cmd
|
https://api.github.com/repos/nebula-orchestrator/nebula-cmd
|
closed
|
Migrate to Python 3.x
|
enhancement help wanted high priority
|
## Expected/Wanted Behaviour
With Python 2.x nearing it's EOL Nebula should migrate to Python 3.x (with the current minor version target being the latest released version)
## Actual Behaviour
Nebula is is currently Python 2.7.x based
|
1.0
|
Migrate to Python 3.x - ## Expected/Wanted Behaviour
With Python 2.x nearing it's EOL Nebula should migrate to Python 3.x (with the current minor version target being the latest released version)
## Actual Behaviour
Nebula is is currently Python 2.7.x based
|
priority
|
migrate to python x expected wanted behaviour with python x nearing it s eol nebula should migrate to python x with the current minor version target being the latest released version actual behaviour nebula is is currently python x based
| 1
|
656,449
| 21,730,793,288
|
IssuesEvent
|
2022-05-11 11:50:10
|
HEPData/hepdata
|
https://api.github.com/repos/HEPData/hepdata
|
opened
|
analyses: remove outdated Rivet analyses from database
|
type: bug priority: high complexity: medium
|
Now that we can filter by `analysis:rivet` on the QA site, the search results are ordered by number of Rivet analyses, showing that 36 records have more than one Rivet analyses. Many of these do not appear in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json) that is harvested daily and processed by the [`update_analyses`](https://github.com/HEPData/hepdata/blob/896d02db36c575a2bd927b33fc71c19d0cf1e6f8/hepdata/modules/records/utils/analyses.py#L42) function. Some Rivet analysis are removed with new releases (https://rivet.hepforge.org/anadiffs.txt) while others have been combined. There also seem to be a few duplicates. The current `update_analyses` function only creates new `DataResource` objects. It should be expanded to remove `DataResource` objects corresponding to duplicate, outdated or superseded Rivet analyses that are not specified in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json). If a `DataResource` object is deleted, the corresponding submission should then be reindexed.
|
1.0
|
analyses: remove outdated Rivet analyses from database - Now that we can filter by `analysis:rivet` on the QA site, the search results are ordered by number of Rivet analyses, showing that 36 records have more than one Rivet analyses. Many of these do not appear in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json) that is harvested daily and processed by the [`update_analyses`](https://github.com/HEPData/hepdata/blob/896d02db36c575a2bd927b33fc71c19d0cf1e6f8/hepdata/modules/records/utils/analyses.py#L42) function. Some Rivet analysis are removed with new releases (https://rivet.hepforge.org/anadiffs.txt) while others have been combined. There also seem to be a few duplicates. The current `update_analyses` function only creates new `DataResource` objects. It should be expanded to remove `DataResource` objects corresponding to duplicate, outdated or superseded Rivet analyses that are not specified in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json). If a `DataResource` object is deleted, the corresponding submission should then be reindexed.
|
priority
|
analyses remove outdated rivet analyses from database now that we can filter by analysis rivet on the qa site the search results are ordered by number of rivet analyses showing that records have more than one rivet analyses many of these do not appear in the current list of rivet analyses that is harvested daily and processed by the function some rivet analysis are removed with new releases while others have been combined there also seem to be a few duplicates the current update analyses function only creates new dataresource objects it should be expanded to remove dataresource objects corresponding to duplicate outdated or superseded rivet analyses that are not specified in the current list of rivet analyses if a dataresource object is deleted the corresponding submission should then be reindexed
| 1
|
266,825
| 8,375,565,454
|
IssuesEvent
|
2018-10-05 16:49:47
|
meumobi/ion-employee
|
https://api.github.com/repos/meumobi/ion-employee
|
opened
|
missing details about author on Create message
|
bug high-priority
|
### Expected behaviour
Message title should be filled by the name of author, and click lead to contact-details.
### Actual behaviour
message.title is missing and click is disabled

We can see on db that entry has no info about displayName and id of author of message
https://console.firebase.google.com/u/0/project/ion-employee/database/firestore/data~2Fcomments~2FSgPfCHVs92vLS0EAihMB
### Steps to reproduce
1.
2.
3.
### Expected responses
- Why it happens
- How to fix it
- How to test
|
1.0
|
missing details about author on Create message - ### Expected behaviour
Message title should be filled by the name of author, and click lead to contact-details.
### Actual behaviour
message.title is missing and click is disabled

We can see on db that entry has no info about displayName and id of author of message
https://console.firebase.google.com/u/0/project/ion-employee/database/firestore/data~2Fcomments~2FSgPfCHVs92vLS0EAihMB
### Steps to reproduce
1.
2.
3.
### Expected responses
- Why it happens
- How to fix it
- How to test
|
priority
|
missing details about author on create message expected behaviour message title should be filled by the name of author and click lead to contact details actual behaviour message title is missing and click is disabled we can see on db that entry has no info about displayname and id of author of message steps to reproduce expected responses why it happens how to fix it how to test
| 1
|
357,686
| 10,616,836,953
|
IssuesEvent
|
2019-10-12 14:46:41
|
dani02021/TakaAntiCheat
|
https://api.github.com/repos/dani02021/TakaAntiCheat
|
closed
|
WAY to many false kicks/ bans
|
false positive high-priority invalid
|
Ok so like people will just be playing normally and randomly get kicked or banned. like almost every ban wave. I have gone through the config and nothing seems to be doing anything. i also got on an alt that wasn't OPed just default and gave it fly and super crazy speed and it did nothing. not even at the ban wave. A little disappointed for how much it costs :/
|
1.0
|
WAY to many false kicks/ bans - Ok so like people will just be playing normally and randomly get kicked or banned. like almost every ban wave. I have gone through the config and nothing seems to be doing anything. i also got on an alt that wasn't OPed just default and gave it fly and super crazy speed and it did nothing. not even at the ban wave. A little disappointed for how much it costs :/
|
priority
|
way to many false kicks bans ok so like people will just be playing normally and randomly get kicked or banned like almost every ban wave i have gone through the config and nothing seems to be doing anything i also got on an alt that wasn t oped just default and gave it fly and super crazy speed and it did nothing not even at the ban wave a little disappointed for how much it costs
| 1
|
200,137
| 7,000,486,898
|
IssuesEvent
|
2017-12-18 05:20:03
|
BuckleScript/bucklescript
|
https://api.github.com/repos/BuckleScript/bucklescript
|
closed
|
accessors on JS objects to hide JS api to make it more portable
|
PRIORITY:HIGH
|
relevant #2090
```ocaml
type ('a,'b) t =
< key : 'a [@bs.set] ;
value : 'b; > Js.t
[@@bs.deriving { accessors = hideType } ]
```
---
another syntax would be
```ocaml
type ('a,'b) t =
{ key : 'a ;
mutable : 'b } [@@bs.deriving {jsConverter =replaceType}]
```
Generate code of signature like this
```ocaml
type ('a,'b) t
val t : key:'a -> value:'b -> ('a,'b) t (* needed *)
val key : ('a,'b) t -> 'a
val keySet : ('a,'b) t -> 'a -> unit
val value : ('a,'b) t ->'b
```
The motivation of such code gen is to minimize code expressions like `v##key #= 3`, it is ugly and invasive to make the code portable, also seems safer
Note this is essentially as expressive as making it non-abstract, since we can not pattern match on objects.
Maybe functional update would also work
```ocaml
val update : ('a,'b) t -> ?key:'a -> ?value:'b -> unit -> ('a,'b) t
```
If we introduce functional update, we need make sure `t` is abstract
|
1.0
|
accessors on JS objects to hide JS api to make it more portable - relevant #2090
```ocaml
type ('a,'b) t =
< key : 'a [@bs.set] ;
value : 'b; > Js.t
[@@bs.deriving { accessors = hideType } ]
```
---
another syntax would be
```ocaml
type ('a,'b) t =
{ key : 'a ;
mutable : 'b } [@@bs.deriving {jsConverter =replaceType}]
```
Generate code of signature like this
```ocaml
type ('a,'b) t
val t : key:'a -> value:'b -> ('a,'b) t (* needed *)
val key : ('a,'b) t -> 'a
val keySet : ('a,'b) t -> 'a -> unit
val value : ('a,'b) t ->'b
```
The motivation of such code gen is to minimize code expressions like `v##key #= 3`, it is ugly and invasive to make the code portable, also seems safer
Note this is essentially as expressive as making it non-abstract, since we can not pattern match on objects.
Maybe functional update would also work
```ocaml
val update : ('a,'b) t -> ?key:'a -> ?value:'b -> unit -> ('a,'b) t
```
If we introduce functional update, we need make sure `t` is abstract
|
priority
|
accessors on js objects to hide js api to make it more portable relevant ocaml type a b t key a value b js t another syntax would be ocaml type a b t key a mutable b generate code of signature like this ocaml type a b t val t key a value b a b t needed val key a b t a val keyset a b t a unit val value a b t b the motivation of such code gen is to minimize code expressions like v key it is ugly and invasive to make the code portable also seems safer note this is essentially as expressive as making it non abstract since we can not pattern match on objects maybe functional update would also work ocaml val update a b t key a value b unit a b t if we introduce functional update we need make sure t is abstract
| 1
|
785,069
| 27,596,858,663
|
IssuesEvent
|
2023-03-09 07:11:53
|
AY2223S2-CS2113-T12-4/tp
|
https://api.github.com/repos/AY2223S2-CS2113-T12-4/tp
|
closed
|
[User Story Feature] Add Input Type Validator
|
type.Story priority.High
|
## User Story
As a computing student used to CLI environments, I want to receive immediate feedback after submitting my command so that I know if my command had any issues
## Is your feature request related to a problem? Please describe.
Currently, the command parsing architecture simply splits commands into its arguments and commands with no type checking
This allows for adversarial input that can break WellNus.
For example, an argument expecting an integer may get malicious input, such as `--number foobar`
If not handled properly, this will cause undefined behaviour in WellNus.
## Describe the solution you'd like
An argument-payload type validator that helps process payloads of a certain type and throws an appropriate error with good description if there is an issue with the payload.
By extension, the error thrown will be shown to the user to give them immediate feedback on their command validity.
|
1.0
|
[User Story Feature] Add Input Type Validator - ## User Story
As a computing student used to CLI environments, I want to receive immediate feedback after submitting my command so that I know if my command had any issues
## Is your feature request related to a problem? Please describe.
Currently, the command parsing architecture simply splits commands into its arguments and commands with no type checking
This allows for adversarial input that can break WellNus.
For example, an argument expecting an integer may get malicious input, such as `--number foobar`
If not handled properly, this will cause undefined behaviour in WellNus.
## Describe the solution you'd like
An argument-payload type validator that helps process payloads of a certain type and throws an appropriate error with good description if there is an issue with the payload.
By extension, the error thrown will be shown to the user to give them immediate feedback on their command validity.
|
priority
|
add input type validator user story as a computing student used to cli environments i want to receive immediate feedback after submitting my command so that i know if my command had any issues is your feature request related to a problem please describe currently the command parsing architecture simply splits commands into its arguments and commands with no type checking this allows for adversarial input that can break wellnus for example an argument expecting an integer may get malicious input such as number foobar if not handled properly this will cause undefined behaviour in wellnus describe the solution you d like an argument payload type validator that helps process payloads of a certain type and throws an appropriate error with good description if there is an issue with the payload by extension the error thrown will be shown to the user to give them immediate feedback on their command validity
| 1
|
630,671
| 20,116,129,110
|
IssuesEvent
|
2022-02-07 19:43:29
|
pytorch/pytorch
|
https://api.github.com/repos/pytorch/pytorch
|
closed
|
torch.multinomial samples same elements multiple times when replacement=False
|
high priority module: distributions triaged module: correctness (silent)
|
## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
Sometimes a sampled index is drawn multiple time in a row even if replacement=False on `torch.multinomial`. This happens when an element of `input` is very small but not zero.
## To Reproduce
Steps to reproduce the behavior:
Here is a minimal working example:
```python
import torch
torch.manual_seed(0)
w = torch.tensor( [1.2899e-01, 6.2532e-01, 3.6483e-02, 1.5196e-01, 2.9675e-03,
4.9773e-03,4.5881e-02, 2.9019e-03, 5.2139e-04, 1.5281e-17] )
print(torch.multinomial(w, 10, replacement=False))
```
.
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
## Expected behavior
Raise an error because one element of `input` is almost zero.
<!-- A clear and concise description of what you expected to happen. -->
## Environment
PyTorch version: 1.2.0
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Ubuntu 18.04.2 LTS
GCC version: (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
CMake version: Could not collect
Python version: 3.6
Is CUDA available: Yes
CUDA runtime version: Could not collect
GPU models and configuration: GPU 0: GeForce GTX 1080 Ti
Nvidia driver version: 418.67
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.2
Versions of relevant libraries:
[pip3] numpy==1.16.4
[pip3] torch==1.2.0
[pip3] torchsummary==1.5.1
[pip3] torchvision==0.3.0
[conda] Could not collect
cc @ezyang @gchanan @zou3519 @vincentqb @fritzo @neerajprad @alicanb @vishwakftw @nikitaved
|
1.0
|
torch.multinomial samples same elements multiple times when replacement=False - ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
Sometimes a sampled index is drawn multiple time in a row even if replacement=False on `torch.multinomial`. This happens when an element of `input` is very small but not zero.
## To Reproduce
Steps to reproduce the behavior:
Here is a minimal working example:
```python
import torch
torch.manual_seed(0)
w = torch.tensor( [1.2899e-01, 6.2532e-01, 3.6483e-02, 1.5196e-01, 2.9675e-03,
4.9773e-03,4.5881e-02, 2.9019e-03, 5.2139e-04, 1.5281e-17] )
print(torch.multinomial(w, 10, replacement=False))
```
.
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
## Expected behavior
Raise an error because one element of `input` is almost zero.
<!-- A clear and concise description of what you expected to happen. -->
## Environment
PyTorch version: 1.2.0
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Ubuntu 18.04.2 LTS
GCC version: (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
CMake version: Could not collect
Python version: 3.6
Is CUDA available: Yes
CUDA runtime version: Could not collect
GPU models and configuration: GPU 0: GeForce GTX 1080 Ti
Nvidia driver version: 418.67
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.2
Versions of relevant libraries:
[pip3] numpy==1.16.4
[pip3] torch==1.2.0
[pip3] torchsummary==1.5.1
[pip3] torchvision==0.3.0
[conda] Could not collect
cc @ezyang @gchanan @zou3519 @vincentqb @fritzo @neerajprad @alicanb @vishwakftw @nikitaved
|
priority
|
torch multinomial samples same elements multiple times when replacement false 🐛 bug sometimes a sampled index is drawn multiple time in a row even if replacement false on torch multinomial this happens when an element of input is very small but not zero to reproduce steps to reproduce the behavior here is a minimal working example python import torch torch manual seed w torch tensor print torch multinomial w replacement false expected behavior raise an error because one element of input is almost zero environment pytorch version is debug build no cuda used to build pytorch os ubuntu lts gcc version ubuntu cmake version could not collect python version is cuda available yes cuda runtime version could not collect gpu models and configuration gpu geforce gtx ti nvidia driver version cudnn version usr lib linux gnu libcudnn so versions of relevant libraries numpy torch torchsummary torchvision could not collect cc ezyang gchanan vincentqb fritzo neerajprad alicanb vishwakftw nikitaved
| 1
|
647,414
| 21,102,703,891
|
IssuesEvent
|
2022-04-04 15:46:06
|
Bibliome/alvisnlp
|
https://api.github.com/repos/Bibliome/alvisnlp
|
closed
|
Custom link in OBOMapper and OBOProjector paths
|
Priority: High Topic: Factory Type: Feature Status: In Progress
|
`OBOProjector` and `OBOMapper` compute paths following `is_a` links exclusively.
The user should be able to specify other links to follow. See: https://github.com/Bibliome/bibliome-java-utils/issues/30
|
1.0
|
Custom link in OBOMapper and OBOProjector paths - `OBOProjector` and `OBOMapper` compute paths following `is_a` links exclusively.
The user should be able to specify other links to follow. See: https://github.com/Bibliome/bibliome-java-utils/issues/30
|
priority
|
custom link in obomapper and oboprojector paths oboprojector and obomapper compute paths following is a links exclusively the user should be able to specify other links to follow see
| 1
|
366,469
| 10,821,276,028
|
IssuesEvent
|
2019-11-08 18:17:06
|
Santa-Polytecha/playroom-web
|
https://api.github.com/repos/Santa-Polytecha/playroom-web
|
closed
|
📩 Integrate message into chatbox
|
Priority: High Status: On Hold Type: Enhancement enhancement
|
Once #3 is finished, the message components must be added dynamically in the chatbox.
|
1.0
|
📩 Integrate message into chatbox - Once #3 is finished, the message components must be added dynamically in the chatbox.
|
priority
|
📩 integrate message into chatbox once is finished the message components must be added dynamically in the chatbox
| 1
|
142,095
| 5,452,702,684
|
IssuesEvent
|
2017-03-08 04:23:11
|
CS2103JAN2017-W14-B3/main
|
https://api.github.com/repos/CS2103JAN2017-W14-B3/main
|
closed
|
As a new user I want to have a help command
|
priority.high type.story
|
So that I can refer to instructions when I forget how to use the App.
|
1.0
|
As a new user I want to have a help command - So that I can refer to instructions when I forget how to use the App.
|
priority
|
as a new user i want to have a help command so that i can refer to instructions when i forget how to use the app
| 1
|
408,741
| 11,951,390,127
|
IssuesEvent
|
2020-04-03 16:47:34
|
SunwellTracker/issues
|
https://api.github.com/repos/SunwellTracker/issues
|
closed
|
[Hunter] Intimidation bug
|
Fixed & Implemented High Priority Hunter Pet
|
Decription:
http://db.darkwizard.pl/?spell=19577
How it works:
3 out of 10 cases pet himself stuns
https://www.youtube.com/watch?v=nP7gymCrx9I
How it should work:
Command your pet to intimidate the target, causing a high amount of threat and stunning the target for 3 sec. Lasts 15 sec.
--
Source (you should point out proofs of your report, please give us some source):
|
1.0
|
[Hunter] Intimidation bug - Decription:
http://db.darkwizard.pl/?spell=19577
How it works:
3 out of 10 cases pet himself stuns
https://www.youtube.com/watch?v=nP7gymCrx9I
How it should work:
Command your pet to intimidate the target, causing a high amount of threat and stunning the target for 3 sec. Lasts 15 sec.
--
Source (you should point out proofs of your report, please give us some source):
|
priority
|
intimidation bug decription how it works out of cases pet himself stuns how it should work command your pet to intimidate the target causing a high amount of threat and stunning the target for sec lasts sec source you should point out proofs of your report please give us some source
| 1
|
281,281
| 8,693,372,417
|
IssuesEvent
|
2018-12-04 09:38:01
|
ballerina-platform/ballerina-lang
|
https://api.github.com/repos/ballerina-platform/ballerina-lang
|
closed
|
Database Transaction error scenario fails with ArrayIndexOutOfBoundsException
|
Component/BVM L1/L2 for December Priority/Highest Type/Bug
|
**Description:**
$Subject.
Can be reproduced with SQLTransactionTest#testTransactionRollbackUpdateWithGeneratedKeys
Unnecessary lines have been removed to make isolation easy.
```ballerina
function testLocalTransactionRollbackStoredProcedure() returns (int, int, int, int) {
endpoint h2:Client testDB {
path: "./target/tempdb/",
name: "TEST_SQL_CONNECTOR_TR",
username: "SA",
password: "",
poolOptions: { maximumPoolSize: 3 }
};
int returnVal = 0;
int count1;
int count2;
int count3;
transaction {
// _ = testDB->call("{call InsertPersonDataSuccessful(?, ?)}", (), 629, 629);
_ = testDB->call("{call InsertPersonDataFailure(?, ?)}", (), 631, 632);
} onretry {
returnVal = -1;
}
//check whether update action is performed
//table dt1 = check testDB->select("Select COUNT(*) as countval from Customers where registrationID = 629",
// ResultCount);
//table dt2 = check testDB->select("Select COUNT(*) as countval from Customers where registrationID = 631",
// ResultCount);
//table dt3 = check testDB->select("Select COUNT(*) as countval from Customers where registrationID = 632",
// ResultCount);
//
//while (dt1.hasNext()) {
// ResultCount rs = check <ResultCount>dt1.getNext();
// count1 = rs.COUNTVAL;
//}
//while (dt2.hasNext()) {
// ResultCount rs = check <ResultCount>dt2.getNext();
// count2 = rs.COUNTVAL;
//}
//while (dt3.hasNext()) {
// ResultCount rs = check <ResultCount>dt3.getNext();
// count3 = rs.COUNTVAL;
//}
testDB.stop();
return (returnVal, count1, count2, count3);
}
```
When debugging ArrayIndexOutOfBoundsException can be observed at [here](https://github.com/ballerina-platform/ballerina-lang/blob/error_refactor/bvm/ballerina-core/src/main/java/org/ballerinalang/bre/bvm/CPU.java#L3842) in CPU class. regIndex becomes -1.
Note: I have done the syntax updates for error and type checking changes in [this](https://github.com/ballerina-platform/ballerina-lang/pull/11442) PR.
|
1.0
|
Database Transaction error scenario fails with ArrayIndexOutOfBoundsException - **Description:**
$Subject.
Can be reproduced with SQLTransactionTest#testTransactionRollbackUpdateWithGeneratedKeys
Unnecessary lines have been removed to make isolation easy.
```ballerina
function testLocalTransactionRollbackStoredProcedure() returns (int, int, int, int) {
endpoint h2:Client testDB {
path: "./target/tempdb/",
name: "TEST_SQL_CONNECTOR_TR",
username: "SA",
password: "",
poolOptions: { maximumPoolSize: 3 }
};
int returnVal = 0;
int count1;
int count2;
int count3;
transaction {
// _ = testDB->call("{call InsertPersonDataSuccessful(?, ?)}", (), 629, 629);
_ = testDB->call("{call InsertPersonDataFailure(?, ?)}", (), 631, 632);
} onretry {
returnVal = -1;
}
//check whether update action is performed
//table dt1 = check testDB->select("Select COUNT(*) as countval from Customers where registrationID = 629",
// ResultCount);
//table dt2 = check testDB->select("Select COUNT(*) as countval from Customers where registrationID = 631",
// ResultCount);
//table dt3 = check testDB->select("Select COUNT(*) as countval from Customers where registrationID = 632",
// ResultCount);
//
//while (dt1.hasNext()) {
// ResultCount rs = check <ResultCount>dt1.getNext();
// count1 = rs.COUNTVAL;
//}
//while (dt2.hasNext()) {
// ResultCount rs = check <ResultCount>dt2.getNext();
// count2 = rs.COUNTVAL;
//}
//while (dt3.hasNext()) {
// ResultCount rs = check <ResultCount>dt3.getNext();
// count3 = rs.COUNTVAL;
//}
testDB.stop();
return (returnVal, count1, count2, count3);
}
```
When debugging ArrayIndexOutOfBoundsException can be observed at [here](https://github.com/ballerina-platform/ballerina-lang/blob/error_refactor/bvm/ballerina-core/src/main/java/org/ballerinalang/bre/bvm/CPU.java#L3842) in CPU class. regIndex becomes -1.
Note: I have done the syntax updates for error and type checking changes in [this](https://github.com/ballerina-platform/ballerina-lang/pull/11442) PR.
|
priority
|
database transaction error scenario fails with arrayindexoutofboundsexception description subject can be reproduced with sqltransactiontest testtransactionrollbackupdatewithgeneratedkeys unnecessary lines have been removed to make isolation easy ballerina function testlocaltransactionrollbackstoredprocedure returns int int int int endpoint client testdb path target tempdb name test sql connector tr username sa password pooloptions maximumpoolsize int returnval int int int transaction testdb call call insertpersondatasuccessful testdb call call insertpersondatafailure onretry returnval check whether update action is performed table check testdb select select count as countval from customers where registrationid resultcount table check testdb select select count as countval from customers where registrationid resultcount table check testdb select select count as countval from customers where registrationid resultcount while hasnext resultcount rs check getnext rs countval while hasnext resultcount rs check getnext rs countval while hasnext resultcount rs check getnext rs countval testdb stop return returnval when debugging arrayindexoutofboundsexception can be observed at in cpu class regindex becomes note i have done the syntax updates for error and type checking changes in pr
| 1
|
324,298
| 9,887,295,845
|
IssuesEvent
|
2019-06-25 08:54:01
|
chrisly-bear/PEBRApp
|
https://api.github.com/repos/chrisly-bear/PEBRApp
|
closed
|
Action Required Labeling
|
high priority
|
On the main screen, patients should be visually highlighted, e.g., by an exclamation mark, if they require an action.
On the patient screen, the required action is explained, e.g., in a box at the top of the patient screen.
Possible actions might be:
- an initial ART refill date has to be defined after a new patient has been added
- an initial preference assessment has to be done after a new patient has been added
- the next ART refill date has to be uploaded to the viral load database (#17)
- an endpoint survey is due (#18)
|
1.0
|
Action Required Labeling - On the main screen, patients should be visually highlighted, e.g., by an exclamation mark, if they require an action.
On the patient screen, the required action is explained, e.g., in a box at the top of the patient screen.
Possible actions might be:
- an initial ART refill date has to be defined after a new patient has been added
- an initial preference assessment has to be done after a new patient has been added
- the next ART refill date has to be uploaded to the viral load database (#17)
- an endpoint survey is due (#18)
|
priority
|
action required labeling on the main screen patients should be visually highlighted e g by an exclamation mark if they require an action on the patient screen the required action is explained e g in a box at the top of the patient screen possible actions might be an initial art refill date has to be defined after a new patient has been added an initial preference assessment has to be done after a new patient has been added the next art refill date has to be uploaded to the viral load database an endpoint survey is due
| 1
|
256,748
| 8,128,552,976
|
IssuesEvent
|
2018-08-17 12:16:55
|
strapi/strapi
|
https://api.github.com/repos/strapi/strapi
|
reopened
|
Error when adding one to many relation
|
priority: high status: can't reproduce type: bug 🐛
|
<!-- ⚠️ Before writing your issue make sure you are using :-->
<!-- Node 9.x.x -->
<!-- npm 5.x.x -->
<!-- The latest version of Strapi -->
**Informations**
- **Node.js version**:
9.8.0
- **npm version**:
5.6.0
- **Strapi version**:
3.0.0-alpha.11.1
- **Database**:
MongoDB
- **Operating system**:
Windows 10
**What is the current behavior?**
One to many relation is causing error on saving.
**Steps to reproduce the problem**
1. Create content type "product"

2. Create content type "productspecification"

3. Add relation to "productspecification"

**Side note: there is a UI bug here. Whenever choosing which content type to add a relation to, its name will disappear**

**I think (from:) is weird here.**
4. Save
5. Error appears

**What is the expected behavior?**
Strapi should restart without error. I read a few of the issues other people have, and I'm sure I used all lowercase and the relation should be one to many. A product has many specifications, but each specification should only link to one product.
- [x] I'm sure that this issue hasn't already been referenced
<!-- ⬆️ Don't delete this checkbox from your issue and approve it. -->
<!-- ⚠️ Make sure to browse the opened and closed issues. -->
|
1.0
|
Error when adding one to many relation - <!-- ⚠️ Before writing your issue make sure you are using :-->
<!-- Node 9.x.x -->
<!-- npm 5.x.x -->
<!-- The latest version of Strapi -->
**Informations**
- **Node.js version**:
9.8.0
- **npm version**:
5.6.0
- **Strapi version**:
3.0.0-alpha.11.1
- **Database**:
MongoDB
- **Operating system**:
Windows 10
**What is the current behavior?**
One to many relation is causing error on saving.
**Steps to reproduce the problem**
1. Create content type "product"

2. Create content type "productspecification"

3. Add relation to "productspecification"

**Side note: there is a UI bug here. Whenever choosing which content type to add a relation to, its name will disappear**

**I think (from:) is weird here.**
4. Save
5. Error appears

**What is the expected behavior?**
Strapi should restart without error. I read a few of the issues other people have, and I'm sure I used all lowercase and the relation should be one to many. A product has many specifications, but each specification should only link to one product.
- [x] I'm sure that this issue hasn't already been referenced
<!-- ⬆️ Don't delete this checkbox from your issue and approve it. -->
<!-- ⚠️ Make sure to browse the opened and closed issues. -->
|
priority
|
error when adding one to many relation informations node js version npm version strapi version alpha database mongodb operating system windows what is the current behavior one to many relation is causing error on saving steps to reproduce the problem create content type product create content type productspecification add relation to productspecification side note there is a ui bug here whenever choosing which content type to add a relation to its name will disappear i think from is weird here save error appears what is the expected behavior strapi should restart without error i read a few of the issues other people have and i m sure i used all lowercase and the relation should be one to many a product has many specifications but each specification should only link to one product i m sure that this issue hasn t already been referenced
| 1
|
586,283
| 17,574,382,597
|
IssuesEvent
|
2021-08-15 10:11:42
|
ballerina-platform/plugin-vscode
|
https://api.github.com/repos/ballerina-platform/plugin-vscode
|
opened
|
Unable to find syntax errors from error logs
|
Type/Improvement Priority/High
|
**Description:**
It is not possible to find where exactly a syntax error occurs on vscode when there is a complication error. The pattern of the error log is not identified by the vscode. We have to edit that output everytime.
Example:
Say I get the following error while compiling:
```
ERROR [semver.bal:(17:1,17:23)] cannot resolve module 'ballerina/math'
```
I then copy and do a `command+p` to paste `semver.bal:(17:1,17:23)`. But no results are shown. Search results will be shown if I edit it to be like `semver.bal:17:1`.

|
1.0
|
Unable to find syntax errors from error logs - **Description:**
It is not possible to find where exactly a syntax error occurs on vscode when there is a complication error. The pattern of the error log is not identified by the vscode. We have to edit that output everytime.
Example:
Say I get the following error while compiling:
```
ERROR [semver.bal:(17:1,17:23)] cannot resolve module 'ballerina/math'
```
I then copy and do a `command+p` to paste `semver.bal:(17:1,17:23)`. But no results are shown. Search results will be shown if I edit it to be like `semver.bal:17:1`.

|
priority
|
unable to find syntax errors from error logs description it is not possible to find where exactly a syntax error occurs on vscode when there is a complication error the pattern of the error log is not identified by the vscode we have to edit that output everytime example say i get the following error while compiling error cannot resolve module ballerina math i then copy and do a command p to paste semver bal but no results are shown search results will be shown if i edit it to be like semver bal
| 1
|
508,174
| 14,692,253,018
|
IssuesEvent
|
2021-01-03 00:48:39
|
archivy/archivy
|
https://api.github.com/repos/archivy/archivy
|
closed
|
Do not use app.run in production.
|
high-priority
|
as [per the flask docs](https://flask.palletsprojects.com/en/1.1.x/deploying/) and the warning that should be shown when running, you should not use the development server in production which is what `archivy run` will start.
the development server is very insecure, has a low performance and of generally bad. it should only run when actually developing the app.
|
1.0
|
Do not use app.run in production. - as [per the flask docs](https://flask.palletsprojects.com/en/1.1.x/deploying/) and the warning that should be shown when running, you should not use the development server in production which is what `archivy run` will start.
the development server is very insecure, has a low performance and of generally bad. it should only run when actually developing the app.
|
priority
|
do not use app run in production as and the warning that should be shown when running you should not use the development server in production which is what archivy run will start the development server is very insecure has a low performance and of generally bad it should only run when actually developing the app
| 1
|
664,484
| 22,272,446,292
|
IssuesEvent
|
2022-06-10 13:37:31
|
VEuPathDB/web-eda
|
https://api.github.com/repos/VEuPathDB/web-eda
|
closed
|
map tool down in QA clinepi
|
bug high priority
|
When looking at the SCORE Mozambique and other studies I get this error @bobular.
<img width="1186" alt="Screenshot 2022-06-06 at 17 23 26" src="https://user-images.githubusercontent.com/22981342/172202912-f7c13a71-cfe6-4fe9-802e-75d447d28892.png">
|
1.0
|
map tool down in QA clinepi - When looking at the SCORE Mozambique and other studies I get this error @bobular.
<img width="1186" alt="Screenshot 2022-06-06 at 17 23 26" src="https://user-images.githubusercontent.com/22981342/172202912-f7c13a71-cfe6-4fe9-802e-75d447d28892.png">
|
priority
|
map tool down in qa clinepi when looking at the score mozambique and other studies i get this error bobular img width alt screenshot at src
| 1
|
559,527
| 16,565,249,191
|
IssuesEvent
|
2021-05-29 09:05:32
|
code4romania/de-urgenta-android
|
https://api.github.com/repos/code4romania/de-urgenta-android
|
opened
|
Integrate add group endpoint
|
feature-groups high-priority :fire:
|
Complete add group implementation. The UI is implemented, but the API is not linked.
Please check swagger https://api.deurgenta.hostmysite.ro/swagger/index.html and complete functionality for:
- add new group
|
1.0
|
Integrate add group endpoint - Complete add group implementation. The UI is implemented, but the API is not linked.
Please check swagger https://api.deurgenta.hostmysite.ro/swagger/index.html and complete functionality for:
- add new group
|
priority
|
integrate add group endpoint complete add group implementation the ui is implemented but the api is not linked please check swagger and complete functionality for add new group
| 1
|
824,448
| 31,156,746,634
|
IssuesEvent
|
2023-08-16 13:35:18
|
ballerina-platform/ballerina-lang
|
https://api.github.com/repos/ballerina-platform/ballerina-lang
|
closed
|
[Bug]: Require using locks when accessing restricted fields with `self` in the `init` method of an isolated object
|
Type/Bug Priority/High Team/CompilerFE
|
### Description
See https://github.com/ballerina-platform/ballerina-spec/issues/1243 for details about the issue and the change.
### Steps to Reproduce
_No response_
### Affected Version(s)
_No response_
### OS, DB, other environment details and versions
_No response_
### Related area
-> Compilation
### Related issue(s) (optional)
_No response_
### Suggested label(s) (optional)
_No response_
### Suggested assignee(s) (optional)
_No response_
|
1.0
|
[Bug]: Require using locks when accessing restricted fields with `self` in the `init` method of an isolated object - ### Description
See https://github.com/ballerina-platform/ballerina-spec/issues/1243 for details about the issue and the change.
### Steps to Reproduce
_No response_
### Affected Version(s)
_No response_
### OS, DB, other environment details and versions
_No response_
### Related area
-> Compilation
### Related issue(s) (optional)
_No response_
### Suggested label(s) (optional)
_No response_
### Suggested assignee(s) (optional)
_No response_
|
priority
|
require using locks when accessing restricted fields with self in the init method of an isolated object description see for details about the issue and the change steps to reproduce no response affected version s no response os db other environment details and versions no response related area compilation related issue s optional no response suggested label s optional no response suggested assignee s optional no response
| 1
|
28,018
| 2,698,646,475
|
IssuesEvent
|
2015-04-03 09:20:44
|
DashboardHub/PipelineDashboard
|
https://api.github.com/repos/DashboardHub/PipelineDashboard
|
closed
|
API to accept Beaconed ySlow data
|
priority: high status: IN PROGRESS
|
* [x] Create `ySlow Beacon` Bundle
* [x] Create Entities to save important data to DB
* [x] Only accept `POST` data
|
1.0
|
API to accept Beaconed ySlow data -
* [x] Create `ySlow Beacon` Bundle
* [x] Create Entities to save important data to DB
* [x] Only accept `POST` data
|
priority
|
api to accept beaconed yslow data create yslow beacon bundle create entities to save important data to db only accept post data
| 1
|
444,703
| 12,819,555,510
|
IssuesEvent
|
2020-07-06 02:36:24
|
TheRealZeher/DimensionalPocketsII
|
https://api.github.com/repos/TheRealZeher/DimensionalPocketsII
|
opened
|
Creative teleports user outside of pocket. [Tahlavos17]
|
Priority [HIGH] bug external-mod request
|
When using creative mode, shifting into a pocket spawns the user outside of the pocket in the pocket dimension.



|
1.0
|
Creative teleports user outside of pocket. [Tahlavos17] - When using creative mode, shifting into a pocket spawns the user outside of the pocket in the pocket dimension.



|
priority
|
creative teleports user outside of pocket when using creative mode shifting into a pocket spawns the user outside of the pocket in the pocket dimension
| 1
|
553,524
| 16,373,410,722
|
IssuesEvent
|
2021-05-15 16:04:17
|
az-digital/arizona-bootstrap
|
https://api.github.com/repos/az-digital/arizona-bootstrap
|
opened
|
Main navigation menu should display in uppercase
|
high priority
|
Top-level main navigation in QS2 no longer appears in uppercase (as it does in QS1) on the menu bar
## Problem/Motivation
Not sure if this was an intentional change? The inconsistency may cause confusion as sites transition from QS1 to QS2
WWW nav in QS1:

WWW nav in QS2:

|
1.0
|
Main navigation menu should display in uppercase - Top-level main navigation in QS2 no longer appears in uppercase (as it does in QS1) on the menu bar
## Problem/Motivation
Not sure if this was an intentional change? The inconsistency may cause confusion as sites transition from QS1 to QS2
WWW nav in QS1:

WWW nav in QS2:

|
priority
|
main navigation menu should display in uppercase top level main navigation in no longer appears in uppercase as it does in on the menu bar problem motivation not sure if this was an intentional change the inconsistency may cause confusion as sites transition from to www nav in www nav in
| 1
|
234,983
| 7,733,516,874
|
IssuesEvent
|
2018-05-26 12:50:36
|
bounswe/bounswe2018group9
|
https://api.github.com/repos/bounswe/bounswe2018group9
|
reopened
|
Milestone Review #6
|
Priority: High Status: Review Needed Type: Feedback
|
Milestone 6 - Planning review is under maintanence. Please add here if you have any comment and question about the Acceptance Tests. #122 Milestone Review Reports
|
1.0
|
Milestone Review #6 - Milestone 6 - Planning review is under maintanence. Please add here if you have any comment and question about the Acceptance Tests. #122 Milestone Review Reports
|
priority
|
milestone review milestone planning review is under maintanence please add here if you have any comment and question about the acceptance tests milestone review reports
| 1
|
335,826
| 10,167,253,557
|
IssuesEvent
|
2019-08-07 17:45:58
|
bluek8s/kubedirector
|
https://api.github.com/repos/bluek8s/kubedirector
|
closed
|
investigate namespace watch behavior with new operator SDK
|
Priority: High Project: Operator SDK Type: Maintenance
|
Desired behavior:
* KD watches ALL namespaces for KDC objects.
* KD watches only ITS OWN namespace for KD Config object.
Is this the case on the new operator SDK branch?
And, what is the namespace passed to the manager object used for?
|
1.0
|
investigate namespace watch behavior with new operator SDK - Desired behavior:
* KD watches ALL namespaces for KDC objects.
* KD watches only ITS OWN namespace for KD Config object.
Is this the case on the new operator SDK branch?
And, what is the namespace passed to the manager object used for?
|
priority
|
investigate namespace watch behavior with new operator sdk desired behavior kd watches all namespaces for kdc objects kd watches only its own namespace for kd config object is this the case on the new operator sdk branch and what is the namespace passed to the manager object used for
| 1
|
189,284
| 6,796,047,536
|
IssuesEvent
|
2017-11-01 17:41:04
|
cranndarach/lifetracker
|
https://api.github.com/repos/cranndarach/lifetracker
|
opened
|
[bug] Cannot find config file
|
electron nodejs priority/high task-size/medium type/bug
|
When I use LifeTracker that was installed with `npm i -g lifetracker`, it does not find the config file when the program starts. Thus, the default save directory is not my preferred one, and no data is loaded.
The error handling for `loadUserConfig` could also be improved. I know `CSON.load` doesn't want to be Promisified, but it should at least be Promise-wrapped so that its errors can be turned into rejections.
Also, there's an unhandled rejection when the data file can't be loaded, and the object is empty.
|
1.0
|
[bug] Cannot find config file - When I use LifeTracker that was installed with `npm i -g lifetracker`, it does not find the config file when the program starts. Thus, the default save directory is not my preferred one, and no data is loaded.
The error handling for `loadUserConfig` could also be improved. I know `CSON.load` doesn't want to be Promisified, but it should at least be Promise-wrapped so that its errors can be turned into rejections.
Also, there's an unhandled rejection when the data file can't be loaded, and the object is empty.
|
priority
|
cannot find config file when i use lifetracker that was installed with npm i g lifetracker it does not find the config file when the program starts thus the default save directory is not my preferred one and no data is loaded the error handling for loaduserconfig could also be improved i know cson load doesn t want to be promisified but it should at least be promise wrapped so that its errors can be turned into rejections also there s an unhandled rejection when the data file can t be loaded and the object is empty
| 1
|
519,205
| 15,047,473,167
|
IssuesEvent
|
2021-02-03 08:58:16
|
SAP/xsk
|
https://api.github.com/repos/SAP/xsk
|
opened
|
[Engines] Refactor xssecurestore core service
|
bug core effort-medium priority-high
|
Refactor xssecurestore processor to comply to the persistence rules e.g. xsjob
|
1.0
|
[Engines] Refactor xssecurestore core service - Refactor xssecurestore processor to comply to the persistence rules e.g. xsjob
|
priority
|
refactor xssecurestore core service refactor xssecurestore processor to comply to the persistence rules e g xsjob
| 1
|
433,631
| 12,508,060,083
|
IssuesEvent
|
2020-06-02 15:00:34
|
canonical-web-and-design/jaas-dashboard
|
https://api.github.com/repos/canonical-web-and-design/jaas-dashboard
|
closed
|
Clicking log out nukes table data but does not log out
|
Bug 🐛 Priority: High
|
- Log in
- Click 'Settings > Log out"
- The table data disappears but the user still appears logged in
<img width="1694" alt="Screenshot 2020-04-27 at 20 37 33" src="https://user-images.githubusercontent.com/505570/80413632-a701bd80-88c7-11ea-82dc-26c917d0fae9.png">
|
1.0
|
Clicking log out nukes table data but does not log out - - Log in
- Click 'Settings > Log out"
- The table data disappears but the user still appears logged in
<img width="1694" alt="Screenshot 2020-04-27 at 20 37 33" src="https://user-images.githubusercontent.com/505570/80413632-a701bd80-88c7-11ea-82dc-26c917d0fae9.png">
|
priority
|
clicking log out nukes table data but does not log out log in click settings log out the table data disappears but the user still appears logged in img width alt screenshot at src
| 1
|
705,902
| 24,253,788,878
|
IssuesEvent
|
2022-09-27 16:01:48
|
status-im/status-desktop
|
https://api.github.com/repos/status-im/status-desktop
|
closed
|
Contact status is not accurate across UI
|
bug Chat priority 1: high
|
The contact information ("Not a contact" / "Trusted contact") is not reflected accurately across the app. In some places like the header it will never change, while in other places it shows the changes on mobile but not on the device it was supposed to.

|
1.0
|
Contact status is not accurate across UI - The contact information ("Not a contact" / "Trusted contact") is not reflected accurately across the app. In some places like the header it will never change, while in other places it shows the changes on mobile but not on the device it was supposed to.

|
priority
|
contact status is not accurate across ui the contact information not a contact trusted contact is not reflected accurately across the app in some places like the header it will never change while in other places it shows the changes on mobile but not on the device it was supposed to
| 1
|
638,720
| 20,735,463,626
|
IssuesEvent
|
2022-03-14 13:21:48
|
bluecadet/longwood-d8
|
https://api.github.com/repos/bluecadet/longwood-d8
|
reopened
|
Logic for Top Content Section
|
high priority
|
@morganfoust What paras can exist next to the navigation?
<hr>
What should be included in "Top Content" Currently it is just set to the first two paragraphs. We should at the very least, filter certain paragraph bundles.
Found in longwood.theme around line 183, `// TODO: Need to define these rules here.`
|
1.0
|
Logic for Top Content Section - @morganfoust What paras can exist next to the navigation?
<hr>
What should be included in "Top Content" Currently it is just set to the first two paragraphs. We should at the very least, filter certain paragraph bundles.
Found in longwood.theme around line 183, `// TODO: Need to define these rules here.`
|
priority
|
logic for top content section morganfoust what paras can exist next to the navigation what should be included in top content currently it is just set to the first two paragraphs we should at the very least filter certain paragraph bundles found in longwood theme around line todo need to define these rules here
| 1
|
178,389
| 6,608,070,412
|
IssuesEvent
|
2017-09-19 09:33:59
|
canonical-websites/tutorials.ubuntu.com
|
https://api.github.com/repos/canonical-websites/tutorials.ubuntu.com
|
closed
|
[Cards] Tags & Description should follow the card guidelines
|
Priority: High Type: Bug
|
- Tags: maximum of 4 tags per card
- Description: Maximum of 5 lines

|
1.0
|
[Cards] Tags & Description should follow the card guidelines - - Tags: maximum of 4 tags per card
- Description: Maximum of 5 lines

|
priority
|
tags description should follow the card guidelines tags maximum of tags per card description maximum of lines
| 1
|
24,631
| 2,671,224,171
|
IssuesEvent
|
2015-03-24 03:33:56
|
paceuniversity/cs3892015team1
|
https://api.github.com/repos/paceuniversity/cs3892015team1
|
opened
|
User story 14 (from amalgamated User Story 4)
|
Difficulty 8 Functional High Priority
|
As a parent I want to add flashcards, in order to add new flashcards to the existing set
|
1.0
|
User story 14 (from amalgamated User Story 4) - As a parent I want to add flashcards, in order to add new flashcards to the existing set
|
priority
|
user story from amalgamated user story as a parent i want to add flashcards in order to add new flashcards to the existing set
| 1
|
391,232
| 11,570,909,348
|
IssuesEvent
|
2020-02-20 20:26:11
|
woocommerce/storefront
|
https://api.github.com/repos/woocommerce/storefront
|
closed
|
2.5.4 shows footer link colour as color: #2c2d33 irregardless of value chosen in Customizer
|
Type: Bug priority: high
|
18826995-hc
## Describe the bug
Upgrading Storefront to `2.5.4` makes any footer link color #2c2d33 instead of the color chosen in the **Customizer > Footer** setting
Isolating the problem (mark completed items with an [x]):
- [x] I have deactivated other plugins and themes and confirmed this bug occurs when only WooCommerce + Storefront theme are active.
- [x] I can reproduce this bug consistently using the steps below.
## To Reproduce
Steps to reproduce the behavior:
1. Go to **Customizer > Footer**
2. Set Link color as something
3. Upgrade Storefront to 2.5.4
4. See color is now set to #2c2d33
## Screenshots
Screencast: https://d.pr/i/bp4HSc
## Expected behavior
Changing any Customizer settings has a direct effect on the site.
### Browser Environment
Please provide as much detail as possible about your testing environment.
- Platform: e.g. macOS
- Browser(s): latest Firefox
### WordPress Environment
Please provide relevant details of your WordPress setup and server environment.
<details>
```
`
### WordPress Environment ###
WordPress address (URL): https://core.doug.press
Site address (URL): https://core.doug.press
WC Version: 3.9.2
REST API Version: ✔ 1.0.7
Log Directory Writable: ✔
WP Version: 5.3.2
WP Multisite: –
WP Memory Limit: 256 MB
WP Debug Mode: –
WP Cron: ✔
Language: en_US
External object cache: ✔
### Server Environment ###
Server Info: nginx
PHP Version: 7.2.27
PHP Post Max Size: 2 GB
PHP Time Limit: 1200
PHP Max Input Vars: 6144
cURL Version: 7.68.0
OpenSSL/1.1.0l
SUHOSIN Installed: –
MySQL Version: 5.5.5-10.3.21-MariaDB-log
Max Upload Size: 2 GB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 3.9.2
WC Database Prefix: wp_
Total Database Size: 2.82MB
Database Data Size: 1.66MB
Database Index Size: 1.16MB
wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_advanced_notifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_advanced_notification_triggers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_options: Data: 0.31MB + Index: 0.06MB + Engine InnoDB
wp_postmeta: Data: 0.28MB + Index: 0.16MB + Engine InnoDB
wp_posts: Data: 0.34MB + Index: 0.06MB + Engine InnoDB
wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_deposits_payment_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_deposits_payment_plans_schedule: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wpml_mails: Data: 0.11MB + Index: 0.00MB + Engine InnoDB
### Post Type Counts ###
attachment: 49
custom_css: 1
customize_changeset: 12
global_product_addon: 1
jetpack_migration: 2
jp_img_sitemap: 1
jp_sitemap: 1
jp_sitemap_master: 1
log_emails_log: 15
nav_menu_item: 8
page: 12
post: 3
product: 29
product_variation: 12
revision: 35
scheduled-action: 5
shop_coupon: 2
shop_order: 12
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ✔
### Active Plugins (3) ###
Akismet Anti-Spam: by Automattic – 4.1.3
Log Emails: by WebAware – 1.3.1
WooCommerce: by Automattic – 3.9.2
### Inactive Plugins (11) ###
Classic Editor: by WordPress Contributors – 1.5
Gutenberg: by Gutenberg Team – 7.3.0
Homepage Control: by WooThemes – 2.0.3
Jetpack by WordPress.com: by Automattic – 8.2.1
Storefront Parallax Hero: by WooCommerce – 1.5.7
WC Minimum Order Amount: by Hannah Swain – 1.0 – Not tested with the active version of WooCommerce
WooCommerce Blocks: by Automattic – 2.5.13
WooCommerce One Page Checkout: by Automattic – 1.7.3
WooCommerce Slack: by WooCommerce – 1.2.0
WooCommerce Stripe Gateway: by WooCommerce – 4.3.2
WP Mail Logging: by MailPoet – 1.9.5
### Dropin Plugins (2) ###
advanced-cache.php: advanced-cache.php
object-cache.php: Memcached
### Settings ###
API Enabled: –
Force SSL: –
Currency: GBP (£)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 2
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)
Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)
Connected to WooCommerce.com: ✔
### WC Pages ###
Shop base: #5 - /shop/
Cart: #6 - /cart/
Checkout: #7 - /checkout/
My account: #8 - /my-account/
Terms and conditions: ❌ Page not set
### Theme ###
Name: Storefront
Version: 2.5.4
Author URL: https://woocommerce.com/
Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
WooCommerce Support: ✔
### Templates ###
Overrides: –
### Action Scheduler ###
Complete: 5
Oldest: 2020-01-22 10:56:56 +0000
Newest: 2020-02-13 14:23:43 +0000
Pending: 0
Oldest: –
Newest: –
Canceled: 0
Oldest: –
Newest: –
In-progress: 0
Oldest: –
Newest: –
Failed: 0
Oldest: –
Newest: –
`
```
</details>
|
1.0
|
2.5.4 shows footer link colour as color: #2c2d33 irregardless of value chosen in Customizer - 18826995-hc
## Describe the bug
Upgrading Storefront to `2.5.4` makes any footer link color #2c2d33 instead of the color chosen in the **Customizer > Footer** setting
Isolating the problem (mark completed items with an [x]):
- [x] I have deactivated other plugins and themes and confirmed this bug occurs when only WooCommerce + Storefront theme are active.
- [x] I can reproduce this bug consistently using the steps below.
## To Reproduce
Steps to reproduce the behavior:
1. Go to **Customizer > Footer**
2. Set Link color as something
3. Upgrade Storefront to 2.5.4
4. See color is now set to #2c2d33
## Screenshots
Screencast: https://d.pr/i/bp4HSc
## Expected behavior
Changing any Customizer settings has a direct effect on the site.
### Browser Environment
Please provide as much detail as possible about your testing environment.
- Platform: e.g. macOS
- Browser(s): latest Firefox
### WordPress Environment
Please provide relevant details of your WordPress setup and server environment.
<details>
```
`
### WordPress Environment ###
WordPress address (URL): https://core.doug.press
Site address (URL): https://core.doug.press
WC Version: 3.9.2
REST API Version: ✔ 1.0.7
Log Directory Writable: ✔
WP Version: 5.3.2
WP Multisite: –
WP Memory Limit: 256 MB
WP Debug Mode: –
WP Cron: ✔
Language: en_US
External object cache: ✔
### Server Environment ###
Server Info: nginx
PHP Version: 7.2.27
PHP Post Max Size: 2 GB
PHP Time Limit: 1200
PHP Max Input Vars: 6144
cURL Version: 7.68.0
OpenSSL/1.1.0l
SUHOSIN Installed: –
MySQL Version: 5.5.5-10.3.21-MariaDB-log
Max Upload Size: 2 GB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 3.9.2
WC Database Prefix: wp_
Total Database Size: 2.82MB
Database Data Size: 1.66MB
Database Index Size: 1.16MB
wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_advanced_notifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_advanced_notification_triggers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_options: Data: 0.31MB + Index: 0.06MB + Engine InnoDB
wp_postmeta: Data: 0.28MB + Index: 0.16MB + Engine InnoDB
wp_posts: Data: 0.34MB + Index: 0.06MB + Engine InnoDB
wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_deposits_payment_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_deposits_payment_plans_schedule: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wpml_mails: Data: 0.11MB + Index: 0.00MB + Engine InnoDB
### Post Type Counts ###
attachment: 49
custom_css: 1
customize_changeset: 12
global_product_addon: 1
jetpack_migration: 2
jp_img_sitemap: 1
jp_sitemap: 1
jp_sitemap_master: 1
log_emails_log: 15
nav_menu_item: 8
page: 12
post: 3
product: 29
product_variation: 12
revision: 35
scheduled-action: 5
shop_coupon: 2
shop_order: 12
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ✔
### Active Plugins (3) ###
Akismet Anti-Spam: by Automattic – 4.1.3
Log Emails: by WebAware – 1.3.1
WooCommerce: by Automattic – 3.9.2
### Inactive Plugins (11) ###
Classic Editor: by WordPress Contributors – 1.5
Gutenberg: by Gutenberg Team – 7.3.0
Homepage Control: by WooThemes – 2.0.3
Jetpack by WordPress.com: by Automattic – 8.2.1
Storefront Parallax Hero: by WooCommerce – 1.5.7
WC Minimum Order Amount: by Hannah Swain – 1.0 – Not tested with the active version of WooCommerce
WooCommerce Blocks: by Automattic – 2.5.13
WooCommerce One Page Checkout: by Automattic – 1.7.3
WooCommerce Slack: by WooCommerce – 1.2.0
WooCommerce Stripe Gateway: by WooCommerce – 4.3.2
WP Mail Logging: by MailPoet – 1.9.5
### Dropin Plugins (2) ###
advanced-cache.php: advanced-cache.php
object-cache.php: Memcached
### Settings ###
API Enabled: –
Force SSL: –
Currency: GBP (£)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 2
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)
Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)
Connected to WooCommerce.com: ✔
### WC Pages ###
Shop base: #5 - /shop/
Cart: #6 - /cart/
Checkout: #7 - /checkout/
My account: #8 - /my-account/
Terms and conditions: ❌ Page not set
### Theme ###
Name: Storefront
Version: 2.5.4
Author URL: https://woocommerce.com/
Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
WooCommerce Support: ✔
### Templates ###
Overrides: –
### Action Scheduler ###
Complete: 5
Oldest: 2020-01-22 10:56:56 +0000
Newest: 2020-02-13 14:23:43 +0000
Pending: 0
Oldest: –
Newest: –
Canceled: 0
Oldest: –
Newest: –
In-progress: 0
Oldest: –
Newest: –
Failed: 0
Oldest: –
Newest: –
`
```
</details>
|
priority
|
shows footer link colour as color irregardless of value chosen in customizer hc describe the bug upgrading storefront to makes any footer link color instead of the color chosen in the customizer footer setting isolating the problem mark completed items with an i have deactivated other plugins and themes and confirmed this bug occurs when only woocommerce storefront theme are active i can reproduce this bug consistently using the steps below to reproduce steps to reproduce the behavior go to customizer footer set link color as something upgrade storefront to see color is now set to screenshots screencast expected behavior changing any customizer settings has a direct effect on the site browser environment please provide as much detail as possible about your testing environment platform e g macos browser s latest firefox wordpress environment please provide relevant details of your wordpress setup and server environment wordpress environment wordpress address url site address url wc version rest api version ✔ log directory writable ✔ wp version wp multisite – wp memory limit mb wp debug mode – wp cron ✔ language en us external object cache ✔ server environment server info nginx php version php post max size gb php time limit php max input vars curl version openssl suhosin installed – mysql version mariadb log max upload size gb default timezone is utc ✔ fsockopen curl ✔ soapclient ✔ domdocument ✔ gzip ✔ multibyte string ✔ remote post ✔ remote get ✔ database wc database version wc database prefix wp total database size database data size database index size wp woocommerce sessions data index engine innodb wp woocommerce api keys data index engine innodb wp woocommerce attribute taxonomies data index engine innodb wp woocommerce downloadable product permissions data index engine innodb wp woocommerce order items data index engine innodb wp woocommerce order itemmeta data index engine innodb wp woocommerce tax rates data index engine innodb wp woocommerce tax rate locations data index engine innodb wp woocommerce shipping zones data index engine innodb wp woocommerce shipping zone locations data index engine innodb wp woocommerce shipping zone methods data index engine innodb wp woocommerce payment tokens data index engine innodb wp woocommerce payment tokenmeta data index engine innodb wp woocommerce log data index engine innodb wp advanced notifications data index engine innodb wp advanced notification triggers data index engine innodb wp commentmeta data index engine innodb wp comments data index engine innodb wp links data index engine innodb wp options data index engine innodb wp postmeta data index engine innodb wp posts data index engine innodb wp termmeta data index engine innodb wp terms data index engine innodb wp term relationships data index engine innodb wp term taxonomy data index engine innodb wp usermeta data index engine innodb wp users data index engine innodb wp wc deposits payment plans data index engine innodb wp wc deposits payment plans schedule data index engine innodb wp wc download log data index engine innodb wp wc product meta lookup data index engine innodb wp wc tax rate classes data index engine innodb wp wc webhooks data index engine innodb wp wpml mails data index engine innodb post type counts attachment custom css customize changeset global product addon jetpack migration jp img sitemap jp sitemap jp sitemap master log emails log nav menu item page post product product variation revision scheduled action shop coupon shop order security secure connection https ✔ hide errors from visitors ✔ active plugins akismet anti spam by automattic – log emails by webaware – woocommerce by automattic – inactive plugins classic editor by wordpress contributors – gutenberg by gutenberg team – homepage control by woothemes – jetpack by wordpress com by automattic – storefront parallax hero by woocommerce – wc minimum order amount by hannah swain – – not tested with the active version of woocommerce woocommerce blocks by automattic – woocommerce one page checkout by automattic – woocommerce slack by woocommerce – woocommerce stripe gateway by woocommerce – wp mail logging by mailpoet – dropin plugins advanced cache php advanced cache php object cache php memcached settings api enabled – force ssl – currency gbp £ currency position left thousand separator decimal separator number of decimals taxonomies product types external external grouped grouped simple simple variable variable taxonomies product visibility exclude from catalog exclude from catalog exclude from search exclude from search featured featured outofstock outofstock rated rated rated rated rated rated rated rated rated rated connected to woocommerce com ✔ wc pages shop base shop cart cart checkout checkout my account my account terms and conditions ❌ page not set theme name storefront version author url child theme ❌ – if you are modifying woocommerce on a parent theme that you did not build personally we recommend using a child theme see how to create a child theme woocommerce support ✔ templates overrides – action scheduler complete oldest newest pending oldest – newest – canceled oldest – newest – in progress oldest – newest – failed oldest – newest –
| 1
|
119,527
| 4,771,524,482
|
IssuesEvent
|
2016-10-26 18:14:54
|
hawtio/hawtio-ipaas
|
https://api.github.com/repos/hawtio/hawtio-ipaas
|
reopened
|
Layout Adjustments
|
high priority
|
## Overview
Create the base layout for the application (navigation, footer, sidebar, etc. if applicable). This is subject to continuous change.
## Reference
- [PatternFly Vertical Navigation](http://www.patternfly.org/pattern-library/navigation/vertical-navigation/vertical-navigation.html#_)
- [Prototypes](https://projects.invisionapp.com/share/4P84NS9K6#/screens)
- [Prototypes](https://redhat.invisionapp.com/share/TJ8KKMWGX#/screens)
|
1.0
|
Layout Adjustments - ## Overview
Create the base layout for the application (navigation, footer, sidebar, etc. if applicable). This is subject to continuous change.
## Reference
- [PatternFly Vertical Navigation](http://www.patternfly.org/pattern-library/navigation/vertical-navigation/vertical-navigation.html#_)
- [Prototypes](https://projects.invisionapp.com/share/4P84NS9K6#/screens)
- [Prototypes](https://redhat.invisionapp.com/share/TJ8KKMWGX#/screens)
|
priority
|
layout adjustments overview create the base layout for the application navigation footer sidebar etc if applicable this is subject to continuous change reference
| 1
|
248,810
| 7,936,387,591
|
IssuesEvent
|
2018-07-09 09:16:16
|
geosolutions-it/MapStore2-C040
|
https://api.github.com/repos/geosolutions-it/MapStore2-C040
|
closed
|
Statistical Query Engine: WPS
|
Priority: High Project: C040 Statistical QE in progress project task
|
**Rendering Transformation Aggregate WPS**: The aggregate WPS process should be extended (or another one created for the purpose) to aggregate on spatial entities; these will be used for thematic maps. The idea is to create a WPS to use as Rendering Transformation or By Itself, that aggregates geometries, adding an attribute with aggregation result. This can be used for styling and to create tables/charts with data.
|
1.0
|
Statistical Query Engine: WPS - **Rendering Transformation Aggregate WPS**: The aggregate WPS process should be extended (or another one created for the purpose) to aggregate on spatial entities; these will be used for thematic maps. The idea is to create a WPS to use as Rendering Transformation or By Itself, that aggregates geometries, adding an attribute with aggregation result. This can be used for styling and to create tables/charts with data.
|
priority
|
statistical query engine wps rendering transformation aggregate wps the aggregate wps process should be extended or another one created for the purpose to aggregate on spatial entities these will be used for thematic maps the idea is to create a wps to use as rendering transformation or by itself that aggregates geometries adding an attribute with aggregation result this can be used for styling and to create tables charts with data
| 1
|
239,951
| 7,800,190,018
|
IssuesEvent
|
2018-06-09 06:09:46
|
tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
closed
|
0007890:
can not add contact of type user
|
Addressbook Bug Mantis high priority
|
**Reported by pschuele on 22 Feb 2013 10:16**
**Version:** Kristina (2013.03.1~rc1)
can not add contact of type user when saving contact in addressbook
- somehow the id of an existing contact is lost
**Steps to reproduce:** 1. open contact linked to an user account
2. switch to token mode
3. leave token mode
4. save contact
-> baM!
**Additional information:** [request] =>
{
"jsonrpc": "2.0",
"method": "Addressbook.saveContact",
"params": {
"recordData": {
"creation_time": "",
"created_by": null,
"last_modified_time": "2013-02-21 17:47:18",
"last_modified_by": {
"accountId": "606afc902e1d52a074775137f021287f536a79cf",
"contact_id": "a8be09a35c006c3b4d93a24af5b915f1b72ed6a4"
},
"is_deleted": "0",
"deleted_time": "",
"deleted_by": null,
"container_id": "10",
"id": null,
"tid": "",
"private": "",
"cat_id": "",
"n_family": "xxx",
"n_given": "yyy",
"n_middle": "",
"n_prefix": "",
"n_suffix": null,
"n_fn": "",
"n_fileas": "",
"bday": "",
"org_name": "",
"org_unit": "",
"salutation": null,
"title": "",
"role": null,
"assistent": null,
"room": null,
"adr_one_street": "xxx",
"adr_one_street2": "",
"adr_one_locality": "xx",
"adr_one_region": "",
"adr_one_postalcode": "111",
"adr_one_countryname": "DE",
"adr_one_lon": null,
"adr_one_lat": null,
"label": "",
"adr_two_street": "xx",
"adr_two_street2": "",
"adr_two_locality": "xx",
"adr_two_region": "",
"adr_two_postalcode": "11",
"adr_two_countryname": "DE",
"adr_two_lon": null,
"adr_two_lat": null,
"tel_work": "",
"tel_cell": "",
"tel_fax": "",
"tel_assistent": null,
"tel_car": null,
"tel_pager": null,
"tel_home": "123",
"tel_fax_home": "",
"tel_cell_private": "232132",
"tel_other": null,
"tel_prefer": null,
"email": "",
"email_home": "",
"url": "",
"url_home": "",
"freebusy_uri": null,
"calendar_uri": null,
"note": " ",
"tz": null,
"pubkey": null,
"jpegphoto": "",
"account_id": "606afc902e1d52a074775137f021287f536a79cf",
"tags": [],
"notes": [],
"customfields": {},
"type": "user",
"relations": []
},
"duplicateCheck": true
},
"id": 7
}
[response] => {"code":-32000,"message":"can not add contact of type user","data":{"message":"can not add contact of type user","code":0,"trace":[{"file":".../Tinebase/Controller/Record/Abstract.php","line":457,"function":"_inspectBeforeCreate","class":"Addressbook_Controller_Contact","type":"->"},{"function":"create","class":"Tinebase_Controller_Record_Abstract","type":"->"},{"file":".../Tinebase/Frontend/Json/Abstract.php","line":277,"function":"call_user_func_array"},{"file":".../Addressbook/Frontend/Json.php","line":136,"function":"_save","class":"Tinebase_Frontend_Json_Abstract","type":"->"},{"function":"saveContact","class":"Addressbook_Frontend_Json","type":"->"},{"file":".../library/Zend/Server/Abstract.php","line":232,"function":"call_user_func_array"},{"file":".../Zend/Json/Server.php","line":558,"function":"_dispatch","class":"Zend_Server_Abstract","type":"->"},{"file":".../Zend/Json/Server.php","line":197,"function":"_handle","class":"Zend_Json_Server","type":"->"},{"file":".../Tinebase/Server/Json.php","line":208,"function":"handle","class":"Zend_Json_Server","type":"->"},{"file":".../Tinebase/Server/Json.php","line":78,"function":"_handle","class":"Tinebase_Server_Json","type":"->"},{"file":".../Tinebase/Core.php","line":229,"function":"handle","class":"Tinebase_Server_Json","type":"->"},{"file":".../index.php","line":17,"function":"dispatchRequest","class":"Tinebase_Core","type":"::"}]}}
[traceHTML] => .../Tinebase/Controller/Record/Abstract.php(457): Addressbook_Controller_Contact->_inspectBeforeCreate()
[internal function]: Tinebase_Controller_Record_Abstract->create()
.../Tinebase/Frontend/Json/Abstract.php(277): call_user_func_array()
.../Addressbook/Frontend/Json.php(136): Tinebase_Frontend_Json_Abstract->_save()
[internal function]: Addressbook_Frontend_Json->saveContact()
.../library/Zend/Server/Abstract.php(232): call_user_func_array()
.../Zend/Json/Server.php(558): Zend_Server_Abstract->_dispatch()
.../Zend/Json/Server.php(197): Zend_Json_Server->_handle()
.../Tinebase/Server/Json.php(208): Zend_Json_Server->handle()
.../Tinebase/Server/Json.php(78): Tinebase_Server_Json->_handle()
.../Tinebase/Core.php(229): Tinebase_Server_Json->handle()
.../index.php(17): Tinebase_Core::dispatchRequest()
|
1.0
|
0007890:
can not add contact of type user - **Reported by pschuele on 22 Feb 2013 10:16**
**Version:** Kristina (2013.03.1~rc1)
can not add contact of type user when saving contact in addressbook
- somehow the id of an existing contact is lost
**Steps to reproduce:** 1. open contact linked to an user account
2. switch to token mode
3. leave token mode
4. save contact
-> baM!
**Additional information:** [request] =>
{
"jsonrpc": "2.0",
"method": "Addressbook.saveContact",
"params": {
"recordData": {
"creation_time": "",
"created_by": null,
"last_modified_time": "2013-02-21 17:47:18",
"last_modified_by": {
"accountId": "606afc902e1d52a074775137f021287f536a79cf",
"contact_id": "a8be09a35c006c3b4d93a24af5b915f1b72ed6a4"
},
"is_deleted": "0",
"deleted_time": "",
"deleted_by": null,
"container_id": "10",
"id": null,
"tid": "",
"private": "",
"cat_id": "",
"n_family": "xxx",
"n_given": "yyy",
"n_middle": "",
"n_prefix": "",
"n_suffix": null,
"n_fn": "",
"n_fileas": "",
"bday": "",
"org_name": "",
"org_unit": "",
"salutation": null,
"title": "",
"role": null,
"assistent": null,
"room": null,
"adr_one_street": "xxx",
"adr_one_street2": "",
"adr_one_locality": "xx",
"adr_one_region": "",
"adr_one_postalcode": "111",
"adr_one_countryname": "DE",
"adr_one_lon": null,
"adr_one_lat": null,
"label": "",
"adr_two_street": "xx",
"adr_two_street2": "",
"adr_two_locality": "xx",
"adr_two_region": "",
"adr_two_postalcode": "11",
"adr_two_countryname": "DE",
"adr_two_lon": null,
"adr_two_lat": null,
"tel_work": "",
"tel_cell": "",
"tel_fax": "",
"tel_assistent": null,
"tel_car": null,
"tel_pager": null,
"tel_home": "123",
"tel_fax_home": "",
"tel_cell_private": "232132",
"tel_other": null,
"tel_prefer": null,
"email": "",
"email_home": "",
"url": "",
"url_home": "",
"freebusy_uri": null,
"calendar_uri": null,
"note": " ",
"tz": null,
"pubkey": null,
"jpegphoto": "",
"account_id": "606afc902e1d52a074775137f021287f536a79cf",
"tags": [],
"notes": [],
"customfields": {},
"type": "user",
"relations": []
},
"duplicateCheck": true
},
"id": 7
}
[response] => {"code":-32000,"message":"can not add contact of type user","data":{"message":"can not add contact of type user","code":0,"trace":[{"file":".../Tinebase/Controller/Record/Abstract.php","line":457,"function":"_inspectBeforeCreate","class":"Addressbook_Controller_Contact","type":"->"},{"function":"create","class":"Tinebase_Controller_Record_Abstract","type":"->"},{"file":".../Tinebase/Frontend/Json/Abstract.php","line":277,"function":"call_user_func_array"},{"file":".../Addressbook/Frontend/Json.php","line":136,"function":"_save","class":"Tinebase_Frontend_Json_Abstract","type":"->"},{"function":"saveContact","class":"Addressbook_Frontend_Json","type":"->"},{"file":".../library/Zend/Server/Abstract.php","line":232,"function":"call_user_func_array"},{"file":".../Zend/Json/Server.php","line":558,"function":"_dispatch","class":"Zend_Server_Abstract","type":"->"},{"file":".../Zend/Json/Server.php","line":197,"function":"_handle","class":"Zend_Json_Server","type":"->"},{"file":".../Tinebase/Server/Json.php","line":208,"function":"handle","class":"Zend_Json_Server","type":"->"},{"file":".../Tinebase/Server/Json.php","line":78,"function":"_handle","class":"Tinebase_Server_Json","type":"->"},{"file":".../Tinebase/Core.php","line":229,"function":"handle","class":"Tinebase_Server_Json","type":"->"},{"file":".../index.php","line":17,"function":"dispatchRequest","class":"Tinebase_Core","type":"::"}]}}
[traceHTML] => .../Tinebase/Controller/Record/Abstract.php(457): Addressbook_Controller_Contact->_inspectBeforeCreate()
[internal function]: Tinebase_Controller_Record_Abstract->create()
.../Tinebase/Frontend/Json/Abstract.php(277): call_user_func_array()
.../Addressbook/Frontend/Json.php(136): Tinebase_Frontend_Json_Abstract->_save()
[internal function]: Addressbook_Frontend_Json->saveContact()
.../library/Zend/Server/Abstract.php(232): call_user_func_array()
.../Zend/Json/Server.php(558): Zend_Server_Abstract->_dispatch()
.../Zend/Json/Server.php(197): Zend_Json_Server->_handle()
.../Tinebase/Server/Json.php(208): Zend_Json_Server->handle()
.../Tinebase/Server/Json.php(78): Tinebase_Server_Json->_handle()
.../Tinebase/Core.php(229): Tinebase_Server_Json->handle()
.../index.php(17): Tinebase_Core::dispatchRequest()
|
priority
|
can not add contact of type user reported by pschuele on feb version kristina can not add contact of type user when saving contact in addressbook somehow the id of an existing contact is lost steps to reproduce open contact linked to an user account switch to token mode leave token mode save contact gt bam additional information gt quot jsonrpc quot quot quot quot method quot quot addressbook savecontact quot quot params quot quot recorddata quot quot creation time quot quot quot quot created by quot null quot last modified time quot quot quot quot last modified by quot quot accountid quot quot quot quot contact id quot quot quot quot is deleted quot quot quot quot deleted time quot quot quot quot deleted by quot null quot container id quot quot quot quot id quot null quot tid quot quot quot quot private quot quot quot quot cat id quot quot quot quot n family quot quot xxx quot quot n given quot quot yyy quot quot n middle quot quot quot quot n prefix quot quot quot quot n suffix quot null quot n fn quot quot quot quot n fileas quot quot quot quot bday quot quot quot quot org name quot quot quot quot org unit quot quot quot quot salutation quot null quot title quot quot quot quot role quot null quot assistent quot null quot room quot null quot adr one street quot quot xxx quot quot adr one quot quot quot quot adr one locality quot quot xx quot quot adr one region quot quot quot quot adr one postalcode quot quot quot quot adr one countryname quot quot de quot quot adr one lon quot null quot adr one lat quot null quot label quot quot quot quot adr two street quot quot xx quot quot adr two quot quot quot quot adr two locality quot quot xx quot quot adr two region quot quot quot quot adr two postalcode quot quot quot quot adr two countryname quot quot de quot quot adr two lon quot null quot adr two lat quot null quot tel work quot quot quot quot tel cell quot quot quot quot tel fax quot quot quot quot tel assistent quot null quot tel car quot null quot tel pager quot null quot tel home quot quot quot quot tel fax home quot quot quot quot tel cell private quot quot quot quot tel other quot null quot tel prefer quot null quot email quot quot quot quot email home quot quot quot quot url quot quot quot quot url home quot quot quot quot freebusy uri quot null quot calendar uri quot null quot note quot quot quot quot tz quot null quot pubkey quot null quot jpegphoto quot quot quot quot account id quot quot quot quot tags quot quot notes quot quot customfields quot quot type quot quot user quot quot relations quot quot duplicatecheck quot true quot id quot gt quot code quot quot message quot quot can not add contact of type user quot quot data quot quot message quot quot can not add contact of type user quot quot code quot quot trace quot gt tinebase controller record abstract php addressbook controller contact gt inspectbeforecreate tinebase controller record abstract gt create tinebase frontend json abstract php call user func array addressbook frontend json php tinebase frontend json abstract gt save addressbook frontend json gt savecontact library zend server abstract php call user func array zend json server php zend server abstract gt dispatch zend json server php zend json server gt handle tinebase server json php zend json server gt handle tinebase server json php tinebase server json gt handle tinebase core php tinebase server json gt handle index php tinebase core dispatchrequest
| 1
|
649,226
| 21,259,970,545
|
IssuesEvent
|
2022-04-13 02:21:02
|
WordPress/gutenberg
|
https://api.github.com/repos/WordPress/gutenberg
|
opened
|
Webfonts API: registration and enqueueing ambiguity
|
[Priority] High [Feature] Webfonts
|
## What problem does this address?
It's not clear to the end-user how the Webfonts API will behave regarding the registration and enqueueing of duplicated font faces.
### API scenarios
#### Trying to register a font face that is already registered
Which one should take precedence? The one that already exists, or the one that they're trying to re-register?
#### Trying to register a font face that was already enqueued
What should happen? Should we dequeue the enqueued font and move it to the registered fonts list? Should we just ignore the re-registration attempt? Should we have the same font face in both registered and enqueued lists?
---
### `theme.json` scenarios
After https://github.com/WordPress/gutenberg/pull/39988 gets merged, new scenarios will come up now that we're considering `theme.json` as the source of truth for themes that are using this file.
#### Trying to register, in `theme.json`, a font face that was registered programmatically
Should we de-register/override the programmatically registered font face? Remember that we're trying to make `theme.json` the source of truth.
#### Trying to register, in `theme.json`, a font face that was enqueued programmatically
Should we dequeue the programmatically enqueued and instead register+enqueue the `theme.json` face?
|
1.0
|
Webfonts API: registration and enqueueing ambiguity - ## What problem does this address?
It's not clear to the end-user how the Webfonts API will behave regarding the registration and enqueueing of duplicated font faces.
### API scenarios
#### Trying to register a font face that is already registered
Which one should take precedence? The one that already exists, or the one that they're trying to re-register?
#### Trying to register a font face that was already enqueued
What should happen? Should we dequeue the enqueued font and move it to the registered fonts list? Should we just ignore the re-registration attempt? Should we have the same font face in both registered and enqueued lists?
---
### `theme.json` scenarios
After https://github.com/WordPress/gutenberg/pull/39988 gets merged, new scenarios will come up now that we're considering `theme.json` as the source of truth for themes that are using this file.
#### Trying to register, in `theme.json`, a font face that was registered programmatically
Should we de-register/override the programmatically registered font face? Remember that we're trying to make `theme.json` the source of truth.
#### Trying to register, in `theme.json`, a font face that was enqueued programmatically
Should we dequeue the programmatically enqueued and instead register+enqueue the `theme.json` face?
|
priority
|
webfonts api registration and enqueueing ambiguity what problem does this address it s not clear to the end user how the webfonts api will behave regarding the registration and enqueueing of duplicated font faces api scenarios trying to register a font face that is already registered which one should take precedence the one that already exists or the one that they re trying to re register trying to register a font face that was already enqueued what should happen should we dequeue the enqueued font and move it to the registered fonts list should we just ignore the re registration attempt should we have the same font face in both registered and enqueued lists theme json scenarios after gets merged new scenarios will come up now that we re considering theme json as the source of truth for themes that are using this file trying to register in theme json a font face that was registered programmatically should we de register override the programmatically registered font face remember that we re trying to make theme json the source of truth trying to register in theme json a font face that was enqueued programmatically should we dequeue the programmatically enqueued and instead register enqueue the theme json face
| 1
|
21,443
| 2,640,638,309
|
IssuesEvent
|
2015-03-11 13:37:43
|
BirminghamConservatoire/IntegraLive
|
https://api.github.com/repos/BirminghamConservatoire/IntegraLive
|
closed
|
User issue saving project
|
bug priority high
|
A user has reported via email an intermittent problem saving files. Sometimes Integra Live displays: 'cannot save project: function failure'
The problem has so far been non-reproducible on either a different Mac with the same files or on the user's own computer. However the user has reported the problem going away and then coming back.
We have established that when the problem occurs error messages *are* traced to the log files. These can be found here: http://d.pr/f/vlYS
I have tested this personally on the user's computer and whilst I was unable to reproduce the problem, Integra Live did seem to be behaving rather strangely in general. Even though it is a fairly high spec machine IL was taking a long time to save and on one occasion didn't successfully shut down the backend on exit. It is possible there is an issue with the user's computer such as a disk failure however the user reports that other software runs OK.
|
1.0
|
User issue saving project - A user has reported via email an intermittent problem saving files. Sometimes Integra Live displays: 'cannot save project: function failure'
The problem has so far been non-reproducible on either a different Mac with the same files or on the user's own computer. However the user has reported the problem going away and then coming back.
We have established that when the problem occurs error messages *are* traced to the log files. These can be found here: http://d.pr/f/vlYS
I have tested this personally on the user's computer and whilst I was unable to reproduce the problem, Integra Live did seem to be behaving rather strangely in general. Even though it is a fairly high spec machine IL was taking a long time to save and on one occasion didn't successfully shut down the backend on exit. It is possible there is an issue with the user's computer such as a disk failure however the user reports that other software runs OK.
|
priority
|
user issue saving project a user has reported via email an intermittent problem saving files sometimes integra live displays cannot save project function failure the problem has so far been non reproducible on either a different mac with the same files or on the user s own computer however the user has reported the problem going away and then coming back we have established that when the problem occurs error messages are traced to the log files these can be found here i have tested this personally on the user s computer and whilst i was unable to reproduce the problem integra live did seem to be behaving rather strangely in general even though it is a fairly high spec machine il was taking a long time to save and on one occasion didn t successfully shut down the backend on exit it is possible there is an issue with the user s computer such as a disk failure however the user reports that other software runs ok
| 1
|
467,784
| 13,455,093,305
|
IssuesEvent
|
2020-09-09 05:25:53
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.youtube.com - video or audio doesn't play
|
browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical
|
<!-- @browser: Firefox 81.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:81.0) Gecko/20100101 Firefox/81.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/57929 -->
**URL**: https://www.youtube.com/watch?v=ZvQQP4SCZms
**Browser / Version**: Firefox 81.0
**Operating System**: Windows 7
**Tested Another Browser**: Yes Chrome
**Problem type**: Video or audio doesn't play
**Description**: There is no audio
**Steps to Reproduce**:
could not hear any video
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200906164749</li><li>channel: beta</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/9/d7b2494e-32dd-434b-a7ef-8288f06d5ff6)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.youtube.com - video or audio doesn't play - <!-- @browser: Firefox 81.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:81.0) Gecko/20100101 Firefox/81.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/57929 -->
**URL**: https://www.youtube.com/watch?v=ZvQQP4SCZms
**Browser / Version**: Firefox 81.0
**Operating System**: Windows 7
**Tested Another Browser**: Yes Chrome
**Problem type**: Video or audio doesn't play
**Description**: There is no audio
**Steps to Reproduce**:
could not hear any video
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200906164749</li><li>channel: beta</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/9/d7b2494e-32dd-434b-a7ef-8288f06d5ff6)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
priority
|
video or audio doesn t play url browser version firefox operating system windows tested another browser yes chrome problem type video or audio doesn t play description there is no audio steps to reproduce could not hear any video browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
| 1
|
550,546
| 16,115,466,049
|
IssuesEvent
|
2021-04-28 06:46:05
|
python-discord/site
|
https://api.github.com/repos/python-discord/site
|
closed
|
Dewikification: Migrate all existing guides on pythondiscord.com to the new guides system.
|
area: backend level: 1 - intermediate priority: 1 - high
|
**Remember to target the `dewikification` branch with this pull request**
This issue must be solved _after_ #383.
Once a new system for the guides is ready, we should migrate our existing guides into this new system.
Please make this a separate pull request, so that we can review the system and the content separately.
|
1.0
|
Dewikification: Migrate all existing guides on pythondiscord.com to the new guides system. - **Remember to target the `dewikification` branch with this pull request**
This issue must be solved _after_ #383.
Once a new system for the guides is ready, we should migrate our existing guides into this new system.
Please make this a separate pull request, so that we can review the system and the content separately.
|
priority
|
dewikification migrate all existing guides on pythondiscord com to the new guides system remember to target the dewikification branch with this pull request this issue must be solved after once a new system for the guides is ready we should migrate our existing guides into this new system please make this a separate pull request so that we can review the system and the content separately
| 1
|
85,190
| 3,687,776,183
|
IssuesEvent
|
2016-02-25 09:58:08
|
tuura/workcraft
|
https://api.github.com/repos/tuura/workcraft
|
opened
|
Improve dist.sh script
|
enhancement priority/high
|
Requirements:
* Both Windows and Linux distros should be created under dist/windows and diest/linux respectively. No PLATFORM parameter is required.
* An optional TAG parameter should be possible. If it is omitted than `git describe --tags` should be used as the TAG.
* The compressed files should be `workcraft-TAG.zip` and `workcraft-TAG.tar.gz` for Windows and Linux respectively.
* The top directory inside the `zip` and `tar.gz` should we `workcraft-TAG`.
|
1.0
|
Improve dist.sh script - Requirements:
* Both Windows and Linux distros should be created under dist/windows and diest/linux respectively. No PLATFORM parameter is required.
* An optional TAG parameter should be possible. If it is omitted than `git describe --tags` should be used as the TAG.
* The compressed files should be `workcraft-TAG.zip` and `workcraft-TAG.tar.gz` for Windows and Linux respectively.
* The top directory inside the `zip` and `tar.gz` should we `workcraft-TAG`.
|
priority
|
improve dist sh script requirements both windows and linux distros should be created under dist windows and diest linux respectively no platform parameter is required an optional tag parameter should be possible if it is omitted than git describe tags should be used as the tag the compressed files should be workcraft tag zip and workcraft tag tar gz for windows and linux respectively the top directory inside the zip and tar gz should we workcraft tag
| 1
|
792,736
| 27,973,191,047
|
IssuesEvent
|
2023-03-25 08:55:56
|
AY2223S2-CS2113T-T09-1/tp
|
https://api.github.com/repos/AY2223S2-CS2113T-T09-1/tp
|
closed
|
add command not working proeprly
|
bug priority:High severity:High
|
`add -in test $20 -c test` is invalid
`add -out toko $200 -c test -date 22/02/2023` is also invalid
|
1.0
|
add command not working proeprly - `add -in test $20 -c test` is invalid
`add -out toko $200 -c test -date 22/02/2023` is also invalid
|
priority
|
add command not working proeprly add in test c test is invalid add out toko c test date is also invalid
| 1
|
586,838
| 17,598,411,150
|
IssuesEvent
|
2021-08-17 08:45:34
|
woocommerce/google-listings-and-ads
|
https://api.github.com/repos/woocommerce/google-listings-and-ads
|
closed
|
Guzzle conflict
|
type: bug priority: high
|
Still getting a conflict with Guzzle after updating to 1.4.0. Having this plugin activated is throwing a Guzzle error with my application.
PHP Fatal error: Uncaught Error: Call to undefined function GuzzleHttp\\choose_handler() in /nas/content/live/theflagstaging/wp-content/themes/twentyfifteen-child/vendor/guzzlehttp/guzzle/src/HandlerStack.php:42
Please let me know if I can provide any more information.
|
1.0
|
Guzzle conflict - Still getting a conflict with Guzzle after updating to 1.4.0. Having this plugin activated is throwing a Guzzle error with my application.
PHP Fatal error: Uncaught Error: Call to undefined function GuzzleHttp\\choose_handler() in /nas/content/live/theflagstaging/wp-content/themes/twentyfifteen-child/vendor/guzzlehttp/guzzle/src/HandlerStack.php:42
Please let me know if I can provide any more information.
|
priority
|
guzzle conflict still getting a conflict with guzzle after updating to having this plugin activated is throwing a guzzle error with my application php fatal error uncaught error call to undefined function guzzlehttp choose handler in nas content live theflagstaging wp content themes twentyfifteen child vendor guzzlehttp guzzle src handlerstack php please let me know if i can provide any more information
| 1
|
349,612
| 10,471,179,601
|
IssuesEvent
|
2019-09-23 07:05:51
|
zcoinofficial/zcoin
|
https://api.github.com/repos/zcoinofficial/zcoin
|
closed
|
For legacy non-HD wallets, Zerocoin remint functions are disabled with Sigma
|
bug high priority
|
For those having old wallets that do not have a HD seed, Sigma functionality is disabled meaning we cannot do Zerocoin remints as well.
To enable Sigma support for non-HD wallets and Zerocoin reminting feature but recommend migration to HD wallets.
|
1.0
|
For legacy non-HD wallets, Zerocoin remint functions are disabled with Sigma - For those having old wallets that do not have a HD seed, Sigma functionality is disabled meaning we cannot do Zerocoin remints as well.
To enable Sigma support for non-HD wallets and Zerocoin reminting feature but recommend migration to HD wallets.
|
priority
|
for legacy non hd wallets zerocoin remint functions are disabled with sigma for those having old wallets that do not have a hd seed sigma functionality is disabled meaning we cannot do zerocoin remints as well to enable sigma support for non hd wallets and zerocoin reminting feature but recommend migration to hd wallets
| 1
|
575,381
| 17,029,033,834
|
IssuesEvent
|
2021-07-04 06:52:27
|
unitystation/unitystation
|
https://api.github.com/repos/unitystation/unitystation
|
closed
|
Memory leak
|
Priority: High Type: Bug
|
There's a nasty memory leak that seems to happen during round restarts
### Steps to Reproduce
Please enter the steps to reproduce the bug or behaviour:
1. Launch client and join a populated server, join as observer
2. Open process explorer and look at ram usage
3. See memory usage increasing after every round start
|
1.0
|
Memory leak - There's a nasty memory leak that seems to happen during round restarts
### Steps to Reproduce
Please enter the steps to reproduce the bug or behaviour:
1. Launch client and join a populated server, join as observer
2. Open process explorer and look at ram usage
3. See memory usage increasing after every round start
|
priority
|
memory leak there s a nasty memory leak that seems to happen during round restarts steps to reproduce please enter the steps to reproduce the bug or behaviour launch client and join a populated server join as observer open process explorer and look at ram usage see memory usage increasing after every round start
| 1
|
508,068
| 14,689,275,004
|
IssuesEvent
|
2021-01-02 08:41:25
|
pesos/grofer
|
https://api.github.com/repos/pesos/grofer
|
closed
|
[FEATURE REQ] structure of data that needs to be exported as a JSON or CSV
|
discussion priority: high
|
The format in which data needs to be exported needs to be discussed and decided upon. For instance, for overall/general information about the system being exported as a JSON, how will it be exported and to what level should the JSON be nested?
```
{
cpu: {
0 : %
1: %
...
},
mem: {...}
}
```
or
```
{
cpu: [...],
mem: [...],
}
```
^ just an example of what needs to be discussed and decided upon!
|
1.0
|
[FEATURE REQ] structure of data that needs to be exported as a JSON or CSV - The format in which data needs to be exported needs to be discussed and decided upon. For instance, for overall/general information about the system being exported as a JSON, how will it be exported and to what level should the JSON be nested?
```
{
cpu: {
0 : %
1: %
...
},
mem: {...}
}
```
or
```
{
cpu: [...],
mem: [...],
}
```
^ just an example of what needs to be discussed and decided upon!
|
priority
|
structure of data that needs to be exported as a json or csv the format in which data needs to be exported needs to be discussed and decided upon for instance for overall general information about the system being exported as a json how will it be exported and to what level should the json be nested cpu mem or cpu mem just an example of what needs to be discussed and decided upon
| 1
|
218,651
| 7,331,999,080
|
IssuesEvent
|
2018-03-05 15:09:28
|
enviroCar/enviroCar-app
|
https://api.github.com/repos/enviroCar/enviroCar-app
|
closed
|
Implement Profile Page
|
GSoC Priority - 1 - High enhancement
|
Tasks needed to be done:
- avatar image download
- an offline cache once the image was loaded (profile is available offline as well)
- see concept of `RemoteDAO` and `CacheDAO` for examples on how other resources implement these
- time series graph
- every track provides a statistics resource which contains min, max, avg for all available phenomena (e.g. https://envirocar.org/api/stable/tracks/53cc16eae4b04a9bce9c62ea/statistics)
- implement the time series retrieval via a method `RemoteTrackDAO#getStatisticsForLatestUserTracks(int trackCount)`
- focus on Consumption, CO2, Speed
- (anything else to add)
|
1.0
|
Implement Profile Page - Tasks needed to be done:
- avatar image download
- an offline cache once the image was loaded (profile is available offline as well)
- see concept of `RemoteDAO` and `CacheDAO` for examples on how other resources implement these
- time series graph
- every track provides a statistics resource which contains min, max, avg for all available phenomena (e.g. https://envirocar.org/api/stable/tracks/53cc16eae4b04a9bce9c62ea/statistics)
- implement the time series retrieval via a method `RemoteTrackDAO#getStatisticsForLatestUserTracks(int trackCount)`
- focus on Consumption, CO2, Speed
- (anything else to add)
|
priority
|
implement profile page tasks needed to be done avatar image download an offline cache once the image was loaded profile is available offline as well see concept of remotedao and cachedao for examples on how other resources implement these time series graph every track provides a statistics resource which contains min max avg for all available phenomena e g implement the time series retrieval via a method remotetrackdao getstatisticsforlatestusertracks int trackcount focus on consumption speed anything else to add
| 1
|
813,205
| 30,448,602,429
|
IssuesEvent
|
2023-07-16 01:52:45
|
bono-94/Full-Stack-Portfolio
|
https://api.github.com/repos/bono-94/Full-Stack-Portfolio
|
closed
|
USER STORY: Manage Posts
|
COMPLETION: Must Have THEME: Content & Tools EPIC: Posts PRIORITY: High
|
As a **Site Admin** I can **create, read, update, and delete posts** so that **I can manage website content where necessary**
## Acceptance Criteria:
- Criteria 1: The admin user should be able to create, view, edit and delete all posts
- Criteria 2: The user should be able to have their posts edited or deleted by the admin
- Criteria 3: The user and admin should be able to save changes and overwrite previous information
## Tasks
- [x] Update models
- [x] Update views
- [x] Update templates
- [x] Update urls
- [x] Update styling
- [x] Update javascript
- [x] Test the functionality
- [x] Update admin
- [x] Update status/completion
|
1.0
|
USER STORY: Manage Posts - As a **Site Admin** I can **create, read, update, and delete posts** so that **I can manage website content where necessary**
## Acceptance Criteria:
- Criteria 1: The admin user should be able to create, view, edit and delete all posts
- Criteria 2: The user should be able to have their posts edited or deleted by the admin
- Criteria 3: The user and admin should be able to save changes and overwrite previous information
## Tasks
- [x] Update models
- [x] Update views
- [x] Update templates
- [x] Update urls
- [x] Update styling
- [x] Update javascript
- [x] Test the functionality
- [x] Update admin
- [x] Update status/completion
|
priority
|
user story manage posts as a site admin i can create read update and delete posts so that i can manage website content where necessary acceptance criteria criteria the admin user should be able to create view edit and delete all posts criteria the user should be able to have their posts edited or deleted by the admin criteria the user and admin should be able to save changes and overwrite previous information tasks update models update views update templates update urls update styling update javascript test the functionality update admin update status completion
| 1
|
826,455
| 31,625,014,180
|
IssuesEvent
|
2023-09-06 04:15:05
|
bleachbit/bleachbit
|
https://api.github.com/repos/bleachbit/bleachbit
|
closed
|
Error cleaning Chrome for "autofill_profile_names"
|
priority:high
|
Hi everyone, since this morning I have Bleachbit (last version from the main site, no beta) raising a single red error (code at the end of the post) after the cleaning process. I'm on Windows 10 64 bit.
I uninstalled and reinstalled Bleachbit two times, I cleaned and resetted the Bleachbit settings but the error persist. The issue is still there and yesterday evening was not present (0 error last night vs 1 error this morning).
I tried opening with the notepad the file cited in the code below (Web Data), the format is messy but some writings state that it is some sort of sqlite database (I'm not in IT, I only tried to open it). If I search into this file for "autofill_profile_names", the notepad search result in nothing found. So maybe the error is because indeed that line of text/table/"whatever it is" is missing in Web Data?
This morning Chrome prompted me to personalise my settings with a giant popup after I launched the browser. I click Skip since I don't want to personalise or put personal information into Chrome.
I have now version 116, maybe they changed something and now that particular line is outdated?
As I've already said, I'm not in IT so I'm only brainstorming.
I've run Windows defender to stay safe, thinking maybe it was a malware that edited or tried to steal some Chrome configuration files or session information... If I google for "autofill_profile_names" I found something called Acridrain that in 2018 was used to steal cookie, session token, password, autofill information like credit card and address and so on.
I don't use Chrome with personal information (I disable most settings) and three differetn AV scans found nothing, so I start to think that it is related to Chrome itself.
Can someone actually confirm if this error is due to Chrome update, maybe also on their system, or is something affecting my machine only? I use this PC as a teacher so I would like some reassurance that the problem was indeed not a real problem but only Google changes...
Thanks
This is the red message:
```
Error: google_chrome.form_history: Function: Clean the file: C:\Users\username\AppData\Local\Google\Chrome\User Data\Default\Web Data
Traceback (most recent call last):
File "bleachbit\FileUtilities.pyo", line 474, in execute_sqlite3
sqlite3.OperationalError: no such table: autofill_profile_names
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "bleachbit\Command.pyo", line 160, in execute
File "bleachbit\Special.pyo", line 106, in delete_chrome_autofill
File "bleachbit\FileUtilities.pyo", line 482, in execute_sqlite3
sqlite3.OperationalError: no such table: autofill_profile_names: C:\Users\username\AppData\Local\Google\Chrome\User Data\Default\Web Data
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "bleachbit\Worker.pyo", line 87, in execute
File "bleachbit\Command.pyo", line 162, in execute
AttributeError: 'OperationalError' object has no attribute 'message'
```
|
1.0
|
Error cleaning Chrome for "autofill_profile_names" - Hi everyone, since this morning I have Bleachbit (last version from the main site, no beta) raising a single red error (code at the end of the post) after the cleaning process. I'm on Windows 10 64 bit.
I uninstalled and reinstalled Bleachbit two times, I cleaned and resetted the Bleachbit settings but the error persist. The issue is still there and yesterday evening was not present (0 error last night vs 1 error this morning).
I tried opening with the notepad the file cited in the code below (Web Data), the format is messy but some writings state that it is some sort of sqlite database (I'm not in IT, I only tried to open it). If I search into this file for "autofill_profile_names", the notepad search result in nothing found. So maybe the error is because indeed that line of text/table/"whatever it is" is missing in Web Data?
This morning Chrome prompted me to personalise my settings with a giant popup after I launched the browser. I click Skip since I don't want to personalise or put personal information into Chrome.
I have now version 116, maybe they changed something and now that particular line is outdated?
As I've already said, I'm not in IT so I'm only brainstorming.
I've run Windows defender to stay safe, thinking maybe it was a malware that edited or tried to steal some Chrome configuration files or session information... If I google for "autofill_profile_names" I found something called Acridrain that in 2018 was used to steal cookie, session token, password, autofill information like credit card and address and so on.
I don't use Chrome with personal information (I disable most settings) and three differetn AV scans found nothing, so I start to think that it is related to Chrome itself.
Can someone actually confirm if this error is due to Chrome update, maybe also on their system, or is something affecting my machine only? I use this PC as a teacher so I would like some reassurance that the problem was indeed not a real problem but only Google changes...
Thanks
This is the red message:
```
Error: google_chrome.form_history: Function: Clean the file: C:\Users\username\AppData\Local\Google\Chrome\User Data\Default\Web Data
Traceback (most recent call last):
File "bleachbit\FileUtilities.pyo", line 474, in execute_sqlite3
sqlite3.OperationalError: no such table: autofill_profile_names
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "bleachbit\Command.pyo", line 160, in execute
File "bleachbit\Special.pyo", line 106, in delete_chrome_autofill
File "bleachbit\FileUtilities.pyo", line 482, in execute_sqlite3
sqlite3.OperationalError: no such table: autofill_profile_names: C:\Users\username\AppData\Local\Google\Chrome\User Data\Default\Web Data
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "bleachbit\Worker.pyo", line 87, in execute
File "bleachbit\Command.pyo", line 162, in execute
AttributeError: 'OperationalError' object has no attribute 'message'
```
|
priority
|
error cleaning chrome for autofill profile names hi everyone since this morning i have bleachbit last version from the main site no beta raising a single red error code at the end of the post after the cleaning process i m on windows bit i uninstalled and reinstalled bleachbit two times i cleaned and resetted the bleachbit settings but the error persist the issue is still there and yesterday evening was not present error last night vs error this morning i tried opening with the notepad the file cited in the code below web data the format is messy but some writings state that it is some sort of sqlite database i m not in it i only tried to open it if i search into this file for autofill profile names the notepad search result in nothing found so maybe the error is because indeed that line of text table whatever it is is missing in web data this morning chrome prompted me to personalise my settings with a giant popup after i launched the browser i click skip since i don t want to personalise or put personal information into chrome i have now version maybe they changed something and now that particular line is outdated as i ve already said i m not in it so i m only brainstorming i ve run windows defender to stay safe thinking maybe it was a malware that edited or tried to steal some chrome configuration files or session information if i google for autofill profile names i found something called acridrain that in was used to steal cookie session token password autofill information like credit card and address and so on i don t use chrome with personal information i disable most settings and three differetn av scans found nothing so i start to think that it is related to chrome itself can someone actually confirm if this error is due to chrome update maybe also on their system or is something affecting my machine only i use this pc as a teacher so i would like some reassurance that the problem was indeed not a real problem but only google changes thanks this is the red message error google chrome form history function clean the file c users username appdata local google chrome user data default web data traceback most recent call last file bleachbit fileutilities pyo line in execute operationalerror no such table autofill profile names during handling of the above exception another exception occurred traceback most recent call last file bleachbit command pyo line in execute file bleachbit special pyo line in delete chrome autofill file bleachbit fileutilities pyo line in execute operationalerror no such table autofill profile names c users username appdata local google chrome user data default web data during handling of the above exception another exception occurred traceback most recent call last file bleachbit worker pyo line in execute file bleachbit command pyo line in execute attributeerror operationalerror object has no attribute message
| 1
|
741,143
| 25,781,126,220
|
IssuesEvent
|
2022-12-09 16:01:32
|
Leek727/ChessSchedule
|
https://api.github.com/repos/Leek727/ChessSchedule
|
closed
|
Players join mid-game bug
|
bug high priority
|
Right now, we allow players to join a game that is already in progress. I think that we should strive to allow players to join mid-tournament, but make sure that this doesn't break anything. It seems like this is what breaks the pairings not showing up as well as causing the "next game" button to break.
|
1.0
|
Players join mid-game bug - Right now, we allow players to join a game that is already in progress. I think that we should strive to allow players to join mid-tournament, but make sure that this doesn't break anything. It seems like this is what breaks the pairings not showing up as well as causing the "next game" button to break.
|
priority
|
players join mid game bug right now we allow players to join a game that is already in progress i think that we should strive to allow players to join mid tournament but make sure that this doesn t break anything it seems like this is what breaks the pairings not showing up as well as causing the next game button to break
| 1
|
177,881
| 6,588,114,977
|
IssuesEvent
|
2017-09-14 00:53:07
|
vmware/vic
|
https://api.github.com/repos/vmware/vic
|
opened
|
Investigation into splitting vic-machine and vic-engine logging
|
kind/investigation priority/high team/customer-advocacy
|
**Acceptance Criteria:**
A detailed plan and design for how to approach splitting the logging for vic-machine and vic-engine. Additionally, issues should be created to track the work.
|
1.0
|
Investigation into splitting vic-machine and vic-engine logging - **Acceptance Criteria:**
A detailed plan and design for how to approach splitting the logging for vic-machine and vic-engine. Additionally, issues should be created to track the work.
|
priority
|
investigation into splitting vic machine and vic engine logging acceptance criteria a detailed plan and design for how to approach splitting the logging for vic machine and vic engine additionally issues should be created to track the work
| 1
|
435,851
| 12,542,287,928
|
IssuesEvent
|
2020-06-05 13:48:42
|
prysmaticlabs/prysm
|
https://api.github.com/repos/prysmaticlabs/prysm
|
closed
|
Use Ferran's Generated SSZ Instead of Generic SSZ, Remove Bazel Passthrough
|
Enhancement Priority: High
|
<!--💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎
Hellooo! 😄
To help us tend to your issue faster, please search our currently open issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎-->
# 💎 Issue
### Background
Currently, everywhere we do ssz.Marshal or Unmarshal, bazel applies a runtime patch to use ferran's fast ssz for whitelisted structs instead. This is a security hole when running with the normal Go tool. Instead, we should actually use ferran's fast ssz instead of go-ssz when we need to.
|
1.0
|
Use Ferran's Generated SSZ Instead of Generic SSZ, Remove Bazel Passthrough - <!--💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎
Hellooo! 😄
To help us tend to your issue faster, please search our currently open issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎-->
# 💎 Issue
### Background
Currently, everywhere we do ssz.Marshal or Unmarshal, bazel applies a runtime patch to use ferran's fast ssz for whitelisted structs instead. This is a security hole when running with the normal Go tool. Instead, we should actually use ferran's fast ssz instead of go-ssz when we need to.
|
priority
|
use ferran s generated ssz instead of generic ssz remove bazel passthrough 💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎 hellooo 😄 to help us tend to your issue faster please search our currently open issues before submitting a new one existing issues often contain information about workarounds resolution or progress updates 💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎💎 💎 issue background currently everywhere we do ssz marshal or unmarshal bazel applies a runtime patch to use ferran s fast ssz for whitelisted structs instead this is a security hole when running with the normal go tool instead we should actually use ferran s fast ssz instead of go ssz when we need to
| 1
|
7,566
| 2,603,602,762
|
IssuesEvent
|
2015-02-24 16:55:30
|
web-cat/code-workout
|
https://api.github.com/repos/web-cat/code-workout
|
opened
|
Use server-side push to deliver exercise feedback results
|
bug priority:high
|
Currently, when a student practices an exercise, the exercises_controller sleeps a fixed delay (3s) before returning (line 610). This is because immediately after the answer submission, the client code attempts to retrieve the results via an ajax call. The sleep is broken, since there is no guarantee the results will be ready after that time is up, and it effectively is a broken strategy to turn the async answer processing into a synchronous call (!). The sleep should be removed, and instead feedback results should be pushed from the server via HTML5 server-side push, instead of pulled from the client after submission.
|
1.0
|
Use server-side push to deliver exercise feedback results - Currently, when a student practices an exercise, the exercises_controller sleeps a fixed delay (3s) before returning (line 610). This is because immediately after the answer submission, the client code attempts to retrieve the results via an ajax call. The sleep is broken, since there is no guarantee the results will be ready after that time is up, and it effectively is a broken strategy to turn the async answer processing into a synchronous call (!). The sleep should be removed, and instead feedback results should be pushed from the server via HTML5 server-side push, instead of pulled from the client after submission.
|
priority
|
use server side push to deliver exercise feedback results currently when a student practices an exercise the exercises controller sleeps a fixed delay before returning line this is because immediately after the answer submission the client code attempts to retrieve the results via an ajax call the sleep is broken since there is no guarantee the results will be ready after that time is up and it effectively is a broken strategy to turn the async answer processing into a synchronous call the sleep should be removed and instead feedback results should be pushed from the server via server side push instead of pulled from the client after submission
| 1
|
663,781
| 22,206,418,354
|
IssuesEvent
|
2022-06-07 15:13:00
|
FabricMC/fabric
|
https://api.github.com/repos/FabricMC/fabric
|
opened
|
Client command API race condition
|
bug priority:high
|
Pointed out by @Earthcomputer in https://github.com/FabricMC/fabric/pull/2264#discussion_r891227800. Needs further investigation.
|
1.0
|
Client command API race condition - Pointed out by @Earthcomputer in https://github.com/FabricMC/fabric/pull/2264#discussion_r891227800. Needs further investigation.
|
priority
|
client command api race condition pointed out by earthcomputer in needs further investigation
| 1
|
539,788
| 15,794,863,667
|
IssuesEvent
|
2021-04-02 11:57:58
|
eclipse-emfcloud/emfcloud-modelserver
|
https://api.github.com/repos/eclipse-emfcloud/emfcloud-modelserver
|
closed
|
Saving an unkown resource should not respond 'success'
|
high priority
|
When trying to save an unknown resource, the model server responds with success:
`{ "type": "success", "data": "Model 'file:/...' successfully saved" }`
This is not correct, it should return an error, just like for example the `DELETE` endpoint.
`{ "type": "error", "data": "Model 'file:/...' not found, cannot be deleted!" }`
|
1.0
|
Saving an unkown resource should not respond 'success' - When trying to save an unknown resource, the model server responds with success:
`{ "type": "success", "data": "Model 'file:/...' successfully saved" }`
This is not correct, it should return an error, just like for example the `DELETE` endpoint.
`{ "type": "error", "data": "Model 'file:/...' not found, cannot be deleted!" }`
|
priority
|
saving an unkown resource should not respond success when trying to save an unknown resource the model server responds with success type success data model file successfully saved this is not correct it should return an error just like for example the delete endpoint type error data model file not found cannot be deleted
| 1
|
710,327
| 24,414,579,826
|
IssuesEvent
|
2022-10-05 14:54:35
|
inverse-inc/packetfence
|
https://api.github.com/repos/inverse-inc/packetfence
|
opened
|
galera-autofix failed to start after a reboot on all cluster members
|
Type: Bug Priority: High
|
**Describe the bug**
On a customer deployment running PacketFence v12 (Debian) in a cluster, all servers have been restarted (soft reboot) at the time. After the reboot `galera-autofix` failed to reach `packetfence-config` and then entered in a panic state.
It was necessary to restart `galera-autofix` manually for the cluster to recover.
**Expected behavior**
`galera-autofix` start correctly and fix cluster state.
**Additional context**
Logs I saw on each cluster member using `journalctl -u packetfence-galera-autofix`:
```
-- Boot 103b1c577a2c4045ac26ef3fe6b08c2c --
oct. 05 03:01:20 test-nac systemd[1]: Started PacketFence MariaDB Galera conflict resolution.
oct. 05 03:01:20 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:20+0200 lvl=info msg="Waiting 5m0s before we start checking for DB issues" pid=550
oct. 05 03:01:20 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:20+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:21 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:21+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:22 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:22+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:23 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:23+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:24 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:24+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:25 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:25+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:26 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:26+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:27 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:27+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:28 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:28+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:29 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:29+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:30 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:30+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
oct. 05 03:01:32 test-nac galera-autofix[550]: panic: runtime error: invalid memory address or nil pointer dereference
oct. 05 03:01:32 test-nac galera-autofix[550]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x6316ce]
oct. 05 03:01:32 test-nac galera-autofix[550]: goroutine 6 [running]:
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/pfconfigdriver.GetClusterSummary({0x70fee0, 0xc0001020c0})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:430 +0x1ae
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/pfconfigdriver.createQuery({0x70fee0, 0xc0001020c0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:287 +0x10e
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/pfconfigdriver.FetchDecodeSocketCache({0x70fee0, 0xc0001020c0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:346 +0x4b
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.DatabaseConfig(...)
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:28
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLiveSeqno({0x70fee0, 0xc000077350}, {0x6acd96, 0x9})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:132 +0xe5
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLocalLiveSeqno(...)
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:127
oct. 05 03:01:32 test-nac galera-autofix[550]: main.seqnoReporting({0x70fee0, 0xc000077350})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:87 +0x7c
oct. 05 03:01:32 test-nac galera-autofix[550]: created by main.main
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:32 +0x85
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Failed with result 'exit-code'.
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Scheduled restart job, restart counter is at 1.
oct. 05 03:01:32 test-nac systemd[1]: Stopped PacketFence MariaDB Galera conflict resolution.
oct. 05 03:01:32 test-nac systemd[1]: Started PacketFence MariaDB Galera conflict resolution.
oct. 05 03:01:32 test-nac /usr/local/pf/sbin/galera-autofix[1213]: t=2022-10-05T03:01:32+0200 lvl=info msg="Waiting 5m0s before we start checking for DB issues" pid=1213
oct. 05 03:01:32 test-nac galera-autofix[1213]: panic: runtime error: invalid memory address or nil pointer dereference
oct. 05 03:01:32 test-nac galera-autofix[1213]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x6316ce]
oct. 05 03:01:32 test-nac galera-autofix[1213]: goroutine 6 [running]:
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/pfconfigdriver.GetClusterSummary({0x70fee0, 0xc00006f4a0})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:430 +0x1ae
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/pfconfigdriver.createQuery({0x70fee0, 0xc00006f4a0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:287 +0x10e
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/pfconfigdriver.FetchDecodeSocketCache({0x70fee0, 0xc00006f4a0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:346 +0x4b
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.DatabaseConfig(...)
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:28
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLiveSeqno({0x70fee0, 0xc00006f350}, {0x6acd96, 0x9})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:132 +0xe5
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLocalLiveSeqno(...)
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:127
oct. 05 03:01:32 test-nac galera-autofix[1213]: main.seqnoReporting({0x70fee0, 0xc00006f350})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:87 +0x7c
oct. 05 03:01:32 test-nac galera-autofix[1213]: created by main.main
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:32 +0x85
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
```
|
1.0
|
galera-autofix failed to start after a reboot on all cluster members - **Describe the bug**
On a customer deployment running PacketFence v12 (Debian) in a cluster, all servers have been restarted (soft reboot) at the time. After the reboot `galera-autofix` failed to reach `packetfence-config` and then entered in a panic state.
It was necessary to restart `galera-autofix` manually for the cluster to recover.
**Expected behavior**
`galera-autofix` start correctly and fix cluster state.
**Additional context**
Logs I saw on each cluster member using `journalctl -u packetfence-galera-autofix`:
```
-- Boot 103b1c577a2c4045ac26ef3fe6b08c2c --
oct. 05 03:01:20 test-nac systemd[1]: Started PacketFence MariaDB Galera conflict resolution.
oct. 05 03:01:20 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:20+0200 lvl=info msg="Waiting 5m0s before we start checking for DB issues" pid=550
oct. 05 03:01:20 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:20+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:21 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:21+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:22 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:22+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:23 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:23+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:24 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:24+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:25 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:25+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:26 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:26+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:27 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:27+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:28 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:28+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:29 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:29+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:30 test-nac /usr/local/pf/sbin/galera-autofix[550]: t=2022-10-05T03:01:30+0200 lvl=eror msg="Cannot connect to pfconfig socket...dial tcp 127.0.0.1:44444: connect: connection refused" pid=550 function=GetLiveSeqno
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
oct. 05 03:01:32 test-nac galera-autofix[550]: panic: runtime error: invalid memory address or nil pointer dereference
oct. 05 03:01:32 test-nac galera-autofix[550]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x6316ce]
oct. 05 03:01:32 test-nac galera-autofix[550]: goroutine 6 [running]:
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/pfconfigdriver.GetClusterSummary({0x70fee0, 0xc0001020c0})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:430 +0x1ae
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/pfconfigdriver.createQuery({0x70fee0, 0xc0001020c0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:287 +0x10e
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/pfconfigdriver.FetchDecodeSocketCache({0x70fee0, 0xc0001020c0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:346 +0x4b
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.DatabaseConfig(...)
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:28
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLiveSeqno({0x70fee0, 0xc000077350}, {0x6acd96, 0x9})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:132 +0xe5
oct. 05 03:01:32 test-nac galera-autofix[550]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLocalLiveSeqno(...)
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:127
oct. 05 03:01:32 test-nac galera-autofix[550]: main.seqnoReporting({0x70fee0, 0xc000077350})
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:87 +0x7c
oct. 05 03:01:32 test-nac galera-autofix[550]: created by main.main
oct. 05 03:01:32 test-nac galera-autofix[550]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:32 +0x85
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Failed with result 'exit-code'.
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Scheduled restart job, restart counter is at 1.
oct. 05 03:01:32 test-nac systemd[1]: Stopped PacketFence MariaDB Galera conflict resolution.
oct. 05 03:01:32 test-nac systemd[1]: Started PacketFence MariaDB Galera conflict resolution.
oct. 05 03:01:32 test-nac /usr/local/pf/sbin/galera-autofix[1213]: t=2022-10-05T03:01:32+0200 lvl=info msg="Waiting 5m0s before we start checking for DB issues" pid=1213
oct. 05 03:01:32 test-nac galera-autofix[1213]: panic: runtime error: invalid memory address or nil pointer dereference
oct. 05 03:01:32 test-nac galera-autofix[1213]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x6316ce]
oct. 05 03:01:32 test-nac galera-autofix[1213]: goroutine 6 [running]:
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/pfconfigdriver.GetClusterSummary({0x70fee0, 0xc00006f4a0})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:430 +0x1ae
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/pfconfigdriver.createQuery({0x70fee0, 0xc00006f4a0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:287 +0x10e
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/pfconfigdriver.FetchDecodeSocketCache({0x70fee0, 0xc00006f4a0}, {0x70e7e8, 0x8c2900})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/pfconfigdriver/fetch.go:346 +0x4b
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.DatabaseConfig(...)
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:28
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLiveSeqno({0x70fee0, 0xc00006f350}, {0x6acd96, 0x9})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:132 +0xe5
oct. 05 03:01:32 test-nac galera-autofix[1213]: github.com/inverse-inc/packetfence/go/galeraautofix/mariadb.GetLocalLiveSeqno(...)
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/galeraautofix/mariadb/mariadb.go:127
oct. 05 03:01:32 test-nac galera-autofix[1213]: main.seqnoReporting({0x70fee0, 0xc00006f350})
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:87 +0x7c
oct. 05 03:01:32 test-nac galera-autofix[1213]: created by main.main
oct. 05 03:01:32 test-nac galera-autofix[1213]: /builds/inverse-inc/packetfence/go/cmd/galera-autofix/main.go:32 +0x85
oct. 05 03:01:32 test-nac systemd[1]: packetfence-galera-autofix.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
```
|
priority
|
galera autofix failed to start after a reboot on all cluster members describe the bug on a customer deployment running packetfence debian in a cluster all servers have been restarted soft reboot at the time after the reboot galera autofix failed to reach packetfence config and then entered in a panic state it was necessary to restart galera autofix manually for the cluster to recover expected behavior galera autofix start correctly and fix cluster state additional context logs i saw on each cluster member using journalctl u packetfence galera autofix boot oct test nac systemd started packetfence mariadb galera conflict resolution oct test nac usr local pf sbin galera autofix t lvl info msg waiting before we start checking for db issues pid oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac usr local pf sbin galera autofix t lvl eror msg cannot connect to pfconfig socket dial tcp connect connection refused pid function getliveseqno oct test nac systemd packetfence galera autofix service main process exited code exited status invalidargument oct test nac galera autofix panic runtime error invalid memory address or nil pointer dereference oct test nac galera autofix oct test nac galera autofix goroutine oct test nac galera autofix github com inverse inc packetfence go pfconfigdriver getclustersummary oct test nac galera autofix builds inverse inc packetfence go pfconfigdriver fetch go oct test nac galera autofix github com inverse inc packetfence go pfconfigdriver createquery oct test nac galera autofix builds inverse inc packetfence go pfconfigdriver fetch go oct test nac galera autofix github com inverse inc packetfence go pfconfigdriver fetchdecodesocketcache oct test nac galera autofix builds inverse inc packetfence go pfconfigdriver fetch go oct test nac galera autofix github com inverse inc packetfence go galeraautofix mariadb databaseconfig oct test nac galera autofix builds inverse inc packetfence go galeraautofix mariadb mariadb go oct test nac galera autofix github com inverse inc packetfence go galeraautofix mariadb getliveseqno oct test nac galera autofix builds inverse inc packetfence go galeraautofix mariadb mariadb go oct test nac galera autofix github com inverse inc packetfence go galeraautofix mariadb getlocalliveseqno oct test nac galera autofix builds inverse inc packetfence go galeraautofix mariadb mariadb go oct test nac galera autofix main seqnoreporting oct test nac galera autofix builds inverse inc packetfence go cmd galera autofix main go oct test nac galera autofix created by main main oct test nac galera autofix builds inverse inc packetfence go cmd galera autofix main go oct test nac systemd packetfence galera autofix service failed with result exit code oct test nac systemd packetfence galera autofix service scheduled restart job restart counter is at oct test nac systemd stopped packetfence mariadb galera conflict resolution oct test nac systemd started packetfence mariadb galera conflict resolution oct test nac usr local pf sbin galera autofix t lvl info msg waiting before we start checking for db issues pid oct test nac galera autofix panic runtime error invalid memory address or nil pointer dereference oct test nac galera autofix oct test nac galera autofix goroutine oct test nac galera autofix github com inverse inc packetfence go pfconfigdriver getclustersummary oct test nac galera autofix builds inverse inc packetfence go pfconfigdriver fetch go oct test nac galera autofix github com inverse inc packetfence go pfconfigdriver createquery oct test nac galera autofix builds inverse inc packetfence go pfconfigdriver fetch go oct test nac galera autofix github com inverse inc packetfence go pfconfigdriver fetchdecodesocketcache oct test nac galera autofix builds inverse inc packetfence go pfconfigdriver fetch go oct test nac galera autofix github com inverse inc packetfence go galeraautofix mariadb databaseconfig oct test nac galera autofix builds inverse inc packetfence go galeraautofix mariadb mariadb go oct test nac galera autofix github com inverse inc packetfence go galeraautofix mariadb getliveseqno oct test nac galera autofix builds inverse inc packetfence go galeraautofix mariadb mariadb go oct test nac galera autofix github com inverse inc packetfence go galeraautofix mariadb getlocalliveseqno oct test nac galera autofix builds inverse inc packetfence go galeraautofix mariadb mariadb go oct test nac galera autofix main seqnoreporting oct test nac galera autofix builds inverse inc packetfence go cmd galera autofix main go oct test nac galera autofix created by main main oct test nac galera autofix builds inverse inc packetfence go cmd galera autofix main go oct test nac systemd packetfence galera autofix service main process exited code exited status invalidargument
| 1
|
53,855
| 3,051,962,168
|
IssuesEvent
|
2015-08-12 12:11:38
|
OpenCompare/OpenCompare
|
https://api.github.com/repos/OpenCompare/OpenCompare
|
closed
|
Create (workflow)
|
enhancement Priority: high
|
The creation of a new matrix can be easily improved.
The current "flow" is as follows:
(1) click on "Create"
(2) click on "Edit"
(3) then add a "feature" or a "product"
The (2) is boring. We should be in "edit" mode directly
The (3) is not that intuitive. You have to click on "+product", but why not providing upfront a text box, with a "focused" cursor so that you can directly write the product..
For "+feature" maybe the same but I am not sure.
In any case, we have to improve the user experience for "creating".
These little fixes can be quickly implemented and are a first mandatory step ;)
|
1.0
|
Create (workflow) - The creation of a new matrix can be easily improved.
The current "flow" is as follows:
(1) click on "Create"
(2) click on "Edit"
(3) then add a "feature" or a "product"
The (2) is boring. We should be in "edit" mode directly
The (3) is not that intuitive. You have to click on "+product", but why not providing upfront a text box, with a "focused" cursor so that you can directly write the product..
For "+feature" maybe the same but I am not sure.
In any case, we have to improve the user experience for "creating".
These little fixes can be quickly implemented and are a first mandatory step ;)
|
priority
|
create workflow the creation of a new matrix can be easily improved the current flow is as follows click on create click on edit then add a feature or a product the is boring we should be in edit mode directly the is not that intuitive you have to click on product but why not providing upfront a text box with a focused cursor so that you can directly write the product for feature maybe the same but i am not sure in any case we have to improve the user experience for creating these little fixes can be quickly implemented and are a first mandatory step
| 1
|
89,072
| 3,789,392,067
|
IssuesEvent
|
2016-03-21 17:47:28
|
leeensminger/DelDOT-NPDES-Field-Tool
|
https://api.github.com/repos/leeensminger/DelDOT-NPDES-Field-Tool
|
opened
|
Roadway Culvert Conveyance Doesn't Allow for Conveying Streams
|
bug - high priority
|
Roadway Culvert Conveyance does not allow the user to select if it is conveying a stream or not.

|
1.0
|
Roadway Culvert Conveyance Doesn't Allow for Conveying Streams - Roadway Culvert Conveyance does not allow the user to select if it is conveying a stream or not.

|
priority
|
roadway culvert conveyance doesn t allow for conveying streams roadway culvert conveyance does not allow the user to select if it is conveying a stream or not
| 1
|
618,243
| 19,430,359,483
|
IssuesEvent
|
2021-12-21 11:12:00
|
EscolaLMS/Video
|
https://api.github.com/repos/EscolaLMS/Video
|
closed
|
POC s3
|
high priority priority high
|
Is it Possible that when user upload a video to TopicVideo
- original file is saved in s3
- hls files created by this packages is stored on s3
- urls in `program` endpoint are from s3 (here there is URL to hls.m3u playlisty only)
|
2.0
|
POC s3 - Is it Possible that when user upload a video to TopicVideo
- original file is saved in s3
- hls files created by this packages is stored on s3
- urls in `program` endpoint are from s3 (here there is URL to hls.m3u playlisty only)
|
priority
|
poc is it possible that when user upload a video to topicvideo original file is saved in hls files created by this packages is stored on urls in program endpoint are from here there is url to hls playlisty only
| 1
|
473,663
| 13,645,855,282
|
IssuesEvent
|
2020-09-25 21:41:36
|
python/mypy
|
https://api.github.com/repos/python/mypy
|
closed
|
Internal error using compile re in inner function
|
crash priority-0-high topic-pep-572
|
Running mypy on latest master raises internal error for the following code:
```
import re
def func(arg: str) -> None:
if not (match := re_pattern.match(arg)):
return
print(arg)
re_pattern = re.compile(r".*")
func("hello")
```
Traceback attached:
```
/tmp/tst.py:5: error: INTERNAL ERROR -- Please try using mypy master on Github:
https://mypy.rtfd.io/en/latest/common_issues.html#using-a-development-mypy-build
Please report a bug at https://github.com/python/mypy/issues
version: 0.781
Traceback (most recent call last):
File "/usr/local/bin/mypy", line 8, in <module>
sys.exit(console_entry())
File "/usr/local/lib/python3.8/site-packages/mypy/__main__.py", line 8, in console_entry
main(None, sys.stdout, sys.stderr)
File "/usr/local/lib/python3.8/site-packages/mypy/main.py", line 89, in main
res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 180, in build
result = _build(
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 252, in _build
graph = dispatch(sources, manager, stdout)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 2626, in dispatch
process_graph(graph, manager)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 2949, in process_graph
process_stale_scc(graph, scc, manager)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 3047, in process_stale_scc
graph[id].type_check_first_pass()
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 2107, in type_check_first_pass
self.type_checker().check_first_pass()
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 294, in check_first_pass
self.accept(d)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 401, in accept
stmt.accept(self)
File "/usr/local/lib/python3.8/site-packages/mypy/nodes.py", line 676, in accept
return visitor.visit_func_def(self)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 726, in visit_func_def
self._visit_func_def(defn)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 730, in _visit_func_def
self.check_func_item(defn, name=defn.name)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 792, in check_func_item
self.check_func_def(defn, typ, name)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 975, in check_func_def
self.accept(item.body)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 401, in accept
stmt.accept(self)
File "/usr/local/lib/python3.8/site-packages/mypy/nodes.py", line 1004, in accept
return visitor.visit_block(self)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 1973, in visit_block
self.accept(s)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 401, in accept
stmt.accept(self)
File "/usr/local/lib/python3.8/site-packages/mypy/nodes.py", line 1195, in accept
return visitor.visit_if_stmt(self)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 3212, in visit_if_stmt
if_map, else_map = self.find_isinstance_check(e)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 3928, in find_isinstance_check
if_map, else_map = self.find_isinstance_check_helper(node)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 4135, in find_isinstance_check_helper
left, right = self.find_isinstance_check_helper(node.expr)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 4104, in find_isinstance_check_helper
return self.find_isinstance_check_helper(node.target)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 4108, in find_isinstance_check_helper
vartype = type_map[node]
KeyError: <mypy.nodes.NameExpr object at 0x7f832bd6c0c0>
```
|
1.0
|
Internal error using compile re in inner function - Running mypy on latest master raises internal error for the following code:
```
import re
def func(arg: str) -> None:
if not (match := re_pattern.match(arg)):
return
print(arg)
re_pattern = re.compile(r".*")
func("hello")
```
Traceback attached:
```
/tmp/tst.py:5: error: INTERNAL ERROR -- Please try using mypy master on Github:
https://mypy.rtfd.io/en/latest/common_issues.html#using-a-development-mypy-build
Please report a bug at https://github.com/python/mypy/issues
version: 0.781
Traceback (most recent call last):
File "/usr/local/bin/mypy", line 8, in <module>
sys.exit(console_entry())
File "/usr/local/lib/python3.8/site-packages/mypy/__main__.py", line 8, in console_entry
main(None, sys.stdout, sys.stderr)
File "/usr/local/lib/python3.8/site-packages/mypy/main.py", line 89, in main
res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 180, in build
result = _build(
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 252, in _build
graph = dispatch(sources, manager, stdout)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 2626, in dispatch
process_graph(graph, manager)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 2949, in process_graph
process_stale_scc(graph, scc, manager)
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 3047, in process_stale_scc
graph[id].type_check_first_pass()
File "/usr/local/lib/python3.8/site-packages/mypy/build.py", line 2107, in type_check_first_pass
self.type_checker().check_first_pass()
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 294, in check_first_pass
self.accept(d)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 401, in accept
stmt.accept(self)
File "/usr/local/lib/python3.8/site-packages/mypy/nodes.py", line 676, in accept
return visitor.visit_func_def(self)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 726, in visit_func_def
self._visit_func_def(defn)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 730, in _visit_func_def
self.check_func_item(defn, name=defn.name)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 792, in check_func_item
self.check_func_def(defn, typ, name)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 975, in check_func_def
self.accept(item.body)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 401, in accept
stmt.accept(self)
File "/usr/local/lib/python3.8/site-packages/mypy/nodes.py", line 1004, in accept
return visitor.visit_block(self)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 1973, in visit_block
self.accept(s)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 401, in accept
stmt.accept(self)
File "/usr/local/lib/python3.8/site-packages/mypy/nodes.py", line 1195, in accept
return visitor.visit_if_stmt(self)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 3212, in visit_if_stmt
if_map, else_map = self.find_isinstance_check(e)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 3928, in find_isinstance_check
if_map, else_map = self.find_isinstance_check_helper(node)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 4135, in find_isinstance_check_helper
left, right = self.find_isinstance_check_helper(node.expr)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 4104, in find_isinstance_check_helper
return self.find_isinstance_check_helper(node.target)
File "/usr/local/lib/python3.8/site-packages/mypy/checker.py", line 4108, in find_isinstance_check_helper
vartype = type_map[node]
KeyError: <mypy.nodes.NameExpr object at 0x7f832bd6c0c0>
```
|
priority
|
internal error using compile re in inner function running mypy on latest master raises internal error for the following code import re def func arg str none if not match re pattern match arg return print arg re pattern re compile r func hello traceback attached tmp tst py error internal error please try using mypy master on github please report a bug at version traceback most recent call last file usr local bin mypy line in sys exit console entry file usr local lib site packages mypy main py line in console entry main none sys stdout sys stderr file usr local lib site packages mypy main py line in main res build build sources options none flush errors fscache stdout stderr file usr local lib site packages mypy build py line in build result build file usr local lib site packages mypy build py line in build graph dispatch sources manager stdout file usr local lib site packages mypy build py line in dispatch process graph graph manager file usr local lib site packages mypy build py line in process graph process stale scc graph scc manager file usr local lib site packages mypy build py line in process stale scc graph type check first pass file usr local lib site packages mypy build py line in type check first pass self type checker check first pass file usr local lib site packages mypy checker py line in check first pass self accept d file usr local lib site packages mypy checker py line in accept stmt accept self file usr local lib site packages mypy nodes py line in accept return visitor visit func def self file usr local lib site packages mypy checker py line in visit func def self visit func def defn file usr local lib site packages mypy checker py line in visit func def self check func item defn name defn name file usr local lib site packages mypy checker py line in check func item self check func def defn typ name file usr local lib site packages mypy checker py line in check func def self accept item body file usr local lib site packages mypy checker py line in accept stmt accept self file usr local lib site packages mypy nodes py line in accept return visitor visit block self file usr local lib site packages mypy checker py line in visit block self accept s file usr local lib site packages mypy checker py line in accept stmt accept self file usr local lib site packages mypy nodes py line in accept return visitor visit if stmt self file usr local lib site packages mypy checker py line in visit if stmt if map else map self find isinstance check e file usr local lib site packages mypy checker py line in find isinstance check if map else map self find isinstance check helper node file usr local lib site packages mypy checker py line in find isinstance check helper left right self find isinstance check helper node expr file usr local lib site packages mypy checker py line in find isinstance check helper return self find isinstance check helper node target file usr local lib site packages mypy checker py line in find isinstance check helper vartype type map keyerror
| 1
|
583,365
| 17,383,370,045
|
IssuesEvent
|
2021-08-01 06:14:52
|
georgia-tech-db/eva
|
https://api.github.com/repos/georgia-tech-db/eva
|
closed
|
Disallow multiple queries on the same cursor to ensure cursor correctness
|
High Priority bug
|
We shouldn't allow concurrent select queries on the same cursor to ensure correctness.
`cursor.execute('query1')`
`cursor.execute('query2')`
The above code shouldn't be allowed. The user has to clear the cursor buffer before running the second query. Throw the following error.
`InternalError: Unread result found`
|
1.0
|
Disallow multiple queries on the same cursor to ensure cursor correctness - We shouldn't allow concurrent select queries on the same cursor to ensure correctness.
`cursor.execute('query1')`
`cursor.execute('query2')`
The above code shouldn't be allowed. The user has to clear the cursor buffer before running the second query. Throw the following error.
`InternalError: Unread result found`
|
priority
|
disallow multiple queries on the same cursor to ensure cursor correctness we shouldn t allow concurrent select queries on the same cursor to ensure correctness cursor execute cursor execute the above code shouldn t be allowed the user has to clear the cursor buffer before running the second query throw the following error internalerror unread result found
| 1
|
45,623
| 2,937,635,339
|
IssuesEvent
|
2015-07-01 04:03:49
|
TypeStrong/atom-typescript
|
https://api.github.com/repos/TypeStrong/atom-typescript
|
closed
|
Make it easier to add a new enum to tsconfig.json
|
category:tsconfig priority:high
|
These should *not* be *three* things to update : https://github.com/TypeStrong/atom-typescript/blob/e5ca56cf5b15ce6540c351a157f82088c66ab0df/lib/main/tsconfig/tsconfig.ts#L15 should be just one.
|
1.0
|
Make it easier to add a new enum to tsconfig.json - These should *not* be *three* things to update : https://github.com/TypeStrong/atom-typescript/blob/e5ca56cf5b15ce6540c351a157f82088c66ab0df/lib/main/tsconfig/tsconfig.ts#L15 should be just one.
|
priority
|
make it easier to add a new enum to tsconfig json these should not be three things to update should be just one
| 1
|
360,575
| 10,694,606,737
|
IssuesEvent
|
2019-10-23 11:14:59
|
ahmedkaludi/pwa-for-wp
|
https://api.github.com/repos/ahmedkaludi/pwa-for-wp
|
closed
|
Splash screen not loading on iOS device
|
High Priority enhancement
|
The user has setup everything correctly but the splash screen is not loading. We have personally tested it.
Helpscout link:- https://secure.helpscout.net/conversation/977163164/89657?folderId=3243584
|
1.0
|
Splash screen not loading on iOS device - The user has setup everything correctly but the splash screen is not loading. We have personally tested it.
Helpscout link:- https://secure.helpscout.net/conversation/977163164/89657?folderId=3243584
|
priority
|
splash screen not loading on ios device the user has setup everything correctly but the splash screen is not loading we have personally tested it helpscout link
| 1
|
420,642
| 12,240,601,284
|
IssuesEvent
|
2020-05-05 00:54:11
|
aws/aws-app-mesh-roadmap
|
https://api.github.com/repos/aws/aws-app-mesh-roadmap
|
closed
|
Bug: Route is not updated on Envoy when added to a router with no routes.
|
Bug Phase: Working on it Priority: High
|
**Describe the bug**
Route is not getting updated on Envoy when added to a router with no routes.
This happens to applications that use a backend virtual-service that is associated with virtual-router with no routes.
**Platform**
ECS (but believe it is platform independent)
**To Reproduce**
Steps to reproduce the behavior:
1. Clone https://github.com/kiranmeduri/aws-app-mesh-examples/tree/route-bug-2019-09-13
2. `cd walkthrough/route-bug`
2. Run `deploy.sh`: This will create a mesh and its parts where color-app's virtual-router has no routes.
3. Now if you curl the front endpoint you should see 404. This is expected.
4. Now go ahead and un-comment the `L-206 deploy_color_routes`
5. Run `deploy.sh`: This will add the route for color-app
....Wait for some time to confirm eventual distribution ~1min (I waited 10mins)...
6. Now if you curl front endpoint you will still see 404 when 200 OK is expected
7. Now if you restart front-app's ECS task you will see that curl will return 200 OK.
Note that if you have an existing app using router with routes and delete all the routes this issue will not reproduce.
|
1.0
|
Bug: Route is not updated on Envoy when added to a router with no routes. - **Describe the bug**
Route is not getting updated on Envoy when added to a router with no routes.
This happens to applications that use a backend virtual-service that is associated with virtual-router with no routes.
**Platform**
ECS (but believe it is platform independent)
**To Reproduce**
Steps to reproduce the behavior:
1. Clone https://github.com/kiranmeduri/aws-app-mesh-examples/tree/route-bug-2019-09-13
2. `cd walkthrough/route-bug`
2. Run `deploy.sh`: This will create a mesh and its parts where color-app's virtual-router has no routes.
3. Now if you curl the front endpoint you should see 404. This is expected.
4. Now go ahead and un-comment the `L-206 deploy_color_routes`
5. Run `deploy.sh`: This will add the route for color-app
....Wait for some time to confirm eventual distribution ~1min (I waited 10mins)...
6. Now if you curl front endpoint you will still see 404 when 200 OK is expected
7. Now if you restart front-app's ECS task you will see that curl will return 200 OK.
Note that if you have an existing app using router with routes and delete all the routes this issue will not reproduce.
|
priority
|
bug route is not updated on envoy when added to a router with no routes describe the bug route is not getting updated on envoy when added to a router with no routes this happens to applications that use a backend virtual service that is associated with virtual router with no routes platform ecs but believe it is platform independent to reproduce steps to reproduce the behavior clone cd walkthrough route bug run deploy sh this will create a mesh and its parts where color app s virtual router has no routes now if you curl the front endpoint you should see this is expected now go ahead and un comment the l deploy color routes run deploy sh this will add the route for color app wait for some time to confirm eventual distribution i waited now if you curl front endpoint you will still see when ok is expected now if you restart front app s ecs task you will see that curl will return ok note that if you have an existing app using router with routes and delete all the routes this issue will not reproduce
| 1
|
213,867
| 7,261,123,834
|
IssuesEvent
|
2018-02-18 17:38:58
|
bounswe/bounswe2018group4
|
https://api.github.com/repos/bounswe/bounswe2018group4
|
closed
|
The Glossary section of the requirements
|
Help wanted High priority Review needed
|
We need a section to make things clear in requirements.
This has to be done and reviewed until Sunday (18th of February) evening.
|
1.0
|
The Glossary section of the requirements - We need a section to make things clear in requirements.
This has to be done and reviewed until Sunday (18th of February) evening.
|
priority
|
the glossary section of the requirements we need a section to make things clear in requirements this has to be done and reviewed until sunday of february evening
| 1
|
231,156
| 7,624,344,618
|
IssuesEvent
|
2018-05-03 17:42:55
|
meth-browser/meth
|
https://api.github.com/repos/meth-browser/meth
|
closed
|
Redo components React
|
Enhancement High Priority
|
* [x] Use PropTypes.shape where possible
* [x] Use pure component functions where possible
* [x] Add `componentDidCatch`
|
1.0
|
Redo components React - * [x] Use PropTypes.shape where possible
* [x] Use pure component functions where possible
* [x] Add `componentDidCatch`
|
priority
|
redo components react use proptypes shape where possible use pure component functions where possible add componentdidcatch
| 1
|
33,938
| 2,773,731,214
|
IssuesEvent
|
2015-05-03 22:01:14
|
paceuniversity/cs3892015team6
|
https://api.github.com/repos/paceuniversity/cs3892015team6
|
closed
|
User Story 4
|
Difficulty High Functional High Priority Product Backlog User Story
|
As a user, I should have a splash screen that displays the application logo In order to load promote our branding and give the app time to load up saved data
|
1.0
|
User Story 4 - As a user, I should have a splash screen that displays the application logo In order to load promote our branding and give the app time to load up saved data
|
priority
|
user story as a user i should have a splash screen that displays the application logo in order to load promote our branding and give the app time to load up saved data
| 1
|
541,693
| 15,831,698,364
|
IssuesEvent
|
2021-04-06 13:53:57
|
anders-biostat/covid-test-web-site
|
https://api.github.com/repos/anders-biostat/covid-test-web-site
|
closed
|
Verbesserung Suchfunktion Lab
|
Priority: High Type: Bug Type: Feature
|
### Origin/Ausschnitt Email:
Wenn man bspw "20" eingibt, dann bekommt man knapp 1000 Suchergebnisse, weil auch in jeder plate nach dem Suchbegriff gesucht wird. Das ist an sich nicht tragisch ich glaube aber es wäre hilfreich, wenn man nach "Bag 20" suchen könnte bspw, bzw davor ein Drop Down Menü hätte, in dem man eingeben kann in welcher Kategorie man suchen möchte.
### Mögliche Lösungen:
- Einführung Dropdown mit Auswahl der Suchfelder ("All", "BAG", "EVENT"....)
|
1.0
|
Verbesserung Suchfunktion Lab - ### Origin/Ausschnitt Email:
Wenn man bspw "20" eingibt, dann bekommt man knapp 1000 Suchergebnisse, weil auch in jeder plate nach dem Suchbegriff gesucht wird. Das ist an sich nicht tragisch ich glaube aber es wäre hilfreich, wenn man nach "Bag 20" suchen könnte bspw, bzw davor ein Drop Down Menü hätte, in dem man eingeben kann in welcher Kategorie man suchen möchte.
### Mögliche Lösungen:
- Einführung Dropdown mit Auswahl der Suchfelder ("All", "BAG", "EVENT"....)
|
priority
|
verbesserung suchfunktion lab origin ausschnitt email wenn man bspw eingibt dann bekommt man knapp suchergebnisse weil auch in jeder plate nach dem suchbegriff gesucht wird das ist an sich nicht tragisch ich glaube aber es wäre hilfreich wenn man nach bag suchen könnte bspw bzw davor ein drop down menü hätte in dem man eingeben kann in welcher kategorie man suchen möchte mögliche lösungen einführung dropdown mit auswahl der suchfelder all bag event
| 1
|
412,565
| 12,044,249,097
|
IssuesEvent
|
2020-04-14 13:45:24
|
kiwicom/schemathesis
|
https://api.github.com/repos/kiwicom/schemathesis
|
closed
|
should accept kwargs parameter in loaders.from_file also
|
Priority: High Type: Bug
|
I am using runner for my apis testing. I am passing json string in `runner.prepare` as schema_uri parameter
```
# in loaders.py
def from_file(
file: Union[IO[str], str],
location: Optional[str] = None,
base_url: Optional[str] = None,
method: Optional[Filter] = None,
endpoint: Optional[Filter] = None,
tag: Optional[Filter] = None,
*,
app: Any = None,
validate_schema: bool = True,
**kwargs:Any, <----------------------------------
) -> BaseSchema:
```
|
1.0
|
should accept kwargs parameter in loaders.from_file also - I am using runner for my apis testing. I am passing json string in `runner.prepare` as schema_uri parameter
```
# in loaders.py
def from_file(
file: Union[IO[str], str],
location: Optional[str] = None,
base_url: Optional[str] = None,
method: Optional[Filter] = None,
endpoint: Optional[Filter] = None,
tag: Optional[Filter] = None,
*,
app: Any = None,
validate_schema: bool = True,
**kwargs:Any, <----------------------------------
) -> BaseSchema:
```
|
priority
|
should accept kwargs parameter in loaders from file also i am using runner for my apis testing i am passing json string in runner prepare as schema uri parameter in loaders py def from file file union str location optional none base url optional none method optional none endpoint optional none tag optional none app any none validate schema bool true kwargs any baseschema
| 1
|
112,791
| 4,538,504,896
|
IssuesEvent
|
2016-09-09 07:11:12
|
e-government-ua/iTest
|
https://api.github.com/repos/e-government-ua/iTest
|
closed
|
Відстрілювання вогнепальної зброї та огляд її технічного стану
|
priority - High
|
Группа услуг: "Міліція та ДАІ"
Название услуги: " Відстрілювання вогнепальної зброї та огляд її технічного стану "
Область: "Дніпропетровська"
Город: "Дніпропетровськ"
Формат :
1. Войти на предрелизный
2. Найти услугу через "Поиск"
ПРОВЕРИТЬ ЧТО НАШЛИ ИМЕННО ЭТО УСЛУГУ
3. Выбрать область
4. Войти через ИД БАНК
5. Заполнить все поля (тип оружия выбирать любой)
6. Отправить заявку
ПРОВЕРИТЬ НАЛИЧИЕ СООБЩЕНИЕ О УСПЕШНОЙ ОТРАБОТКЕ УСЛУГИ
7. Сохранить ИД заявки
8 Войти в меню "Статус" ввести номер заявки
ПРОВЕРИТЬ НАЛИЧИЕ СТАТУСА "Заявка создана"
Методы для поиска услуги использовать с класса MainPage
Методы для выбора области - SelectAreaPage
Методы для авторизации - BankIdAuthorizationPage
В src/main/java/pages/service/ создать package c названием группы ,
в группе создать класс с описанием элементов формы услуги
В src/test/java/test/portal/services/ создать package c названием группы, в группе создать класс с тестом
(если группы созданы то использовать их)
|
1.0
|
Відстрілювання вогнепальної зброї та огляд її технічного стану - Группа услуг: "Міліція та ДАІ"
Название услуги: " Відстрілювання вогнепальної зброї та огляд її технічного стану "
Область: "Дніпропетровська"
Город: "Дніпропетровськ"
Формат :
1. Войти на предрелизный
2. Найти услугу через "Поиск"
ПРОВЕРИТЬ ЧТО НАШЛИ ИМЕННО ЭТО УСЛУГУ
3. Выбрать область
4. Войти через ИД БАНК
5. Заполнить все поля (тип оружия выбирать любой)
6. Отправить заявку
ПРОВЕРИТЬ НАЛИЧИЕ СООБЩЕНИЕ О УСПЕШНОЙ ОТРАБОТКЕ УСЛУГИ
7. Сохранить ИД заявки
8 Войти в меню "Статус" ввести номер заявки
ПРОВЕРИТЬ НАЛИЧИЕ СТАТУСА "Заявка создана"
Методы для поиска услуги использовать с класса MainPage
Методы для выбора области - SelectAreaPage
Методы для авторизации - BankIdAuthorizationPage
В src/main/java/pages/service/ создать package c названием группы ,
в группе создать класс с описанием элементов формы услуги
В src/test/java/test/portal/services/ создать package c названием группы, в группе создать класс с тестом
(если группы созданы то использовать их)
|
priority
|
відстрілювання вогнепальної зброї та огляд її технічного стану группа услуг міліція та даі название услуги відстрілювання вогнепальної зброї та огляд її технічного стану область дніпропетровська город дніпропетровськ формат войти на предрелизный найти услугу через поиск проверить что нашли именно это услугу выбрать область войти через ид банк заполнить все поля тип оружия выбирать любой отправить заявку проверить наличие сообщение о успешной отработке услуги сохранить ид заявки войти в меню статус ввести номер заявки проверить наличие статуса заявка создана методы для поиска услуги использовать с класса mainpage методы для выбора области selectareapage методы для авторизации bankidauthorizationpage в src main java pages service создать package c названием группы в группе создать класс с описанием элементов формы услуги в src test java test portal services создать package c названием группы в группе создать класс с тестом если группы созданы то использовать их
| 1
|
332,587
| 10,101,250,581
|
IssuesEvent
|
2019-07-29 08:17:44
|
ipfs/ipfs-cluster
|
https://api.github.com/repos/ipfs/ipfs-cluster
|
closed
|
[Daemon] Auto-trust bootstrap peers
|
difficulty:easy enhancement/feature help wanted priority:high ready
|
**Describe the feature you are proposing**
Peers what we bootstrap with (`--bootstrap`) should be 1) trusted in consensus 2) Added to crdt trusted_peers when using crdts and saved in the config, unless a `--no-trust` flag is set.
**Additional context**
It seems the expected flow is that when you bootstrap to a peer, you implicitally trust it.
|
1.0
|
[Daemon] Auto-trust bootstrap peers - **Describe the feature you are proposing**
Peers what we bootstrap with (`--bootstrap`) should be 1) trusted in consensus 2) Added to crdt trusted_peers when using crdts and saved in the config, unless a `--no-trust` flag is set.
**Additional context**
It seems the expected flow is that when you bootstrap to a peer, you implicitally trust it.
|
priority
|
auto trust bootstrap peers describe the feature you are proposing peers what we bootstrap with bootstrap should be trusted in consensus added to crdt trusted peers when using crdts and saved in the config unless a no trust flag is set additional context it seems the expected flow is that when you bootstrap to a peer you implicitally trust it
| 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.