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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
191,393 | 6,828,620,251 | IssuesEvent | 2017-11-08 21:04:14 | drewrehfeld/opened | https://api.github.com/repos/drewrehfeld/opened | opened | grade not matching | bug P1 (highest priority) | hi asim, please see Amanda Way in PHIL 1 Fall 2017. her grade looks different from her view and mine. i have a feeling this affects other users as well.
<img width="1204" alt="screen shot 2017-11-08 at 1 04 04 nm" src="https://user-images.githubusercontent.com/19864464/32574189-4ea405fc-c485-11e7-9749-490ee7975f66.png">
<img width="922" alt="screen shot 2017-11-08 at 1 03 00 nm" src="https://user-images.githubusercontent.com/19864464/32574190-4edb9648-c485-11e7-8a2e-782378d7d595.png">
| 1.0 | grade not matching - hi asim, please see Amanda Way in PHIL 1 Fall 2017. her grade looks different from her view and mine. i have a feeling this affects other users as well.
<img width="1204" alt="screen shot 2017-11-08 at 1 04 04 nm" src="https://user-images.githubusercontent.com/19864464/32574189-4ea405fc-c485-11e7-9749-490ee7975f66.png">
<img width="922" alt="screen shot 2017-11-08 at 1 03 00 nm" src="https://user-images.githubusercontent.com/19864464/32574190-4edb9648-c485-11e7-8a2e-782378d7d595.png">
| priority | grade not matching hi asim please see amanda way in phil fall her grade looks different from her view and mine i have a feeling this affects other users as well img width alt screen shot at nm src img width alt screen shot at nm src | 1 |
38,397 | 2,846,781,260 | IssuesEvent | 2015-05-29 13:39:23 | ceylon/ceylon-spec | https://api.github.com/repos/ceylon/ceylon-spec | opened | stack overflow with switch and use-site variance | bug high priority | I broke something:
```ceylon
abstract class Foo<Self>() of Self given Self satisfies Foo<Self> {}
class Bar() extends Foo<Bar> {}
void foo(Foo<in Nothing> foo) {
switch (foo) case (is Foo<in Nothing>) { print(foo); }
}
shared void run() => foo(Bar());
```
| 1.0 | stack overflow with switch and use-site variance - I broke something:
```ceylon
abstract class Foo<Self>() of Self given Self satisfies Foo<Self> {}
class Bar() extends Foo<Bar> {}
void foo(Foo<in Nothing> foo) {
switch (foo) case (is Foo<in Nothing>) { print(foo); }
}
shared void run() => foo(Bar());
```
| priority | stack overflow with switch and use site variance i broke something ceylon abstract class foo of self given self satisfies foo class bar extends foo void foo foo foo switch foo case is foo print foo shared void run foo bar | 1 |
761,162 | 26,670,122,169 | IssuesEvent | 2023-01-26 09:32:15 | asgardeo/asgardeo-auth-angular-sdk | https://api.github.com/repos/asgardeo/asgardeo-auth-angular-sdk | closed | SDK Throws a Type Error for Angular Version 11 Strict mode | bug Severity/Critical Priority/Highest | **Describe the issue:**
```
Error: node_modules/@asgardeo/auth-spa/dist/src/models/web-worker.d.ts:25:5 - error TS2416: Property
'onmessage' in type 'WebWorkerClass<T>' is not assignable to the same property in base type 'Worker'.
Type '(this: WebWorkerClass<T>, event: WebWorkerEvent<T>) => any' is not assignable to type
'(this: Worker, ev: MessageEvent<any>) => any'.
The 'this' types of each signature are incompatible.
Type 'Worker' is not assignable to type 'WebWorkerClass<T>'.
Types of property 'onmessage' are incompatible.
Type '((this: Worker, ev: MessageEvent<any>) => any) | null' is not assignable to type
'(this: WebWorkerClass<T>, event: WebWorkerEvent<T>) => any'.
Type 'null' is not assignable to type '(this: WebWorkerClass<T>, event: WebWorkerEvent<T>) => any'.
```
**How to reproduce:**
1. Create an angular app with @angular/cli v 11 [strict mode](https://angular.io/guide/strict-mode) enabled
2. Import @asgardeo/auth-angular `AsgardeoAuthModule`
3. Serve the app
**Expected behaviour:**
SDK should not throw type errors for applications using **angular 11 strict mode**
**Environment information:**
- SDK Version: 0.1.2
- Angular Version: 11 - strict mode
---
**Temporary Solution:**
Put warning labels for the use of `@asgardeo/auth-angular` in **angular 11 strict mode** | 1.0 | SDK Throws a Type Error for Angular Version 11 Strict mode - **Describe the issue:**
```
Error: node_modules/@asgardeo/auth-spa/dist/src/models/web-worker.d.ts:25:5 - error TS2416: Property
'onmessage' in type 'WebWorkerClass<T>' is not assignable to the same property in base type 'Worker'.
Type '(this: WebWorkerClass<T>, event: WebWorkerEvent<T>) => any' is not assignable to type
'(this: Worker, ev: MessageEvent<any>) => any'.
The 'this' types of each signature are incompatible.
Type 'Worker' is not assignable to type 'WebWorkerClass<T>'.
Types of property 'onmessage' are incompatible.
Type '((this: Worker, ev: MessageEvent<any>) => any) | null' is not assignable to type
'(this: WebWorkerClass<T>, event: WebWorkerEvent<T>) => any'.
Type 'null' is not assignable to type '(this: WebWorkerClass<T>, event: WebWorkerEvent<T>) => any'.
```
**How to reproduce:**
1. Create an angular app with @angular/cli v 11 [strict mode](https://angular.io/guide/strict-mode) enabled
2. Import @asgardeo/auth-angular `AsgardeoAuthModule`
3. Serve the app
**Expected behaviour:**
SDK should not throw type errors for applications using **angular 11 strict mode**
**Environment information:**
- SDK Version: 0.1.2
- Angular Version: 11 - strict mode
---
**Temporary Solution:**
Put warning labels for the use of `@asgardeo/auth-angular` in **angular 11 strict mode** | priority | sdk throws a type error for angular version strict mode describe the issue error node modules asgardeo auth spa dist src models web worker d ts error property onmessage in type webworkerclass is not assignable to the same property in base type worker type this webworkerclass event webworkerevent any is not assignable to type this worker ev messageevent any the this types of each signature are incompatible type worker is not assignable to type webworkerclass types of property onmessage are incompatible type this worker ev messageevent any null is not assignable to type this webworkerclass event webworkerevent any type null is not assignable to type this webworkerclass event webworkerevent any how to reproduce create an angular app with angular cli v enabled import asgardeo auth angular asgardeoauthmodule serve the app expected behaviour sdk should not throw type errors for applications using angular strict mode environment information sdk version angular version strict mode temporary solution put warning labels for the use of asgardeo auth angular in angular strict mode | 1 |
372,576 | 11,017,081,779 | IssuesEvent | 2019-12-05 07:28:38 | abpframework/abp | https://api.github.com/repos/abpframework/abp | closed | Docs module conditional section feature | feature module-docs priority:high | In a tutorial, I want to have multiple db provider options (ef & mongo) which are included in a single document. Then reader selects the provider and the document shows only the selected one.
* It should save preferences in the browser local storage and implement automatically.
* It should set preferences in the querystring. If I copy URL and send to my friend, he/she should see the document as I see.
* It should not reload the page on a preference change, just do it dynamically on the client.
* Use `[doc-section:Key=Value]` and `[/doc-section]` syntaxt to mark a section. It can be used inline too.
| 1.0 | Docs module conditional section feature - In a tutorial, I want to have multiple db provider options (ef & mongo) which are included in a single document. Then reader selects the provider and the document shows only the selected one.
* It should save preferences in the browser local storage and implement automatically.
* It should set preferences in the querystring. If I copy URL and send to my friend, he/she should see the document as I see.
* It should not reload the page on a preference change, just do it dynamically on the client.
* Use `[doc-section:Key=Value]` and `[/doc-section]` syntaxt to mark a section. It can be used inline too.
| priority | docs module conditional section feature in a tutorial i want to have multiple db provider options ef mongo which are included in a single document then reader selects the provider and the document shows only the selected one it should save preferences in the browser local storage and implement automatically it should set preferences in the querystring if i copy url and send to my friend he she should see the document as i see it should not reload the page on a preference change just do it dynamically on the client use and syntaxt to mark a section it can be used inline too | 1 |
251,836 | 8,028,348,645 | IssuesEvent | 2018-07-27 12:35:50 | TuranicTeam/Altay | https://api.github.com/repos/TuranicTeam/Altay | closed | Report gegen Amboss | Category: Core Priority: High Status: Work in Progress | Guten Tag
Liebes TuranicTeam/Altay-Team
Man kann wenn man im Amboss ist und ein Item rein macht man das Item unbenannt hat und man es mit rechtsklick das raus nehmen möchte Dupliziert sich das Item! Bitte Beheben danke :D
Mit freundlichen grüßen DerGamerHD100
| 1.0 | Report gegen Amboss - Guten Tag
Liebes TuranicTeam/Altay-Team
Man kann wenn man im Amboss ist und ein Item rein macht man das Item unbenannt hat und man es mit rechtsklick das raus nehmen möchte Dupliziert sich das Item! Bitte Beheben danke :D
Mit freundlichen grüßen DerGamerHD100
| priority | report gegen amboss guten tag liebes turanicteam altay team man kann wenn man im amboss ist und ein item rein macht man das item unbenannt hat und man es mit rechtsklick das raus nehmen möchte dupliziert sich das item bitte beheben danke d mit freundlichen grüßen | 1 |
16,296 | 2,613,358,214 | IssuesEvent | 2015-02-27 20:26:12 | ozone-development/meridian | https://api.github.com/repos/ozone-development/meridian | closed | Add dynamic template to mock | 4 - Pending Release Enhancement HIGH Priority | Add dynamic templates to mock to allow for more control over fields.
<!---
@huboard:{"order":0.546875,"milestone_order":551,"custom_state":""}
-->
| 1.0 | Add dynamic template to mock - Add dynamic templates to mock to allow for more control over fields.
<!---
@huboard:{"order":0.546875,"milestone_order":551,"custom_state":""}
-->
| priority | add dynamic template to mock add dynamic templates to mock to allow for more control over fields huboard order milestone order custom state | 1 |
525,732 | 15,263,837,315 | IssuesEvent | 2021-02-22 03:50:32 | Stoklomolvi/Spearhead-Public | https://api.github.com/repos/Stoklomolvi/Spearhead-Public | closed | Panzer IV Ausf. H variant not having 500 HP | bug high priority | **Game Version:** Spearhead version 1.0.5
**Summary of Bug:** Axis Panzer 4 H variant only have 480 HP
**Steps to Reproduce:**
1) Start a match with Cheatcommands
2) Place down a panzer 4 from Werhmacht
3) Place down another panzer 4 from OKW
4) Open health display table for both of them
**Expected Outcome:** H variant with 500 Hp while J variant with 480 Hp
**Actual Outcome:** Both variant have 480 Hp displayed by Health table
---
**Additional Information:** I couldn't check whether is there some sort of "hidden" 20 more health as no manual health deduction result in killed unit. And also, armour values might be bugged like this too. For note, health display table do not update if you do a health increasing upgrade.
**Attachments:** None
**Reporter:** SzabóImi#2171 | 1.0 | Panzer IV Ausf. H variant not having 500 HP - **Game Version:** Spearhead version 1.0.5
**Summary of Bug:** Axis Panzer 4 H variant only have 480 HP
**Steps to Reproduce:**
1) Start a match with Cheatcommands
2) Place down a panzer 4 from Werhmacht
3) Place down another panzer 4 from OKW
4) Open health display table for both of them
**Expected Outcome:** H variant with 500 Hp while J variant with 480 Hp
**Actual Outcome:** Both variant have 480 Hp displayed by Health table
---
**Additional Information:** I couldn't check whether is there some sort of "hidden" 20 more health as no manual health deduction result in killed unit. And also, armour values might be bugged like this too. For note, health display table do not update if you do a health increasing upgrade.
**Attachments:** None
**Reporter:** SzabóImi#2171 | priority | panzer iv ausf h variant not having hp game version spearhead version summary of bug axis panzer h variant only have hp steps to reproduce start a match with cheatcommands place down a panzer from werhmacht place down another panzer from okw open health display table for both of them expected outcome h variant with hp while j variant with hp actual outcome both variant have hp displayed by health table additional information i couldn t check whether is there some sort of hidden more health as no manual health deduction result in killed unit and also armour values might be bugged like this too for note health display table do not update if you do a health increasing upgrade attachments none reporter szabóimi | 1 |
593,215 | 17,950,259,706 | IssuesEvent | 2021-09-12 15:37:59 | J-Marvin/CSSWENG-AY2021T3-S11-G3 | https://api.github.com/repos/J-Marvin/CSSWENG-AY2021T3-S11-G3 | closed | After editing bride's/groom's mother, the save changes button for the bride's/groom's father is disabled | bug High priority | **Reporter:** Tan, Vanessa Marie C.
**Report date:** 09/12/2021
**Description**
The save changes button for editing the bride's or groom's father becomes disabled after editing the bride's or groom's mother.
**Steps to reproduce**
1. Go to a wedding record
2. Edit wedding record
3. Edit bride's or groom's mother
4. Edit bride's or groom's father
**Expected Results**
Can still edit the bride's or groom's father.
**Actual Results**
Cannot still edit the bride's or groom's father.
**Screenshot**

| 1.0 | After editing bride's/groom's mother, the save changes button for the bride's/groom's father is disabled - **Reporter:** Tan, Vanessa Marie C.
**Report date:** 09/12/2021
**Description**
The save changes button for editing the bride's or groom's father becomes disabled after editing the bride's or groom's mother.
**Steps to reproduce**
1. Go to a wedding record
2. Edit wedding record
3. Edit bride's or groom's mother
4. Edit bride's or groom's father
**Expected Results**
Can still edit the bride's or groom's father.
**Actual Results**
Cannot still edit the bride's or groom's father.
**Screenshot**

| priority | after editing bride s groom s mother the save changes button for the bride s groom s father is disabled reporter tan vanessa marie c report date description the save changes button for editing the bride s or groom s father becomes disabled after editing the bride s or groom s mother steps to reproduce go to a wedding record edit wedding record edit bride s or groom s mother edit bride s or groom s father expected results can still edit the bride s or groom s father actual results cannot still edit the bride s or groom s father screenshot | 1 |
316,726 | 9,654,111,407 | IssuesEvent | 2019-05-19 11:23:37 | flow-project/flow | https://api.github.com/repos/flow-project/flow | closed | Add OSX builds to .travis.yml | feature request high priority | We need to test that things pass on OSX as well.
Look at ray's travis.yml for an example of how to do so. | 1.0 | Add OSX builds to .travis.yml - We need to test that things pass on OSX as well.
Look at ray's travis.yml for an example of how to do so. | priority | add osx builds to travis yml we need to test that things pass on osx as well look at ray s travis yml for an example of how to do so | 1 |
344,295 | 10,342,558,062 | IssuesEvent | 2019-09-04 06:48:30 | dotherightthing/generator-wpdtrt-plugin-boilerplate | https://api.github.com/repos/dotherightthing/generator-wpdtrt-plugin-boilerplate | closed | PHP Fatal error: Uncaught Doctrine\Common\Annotations\AnnotationException | bug high priority phpDocumentor travis | ```
[10:32:13] ========================================
[10:32:13] 5c - Documentation:
[10:32:13] => Generate: PHP
[10:32:13] ----------------------------------------
[10:32:13]
PHP Fatal error: Uncaught Doctrine\Common\Annotations\AnnotationException: [Semantical Error] The annotation "@JMS\Serializer\Annotation\Type" in property phpDocumentor\Configuration::$title does not exist, or could not be auto-loaded. in /home/travis/build/dotherightthing/generator-wpdtrt-plugin-boilerplate/wpdtrt-travistest/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php:54
...
```
| 1.0 | PHP Fatal error: Uncaught Doctrine\Common\Annotations\AnnotationException - ```
[10:32:13] ========================================
[10:32:13] 5c - Documentation:
[10:32:13] => Generate: PHP
[10:32:13] ----------------------------------------
[10:32:13]
PHP Fatal error: Uncaught Doctrine\Common\Annotations\AnnotationException: [Semantical Error] The annotation "@JMS\Serializer\Annotation\Type" in property phpDocumentor\Configuration::$title does not exist, or could not be auto-loaded. in /home/travis/build/dotherightthing/generator-wpdtrt-plugin-boilerplate/wpdtrt-travistest/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php:54
...
```
| priority | php fatal error uncaught doctrine common annotations annotationexception documentation generate php php fatal error uncaught doctrine common annotations annotationexception the annotation jms serializer annotation type in property phpdocumentor configuration title does not exist or could not be auto loaded in home travis build dotherightthing generator wpdtrt plugin boilerplate wpdtrt travistest vendor doctrine annotations lib doctrine common annotations annotationexception php | 1 |
196,559 | 6,935,124,158 | IssuesEvent | 2017-12-03 03:59:36 | prettier/prettier | https://api.github.com/repos/prettier/prettier | closed | Typescript: decorator + readonly + comment leads to un-compilable code | area:comments lang:flow lang:typescript priority:high status:has pr type:bug | <!-- BUGGY OR UGLY? Please use this template.
Tip! Don't write this stuff manually.
1. Go to https://prettier.io/playground
2. Paste your code and set options
3. Press the "Report issue" button in the lower right
-->
**Prettier 1.8.2**
```sh
# Options (if any):
```
**Input:**
```ts
class Something {
@Annotateme()
//TODO will it break
readonly property: Array<string>
}
```
**Output:**
```ts
class Something {
@Annotateme()
readonly //TODO will it break
property: Array<string>;
}
```
**Expected behavior:**
Unchanged code. Current version leads to code that Typescript 2.4.1 refuses to compile. | 1.0 | Typescript: decorator + readonly + comment leads to un-compilable code - <!-- BUGGY OR UGLY? Please use this template.
Tip! Don't write this stuff manually.
1. Go to https://prettier.io/playground
2. Paste your code and set options
3. Press the "Report issue" button in the lower right
-->
**Prettier 1.8.2**
```sh
# Options (if any):
```
**Input:**
```ts
class Something {
@Annotateme()
//TODO will it break
readonly property: Array<string>
}
```
**Output:**
```ts
class Something {
@Annotateme()
readonly //TODO will it break
property: Array<string>;
}
```
**Expected behavior:**
Unchanged code. Current version leads to code that Typescript 2.4.1 refuses to compile. | priority | typescript decorator readonly comment leads to un compilable code buggy or ugly please use this template tip don t write this stuff manually go to paste your code and set options press the report issue button in the lower right prettier sh options if any input ts class something annotateme todo will it break readonly property array output ts class something annotateme readonly todo will it break property array expected behavior unchanged code current version leads to code that typescript refuses to compile | 1 |
548,903 | 16,081,177,477 | IssuesEvent | 2021-04-26 05:00:04 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | While using infinity scroll user wants to show related posts after the last post. | NEXT UPDATE [Priority: HIGH] enhancement | When we use infinity scroll with the related post option then related posts show after every post. The user wants to show related posts after the last post.
Ref: https://secure.helpscout.net/conversation/1229920605/142982?folderId=3257665 | 1.0 | While using infinity scroll user wants to show related posts after the last post. - When we use infinity scroll with the related post option then related posts show after every post. The user wants to show related posts after the last post.
Ref: https://secure.helpscout.net/conversation/1229920605/142982?folderId=3257665 | priority | while using infinity scroll user wants to show related posts after the last post when we use infinity scroll with the related post option then related posts show after every post the user wants to show related posts after the last post ref | 1 |
161,853 | 6,137,355,608 | IssuesEvent | 2017-06-26 12:05:14 | AnSyn/ansyn | https://api.github.com/repos/AnSyn/ansyn | closed | Launch application in context - As a <User> I want to <save application state in the url>, so that <I can launch the application in any state that I want> | HighPriority User Story | **_Set a meeting with @idanbarak and define the parameters for the url_**
- [x] define with @idanbarak all the parameters for application will be launching.
_**write here all the conclusions as a comment**_
- [x] Save app state in the url (routing ) according to @idanbarak 's definitions. #261
- [x] Launch the application according the url parameters #276
- [x] Button that generate the url (from case state). @idanbarak #275
- [x] Unitest and doc. #276 | 1.0 | Launch application in context - As a <User> I want to <save application state in the url>, so that <I can launch the application in any state that I want> - **_Set a meeting with @idanbarak and define the parameters for the url_**
- [x] define with @idanbarak all the parameters for application will be launching.
_**write here all the conclusions as a comment**_
- [x] Save app state in the url (routing ) according to @idanbarak 's definitions. #261
- [x] Launch the application according the url parameters #276
- [x] Button that generate the url (from case state). @idanbarak #275
- [x] Unitest and doc. #276 | priority | launch application in context as a i want to so that set a meeting with idanbarak and define the parameters for the url define with idanbarak all the parameters for application will be launching write here all the conclusions as a comment save app state in the url routing according to idanbarak s definitions launch the application according the url parameters button that generate the url from case state idanbarak unitest and doc | 1 |
409,793 | 11,967,878,511 | IssuesEvent | 2020-04-06 07:37:33 | Longwelwind/swords-and-ravens | https://api.github.com/repos/Longwelwind/swords-and-ravens | opened | Game logs of a Preemptive Raid's Wildling attack does not exclude the highest bidder | priority:high type:bug | From a mechanic perspective, everything works ok. It's just that the game logs still shows the excluded house in bidding, in effects, ...
Example: https://swordsandravens.net/play/2cc4def9-793a-4a81-8221-f726dd4e6ae8 | 1.0 | Game logs of a Preemptive Raid's Wildling attack does not exclude the highest bidder - From a mechanic perspective, everything works ok. It's just that the game logs still shows the excluded house in bidding, in effects, ...
Example: https://swordsandravens.net/play/2cc4def9-793a-4a81-8221-f726dd4e6ae8 | priority | game logs of a preemptive raid s wildling attack does not exclude the highest bidder from a mechanic perspective everything works ok it s just that the game logs still shows the excluded house in bidding in effects example | 1 |
821,155 | 30,807,881,206 | IssuesEvent | 2023-08-01 08:27:09 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | opened | [YSQL][pg_locks] Getting error while querying pg_locks when transactions have lock and that particular tablet is split manually | kind/bug area/ysql priority/high QA status/awaiting-triage | ### Description
Steps to repro:
1. Create universe on version 2.19.1.0-b397 with read committed, wait queues and deadlock detection enabled (pg_locks is enabled by default)
2. create table tb(k int primary key, v int);
3. insert into tb values(1,1), (2,2), (3,3);
4. S1: begin; select; select * from tb where k=1 for update;
5. S2: select * from pg_locks; --get the tablet id from the result
6. Flush table and split the tablet id received from step 5
7. List tablets and validate that the tablet id from step 5 doesn't exist anymore.
8. S2: select * from pg_locks;
Either the output still has the old tablet-id or after 2-3 attempts of querying pg_locks, following error is thrown:
```
ERROR: Error refining accumulated LockStatus responses.: Expected to see transaction's 4acf15aa-6415-4e42-bab0-62d9fa035a75 involved tablet 9bed9db189dd4653abc9ec32c8f4e655 in PgGetLockStatusResponsePB
```
We see this error and are unable to query pg_locks until all the existing transactions are aborted.
### Warning: Please confirm that this issue does not contain any sensitive information
- [X] I confirm this issue does not contain any sensitive information. | 1.0 | [YSQL][pg_locks] Getting error while querying pg_locks when transactions have lock and that particular tablet is split manually - ### Description
Steps to repro:
1. Create universe on version 2.19.1.0-b397 with read committed, wait queues and deadlock detection enabled (pg_locks is enabled by default)
2. create table tb(k int primary key, v int);
3. insert into tb values(1,1), (2,2), (3,3);
4. S1: begin; select; select * from tb where k=1 for update;
5. S2: select * from pg_locks; --get the tablet id from the result
6. Flush table and split the tablet id received from step 5
7. List tablets and validate that the tablet id from step 5 doesn't exist anymore.
8. S2: select * from pg_locks;
Either the output still has the old tablet-id or after 2-3 attempts of querying pg_locks, following error is thrown:
```
ERROR: Error refining accumulated LockStatus responses.: Expected to see transaction's 4acf15aa-6415-4e42-bab0-62d9fa035a75 involved tablet 9bed9db189dd4653abc9ec32c8f4e655 in PgGetLockStatusResponsePB
```
We see this error and are unable to query pg_locks until all the existing transactions are aborted.
### Warning: Please confirm that this issue does not contain any sensitive information
- [X] I confirm this issue does not contain any sensitive information. | priority | getting error while querying pg locks when transactions have lock and that particular tablet is split manually description steps to repro create universe on version with read committed wait queues and deadlock detection enabled pg locks is enabled by default create table tb k int primary key v int insert into tb values begin select select from tb where k for update select from pg locks get the tablet id from the result flush table and split the tablet id received from step list tablets and validate that the tablet id from step doesn t exist anymore select from pg locks either the output still has the old tablet id or after attempts of querying pg locks following error is thrown error error refining accumulated lockstatus responses expected to see transaction s involved tablet in pggetlockstatusresponsepb we see this error and are unable to query pg locks until all the existing transactions are aborted warning please confirm that this issue does not contain any sensitive information i confirm this issue does not contain any sensitive information | 1 |
31,979 | 2,742,311,988 | IssuesEvent | 2015-04-21 15:51:58 | paceuniversity/cs3892015team6 | https://api.github.com/repos/paceuniversity/cs3892015team6 | closed | User Story 6 | Difficulty High Functional Low Priority Product Backlog User Story | As a returning player, my difficulty level should be auto-selected based on my previous selection, but I still need to click Play to start the game In order to streamline the User Experience. | 1.0 | User Story 6 - As a returning player, my difficulty level should be auto-selected based on my previous selection, but I still need to click Play to start the game In order to streamline the User Experience. | priority | user story as a returning player my difficulty level should be auto selected based on my previous selection but i still need to click play to start the game in order to streamline the user experience | 1 |
612,115 | 18,991,233,847 | IssuesEvent | 2021-11-22 07:35:33 | wso2/product-microgateway | https://api.github.com/repos/wso2/product-microgateway | opened | Cannot disable oauth2 security | Type/Bug Priority/High | ### Description:
<!-- Describe the issue -->
### Steps to reproduce:
1. create and publish api using apim
2. generate a valid jwt token for the api.
3. go to run time config and disable oauth2 and only enable apikey.
4. invoke api with the jwt token.
5. the api invocation should fail.
### Affected Product Version:
<!-- Members can use Affected/*** labels -->
### Environment details (with versions):
- OS:
- Client:
- Env (Docker/K8s):
---
### Optional Fields
#### Related Issues:
<!-- Any related issues from this/other repositories-->
#### Suggested Labels:
<!--Only to be used by non-members-->
#### Suggested Assignees:
<!--Only to be used by non-members-->
| 1.0 | Cannot disable oauth2 security - ### Description:
<!-- Describe the issue -->
### Steps to reproduce:
1. create and publish api using apim
2. generate a valid jwt token for the api.
3. go to run time config and disable oauth2 and only enable apikey.
4. invoke api with the jwt token.
5. the api invocation should fail.
### Affected Product Version:
<!-- Members can use Affected/*** labels -->
### Environment details (with versions):
- OS:
- Client:
- Env (Docker/K8s):
---
### Optional Fields
#### Related Issues:
<!-- Any related issues from this/other repositories-->
#### Suggested Labels:
<!--Only to be used by non-members-->
#### Suggested Assignees:
<!--Only to be used by non-members-->
| priority | cannot disable security description steps to reproduce create and publish api using apim generate a valid jwt token for the api go to run time config and disable and only enable apikey invoke api with the jwt token the api invocation should fail affected product version environment details with versions os client env docker optional fields related issues suggested labels suggested assignees | 1 |
509,964 | 14,766,490,484 | IssuesEvent | 2021-01-10 00:30:48 | petgraph/petgraph | https://api.github.com/repos/petgraph/petgraph | closed | Migrate from Travis CI to GitHub Actions | help wanted high-priority | Currently petgraph uses Travis CI which will stop (if not already stopped) to run for the open source. Switching to GitHub Actions will give more flexibility. | 1.0 | Migrate from Travis CI to GitHub Actions - Currently petgraph uses Travis CI which will stop (if not already stopped) to run for the open source. Switching to GitHub Actions will give more flexibility. | priority | migrate from travis ci to github actions currently petgraph uses travis ci which will stop if not already stopped to run for the open source switching to github actions will give more flexibility | 1 |
712,117 | 24,485,122,607 | IssuesEvent | 2022-10-09 10:26:01 | joomlahenk/fabrik | https://api.github.com/repos/joomlahenk/fabrik | closed | 'Default error' @ List copy plugin | High Priority | List copy plugin is working, but when setting Default on Copy for element to yes we get 'default error': 1366 Incorrect decimal value: '' for column ... at row 1 | 1.0 | 'Default error' @ List copy plugin - List copy plugin is working, but when setting Default on Copy for element to yes we get 'default error': 1366 Incorrect decimal value: '' for column ... at row 1 | priority | default error list copy plugin list copy plugin is working but when setting default on copy for element to yes we get default error incorrect decimal value for column at row | 1 |
663,520 | 22,195,759,613 | IssuesEvent | 2022-06-07 06:42:43 | SAP/xsk | https://api.github.com/repos/SAP/xsk | closed | [OData] null handling in filter | priority-high effort-medium customer shadow _Torino_ | Example of filters
Apps?$filter=DomainId%20ne%20null
Apps?$filter=DomainId%20eq%20null
do not result in the correct SQL - "IS NOT NULL" & "IS NULL" | 1.0 | [OData] null handling in filter - Example of filters
Apps?$filter=DomainId%20ne%20null
Apps?$filter=DomainId%20eq%20null
do not result in the correct SQL - "IS NOT NULL" & "IS NULL" | priority | null handling in filter example of filters apps filter domainid apps filter domainid do not result in the correct sql is not null is null | 1 |
172,205 | 6,500,188,990 | IssuesEvent | 2017-08-23 02:24:52 | ballerinalang/composer | https://api.github.com/repos/ballerinalang/composer | closed | [Debugger] There is no option to stop re-try connecting to the debugger | Bug Debugger Priority:High Severity:Minor | Release 0.92
**Steps**
1. Connect to a remote url that is not running in remote debugging. Then you get the retry option
**Issue**
Switch between run and debug. You will still have the retry option and cannot get rid of it until you refresh the browser

| 1.0 | [Debugger] There is no option to stop re-try connecting to the debugger - Release 0.92
**Steps**
1. Connect to a remote url that is not running in remote debugging. Then you get the retry option
**Issue**
Switch between run and debug. You will still have the retry option and cannot get rid of it until you refresh the browser

| priority | there is no option to stop re try connecting to the debugger release steps connect to a remote url that is not running in remote debugging then you get the retry option issue switch between run and debug you will still have the retry option and cannot get rid of it until you refresh the browser | 1 |
451,947 | 13,044,031,360 | IssuesEvent | 2020-07-29 03:22:57 | kubesphere/kubesphere | https://api.github.com/repos/kubesphere/kubesphere | closed | creator is not in members of devops project | area/devops kind/bug kind/need-to-verify priority/high | **Describe the Bug**
The members of devops do not contain the creator

**Versions Used**
KubeSphere(2020-07-24)
/kind bug
/area devops
/milestone 3.0.0
/priority high
| 1.0 | creator is not in members of devops project - **Describe the Bug**
The members of devops do not contain the creator

**Versions Used**
KubeSphere(2020-07-24)
/kind bug
/area devops
/milestone 3.0.0
/priority high
| priority | creator is not in members of devops project describe the bug the members of devops do not contain the creator versions used kubesphere kind bug area devops milestone priority high | 1 |
260,463 | 8,210,184,602 | IssuesEvent | 2018-09-04 09:54:45 | openbankingspace/tpp-issues | https://api.github.com/repos/openbankingspace/tpp-issues | opened | Ozone: Modelo returning "N/A" payloads for Balances. | aspsp:reference env:sandbox issue:bug priority:high type:aisp | # Ozone: Modelo returning "N/A" payloads for Balances.
As of yesterday, Modelo is returning erroneous responses in Balance payloads:
```js
"Balance":{
"Amount":{
"Amount":"NaN",
"Currency":"GBP"
}
}
```
as far as we can tell this impacts the `/balance` and `/transactions` endpoints for V1, and is limited to Balance amount objects.
Referenco does not appear to be impacted. | 1.0 | Ozone: Modelo returning "N/A" payloads for Balances. - # Ozone: Modelo returning "N/A" payloads for Balances.
As of yesterday, Modelo is returning erroneous responses in Balance payloads:
```js
"Balance":{
"Amount":{
"Amount":"NaN",
"Currency":"GBP"
}
}
```
as far as we can tell this impacts the `/balance` and `/transactions` endpoints for V1, and is limited to Balance amount objects.
Referenco does not appear to be impacted. | priority | ozone modelo returning n a payloads for balances ozone modelo returning n a payloads for balances as of yesterday modelo is returning erroneous responses in balance payloads js balance amount amount nan currency gbp as far as we can tell this impacts the balance and transactions endpoints for and is limited to balance amount objects referenco does not appear to be impacted | 1 |
607,197 | 18,774,460,975 | IssuesEvent | 2021-11-07 12:28:40 | AY2122S1-CS2103T-W11-2/tp | https://api.github.com/repos/AY2122S1-CS2103T-W11-2/tp | closed | `viewShift` command take in a date that represents a week instead, display the period looking at. | type.Bug priority.High severity.High | Take in one date and check that it is the same as the slot?
eg.
d/monday-1 da/2021-11-05 is wrong as its not a monday
st case still have to check the date | 1.0 | `viewShift` command take in a date that represents a week instead, display the period looking at. - Take in one date and check that it is the same as the slot?
eg.
d/monday-1 da/2021-11-05 is wrong as its not a monday
st case still have to check the date | priority | viewshift command take in a date that represents a week instead display the period looking at take in one date and check that it is the same as the slot eg d monday da is wrong as its not a monday st case still have to check the date | 1 |
680,079 | 23,256,785,059 | IssuesEvent | 2022-08-04 09:57:39 | vaticle/typedb | https://api.github.com/repos/vaticle/typedb | closed | Matching for a relation playing a role in itself throws internal errors | type: bug priority: high | ## Description
Matching for a relation playing a role in itself throws internal errors. Two different internal errors have been observed depending upon the exact circumstances, and we have added a test for each.
This was highlighted by https://github.com/vaticle/typedb/issues/6359, which already required minor fixes in reasoner in https://github.com/vaticle/typedb/pull/6366.
## Environment
1. OS (where TypeDB server runs): Mac OS 10
2. TypeDB version (and platform): TypeDB as of this PR: https://github.com/vaticle/typedb/pull/6366
3. TypeDB client: console
## Reproducible Steps
Steps to create the smallest reproducible scenario:
- Use the scenarios introduced [here](https://github.com/vaticle/typedb-behaviour/pull/202) (currently ignored)
## Expected Output
Both should correctly find one answer via match.
## Actual Output
Test: `A relation can play a role in itself`
Output:
```
com.vaticle.typedb.core.common.exception.TypeDBException: [INT03] Invalid Internal State: Illegal internal operation! This method should not have been called.
com.vaticle.typedb.core.common.exception.TypeDBException:
at com.vaticle.typedb.core.common.exception.TypeDBException.of(TypeDBException.java:51)
at com.vaticle.typedb.core.concurrent.producer.ProducerIterator.hasNext(ProducerIterator.java:100)
at com.vaticle.typedb.core.common.iterator.ErrorHandledIterator.hasNext(ErrorHandledIterator.java:38)
at java.base/java.util.Iterator.forEachRemaining(Iterator.java:132)
at com.vaticle.typedb.core.common.iterator.AbstractFunctionalIterator.toList(AbstractFunctionalIterator.java:136)
at com.vaticle.typedb.core.test.behaviour.typeql.TypeQLSteps.typeql_match(TypeQLSteps.java:153)
at ✽.get answers of typeql match(file:///private/var/tmp/_bazel_jamesfletcher/91bfc2886b4509aa35a584e846a96d83/execroot/vaticle_typedb/bazel-out/darwin-fastbuild/bin/test/behaviour/debug/test.runfiles/vaticle_typedb/test/behaviour/debug/debug.feature:76)
Caused by:
at com.vaticle.typedb.core.common.exception.TypeDBException.of(TypeDBException.java:55)
at com.vaticle.typedb.core.traversal.procedure.ProcedureEdge$Native$Thing$RolePlayer.isClosure(ProcedureEdge.java:998)
at com.vaticle.typedb.core.traversal.procedure.VertexProcedure.lambda$iterator$1(VertexProcedure.java:106)
at com.vaticle.typedb.core.common.iterator.FilteredIterator.fetchAndCheck(FilteredIterator.java:41)
at com.vaticle.typedb.core.common.iterator.FilteredIterator.hasNext(FilteredIterator.java:37)
at com.vaticle.typedb.core.common.iterator.MappedIterator.hasNext(MappedIterator.java:35)
at com.vaticle.typedb.core.common.iterator.DistinctIterator.fetchAndCheck(DistinctIterator.java:48)
at com.vaticle.typedb.core.common.iterator.DistinctIterator.hasNext(DistinctIterator.java:44)
at com.vaticle.typedb.core.common.iterator.MappedIterator.hasNext(MappedIterator.java:35)
at com.vaticle.typedb.core.concurrent.producer.BaseProducer.lambda$produce$0(BaseProducer.java:64)
at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:783)
at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630)
at java.base/java.lang.Thread.run(Thread.java:831)
```
Test: `A relation can play a role in itself and have additional roleplayers`
Output:
```
java.lang.AssertionError
at com.vaticle.typedb.core.traversal.planner.PlannerVertex.setHasIncomingEdgesInitial(PlannerVertex.java:203)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner$Initialiser.lambda$execute$3(GraphPlanner.java:456)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner$Initialiser.execute(GraphPlanner.java:454)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.setInitialValues(GraphPlanner.java:324)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.updateObjective(GraphPlanner.java:270)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.optimise(GraphPlanner.java:351)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.mayOptimise(GraphPlanner.java:335)
at com.vaticle.typedb.core.traversal.planner.Planner.tryOptimise(Planner.java:34)
at com.vaticle.typedb.core.traversal.Traversal.producer(Traversal.java:131)
at com.vaticle.typedb.core.traversal.TraversalEngine.producer(TraversalEngine.java:56)
at com.vaticle.typedb.core.traversal.TraversalEngine.producer(TraversalEngine.java:50)
at com.vaticle.typedb.core.reasoner.Reasoner.producer(Reasoner.java:159)
at com.vaticle.typedb.core.reasoner.Reasoner.lambda$executeTraversal$6(Reasoner.java:151)
at com.vaticle.typedb.core.common.iterator.MappedIterator.next(MappedIterator.java:40)
at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133)
at com.vaticle.typedb.core.common.iterator.AbstractFunctionalIterator.toList(AbstractFunctionalIterator.java:136)
at com.vaticle.typedb.core.reasoner.Reasoner.executeTraversal(Reasoner.java:151)
at com.vaticle.typedb.core.reasoner.Reasoner.execute(Reasoner.java:119)
at com.vaticle.typedb.core.query.Matcher.execute(Matcher.java:125)
at com.vaticle.typedb.core.query.Matcher.execute(Matcher.java:121)
at com.vaticle.typedb.core.query.QueryManager.match(QueryManager.java:72)
at com.vaticle.typedb.core.query.QueryManager.match(QueryManager.java:67)
at com.vaticle.typedb.core.test.behaviour.typeql.TypeQLSteps.typeql_match(TypeQLSteps.java:153)
at ✽.get answers of typeql match(file:///private/var/tmp/_bazel_jamesfletcher/91bfc2886b4509aa35a584e846a96d83/execroot/vaticle_typedb/bazel-out/darwin-fastbuild/bin/test/behaviour/debug/test.runfiles/vaticle_typedb/test/behaviour/debug/debug.feature:107)
```
| 1.0 | Matching for a relation playing a role in itself throws internal errors - ## Description
Matching for a relation playing a role in itself throws internal errors. Two different internal errors have been observed depending upon the exact circumstances, and we have added a test for each.
This was highlighted by https://github.com/vaticle/typedb/issues/6359, which already required minor fixes in reasoner in https://github.com/vaticle/typedb/pull/6366.
## Environment
1. OS (where TypeDB server runs): Mac OS 10
2. TypeDB version (and platform): TypeDB as of this PR: https://github.com/vaticle/typedb/pull/6366
3. TypeDB client: console
## Reproducible Steps
Steps to create the smallest reproducible scenario:
- Use the scenarios introduced [here](https://github.com/vaticle/typedb-behaviour/pull/202) (currently ignored)
## Expected Output
Both should correctly find one answer via match.
## Actual Output
Test: `A relation can play a role in itself`
Output:
```
com.vaticle.typedb.core.common.exception.TypeDBException: [INT03] Invalid Internal State: Illegal internal operation! This method should not have been called.
com.vaticle.typedb.core.common.exception.TypeDBException:
at com.vaticle.typedb.core.common.exception.TypeDBException.of(TypeDBException.java:51)
at com.vaticle.typedb.core.concurrent.producer.ProducerIterator.hasNext(ProducerIterator.java:100)
at com.vaticle.typedb.core.common.iterator.ErrorHandledIterator.hasNext(ErrorHandledIterator.java:38)
at java.base/java.util.Iterator.forEachRemaining(Iterator.java:132)
at com.vaticle.typedb.core.common.iterator.AbstractFunctionalIterator.toList(AbstractFunctionalIterator.java:136)
at com.vaticle.typedb.core.test.behaviour.typeql.TypeQLSteps.typeql_match(TypeQLSteps.java:153)
at ✽.get answers of typeql match(file:///private/var/tmp/_bazel_jamesfletcher/91bfc2886b4509aa35a584e846a96d83/execroot/vaticle_typedb/bazel-out/darwin-fastbuild/bin/test/behaviour/debug/test.runfiles/vaticle_typedb/test/behaviour/debug/debug.feature:76)
Caused by:
at com.vaticle.typedb.core.common.exception.TypeDBException.of(TypeDBException.java:55)
at com.vaticle.typedb.core.traversal.procedure.ProcedureEdge$Native$Thing$RolePlayer.isClosure(ProcedureEdge.java:998)
at com.vaticle.typedb.core.traversal.procedure.VertexProcedure.lambda$iterator$1(VertexProcedure.java:106)
at com.vaticle.typedb.core.common.iterator.FilteredIterator.fetchAndCheck(FilteredIterator.java:41)
at com.vaticle.typedb.core.common.iterator.FilteredIterator.hasNext(FilteredIterator.java:37)
at com.vaticle.typedb.core.common.iterator.MappedIterator.hasNext(MappedIterator.java:35)
at com.vaticle.typedb.core.common.iterator.DistinctIterator.fetchAndCheck(DistinctIterator.java:48)
at com.vaticle.typedb.core.common.iterator.DistinctIterator.hasNext(DistinctIterator.java:44)
at com.vaticle.typedb.core.common.iterator.MappedIterator.hasNext(MappedIterator.java:35)
at com.vaticle.typedb.core.concurrent.producer.BaseProducer.lambda$produce$0(BaseProducer.java:64)
at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:783)
at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630)
at java.base/java.lang.Thread.run(Thread.java:831)
```
Test: `A relation can play a role in itself and have additional roleplayers`
Output:
```
java.lang.AssertionError
at com.vaticle.typedb.core.traversal.planner.PlannerVertex.setHasIncomingEdgesInitial(PlannerVertex.java:203)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner$Initialiser.lambda$execute$3(GraphPlanner.java:456)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner$Initialiser.execute(GraphPlanner.java:454)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.setInitialValues(GraphPlanner.java:324)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.updateObjective(GraphPlanner.java:270)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.optimise(GraphPlanner.java:351)
at com.vaticle.typedb.core.traversal.planner.GraphPlanner.mayOptimise(GraphPlanner.java:335)
at com.vaticle.typedb.core.traversal.planner.Planner.tryOptimise(Planner.java:34)
at com.vaticle.typedb.core.traversal.Traversal.producer(Traversal.java:131)
at com.vaticle.typedb.core.traversal.TraversalEngine.producer(TraversalEngine.java:56)
at com.vaticle.typedb.core.traversal.TraversalEngine.producer(TraversalEngine.java:50)
at com.vaticle.typedb.core.reasoner.Reasoner.producer(Reasoner.java:159)
at com.vaticle.typedb.core.reasoner.Reasoner.lambda$executeTraversal$6(Reasoner.java:151)
at com.vaticle.typedb.core.common.iterator.MappedIterator.next(MappedIterator.java:40)
at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133)
at com.vaticle.typedb.core.common.iterator.AbstractFunctionalIterator.toList(AbstractFunctionalIterator.java:136)
at com.vaticle.typedb.core.reasoner.Reasoner.executeTraversal(Reasoner.java:151)
at com.vaticle.typedb.core.reasoner.Reasoner.execute(Reasoner.java:119)
at com.vaticle.typedb.core.query.Matcher.execute(Matcher.java:125)
at com.vaticle.typedb.core.query.Matcher.execute(Matcher.java:121)
at com.vaticle.typedb.core.query.QueryManager.match(QueryManager.java:72)
at com.vaticle.typedb.core.query.QueryManager.match(QueryManager.java:67)
at com.vaticle.typedb.core.test.behaviour.typeql.TypeQLSteps.typeql_match(TypeQLSteps.java:153)
at ✽.get answers of typeql match(file:///private/var/tmp/_bazel_jamesfletcher/91bfc2886b4509aa35a584e846a96d83/execroot/vaticle_typedb/bazel-out/darwin-fastbuild/bin/test/behaviour/debug/test.runfiles/vaticle_typedb/test/behaviour/debug/debug.feature:107)
```
| priority | matching for a relation playing a role in itself throws internal errors description matching for a relation playing a role in itself throws internal errors two different internal errors have been observed depending upon the exact circumstances and we have added a test for each this was highlighted by which already required minor fixes in reasoner in environment os where typedb server runs mac os typedb version and platform typedb as of this pr typedb client console reproducible steps steps to create the smallest reproducible scenario use the scenarios introduced currently ignored expected output both should correctly find one answer via match actual output test a relation can play a role in itself output com vaticle typedb core common exception typedbexception invalid internal state illegal internal operation this method should not have been called com vaticle typedb core common exception typedbexception at com vaticle typedb core common exception typedbexception of typedbexception java at com vaticle typedb core concurrent producer produceriterator hasnext produceriterator java at com vaticle typedb core common iterator errorhandlediterator hasnext errorhandlediterator java at java base java util iterator foreachremaining iterator java at com vaticle typedb core common iterator abstractfunctionaliterator tolist abstractfunctionaliterator java at com vaticle typedb core test behaviour typeql typeqlsteps typeql match typeqlsteps java at ✽ get answers of typeql match file private var tmp bazel jamesfletcher execroot vaticle typedb bazel out darwin fastbuild bin test behaviour debug test runfiles vaticle typedb test behaviour debug debug feature caused by at com vaticle typedb core common exception typedbexception of typedbexception java at com vaticle typedb core traversal procedure procedureedge native thing roleplayer isclosure procedureedge java at com vaticle typedb core traversal procedure vertexprocedure lambda iterator vertexprocedure java at com vaticle typedb core common iterator filterediterator fetchandcheck filterediterator java at com vaticle typedb core common iterator filterediterator hasnext filterediterator java at com vaticle typedb core common iterator mappediterator hasnext mappediterator java at com vaticle typedb core common iterator distinctiterator fetchandcheck distinctiterator java at com vaticle typedb core common iterator distinctiterator hasnext distinctiterator java at com vaticle typedb core common iterator mappediterator hasnext mappediterator java at com vaticle typedb core concurrent producer baseproducer lambda produce baseproducer java at java base java util concurrent completablefuture unirun tryfire completablefuture java at java base java util concurrent completablefuture completion run completablefuture java at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java base java lang thread run thread java test a relation can play a role in itself and have additional roleplayers output java lang assertionerror at com vaticle typedb core traversal planner plannervertex sethasincomingedgesinitial plannervertex java at com vaticle typedb core traversal planner graphplanner initialiser lambda execute graphplanner java at java base java util arraylist foreach arraylist java at com vaticle typedb core traversal planner graphplanner initialiser execute graphplanner java at com vaticle typedb core traversal planner graphplanner setinitialvalues graphplanner java at com vaticle typedb core traversal planner graphplanner updateobjective graphplanner java at com vaticle typedb core traversal planner graphplanner optimise graphplanner java at com vaticle typedb core traversal planner graphplanner mayoptimise graphplanner java at com vaticle typedb core traversal planner planner tryoptimise planner java at com vaticle typedb core traversal traversal producer traversal java at com vaticle typedb core traversal traversalengine producer traversalengine java at com vaticle typedb core traversal traversalengine producer traversalengine java at com vaticle typedb core reasoner reasoner producer reasoner java at com vaticle typedb core reasoner reasoner lambda executetraversal reasoner java at com vaticle typedb core common iterator mappediterator next mappediterator java at java base java util iterator foreachremaining iterator java at com vaticle typedb core common iterator abstractfunctionaliterator tolist abstractfunctionaliterator java at com vaticle typedb core reasoner reasoner executetraversal reasoner java at com vaticle typedb core reasoner reasoner execute reasoner java at com vaticle typedb core query matcher execute matcher java at com vaticle typedb core query matcher execute matcher java at com vaticle typedb core query querymanager match querymanager java at com vaticle typedb core query querymanager match querymanager java at com vaticle typedb core test behaviour typeql typeqlsteps typeql match typeqlsteps java at ✽ get answers of typeql match file private var tmp bazel jamesfletcher execroot vaticle typedb bazel out darwin fastbuild bin test behaviour debug test runfiles vaticle typedb test behaviour debug debug feature | 1 |
603,914 | 18,673,962,636 | IssuesEvent | 2021-10-31 08:13:29 | AY2122S1-CS2103T-T13-3/tp | https://api.github.com/repos/AY2122S1-CS2103T-T13-3/tp | closed | [PE-D] Mismatch of UG and actual app (delete function) | priority.High severity.High | 

No delete function available in the app but there is a delete function in the UG.
<!--session: 1635494576617-131aa3b0-1a74-4469-85af-f6fbe97ffd02-->
<!--Version: Web v3.4.1-->
-------------
Labels: `severity.High` `type.DocumentationBug`
original: Linxcathyyy/ped#5 | 1.0 | [PE-D] Mismatch of UG and actual app (delete function) - 

No delete function available in the app but there is a delete function in the UG.
<!--session: 1635494576617-131aa3b0-1a74-4469-85af-f6fbe97ffd02-->
<!--Version: Web v3.4.1-->
-------------
Labels: `severity.High` `type.DocumentationBug`
original: Linxcathyyy/ped#5 | priority | mismatch of ug and actual app delete function no delete function available in the app but there is a delete function in the ug labels severity high type documentationbug original linxcathyyy ped | 1 |
240,124 | 7,800,412,083 | IssuesEvent | 2018-06-09 09:06:27 | tine20/Tine-2.0-Open-Source-Groupware-and-CRM | https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM | closed | 0009282:
merge transifex | Mantis Translations high priority | **Reported by pschuele on 20 Nov 2013 11:32**
**Version:** Collin (2013.10.1)
merge transifex
- push new strings first?
- pull new translations
- HR de.po needs to be uploaded separatly (Alex)
| 1.0 | 0009282:
merge transifex - **Reported by pschuele on 20 Nov 2013 11:32**
**Version:** Collin (2013.10.1)
merge transifex
- push new strings first?
- pull new translations
- HR de.po needs to be uploaded separatly (Alex)
| priority | merge transifex reported by pschuele on nov version collin merge transifex push new strings first pull new translations hr de po needs to be uploaded separatly alex | 1 |
332,116 | 10,084,438,346 | IssuesEvent | 2019-07-25 15:40:18 | canonical-web-and-design/maas.io | https://api.github.com/repos/canonical-web-and-design/maas.io | opened | Linking from old docs to an index on the new docs 404s | Priority: High | ## Summary
Linking from old docs to an index on the new docs 404s
## Process
- Go to https://old-docs.maas.io/2.2/en/
- Change the version to 2.6
- See it 404 as the URL is index
| 1.0 | Linking from old docs to an index on the new docs 404s - ## Summary
Linking from old docs to an index on the new docs 404s
## Process
- Go to https://old-docs.maas.io/2.2/en/
- Change the version to 2.6
- See it 404 as the URL is index
| priority | linking from old docs to an index on the new docs summary linking from old docs to an index on the new docs process go to change the version to see it as the url is index | 1 |
234,899 | 7,727,773,533 | IssuesEvent | 2018-05-25 04:54:34 | test4gloirin/m | https://api.github.com/repos/test4gloirin/m | closed | 0008046:
Rename personal folder to personal folder of another user | Filemanager bug high priority | **Reported by sstamer on 14 Mar 2013 11:14**
**Version:** Kristina (2013.03.1)
-see 0008044: could not create a personal folder with the name of a folder of another user
-BUT you can rename a personal folder to the name of personal folder of another user
-> you get a recursion!
-> you can no longer delete the folder
**Steps to reproduce:** - create personal folder "foldername" with USER1
- create personal folder "foldernametest" with USER2
- rename personal folder "foldernametest" to "foldername"
-> bam!
**Additional information:** [trace] => [{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":303,"function":"_searchContainerByName","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":202,"function":"_getContainer","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":178,"function":"_parsePath","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Record\/Abstract.php","line":238,"function":"setFromArray","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":112,"function":"__construct","class":"Tinebase_Record_Abstract","type":"->"},{"file":"...\/Filemanager\/Controller\/Node.php","line":1158,"function":"createFromPath","class":"Tinebase_Model_Tree_Node_Path","type":"::"},{"file":"...\/Filemanager\/Controller\/Node.php","line":1140,"function":"_deleteNode","class":"Filemanager_Controller_Node","type":"->"},{"file":"...\/Filemanager\/Frontend\/Json.php","line":137,"function":"deleteNodes","class":"Filemanager_Controller_Node","type":"->"},{"function":"deleteNodes","class":"Filemanager_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":231,"function":"handle","class":"Zend_Json_Server","type":"->"},{"file":"...\/Tinebase\/Server\/Json.php","line":101,"function":"_handle","class":"Tinebase_Server_Json","type":"->"},{"file":"...\/Tinebase\/Core.php","line":230,"function":"handle","class":"Tinebase_Server_Json","type":"->"},{"file":"...\/index.php","line":17,"function":"dispatchRequest","class":"Tinebase_Core","type":"::"}]
[traceHTML] => .../Tinebase/Model/Tree/Node/Path.php(303): Tinebase_Model_Tree_Node_Path->_searchContainerByName()
.../Tinebase/Model/Tree/Node/Path.php(202): Tinebase_Model_Tree_Node_Path->_getContainer()
.../Tinebase/Model/Tree/Node/Path.php(178): Tinebase_Model_Tree_Node_Path->_parsePath()
.../Tinebase/Record/Abstract.php(238): Tinebase_Model_Tree_Node_Path->setFromArray()
.../Tinebase/Model/Tree/Node/Path.php(112): Tinebase_Record_Abstract->__construct()
.../Filemanager/Controller/Node.php(1158): Tinebase_Model_Tree_Node_Path::createFromPath()
.../Filemanager/Controller/Node.php(1140): Filemanager_Controller_Node->_deleteNode()
.../Filemanager/Frontend/Json.php(137): Filemanager_Controller_Node->deleteNodes()
[internal function]: Filemanager_Frontend_Json->deleteNodes()
.../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(231): Zend_Json_Server->handle()
.../Tinebase/Server/Json.php(101): Tinebase_Server_Json->_handle()
.../Tinebase/Core.php(230): Tinebase_Server_Json->handle()
.../index.php(17): Tinebase_Core::dispatchRequest()
[msg] => Duplicate container found: Scanner
| 1.0 | 0008046:
Rename personal folder to personal folder of another user - **Reported by sstamer on 14 Mar 2013 11:14**
**Version:** Kristina (2013.03.1)
-see 0008044: could not create a personal folder with the name of a folder of another user
-BUT you can rename a personal folder to the name of personal folder of another user
-> you get a recursion!
-> you can no longer delete the folder
**Steps to reproduce:** - create personal folder "foldername" with USER1
- create personal folder "foldernametest" with USER2
- rename personal folder "foldernametest" to "foldername"
-> bam!
**Additional information:** [trace] => [{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":303,"function":"_searchContainerByName","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":202,"function":"_getContainer","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":178,"function":"_parsePath","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Record\/Abstract.php","line":238,"function":"setFromArray","class":"Tinebase_Model_Tree_Node_Path","type":"->"},{"file":"...\/Tinebase\/Model\/Tree\/Node\/Path.php","line":112,"function":"__construct","class":"Tinebase_Record_Abstract","type":"->"},{"file":"...\/Filemanager\/Controller\/Node.php","line":1158,"function":"createFromPath","class":"Tinebase_Model_Tree_Node_Path","type":"::"},{"file":"...\/Filemanager\/Controller\/Node.php","line":1140,"function":"_deleteNode","class":"Filemanager_Controller_Node","type":"->"},{"file":"...\/Filemanager\/Frontend\/Json.php","line":137,"function":"deleteNodes","class":"Filemanager_Controller_Node","type":"->"},{"function":"deleteNodes","class":"Filemanager_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":231,"function":"handle","class":"Zend_Json_Server","type":"->"},{"file":"...\/Tinebase\/Server\/Json.php","line":101,"function":"_handle","class":"Tinebase_Server_Json","type":"->"},{"file":"...\/Tinebase\/Core.php","line":230,"function":"handle","class":"Tinebase_Server_Json","type":"->"},{"file":"...\/index.php","line":17,"function":"dispatchRequest","class":"Tinebase_Core","type":"::"}]
[traceHTML] => .../Tinebase/Model/Tree/Node/Path.php(303): Tinebase_Model_Tree_Node_Path->_searchContainerByName()
.../Tinebase/Model/Tree/Node/Path.php(202): Tinebase_Model_Tree_Node_Path->_getContainer()
.../Tinebase/Model/Tree/Node/Path.php(178): Tinebase_Model_Tree_Node_Path->_parsePath()
.../Tinebase/Record/Abstract.php(238): Tinebase_Model_Tree_Node_Path->setFromArray()
.../Tinebase/Model/Tree/Node/Path.php(112): Tinebase_Record_Abstract->__construct()
.../Filemanager/Controller/Node.php(1158): Tinebase_Model_Tree_Node_Path::createFromPath()
.../Filemanager/Controller/Node.php(1140): Filemanager_Controller_Node->_deleteNode()
.../Filemanager/Frontend/Json.php(137): Filemanager_Controller_Node->deleteNodes()
[internal function]: Filemanager_Frontend_Json->deleteNodes()
.../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(231): Zend_Json_Server->handle()
.../Tinebase/Server/Json.php(101): Tinebase_Server_Json->_handle()
.../Tinebase/Core.php(230): Tinebase_Server_Json->handle()
.../index.php(17): Tinebase_Core::dispatchRequest()
[msg] => Duplicate container found: Scanner
| priority | rename personal folder to personal folder of another user reported by sstamer on mar version kristina see could not create a personal folder with the name of a folder of another user but you can rename a personal folder to the name of personal folder of another user gt you get a recursion gt you can no longer delete the folder steps to reproduce create personal folder quot foldername quot with create personal folder quot foldernametest quot with rename personal folder quot foldernametest quot to quot foldername quot gt bam additional information gt gt tinebase model tree node path php tinebase model tree node path gt searchcontainerbyname tinebase model tree node path php tinebase model tree node path gt getcontainer tinebase model tree node path php tinebase model tree node path gt parsepath tinebase record abstract php tinebase model tree node path gt setfromarray tinebase model tree node path php tinebase record abstract gt construct filemanager controller node php tinebase model tree node path createfrompath filemanager controller node php filemanager controller node gt deletenode filemanager frontend json php filemanager controller node gt deletenodes filemanager frontend json gt deletenodes 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 gt duplicate container found scanner | 1 |
360,876 | 10,698,388,570 | IssuesEvent | 2019-10-23 18:34:54 | FarmBot/Farmbot-Web-App | https://api.github.com/repos/FarmBot/Farmbot-Web-App | closed | Groups | feature high priority in progress | Ability to define Groups of plants with criteria and/or manual selection, and then being able to use the Groups in Sequences/Variables.
Mockup shows some various design ideas and possible criteria, as well as suggested changes to the select plants mode to accommodate creating groups via box selection.
[Groups Mockup.pdf](https://github.com/FarmBot/Farmbot-Web-App/files/3424860/Groups.pdf)
### Bare minimum implementation (as seen in the two right-most mockups in the PDF)
- [x] Groups endpoint
- [x] Groups panel (list all groups, `+` button)
- [x] Edit group panel (group name, group members, delete button, save button)
- [x] Ability to manually edit plants in group (click to add/remove) when edit group panel is opened
- [x] Add `CREATE GROUP` button to box-select panel
- [x] Search filter
- [x] Ability to edit and save group name
- [x] "GROUP NAME" and "GROUP MEMBERS (2)" should be classed `label` instead of `h5`
- [x] Add `padding: 0.5em 0em` to the div that is holding all the group member plant icons
- [x] Update groups list padding: What is currently classed as `plant-search-item-age`, change padding-top to `0.6rem` and probably change the class name to something like `group-item-count` so as to not mess up styling on the plants list.
- [x] Add empty-state graphic for when the user has no groups. [Graphic](https://user-images.githubusercontent.com/5524043/64480191-352e0580-d178-11e9-90e5-aff925032639.png)
- [x] Remove `every_*` options in favor of a future criteria-based-auto-group
- [x] Add **SORT BY** dropdown to the edit group panel (in between the group name and group members sections) with options: `X/Y Ascending`, `X/Y Descending`, `Y/X Ascending`, `Y/X Descending`, `Random`. Add a tooltip next to the **SORT BY** label with the following help text: "When executing a sequence over a Group of locations, FarmBot will travel to each group member in the order of the chosen sort method. If the random option is chosen, FarmBot will travel in a random order every time, so the ordering shown below will only be representative."
- [x] Add dependency tracking for groups that are in-use by a sequence, regimen, or event
- [x] Update colors:
- [x] `float: left` the `DELETE GROUP` button, and give it `margin-top: 1em`
- [x] Panel nav background to `#026365` (slight typo currently)
- [x] Panel background to `#f0f8f8`
- [x] Group list item background hover to `#d7eaea`
- [x] `+` button background to `#026365`
- [x] `+` button background hover color to `#025758`
- [x] `+` button bottom border to `#013738` | 1.0 | Groups - Ability to define Groups of plants with criteria and/or manual selection, and then being able to use the Groups in Sequences/Variables.
Mockup shows some various design ideas and possible criteria, as well as suggested changes to the select plants mode to accommodate creating groups via box selection.
[Groups Mockup.pdf](https://github.com/FarmBot/Farmbot-Web-App/files/3424860/Groups.pdf)
### Bare minimum implementation (as seen in the two right-most mockups in the PDF)
- [x] Groups endpoint
- [x] Groups panel (list all groups, `+` button)
- [x] Edit group panel (group name, group members, delete button, save button)
- [x] Ability to manually edit plants in group (click to add/remove) when edit group panel is opened
- [x] Add `CREATE GROUP` button to box-select panel
- [x] Search filter
- [x] Ability to edit and save group name
- [x] "GROUP NAME" and "GROUP MEMBERS (2)" should be classed `label` instead of `h5`
- [x] Add `padding: 0.5em 0em` to the div that is holding all the group member plant icons
- [x] Update groups list padding: What is currently classed as `plant-search-item-age`, change padding-top to `0.6rem` and probably change the class name to something like `group-item-count` so as to not mess up styling on the plants list.
- [x] Add empty-state graphic for when the user has no groups. [Graphic](https://user-images.githubusercontent.com/5524043/64480191-352e0580-d178-11e9-90e5-aff925032639.png)
- [x] Remove `every_*` options in favor of a future criteria-based-auto-group
- [x] Add **SORT BY** dropdown to the edit group panel (in between the group name and group members sections) with options: `X/Y Ascending`, `X/Y Descending`, `Y/X Ascending`, `Y/X Descending`, `Random`. Add a tooltip next to the **SORT BY** label with the following help text: "When executing a sequence over a Group of locations, FarmBot will travel to each group member in the order of the chosen sort method. If the random option is chosen, FarmBot will travel in a random order every time, so the ordering shown below will only be representative."
- [x] Add dependency tracking for groups that are in-use by a sequence, regimen, or event
- [x] Update colors:
- [x] `float: left` the `DELETE GROUP` button, and give it `margin-top: 1em`
- [x] Panel nav background to `#026365` (slight typo currently)
- [x] Panel background to `#f0f8f8`
- [x] Group list item background hover to `#d7eaea`
- [x] `+` button background to `#026365`
- [x] `+` button background hover color to `#025758`
- [x] `+` button bottom border to `#013738` | priority | groups ability to define groups of plants with criteria and or manual selection and then being able to use the groups in sequences variables mockup shows some various design ideas and possible criteria as well as suggested changes to the select plants mode to accommodate creating groups via box selection bare minimum implementation as seen in the two right most mockups in the pdf groups endpoint groups panel list all groups button edit group panel group name group members delete button save button ability to manually edit plants in group click to add remove when edit group panel is opened add create group button to box select panel search filter ability to edit and save group name group name and group members should be classed label instead of add padding to the div that is holding all the group member plant icons update groups list padding what is currently classed as plant search item age change padding top to and probably change the class name to something like group item count so as to not mess up styling on the plants list add empty state graphic for when the user has no groups remove every options in favor of a future criteria based auto group add sort by dropdown to the edit group panel in between the group name and group members sections with options x y ascending x y descending y x ascending y x descending random add a tooltip next to the sort by label with the following help text when executing a sequence over a group of locations farmbot will travel to each group member in the order of the chosen sort method if the random option is chosen farmbot will travel in a random order every time so the ordering shown below will only be representative add dependency tracking for groups that are in use by a sequence regimen or event update colors float left the delete group button and give it margin top panel nav background to slight typo currently panel background to group list item background hover to button background to button background hover color to button bottom border to | 1 |
551,533 | 16,175,464,399 | IssuesEvent | 2021-05-03 05:44:29 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | closed | Module.documents() returns an empty Iterator | Area/ProjectAPI Priority/High Team/DevTools Type/Bug | **Description:**
Below is a sample code
```java
BuildProject project = BuildProject.load(projectPath);
// Doesn't work
for (Module module : project.currentPackage().modules()) {
for (Document document : module.documents()) { // <--- Returns an empty iterator
System.out.println(document.syntaxTree());
}
}
// Works
for (Module module : project.currentPackage().modules()) {
for (DocumentId documentId : module.documentIds()) { // <--- Correctly returns all documents
System.out.println(module.document(documentId).syntaxTree());
}
}
```
**Affected Versions:**
slp7 | 1.0 | Module.documents() returns an empty Iterator - **Description:**
Below is a sample code
```java
BuildProject project = BuildProject.load(projectPath);
// Doesn't work
for (Module module : project.currentPackage().modules()) {
for (Document document : module.documents()) { // <--- Returns an empty iterator
System.out.println(document.syntaxTree());
}
}
// Works
for (Module module : project.currentPackage().modules()) {
for (DocumentId documentId : module.documentIds()) { // <--- Correctly returns all documents
System.out.println(module.document(documentId).syntaxTree());
}
}
```
**Affected Versions:**
slp7 | priority | module documents returns an empty iterator description below is a sample code java buildproject project buildproject load projectpath doesn t work for module module project currentpackage modules for document document module documents returns an empty iterator system out println document syntaxtree works for module module project currentpackage modules for documentid documentid module documentids correctly returns all documents system out println module document documentid syntaxtree affected versions | 1 |
178,640 | 6,613,114,205 | IssuesEvent | 2017-09-20 08:00:06 | YetiForceCompany/YetiForceCRM | https://api.github.com/repos/YetiForceCompany/YetiForceCRM | closed | Case-sensitive Login Username | Category::Bug Subcategory::HighPriority | <!--- Before you create a new issue, please check out our [manual] (https://yetiforce.com/en/github/issues/126-issues.html) --->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug. Descriptions can be provided in English or Polish (remember to add [PL] for Polish in the title). -->
The username-check is case sensitive and I don't want it to be. When I enter a username with different capital letters, then I will fail to login. Error also occurs in GitDeveloper Yetiforce (https://gitdeveloper.yetiforce.com).
The user should still be able to login even if there are differences in uppercase.
#### Actual Behavior
<!--- Describe the result -->
When I try to login with username "Demo", I get error "Invalid username or password". But this is just a capital letter error, which should be "demo".

After enter login:

#### Expected Behavior
<!--- Describe what you would want the result to be -->
The user should still be logged in successfully, no matter with the difference in capitalization. User can still login with username "Demo" or "demo".
#### How to trigger the error
<!--- If possible, please make a video using [ScreenToGif] (https://screentogif.codeplex.com/) or any other program used for recording actions from your desktop. -->
1. Error occurs when I login with a user name that has a different capitalization. Username is actually "demo", try login with username "Demo".
2.
3.
#### Your Environment
<!---Describe the environment -->
* YetiForce Version used: YetiForce 3.4.0
* Browser name and version: Google Chrome Version 59.0.3071
* Environment name and version:
* Operating System and version: Windows 7
<!--- Please check on your issue from time to time, in case we have questions or need some extra information. --->
| 1.0 | Case-sensitive Login Username - <!--- Before you create a new issue, please check out our [manual] (https://yetiforce.com/en/github/issues/126-issues.html) --->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug. Descriptions can be provided in English or Polish (remember to add [PL] for Polish in the title). -->
The username-check is case sensitive and I don't want it to be. When I enter a username with different capital letters, then I will fail to login. Error also occurs in GitDeveloper Yetiforce (https://gitdeveloper.yetiforce.com).
The user should still be able to login even if there are differences in uppercase.
#### Actual Behavior
<!--- Describe the result -->
When I try to login with username "Demo", I get error "Invalid username or password". But this is just a capital letter error, which should be "demo".

After enter login:

#### Expected Behavior
<!--- Describe what you would want the result to be -->
The user should still be logged in successfully, no matter with the difference in capitalization. User can still login with username "Demo" or "demo".
#### How to trigger the error
<!--- If possible, please make a video using [ScreenToGif] (https://screentogif.codeplex.com/) or any other program used for recording actions from your desktop. -->
1. Error occurs when I login with a user name that has a different capitalization. Username is actually "demo", try login with username "Demo".
2.
3.
#### Your Environment
<!---Describe the environment -->
* YetiForce Version used: YetiForce 3.4.0
* Browser name and version: Google Chrome Version 59.0.3071
* Environment name and version:
* Operating System and version: Windows 7
<!--- Please check on your issue from time to time, in case we have questions or need some extra information. --->
| priority | case sensitive login username issue the username check is case sensitive and i don t want it to be when i enter a username with different capital letters then i will fail to login error also occurs in gitdeveloper yetiforce the user should still be able to login even if there are differences in uppercase actual behavior when i try to login with username demo i get error invalid username or password but this is just a capital letter error which should be demo after enter login expected behavior the user should still be logged in successfully no matter with the difference in capitalization user can still login with username demo or demo how to trigger the error error occurs when i login with a user name that has a different capitalization username is actually demo try login with username demo your environment yetiforce version used yetiforce browser name and version google chrome version environment name and version operating system and version windows | 1 |
438,494 | 12,639,616,298 | IssuesEvent | 2020-06-16 00:24:50 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | Update docs for CalcPointsGeometricJacobianExpressedInWorld() | component: multibody plant priority: high team: dynamics type: bug | [CalcPointsGeometricJacobianExpressedInWorld()](https://github.com/RobotLocomotion/drake/blob/master/multibody/multibody_tree/multibody_tree.h#L1736) assumes that the input frame is a body frame. This is a bug.
Action items:
- Fix code to remove this assumption.
- Implement unit tests.
- Update docs to clearly reflect this, as done in #9597 for bias terms.
| 1.0 | Update docs for CalcPointsGeometricJacobianExpressedInWorld() - [CalcPointsGeometricJacobianExpressedInWorld()](https://github.com/RobotLocomotion/drake/blob/master/multibody/multibody_tree/multibody_tree.h#L1736) assumes that the input frame is a body frame. This is a bug.
Action items:
- Fix code to remove this assumption.
- Implement unit tests.
- Update docs to clearly reflect this, as done in #9597 for bias terms.
| priority | update docs for calcpointsgeometricjacobianexpressedinworld assumes that the input frame is a body frame this is a bug action items fix code to remove this assumption implement unit tests update docs to clearly reflect this as done in for bias terms | 1 |
103,118 | 4,164,719,156 | IssuesEvent | 2016-06-19 00:48:56 | chocolatey/choco | https://api.github.com/repos/chocolatey/choco | closed | When performing an Install/Uninstall/Upgrade operation through the API, an error is throw for "chocolatey.resources" | 3 - Done Bug Priority_HIGH | ### What You Are Seeing?
An error when running Install/Uninstall/Upgrade through the API.
### What is Expected?
No error.
### How Did You Get This To Happen? (Steps to Reproduce)
Pull the latest Chocolatey.Lib and do `Lets.GetChocolatey().Set(config => { config.CommandName = "install"; config.PackageNames = <any package id>; }).Run();`
### Output Log
~~~sh
2016-06-17 19:13:04.713 -05:00 [Debug] Attempting to delete file "C:\ProgramData\chocolatey\config\chocolatey.config.update".
2016-06-17 19:13:09.254 -05:00 [Debug] Found 'C:\ProgramData\chocolatey\lib\SourceTree\tools\chocolateyInstall.ps1'
with checksum 'D90A5D2EF15E99EB289080AA81748BC8'
2016-06-17 19:13:09.568 -05:00 [Error] SourceTree not upgraded. An error occurred during installation:
Could not find file 'chocolatey.resources'.
2016-06-17 19:13:09.577 -05:00 [Debug] Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\SourceTree.1.9.1.1\.sxs".
2016-06-17 19:13:09.577 -05:00 [Debug] Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\SourceTree.1.9.1.1\.pin".
2016-06-17 19:13:09.580 -05:00 [Debug] Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\SourceTree".
2016-06-17 19:13:09.582 -05:00 [Debug] Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers...
2016-06-17 19:13:09.582 -05:00 [Error] The upgrade of sourcetree was NOT successful.
2016-06-17 19:13:09.583 -05:00 [Error] SourceTree not upgraded. An error occurred during installation:
Could not find file 'chocolatey.resources'.
2016-06-17 19:13:09.584 -05:00 [Debug] Moving 'C:\ProgramData\chocolatey\lib\SourceTree'
to 'C:\ProgramData\chocolatey\lib-bad\SourceTree'
2016-06-17 19:13:11.586 -05:00 [Debug] Attempting rollback
2016-06-17 19:13:11.586 -05:00 [Debug] Moving 'C:\ProgramData\chocolatey\lib-bkp\SourceTree'
to 'C:\ProgramData\chocolatey\lib\SourceTree'
2016-06-17 19:13:13.595 -05:00 [Warning]
Chocolatey upgraded 0/1 packages. 1 packages failed.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2016-06-17 19:13:13.595 -05:00 [Information]
2016-06-17 19:13:13.595 -05:00 [Error] Failures
2016-06-17 19:13:13.596 -05:00 [Error] - sourcetree - SourceTree not upgraded. An error occurred during installation:
Could not find file 'chocolatey.resources'.
2016-06-17 19:13:13.596 -05:00 [Warning]
Check out Pro / Business for more features! https://chocolatey.org/compare
2016-06-17 19:13:13.596 -05:00 [Debug] Sending message 'PostRunMessage' out if there are subscribers...
~~~
| 1.0 | When performing an Install/Uninstall/Upgrade operation through the API, an error is throw for "chocolatey.resources" - ### What You Are Seeing?
An error when running Install/Uninstall/Upgrade through the API.
### What is Expected?
No error.
### How Did You Get This To Happen? (Steps to Reproduce)
Pull the latest Chocolatey.Lib and do `Lets.GetChocolatey().Set(config => { config.CommandName = "install"; config.PackageNames = <any package id>; }).Run();`
### Output Log
~~~sh
2016-06-17 19:13:04.713 -05:00 [Debug] Attempting to delete file "C:\ProgramData\chocolatey\config\chocolatey.config.update".
2016-06-17 19:13:09.254 -05:00 [Debug] Found 'C:\ProgramData\chocolatey\lib\SourceTree\tools\chocolateyInstall.ps1'
with checksum 'D90A5D2EF15E99EB289080AA81748BC8'
2016-06-17 19:13:09.568 -05:00 [Error] SourceTree not upgraded. An error occurred during installation:
Could not find file 'chocolatey.resources'.
2016-06-17 19:13:09.577 -05:00 [Debug] Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\SourceTree.1.9.1.1\.sxs".
2016-06-17 19:13:09.577 -05:00 [Debug] Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\SourceTree.1.9.1.1\.pin".
2016-06-17 19:13:09.580 -05:00 [Debug] Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\SourceTree".
2016-06-17 19:13:09.582 -05:00 [Debug] Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers...
2016-06-17 19:13:09.582 -05:00 [Error] The upgrade of sourcetree was NOT successful.
2016-06-17 19:13:09.583 -05:00 [Error] SourceTree not upgraded. An error occurred during installation:
Could not find file 'chocolatey.resources'.
2016-06-17 19:13:09.584 -05:00 [Debug] Moving 'C:\ProgramData\chocolatey\lib\SourceTree'
to 'C:\ProgramData\chocolatey\lib-bad\SourceTree'
2016-06-17 19:13:11.586 -05:00 [Debug] Attempting rollback
2016-06-17 19:13:11.586 -05:00 [Debug] Moving 'C:\ProgramData\chocolatey\lib-bkp\SourceTree'
to 'C:\ProgramData\chocolatey\lib\SourceTree'
2016-06-17 19:13:13.595 -05:00 [Warning]
Chocolatey upgraded 0/1 packages. 1 packages failed.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2016-06-17 19:13:13.595 -05:00 [Information]
2016-06-17 19:13:13.595 -05:00 [Error] Failures
2016-06-17 19:13:13.596 -05:00 [Error] - sourcetree - SourceTree not upgraded. An error occurred during installation:
Could not find file 'chocolatey.resources'.
2016-06-17 19:13:13.596 -05:00 [Warning]
Check out Pro / Business for more features! https://chocolatey.org/compare
2016-06-17 19:13:13.596 -05:00 [Debug] Sending message 'PostRunMessage' out if there are subscribers...
~~~
| priority | when performing an install uninstall upgrade operation through the api an error is throw for chocolatey resources what you are seeing an error when running install uninstall upgrade through the api what is expected no error how did you get this to happen steps to reproduce pull the latest chocolatey lib and do lets getchocolatey set config config commandname install config packagenames run output log sh attempting to delete file c programdata chocolatey config chocolatey config update found c programdata chocolatey lib sourcetree tools chocolateyinstall with checksum sourcetree not upgraded an error occurred during installation could not find file chocolatey resources attempting to delete file c programdata chocolatey chocolatey sourcetree sxs attempting to delete file c programdata chocolatey chocolatey sourcetree pin attempting to delete directory c programdata chocolatey lib bad sourcetree sending message handlepackageresultcompletedmessage out if there are subscribers the upgrade of sourcetree was not successful sourcetree not upgraded an error occurred during installation could not find file chocolatey resources moving c programdata chocolatey lib sourcetree to c programdata chocolatey lib bad sourcetree attempting rollback moving c programdata chocolatey lib bkp sourcetree to c programdata chocolatey lib sourcetree chocolatey upgraded packages packages failed see the log for details c programdata chocolatey logs chocolatey log failures sourcetree sourcetree not upgraded an error occurred during installation could not find file chocolatey resources check out pro business for more features sending message postrunmessage out if there are subscribers | 1 |
451,830 | 13,042,149,759 | IssuesEvent | 2020-07-28 21:49:27 | eternagame/EternaJS | https://api.github.com/repos/eternagame/EternaJS | closed | Right base shifting is broken | category: regression priority: high status: pending release type: bug | Instead of shifting the entire region down, it rotates the bases within the region
Reported by whbob | 1.0 | Right base shifting is broken - Instead of shifting the entire region down, it rotates the bases within the region
Reported by whbob | priority | right base shifting is broken instead of shifting the entire region down it rotates the bases within the region reported by whbob | 1 |
404,430 | 11,857,350,373 | IssuesEvent | 2020-03-25 09:25:22 | canonical-web-and-design/vanilla-framework | https://api.github.com/repos/canonical-web-and-design/vanilla-framework | closed | Grid does not work in IE 11 | Priority: High WG: Validated | Browser support page claims Vanilla is actively tested in IE 11.
This doesn't seem to be true.
Recently introduced CSS grid is not supported by IE and does not work properly.
In most basic case grid elements are just rendered one under another (which could be considered graceful degradation):
<img width="1032" alt="Screenshot 2019-12-03 at 15 21 49" src="https://user-images.githubusercontent.com/83575/70059653-74d28500-15e1-11ea-9bca-cf90ba0fa06c.png">
But there are cases (like snapcraft.io), where Vanilla grid breaks completely making content of the page unreadable:
<img width="1032" alt="Screenshot 2019-12-03 at 15 27 24" src="https://user-images.githubusercontent.com/83575/70059676-7b60fc80-15e1-11ea-9d72-659b738707f5.png">
**Expected behavior**
We should make sure that all the components are tested in browsers that we claim they are.
Ideally we should make the grid work in IE 11 (by applying polyfill or fallback syntax - IE 11 seems to be supporting old CSS grid syntax, so maybe autoprefixer can be used to make it work?).
If we don't want to support IE 11 and older versions, we should stop claiming the support on the website.
**Desktop (please complete the following information):**
- OS: Windows
- Browser IE 11
| 1.0 | Grid does not work in IE 11 - Browser support page claims Vanilla is actively tested in IE 11.
This doesn't seem to be true.
Recently introduced CSS grid is not supported by IE and does not work properly.
In most basic case grid elements are just rendered one under another (which could be considered graceful degradation):
<img width="1032" alt="Screenshot 2019-12-03 at 15 21 49" src="https://user-images.githubusercontent.com/83575/70059653-74d28500-15e1-11ea-9bca-cf90ba0fa06c.png">
But there are cases (like snapcraft.io), where Vanilla grid breaks completely making content of the page unreadable:
<img width="1032" alt="Screenshot 2019-12-03 at 15 27 24" src="https://user-images.githubusercontent.com/83575/70059676-7b60fc80-15e1-11ea-9d72-659b738707f5.png">
**Expected behavior**
We should make sure that all the components are tested in browsers that we claim they are.
Ideally we should make the grid work in IE 11 (by applying polyfill or fallback syntax - IE 11 seems to be supporting old CSS grid syntax, so maybe autoprefixer can be used to make it work?).
If we don't want to support IE 11 and older versions, we should stop claiming the support on the website.
**Desktop (please complete the following information):**
- OS: Windows
- Browser IE 11
| priority | grid does not work in ie browser support page claims vanilla is actively tested in ie this doesn t seem to be true recently introduced css grid is not supported by ie and does not work properly in most basic case grid elements are just rendered one under another which could be considered graceful degradation img width alt screenshot at src but there are cases like snapcraft io where vanilla grid breaks completely making content of the page unreadable img width alt screenshot at src expected behavior we should make sure that all the components are tested in browsers that we claim they are ideally we should make the grid work in ie by applying polyfill or fallback syntax ie seems to be supporting old css grid syntax so maybe autoprefixer can be used to make it work if we don t want to support ie and older versions we should stop claiming the support on the website desktop please complete the following information os windows browser ie | 1 |
607,087 | 18,772,915,463 | IssuesEvent | 2021-11-07 06:13:57 | Project-Path-of-Exile-Wiki/wiki | https://api.github.com/repos/Project-Path-of-Exile-Wiki/wiki | closed | Parse game data for 3.15 using available tools. | enhancement help wanted tooling high priority | Currently there's a need to have a quick and dirty dump of current 3.15 data which can be used to update the wiki itself to be more accurate.
The most pressing thing is that this is done quickly - so using currently developed tools such as:
- [RePoE](https://github.com/brather1ng/RePoE)
- [PyPoE](https://github.com/OmegaK2/PyPoE)
- [PoB Community](https://github.com/PathOfBuildingCommunity/PathOfBuilding)
Zao suggested checking this too - https://github.com/poe-tool-dev/ggpk.discussion/wiki/Implementations
For the first iteration - just getting the accurate data is fine. Later this can become an effort to roll custom tooling which works with the automation flow for this repo.
| 1.0 | Parse game data for 3.15 using available tools. - Currently there's a need to have a quick and dirty dump of current 3.15 data which can be used to update the wiki itself to be more accurate.
The most pressing thing is that this is done quickly - so using currently developed tools such as:
- [RePoE](https://github.com/brather1ng/RePoE)
- [PyPoE](https://github.com/OmegaK2/PyPoE)
- [PoB Community](https://github.com/PathOfBuildingCommunity/PathOfBuilding)
Zao suggested checking this too - https://github.com/poe-tool-dev/ggpk.discussion/wiki/Implementations
For the first iteration - just getting the accurate data is fine. Later this can become an effort to roll custom tooling which works with the automation flow for this repo.
| priority | parse game data for using available tools currently there s a need to have a quick and dirty dump of current data which can be used to update the wiki itself to be more accurate the most pressing thing is that this is done quickly so using currently developed tools such as zao suggested checking this too for the first iteration just getting the accurate data is fine later this can become an effort to roll custom tooling which works with the automation flow for this repo | 1 |
346,868 | 10,421,013,455 | IssuesEvent | 2019-09-16 03:59:13 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | Cannot save IDP with only role configurations | Affected/5.4.0 Affected/5.4.0-Update1 Priority/Highest Severity/Critical Type/Docs Type/Improvement | *Environment*
```
IS 5.4.0
Ubuntu 14
Java version "1.8.0_51"
Firefox 55
DB - MySQL
```
Tried to save an IDP with IDP name and a role configuration. Refer image below for the configuration.

**Issue**
The IDP does not get saved. Please find the error thrown in the backend.
`[2017-12-22 18:07:29,284] ERROR {org.wso2.carbon.user.core.common.AbstractUserStoreManager} - Error occurred while accessing Java Security Manager Privilege Block
[2017-12-22 18:07:29,288] ERROR {org.wso2.carbon.idp.mgt.IdentityProviderManager} - Error while adding Identity provider in tenantDomain : carbon.super
org.wso2.carbon.idp.mgt.IdentityProviderManagementException: Error occurred while retrieving UserStoreManager for tenant carbon.super
at org.wso2.carbon.idp.mgt.IdentityProviderManager.addIdP(IdentityProviderManager.java:1568)
at org.wso2.carbon.idp.mgt.IdentityProviderManagementService.addIdP(IdentityProviderManagementService.java:168)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:212)
at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117)
at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:169)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:82)
at org.wso2.carbon.core.transports.local.CarbonLocalTransportSender.finalizeSendWithToAddress(CarbonLocalTransportSender.java:45)
at org.apache.axis2.transport.local.LocalTransportSender.invoke(LocalTransportSender.java:77)
at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:442)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:430)
at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)
at org.apache.axis2.client.OperationClient.execute(OperationClient.java:149)
at org.wso2.carbon.idp.mgt.stub.IdentityProviderMgtServiceStub.addIdP(IdentityProviderMgtServiceStub.java:640)
at org.wso2.carbon.idp.mgt.ui.client.IdentityProviderMgtServiceClient.addIdP(IdentityProviderMgtServiceClient.java:180)
at org.apache.jsp.idpmgt.idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp._jspService(idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp.java:139)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:439)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:395)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.ui.JspServlet.service(JspServlet.java:155)
at org.wso2.carbon.ui.TilesJspServlet.service(TilesJspServlet.java:80)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.eclipse.equinox.http.helper.ContextPathServletAdaptor.service(ContextPathServletAdaptor.java:37)
at org.eclipse.equinox.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:61)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:128)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:68)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.service(DelegationServlet.java:68)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.owasp.csrfguard.CsrfGuardFilter.doFilter(CsrfGuardFilter.java:88)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.doFilter(CharacterSetFilter.java:65)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.wso2.carbon.identity.context.rewrite.valve.TenantContextRewriteValve.invoke(TenantContextRewriteValve.java:80)
at org.wso2.carbon.identity.authz.valve.AuthorizationValve.invoke(AuthorizationValve.java:91)
at org.wso2.carbon.identity.auth.valve.AuthenticationValve.invoke(AuthenticationValve.java:60)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(CompositeValve.java:99)
at org.wso2.carbon.tomcat.ext.valves.CarbonTomcatValve$1.invoke(CarbonTomcatValve.java:47)
at org.wso2.carbon.webapp.mgt.TenantLazyLoaderValve.invoke(TenantLazyLoaderValve.java:57)
at org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(TomcatValveContainer.java:47)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.invoke(CompositeValve.java:62)
at org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValve.invoke(CarbonStuckThreadDetectionValve.java:159)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.wso2.carbon.tomcat.ext.valves.CarbonContextCreatorValve.invoke(CarbonContextCreatorValve.java:57)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1115)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1775)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1734)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.wso2.carbon.user.core.UserStoreException: Error occurred while accessing Java Security Manager Privilege Block
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.callSecure(AbstractUserStoreManager.java:178)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.isExistingRole(AbstractUserStoreManager.java:2164)
at org.wso2.carbon.idp.mgt.IdentityProviderManager.addIdP(IdentityProviderManager.java:1558)
... 79 more
Caused by: java.security.PrivilegedActionException: java.lang.reflect.InvocationTargetException
at java.security.AccessController.doPrivileged(Native Method)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.callSecure(AbstractUserStoreManager.java:163)
... 81 more
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager$2.run(AbstractUserStoreManager.java:166)
... 83 more
Caused by: java.lang.NullPointerException
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.getUserStoreInternal(AbstractUserStoreManager.java:3029)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.access$400(AbstractUserStoreManager.java:74)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager$7.run(AbstractUserStoreManager.java:3014)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager$7.run(AbstractUserStoreManager.java:3011)
at java.security.AccessController.doPrivileged(Native Method)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.getUserStore(AbstractUserStoreManager.java:3011)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.isExistingRole(AbstractUserStoreManager.java:2168)
... 88 more
[2017-12-22 18:07:29,290] ERROR {org.wso2.carbon.idp.mgt.ui.client.IdentityProviderMgtServiceClient} - Error in adding a Identity Provider for a given tenant
org.wso2.carbon.idp.mgt.stub.IdentityProviderMgtServiceIdentityProviderManagementExceptionException: IdentityProviderMgtServiceIdentityProviderManagementExceptionException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
at java.lang.Class.newInstance(Class.java:442)
at org.wso2.carbon.idp.mgt.stub.IdentityProviderMgtServiceStub.addIdP(IdentityProviderMgtServiceStub.java:654)
at org.wso2.carbon.idp.mgt.ui.client.IdentityProviderMgtServiceClient.addIdP(IdentityProviderMgtServiceClient.java:180)
at org.apache.jsp.idpmgt.idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp._jspService(idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp.java:139)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:439)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:395)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.ui.JspServlet.service(JspServlet.java:155)
at org.wso2.carbon.ui.TilesJspServlet.service(TilesJspServlet.java:80)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.eclipse.equinox.http.helper.ContextPathServletAdaptor.service(ContextPathServletAdaptor.java:37)
at org.eclipse.equinox.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:61)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:128)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:68)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.service(DelegationServlet.java:68)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.owasp.csrfguard.CsrfGuardFilter.doFilter(CsrfGuardFilter.java:88)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.doFilter(CharacterSetFilter.java:65)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.wso2.carbon.identity.context.rewrite.valve.TenantContextRewriteValve.invoke(TenantContextRewriteValve.java:80)
at org.wso2.carbon.identity.authz.valve.AuthorizationValve.invoke(AuthorizationValve.java:91)
at org.wso2.carbon.identity.auth.valve.AuthenticationValve.invoke(AuthenticationValve.java:60)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(CompositeValve.java:99)
at org.wso2.carbon.tomcat.ext.valves.CarbonTomcatValve$1.invoke(CarbonTomcatValve.java:47)
at org.wso2.carbon.webapp.mgt.TenantLazyLoaderValve.invoke(TenantLazyLoaderValve.java:57)
at org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(TomcatValveContainer.java:47)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.invoke(CompositeValve.java:62)
at org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValve.invoke(CarbonStuckThreadDetectionValve.java:159)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.wso2.carbon.tomcat.ext.valves.CarbonContextCreatorValve.invoke(CarbonContextCreatorValve.java:57)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1115)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1775)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1734)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)`
**Labels** IS 5.4.0 , Bug | 1.0 | Cannot save IDP with only role configurations - *Environment*
```
IS 5.4.0
Ubuntu 14
Java version "1.8.0_51"
Firefox 55
DB - MySQL
```
Tried to save an IDP with IDP name and a role configuration. Refer image below for the configuration.

**Issue**
The IDP does not get saved. Please find the error thrown in the backend.
`[2017-12-22 18:07:29,284] ERROR {org.wso2.carbon.user.core.common.AbstractUserStoreManager} - Error occurred while accessing Java Security Manager Privilege Block
[2017-12-22 18:07:29,288] ERROR {org.wso2.carbon.idp.mgt.IdentityProviderManager} - Error while adding Identity provider in tenantDomain : carbon.super
org.wso2.carbon.idp.mgt.IdentityProviderManagementException: Error occurred while retrieving UserStoreManager for tenant carbon.super
at org.wso2.carbon.idp.mgt.IdentityProviderManager.addIdP(IdentityProviderManager.java:1568)
at org.wso2.carbon.idp.mgt.IdentityProviderManagementService.addIdP(IdentityProviderManagementService.java:168)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:212)
at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117)
at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:169)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:82)
at org.wso2.carbon.core.transports.local.CarbonLocalTransportSender.finalizeSendWithToAddress(CarbonLocalTransportSender.java:45)
at org.apache.axis2.transport.local.LocalTransportSender.invoke(LocalTransportSender.java:77)
at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:442)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:430)
at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)
at org.apache.axis2.client.OperationClient.execute(OperationClient.java:149)
at org.wso2.carbon.idp.mgt.stub.IdentityProviderMgtServiceStub.addIdP(IdentityProviderMgtServiceStub.java:640)
at org.wso2.carbon.idp.mgt.ui.client.IdentityProviderMgtServiceClient.addIdP(IdentityProviderMgtServiceClient.java:180)
at org.apache.jsp.idpmgt.idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp._jspService(idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp.java:139)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:439)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:395)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.ui.JspServlet.service(JspServlet.java:155)
at org.wso2.carbon.ui.TilesJspServlet.service(TilesJspServlet.java:80)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.eclipse.equinox.http.helper.ContextPathServletAdaptor.service(ContextPathServletAdaptor.java:37)
at org.eclipse.equinox.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:61)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:128)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:68)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.service(DelegationServlet.java:68)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.owasp.csrfguard.CsrfGuardFilter.doFilter(CsrfGuardFilter.java:88)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.doFilter(CharacterSetFilter.java:65)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.wso2.carbon.identity.context.rewrite.valve.TenantContextRewriteValve.invoke(TenantContextRewriteValve.java:80)
at org.wso2.carbon.identity.authz.valve.AuthorizationValve.invoke(AuthorizationValve.java:91)
at org.wso2.carbon.identity.auth.valve.AuthenticationValve.invoke(AuthenticationValve.java:60)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(CompositeValve.java:99)
at org.wso2.carbon.tomcat.ext.valves.CarbonTomcatValve$1.invoke(CarbonTomcatValve.java:47)
at org.wso2.carbon.webapp.mgt.TenantLazyLoaderValve.invoke(TenantLazyLoaderValve.java:57)
at org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(TomcatValveContainer.java:47)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.invoke(CompositeValve.java:62)
at org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValve.invoke(CarbonStuckThreadDetectionValve.java:159)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.wso2.carbon.tomcat.ext.valves.CarbonContextCreatorValve.invoke(CarbonContextCreatorValve.java:57)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1115)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1775)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1734)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.wso2.carbon.user.core.UserStoreException: Error occurred while accessing Java Security Manager Privilege Block
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.callSecure(AbstractUserStoreManager.java:178)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.isExistingRole(AbstractUserStoreManager.java:2164)
at org.wso2.carbon.idp.mgt.IdentityProviderManager.addIdP(IdentityProviderManager.java:1558)
... 79 more
Caused by: java.security.PrivilegedActionException: java.lang.reflect.InvocationTargetException
at java.security.AccessController.doPrivileged(Native Method)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.callSecure(AbstractUserStoreManager.java:163)
... 81 more
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager$2.run(AbstractUserStoreManager.java:166)
... 83 more
Caused by: java.lang.NullPointerException
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.getUserStoreInternal(AbstractUserStoreManager.java:3029)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.access$400(AbstractUserStoreManager.java:74)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager$7.run(AbstractUserStoreManager.java:3014)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager$7.run(AbstractUserStoreManager.java:3011)
at java.security.AccessController.doPrivileged(Native Method)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.getUserStore(AbstractUserStoreManager.java:3011)
at org.wso2.carbon.user.core.common.AbstractUserStoreManager.isExistingRole(AbstractUserStoreManager.java:2168)
... 88 more
[2017-12-22 18:07:29,290] ERROR {org.wso2.carbon.idp.mgt.ui.client.IdentityProviderMgtServiceClient} - Error in adding a Identity Provider for a given tenant
org.wso2.carbon.idp.mgt.stub.IdentityProviderMgtServiceIdentityProviderManagementExceptionException: IdentityProviderMgtServiceIdentityProviderManagementExceptionException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
at java.lang.Class.newInstance(Class.java:442)
at org.wso2.carbon.idp.mgt.stub.IdentityProviderMgtServiceStub.addIdP(IdentityProviderMgtServiceStub.java:654)
at org.wso2.carbon.idp.mgt.ui.client.IdentityProviderMgtServiceClient.addIdP(IdentityProviderMgtServiceClient.java:180)
at org.apache.jsp.idpmgt.idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp._jspService(idp_002dmgt_002dadd_002dfinish_002dajaxprocessor_jsp.java:139)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:439)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:395)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.ui.JspServlet.service(JspServlet.java:155)
at org.wso2.carbon.ui.TilesJspServlet.service(TilesJspServlet.java:80)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.eclipse.equinox.http.helper.ContextPathServletAdaptor.service(ContextPathServletAdaptor.java:37)
at org.eclipse.equinox.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:61)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:128)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:68)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.service(DelegationServlet.java:68)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.owasp.csrfguard.CsrfGuardFilter.doFilter(CsrfGuardFilter.java:88)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.doFilter(CharacterSetFilter.java:65)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.wso2.carbon.identity.context.rewrite.valve.TenantContextRewriteValve.invoke(TenantContextRewriteValve.java:80)
at org.wso2.carbon.identity.authz.valve.AuthorizationValve.invoke(AuthorizationValve.java:91)
at org.wso2.carbon.identity.auth.valve.AuthenticationValve.invoke(AuthenticationValve.java:60)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(CompositeValve.java:99)
at org.wso2.carbon.tomcat.ext.valves.CarbonTomcatValve$1.invoke(CarbonTomcatValve.java:47)
at org.wso2.carbon.webapp.mgt.TenantLazyLoaderValve.invoke(TenantLazyLoaderValve.java:57)
at org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(TomcatValveContainer.java:47)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.invoke(CompositeValve.java:62)
at org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValve.invoke(CarbonStuckThreadDetectionValve.java:159)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.wso2.carbon.tomcat.ext.valves.CarbonContextCreatorValve.invoke(CarbonContextCreatorValve.java:57)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1115)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1775)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1734)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)`
**Labels** IS 5.4.0 , Bug | priority | cannot save idp with only role configurations environment is ubuntu java version firefox db mysql tried to save an idp with idp name and a role configuration refer image below for the configuration issue the idp does not get saved please find the error thrown in the backend error org carbon user core common abstractuserstoremanager error occurred while accessing java security manager privilege block error org carbon idp mgt identityprovidermanager error while adding identity provider in tenantdomain carbon super org carbon idp mgt identityprovidermanagementexception error occurred while retrieving userstoremanager for tenant carbon super at org carbon idp mgt identityprovidermanager addidp identityprovidermanager java at org carbon idp mgt identityprovidermanagementservice addidp identityprovidermanagementservice java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org apache rpc receivers rpcutil invokeserviceclass rpcutil java at org apache rpc receivers rpcmessagereceiver invokebusinesslogic rpcmessagereceiver java at org apache receivers abstractinoutmessagereceiver invokebusinesslogic abstractinoutmessagereceiver java at org apache receivers abstractmessagereceiver receive abstractmessagereceiver java at org apache engine axisengine receive axisengine java at org apache transport local localtransportreceiver processmessage localtransportreceiver java at org apache transport local localtransportreceiver processmessage localtransportreceiver java at org carbon core transports local carbonlocaltransportsender finalizesendwithtoaddress carbonlocaltransportsender java at org apache transport local localtransportsender invoke localtransportsender java at org apache engine axisengine send axisengine java at org apache description outinaxisoperationclient send outinaxisoperation java at org apache description outinaxisoperationclient executeimpl outinaxisoperation java at org apache client operationclient execute operationclient java at org carbon idp mgt stub identityprovidermgtservicestub addidp identityprovidermgtservicestub java at org carbon idp mgt ui client identityprovidermgtserviceclient addidp identityprovidermgtserviceclient java at org apache jsp idpmgt idp jsp jspservice idp jsp java at org apache jasper runtime httpjspbase service httpjspbase java at javax servlet http httpservlet service httpservlet java at org apache jasper servlet jspservletwrapper service jspservletwrapper java at org apache jasper servlet jspservlet servicejspfile jspservlet java at org apache jasper servlet jspservlet service jspservlet java at javax servlet http httpservlet service httpservlet java at org carbon ui jspservlet service jspservlet java at org carbon ui tilesjspservlet service tilesjspservlet java at javax servlet http httpservlet service httpservlet java at org eclipse equinox http helper contextpathservletadaptor service contextpathservletadaptor java at org eclipse equinox http servlet internal servletregistration service servletregistration java at org eclipse equinox http servlet internal proxyservlet processalias proxyservlet java at org eclipse equinox http servlet internal proxyservlet service proxyservlet java at javax servlet http httpservlet service httpservlet java at org carbon tomcat ext servlet delegationservlet service delegationservlet java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache tomcat websocket server wsfilter dofilter wsfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org owasp csrfguard csrfguardfilter dofilter csrfguardfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina filters httpheadersecurityfilter dofilter httpheadersecurityfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org carbon tomcat ext filter charactersetfilter dofilter charactersetfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina filters httpheadersecurityfilter dofilter httpheadersecurityfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina core standardwrappervalve invoke standardwrappervalve java at org apache catalina core standardcontextvalve invoke standardcontextvalve java at org apache catalina authenticator authenticatorbase invoke authenticatorbase java at org apache catalina core standardhostvalve invoke standardhostvalve java at org apache catalina valves errorreportvalve invoke errorreportvalve java at org carbon identity context rewrite valve tenantcontextrewritevalve invoke tenantcontextrewritevalve java at org carbon identity authz valve authorizationvalve invoke authorizationvalve java at org carbon identity auth valve authenticationvalve invoke authenticationvalve java at org carbon tomcat ext valves compositevalve continueinvocation compositevalve java at org carbon tomcat ext valves carbontomcatvalve invoke carbontomcatvalve java at org carbon webapp mgt tenantlazyloadervalve invoke tenantlazyloadervalve java at org carbon tomcat ext valves tomcatvalvecontainer invokevalves tomcatvalvecontainer java at org carbon tomcat ext valves compositevalve invoke compositevalve java at org carbon tomcat ext valves carbonstuckthreaddetectionvalve invoke carbonstuckthreaddetectionvalve java at org apache catalina valves accesslogvalve invoke accesslogvalve java at org carbon tomcat ext valves carboncontextcreatorvalve invoke carboncontextcreatorvalve java at org apache catalina core standardenginevalve invoke standardenginevalve java at org apache catalina connector coyoteadapter service coyoteadapter java at org apache coyote process java at org apache coyote abstractprotocol abstractconnectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net nioendpoint socketprocessor run nioendpoint java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java caused by org carbon user core userstoreexception error occurred while accessing java security manager privilege block at org carbon user core common abstractuserstoremanager callsecure abstractuserstoremanager java at org carbon user core common abstractuserstoremanager isexistingrole abstractuserstoremanager java at org carbon idp mgt identityprovidermanager addidp identityprovidermanager java more caused by java security privilegedactionexception java lang reflect invocationtargetexception at java security accesscontroller doprivileged native method at org carbon user core common abstractuserstoremanager callsecure abstractuserstoremanager java more caused by java lang reflect invocationtargetexception at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org carbon user core common abstractuserstoremanager run abstractuserstoremanager java more caused by java lang nullpointerexception at org carbon user core common abstractuserstoremanager getuserstoreinternal abstractuserstoremanager java at org carbon user core common abstractuserstoremanager access abstractuserstoremanager java at org carbon user core common abstractuserstoremanager run abstractuserstoremanager java at org carbon user core common abstractuserstoremanager run abstractuserstoremanager java at java security accesscontroller doprivileged native method at org carbon user core common abstractuserstoremanager getuserstore abstractuserstoremanager java at org carbon user core common abstractuserstoremanager isexistingrole abstractuserstoremanager java more error org carbon idp mgt ui client identityprovidermgtserviceclient error in adding a identity provider for a given tenant org carbon idp mgt stub identityprovidermgtserviceidentityprovidermanagementexceptionexception identityprovidermgtserviceidentityprovidermanagementexceptionexception at sun reflect nativeconstructoraccessorimpl native method at sun reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at org carbon idp mgt stub identityprovidermgtservicestub addidp identityprovidermgtservicestub java at org carbon idp mgt ui client identityprovidermgtserviceclient addidp identityprovidermgtserviceclient java at org apache jsp idpmgt idp jsp jspservice idp jsp java at org apache jasper runtime httpjspbase service httpjspbase java at javax servlet http httpservlet service httpservlet java at org apache jasper servlet jspservletwrapper service jspservletwrapper java at org apache jasper servlet jspservlet servicejspfile jspservlet java at org apache jasper servlet jspservlet service jspservlet java at javax servlet http httpservlet service httpservlet java at org carbon ui jspservlet service jspservlet java at org carbon ui tilesjspservlet service tilesjspservlet java at javax servlet http httpservlet service httpservlet java at org eclipse equinox http helper contextpathservletadaptor service contextpathservletadaptor java at org eclipse equinox http servlet internal servletregistration service servletregistration java at org eclipse equinox http servlet internal proxyservlet processalias proxyservlet java at org eclipse equinox http servlet internal proxyservlet service proxyservlet java at javax servlet http httpservlet service httpservlet java at org carbon tomcat ext servlet delegationservlet service delegationservlet java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache tomcat websocket server wsfilter dofilter wsfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org owasp csrfguard csrfguardfilter dofilter csrfguardfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina filters httpheadersecurityfilter dofilter httpheadersecurityfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org carbon tomcat ext filter charactersetfilter dofilter charactersetfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina filters httpheadersecurityfilter dofilter httpheadersecurityfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina core standardwrappervalve invoke standardwrappervalve java at org apache catalina core standardcontextvalve invoke standardcontextvalve java at org apache catalina authenticator authenticatorbase invoke authenticatorbase java at org apache catalina core standardhostvalve invoke standardhostvalve java at org apache catalina valves errorreportvalve invoke errorreportvalve java at org carbon identity context rewrite valve tenantcontextrewritevalve invoke tenantcontextrewritevalve java at org carbon identity authz valve authorizationvalve invoke authorizationvalve java at org carbon identity auth valve authenticationvalve invoke authenticationvalve java at org carbon tomcat ext valves compositevalve continueinvocation compositevalve java at org carbon tomcat ext valves carbontomcatvalve invoke carbontomcatvalve java at org carbon webapp mgt tenantlazyloadervalve invoke tenantlazyloadervalve java at org carbon tomcat ext valves tomcatvalvecontainer invokevalves tomcatvalvecontainer java at org carbon tomcat ext valves compositevalve invoke compositevalve java at org carbon tomcat ext valves carbonstuckthreaddetectionvalve invoke carbonstuckthreaddetectionvalve java at org apache catalina valves accesslogvalve invoke accesslogvalve java at org carbon tomcat ext valves carboncontextcreatorvalve invoke carboncontextcreatorvalve java at org apache catalina core standardenginevalve invoke standardenginevalve java at org apache catalina connector coyoteadapter service coyoteadapter java at org apache coyote process java at org apache coyote abstractprotocol abstractconnectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net nioendpoint socketprocessor run nioendpoint java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java labels is bug | 1 |
155,723 | 5,959,835,455 | IssuesEvent | 2017-05-29 12:22:53 | dmwm/WMCore | https://api.github.com/repos/dmwm/WMCore | closed | Automatically increment ProcVer on clones ? | High Priority | Hey @vlimant @prozober @mcremone
does it make sense to automatically bump the ProcessingVersion on clone requests (when using the clone API)?
That would be either 0 or 1, which means, either we **always** bump it to all ProcessingVersion key/values present in the request, or we do not! Not something that the user can pass a flag and ask or not for the bump. | 1.0 | Automatically increment ProcVer on clones ? - Hey @vlimant @prozober @mcremone
does it make sense to automatically bump the ProcessingVersion on clone requests (when using the clone API)?
That would be either 0 or 1, which means, either we **always** bump it to all ProcessingVersion key/values present in the request, or we do not! Not something that the user can pass a flag and ask or not for the bump. | priority | automatically increment procver on clones hey vlimant prozober mcremone does it make sense to automatically bump the processingversion on clone requests when using the clone api that would be either or which means either we always bump it to all processingversion key values present in the request or we do not not something that the user can pass a flag and ask or not for the bump | 1 |
57,038 | 3,081,233,340 | IssuesEvent | 2015-08-22 14:21:39 | bitfighter/bitfighter | https://api.github.com/repos/bitfighter/bitfighter | closed | Crashing in level editor. | 019 bug imported Priority-High | _From [Cory.Pou...@gmail.com](https://code.google.com/u/105220164791991617712/) on October 25, 2013 19:37:27_
What steps will reproduce the problem? 1. place a poly wall or laodout/ goal zone onto 1 point.
2. load the level.
3. poly walls will cause walls not to draw. (but they are there.) zones will crash the game. What is the expected output? What do you see instead? crashing. or not drawing. see step 3 of problem reproduction. What version of the product are you using? On what operating system? bitfighter-019-beta-8327-b2e4bb866803-windows on a windows 7 operating system. Please provide any additional information below. source by amgine.
_Original issue: http://code.google.com/p/bitfighter/issues/detail?id=269_ | 1.0 | Crashing in level editor. - _From [Cory.Pou...@gmail.com](https://code.google.com/u/105220164791991617712/) on October 25, 2013 19:37:27_
What steps will reproduce the problem? 1. place a poly wall or laodout/ goal zone onto 1 point.
2. load the level.
3. poly walls will cause walls not to draw. (but they are there.) zones will crash the game. What is the expected output? What do you see instead? crashing. or not drawing. see step 3 of problem reproduction. What version of the product are you using? On what operating system? bitfighter-019-beta-8327-b2e4bb866803-windows on a windows 7 operating system. Please provide any additional information below. source by amgine.
_Original issue: http://code.google.com/p/bitfighter/issues/detail?id=269_ | priority | crashing in level editor from on october what steps will reproduce the problem place a poly wall or laodout goal zone onto point load the level poly walls will cause walls not to draw but they are there zones will crash the game what is the expected output what do you see instead crashing or not drawing see step of problem reproduction what version of the product are you using on what operating system bitfighter beta windows on a windows operating system please provide any additional information below source by amgine original issue | 1 |
699,210 | 24,008,933,698 | IssuesEvent | 2022-09-14 16:59:41 | helgoboss/realearn | https://api.github.com/repos/helgoboss/realearn | closed | If ReaLearn panics while processing control surface change events, it runs into an infinite error loop | bug high priority | The error investigated as part of #672 kept occurring until quitting REAPER / ReaLearn. That's the - by far - most annoying part of that error. Turns out we can avoid that infinite error loop and other potential error loops!
The problem is that we don't remove the change event that causes the panic from the change event queue. We need to do that! | 1.0 | If ReaLearn panics while processing control surface change events, it runs into an infinite error loop - The error investigated as part of #672 kept occurring until quitting REAPER / ReaLearn. That's the - by far - most annoying part of that error. Turns out we can avoid that infinite error loop and other potential error loops!
The problem is that we don't remove the change event that causes the panic from the change event queue. We need to do that! | priority | if realearn panics while processing control surface change events it runs into an infinite error loop the error investigated as part of kept occurring until quitting reaper realearn that s the by far most annoying part of that error turns out we can avoid that infinite error loop and other potential error loops the problem is that we don t remove the change event that causes the panic from the change event queue we need to do that | 1 |
168,678 | 6,380,115,758 | IssuesEvent | 2017-08-02 16:01:11 | yarnpkg/yarn | https://api.github.com/repos/yarnpkg/yarn | closed | Running yarn add in a workspace break the lockfile | bug-high-priority | ```bash
rm -rf foo
(
mkdir -p foo/a && cd foo/a
echo '{"name":"a", "version":"1.0.0"}' > package.json
)
(
mkdir -p foo/b && cd foo/b
echo '{"name":"b", "version":"1.0.0"}' > package.json
)
(
mkdir -p foo/root && cd foo/root
echo '{"private": true, "workspaces": ["workspace"], "dependencies": {"a":"file:../a"}}' > package.json
echo 'workspaces-experimental true' > .yarnrc
)
(
mkdir -p foo/root/workspace && cd foo/root/workspace
echo '{"name":"workspace", "version":"1.0.0"}' > package.json
)
(
cd foo/root
yarn
cp yarn.lock good-yarn.lock
)
(
cd foo/root/workspace
yarn add b@file:../../b
)
(
cd foo/root
diff good-yarn.lock yarn.lock
)
``` | 1.0 | Running yarn add in a workspace break the lockfile - ```bash
rm -rf foo
(
mkdir -p foo/a && cd foo/a
echo '{"name":"a", "version":"1.0.0"}' > package.json
)
(
mkdir -p foo/b && cd foo/b
echo '{"name":"b", "version":"1.0.0"}' > package.json
)
(
mkdir -p foo/root && cd foo/root
echo '{"private": true, "workspaces": ["workspace"], "dependencies": {"a":"file:../a"}}' > package.json
echo 'workspaces-experimental true' > .yarnrc
)
(
mkdir -p foo/root/workspace && cd foo/root/workspace
echo '{"name":"workspace", "version":"1.0.0"}' > package.json
)
(
cd foo/root
yarn
cp yarn.lock good-yarn.lock
)
(
cd foo/root/workspace
yarn add b@file:../../b
)
(
cd foo/root
diff good-yarn.lock yarn.lock
)
``` | priority | running yarn add in a workspace break the lockfile bash rm rf foo mkdir p foo a cd foo a echo name a version package json mkdir p foo b cd foo b echo name b version package json mkdir p foo root cd foo root echo private true workspaces dependencies a file a package json echo workspaces experimental true yarnrc mkdir p foo root workspace cd foo root workspace echo name workspace version package json cd foo root yarn cp yarn lock good yarn lock cd foo root workspace yarn add b file b cd foo root diff good yarn lock yarn lock | 1 |
303,934 | 9,312,195,902 | IssuesEvent | 2019-03-26 00:05:58 | ChingStore/ching | https://api.github.com/repos/ChingStore/ching | opened | Remove Coinbase as a supported wallet | discussion high priority | We should remove the link to Coinbase's wallet until they accept DAI.
Currently, Coinbase can only handle ETH from our consumer users and this may present an unnecessary complication for our merchant users.
Thoughts? | 1.0 | Remove Coinbase as a supported wallet - We should remove the link to Coinbase's wallet until they accept DAI.
Currently, Coinbase can only handle ETH from our consumer users and this may present an unnecessary complication for our merchant users.
Thoughts? | priority | remove coinbase as a supported wallet we should remove the link to coinbase s wallet until they accept dai currently coinbase can only handle eth from our consumer users and this may present an unnecessary complication for our merchant users thoughts | 1 |
543,921 | 15,887,414,161 | IssuesEvent | 2021-04-10 02:13:46 | AY2021S2-CS2103T-W15-3/tp | https://api.github.com/repos/AY2021S2-CS2103T-W15-3/tp | closed | [PE-D] Error message not showing for order add command with incorrect format | bug priority.High | order add n/Alex Yeoh dt/14-02-2021 18:30 d/Potato salad q/1
n/[CUSTOMER_ID] when given as n/[CUSTOMER_NAME] does not show error in the app, but shows error in local machine's command prompt

<!--session: 1617430466043-e1400189-4346-4ebc-9f9e-98cd08b5dc88-->
-------------
Labels: `severity.High` `type.FeatureFlaw`
original: jxrrelo/ped#5 | 1.0 | [PE-D] Error message not showing for order add command with incorrect format - order add n/Alex Yeoh dt/14-02-2021 18:30 d/Potato salad q/1
n/[CUSTOMER_ID] when given as n/[CUSTOMER_NAME] does not show error in the app, but shows error in local machine's command prompt

<!--session: 1617430466043-e1400189-4346-4ebc-9f9e-98cd08b5dc88-->
-------------
Labels: `severity.High` `type.FeatureFlaw`
original: jxrrelo/ped#5 | priority | error message not showing for order add command with incorrect format order add n alex yeoh dt d potato salad q n when given as n does not show error in the app but shows error in local machine s command prompt labels severity high type featureflaw original jxrrelo ped | 1 |
308,554 | 9,440,589,622 | IssuesEvent | 2019-04-14 19:00:06 | x13pixels/remedybg-issues | https://api.github.com/repos/x13pixels/remedybg-issues | closed | Expressions: pointer math and casting integral literals | Component: Engine Priority: 7 (Med-High) Status: Completed Type: Bug | [simon]
The following watch expressions do not work:
- pointer arithmetic: pointer + 1, pointer - 1, *(pointer+1), pointer[ -1 ] (but pointer[ 0 - 1 ] works).
- casting: (int*) 0x30001, (int) 0x30001. | 1.0 | Expressions: pointer math and casting integral literals - [simon]
The following watch expressions do not work:
- pointer arithmetic: pointer + 1, pointer - 1, *(pointer+1), pointer[ -1 ] (but pointer[ 0 - 1 ] works).
- casting: (int*) 0x30001, (int) 0x30001. | priority | expressions pointer math and casting integral literals the following watch expressions do not work pointer arithmetic pointer pointer pointer pointer but pointer works casting int int | 1 |
488,298 | 14,075,459,793 | IssuesEvent | 2020-11-04 09:04:34 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | Couldn't self sign up user for tenants with myaccount | Priority/Highest Severity/Critical bug | **Describe the issue:**
Couldn't self sign up user for tenants with myaccount (even with tenant qualified url same behaviour)
**How to reproduce:**
1. Go to myaccount url and click on create account
2. Give a username with tenant domain
3. Always user is created in the super tenant.
**Expected behavior:**
User should be created in tenant.
**Environment information** (_Please complete the following information; remove any unnecessary fields_) **:**
- Product Version: IS-5.11.0-beta4
- OS: Linux
- Database: H2
- Userstore: LDAP
---
| 1.0 | Couldn't self sign up user for tenants with myaccount - **Describe the issue:**
Couldn't self sign up user for tenants with myaccount (even with tenant qualified url same behaviour)
**How to reproduce:**
1. Go to myaccount url and click on create account
2. Give a username with tenant domain
3. Always user is created in the super tenant.
**Expected behavior:**
User should be created in tenant.
**Environment information** (_Please complete the following information; remove any unnecessary fields_) **:**
- Product Version: IS-5.11.0-beta4
- OS: Linux
- Database: H2
- Userstore: LDAP
---
| priority | couldn t self sign up user for tenants with myaccount describe the issue couldn t self sign up user for tenants with myaccount even with tenant qualified url same behaviour how to reproduce go to myaccount url and click on create account give a username with tenant domain always user is created in the super tenant expected behavior user should be created in tenant environment information please complete the following information remove any unnecessary fields product version is os linux database userstore ldap | 1 |
292,709 | 8,966,743,892 | IssuesEvent | 2019-01-29 00:11:09 | OpenPHDGuiding/phd2 | https://api.github.com/repos/OpenPHDGuiding/phd2 | closed | ZWO cameras in video mode cause guiding overcorrection | Priority-High | BLC is not backing off fast enough when there is a single frame delay in the mount motion. In other words, if the first frame after the BLC lands the guide star near zero dec offset, but stiction (or some other delay) cases the overshoot to be observed in the following camera frame, then BLC does not detect the overshoot and does not scale down the BLC pulse size and the overshoot can repeat and result in oscillation. | 1.0 | ZWO cameras in video mode cause guiding overcorrection - BLC is not backing off fast enough when there is a single frame delay in the mount motion. In other words, if the first frame after the BLC lands the guide star near zero dec offset, but stiction (or some other delay) cases the overshoot to be observed in the following camera frame, then BLC does not detect the overshoot and does not scale down the BLC pulse size and the overshoot can repeat and result in oscillation. | priority | zwo cameras in video mode cause guiding overcorrection blc is not backing off fast enough when there is a single frame delay in the mount motion in other words if the first frame after the blc lands the guide star near zero dec offset but stiction or some other delay cases the overshoot to be observed in the following camera frame then blc does not detect the overshoot and does not scale down the blc pulse size and the overshoot can repeat and result in oscillation | 1 |
688,547 | 23,587,070,290 | IssuesEvent | 2022-08-23 12:31:31 | aleksbobic/csx | https://api.github.com/repos/aleksbobic/csx | opened | Handle multi file searches and graph expansion inside of a study | enhancement priority:low Complexity:high | Users should be able to make searches over multiple datasets inside of a study and should be able to expand a graph of one dataset with the data of another.
A critical point to think about is also the schema merger in this case. Would probably have to introduce a prefix for node types based on the dataset. | 1.0 | Handle multi file searches and graph expansion inside of a study - Users should be able to make searches over multiple datasets inside of a study and should be able to expand a graph of one dataset with the data of another.
A critical point to think about is also the schema merger in this case. Would probably have to introduce a prefix for node types based on the dataset. | priority | handle multi file searches and graph expansion inside of a study users should be able to make searches over multiple datasets inside of a study and should be able to expand a graph of one dataset with the data of another a critical point to think about is also the schema merger in this case would probably have to introduce a prefix for node types based on the dataset | 1 |
433,543 | 12,506,571,260 | IssuesEvent | 2020-06-02 12:48:42 | EvilMindDevs/hms-unity-plugin | https://api.github.com/repos/EvilMindDevs/hms-unity-plugin | closed | Custom Ads ID not working | bug high priority | As reported:
> We configured Ad Unit id: ”xxxxxxxxx" for interstitials. See all details in the screenshot below.
> It does not load or show any interstitials. It still works fine if I use the test unit id ”testb4znbuh3n2”.
Shared AGC configuration looks correctly set up.
| 1.0 | Custom Ads ID not working - As reported:
> We configured Ad Unit id: ”xxxxxxxxx" for interstitials. See all details in the screenshot below.
> It does not load or show any interstitials. It still works fine if I use the test unit id ”testb4znbuh3n2”.
Shared AGC configuration looks correctly set up.
| priority | custom ads id not working as reported we configured ad unit id ”xxxxxxxxx for interstitials see all details in the screenshot below it does not load or show any interstitials it still works fine if i use the test unit id ” ” shared agc configuration looks correctly set up | 1 |
233,419 | 7,697,787,680 | IssuesEvent | 2018-05-18 20:08:30 | eustasy/midori-browser.org | https://api.github.com/repos/eustasy/midori-browser.org | closed | Homepage has empty columns in the last section. | Language: HTML Priority: High Status: Fix Committed Type: Maintenance | The homepage is missing some content to the right of the news.
- [x] Downloads
- [x] News
- [x] Donations
## <bountysource-plugin>
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/1071188-homepage-has-empty-columns-in-the-last-section?utm_campaign=plugin&utm_content=tracker%2F86907&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F86907&utm_medium=issues&utm_source=github).
</bountysource-plugin>
| 1.0 | Homepage has empty columns in the last section. - The homepage is missing some content to the right of the news.
- [x] Downloads
- [x] News
- [x] Donations
## <bountysource-plugin>
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/1071188-homepage-has-empty-columns-in-the-last-section?utm_campaign=plugin&utm_content=tracker%2F86907&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F86907&utm_medium=issues&utm_source=github).
</bountysource-plugin>
| priority | homepage has empty columns in the last section the homepage is missing some content to the right of the news downloads news donations want to back this issue we accept bounties via | 1 |
537,865 | 15,755,762,675 | IssuesEvent | 2021-03-31 02:20:52 | kubesphere/kubesphere | https://api.github.com/repos/kubesphere/kubesphere | closed | The pipeline was removed by the Jenkins client is still in the pipeline list of KS. | area/devops kind/bug kind/feature-request priority/high priority/low | <!--
You don't need to remove this comment section, it's invisible on the issues page.
## General remarks
* Attention, please fill out this issues form using English only!
* 注意!GitHub Issue 仅支持英文,中文 Issue 请在 [论坛](https://kubesphere.com.cn/forum/) 提交。
* This form is to report bugs. For general usage questions you can join our Slack channel
[KubeSphere-users](https://join.slack.com/t/kubesphere/shared_invite/enQtNTE3MDIxNzUxNzQ0LTZkNTdkYWNiYTVkMTM5ZThhODY1MjAyZmVlYWEwZmQ3ODQ1NmM1MGVkNWEzZTRhNzk0MzM5MmY4NDc3ZWVhMjE)
-->
**Describe the Bug**
There was a pipeline removed by Jenkins client, and is still in the pipeline list of KS.
**Versions Used**
KubeSphere:
**Environment**
http://allinone:30880/
**Preset conditions**
There is a pipeline 'Test'
**How To Reproduce**
Steps to reproduce the behavior:
1. Go to Jenkins client and delete pipeline 'Test'.
2. Go to pipeline list of KS.
3. checkout pipeline 'Test'
**Expected behavior**
pipeline 'Test' disappeared in pipeline list of KS.
**Actual behavior**
pipeline 'Test' is still in test pipeline list of KS, and it's healthy state becomes abnormally.
/kind bug
/area devops
/assign @shaowenchen
/milestone 3.1.0
/priority high | 2.0 | The pipeline was removed by the Jenkins client is still in the pipeline list of KS. - <!--
You don't need to remove this comment section, it's invisible on the issues page.
## General remarks
* Attention, please fill out this issues form using English only!
* 注意!GitHub Issue 仅支持英文,中文 Issue 请在 [论坛](https://kubesphere.com.cn/forum/) 提交。
* This form is to report bugs. For general usage questions you can join our Slack channel
[KubeSphere-users](https://join.slack.com/t/kubesphere/shared_invite/enQtNTE3MDIxNzUxNzQ0LTZkNTdkYWNiYTVkMTM5ZThhODY1MjAyZmVlYWEwZmQ3ODQ1NmM1MGVkNWEzZTRhNzk0MzM5MmY4NDc3ZWVhMjE)
-->
**Describe the Bug**
There was a pipeline removed by Jenkins client, and is still in the pipeline list of KS.
**Versions Used**
KubeSphere:
**Environment**
http://allinone:30880/
**Preset conditions**
There is a pipeline 'Test'
**How To Reproduce**
Steps to reproduce the behavior:
1. Go to Jenkins client and delete pipeline 'Test'.
2. Go to pipeline list of KS.
3. checkout pipeline 'Test'
**Expected behavior**
pipeline 'Test' disappeared in pipeline list of KS.
**Actual behavior**
pipeline 'Test' is still in test pipeline list of KS, and it's healthy state becomes abnormally.
/kind bug
/area devops
/assign @shaowenchen
/milestone 3.1.0
/priority high | priority | the pipeline was removed by the jenkins client is still in the pipeline list of ks you don t need to remove this comment section it s invisible on the issues page general remarks attention please fill out this issues form using english only 注意!github issue 仅支持英文,中文 issue 请在 提交。 this form is to report bugs for general usage questions you can join our slack channel describe the bug there was a pipeline removed by jenkins client and is still in the pipeline list of ks versions used kubesphere environment preset conditions there is a pipeline test how to reproduce steps to reproduce the behavior go to jenkins client and delete pipeline test go to pipeline list of ks checkout pipeline test expected behavior pipeline test disappeared in pipeline list of ks actual behavior pipeline test is still in test pipeline list of ks and it s healthy state becomes abnormally kind bug area devops assign shaowenchen milestone priority high | 1 |
599,022 | 18,263,972,054 | IssuesEvent | 2021-10-04 05:40:08 | TuSimple/naive-ui | https://api.github.com/repos/TuSimple/naive-ui | closed | [feat]请求描述组件去掉冒号 | feature request priority: high | <!-- generated by issue-helper DO NOT REMOVE __FEATURE_REQUEST__ -->
### This function solves the problem (这个功能解决的问题)
不需要冒号,或者想用其他符号代替
### Expected API (期望的 API)
去掉冒号。
默认加冒号,默写场景下多余,还不能去掉!
<!-- generated by issue-helper DO NOT REMOVE __FEATURE_REQUEST__ --> | 1.0 | [feat]请求描述组件去掉冒号 - <!-- generated by issue-helper DO NOT REMOVE __FEATURE_REQUEST__ -->
### This function solves the problem (这个功能解决的问题)
不需要冒号,或者想用其他符号代替
### Expected API (期望的 API)
去掉冒号。
默认加冒号,默写场景下多余,还不能去掉!
<!-- generated by issue-helper DO NOT REMOVE __FEATURE_REQUEST__ --> | priority | 请求描述组件去掉冒号 this function solves the problem 这个功能解决的问题 不需要冒号,或者想用其他符号代替 expected api 期望的 api 去掉冒号。 默认加冒号,默写场景下多余,还不能去掉! | 1 |
704,291 | 24,191,583,370 | IssuesEvent | 2022-09-23 18:09:49 | astronomer/astro-sdk | https://api.github.com/repos/astronomer/astro-sdk | opened | Openlineage support - Add Extractor for `BaseSQLDecoratedOperator` | feature priority/high product/python-sdk | **Please describe the feature you'd like to see**
We should be able to extract open lineage info from the `BaseSQLDecoratedOperator`.
**Describe the solution you'd like**
- Add a method `get_openlineage_facets` on the Operator (based on [this doc](https://docs.google.com/document/d/1vPsvHejQ24xTbzpz_LYSf0_ixk9oUuBiEUHVEaF9J2U/edit?usp=sharing))
- The "PythonSDKExtractor" built-in https://github.com/astronomer/astro-sdk/issues/898 should be able to work with `BaseSQLDecoratedOperator.get_openlineage_facets`. Test it to make sure it works
**Additional context**
- We do not want to build an extractor for each operator in the SDK so we will just build one extractor that calls ``get_openlineage_facets`` on any SDK operator based on [this doc](https://docs.google.com/document/d/1vPsvHejQ24xTbzpz_LYSf0_ixk9oUuBiEUHVEaF9J2U/edit?usp=sharing)
- This extractor can live in the SDK for now but `openlineage-airflow` will add this extractor after we do this POC
- Sync up with openlineage team once the POC is completed successfully
- **Failure of the extractor** should not affect the operator itself so add necessary try..catch wherever applicable and test it thoroughly
**Acceptance Criteria**
- [ ] Post the screenshot of how it looks in the Openlineage/Marquez UI
- [ ] All checks and tests in the CI should pass
- [ ] Unit tests (90% code coverage or more, [once available](https://github.com/astronomer/astro-sdk/issues/191))
- [ ] Integration tests (if the feature relates to a new database or external service)
- [ ] Docstrings in [reStructuredText](https://peps.python.org/pep-0287/) for each of methods, classes, functions and module-level attributes (including Example DAG on how it should be used)
- [ ] Exception handling in case of errors
- [ ] Logging (are we exposing useful information to the user? e.g. source and destination)
- [ ] Improve the documentation (README, Sphinx, and any other relevant)
| 1.0 | Openlineage support - Add Extractor for `BaseSQLDecoratedOperator` - **Please describe the feature you'd like to see**
We should be able to extract open lineage info from the `BaseSQLDecoratedOperator`.
**Describe the solution you'd like**
- Add a method `get_openlineage_facets` on the Operator (based on [this doc](https://docs.google.com/document/d/1vPsvHejQ24xTbzpz_LYSf0_ixk9oUuBiEUHVEaF9J2U/edit?usp=sharing))
- The "PythonSDKExtractor" built-in https://github.com/astronomer/astro-sdk/issues/898 should be able to work with `BaseSQLDecoratedOperator.get_openlineage_facets`. Test it to make sure it works
**Additional context**
- We do not want to build an extractor for each operator in the SDK so we will just build one extractor that calls ``get_openlineage_facets`` on any SDK operator based on [this doc](https://docs.google.com/document/d/1vPsvHejQ24xTbzpz_LYSf0_ixk9oUuBiEUHVEaF9J2U/edit?usp=sharing)
- This extractor can live in the SDK for now but `openlineage-airflow` will add this extractor after we do this POC
- Sync up with openlineage team once the POC is completed successfully
- **Failure of the extractor** should not affect the operator itself so add necessary try..catch wherever applicable and test it thoroughly
**Acceptance Criteria**
- [ ] Post the screenshot of how it looks in the Openlineage/Marquez UI
- [ ] All checks and tests in the CI should pass
- [ ] Unit tests (90% code coverage or more, [once available](https://github.com/astronomer/astro-sdk/issues/191))
- [ ] Integration tests (if the feature relates to a new database or external service)
- [ ] Docstrings in [reStructuredText](https://peps.python.org/pep-0287/) for each of methods, classes, functions and module-level attributes (including Example DAG on how it should be used)
- [ ] Exception handling in case of errors
- [ ] Logging (are we exposing useful information to the user? e.g. source and destination)
- [ ] Improve the documentation (README, Sphinx, and any other relevant)
| priority | openlineage support add extractor for basesqldecoratedoperator please describe the feature you d like to see we should be able to extract open lineage info from the basesqldecoratedoperator describe the solution you d like add a method get openlineage facets on the operator based on the pythonsdkextractor built in should be able to work with basesqldecoratedoperator get openlineage facets test it to make sure it works additional context we do not want to build an extractor for each operator in the sdk so we will just build one extractor that calls get openlineage facets on any sdk operator based on this extractor can live in the sdk for now but openlineage airflow will add this extractor after we do this poc sync up with openlineage team once the poc is completed successfully failure of the extractor should not affect the operator itself so add necessary try catch wherever applicable and test it thoroughly acceptance criteria post the screenshot of how it looks in the openlineage marquez ui all checks and tests in the ci should pass unit tests code coverage or more integration tests if the feature relates to a new database or external service docstrings in for each of methods classes functions and module level attributes including example dag on how it should be used exception handling in case of errors logging are we exposing useful information to the user e g source and destination improve the documentation readme sphinx and any other relevant | 1 |
622,494 | 19,636,529,179 | IssuesEvent | 2022-01-08 11:36:30 | OiivaeCommunity/ovicommunity | https://api.github.com/repos/OiivaeCommunity/ovicommunity | opened | “Connection Refused: No further Information “ | Server Issue HCMC Server High Priority | Multiple reports of players unable to connect to the HCMC server with this error message popping up. Its assumed both players are Java players as they were both players prior to bedrock implementation. | 1.0 | “Connection Refused: No further Information “ - Multiple reports of players unable to connect to the HCMC server with this error message popping up. Its assumed both players are Java players as they were both players prior to bedrock implementation. | priority | “connection refused no further information “ multiple reports of players unable to connect to the hcmc server with this error message popping up its assumed both players are java players as they were both players prior to bedrock implementation | 1 |
602,941 | 18,517,485,809 | IssuesEvent | 2021-10-20 11:49:45 | gambitph/Stackable | https://api.github.com/repos/gambitph/Stackable | closed | Angled Feature 1 looks broken in frontend | bug high priority [version] V3 [block] Feature | <!--
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
-->
<img width="1680" alt="Screen Shot 2021-10-16 at 12 24 58 AM" src="https://user-images.githubusercontent.com/28699204/137521111-20621353-0adc-4313-8f1d-553b42abbfba.png">
| 1.0 | Angled Feature 1 looks broken 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
-->
<img width="1680" alt="Screen Shot 2021-10-16 at 12 24 58 AM" src="https://user-images.githubusercontent.com/28699204/137521111-20621353-0adc-4313-8f1d-553b42abbfba.png">
| priority | angled feature looks broken 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 img width alt screen shot at am src | 1 |
168,516 | 6,377,218,970 | IssuesEvent | 2017-08-02 09:30:15 | SGolenzovskiy/altrc | https://api.github.com/repos/SGolenzovskiy/altrc | closed | Сделать превью имджей | bug priority:high | Так чтобы они были одного размера не зависимо вытянутый ли он в ширину или длину | 1.0 | Сделать превью имджей - Так чтобы они были одного размера не зависимо вытянутый ли он в ширину или длину | priority | сделать превью имджей так чтобы они были одного размера не зависимо вытянутый ли он в ширину или длину | 1 |
92,002 | 3,864,306,240 | IssuesEvent | 2016-04-08 13:25:22 | TechReborn/TechReborn | https://api.github.com/repos/TechReborn/TechReborn | closed | [1.9] Crash and World Corruption (Industrial Centrifuge) | 1.9 bug High priority | Using Forge 1816 and Tech Reborn 1.0.4.143 with Reborn Core 2.0.2.31 (Or 2.0.4.46) One is the version on the File name, the other is the one informed on MultiMC
When you have an Industrial Centrifuge going and lets say you have still 32 Rubber Wood on it, if you shift left click a stack of 64 (Or anything above what it can fit in there I guess) the game crashes and the world gets corrupted as the Centrifuge isn't able to load correctly ever again.
http://pastebin.com/CutnUecw
http://i.imgur.com/GOZMV4E.png | 1.0 | [1.9] Crash and World Corruption (Industrial Centrifuge) - Using Forge 1816 and Tech Reborn 1.0.4.143 with Reborn Core 2.0.2.31 (Or 2.0.4.46) One is the version on the File name, the other is the one informed on MultiMC
When you have an Industrial Centrifuge going and lets say you have still 32 Rubber Wood on it, if you shift left click a stack of 64 (Or anything above what it can fit in there I guess) the game crashes and the world gets corrupted as the Centrifuge isn't able to load correctly ever again.
http://pastebin.com/CutnUecw
http://i.imgur.com/GOZMV4E.png | priority | crash and world corruption industrial centrifuge using forge and tech reborn with reborn core or one is the version on the file name the other is the one informed on multimc when you have an industrial centrifuge going and lets say you have still rubber wood on it if you shift left click a stack of or anything above what it can fit in there i guess the game crashes and the world gets corrupted as the centrifuge isn t able to load correctly ever again | 1 |
476,607 | 13,747,619,073 | IssuesEvent | 2020-10-06 07:54:03 | enso-org/ide | https://api.github.com/repos/enso-org/ide | closed | Can't Close the Node Searcher | Category: GUI Change: Non-Breaking Difficulty: Hard Priority: High Type: Bug | ### General Summary
There is no way to exit the node searcher without submitting a new node.
### Steps to Reproduce
1. Open Enso Studio.
2. Focus the node editor window.
3. Press tab to open the node searcher.
4. Press `Esc`.
### Expected Result
The node searcher should close.
### Actual Result
Nothing.
### Enso Version
```
5a4ba838f86d121ba6dd2980829a9bca32e3d56a
```
| 1.0 | Can't Close the Node Searcher - ### General Summary
There is no way to exit the node searcher without submitting a new node.
### Steps to Reproduce
1. Open Enso Studio.
2. Focus the node editor window.
3. Press tab to open the node searcher.
4. Press `Esc`.
### Expected Result
The node searcher should close.
### Actual Result
Nothing.
### Enso Version
```
5a4ba838f86d121ba6dd2980829a9bca32e3d56a
```
| priority | can t close the node searcher general summary there is no way to exit the node searcher without submitting a new node steps to reproduce open enso studio focus the node editor window press tab to open the node searcher press esc expected result the node searcher should close actual result nothing enso version | 1 |
142,155 | 5,459,848,277 | IssuesEvent | 2017-03-09 02:16:47 | CS2103JAN2017-T16-B4/main | https://api.github.com/repos/CS2103JAN2017-T16-B4/main | opened | As a user I want to mark task as done based on index, name, or any unique identifying string for that task | high priority user | So that I can clear done tasks if needed. | 1.0 | As a user I want to mark task as done based on index, name, or any unique identifying string for that task - So that I can clear done tasks if needed. | priority | as a user i want to mark task as done based on index name or any unique identifying string for that task so that i can clear done tasks if needed | 1 |
247,433 | 7,918,636,744 | IssuesEvent | 2018-07-04 13:56:26 | esteemapp/esteem-surfer | https://api.github.com/repos/esteemapp/esteem-surfer | closed | esteemapp account shouldn't require active/master key to schedule post | bug high priority | Seems all other accounts needs that, but whenever we post from @esteemapp it needs only posting key actually.
<img width="420" alt="2018-07-02 22 56 43" src="https://user-images.githubusercontent.com/32987666/42183711-8f97348c-7e4b-11e8-850a-e798f66e6633.png">
| 1.0 | esteemapp account shouldn't require active/master key to schedule post - Seems all other accounts needs that, but whenever we post from @esteemapp it needs only posting key actually.
<img width="420" alt="2018-07-02 22 56 43" src="https://user-images.githubusercontent.com/32987666/42183711-8f97348c-7e4b-11e8-850a-e798f66e6633.png">
| priority | esteemapp account shouldn t require active master key to schedule post seems all other accounts needs that but whenever we post from esteemapp it needs only posting key actually img width alt src | 1 |
349,009 | 10,455,824,581 | IssuesEvent | 2019-09-19 22:30:11 | openmsupply/mobile | https://api.github.com/repos/openmsupply/mobile | opened | Icon for removing still not clear enough | DataTable Docs: not needed Effort: small Priority: High Refactor | ## Is your feature request related to a problem? Please describe.
The icon for removing a row in a `DataTable` isn't distinctive enough when disabled or enabled.
## Describe the solution you'd like
Current:
<img width="1356" alt="image" src="https://user-images.githubusercontent.com/35858975/65285775-8d5e0200-db91-11e9-9a65-0d645b9fe57c.png">
I think better:
<img width="1368" alt="image" src="https://user-images.githubusercontent.com/35858975/65285747-7e774f80-db91-11e9-8371-78bfa6a0aa07.png">
## Describe alternatives you've considered
Doing nothing
## Additional context
N/A
| 1.0 | Icon for removing still not clear enough - ## Is your feature request related to a problem? Please describe.
The icon for removing a row in a `DataTable` isn't distinctive enough when disabled or enabled.
## Describe the solution you'd like
Current:
<img width="1356" alt="image" src="https://user-images.githubusercontent.com/35858975/65285775-8d5e0200-db91-11e9-9a65-0d645b9fe57c.png">
I think better:
<img width="1368" alt="image" src="https://user-images.githubusercontent.com/35858975/65285747-7e774f80-db91-11e9-8371-78bfa6a0aa07.png">
## Describe alternatives you've considered
Doing nothing
## Additional context
N/A
| priority | icon for removing still not clear enough is your feature request related to a problem please describe the icon for removing a row in a datatable isn t distinctive enough when disabled or enabled describe the solution you d like current img width alt image src i think better img width alt image src describe alternatives you ve considered doing nothing additional context n a | 1 |
802,090 | 28,606,242,911 | IssuesEvent | 2023-04-24 01:02:56 | steedos/steedos-platform | https://api.github.com/repos/steedos/steedos-platform | closed | [Task]: 字段表单优化 | done priority: High | ### SubTasks 子任务
- [x] 支持配置depend_on、reference_to_field : 高级分组
- [x] 字段: 删除选择项函数
- [x] 字段: 过滤器函数 改为code类型,并提供默认示例
https://github.com/steedos/steedos-platform/issues/2588 | 1.0 | [Task]: 字段表单优化 - ### SubTasks 子任务
- [x] 支持配置depend_on、reference_to_field : 高级分组
- [x] 字段: 删除选择项函数
- [x] 字段: 过滤器函数 改为code类型,并提供默认示例
https://github.com/steedos/steedos-platform/issues/2588 | priority | 字段表单优化 subtasks 子任务 支持配置depend on、reference to field 高级分组 字段 删除选择项函数 字段 过滤器函数 改为code类型 并提供默认示例 | 1 |
403,811 | 11,847,209,573 | IssuesEvent | 2020-03-24 11:35:46 | CytopiaTeam/Cytopia | https://api.github.com/repos/CytopiaTeam/Cytopia | closed | save / load game is broken for roads | bug high-priority | When placing roads and save / load a game, it'll be gone afterwards | 1.0 | save / load game is broken for roads - When placing roads and save / load a game, it'll be gone afterwards | priority | save load game is broken for roads when placing roads and save load a game it ll be gone afterwards | 1 |
561,842 | 16,625,441,215 | IssuesEvent | 2021-06-03 08:58:04 | nirgreshler/natnet-motionclient | https://api.github.com/repos/nirgreshler/natnet-motionclient | closed | Figure out how to plot data in real-time on Visualizer | high priority | From Nir: we can have the listener class hold the updated data received from Motive. Then we can define an animation function that queries this data from the listener...
From Dudi: https://stackoverflow.com/questions/11874767/how-do-i-plot-in-real-time-in-a-while-loop-using-matplotlib/15724978#15724978
1. Acquire data through a function that is called per loop-iteration (in our case, a call-back from the motion client)
2. Avoid re-drawing at motive's fast update rate: keep timestamps and update a few times a second | 1.0 | Figure out how to plot data in real-time on Visualizer - From Nir: we can have the listener class hold the updated data received from Motive. Then we can define an animation function that queries this data from the listener...
From Dudi: https://stackoverflow.com/questions/11874767/how-do-i-plot-in-real-time-in-a-while-loop-using-matplotlib/15724978#15724978
1. Acquire data through a function that is called per loop-iteration (in our case, a call-back from the motion client)
2. Avoid re-drawing at motive's fast update rate: keep timestamps and update a few times a second | priority | figure out how to plot data in real time on visualizer from nir we can have the listener class hold the updated data received from motive then we can define an animation function that queries this data from the listener from dudi acquire data through a function that is called per loop iteration in our case a call back from the motion client avoid re drawing at motive s fast update rate keep timestamps and update a few times a second | 1 |
669,529 | 22,629,631,057 | IssuesEvent | 2022-06-30 13:41:13 | VCityTeam/UD-Viz | https://api.github.com/repos/VCityTeam/UD-Viz | opened | Dynamic Layer in UD_VIZ | itowns priority-high | In order to animate objet (that can come from an external simulation, a json or computed from any other algorithm) we need to be able to update a layer at each frame.
This issue has been opened already directly in itowns here https://github.com/iTowns/itowns/issues/1863 | 1.0 | Dynamic Layer in UD_VIZ - In order to animate objet (that can come from an external simulation, a json or computed from any other algorithm) we need to be able to update a layer at each frame.
This issue has been opened already directly in itowns here https://github.com/iTowns/itowns/issues/1863 | priority | dynamic layer in ud viz in order to animate objet that can come from an external simulation a json or computed from any other algorithm we need to be able to update a layer at each frame this issue has been opened already directly in itowns here | 1 |
478,911 | 13,788,280,256 | IssuesEvent | 2020-10-09 06:54:20 | AY2021S1-CS2103-F09-1/tp | https://api.github.com/repos/AY2021S1-CS2103-F09-1/tp | closed | Add NamedAttendance class | priority.High | Class with Attendance and Name
Purpose:
- to streamline UI access to Student fields | 1.0 | Add NamedAttendance class - Class with Attendance and Name
Purpose:
- to streamline UI access to Student fields | priority | add namedattendance class class with attendance and name purpose to streamline ui access to student fields | 1 |
260,486 | 8,210,575,042 | IssuesEvent | 2018-09-04 11:12:46 | rootio/rootio_handset | https://api.github.com/repos/rootio/rootio_handset | closed | Request permissions explicitly | High Priority M9 enhancement in progress | Android now requires that apps request for permissions explicitly, as opposed to on installation.
This issue is so that permissions can be granted when the app is run for the first time or before connecting to the cloud platform | 1.0 | Request permissions explicitly - Android now requires that apps request for permissions explicitly, as opposed to on installation.
This issue is so that permissions can be granted when the app is run for the first time or before connecting to the cloud platform | priority | request permissions explicitly android now requires that apps request for permissions explicitly as opposed to on installation this issue is so that permissions can be granted when the app is run for the first time or before connecting to the cloud platform | 1 |
704,921 | 24,214,468,433 | IssuesEvent | 2022-09-26 04:50:12 | steedos/steedos-platform | https://api.github.com/repos/steedos/steedos-platform | closed | 选项卡列表添加一个批处理按钮用于自动生成整个平台所有对象类型的选项卡到数据库中 | done priority: High | - 包括自定义对象和内置对象
- 只保存到数据库中,同步为代码需要手动在dx工具中操作
- 判断到对象已经存在对应的选项卡则不新建选项卡,判断时要同时判断数据库中和代码中的选项卡
- 作废应用程序中的桌面主菜单和手机主菜单两个字段,相关功能合并到选项卡中,且不用兼容之前的老数据(即升级后需要手动操作下该issue添加的批处理按钮)
批处理按钮方案:
- 在选项卡列表页加一个按钮叫: 对象选项卡
- 点击之后弹出选择对象框,然后生成选项卡。 | 1.0 | 选项卡列表添加一个批处理按钮用于自动生成整个平台所有对象类型的选项卡到数据库中 - - 包括自定义对象和内置对象
- 只保存到数据库中,同步为代码需要手动在dx工具中操作
- 判断到对象已经存在对应的选项卡则不新建选项卡,判断时要同时判断数据库中和代码中的选项卡
- 作废应用程序中的桌面主菜单和手机主菜单两个字段,相关功能合并到选项卡中,且不用兼容之前的老数据(即升级后需要手动操作下该issue添加的批处理按钮)
批处理按钮方案:
- 在选项卡列表页加一个按钮叫: 对象选项卡
- 点击之后弹出选择对象框,然后生成选项卡。 | priority | 选项卡列表添加一个批处理按钮用于自动生成整个平台所有对象类型的选项卡到数据库中 包括自定义对象和内置对象 只保存到数据库中,同步为代码需要手动在dx工具中操作 判断到对象已经存在对应的选项卡则不新建选项卡,判断时要同时判断数据库中和代码中的选项卡 作废应用程序中的桌面主菜单和手机主菜单两个字段,相关功能合并到选项卡中,且不用兼容之前的老数据(即升级后需要手动操作下该issue添加的批处理按钮) 批处理按钮方案: 在选项卡列表页加一个按钮叫 对象选项卡 点击之后弹出选择对象框,然后生成选项卡。 | 1 |
647,308 | 21,098,343,875 | IssuesEvent | 2022-04-04 12:30:17 | AY2122S2-CS2103T-T12-4/tp | https://api.github.com/repos/AY2122S2-CS2103T-T12-4/tp | closed | [PE-D] Import does not seem to be working | priority.High | I created a csv file in the data folder as instructed in the user guide. The following is the format of the file I created based on my understanding from the User Guide:

However I get an error for missing fields when I try to import it

<!--session: 1648827210243-92e7b20c-82bc-4d13-8cbd-559147dffb67-->
<!--Version: Web v3.4.2-->
-------------
Labels: `severity.Medium` `type.FunctionalityBug`
original: Decaxical/ped#9 | 1.0 | [PE-D] Import does not seem to be working - I created a csv file in the data folder as instructed in the user guide. The following is the format of the file I created based on my understanding from the User Guide:

However I get an error for missing fields when I try to import it

<!--session: 1648827210243-92e7b20c-82bc-4d13-8cbd-559147dffb67-->
<!--Version: Web v3.4.2-->
-------------
Labels: `severity.Medium` `type.FunctionalityBug`
original: Decaxical/ped#9 | priority | import does not seem to be working i created a csv file in the data folder as instructed in the user guide the following is the format of the file i created based on my understanding from the user guide however i get an error for missing fields when i try to import it labels severity medium type functionalitybug original decaxical ped | 1 |
294,668 | 9,039,190,727 | IssuesEvent | 2019-02-10 03:31:02 | NCarranza-87/DeesCreationsAndMore | https://api.github.com/repos/NCarranza-87/DeesCreationsAndMore | opened | Implment a Paypal payment feature to the application | Priority: High Work Estimate: Unknown enhancement | If people are not wanting to use the Square payment process, use the Paypal payment process | 1.0 | Implment a Paypal payment feature to the application - If people are not wanting to use the Square payment process, use the Paypal payment process | priority | implment a paypal payment feature to the application if people are not wanting to use the square payment process use the paypal payment process | 1 |
609,244 | 18,869,437,857 | IssuesEvent | 2021-11-13 00:21:15 | bounswe/2021SpringGroup1 | https://api.github.com/repos/bounswe/2021SpringGroup1 | closed | Reconfiguring the project for MySQL usage. | Type: Enhancement Priority: High Platform: Backend | For simplicity, we initialized the database as SQLite. Even though Model class of Django abstracts the DBMS layer, we should change the database from a local SQLite database to MySQL server ASAP. To handle this task, naturally, we should first install MySQL to our local workspace and test it individually. | 1.0 | Reconfiguring the project for MySQL usage. - For simplicity, we initialized the database as SQLite. Even though Model class of Django abstracts the DBMS layer, we should change the database from a local SQLite database to MySQL server ASAP. To handle this task, naturally, we should first install MySQL to our local workspace and test it individually. | priority | reconfiguring the project for mysql usage for simplicity we initialized the database as sqlite even though model class of django abstracts the dbms layer we should change the database from a local sqlite database to mysql server asap to handle this task naturally we should first install mysql to our local workspace and test it individually | 1 |
738,602 | 25,568,632,501 | IssuesEvent | 2022-11-30 16:00:11 | argosp/trialdash | https://api.github.com/repos/argosp/trialdash | closed | Deleting an experiment/trial-set/trial/entity does not delete the correct one, but the last one in the list | bug Wait for QA Priority High | Deleting a trial does not delete the correct trial, but the last trial in the list
| 1.0 | Deleting an experiment/trial-set/trial/entity does not delete the correct one, but the last one in the list - Deleting a trial does not delete the correct trial, but the last trial in the list
| priority | deleting an experiment trial set trial entity does not delete the correct one but the last one in the list deleting a trial does not delete the correct trial but the last trial in the list | 1 |
547,242 | 16,040,646,345 | IssuesEvent | 2021-04-22 07:25:34 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.clarin.com - see bug description | browser-fenix engine-gecko ml-needsdiagnosis-false ml-probability-high priority-normal | <!-- @browser: Firefox Mobile 88.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:88.0) Gecko/88.0 Firefox/88.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/71441 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.clarin.com/
**Browser / Version**: Firefox Mobile 88.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: Scrolling is sluggish until midway through the page
**Steps to Reproduce**:
There appears to be some invisible element which lags scrolling until reaching about midway through the page.
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/4/fe97fe5e-2008-40be-bc99-9623bb0ce296.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20210410185959</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/4/8d835683-e95c-4622-ae01-b5ce30fa0e91)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.clarin.com - see bug description - <!-- @browser: Firefox Mobile 88.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:88.0) Gecko/88.0 Firefox/88.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/71441 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.clarin.com/
**Browser / Version**: Firefox Mobile 88.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: Scrolling is sluggish until midway through the page
**Steps to Reproduce**:
There appears to be some invisible element which lags scrolling until reaching about midway through the page.
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/4/fe97fe5e-2008-40be-bc99-9623bb0ce296.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20210410185959</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/4/8d835683-e95c-4622-ae01-b5ce30fa0e91)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | see bug description url browser version firefox mobile operating system android tested another browser no problem type something else description scrolling is sluggish until midway through the page steps to reproduce there appears to be some invisible element which lags scrolling until reaching about midway through the page view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
754,985 | 26,411,450,410 | IssuesEvent | 2023-01-13 12:36:54 | dmwm/WMCore | https://api.github.com/repos/dmwm/WMCore | closed | Broken production depoyment and startup for Services using MongoDBAs A Service | BUG High Priority MSOutput MSRuleCleaner MSUnmerged | **Impact of the bug**
MSRulecleaner, MSOutput, MSUnmerged
**Describe the bug**
Not a bug on our side but we need to track this in our project as well.
During today's deployment of WMCore v2.1.6 in production, we did experience some issues with all services using MongoDB As A Service (either directly or through the `MSOutput` REST interface). The services were failing to startup with the following error: [2]. The reason is not on our side but rather on the CMSWEB cluster providing the MongoDB instance for us. Here [[1]](https://cern.service-now.com/service-portal?id=ticket&table=incident&n=INC3350736) in this SNOW ticket are the details related to the broken MongoDB instance, provided by the CMSWeb Team to CERN IT in order to tackle the problem.
The issue is not related to the deployment itself. It has started on Monday and it simply went unnoticed until today. Both `MSUnmerged` and `MSOutput` do require a direct connection to the database, so they do fail with the error mentioned above, and were filling the logs with the above exceptions on every polling cycle since Monday `[09/Jan/2023:12:10:57] `, but were not failing the service itself. That's why they went unnoticed until today's deployment.
On the other hand `MSRulecleaner` does not require a direct database connection, but it uses the `MSOutput`'s REST interface to reach to the data it needs. It still fails on the very first workflow (again in every polling cycle) with [3].
The problem was also difficult to debug even during service startup today, because the output of `run.sh` with the pod's startup is not preserved anywhere. We had to figure out through old logs, from previous, days what the problem was.
Currently the services are stopped. And we are waiting for resolution on the issue with the MongoDB As A Service cluster. Upon that the actions required from us is to redeploy the three services.
The problem is not present in the `preprod` environment - the test MongoDBAsAService cluster at `mongodb-cms-test.cern.ch` s working properly.
P.S. Because the service behaves differently when losing the database at runtime vs. startup time, we may consider creating two types of alarms:
* based on the logs from the service - meaning to cover service errors of the type during runtime
* based on the presence of the service - meaning to cover service startup errors and preserve output from `run.sh`
(the `liveness` probe for the pods did not catch the broken service startup, I suspect, because `run.sh` script somewhere forks a background continuous tail process:
```
_reqmgr+ 11 0.0 0.0 5928 3524 ? S 12:32 0:00 /bin/bash /data/run.sh
_reqmgr+ 67 0.0 0.0 4324 576 ? S 12:32 0:00 \_ tail -f /etc/hosts
```
**How to reproduce it**
Try to connect to a broken MongoDBAs a Service instance with any of the services above.
**Expected behavior**
To properly alarm about broken service runs /polling cycles due to broken database connection.
**Additional context and error message**
[1]
https://cern.service-now.com/service-portal?id=ticket&table=incident&n=INC3350736
[2]
```
[10/Jan/2023:00:51:57] ms-output-574645cc45-jdgtk 127.0.0.1 "GET /ms-output/data/status HTTP/1.1" 200 OK [data: 300 in 246 out 865 us ] [auth: OK "" "" ] [ref: "" "Go-http-client/1.1" ]
2023-01-10 00:51:57,883:ERROR:MSOutput: MSOutputConsumer: Unknown exception while running Consumer thread. Error: mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused, Timeout: 30s, Topology Description: <TopologyDescription id: 6391c82406623b47ce13e5d4, topology_type: ReplicaSetNoPrimary, servers: [<ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32001) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32002) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32003) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused')>]>
Traceback (most recent call last):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSOutput/MSOutput.py", line 283, in _executeConsumer
total_num_requests = self.msOutputConsumer()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSOutput/MSOutput.py", line 526, in msOutputConsumer
for docOut in self.getDocsFromMongo(mQueryDict, dbColl, self.msConfig['limitRequestsPerCycle']):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSOutput/MSOutput.py", line 931, in getDocsFromMongo
for mongoDoc in dbColl.find(mQueryDict):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/cursor.py", line 1248, in next
if len(self.__data) or self._refresh():
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/cursor.py", line 1139, in _refresh
self.__session = self.__collection.database.client._ensure_session()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/mongo_client.py", line 1712, in _ensure_session
return self.__start_session(True, causal_consistency=False)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/mongo_client.py", line 1657, in __start_session
self._topology._check_implicit_session_support()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/topology.py", line 538, in _check_implicit_session_support
self._check_session_support()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/topology.py", line 554, in _check_session_support
self._select_servers_loop(
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/topology.py", line 238, in _select_servers_loop
raise ServerSelectionTimeoutError(
pymongo.errors.ServerSelectionTimeoutError: mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused, Timeout: 30s, Topology Description: <TopologyDescription id: 6391c82406623b47ce13e5d4, topology_type: ReplicaSetNoPrimary, servers: [<ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32001) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32002) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32003) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused')>]>
2023-01-10 00:51:57,884:INFO:MSManager: Total outputConsumer execution time: 30 secs
```
[3]
```
[09/Jan/2023:16:00:10] ms-rulecleaner-658c5d67d8-src5n 127.0.0.1 "GET /ms-rulecleaner/data/status HTTP/1.1" 200 OK [data: 305 in 306 out 1483 us ] [auth: OK "" "" ] [ref: "" "Go-http-client/1.1" ]
2023-01-09 16:00:24,561:ERROR:MSRuleCleaner: General exception while fetching TransferInfo from MSOutput for cmsunified_task_SMP-RunIISummer20UL16wmLHEGENAPV-00467__v1_T_220914_200134_906. Error: url=https://cmsweb.cern.ch:8443/ms-output/data/info?request=cmsunified_task_SMP-RunIISummer20UL16wmLHEGENAPV-00467__v1_T_220914_200134_906, code=500, reason=Internal Server Error, headers={'Date': 'Mon, 09 Jan 2023 15:00:24 GMT', 'Server': 'Apache', 'Set-Cookie': 'cms-auth=5c6c3ce006d168a543e689d6d8eaaaf4cab9086b0d5be89ef06b84a9b590a15430d0b2c6661e3266;path=/;secure;httponly;expires=Thu, 01-Jan-1970 00:00:01 GMT', 'Content-Type': 'text/html;charset=utf-8', 'Content-Length': '742', 'X-Rest-Status': '400', 'X-Error-Http': '500', 'X-Error-Id': '6077fcb5143aed42e12f002537fa6d0a', 'X-Error-Detail': 'Server error', 'X-Rest-Time': '30269808.054 us', 'CMS-Server-Time': 'D=30298678 t=1673276394250013', 'Connection': 'close'}, result=b'<!DOCTYPE html PUBLIC\n"-//W3C//DTD XHTML 1.0 Transitional//EN"\n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html>\n<head>\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>\n <title>500 Internal Server Error</title>\n <style type="text/css">\n #powered_by {\n margin-top: 20px;\n border-top: 2px solid black;\n font-style: italic;\n }\n\n #traceback {\n color: red;\n }\n </style>\n</head>\n <body>\n <h2>500 Internal Server Error</h2>\n <p>Server error</p>\n <pre id="traceback"></pre>\n <div id="powered_by">\n <span>\n Powered by <a href="http://www.cherrypy.dev">CherryPy 18.8.0</a>\n </span>\n </div>\n </body>\n</html>\n'
Traceback (most recent call last):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 624, in getMSOutputTransferInfo
res = self.curlMgr.getdata(url, params=params, headers=headers, ckey=ckey(), cert=cert())
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/Services/pycurl_manager.py", line 351, in getdata
_, data = self.request(url=url, params=params, headers=headers, verb=verb,
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/Utils/PortForward.py", line 67, in portMangle
return callFunc(callObj, newUrl, *args, **kwargs)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/Services/pycurl_manager.py", line 341, in request
raise exc
http.client.HTTPException: url=https://cmsweb.cern.ch:8443/ms-output/data/info?request=cmsunified_task_SMP-RunIISummer20UL16wmLHEGENAPV-00467__v1_T_220914_200134_906, code=500, reason=Internal Server Error, headers={'Date': 'Mon, 09 Jan 2023 15:00:24 GMT', 'Server': 'Apache', 'Set-Cookie': 'cms-auth=5c6c3ce006d168a543e689d6d8eaaaf4cab9086b0d5be89ef06b84a9b590a15430d0b2c6661e3266;path=/;secure;httponly;expires=Thu, 01-Jan-1970 00:00:01 GMT', 'Content-Type': 'text/html;charset=utf-8', 'Content-Length': '742', 'X-Rest-Status': '400', 'X-Error-Http': '500', 'X-Error-Id': '6077fcb5143aed42e12f002537fa6d0a', 'X-Error-Detail': 'Server error', 'X-Rest-Time': '30269808.054 us', 'CMS-Server-Time': 'D=30298678 t=1673276394250013', 'Connection': 'close'}, result=b'<!DOCTYPE html PUBLIC\n"-//W3C//DTD XHTML 1.0 Transitional//EN"\n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html>\n<head>\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>\n <title>500 Internal Server Error</title>\n <style type="text/css">\n #powered_by {\n margin-top: 20px;\n border-top: 2px solid black;\n font-style: italic;\n }\n\n #traceback {\n color: red;\n }\n </style>\n</head>\n <body>\n <h2>500 Internal Server Error</h2>\n <p>Server error</p>\n <pre id="traceback"></pre>\n <div id="powered_by">\n <span>\n Powered by <a href="http://www.cherrypy.dev">CherryPy 18.8.0</a>\n </span>\n </div>\n </body>\n</html>\n'
2023-01-09 16:00:24,562:ERROR:MSRuleCleaner: Unknown exception while running MSRuleCleaner thread Error: local variable 'transferInfo' referenced before assignment
Traceback (most recent call last):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 222, in execute
totalNumRequests, cleanNumRequests, normalArchivedNumRequests, forceArchivedNumRequests = self._execute(requestRecords)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 263, in _execute
self._dispatchWflow(wflow)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 296, in _dispatchWflow
self.getMSOutputTransferInfo(wflow)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 632, in getMSOutputTransferInfo
if transferInfo is None:
UnboundLocalError: local variable 'transferInfo' referenced before assignment
2023-01-09 16:00:24,563:INFO:MSManager: Total ruleCleaner execution time: 39 secs
``` | 1.0 | Broken production depoyment and startup for Services using MongoDBAs A Service - **Impact of the bug**
MSRulecleaner, MSOutput, MSUnmerged
**Describe the bug**
Not a bug on our side but we need to track this in our project as well.
During today's deployment of WMCore v2.1.6 in production, we did experience some issues with all services using MongoDB As A Service (either directly or through the `MSOutput` REST interface). The services were failing to startup with the following error: [2]. The reason is not on our side but rather on the CMSWEB cluster providing the MongoDB instance for us. Here [[1]](https://cern.service-now.com/service-portal?id=ticket&table=incident&n=INC3350736) in this SNOW ticket are the details related to the broken MongoDB instance, provided by the CMSWeb Team to CERN IT in order to tackle the problem.
The issue is not related to the deployment itself. It has started on Monday and it simply went unnoticed until today. Both `MSUnmerged` and `MSOutput` do require a direct connection to the database, so they do fail with the error mentioned above, and were filling the logs with the above exceptions on every polling cycle since Monday `[09/Jan/2023:12:10:57] `, but were not failing the service itself. That's why they went unnoticed until today's deployment.
On the other hand `MSRulecleaner` does not require a direct database connection, but it uses the `MSOutput`'s REST interface to reach to the data it needs. It still fails on the very first workflow (again in every polling cycle) with [3].
The problem was also difficult to debug even during service startup today, because the output of `run.sh` with the pod's startup is not preserved anywhere. We had to figure out through old logs, from previous, days what the problem was.
Currently the services are stopped. And we are waiting for resolution on the issue with the MongoDB As A Service cluster. Upon that the actions required from us is to redeploy the three services.
The problem is not present in the `preprod` environment - the test MongoDBAsAService cluster at `mongodb-cms-test.cern.ch` s working properly.
P.S. Because the service behaves differently when losing the database at runtime vs. startup time, we may consider creating two types of alarms:
* based on the logs from the service - meaning to cover service errors of the type during runtime
* based on the presence of the service - meaning to cover service startup errors and preserve output from `run.sh`
(the `liveness` probe for the pods did not catch the broken service startup, I suspect, because `run.sh` script somewhere forks a background continuous tail process:
```
_reqmgr+ 11 0.0 0.0 5928 3524 ? S 12:32 0:00 /bin/bash /data/run.sh
_reqmgr+ 67 0.0 0.0 4324 576 ? S 12:32 0:00 \_ tail -f /etc/hosts
```
**How to reproduce it**
Try to connect to a broken MongoDBAs a Service instance with any of the services above.
**Expected behavior**
To properly alarm about broken service runs /polling cycles due to broken database connection.
**Additional context and error message**
[1]
https://cern.service-now.com/service-portal?id=ticket&table=incident&n=INC3350736
[2]
```
[10/Jan/2023:00:51:57] ms-output-574645cc45-jdgtk 127.0.0.1 "GET /ms-output/data/status HTTP/1.1" 200 OK [data: 300 in 246 out 865 us ] [auth: OK "" "" ] [ref: "" "Go-http-client/1.1" ]
2023-01-10 00:51:57,883:ERROR:MSOutput: MSOutputConsumer: Unknown exception while running Consumer thread. Error: mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused, Timeout: 30s, Topology Description: <TopologyDescription id: 6391c82406623b47ce13e5d4, topology_type: ReplicaSetNoPrimary, servers: [<ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32001) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32002) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32003) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused')>]>
Traceback (most recent call last):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSOutput/MSOutput.py", line 283, in _executeConsumer
total_num_requests = self.msOutputConsumer()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSOutput/MSOutput.py", line 526, in msOutputConsumer
for docOut in self.getDocsFromMongo(mQueryDict, dbColl, self.msConfig['limitRequestsPerCycle']):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSOutput/MSOutput.py", line 931, in getDocsFromMongo
for mongoDoc in dbColl.find(mQueryDict):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/cursor.py", line 1248, in next
if len(self.__data) or self._refresh():
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/cursor.py", line 1139, in _refresh
self.__session = self.__collection.database.client._ensure_session()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/mongo_client.py", line 1712, in _ensure_session
return self.__start_session(True, causal_consistency=False)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/mongo_client.py", line 1657, in __start_session
self._topology._check_implicit_session_support()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/topology.py", line 538, in _check_implicit_session_support
self._check_session_support()
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/topology.py", line 554, in _check_session_support
self._select_servers_loop(
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/external/py3-pymongo/4.2.0/lib/python3.8/site-packages/pymongo/topology.py", line 238, in _select_servers_loop
raise ServerSelectionTimeoutError(
pymongo.errors.ServerSelectionTimeoutError: mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused,mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused, Timeout: 30s, Topology Description: <TopologyDescription id: 6391c82406623b47ce13e5d4, topology_type: ReplicaSetNoPrimary, servers: [<ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32001) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32001: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32002) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32002: [Errno 111] Connection refused')>, <ServerDescription ('mongodb-m7wwpbnzgide-node-0.cern.ch', 32003) server_type: Unknown, rtt: None, error=AutoReconnect('mongodb-m7wwpbnzgide-node-0.cern.ch:32003: [Errno 111] Connection refused')>]>
2023-01-10 00:51:57,884:INFO:MSManager: Total outputConsumer execution time: 30 secs
```
[3]
```
[09/Jan/2023:16:00:10] ms-rulecleaner-658c5d67d8-src5n 127.0.0.1 "GET /ms-rulecleaner/data/status HTTP/1.1" 200 OK [data: 305 in 306 out 1483 us ] [auth: OK "" "" ] [ref: "" "Go-http-client/1.1" ]
2023-01-09 16:00:24,561:ERROR:MSRuleCleaner: General exception while fetching TransferInfo from MSOutput for cmsunified_task_SMP-RunIISummer20UL16wmLHEGENAPV-00467__v1_T_220914_200134_906. Error: url=https://cmsweb.cern.ch:8443/ms-output/data/info?request=cmsunified_task_SMP-RunIISummer20UL16wmLHEGENAPV-00467__v1_T_220914_200134_906, code=500, reason=Internal Server Error, headers={'Date': 'Mon, 09 Jan 2023 15:00:24 GMT', 'Server': 'Apache', 'Set-Cookie': 'cms-auth=5c6c3ce006d168a543e689d6d8eaaaf4cab9086b0d5be89ef06b84a9b590a15430d0b2c6661e3266;path=/;secure;httponly;expires=Thu, 01-Jan-1970 00:00:01 GMT', 'Content-Type': 'text/html;charset=utf-8', 'Content-Length': '742', 'X-Rest-Status': '400', 'X-Error-Http': '500', 'X-Error-Id': '6077fcb5143aed42e12f002537fa6d0a', 'X-Error-Detail': 'Server error', 'X-Rest-Time': '30269808.054 us', 'CMS-Server-Time': 'D=30298678 t=1673276394250013', 'Connection': 'close'}, result=b'<!DOCTYPE html PUBLIC\n"-//W3C//DTD XHTML 1.0 Transitional//EN"\n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html>\n<head>\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>\n <title>500 Internal Server Error</title>\n <style type="text/css">\n #powered_by {\n margin-top: 20px;\n border-top: 2px solid black;\n font-style: italic;\n }\n\n #traceback {\n color: red;\n }\n </style>\n</head>\n <body>\n <h2>500 Internal Server Error</h2>\n <p>Server error</p>\n <pre id="traceback"></pre>\n <div id="powered_by">\n <span>\n Powered by <a href="http://www.cherrypy.dev">CherryPy 18.8.0</a>\n </span>\n </div>\n </body>\n</html>\n'
Traceback (most recent call last):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 624, in getMSOutputTransferInfo
res = self.curlMgr.getdata(url, params=params, headers=headers, ckey=ckey(), cert=cert())
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/Services/pycurl_manager.py", line 351, in getdata
_, data = self.request(url=url, params=params, headers=headers, verb=verb,
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/Utils/PortForward.py", line 67, in portMangle
return callFunc(callObj, newUrl, *args, **kwargs)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/Services/pycurl_manager.py", line 341, in request
raise exc
http.client.HTTPException: url=https://cmsweb.cern.ch:8443/ms-output/data/info?request=cmsunified_task_SMP-RunIISummer20UL16wmLHEGENAPV-00467__v1_T_220914_200134_906, code=500, reason=Internal Server Error, headers={'Date': 'Mon, 09 Jan 2023 15:00:24 GMT', 'Server': 'Apache', 'Set-Cookie': 'cms-auth=5c6c3ce006d168a543e689d6d8eaaaf4cab9086b0d5be89ef06b84a9b590a15430d0b2c6661e3266;path=/;secure;httponly;expires=Thu, 01-Jan-1970 00:00:01 GMT', 'Content-Type': 'text/html;charset=utf-8', 'Content-Length': '742', 'X-Rest-Status': '400', 'X-Error-Http': '500', 'X-Error-Id': '6077fcb5143aed42e12f002537fa6d0a', 'X-Error-Detail': 'Server error', 'X-Rest-Time': '30269808.054 us', 'CMS-Server-Time': 'D=30298678 t=1673276394250013', 'Connection': 'close'}, result=b'<!DOCTYPE html PUBLIC\n"-//W3C//DTD XHTML 1.0 Transitional//EN"\n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html>\n<head>\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>\n <title>500 Internal Server Error</title>\n <style type="text/css">\n #powered_by {\n margin-top: 20px;\n border-top: 2px solid black;\n font-style: italic;\n }\n\n #traceback {\n color: red;\n }\n </style>\n</head>\n <body>\n <h2>500 Internal Server Error</h2>\n <p>Server error</p>\n <pre id="traceback"></pre>\n <div id="powered_by">\n <span>\n Powered by <a href="http://www.cherrypy.dev">CherryPy 18.8.0</a>\n </span>\n </div>\n </body>\n</html>\n'
2023-01-09 16:00:24,562:ERROR:MSRuleCleaner: Unknown exception while running MSRuleCleaner thread Error: local variable 'transferInfo' referenced before assignment
Traceback (most recent call last):
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 222, in execute
totalNumRequests, cleanNumRequests, normalArchivedNumRequests, forceArchivedNumRequests = self._execute(requestRecords)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 263, in _execute
self._dispatchWflow(wflow)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 296, in _dispatchWflow
self.getMSOutputTransferInfo(wflow)
File "/data/srv/HG2212d/sw/slc7_amd64_gcc630/cms/reqmgr2ms/1.1.5rc7/lib/python3.8/site-packages/WMCore/MicroService/MSRuleCleaner/MSRuleCleaner.py", line 632, in getMSOutputTransferInfo
if transferInfo is None:
UnboundLocalError: local variable 'transferInfo' referenced before assignment
2023-01-09 16:00:24,563:INFO:MSManager: Total ruleCleaner execution time: 39 secs
``` | priority | broken production depoyment and startup for services using mongodbas a service impact of the bug msrulecleaner msoutput msunmerged describe the bug not a bug on our side but we need to track this in our project as well during today s deployment of wmcore in production we did experience some issues with all services using mongodb as a service either directly or through the msoutput rest interface the services were failing to startup with the following error the reason is not on our side but rather on the cmsweb cluster providing the mongodb instance for us here in this snow ticket are the details related to the broken mongodb instance provided by the cmsweb team to cern it in order to tackle the problem the issue is not related to the deployment itself it has started on monday and it simply went unnoticed until today both msunmerged and msoutput do require a direct connection to the database so they do fail with the error mentioned above and were filling the logs with the above exceptions on every polling cycle since monday but were not failing the service itself that s why they went unnoticed until today s deployment on the other hand msrulecleaner does not require a direct database connection but it uses the msoutput s rest interface to reach to the data it needs it still fails on the very first workflow again in every polling cycle with the problem was also difficult to debug even during service startup today because the output of run sh with the pod s startup is not preserved anywhere we had to figure out through old logs from previous days what the problem was currently the services are stopped and we are waiting for resolution on the issue with the mongodb as a service cluster upon that the actions required from us is to redeploy the three services the problem is not present in the preprod environment the test mongodbasaservice cluster at mongodb cms test cern ch s working properly p s because the service behaves differently when losing the database at runtime vs startup time we may consider creating two types of alarms based on the logs from the service meaning to cover service errors of the type during runtime based on the presence of the service meaning to cover service startup errors and preserve output from run sh the liveness probe for the pods did not catch the broken service startup i suspect because run sh script somewhere forks a background continuous tail process reqmgr s bin bash data run sh reqmgr s tail f etc hosts how to reproduce it try to connect to a broken mongodbas a service instance with any of the services above expected behavior to properly alarm about broken service runs polling cycles due to broken database connection additional context and error message ms output jdgtk get ms output data status http ok error msoutput msoutputconsumer unknown exception while running consumer thread error mongodb node cern ch connection refused mongodb node cern ch connection refused mongodb node cern ch connection refused timeout topology description traceback most recent call last file data srv sw cms lib site packages wmcore microservice msoutput msoutput py line in executeconsumer total num requests self msoutputconsumer file data srv sw cms lib site packages wmcore microservice msoutput msoutput py line in msoutputconsumer for docout in self getdocsfrommongo mquerydict dbcoll self msconfig file data srv sw cms lib site packages wmcore microservice msoutput msoutput py line in getdocsfrommongo for mongodoc in dbcoll find mquerydict file data srv sw external pymongo lib site packages pymongo cursor py line in next if len self data or self refresh file data srv sw external pymongo lib site packages pymongo cursor py line in refresh self session self collection database client ensure session file data srv sw external pymongo lib site packages pymongo mongo client py line in ensure session return self start session true causal consistency false file data srv sw external pymongo lib site packages pymongo mongo client py line in start session self topology check implicit session support file data srv sw external pymongo lib site packages pymongo topology py line in check implicit session support self check session support file data srv sw external pymongo lib site packages pymongo topology py line in check session support self select servers loop file data srv sw external pymongo lib site packages pymongo topology py line in select servers loop raise serverselectiontimeouterror pymongo errors serverselectiontimeouterror mongodb node cern ch connection refused mongodb node cern ch connection refused mongodb node cern ch connection refused timeout topology description info msmanager total outputconsumer execution time secs ms rulecleaner get ms rulecleaner data status http ok error msrulecleaner general exception while fetching transferinfo from msoutput for cmsunified task smp t error url code reason internal server error headers date mon jan gmt server apache set cookie cms auth path secure httponly expires thu jan gmt content type text html charset utf content length x rest status x error http x error id x error detail server error x rest time us cms server time d t connection close result b n internal server error n n powered by n margin top n border top solid black n font style italic n n n traceback n color red n n n n n internal server error n server error n n n n powered by n n n n n traceback most recent call last file data srv sw cms lib site packages wmcore microservice msrulecleaner msrulecleaner py line in getmsoutputtransferinfo res self curlmgr getdata url params params headers headers ckey ckey cert cert file data srv sw cms lib site packages wmcore services pycurl manager py line in getdata data self request url url params params headers headers verb verb file data srv sw cms lib site packages utils portforward py line in portmangle return callfunc callobj newurl args kwargs file data srv sw cms lib site packages wmcore services pycurl manager py line in request raise exc http client httpexception url code reason internal server error headers date mon jan gmt server apache set cookie cms auth path secure httponly expires thu jan gmt content type text html charset utf content length x rest status x error http x error id x error detail server error x rest time us cms server time d t connection close result b n internal server error n n powered by n margin top n border top solid black n font style italic n n n traceback n color red n n n n n internal server error n server error n n n n powered by n n n n n error msrulecleaner unknown exception while running msrulecleaner thread error local variable transferinfo referenced before assignment traceback most recent call last file data srv sw cms lib site packages wmcore microservice msrulecleaner msrulecleaner py line in execute totalnumrequests cleannumrequests normalarchivednumrequests forcearchivednumrequests self execute requestrecords file data srv sw cms lib site packages wmcore microservice msrulecleaner msrulecleaner py line in execute self dispatchwflow wflow file data srv sw cms lib site packages wmcore microservice msrulecleaner msrulecleaner py line in dispatchwflow self getmsoutputtransferinfo wflow file data srv sw cms lib site packages wmcore microservice msrulecleaner msrulecleaner py line in getmsoutputtransferinfo if transferinfo is none unboundlocalerror local variable transferinfo referenced before assignment info msmanager total rulecleaner execution time secs | 1 |
410,918 | 12,003,529,259 | IssuesEvent | 2020-04-09 09:46:45 | luna/enso | https://api.github.com/repos/luna/enso | opened | Truffle Integration for the Binary Protocol | Category: Tooling Change: Non-Breaking Difficulty: Core Contributor Priority: High Type: Enhancement | ### Summary
We need to connect up the existing execution management functionality to enable the execution of visualisations.
### Value
We have the beginnings of being able to execute visualisations.
### Specification
- [ ] The engine needs to store the visualisation functions on the truffle side.
- [ ] Adding helpers that allow for execution of those visualisers.
- [ ] Integrate these helpers with the automated recomputation functionality when new values are computed.
- [ ] Serialise the resultant data across the binary pipe.
### Acceptance Criteria & Test Cases
- The above specification has been implemented.
- The above-listed functionality has been tested.
| 1.0 | Truffle Integration for the Binary Protocol - ### Summary
We need to connect up the existing execution management functionality to enable the execution of visualisations.
### Value
We have the beginnings of being able to execute visualisations.
### Specification
- [ ] The engine needs to store the visualisation functions on the truffle side.
- [ ] Adding helpers that allow for execution of those visualisers.
- [ ] Integrate these helpers with the automated recomputation functionality when new values are computed.
- [ ] Serialise the resultant data across the binary pipe.
### Acceptance Criteria & Test Cases
- The above specification has been implemented.
- The above-listed functionality has been tested.
| priority | truffle integration for the binary protocol summary we need to connect up the existing execution management functionality to enable the execution of visualisations value we have the beginnings of being able to execute visualisations specification the engine needs to store the visualisation functions on the truffle side adding helpers that allow for execution of those visualisers integrate these helpers with the automated recomputation functionality when new values are computed serialise the resultant data across the binary pipe acceptance criteria test cases the above specification has been implemented the above listed functionality has been tested | 1 |
531,919 | 15,527,326,482 | IssuesEvent | 2021-03-13 05:25:41 | myConsciousness/reflection-test-helper | https://api.github.com/repos/myConsciousness/reflection-test-helper | closed | ReflectionFieldクラスのバグ修正 | Priority: high Problem: bug | # Bug Report
## 1. Bug Details
```java
java.lang.IllegalStateException: java.lang.IllegalArgumentException: Can not set java.lang.String field org.thinkit.test.util.TestEntityForReflectionField.testField to java.lang.Class
at org.thinkit.test.util.ReflectionField.setFieldValue(ReflectionField.java:65)
at org.thinkit.test.util.ReflectionFieldTest.testWhenValueIsNotNull(ReflectionFieldTest.java:43)
Caused by:
java.lang.IllegalArgumentException: Can not set java.lang.String field org.thinkit.test.util.TestEntityForReflectionField.testField to java.lang.Class
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:167)
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:171)
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:58)
at java.base/jdk.internal.reflect.UnsafeObjectFieldAccessorImpl.set(UnsafeObjectFieldAccessorImpl.java:75)
at java.base/java.lang.reflect.Field.set(Field.java:793)
at org.thinkit.test.util.ReflectionField.setFieldValue(ReflectionField.java:63)
... 1 more
```
## 2. What you did caused that bug
ユニットテストで `setFieldValue` を呼び出した際に発生。
## 3. How it should be
`setFieldValue` メソッドに実装ミスがある。
リフレクション処理を行っている箇所を調査する。
## 4. References
| 1.0 | ReflectionFieldクラスのバグ修正 - # Bug Report
## 1. Bug Details
```java
java.lang.IllegalStateException: java.lang.IllegalArgumentException: Can not set java.lang.String field org.thinkit.test.util.TestEntityForReflectionField.testField to java.lang.Class
at org.thinkit.test.util.ReflectionField.setFieldValue(ReflectionField.java:65)
at org.thinkit.test.util.ReflectionFieldTest.testWhenValueIsNotNull(ReflectionFieldTest.java:43)
Caused by:
java.lang.IllegalArgumentException: Can not set java.lang.String field org.thinkit.test.util.TestEntityForReflectionField.testField to java.lang.Class
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:167)
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:171)
at java.base/jdk.internal.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:58)
at java.base/jdk.internal.reflect.UnsafeObjectFieldAccessorImpl.set(UnsafeObjectFieldAccessorImpl.java:75)
at java.base/java.lang.reflect.Field.set(Field.java:793)
at org.thinkit.test.util.ReflectionField.setFieldValue(ReflectionField.java:63)
... 1 more
```
## 2. What you did caused that bug
ユニットテストで `setFieldValue` を呼び出した際に発生。
## 3. How it should be
`setFieldValue` メソッドに実装ミスがある。
リフレクション処理を行っている箇所を調査する。
## 4. References
| priority | reflectionfieldクラスのバグ修正 bug report bug details java java lang illegalstateexception java lang illegalargumentexception can not set java lang string field org thinkit test util testentityforreflectionfield testfield to java lang class at org thinkit test util reflectionfield setfieldvalue reflectionfield java at org thinkit test util reflectionfieldtest testwhenvalueisnotnull reflectionfieldtest java caused by java lang illegalargumentexception can not set java lang string field org thinkit test util testentityforreflectionfield testfield to java lang class at java base jdk internal reflect unsafefieldaccessorimpl throwsetillegalargumentexception unsafefieldaccessorimpl java at java base jdk internal reflect unsafefieldaccessorimpl throwsetillegalargumentexception unsafefieldaccessorimpl java at java base jdk internal reflect unsafefieldaccessorimpl ensureobj unsafefieldaccessorimpl java at java base jdk internal reflect unsafeobjectfieldaccessorimpl set unsafeobjectfieldaccessorimpl java at java base java lang reflect field set field java at org thinkit test util reflectionfield setfieldvalue reflectionfield java more what you did caused that bug ユニットテストで setfieldvalue を呼び出した際に発生。 how it should be setfieldvalue メソッドに実装ミスがある。 リフレクション処理を行っている箇所を調査する。 references | 1 |
186,617 | 6,737,183,317 | IssuesEvent | 2017-10-19 08:28:10 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | Style selector for WMS layers | enhancement Priority: High user story | The tab "Styles" should show the available styles from capabilities when available.
When you have the single layer capabilities, (as from the catalog) the styles list should be load from the single layer capabilities on tab open.
| 1.0 | Style selector for WMS layers - The tab "Styles" should show the available styles from capabilities when available.
When you have the single layer capabilities, (as from the catalog) the styles list should be load from the single layer capabilities on tab open.
| priority | style selector for wms layers the tab styles should show the available styles from capabilities when available when you have the single layer capabilities as from the catalog the styles list should be load from the single layer capabilities on tab open | 1 |
811,516 | 30,290,992,612 | IssuesEvent | 2023-07-09 09:25:30 | svengreb/wand | https://api.github.com/repos/svengreb/wand | closed | Double task execution with `quiet` runner option | type-bug context-config priority-high | When the [`WithRunnerQuiet` option][1] of the [`golang` runner][3] or [`WithQuiet` option][2] of the [`gotool` runner][4] is set to `true`, the task passed to their [`Run` method][5] will run twice. This is caused by a missing return statement when the execution finishes with a `error` of value `nil` [^1] [^2].
To fix this bug both code blocks must return early with `nil` instead of keep going on in the code flow.
[1]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/golang#WithRunnerQuiet
[2]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/gotool#WithQuiet
[3]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/golang#Runner
[4]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/gotool#Runner
[5]: https://pkg.go.dev/github.com/svengreb/wand/pkg/task@v0.8.0#Runner.Run
[^1]: https://github.com/svengreb/wand/blob/v0.8.0/pkg/task/golang/golang.go#L43-L50
[^2]: https://github.com/svengreb/wand/blob/v0.8.0/pkg/task/gotool/gotool.go#L218-L225 | 1.0 | Double task execution with `quiet` runner option - When the [`WithRunnerQuiet` option][1] of the [`golang` runner][3] or [`WithQuiet` option][2] of the [`gotool` runner][4] is set to `true`, the task passed to their [`Run` method][5] will run twice. This is caused by a missing return statement when the execution finishes with a `error` of value `nil` [^1] [^2].
To fix this bug both code blocks must return early with `nil` instead of keep going on in the code flow.
[1]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/golang#WithRunnerQuiet
[2]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/gotool#WithQuiet
[3]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/golang#Runner
[4]: https://pkg.go.dev/github.com/svengreb/wand@v0.8.0/pkg/task/gotool#Runner
[5]: https://pkg.go.dev/github.com/svengreb/wand/pkg/task@v0.8.0#Runner.Run
[^1]: https://github.com/svengreb/wand/blob/v0.8.0/pkg/task/golang/golang.go#L43-L50
[^2]: https://github.com/svengreb/wand/blob/v0.8.0/pkg/task/gotool/gotool.go#L218-L225 | priority | double task execution with quiet runner option when the of the or of the is set to true the task passed to their will run twice this is caused by a missing return statement when the execution finishes with a error of value nil to fix this bug both code blocks must return early with nil instead of keep going on in the code flow | 1 |
505,210 | 14,629,807,909 | IssuesEvent | 2020-12-23 16:30:07 | sandialabs/slycat | https://api.github.com/repos/sandialabs/slycat | opened | Rubberbanding fails to register button up event (Firefox on Mac) in Parameter Space model | High Priority PS Model bug | Once a rubberbanding operation is started, the button up event is lost and the operation cannot be completed, nor can it be exited. | 1.0 | Rubberbanding fails to register button up event (Firefox on Mac) in Parameter Space model - Once a rubberbanding operation is started, the button up event is lost and the operation cannot be completed, nor can it be exited. | priority | rubberbanding fails to register button up event firefox on mac in parameter space model once a rubberbanding operation is started the button up event is lost and the operation cannot be completed nor can it be exited | 1 |
124,996 | 4,940,061,247 | IssuesEvent | 2016-11-29 15:55:51 | MinetestForFun/server-minetestforfun-skyblock | https://api.github.com/repos/MinetestForFun/server-minetestforfun-skyblock | opened | Problem with too similar nicknames | Modding ➤ BugFix Priority: High | > From MrBacon/Vault :
> I'm not sure if u had a message or not from vault about one of my accounts but I can't seem to access it as it's saying it too similar to someone else's but it's called APileOfRocks, atm since that I have been on APileOfRocks_ and it hasn't shown that message yet
It's not the first time I saw this kind of issues.
One day, a player can't login because an another player create an account with a name too near his name. | 1.0 | Problem with too similar nicknames - > From MrBacon/Vault :
> I'm not sure if u had a message or not from vault about one of my accounts but I can't seem to access it as it's saying it too similar to someone else's but it's called APileOfRocks, atm since that I have been on APileOfRocks_ and it hasn't shown that message yet
It's not the first time I saw this kind of issues.
One day, a player can't login because an another player create an account with a name too near his name. | priority | problem with too similar nicknames from mrbacon vault i m not sure if u had a message or not from vault about one of my accounts but i can t seem to access it as it s saying it too similar to someone else s but it s called apileofrocks atm since that i have been on apileofrocks and it hasn t shown that message yet it s not the first time i saw this kind of issues one day a player can t login because an another player create an account with a name too near his name | 1 |
111,127 | 4,461,948,340 | IssuesEvent | 2016-08-24 08:06:47 | Atlantiss/BugTracker | https://api.github.com/repos/Atlantiss/BugTracker | closed | [EN][Quest][Legendary] On a wing and a prayer | High Priority New Content Quest - Cata | upon accepting the quest, there should be an animation and a object (http://www.wowhead.com/object=208430/timeless-eye) should spawn with a quest item (http://www.wowhead.com/item=69238/timeless-eye#comments) lootable from it. Upon entering coldarra zone with this item a cut scene should play, and the player should be teleported to a npc (http://www.wowhead.com/npc=52835/tarecgosa)
It doesn't work and I assume further quests don't work as well
| 1.0 | [EN][Quest][Legendary] On a wing and a prayer - upon accepting the quest, there should be an animation and a object (http://www.wowhead.com/object=208430/timeless-eye) should spawn with a quest item (http://www.wowhead.com/item=69238/timeless-eye#comments) lootable from it. Upon entering coldarra zone with this item a cut scene should play, and the player should be teleported to a npc (http://www.wowhead.com/npc=52835/tarecgosa)
It doesn't work and I assume further quests don't work as well
| priority | on a wing and a prayer upon accepting the quest there should be an animation and a object should spawn with a quest item lootable from it upon entering coldarra zone with this item a cut scene should play and the player should be teleported to a npc it doesn t work and i assume further quests don t work as well | 1 |
783,664 | 27,540,608,747 | IssuesEvent | 2023-03-07 08:16:31 | teambit/bit | https://api.github.com/repos/teambit/bit | closed | Bit not respecting authToken in .npmrc | type/feature priority/high | ### Describe the bug
When an _authToken is set in the .npmrc file this is not respected by the bit install/bit tag commands.
### Steps to Reproduce
1. Publish private package to npm
1. Add token to .npmrc to access token. ```//registry.npmjs.org/:_authToken=${NPM_TOKEN}```
1. Use yarn or npm to install the private package - this should work as expected
1. type bit install to install all of the bit dependencies - this will fail with 404 error on the private package.
### Expected Behavior
Should install the package from npm
### Specifications
* Bit version: 0.0.389
* Node version: 14.15.1
* yarn version: 1.22.10
* Platform: OSX
| 1.0 | Bit not respecting authToken in .npmrc - ### Describe the bug
When an _authToken is set in the .npmrc file this is not respected by the bit install/bit tag commands.
### Steps to Reproduce
1. Publish private package to npm
1. Add token to .npmrc to access token. ```//registry.npmjs.org/:_authToken=${NPM_TOKEN}```
1. Use yarn or npm to install the private package - this should work as expected
1. type bit install to install all of the bit dependencies - this will fail with 404 error on the private package.
### Expected Behavior
Should install the package from npm
### Specifications
* Bit version: 0.0.389
* Node version: 14.15.1
* yarn version: 1.22.10
* Platform: OSX
| priority | bit not respecting authtoken in npmrc describe the bug when an authtoken is set in the npmrc file this is not respected by the bit install bit tag commands steps to reproduce publish private package to npm add token to npmrc to access token registry npmjs org authtoken npm token use yarn or npm to install the private package this should work as expected type bit install to install all of the bit dependencies this will fail with error on the private package expected behavior should install the package from npm specifications bit version node version yarn version platform osx | 1 |
147,120 | 5,634,165,156 | IssuesEvent | 2017-04-05 20:40:18 | devops-alpha-s17/customers | https://api.github.com/repos/devops-alpha-s17/customers | closed | Create a new action to remove all customers from the database | enhancement task Very high priority | As a product owner
I want a new action "Flush all customers"
so that if any changes are made to the field structure of the customer class or if the data gets corrupted, we can flush the data to get rid of corrupt data
Assumptions:
A new flask route must be created in server.py file to support the following format:
http://nyu-customers-service-alpha.mybluemix.net/customers/flushall
Acceptance criterion
Being able to remove all customers from the database | 1.0 | Create a new action to remove all customers from the database - As a product owner
I want a new action "Flush all customers"
so that if any changes are made to the field structure of the customer class or if the data gets corrupted, we can flush the data to get rid of corrupt data
Assumptions:
A new flask route must be created in server.py file to support the following format:
http://nyu-customers-service-alpha.mybluemix.net/customers/flushall
Acceptance criterion
Being able to remove all customers from the database | priority | create a new action to remove all customers from the database as a product owner i want a new action flush all customers so that if any changes are made to the field structure of the customer class or if the data gets corrupted we can flush the data to get rid of corrupt data assumptions a new flask route must be created in server py file to support the following format acceptance criterion being able to remove all customers from the database | 1 |
425,790 | 12,359,134,166 | IssuesEvent | 2020-05-17 09:26:42 | agv-polsl/ekf-ahrs | https://api.github.com/repos/agv-polsl/ekf-ahrs | closed | Yaw doesn't match reference data | bug priority: high | But the compensation formula has been checked multiple times and seem ok so the reference may be faulty. | 1.0 | Yaw doesn't match reference data - But the compensation formula has been checked multiple times and seem ok so the reference may be faulty. | priority | yaw doesn t match reference data but the compensation formula has been checked multiple times and seem ok so the reference may be faulty | 1 |
830,253 | 31,998,322,856 | IssuesEvent | 2023-09-21 10:36:03 | ubiquity/ubiquibot-telegram | https://api.github.com/repos/ubiquity/ubiquibot-telegram | reopened | Update README.md - September 2023 | Time: <1 Hour Priority: 3 (High) Price: 37.5 USD | @seprintour you should update and add all the setup steps in a README, particularly the bot settings on `@BotFather`, so that future developers can set up and work on the bot. | 1.0 | Update README.md - September 2023 - @seprintour you should update and add all the setup steps in a README, particularly the bot settings on `@BotFather`, so that future developers can set up and work on the bot. | priority | update readme md september seprintour you should update and add all the setup steps in a readme particularly the bot settings on botfather so that future developers can set up and work on the bot | 1 |
720,535 | 24,796,293,030 | IssuesEvent | 2022-10-24 17:34:11 | ethereum/ethereum-org-website | https://api.github.com/repos/ethereum/ethereum-org-website | closed | Q3 2022 ethereum.org product roadmap | feature :sparkles: Status: In Progress high priority | *To make our work more accessible and to foster more community collaboration, our team publishes an overview of our quarterly roadmap goals. See last quarter's roadmap here: #6161.*
**Greetings fellow Ethereans!**
[Our vision with ethereum.org](https://ethereum.org/en/about/) continues to be to create the best portal for Ethereum's growing community. We’re an educational resource focused on helping onboard millions of visitors to Ethereum each month. Here's a look at our major Q3 initiatives to advance this vision.
Quick point of clarification: ***this is the roadmap for [ethereum.org](http://ethereum.org/) the website, not Ethereum the protocol***. If you’re looking for the Ethereum roadmap, check out information on [upcoming network upgrades](https://ethereum.org/en/upgrades/) and learn more about [Ethereum governance](https://ethereum.org/en/governance/).
With that out of the way, let’s dive in.
# The must-haves
*The epics our core team is committing to shipping this quarter.*
## 🔀 Post-Merge prep
Core Ethereum developers are in the final stages of testing and preparing for [The Merge](https://ethereum.org/en/upgrades/merge/). Last quarter we shipped updates across [ethereum.org](http://ethereum.org) (#6281) and the [Ethereum Staking Launchpad](https://launchpad.ethereum.org/en/) (https://github.com/ethereum/staking-launchpad/pull/493) to help prepare our community for this Ethereum protocol upgrade. These updates handled all pre-merge updates: content changes that can be made **_before_** The Merge takes place.
This quarter we’re turning our focus to post-merge content updates: content changes that should be rolled out **_after_** Ethereum completes The Merge successfully. In a similar fashion, we’ll run a [page-by-page audit](https://docs.google.com/spreadsheets/d/1Nisi3_FY8nwOlLwPsTPm0jlgtAhypH0-pjatGDMSz7M/edit#gid=0) of ethereum.org and the Ethereum Staking Launchpad and rollout updates across both sites. We’ll also work to identify and fill gaps in site content - topics we should cover in a post-Merge world.
Want to get involved? Join the conversation in our [#merge-prep Discord channel](https://discord.gg/aEgUGmEHUT).
## 🌏 Translate the EF blog
We'll finish the site rebuild we started in Q2 and deploy a fresh blog codebase with internationalization support this quarter.
The blog repo is currently private, so not much to share at this point, but we're hoping to open source the codebase as part of the launch. In the meantime, you can view our [design updates](https://www.figma.com/file/PmoL6wNs8ck8H3OuUvUItj/EF-blog?node-id=0%3A1) and test out the [latest preview deploys](https://thunderous-stroopwafel-2488b4.netlify.app/). Feedback is always welcome - feel free to comment directly in Figma or join the conversation in Discord.
After launch, we'll publish a blog post detailing how to get involved with the community translations, so stay tuned!
## 🎨 Open design system
The open design system is and will continue to be an ongoing effort that we kicked off in Q2. The design system will help establish and document our design language, which anyone in the community can use to create reusable resources. The aim here is to increase our UI's consistency and productivity for our design and development community.
In Q2, we mapped and divided our roadmap for the design system into 1) foundations, 2) components, and 3) layouts. With the foundations in place, in Q3, we’ll focus on building reusable components that help make layouts.
These components will be divided into two buckets:
1. Base components: small elements that can be used in different positions and can be forms, buttons, navigation, and cards.
2. Composed components: combinations of various base components that form the core of layouts, including header, footer, and page hero.
By the end of the quarter, we will release a new update to the design system ready with some base layouts made out of combinations of components. We’re aiming to have a base layout, a markdown layout, a use case page layout, and the homepage.
Want to get involved? [Follow along in Figma ](https://www.figma.com/file/NrNxGjBL0Yl1PrNrOT8G2B/ethereum.org-Design-System) and join the conversation in our [#design Discord channel](https://discord.gg/bKycYhVUwV).
## 🖥 Implement UI library
Another Q2 carryover initiative (#6374) closely tied to the design system - to improve our code quality, improve productivity, website accessibility and overall UX, we’re adding a UI library to our codebase.
We’ll kick off the implementation work this quarter and start rolling out [Chakra UI](https://chakra-ui.com/) components across the codebase. This is a significant undertaking, which will likely involve large refactors to clean up duplicate code and to integrate the new design system that we expect to be working on into Q4.
Want to get involved? Join the conversation in [our #website-code Discord channel](https://discord.gg/7WKTFRARe5).
## 🦔 Build a new Geth website
The current Geth site ([geth.ethereum.org](https://geth.ethereum.org/)) has served its purpose for a long while but is far from perfect - it contains some out-of-date and incomplete information, lacks modern website features like built-in search and the overall aesthetics lack a modern look that undersells what Geth has become - a core piece of Ethereum infrastructure and public good for the ecosystem.
This quarter we’ll kick off design, content, and code to build a new Geth site. We plan to provide expanded educational information, accurate and robust documentation, and a modern design fitting for such a crucial resource in the space.
## 💖 Implement HEART framework
The HEART framework is a well-established, proven, UX-focused methodology to improve software products. We plan to apply the HEART framework to different user groups and aspects of our products, starting in Q3 with the translation program.
We’ll implement the HEART framework across all aspects of this contributor funnel - Happiness, Engagement, Adoption, Retention, and Task success. We’ll pull data, surface insights, and identify key takeaways that will guide our operation and product priorities for the translation program next quarter. With the translation program as a testing ground, we’ll also consider applying the HEART framework more broadly across all our contributor and end-user funnels.
Want to get involved? Join the conversation in [our #translate Discord channel](https://discord.gg/bTCfS8C).
## 💰 Wallet upgrades
In Q2, we revamped our [Find Wallet page](https://ethereum.org/wallets/find-wallet) (#6274).
While this was a large release that introduced substantial enhancements to the data gathered on wallets and how users can filter and find an Ethereum wallet, there are still remaining features and cleanup items that we identified to improve the find wallet page. This quarter we’ll continue introducing additional improvements that were scoped out of the initial release.
Want to get involved? Join the conversation in our [#wallets Discord channel](https://discord.gg/aQEq7GQsgE).
## 💯 Learning quizzes
Many aspects of Ethereum are complex and can be difficult to grasp. A great way to ensure important content is understood is by immediately testing knowledge after it is presented. We’ll introduce optional quizzes across [ethereum.org](http://ethereum.org/) pages to ensure that readers grasp the essential concepts to allow them to be meaningful participants in the Ethereum ecosystem. Along with our feedback surveys, we expect these quizzes to drive insights into how to improve our content resources further.
Over the long term, we envision this will set the foundation for more structured, sequential learning resources (perhaps with web3 gamification) on ethereum.org.
## 🗣️ User insights
Last quarter we shipped a new feedback widget (#6252) integrated with custom surveys across all pages on [ethereum.org](http://ethereum.org) and started collecting data. This quarter we will focus on validating and analyzing your responses and formulating useful insights to improve our site. We’ll build reports and consider how we might publish research findings as a public good to the Ethereum product community. We will also use this data to influence our content strategy decisions and priorities.
Want to get involved? Join the conversation in our [#design Discord channel](https://discord.gg/bKycYhVUwV).
## 🌍 Revamp translation program resources
The [Translation Program page](https://ethereum.org/en/contributing/translation-program/) is dedicated to the [ethereum.org](http://ethereum.org) Translation Program and contains key information on what the program is, how to get involved, how to succeed as a translator and even guides on building out your own translation initiative.
It’s been constantly growing in size and value but lacks structure. We’ll review the information architecture and user flow on the page, break out some sections into dedicated subpages, create subpages for other web properties that we are translating (specifically the [Staking Launchpad](https://launchpad.ethereum.org/en/) and the [EF blog](https://blog.ethereum.org/)), and refresh the information on the page.
Want to get involved? Join the conversation in [our #translate Discord channel](https://discord.gg/bTCfS8C).
# The nice-to-haves
*These epics are up next on our priority list. We’re not committing to shipping anything this quarter, but we plan to make progress on these and want to share these publicly so the community can give input and get involved!*
## 🏫 Ethereum for educators
We’re narrowing in on how to best build resources for educators looking to teach about Ethereum. In Q2, we collected a lot of resources for educators - like university courses, case studies, and open access academic papers - and actively engaged with academics for their feedback, ideas, and input. This quarter we hope to pick up the work to design and build a page to offer these free resources to teachers and learners across the globe.
Want to get involved? Join the conversation on #6283 or in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 📖 Content strategy
Thanks to the incredible contributions from hundreds of community members, we’ve created a large swath of excellent educational resources on ethereum.org. However, we still have gaps in our content where we are not addressing some fundamental questions about how Ethereum works. Meanwhile great new content ideas constantly surface in our Discord and on GitHub but we don’t yet have a solid framework on how to prioritize these within our content roadmap.
Through SEO tools and manual content auditing, we’re aimig to identify such gaps and build an editorial calendar that helps prioritize content opportunities by their impact, allowing us to create more critical content faster.
Want to get involved? Join the conversation in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 🪜 Restructure documentation
With the help of a community of technical content contributors, our developer documentation resources have exploded to nearly 100 pages. These resources live within a site structure that was originally targeted at web3 dapp developers yet over time, we’ve received feedback that many resources are useful to a broad range of visitors - hobbyists, designers, node operators, end-users, economists, entrepreneurs, and more user types beyond pure “developers”.
This quarter we hope to rethink the overall information architecture of our documentation to best support a broader base of users and to ensure we surface key information that is often buried deep within technical topics.
Want to get involved? Join the conversation in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 💰 Wallet resources
Through our recent work on our new Find Wallet page (#6274), we surfaced opportunities to improve and expand the educational resources on the world of Ethereum wallets, which are critical onboarding products to all Ethereum users.
We’ll work to expand our content around wallets, such as explainers on self-custody and how keys work, resources on the different kinds of accounts (EOAs vs. contracts), and the respective wallet interfaces they can use (private-key wallet, smart contract wallet, and MPC wallets).
Want to get involved? Join the conversation in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 🎡 JSON-RPC playground
The [JSON-RPC API](https://ethereum.org/en/developers/docs/apis/json-rpc/) is a crucial list of endpoints provided by all Ethereum clients yet is not widely or consistently documented. Several folks have been working valiantly to improve the state of affairs, building out new resources such as the [specification](https://github.com/ethereum/execution-apis/) and the [interactive playground](https://ethereum.github.io/execution-apis/api-documentation/).
These resources are a great start, and we’d like to help push things forward. We’re hoping to work with @lightclient and other community members to improve the JSON-RPC playground, allowing developers to find, learn about, and test various endpoints to build products for end-users. We’re hoping these efforts will improve the lives of client teams, dapp and infrastructure developers, and end-users across the Ethereum ecosystem.
Want to get involved? Join the conversation in the [#json-rpc-api channel of the Eth R&D Discord](https://discord.gg/NJW4BJe3XZ).
# How does that sound?
We always appreciate feedback on our roadmap - if there's something you think we should work on, please let us know! We welcome ideas and PRs from anyone in the community.
Get involved: [Learn more about contributing](https://ethereum.org/en/contributing/), [hit us up on Twitter](https://twitter.com/ethdotorg), or join the community discussions in [our Discord](https://discord.gg/CetY6Y4). | 1.0 | Q3 2022 ethereum.org product roadmap - *To make our work more accessible and to foster more community collaboration, our team publishes an overview of our quarterly roadmap goals. See last quarter's roadmap here: #6161.*
**Greetings fellow Ethereans!**
[Our vision with ethereum.org](https://ethereum.org/en/about/) continues to be to create the best portal for Ethereum's growing community. We’re an educational resource focused on helping onboard millions of visitors to Ethereum each month. Here's a look at our major Q3 initiatives to advance this vision.
Quick point of clarification: ***this is the roadmap for [ethereum.org](http://ethereum.org/) the website, not Ethereum the protocol***. If you’re looking for the Ethereum roadmap, check out information on [upcoming network upgrades](https://ethereum.org/en/upgrades/) and learn more about [Ethereum governance](https://ethereum.org/en/governance/).
With that out of the way, let’s dive in.
# The must-haves
*The epics our core team is committing to shipping this quarter.*
## 🔀 Post-Merge prep
Core Ethereum developers are in the final stages of testing and preparing for [The Merge](https://ethereum.org/en/upgrades/merge/). Last quarter we shipped updates across [ethereum.org](http://ethereum.org) (#6281) and the [Ethereum Staking Launchpad](https://launchpad.ethereum.org/en/) (https://github.com/ethereum/staking-launchpad/pull/493) to help prepare our community for this Ethereum protocol upgrade. These updates handled all pre-merge updates: content changes that can be made **_before_** The Merge takes place.
This quarter we’re turning our focus to post-merge content updates: content changes that should be rolled out **_after_** Ethereum completes The Merge successfully. In a similar fashion, we’ll run a [page-by-page audit](https://docs.google.com/spreadsheets/d/1Nisi3_FY8nwOlLwPsTPm0jlgtAhypH0-pjatGDMSz7M/edit#gid=0) of ethereum.org and the Ethereum Staking Launchpad and rollout updates across both sites. We’ll also work to identify and fill gaps in site content - topics we should cover in a post-Merge world.
Want to get involved? Join the conversation in our [#merge-prep Discord channel](https://discord.gg/aEgUGmEHUT).
## 🌏 Translate the EF blog
We'll finish the site rebuild we started in Q2 and deploy a fresh blog codebase with internationalization support this quarter.
The blog repo is currently private, so not much to share at this point, but we're hoping to open source the codebase as part of the launch. In the meantime, you can view our [design updates](https://www.figma.com/file/PmoL6wNs8ck8H3OuUvUItj/EF-blog?node-id=0%3A1) and test out the [latest preview deploys](https://thunderous-stroopwafel-2488b4.netlify.app/). Feedback is always welcome - feel free to comment directly in Figma or join the conversation in Discord.
After launch, we'll publish a blog post detailing how to get involved with the community translations, so stay tuned!
## 🎨 Open design system
The open design system is and will continue to be an ongoing effort that we kicked off in Q2. The design system will help establish and document our design language, which anyone in the community can use to create reusable resources. The aim here is to increase our UI's consistency and productivity for our design and development community.
In Q2, we mapped and divided our roadmap for the design system into 1) foundations, 2) components, and 3) layouts. With the foundations in place, in Q3, we’ll focus on building reusable components that help make layouts.
These components will be divided into two buckets:
1. Base components: small elements that can be used in different positions and can be forms, buttons, navigation, and cards.
2. Composed components: combinations of various base components that form the core of layouts, including header, footer, and page hero.
By the end of the quarter, we will release a new update to the design system ready with some base layouts made out of combinations of components. We’re aiming to have a base layout, a markdown layout, a use case page layout, and the homepage.
Want to get involved? [Follow along in Figma ](https://www.figma.com/file/NrNxGjBL0Yl1PrNrOT8G2B/ethereum.org-Design-System) and join the conversation in our [#design Discord channel](https://discord.gg/bKycYhVUwV).
## 🖥 Implement UI library
Another Q2 carryover initiative (#6374) closely tied to the design system - to improve our code quality, improve productivity, website accessibility and overall UX, we’re adding a UI library to our codebase.
We’ll kick off the implementation work this quarter and start rolling out [Chakra UI](https://chakra-ui.com/) components across the codebase. This is a significant undertaking, which will likely involve large refactors to clean up duplicate code and to integrate the new design system that we expect to be working on into Q4.
Want to get involved? Join the conversation in [our #website-code Discord channel](https://discord.gg/7WKTFRARe5).
## 🦔 Build a new Geth website
The current Geth site ([geth.ethereum.org](https://geth.ethereum.org/)) has served its purpose for a long while but is far from perfect - it contains some out-of-date and incomplete information, lacks modern website features like built-in search and the overall aesthetics lack a modern look that undersells what Geth has become - a core piece of Ethereum infrastructure and public good for the ecosystem.
This quarter we’ll kick off design, content, and code to build a new Geth site. We plan to provide expanded educational information, accurate and robust documentation, and a modern design fitting for such a crucial resource in the space.
## 💖 Implement HEART framework
The HEART framework is a well-established, proven, UX-focused methodology to improve software products. We plan to apply the HEART framework to different user groups and aspects of our products, starting in Q3 with the translation program.
We’ll implement the HEART framework across all aspects of this contributor funnel - Happiness, Engagement, Adoption, Retention, and Task success. We’ll pull data, surface insights, and identify key takeaways that will guide our operation and product priorities for the translation program next quarter. With the translation program as a testing ground, we’ll also consider applying the HEART framework more broadly across all our contributor and end-user funnels.
Want to get involved? Join the conversation in [our #translate Discord channel](https://discord.gg/bTCfS8C).
## 💰 Wallet upgrades
In Q2, we revamped our [Find Wallet page](https://ethereum.org/wallets/find-wallet) (#6274).
While this was a large release that introduced substantial enhancements to the data gathered on wallets and how users can filter and find an Ethereum wallet, there are still remaining features and cleanup items that we identified to improve the find wallet page. This quarter we’ll continue introducing additional improvements that were scoped out of the initial release.
Want to get involved? Join the conversation in our [#wallets Discord channel](https://discord.gg/aQEq7GQsgE).
## 💯 Learning quizzes
Many aspects of Ethereum are complex and can be difficult to grasp. A great way to ensure important content is understood is by immediately testing knowledge after it is presented. We’ll introduce optional quizzes across [ethereum.org](http://ethereum.org/) pages to ensure that readers grasp the essential concepts to allow them to be meaningful participants in the Ethereum ecosystem. Along with our feedback surveys, we expect these quizzes to drive insights into how to improve our content resources further.
Over the long term, we envision this will set the foundation for more structured, sequential learning resources (perhaps with web3 gamification) on ethereum.org.
## 🗣️ User insights
Last quarter we shipped a new feedback widget (#6252) integrated with custom surveys across all pages on [ethereum.org](http://ethereum.org) and started collecting data. This quarter we will focus on validating and analyzing your responses and formulating useful insights to improve our site. We’ll build reports and consider how we might publish research findings as a public good to the Ethereum product community. We will also use this data to influence our content strategy decisions and priorities.
Want to get involved? Join the conversation in our [#design Discord channel](https://discord.gg/bKycYhVUwV).
## 🌍 Revamp translation program resources
The [Translation Program page](https://ethereum.org/en/contributing/translation-program/) is dedicated to the [ethereum.org](http://ethereum.org) Translation Program and contains key information on what the program is, how to get involved, how to succeed as a translator and even guides on building out your own translation initiative.
It’s been constantly growing in size and value but lacks structure. We’ll review the information architecture and user flow on the page, break out some sections into dedicated subpages, create subpages for other web properties that we are translating (specifically the [Staking Launchpad](https://launchpad.ethereum.org/en/) and the [EF blog](https://blog.ethereum.org/)), and refresh the information on the page.
Want to get involved? Join the conversation in [our #translate Discord channel](https://discord.gg/bTCfS8C).
# The nice-to-haves
*These epics are up next on our priority list. We’re not committing to shipping anything this quarter, but we plan to make progress on these and want to share these publicly so the community can give input and get involved!*
## 🏫 Ethereum for educators
We’re narrowing in on how to best build resources for educators looking to teach about Ethereum. In Q2, we collected a lot of resources for educators - like university courses, case studies, and open access academic papers - and actively engaged with academics for their feedback, ideas, and input. This quarter we hope to pick up the work to design and build a page to offer these free resources to teachers and learners across the globe.
Want to get involved? Join the conversation on #6283 or in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 📖 Content strategy
Thanks to the incredible contributions from hundreds of community members, we’ve created a large swath of excellent educational resources on ethereum.org. However, we still have gaps in our content where we are not addressing some fundamental questions about how Ethereum works. Meanwhile great new content ideas constantly surface in our Discord and on GitHub but we don’t yet have a solid framework on how to prioritize these within our content roadmap.
Through SEO tools and manual content auditing, we’re aimig to identify such gaps and build an editorial calendar that helps prioritize content opportunities by their impact, allowing us to create more critical content faster.
Want to get involved? Join the conversation in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 🪜 Restructure documentation
With the help of a community of technical content contributors, our developer documentation resources have exploded to nearly 100 pages. These resources live within a site structure that was originally targeted at web3 dapp developers yet over time, we’ve received feedback that many resources are useful to a broad range of visitors - hobbyists, designers, node operators, end-users, economists, entrepreneurs, and more user types beyond pure “developers”.
This quarter we hope to rethink the overall information architecture of our documentation to best support a broader base of users and to ensure we surface key information that is often buried deep within technical topics.
Want to get involved? Join the conversation in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 💰 Wallet resources
Through our recent work on our new Find Wallet page (#6274), we surfaced opportunities to improve and expand the educational resources on the world of Ethereum wallets, which are critical onboarding products to all Ethereum users.
We’ll work to expand our content around wallets, such as explainers on self-custody and how keys work, resources on the different kinds of accounts (EOAs vs. contracts), and the respective wallet interfaces they can use (private-key wallet, smart contract wallet, and MPC wallets).
Want to get involved? Join the conversation in our [#content Discord channel](https://discord.gg/nZsD6hTxff).
## 🎡 JSON-RPC playground
The [JSON-RPC API](https://ethereum.org/en/developers/docs/apis/json-rpc/) is a crucial list of endpoints provided by all Ethereum clients yet is not widely or consistently documented. Several folks have been working valiantly to improve the state of affairs, building out new resources such as the [specification](https://github.com/ethereum/execution-apis/) and the [interactive playground](https://ethereum.github.io/execution-apis/api-documentation/).
These resources are a great start, and we’d like to help push things forward. We’re hoping to work with @lightclient and other community members to improve the JSON-RPC playground, allowing developers to find, learn about, and test various endpoints to build products for end-users. We’re hoping these efforts will improve the lives of client teams, dapp and infrastructure developers, and end-users across the Ethereum ecosystem.
Want to get involved? Join the conversation in the [#json-rpc-api channel of the Eth R&D Discord](https://discord.gg/NJW4BJe3XZ).
# How does that sound?
We always appreciate feedback on our roadmap - if there's something you think we should work on, please let us know! We welcome ideas and PRs from anyone in the community.
Get involved: [Learn more about contributing](https://ethereum.org/en/contributing/), [hit us up on Twitter](https://twitter.com/ethdotorg), or join the community discussions in [our Discord](https://discord.gg/CetY6Y4). | priority | ethereum org product roadmap to make our work more accessible and to foster more community collaboration our team publishes an overview of our quarterly roadmap goals see last quarter s roadmap here greetings fellow ethereans continues to be to create the best portal for ethereum s growing community we’re an educational resource focused on helping onboard millions of visitors to ethereum each month here s a look at our major initiatives to advance this vision quick point of clarification this is the roadmap for the website not ethereum the protocol if you’re looking for the ethereum roadmap check out information on and learn more about with that out of the way let’s dive in the must haves the epics our core team is committing to shipping this quarter 🔀 post merge prep core ethereum developers are in the final stages of testing and preparing for last quarter we shipped updates across and the to help prepare our community for this ethereum protocol upgrade these updates handled all pre merge updates content changes that can be made before the merge takes place this quarter we’re turning our focus to post merge content updates content changes that should be rolled out after ethereum completes the merge successfully in a similar fashion we’ll run a of ethereum org and the ethereum staking launchpad and rollout updates across both sites we’ll also work to identify and fill gaps in site content topics we should cover in a post merge world want to get involved join the conversation in our 🌏 translate the ef blog we ll finish the site rebuild we started in and deploy a fresh blog codebase with internationalization support this quarter the blog repo is currently private so not much to share at this point but we re hoping to open source the codebase as part of the launch in the meantime you can view our and test out the feedback is always welcome feel free to comment directly in figma or join the conversation in discord after launch we ll publish a blog post detailing how to get involved with the community translations so stay tuned 🎨 open design system the open design system is and will continue to be an ongoing effort that we kicked off in the design system will help establish and document our design language which anyone in the community can use to create reusable resources the aim here is to increase our ui s consistency and productivity for our design and development community in we mapped and divided our roadmap for the design system into foundations components and layouts with the foundations in place in we’ll focus on building reusable components that help make layouts these components will be divided into two buckets base components small elements that can be used in different positions and can be forms buttons navigation and cards composed components combinations of various base components that form the core of layouts including header footer and page hero by the end of the quarter we will release a new update to the design system ready with some base layouts made out of combinations of components we’re aiming to have a base layout a markdown layout a use case page layout and the homepage want to get involved and join the conversation in our 🖥 implement ui library another carryover initiative closely tied to the design system to improve our code quality improve productivity website accessibility and overall ux we’re adding a ui library to our codebase we’ll kick off the implementation work this quarter and start rolling out components across the codebase this is a significant undertaking which will likely involve large refactors to clean up duplicate code and to integrate the new design system that we expect to be working on into want to get involved join the conversation in 🦔 build a new geth website the current geth site has served its purpose for a long while but is far from perfect it contains some out of date and incomplete information lacks modern website features like built in search and the overall aesthetics lack a modern look that undersells what geth has become a core piece of ethereum infrastructure and public good for the ecosystem this quarter we’ll kick off design content and code to build a new geth site we plan to provide expanded educational information accurate and robust documentation and a modern design fitting for such a crucial resource in the space 💖 implement heart framework the heart framework is a well established proven ux focused methodology to improve software products we plan to apply the heart framework to different user groups and aspects of our products starting in with the translation program we’ll implement the heart framework across all aspects of this contributor funnel happiness engagement adoption retention and task success we’ll pull data surface insights and identify key takeaways that will guide our operation and product priorities for the translation program next quarter with the translation program as a testing ground we’ll also consider applying the heart framework more broadly across all our contributor and end user funnels want to get involved join the conversation in 💰 wallet upgrades in we revamped our while this was a large release that introduced substantial enhancements to the data gathered on wallets and how users can filter and find an ethereum wallet there are still remaining features and cleanup items that we identified to improve the find wallet page this quarter we’ll continue introducing additional improvements that were scoped out of the initial release want to get involved join the conversation in our 💯 learning quizzes many aspects of ethereum are complex and can be difficult to grasp a great way to ensure important content is understood is by immediately testing knowledge after it is presented we’ll introduce optional quizzes across pages to ensure that readers grasp the essential concepts to allow them to be meaningful participants in the ethereum ecosystem along with our feedback surveys we expect these quizzes to drive insights into how to improve our content resources further over the long term we envision this will set the foundation for more structured sequential learning resources perhaps with gamification on ethereum org 🗣️ user insights last quarter we shipped a new feedback widget integrated with custom surveys across all pages on and started collecting data this quarter we will focus on validating and analyzing your responses and formulating useful insights to improve our site we’ll build reports and consider how we might publish research findings as a public good to the ethereum product community we will also use this data to influence our content strategy decisions and priorities want to get involved join the conversation in our 🌍 revamp translation program resources the is dedicated to the translation program and contains key information on what the program is how to get involved how to succeed as a translator and even guides on building out your own translation initiative it’s been constantly growing in size and value but lacks structure we’ll review the information architecture and user flow on the page break out some sections into dedicated subpages create subpages for other web properties that we are translating specifically the and the and refresh the information on the page want to get involved join the conversation in the nice to haves these epics are up next on our priority list we’re not committing to shipping anything this quarter but we plan to make progress on these and want to share these publicly so the community can give input and get involved 🏫 ethereum for educators we’re narrowing in on how to best build resources for educators looking to teach about ethereum in we collected a lot of resources for educators like university courses case studies and open access academic papers and actively engaged with academics for their feedback ideas and input this quarter we hope to pick up the work to design and build a page to offer these free resources to teachers and learners across the globe want to get involved join the conversation on or in our 📖 content strategy thanks to the incredible contributions from hundreds of community members we’ve created a large swath of excellent educational resources on ethereum org however we still have gaps in our content where we are not addressing some fundamental questions about how ethereum works meanwhile great new content ideas constantly surface in our discord and on github but we don’t yet have a solid framework on how to prioritize these within our content roadmap through seo tools and manual content auditing we’re aimig to identify such gaps and build an editorial calendar that helps prioritize content opportunities by their impact allowing us to create more critical content faster want to get involved join the conversation in our 🪜 restructure documentation with the help of a community of technical content contributors our developer documentation resources have exploded to nearly pages these resources live within a site structure that was originally targeted at dapp developers yet over time we’ve received feedback that many resources are useful to a broad range of visitors hobbyists designers node operators end users economists entrepreneurs and more user types beyond pure “developers” this quarter we hope to rethink the overall information architecture of our documentation to best support a broader base of users and to ensure we surface key information that is often buried deep within technical topics want to get involved join the conversation in our 💰 wallet resources through our recent work on our new find wallet page we surfaced opportunities to improve and expand the educational resources on the world of ethereum wallets which are critical onboarding products to all ethereum users we’ll work to expand our content around wallets such as explainers on self custody and how keys work resources on the different kinds of accounts eoas vs contracts and the respective wallet interfaces they can use private key wallet smart contract wallet and mpc wallets want to get involved join the conversation in our 🎡 json rpc playground the is a crucial list of endpoints provided by all ethereum clients yet is not widely or consistently documented several folks have been working valiantly to improve the state of affairs building out new resources such as the and the these resources are a great start and we’d like to help push things forward we’re hoping to work with lightclient and other community members to improve the json rpc playground allowing developers to find learn about and test various endpoints to build products for end users we’re hoping these efforts will improve the lives of client teams dapp and infrastructure developers and end users across the ethereum ecosystem want to get involved join the conversation in the how does that sound we always appreciate feedback on our roadmap if there s something you think we should work on please let us know we welcome ideas and prs from anyone in the community get involved or join the community discussions in | 1 |
5,898 | 2,580,639,461 | IssuesEvent | 2015-02-13 19:01:26 | codeforamerica/content-team | https://api.github.com/repos/codeforamerica/content-team | opened | Fellowship Toolkit: Engaging with Government and Community Partners to Set Up a Successful Project | copywriting/editing High priority | https://docs.google.com/a/codeforamerica.org/document/d/102UTeQ89wGq0ZWzbA3mwsrEFabfsCiYR8bWP1TPcgyU/edit
- copy-edit and prepare for publishing @dschrimmer | 1.0 | Fellowship Toolkit: Engaging with Government and Community Partners to Set Up a Successful Project - https://docs.google.com/a/codeforamerica.org/document/d/102UTeQ89wGq0ZWzbA3mwsrEFabfsCiYR8bWP1TPcgyU/edit
- copy-edit and prepare for publishing @dschrimmer | priority | fellowship toolkit engaging with government and community partners to set up a successful project copy edit and prepare for publishing dschrimmer | 1 |
830,508 | 32,010,988,697 | IssuesEvent | 2023-09-21 17:59:06 | cds-snc/notification-planning | https://api.github.com/repos/cds-snc/notification-planning | closed | Notify clients to change their API keys to new format - Email Ticket | High Priority | Haute priorité Security | Sécurité UX Refined l Affiné | _Notify clients to change their API keys to new format_
## Description
As a current Notify user, I need to be aware that Notify has changed the format for API keys to include a prefix for security scanning so that I can change my API key to the new format before the grace period ends and my application breaks.
WHY are we building?
We are adding a prefix to our API keys so we can scan for them in public repos for better security
We need to let current users know there will be a change and they will have to rotate their old API keys for new ones with the prefix before the grace period ends.
WHAT are we building?
An email notification to current clients
VALUE created by our solution
Enhanced security and scanning abilities to detect realtime system misuse and API keys that may be stored publicly
## Acceptance Criteria** (Definition of done)
Given a current Notify user has an API key, when current users with old API keys are made aware of the change then they rotate their API keys before the grace period ends for a seamless transition to the new format.
- [x] Email EN/FR to all clients explaining the change, and steps they need to take
- [x] Email includes a path to contact us for help
* Security controls in place
## QA Steps
- [x] Send test emails to ourselves
- [x] Test in production rotating our own API keys to the new format
- [x] QA the email to current users in both EN and FR for typos, translation and any broken links
| 1.0 | Notify clients to change their API keys to new format - Email Ticket - _Notify clients to change their API keys to new format_
## Description
As a current Notify user, I need to be aware that Notify has changed the format for API keys to include a prefix for security scanning so that I can change my API key to the new format before the grace period ends and my application breaks.
WHY are we building?
We are adding a prefix to our API keys so we can scan for them in public repos for better security
We need to let current users know there will be a change and they will have to rotate their old API keys for new ones with the prefix before the grace period ends.
WHAT are we building?
An email notification to current clients
VALUE created by our solution
Enhanced security and scanning abilities to detect realtime system misuse and API keys that may be stored publicly
## Acceptance Criteria** (Definition of done)
Given a current Notify user has an API key, when current users with old API keys are made aware of the change then they rotate their API keys before the grace period ends for a seamless transition to the new format.
- [x] Email EN/FR to all clients explaining the change, and steps they need to take
- [x] Email includes a path to contact us for help
* Security controls in place
## QA Steps
- [x] Send test emails to ourselves
- [x] Test in production rotating our own API keys to the new format
- [x] QA the email to current users in both EN and FR for typos, translation and any broken links
| priority | notify clients to change their api keys to new format email ticket notify clients to change their api keys to new format description as a current notify user i need to be aware that notify has changed the format for api keys to include a prefix for security scanning so that i can change my api key to the new format before the grace period ends and my application breaks why are we building we are adding a prefix to our api keys so we can scan for them in public repos for better security we need to let current users know there will be a change and they will have to rotate their old api keys for new ones with the prefix before the grace period ends what are we building an email notification to current clients value created by our solution enhanced security and scanning abilities to detect realtime system misuse and api keys that may be stored publicly acceptance criteria definition of done given a current notify user has an api key when current users with old api keys are made aware of the change then they rotate their api keys before the grace period ends for a seamless transition to the new format email en fr to all clients explaining the change and steps they need to take email includes a path to contact us for help security controls in place qa steps send test emails to ourselves test in production rotating our own api keys to the new format qa the email to current users in both en and fr for typos translation and any broken links | 1 |
539,302 | 15,786,693,343 | IssuesEvent | 2021-04-01 18:07:06 | UAlbertaALTLab/cree-intelligent-dictionary | https://api.github.com/repos/UAlbertaALTLab/cree-intelligent-dictionary | closed | Site redeployment hangs and must be manually restarted :(((((( | high-priority | 1 . Note: this happened with gunicorn too
2. Note: by default, uwsgi loads the application _prior_ to forking (and creating worker process). So I think this is due to the way that itwêwina starts up FOR SOME REASON
## Logs of a bad redeployment:
```
itwewina_1 | [uWSGI] getting INI configuration from uwsgi.ini
itwewina_1 | *** Starting uWSGI 2.0.19.1 (64bit) on [Tue Mar 16 16:13:43 2021] ***
itwewina_1 | compiled with version: 8.3.0 on 12 March 2021 21:33:18
itwewina_1 | os: Linux-4.15.0-130-generic #134-Ubuntu SMP Tue Jan 5 20:46:26 UTC 2021
itwewina_1 | nodename: 26aeffceaba5
itwewina_1 | machine: x86_64
itwewina_1 | clock source: unix
itwewina_1 | detected number of CPU cores: 2
itwewina_1 | current working directory: /app/CreeDictionary
itwewina_1 | detected binary path: /app/.venv/bin/uwsgi
itwewina_1 | !!! no internal routing support, rebuild with pcre support !!!
itwewina_1 | chdir() to /app/CreeDictionary
itwewina_1 | your memory page size is 4096 bytes
itwewina_1 | detected max file descriptor number: 1048576
itwewina_1 | lock engine: pthread robust mutexes
itwewina_1 | thunder lock: disabled (you can enable it with --thunder-lock)
itwewina_1 | uwsgi socket 0 bound to TCP address :8000 fd 3
itwewina_1 | Python version: 3.9.1 (default, Feb 9 2021, 07:55:26) [GCC 8.3.0]
itwewina_1 | Python main interpreter initialized at 0x55bcec6e2ff0
itwewina_1 | python threads support enabled
itwewina_1 | your server socket listen backlog is limited to 100 connections
itwewina_1 | your mercy for graceful operations on workers is 60 seconds
itwewina_1 | mapped 500064 bytes (488 KB) for 10 cores
itwewina_1 | *** Operational MODE: preforking+threaded ***
```
## Logs of a successfull redeployment:
```
itwewina_1 | [uWSGI] getting INI configuration from uwsgi.ini
itwewina_1 | *** Starting uWSGI 2.0.19.1 (64bit) on [Tue Mar 16 16:29:44 2021] ***
itwewina_1 | compiled with version: 8.3.0 on 12 March 2021 21:33:18
itwewina_1 | os: Linux-4.15.0-130-generic #134-Ubuntu SMP Tue Jan 5 20:46:26 UTC 2021
itwewina_1 | nodename: 93a3a2efff72
itwewina_1 | machine: x86_64
itwewina_1 | clock source: unix
itwewina_1 | detected number of CPU cores: 2
itwewina_1 | current working directory: /app/CreeDictionary
itwewina_1 | detected binary path: /app/.venv/bin/uwsgi
itwewina_1 | !!! no internal routing support, rebuild with pcre support !!!
itwewina_1 | chdir() to /app/CreeDictionary
itwewina_1 | your memory page size is 4096 bytes
itwewina_1 | detected max file descriptor number: 1048576
itwewina_1 | lock engine: pthread robust mutexes
itwewina_1 | thunder lock: disabled (you can enable it with --thunder-lock)
itwewina_1 | uwsgi socket 0 bound to TCP address :8000 fd 3
itwewina_1 | Python version: 3.9.1 (default, Feb 9 2021, 07:55:26) [GCC 8.3.0]
itwewina_1 | Python main interpreter initialized at 0x56196d20bff0
itwewina_1 | python threads support enabled
itwewina_1 | your server socket listen backlog is limited to 100 connections
itwewina_1 | your mercy for graceful operations on workers is 60 seconds
itwewina_1 | mapped 500064 bytes (488 KB) for 10 cores
itwewina_1 | *** Operational MODE: preforking+threaded ***
itwewina_1 | WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x56196d20bff0 pid: 6 (default app)
itwewina_1 | running "print:Application loaded!" (post app)...
itwewina_1 | Application loaded!
itwewina_1 | *** uWSGI is running in multiple interpreter mode ***
itwewina_1 | spawned uWSGI master process (pid: 6)
itwewina_1 | spawned uWSGI worker 1 (pid: 7, cores: 2)
itwewina_1 | spawned uWSGI worker 2 (pid: 8, cores: 2)
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | spawned uWSGI worker 3 (pid: 10, cores: 2)
itwewina_1 | spawned uWSGI worker 4 (pid: 11, cores: 2)
itwewina_1 | spawned uWSGI worker 5 (pid: 12, cores: 2)
itwewina_1 | uWSGI worker ready to accept requests! pid: 7
itwewina_1 | *** Stats server enabled on :9191 fd: 18 ***
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | uWSGI worker ready to accept requests! pid: 11
itwewina_1 | uWSGI worker ready to accept requests! pid: 8
itwewina_1 | uWSGI worker ready to accept requests! pid: 12
itwewina_1 | uWSGI worker ready to accept requests! pid: 10
``` | 1.0 | Site redeployment hangs and must be manually restarted :(((((( - 1 . Note: this happened with gunicorn too
2. Note: by default, uwsgi loads the application _prior_ to forking (and creating worker process). So I think this is due to the way that itwêwina starts up FOR SOME REASON
## Logs of a bad redeployment:
```
itwewina_1 | [uWSGI] getting INI configuration from uwsgi.ini
itwewina_1 | *** Starting uWSGI 2.0.19.1 (64bit) on [Tue Mar 16 16:13:43 2021] ***
itwewina_1 | compiled with version: 8.3.0 on 12 March 2021 21:33:18
itwewina_1 | os: Linux-4.15.0-130-generic #134-Ubuntu SMP Tue Jan 5 20:46:26 UTC 2021
itwewina_1 | nodename: 26aeffceaba5
itwewina_1 | machine: x86_64
itwewina_1 | clock source: unix
itwewina_1 | detected number of CPU cores: 2
itwewina_1 | current working directory: /app/CreeDictionary
itwewina_1 | detected binary path: /app/.venv/bin/uwsgi
itwewina_1 | !!! no internal routing support, rebuild with pcre support !!!
itwewina_1 | chdir() to /app/CreeDictionary
itwewina_1 | your memory page size is 4096 bytes
itwewina_1 | detected max file descriptor number: 1048576
itwewina_1 | lock engine: pthread robust mutexes
itwewina_1 | thunder lock: disabled (you can enable it with --thunder-lock)
itwewina_1 | uwsgi socket 0 bound to TCP address :8000 fd 3
itwewina_1 | Python version: 3.9.1 (default, Feb 9 2021, 07:55:26) [GCC 8.3.0]
itwewina_1 | Python main interpreter initialized at 0x55bcec6e2ff0
itwewina_1 | python threads support enabled
itwewina_1 | your server socket listen backlog is limited to 100 connections
itwewina_1 | your mercy for graceful operations on workers is 60 seconds
itwewina_1 | mapped 500064 bytes (488 KB) for 10 cores
itwewina_1 | *** Operational MODE: preforking+threaded ***
```
## Logs of a successfull redeployment:
```
itwewina_1 | [uWSGI] getting INI configuration from uwsgi.ini
itwewina_1 | *** Starting uWSGI 2.0.19.1 (64bit) on [Tue Mar 16 16:29:44 2021] ***
itwewina_1 | compiled with version: 8.3.0 on 12 March 2021 21:33:18
itwewina_1 | os: Linux-4.15.0-130-generic #134-Ubuntu SMP Tue Jan 5 20:46:26 UTC 2021
itwewina_1 | nodename: 93a3a2efff72
itwewina_1 | machine: x86_64
itwewina_1 | clock source: unix
itwewina_1 | detected number of CPU cores: 2
itwewina_1 | current working directory: /app/CreeDictionary
itwewina_1 | detected binary path: /app/.venv/bin/uwsgi
itwewina_1 | !!! no internal routing support, rebuild with pcre support !!!
itwewina_1 | chdir() to /app/CreeDictionary
itwewina_1 | your memory page size is 4096 bytes
itwewina_1 | detected max file descriptor number: 1048576
itwewina_1 | lock engine: pthread robust mutexes
itwewina_1 | thunder lock: disabled (you can enable it with --thunder-lock)
itwewina_1 | uwsgi socket 0 bound to TCP address :8000 fd 3
itwewina_1 | Python version: 3.9.1 (default, Feb 9 2021, 07:55:26) [GCC 8.3.0]
itwewina_1 | Python main interpreter initialized at 0x56196d20bff0
itwewina_1 | python threads support enabled
itwewina_1 | your server socket listen backlog is limited to 100 connections
itwewina_1 | your mercy for graceful operations on workers is 60 seconds
itwewina_1 | mapped 500064 bytes (488 KB) for 10 cores
itwewina_1 | *** Operational MODE: preforking+threaded ***
itwewina_1 | WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x56196d20bff0 pid: 6 (default app)
itwewina_1 | running "print:Application loaded!" (post app)...
itwewina_1 | Application loaded!
itwewina_1 | *** uWSGI is running in multiple interpreter mode ***
itwewina_1 | spawned uWSGI master process (pid: 6)
itwewina_1 | spawned uWSGI worker 1 (pid: 7, cores: 2)
itwewina_1 | spawned uWSGI worker 2 (pid: 8, cores: 2)
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | spawned uWSGI worker 3 (pid: 10, cores: 2)
itwewina_1 | spawned uWSGI worker 4 (pid: 11, cores: 2)
itwewina_1 | spawned uWSGI worker 5 (pid: 12, cores: 2)
itwewina_1 | uWSGI worker ready to accept requests! pid: 7
itwewina_1 | *** Stats server enabled on :9191 fd: 18 ***
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | running "exec:echo uWSGI worker ready to accept requests! pid: $PPID" (accepting-once)...
itwewina_1 | uWSGI worker ready to accept requests! pid: 11
itwewina_1 | uWSGI worker ready to accept requests! pid: 8
itwewina_1 | uWSGI worker ready to accept requests! pid: 12
itwewina_1 | uWSGI worker ready to accept requests! pid: 10
``` | priority | site redeployment hangs and must be manually restarted note this happened with gunicorn too note by default uwsgi loads the application prior to forking and creating worker process so i think this is due to the way that itwêwina starts up for some reason logs of a bad redeployment itwewina getting ini configuration from uwsgi ini itwewina starting uwsgi on itwewina compiled with version on march itwewina os linux generic ubuntu smp tue jan utc itwewina nodename itwewina machine itwewina clock source unix itwewina detected number of cpu cores itwewina current working directory app creedictionary itwewina detected binary path app venv bin uwsgi itwewina no internal routing support rebuild with pcre support itwewina chdir to app creedictionary itwewina your memory page size is bytes itwewina detected max file descriptor number itwewina lock engine pthread robust mutexes itwewina thunder lock disabled you can enable it with thunder lock itwewina uwsgi socket bound to tcp address fd itwewina python version default feb itwewina python main interpreter initialized at itwewina python threads support enabled itwewina your server socket listen backlog is limited to connections itwewina your mercy for graceful operations on workers is seconds itwewina mapped bytes kb for cores itwewina operational mode preforking threaded logs of a successfull redeployment itwewina getting ini configuration from uwsgi ini itwewina starting uwsgi on itwewina compiled with version on march itwewina os linux generic ubuntu smp tue jan utc itwewina nodename itwewina machine itwewina clock source unix itwewina detected number of cpu cores itwewina current working directory app creedictionary itwewina detected binary path app venv bin uwsgi itwewina no internal routing support rebuild with pcre support itwewina chdir to app creedictionary itwewina your memory page size is bytes itwewina detected max file descriptor number itwewina lock engine pthread robust mutexes itwewina thunder lock disabled you can enable it with thunder lock itwewina uwsgi socket bound to tcp address fd itwewina python version default feb itwewina python main interpreter initialized at itwewina python threads support enabled itwewina your server socket listen backlog is limited to connections itwewina your mercy for graceful operations on workers is seconds itwewina mapped bytes kb for cores itwewina operational mode preforking threaded itwewina wsgi app mountpoint ready in seconds on interpreter pid default app itwewina running print application loaded post app itwewina application loaded itwewina uwsgi is running in multiple interpreter mode itwewina spawned uwsgi master process pid itwewina spawned uwsgi worker pid cores itwewina spawned uwsgi worker pid cores itwewina running exec echo uwsgi worker ready to accept requests pid ppid accepting once itwewina spawned uwsgi worker pid cores itwewina spawned uwsgi worker pid cores itwewina spawned uwsgi worker pid cores itwewina uwsgi worker ready to accept requests pid itwewina stats server enabled on fd itwewina running exec echo uwsgi worker ready to accept requests pid ppid accepting once itwewina running exec echo uwsgi worker ready to accept requests pid ppid accepting once itwewina running exec echo uwsgi worker ready to accept requests pid ppid accepting once itwewina running exec echo uwsgi worker ready to accept requests pid ppid accepting once itwewina uwsgi worker ready to accept requests pid itwewina uwsgi worker ready to accept requests pid itwewina uwsgi worker ready to accept requests pid itwewina uwsgi worker ready to accept requests pid | 1 |
642,558 | 20,907,080,996 | IssuesEvent | 2022-03-24 04:13:55 | AY2122S2-CS2103T-W13-1/tp | https://api.github.com/repos/AY2122S2-CS2103T-W13-1/tp | closed | Update Ben's part of the DG | priority.High | This concerns the deleteProc function. It should be included in the developer guide to allow future developers to have a better comprehension of the feature. | 1.0 | Update Ben's part of the DG - This concerns the deleteProc function. It should be included in the developer guide to allow future developers to have a better comprehension of the feature. | priority | update ben s part of the dg this concerns the deleteproc function it should be included in the developer guide to allow future developers to have a better comprehension of the feature | 1 |
351,607 | 10,521,316,882 | IssuesEvent | 2019-09-30 05:32:10 | wso2/ballerina-integrator | https://api.github.com/repos/wso2/ballerina-integrator | closed | Create salesforce connector guide | Priority/High Severity/Major Type/Example | **Description:**
Implement a salesforce guide covering a use case with creating account adding contacts and opportunity details.
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | 1.0 | Create salesforce connector guide - **Description:**
Implement a salesforce guide covering a use case with creating account adding contacts and opportunity details.
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | priority | create salesforce connector guide description implement a salesforce guide covering a use case with creating account adding contacts and opportunity details suggested labels suggested assignees affected product version os db other environment details and versions steps to reproduce related issues | 1 |
320,166 | 9,777,160,145 | IssuesEvent | 2019-06-07 08:19:53 | CodexLink/PortESTL-PerEMNFAD | https://api.github.com/repos/CodexLink/PortESTL-PerEMNFAD | opened | 4 Switch DIP Position, 2 Switches Can Be Used as 4 Mode LCD Screen | Arduino - Side Enhancement / Refactor Hardware Issue High Priority New Idea | I just bought 4 Switches in hopes of something that my money is definitely acceptable (because I gave big enough to be unable to be cashed out to exchange for a smaller bill)
So here's a workaround...
We have to do 4 modes of LCD Logic Level. This means we have 4 ways or 4 modes in this project.
Here are the following:
[1] Sensor Monitoring Mode (OFF-OFF)
[2] NodeMCU Live Status Mode (ON-OFF)
[3] RFID Status (Can be changed.) (OFF-ON)
[2] osu! Mode (ON-ON)
That was it.
Those two switch readings will be on HIGH or LOW. So PULLUP_RESISTOR is needed for this Switches
| 1.0 | 4 Switch DIP Position, 2 Switches Can Be Used as 4 Mode LCD Screen - I just bought 4 Switches in hopes of something that my money is definitely acceptable (because I gave big enough to be unable to be cashed out to exchange for a smaller bill)
So here's a workaround...
We have to do 4 modes of LCD Logic Level. This means we have 4 ways or 4 modes in this project.
Here are the following:
[1] Sensor Monitoring Mode (OFF-OFF)
[2] NodeMCU Live Status Mode (ON-OFF)
[3] RFID Status (Can be changed.) (OFF-ON)
[2] osu! Mode (ON-ON)
That was it.
Those two switch readings will be on HIGH or LOW. So PULLUP_RESISTOR is needed for this Switches
| priority | switch dip position switches can be used as mode lcd screen i just bought switches in hopes of something that my money is definitely acceptable because i gave big enough to be unable to be cashed out to exchange for a smaller bill so here s a workaround we have to do modes of lcd logic level this means we have ways or modes in this project here are the following sensor monitoring mode off off nodemcu live status mode on off rfid status can be changed off on osu mode on on that was it those two switch readings will be on high or low so pullup resistor is needed for this switches | 1 |
457,531 | 13,158,108,951 | IssuesEvent | 2020-08-10 13:50:27 | GiftForGood/website | https://api.github.com/repos/GiftForGood/website | opened | [User Testing S1 - Aug][Profile Page] Past Wishes/Donations Panel | priority.High | Suggestions:
- Viewing of past donations that NPO has participated &
- Viewing of past wishes that donor has participated | 1.0 | [User Testing S1 - Aug][Profile Page] Past Wishes/Donations Panel - Suggestions:
- Viewing of past donations that NPO has participated &
- Viewing of past wishes that donor has participated | priority | past wishes donations panel suggestions viewing of past donations that npo has participated viewing of past wishes that donor has participated | 1 |
770,006 | 27,025,817,910 | IssuesEvent | 2023-02-11 15:39:53 | noctuelles/42-ft_transcendance | https://api.github.com/repos/noctuelles/42-ft_transcendance | closed | La partie ne prend pas fin dans une game cree a partir du chat | bug high priority | Reproduction ->
Dans le chat, cree une partie. Dans cette partie, la detection d'utilisateur qui leave se fait mal : ca marche pour un utilisateur sur deux. | 1.0 | La partie ne prend pas fin dans une game cree a partir du chat - Reproduction ->
Dans le chat, cree une partie. Dans cette partie, la detection d'utilisateur qui leave se fait mal : ca marche pour un utilisateur sur deux. | priority | la partie ne prend pas fin dans une game cree a partir du chat reproduction dans le chat cree une partie dans cette partie la detection d utilisateur qui leave se fait mal ca marche pour un utilisateur sur deux | 1 |
762,494 | 26,720,455,334 | IssuesEvent | 2023-01-29 03:28:36 | AndrewRedican/react-json-editor-ajrm | https://api.github.com/repos/AndrewRedican/react-json-editor-ajrm | closed | Unable to process UN formatted JSON data | bug high priority | |Question| Answer|
|--|--|
|version| The Lastest Version|
**No formatted JSON string is detected as an error JSON.
This JSON string does not have any syntax problems. It's just not formatted.**
(It can pass syntax check after formatting.)
Json String like it.
```
{
"sql": {
"server": {
"server1": {
"class": "yii\\db\\Connection",
"dsn": "mysql:host=xx;port=xx;dbname=xxxx",
"username": "xx",
"password": "xx",
"charset": "utf8"
},
"sql1": "select xx from xx"
},
"cmd": "mysql -h___host -u___username -P___port -p___password -D___dbname -A < ___file"
},
"script": {
"server": {
"sip": "xx.xx.xx.xx",
"shost": "xx.xx.xx.xx",
"suser": "root",
"sport": 2222,
"phppath": "/xx/php5/bin/php",
"webser": "/xx/www/",
"git": "xx"
},
"cmd": "ssh -p ___sport ___suser@___sip ' source /etc/profile && ___phppath ___webser___git/yii ___script --orgcode=xx' "
}
}
``` | 1.0 | Unable to process UN formatted JSON data - |Question| Answer|
|--|--|
|version| The Lastest Version|
**No formatted JSON string is detected as an error JSON.
This JSON string does not have any syntax problems. It's just not formatted.**
(It can pass syntax check after formatting.)
Json String like it.
```
{
"sql": {
"server": {
"server1": {
"class": "yii\\db\\Connection",
"dsn": "mysql:host=xx;port=xx;dbname=xxxx",
"username": "xx",
"password": "xx",
"charset": "utf8"
},
"sql1": "select xx from xx"
},
"cmd": "mysql -h___host -u___username -P___port -p___password -D___dbname -A < ___file"
},
"script": {
"server": {
"sip": "xx.xx.xx.xx",
"shost": "xx.xx.xx.xx",
"suser": "root",
"sport": 2222,
"phppath": "/xx/php5/bin/php",
"webser": "/xx/www/",
"git": "xx"
},
"cmd": "ssh -p ___sport ___suser@___sip ' source /etc/profile && ___phppath ___webser___git/yii ___script --orgcode=xx' "
}
}
``` | priority | unable to process un formatted json data question answer version the lastest version no formatted json string is detected as an error json this json string does not have any syntax problems it s just not formatted it can pass syntax check after formatting json string like it sql server class yii db connection dsn mysql host xx port xx dbname xxxx username xx password xx charset select xx from xx cmd mysql h host u username p port p password d dbname a file script server sip xx xx xx xx shost xx xx xx xx suser root sport phppath xx bin php webser xx www git xx cmd ssh p sport suser sip source etc profile phppath webser git yii script orgcode xx | 1 |
416,630 | 12,149,779,825 | IssuesEvent | 2020-04-24 16:45:16 | scality/metalk8s | https://api.github.com/repos/scality/metalk8s | opened | Add create volume in Go kubectl plugin | complexity:easy kind:enhancement priority:high topic:kubectl-plugin topic:storage | <!-- Please only use this template for submitting improvement requests, and make sure it is linked to the relevant GitHub Project. -->
**Component**:
'salt', 'kubectl-plugin'
<!-- E.g. 'salt', 'containers', 'kubernetes', 'build', 'tests'... -->
**Why this is needed**:
Centralized CLI
**What should be done**:
MetalK8s create volume command should be part of `metalk8s` Go kubectl plugin
```
kubectl metalk8s create volume <name> --node-name <node_name> --type <type> --storage-class <storage_class>
```
A lot of arguments are not mandatory, check volume documentation for more detail about available arguments and default values.
Name, node-name, type, and storage-class are not mandatory if you provide a file using `-f`, `--filename` containing information about the resource.
**Implementation proposal** (strongly recommended):
This command will create a Kubernetes volume object with the right labels, taints, spec ... according to the CLI arguments.
It will be written in Go (check design documentation about Centralized CLI for more detail).
Follow kubectl best practice as much as possible.
| 1.0 | Add create volume in Go kubectl plugin - <!-- Please only use this template for submitting improvement requests, and make sure it is linked to the relevant GitHub Project. -->
**Component**:
'salt', 'kubectl-plugin'
<!-- E.g. 'salt', 'containers', 'kubernetes', 'build', 'tests'... -->
**Why this is needed**:
Centralized CLI
**What should be done**:
MetalK8s create volume command should be part of `metalk8s` Go kubectl plugin
```
kubectl metalk8s create volume <name> --node-name <node_name> --type <type> --storage-class <storage_class>
```
A lot of arguments are not mandatory, check volume documentation for more detail about available arguments and default values.
Name, node-name, type, and storage-class are not mandatory if you provide a file using `-f`, `--filename` containing information about the resource.
**Implementation proposal** (strongly recommended):
This command will create a Kubernetes volume object with the right labels, taints, spec ... according to the CLI arguments.
It will be written in Go (check design documentation about Centralized CLI for more detail).
Follow kubectl best practice as much as possible.
| priority | add create volume in go kubectl plugin component salt kubectl plugin why this is needed centralized cli what should be done create volume command should be part of go kubectl plugin kubectl create volume node name type storage class a lot of arguments are not mandatory check volume documentation for more detail about available arguments and default values name node name type and storage class are not mandatory if you provide a file using f filename containing information about the resource implementation proposal strongly recommended this command will create a kubernetes volume object with the right labels taints spec according to the cli arguments it will be written in go check design documentation about centralized cli for more detail follow kubectl best practice as much as possible | 1 |
236,451 | 7,749,280,645 | IssuesEvent | 2018-05-30 10:56:18 | Gloirin/m2gTest | https://api.github.com/repos/Gloirin/m2gTest | closed | 0003680:
Felamimail unterstützt keine Umlaute im Domain-Teil der Email-Adresse (Umlaut-Domains) | Felamimail bug high priority | **Reported by splinter03 on 9 Jan 2011 16:28**
**Version:** Neele (2011-01) RC 1
Es ist nicht möglich eine Email an eine Adresse einer Umlaut-Domain zu schicken. Tine meldet: "Could not send message: 500 Syntax error - invalid character"
| 1.0 | 0003680:
Felamimail unterstützt keine Umlaute im Domain-Teil der Email-Adresse (Umlaut-Domains) - **Reported by splinter03 on 9 Jan 2011 16:28**
**Version:** Neele (2011-01) RC 1
Es ist nicht möglich eine Email an eine Adresse einer Umlaut-Domain zu schicken. Tine meldet: "Could not send message: 500 Syntax error - invalid character"
| priority | felamimail unterstützt keine umlaute im domain teil der email adresse umlaut domains reported by on jan version neele rc es ist nicht möglich eine email an eine adresse einer umlaut domain zu schicken tine meldet quot could not send message syntax error invalid character quot | 1 |
104,046 | 4,194,418,671 | IssuesEvent | 2016-06-25 02:41:09 | conda/conda | https://api.github.com/repos/conda/conda | closed | Updating all is breaking conda on Windows | bug high priority | If I download a brand new `miniconda` for Python 3.5 64bit an do a `conda update --all`, `conda` appears broken:
```
c:\dev>conda
Traceback (most recent call last):
File "C:\Users\sam\Miniconda3\Scripts\conda-script.py", line 5, in <module>
sys.exit(main())
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\cli\main.py", line 94, i
n main
imported = importlib.import_module(module)
File "C:\Users\sam\Miniconda3\lib\importlib\__init__.py", line 126, in import_
module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 986, in _gcd_import
File "<frozen importlib._bootstrap>", line 969, in _find_and_load
File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 673, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 662, in exec_module
File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\cli\main_list.py", line
18, in <module>
from ..egg_info import get_egg_info
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\egg_info.py", line 15, i
n <module>
from .misc import rel_path
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\misc.py", line 18, in <m
odule>
from .fetch import fetch_index
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\fetch.py", line 26, in <
module>
from .connection import CondaSession, unparse_url, RETRIES
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\connection.py", line 51,
in <module>
python=platform.python_implementation(),
File "C:\Users\sam\Miniconda3\lib\platform.py", line 1287, in python_implement
ation
return _sys_version()[0]
File "C:\Users\sam\Miniconda3\lib\platform.py", line 1250, in _sys_version
repr(sys_version))
ValueError: failed to parse CPython sys.version: '3.5.1 |Continuum Analytics, In
c.| (default, Feb 16 2016, 09:49:46) [MSC v.1900 64 bit (AMD64)]'
```
Not sure if this is a problem with `conda-forge` Python, or `conda`. I have `conda-forge` as one of my channels.
| 1.0 | Updating all is breaking conda on Windows - If I download a brand new `miniconda` for Python 3.5 64bit an do a `conda update --all`, `conda` appears broken:
```
c:\dev>conda
Traceback (most recent call last):
File "C:\Users\sam\Miniconda3\Scripts\conda-script.py", line 5, in <module>
sys.exit(main())
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\cli\main.py", line 94, i
n main
imported = importlib.import_module(module)
File "C:\Users\sam\Miniconda3\lib\importlib\__init__.py", line 126, in import_
module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 986, in _gcd_import
File "<frozen importlib._bootstrap>", line 969, in _find_and_load
File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 673, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 662, in exec_module
File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\cli\main_list.py", line
18, in <module>
from ..egg_info import get_egg_info
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\egg_info.py", line 15, i
n <module>
from .misc import rel_path
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\misc.py", line 18, in <m
odule>
from .fetch import fetch_index
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\fetch.py", line 26, in <
module>
from .connection import CondaSession, unparse_url, RETRIES
File "C:\Users\sam\Miniconda3\lib\site-packages\conda\connection.py", line 51,
in <module>
python=platform.python_implementation(),
File "C:\Users\sam\Miniconda3\lib\platform.py", line 1287, in python_implement
ation
return _sys_version()[0]
File "C:\Users\sam\Miniconda3\lib\platform.py", line 1250, in _sys_version
repr(sys_version))
ValueError: failed to parse CPython sys.version: '3.5.1 |Continuum Analytics, In
c.| (default, Feb 16 2016, 09:49:46) [MSC v.1900 64 bit (AMD64)]'
```
Not sure if this is a problem with `conda-forge` Python, or `conda`. I have `conda-forge` as one of my channels.
| priority | updating all is breaking conda on windows if i download a brand new miniconda for python an do a conda update all conda appears broken c dev conda traceback most recent call last file c users sam scripts conda script py line in sys exit main file c users sam lib site packages conda cli main py line i n main imported importlib import module module file c users sam lib importlib init py line in import module return bootstrap gcd import name package level file line in gcd import file line in find and load file line in find and load unlocked file line in load unlocked file line in exec module file line in call with frames removed file c users sam lib site packages conda cli main list py line in from egg info import get egg info file c users sam lib site packages conda egg info py line i n from misc import rel path file c users sam lib site packages conda misc py line in m odule from fetch import fetch index file c users sam lib site packages conda fetch py line in module from connection import condasession unparse url retries file c users sam lib site packages conda connection py line in python platform python implementation file c users sam lib platform py line in python implement ation return sys version file c users sam lib platform py line in sys version repr sys version valueerror failed to parse cpython sys version continuum analytics in c default feb not sure if this is a problem with conda forge python or conda i have conda forge as one of my channels | 1 |
109,620 | 4,396,511,300 | IssuesEvent | 2016-08-10 02:36:08 | thommoboy/There-are-no-brakes | https://api.github.com/repos/thommoboy/There-are-no-brakes | opened | Games timers need to not 'reset' when going from one level to another | enhancement Priority High | currently the game timers just start at their max whenever a level is loaded, the remaining time doesn't 'carry over' from one level to the next. | 1.0 | Games timers need to not 'reset' when going from one level to another - currently the game timers just start at their max whenever a level is loaded, the remaining time doesn't 'carry over' from one level to the next. | priority | games timers need to not reset when going from one level to another currently the game timers just start at their max whenever a level is loaded the remaining time doesn t carry over from one level to the next | 1 |
660,427 | 21,965,801,977 | IssuesEvent | 2022-05-24 20:09:49 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | MPS: No conversion of Tensor datatype possible | high priority triage review triaged module: mps | ### 🐛 Describe the bug
When converting a Tensor from any to any other dtype and the Tensor lives on, comes from, or goes to the MPS device, no conversion of the underlying data is done, but it is also not corrupted. It is simply copied and interpreted differently:
```python
>>> import torch as pt
>>> pt.tensor(5.3, device='cpu').to(pt.bool).to(pt.float)
tensor(1.)
>>> pt.tensor(5.3, device='mps').to(pt.bool).to(pt.float)
tensor(5.3000, device='mps:0')
>>> pt.tensor(42.8, device='mps').to(pt.int)
tensor(1110127411, device='mps:0', dtype=torch.int32)
>>> pt.tensor(42.8, device='mps').to(pt.int).to(pt.float)
tensor(42.8000, device='mps:0')
```
The relevant code is found in `aten/src/ATen/native/mps/operations/Copy.mm`.
I attempted to fix this in the linked PR using native MPSGraph APIs to convert the underlying Tensor data.
### Versions
```
Collecting environment information...
PyTorch version: 1.13.0a0+gitcbdb694
Is debug build: True
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: macOS 12.4 (arm64)
GCC version: Could not collect
Clang version: 13.1.6 (clang-1316.0.21.2.5)
CMake version: version 3.23.1
Libc version: N/A
Python version: 3.9.12 (main, May 8 2022, 17:57:49) [Clang 13.1.6 (clang-1316.0.21.2)] (64-bit runtime)
Python platform: macOS-12.4-arm64-arm-64bit
Is CUDA available: False
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: True
Versions of relevant libraries:
[pip3] mypy==0.950
[pip3] mypy-extensions==0.4.3
[pip3] numpy==1.22.0
[pip3] torch==1.13.0a0+gitd7680cb
[pip3] torch-scatter==2.0.9
[pip3] torch-tb-profiler==0.4.0
[pip3] torchaudio==0.11.0
[pip3] torchvision==0.12.0
[conda] Could not collect
cc @ezyang @gchanan @zou3519 | 1.0 | MPS: No conversion of Tensor datatype possible - ### 🐛 Describe the bug
When converting a Tensor from any to any other dtype and the Tensor lives on, comes from, or goes to the MPS device, no conversion of the underlying data is done, but it is also not corrupted. It is simply copied and interpreted differently:
```python
>>> import torch as pt
>>> pt.tensor(5.3, device='cpu').to(pt.bool).to(pt.float)
tensor(1.)
>>> pt.tensor(5.3, device='mps').to(pt.bool).to(pt.float)
tensor(5.3000, device='mps:0')
>>> pt.tensor(42.8, device='mps').to(pt.int)
tensor(1110127411, device='mps:0', dtype=torch.int32)
>>> pt.tensor(42.8, device='mps').to(pt.int).to(pt.float)
tensor(42.8000, device='mps:0')
```
The relevant code is found in `aten/src/ATen/native/mps/operations/Copy.mm`.
I attempted to fix this in the linked PR using native MPSGraph APIs to convert the underlying Tensor data.
### Versions
```
Collecting environment information...
PyTorch version: 1.13.0a0+gitcbdb694
Is debug build: True
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: macOS 12.4 (arm64)
GCC version: Could not collect
Clang version: 13.1.6 (clang-1316.0.21.2.5)
CMake version: version 3.23.1
Libc version: N/A
Python version: 3.9.12 (main, May 8 2022, 17:57:49) [Clang 13.1.6 (clang-1316.0.21.2)] (64-bit runtime)
Python platform: macOS-12.4-arm64-arm-64bit
Is CUDA available: False
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: True
Versions of relevant libraries:
[pip3] mypy==0.950
[pip3] mypy-extensions==0.4.3
[pip3] numpy==1.22.0
[pip3] torch==1.13.0a0+gitd7680cb
[pip3] torch-scatter==2.0.9
[pip3] torch-tb-profiler==0.4.0
[pip3] torchaudio==0.11.0
[pip3] torchvision==0.12.0
[conda] Could not collect
cc @ezyang @gchanan @zou3519 | priority | mps no conversion of tensor datatype possible 🐛 describe the bug when converting a tensor from any to any other dtype and the tensor lives on comes from or goes to the mps device no conversion of the underlying data is done but it is also not corrupted it is simply copied and interpreted differently python import torch as pt pt tensor device cpu to pt bool to pt float tensor pt tensor device mps to pt bool to pt float tensor device mps pt tensor device mps to pt int tensor device mps dtype torch pt tensor device mps to pt int to pt float tensor device mps the relevant code is found in aten src aten native mps operations copy mm i attempted to fix this in the linked pr using native mpsgraph apis to convert the underlying tensor data versions collecting environment information pytorch version is debug build true cuda used to build pytorch none rocm used to build pytorch n a os macos gcc version could not collect clang version clang cmake version version libc version n a python version main may bit runtime python platform macos arm is cuda available false cuda runtime version no cuda gpu models and configuration no cuda nvidia driver version no cuda cudnn version no cuda hip runtime version n a miopen runtime version n a is xnnpack available true versions of relevant libraries mypy mypy extensions numpy torch torch scatter torch tb profiler torchaudio torchvision could not collect cc ezyang gchanan | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.