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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
265,513 | 8,355,263,955 | IssuesEvent | 2018-10-02 15:17:04 | custom-components/custom_updater | https://api.github.com/repos/custom-components/custom_updater | closed | custom_updater.update_all not updating from component_urls | Bug Priority: high | **Version of the custom_component**
3.1.2
**Describe the bug**
~https://github.com/ludeeus/pyupdate/blob/e3c8031081fd43ef482a60190083eba9ec535547/pyupdate/ha_custom/custom_components.py#L66-L72 is only using the first element of the returned list, so the components from component_urls are being ignored and not updated. This function should be looping through the returned list.~
EDIT: I read the code wrong. The root of the problem may not be in these particular code lines. But components from component_urls are not getting updated, even though they are listed as having updates.
**log**
<!-- issues without debug logging will be closed-->
```
Add your logs here.
``` | 1.0 | custom_updater.update_all not updating from component_urls - **Version of the custom_component**
3.1.2
**Describe the bug**
~https://github.com/ludeeus/pyupdate/blob/e3c8031081fd43ef482a60190083eba9ec535547/pyupdate/ha_custom/custom_components.py#L66-L72 is only using the first element of the returned list, so the components from component_urls are being ignored and not updated. This function should be looping through the returned list.~
EDIT: I read the code wrong. The root of the problem may not be in these particular code lines. But components from component_urls are not getting updated, even though they are listed as having updates.
**log**
<!-- issues without debug logging will be closed-->
```
Add your logs here.
``` | priority | custom updater update all not updating from component urls version of the custom component describe the bug is only using the first element of the returned list so the components from component urls are being ignored and not updated this function should be looping through the returned list edit i read the code wrong the root of the problem may not be in these particular code lines but components from component urls are not getting updated even though they are listed as having updates log add your logs here | 1 |
473,079 | 13,636,332,360 | IssuesEvent | 2020-09-25 05:34:11 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0.2 beta develop-60] User command /manage no longer functional | Category: Gameplay Priority: High Status: Fixed | Can no longer call functions from /manage at all anymore after merge with https://github.com/StrangeLoopGames/Eco/pull/6799 | 1.0 | [0.9.0.2 beta develop-60] User command /manage no longer functional - Can no longer call functions from /manage at all anymore after merge with https://github.com/StrangeLoopGames/Eco/pull/6799 | priority | user command manage no longer functional can no longer call functions from manage at all anymore after merge with | 1 |
152,166 | 5,841,337,479 | IssuesEvent | 2017-05-10 00:27:13 | 18F/openFEC-web-app | https://api.github.com/repos/18F/openFEC-web-app | closed | Request: Merge candidate and committee info | Effort: High Feedback: High priority Theme: Candidate page | merge candidate and committee information so that you don't have to click on the committee to see all the financial information
| 1.0 | Request: Merge candidate and committee info - merge candidate and committee information so that you don't have to click on the committee to see all the financial information
| priority | request merge candidate and committee info merge candidate and committee information so that you don t have to click on the committee to see all the financial information | 1 |
526,756 | 15,300,745,402 | IssuesEvent | 2021-02-24 12:44:11 | nim-lang/Nim | https://api.github.com/repos/nim-lang/Nim | closed | adding varargs data generates invalid C code with ARC | ARC/ORC High Priority | My project uses varargs to pass parameters.
https://github.com/planety/prologue/blob/d588f926ae0d103978aecb6038b1c92f2d4659a6/src/prologue/core/application.nim#L368
```nim
proc hello(x: varargs[string]) =
var T: seq[string]
T.add x
hello("123")
```
produces
```
C:\Users\blue\nimcache\test_d\@mtest.nim.c: In function 'hello__wyfMTSuarUNjz0a04AFgKg':
C:\Users\blue\nimcache\test_d\@mtest.nim.c:139:2: error: conversion to non-scalar type requested
colontmpD_ = (tyVarargs__L2x01mN3UeI6VC9aO5FxndQ)0;
^~~~~~~~~~
C:\Users\blue\nimcache\test_d\@mtest.nim.c:141:13: error: incompatible types when assigning to type 'tyVarargs__L2x01mN3UeI6VC9aO5FxndQ' {aka 'struct <anonymous>'} from type 'int'
colontmpD_ = 0;
^
C:\Users\blue\nimcache\test_d\@mtest.nim.c:143:68: error: incompatible type for argument 3 of 'eq___UryAk6fTVSBdD4nIV2wHUA'
eq___UryAk6fTVSBdD4nIV2wHUA(colontmpD_.Field0, colontmpD_.Field1, x, xLen_0);
^
C:\Users\blue\nimcache\test_d\@mtest.nim.c:110:128: note: expected 'tyVarargs__L2x01mN3UeI6VC9aO5FxndQ' {aka 'struct <anonymous>'} but argument is of type 'NimStringV2 *' {aka 'struct NimStringV2 *'}
N_LIB_PRIVATE N_NIMCALL(void, eq___UryAk6fTVSBdD4nIV2wHUA)(NimStringV2* dest, NI destLen_0, tyVarargs__L2x01mN3UeI6VC9aO5FxndQ src, NI srcLen_0) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
Error: execution of an external compiler program 'gcc.exe -c -w -fmax-errors=3 -mno-ms-bitfields -IC:\Users\blue\.choosenim\toolchains\nim-#devel\lib -ID:\QQPCMgr\Desktop\prologue -o C:\Users\blue\nimcache\test_d\@mtest.nim.c.o C:\Users\blue\nimcache\test_d\@mtest.nim.c' failed with exit code: 1
```
Nim version
```
D:\QQPCMgr\Desktop\prologue>nim -v
Nim Compiler Version 1.3.7 [Windows: amd64]
Compiled at 2020-10-07
Copyright (c) 2006-2020 by Andreas Rumpf
active boot switches: -d:release
``` | 1.0 | adding varargs data generates invalid C code with ARC - My project uses varargs to pass parameters.
https://github.com/planety/prologue/blob/d588f926ae0d103978aecb6038b1c92f2d4659a6/src/prologue/core/application.nim#L368
```nim
proc hello(x: varargs[string]) =
var T: seq[string]
T.add x
hello("123")
```
produces
```
C:\Users\blue\nimcache\test_d\@mtest.nim.c: In function 'hello__wyfMTSuarUNjz0a04AFgKg':
C:\Users\blue\nimcache\test_d\@mtest.nim.c:139:2: error: conversion to non-scalar type requested
colontmpD_ = (tyVarargs__L2x01mN3UeI6VC9aO5FxndQ)0;
^~~~~~~~~~
C:\Users\blue\nimcache\test_d\@mtest.nim.c:141:13: error: incompatible types when assigning to type 'tyVarargs__L2x01mN3UeI6VC9aO5FxndQ' {aka 'struct <anonymous>'} from type 'int'
colontmpD_ = 0;
^
C:\Users\blue\nimcache\test_d\@mtest.nim.c:143:68: error: incompatible type for argument 3 of 'eq___UryAk6fTVSBdD4nIV2wHUA'
eq___UryAk6fTVSBdD4nIV2wHUA(colontmpD_.Field0, colontmpD_.Field1, x, xLen_0);
^
C:\Users\blue\nimcache\test_d\@mtest.nim.c:110:128: note: expected 'tyVarargs__L2x01mN3UeI6VC9aO5FxndQ' {aka 'struct <anonymous>'} but argument is of type 'NimStringV2 *' {aka 'struct NimStringV2 *'}
N_LIB_PRIVATE N_NIMCALL(void, eq___UryAk6fTVSBdD4nIV2wHUA)(NimStringV2* dest, NI destLen_0, tyVarargs__L2x01mN3UeI6VC9aO5FxndQ src, NI srcLen_0) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
Error: execution of an external compiler program 'gcc.exe -c -w -fmax-errors=3 -mno-ms-bitfields -IC:\Users\blue\.choosenim\toolchains\nim-#devel\lib -ID:\QQPCMgr\Desktop\prologue -o C:\Users\blue\nimcache\test_d\@mtest.nim.c.o C:\Users\blue\nimcache\test_d\@mtest.nim.c' failed with exit code: 1
```
Nim version
```
D:\QQPCMgr\Desktop\prologue>nim -v
Nim Compiler Version 1.3.7 [Windows: amd64]
Compiled at 2020-10-07
Copyright (c) 2006-2020 by Andreas Rumpf
active boot switches: -d:release
``` | priority | adding varargs data generates invalid c code with arc my project uses varargs to pass parameters nim proc hello x varargs var t seq t add x hello produces c users blue nimcache test d mtest nim c in function hello c users blue nimcache test d mtest nim c error conversion to non scalar type requested colontmpd tyvarargs c users blue nimcache test d mtest nim c error incompatible types when assigning to type tyvarargs aka struct from type int colontmpd c users blue nimcache test d mtest nim c error incompatible type for argument of eq eq colontmpd colontmpd x xlen c users blue nimcache test d mtest nim c note expected tyvarargs aka struct but argument is of type aka struct n lib private n nimcall void eq dest ni destlen tyvarargs src ni srclen error execution of an external compiler program gcc exe c w fmax errors mno ms bitfields ic users blue choosenim toolchains nim devel lib id qqpcmgr desktop prologue o c users blue nimcache test d mtest nim c o c users blue nimcache test d mtest nim c failed with exit code nim version d qqpcmgr desktop prologue nim v nim compiler version compiled at copyright c by andreas rumpf active boot switches d release | 1 |
400,719 | 11,779,714,926 | IssuesEvent | 2020-03-16 18:33:29 | apexcharts/apexcharts.js | https://api.github.com/repos/apexcharts/apexcharts.js | closed | White space between chart and legend on mobile | bug high-priority legend mobile | # Bug report
## Codepen
https://codepen.io/yetanua/pen/MWwbKqy
## Explanation
- What is the behavior you expect?
I expect there is no white space between chart and legend.
- What is happening instead?
On PC in mobile mode it looks good, but on real device - not.
Maybe worth to note: it looks better if legend contains small count of data, but with big count - it is not.
- What error message are you getting?
None.

| 1.0 | White space between chart and legend on mobile - # Bug report
## Codepen
https://codepen.io/yetanua/pen/MWwbKqy
## Explanation
- What is the behavior you expect?
I expect there is no white space between chart and legend.
- What is happening instead?
On PC in mobile mode it looks good, but on real device - not.
Maybe worth to note: it looks better if legend contains small count of data, but with big count - it is not.
- What error message are you getting?
None.

| priority | white space between chart and legend on mobile bug report codepen explanation what is the behavior you expect i expect there is no white space between chart and legend what is happening instead on pc in mobile mode it looks good but on real device not maybe worth to note it looks better if legend contains small count of data but with big count it is not what error message are you getting none | 1 |
54,018 | 3,058,655,696 | IssuesEvent | 2015-08-14 09:46:51 | akvo/akvo-rsr | https://api.github.com/repos/akvo/akvo-rsr | closed | Create New RSR admin form section | High priority Type: Admin Type: MyRSR Type: UX Required | ## Test plan
### My Projects page
GIVEN the My Projects page
WHEN logged in as an RSR Superuser or RSR Admin
THEN the user should be able to create a new project
AND visit the project editor for any existing project
WHEN logged in as an Organisation Admin
THEN the user should be able to create a new project, only when your organisation is marked as 'Reportable'
AND visit the project editor for any existing project that is linked to your organisation
WHEN logged in as an Organisation Project Editor
THEN the user should be able to visit the project editor for any existing project that is linked to your organisation
WHEN logged in as an Organisation User Manager or Organisation User
THEN the user should NOT be able to visit the project editor for any project
### Project editor page
GIVEN the Project editor with a selected project
AND a user with rights to edit the project
WHEN logged in as an RSR Superuser or RSR Admin or Organisation Admin
AND the process bar on top of the page is green
THEN the user should be able to click the publish button
WHEN logged in as an RSR Project Editor
THEN the user should NOT be able to see the publish button
WHEN clicking on the 'Save' button for in any section
THEN a success or error message should always be displayed within 10 seconds
AND after a successful save when reloading the page, the same information should be displayed
WHEN changing a field on the form EXCEPT file uploads (not implemented) without saving
AND reloading or moving away from the page
THEN the user should see an alert stating which sections have unsaved changed
WHEN clicking on an information icon
THEN a help text should be displayed
WHEN filling in a mandatory field
THEN the section and total progress bar should respond accordingly
WHEN typing in one of the organisation fields: related project, project partner, provider organisation, recipient organisation
THEN a filtered list of all organisations should be displayed
WHEN typing in the reporting organisation field
THEN a filtered list of all 'reportable' organisations should be displayed
WHEN selecting a date input
THEN a calendar should be displayed
## Issues
- [x] Add new section in MyRSR for project admin
- [x] Create markup for page
- [x] Divide page into sections
- [x] Fill with live project data
- [x] Make draft projects possible (remove all required fields)
- [x] Create new (empty) project from MyRSR
- [x] Add new publishing rules for mandatory fields
- [x] Improve speed of admin page
- [x] Add typeaheads for project and organisation dropdowns
- [x] Add __i__ icon for help texts
- [x] Add live progress indicators (total and per section)
- [x] All text fields with a maximum character amount should have an indication of the allowed number of characters: __(10 characters remaining)__
- [x] Add indication of mandatory fields
- [x] Submit all sections of form
- [x] 'View project online' and 'Publish' button
- [x] Set publishing rights only for admins, create & edit project also for project editors
- [x] Add new project
- [x] Change order of fields and sections
- [x] Add all help texts and maximum character amount texts
- [x] Translate all texts
- [x] Section 10; comments for internal use
- [x] 'Hide advanced (IATI) fields' checkbox
- [x] Custom fields per partner (include admin section, help texts, maximum character limit)
- [x] Help / manual page for first use
- [x] Remove funding when different partner type is selected
- [x] Update currency when adjusted
- [x] Show when a section is saved or when an error occurred
- [x] Update mandatory fields and publishing status
- [x] Replace partner types
- [x] Show total budget, and replace budget items
- [x] Fold / unfold multiple levels, or background colour
- [x] Show 'Preview project' when not published
- [x] Legenda + intro pop-up difference
- [x] Small description fields for results section
- [x] i-icon also for headers
- [x] Update My projects to also show projects of reporting organisation and placeholder title, and search for project number
- [x] Not all date fields show calendar (safari / firefox)
- [x] Log changes
- [x] Better display of errors
- [x] Add alert when closing the window with unsaved changes
- [x] Process feedback from https://docs.google.com/document/d/1LjXA1Z-pcsDa9yCmdkec-tHjhZnrLWqG0zNNiPANaP0 | 1.0 | Create New RSR admin form section - ## Test plan
### My Projects page
GIVEN the My Projects page
WHEN logged in as an RSR Superuser or RSR Admin
THEN the user should be able to create a new project
AND visit the project editor for any existing project
WHEN logged in as an Organisation Admin
THEN the user should be able to create a new project, only when your organisation is marked as 'Reportable'
AND visit the project editor for any existing project that is linked to your organisation
WHEN logged in as an Organisation Project Editor
THEN the user should be able to visit the project editor for any existing project that is linked to your organisation
WHEN logged in as an Organisation User Manager or Organisation User
THEN the user should NOT be able to visit the project editor for any project
### Project editor page
GIVEN the Project editor with a selected project
AND a user with rights to edit the project
WHEN logged in as an RSR Superuser or RSR Admin or Organisation Admin
AND the process bar on top of the page is green
THEN the user should be able to click the publish button
WHEN logged in as an RSR Project Editor
THEN the user should NOT be able to see the publish button
WHEN clicking on the 'Save' button for in any section
THEN a success or error message should always be displayed within 10 seconds
AND after a successful save when reloading the page, the same information should be displayed
WHEN changing a field on the form EXCEPT file uploads (not implemented) without saving
AND reloading or moving away from the page
THEN the user should see an alert stating which sections have unsaved changed
WHEN clicking on an information icon
THEN a help text should be displayed
WHEN filling in a mandatory field
THEN the section and total progress bar should respond accordingly
WHEN typing in one of the organisation fields: related project, project partner, provider organisation, recipient organisation
THEN a filtered list of all organisations should be displayed
WHEN typing in the reporting organisation field
THEN a filtered list of all 'reportable' organisations should be displayed
WHEN selecting a date input
THEN a calendar should be displayed
## Issues
- [x] Add new section in MyRSR for project admin
- [x] Create markup for page
- [x] Divide page into sections
- [x] Fill with live project data
- [x] Make draft projects possible (remove all required fields)
- [x] Create new (empty) project from MyRSR
- [x] Add new publishing rules for mandatory fields
- [x] Improve speed of admin page
- [x] Add typeaheads for project and organisation dropdowns
- [x] Add __i__ icon for help texts
- [x] Add live progress indicators (total and per section)
- [x] All text fields with a maximum character amount should have an indication of the allowed number of characters: __(10 characters remaining)__
- [x] Add indication of mandatory fields
- [x] Submit all sections of form
- [x] 'View project online' and 'Publish' button
- [x] Set publishing rights only for admins, create & edit project also for project editors
- [x] Add new project
- [x] Change order of fields and sections
- [x] Add all help texts and maximum character amount texts
- [x] Translate all texts
- [x] Section 10; comments for internal use
- [x] 'Hide advanced (IATI) fields' checkbox
- [x] Custom fields per partner (include admin section, help texts, maximum character limit)
- [x] Help / manual page for first use
- [x] Remove funding when different partner type is selected
- [x] Update currency when adjusted
- [x] Show when a section is saved or when an error occurred
- [x] Update mandatory fields and publishing status
- [x] Replace partner types
- [x] Show total budget, and replace budget items
- [x] Fold / unfold multiple levels, or background colour
- [x] Show 'Preview project' when not published
- [x] Legenda + intro pop-up difference
- [x] Small description fields for results section
- [x] i-icon also for headers
- [x] Update My projects to also show projects of reporting organisation and placeholder title, and search for project number
- [x] Not all date fields show calendar (safari / firefox)
- [x] Log changes
- [x] Better display of errors
- [x] Add alert when closing the window with unsaved changes
- [x] Process feedback from https://docs.google.com/document/d/1LjXA1Z-pcsDa9yCmdkec-tHjhZnrLWqG0zNNiPANaP0 | priority | create new rsr admin form section test plan my projects page given the my projects page when logged in as an rsr superuser or rsr admin then the user should be able to create a new project and visit the project editor for any existing project when logged in as an organisation admin then the user should be able to create a new project only when your organisation is marked as reportable and visit the project editor for any existing project that is linked to your organisation when logged in as an organisation project editor then the user should be able to visit the project editor for any existing project that is linked to your organisation when logged in as an organisation user manager or organisation user then the user should not be able to visit the project editor for any project project editor page given the project editor with a selected project and a user with rights to edit the project when logged in as an rsr superuser or rsr admin or organisation admin and the process bar on top of the page is green then the user should be able to click the publish button when logged in as an rsr project editor then the user should not be able to see the publish button when clicking on the save button for in any section then a success or error message should always be displayed within seconds and after a successful save when reloading the page the same information should be displayed when changing a field on the form except file uploads not implemented without saving and reloading or moving away from the page then the user should see an alert stating which sections have unsaved changed when clicking on an information icon then a help text should be displayed when filling in a mandatory field then the section and total progress bar should respond accordingly when typing in one of the organisation fields related project project partner provider organisation recipient organisation then a filtered list of all organisations should be displayed when typing in the reporting organisation field then a filtered list of all reportable organisations should be displayed when selecting a date input then a calendar should be displayed issues add new section in myrsr for project admin create markup for page divide page into sections fill with live project data make draft projects possible remove all required fields create new empty project from myrsr add new publishing rules for mandatory fields improve speed of admin page add typeaheads for project and organisation dropdowns add i icon for help texts add live progress indicators total and per section all text fields with a maximum character amount should have an indication of the allowed number of characters characters remaining add indication of mandatory fields submit all sections of form view project online and publish button set publishing rights only for admins create edit project also for project editors add new project change order of fields and sections add all help texts and maximum character amount texts translate all texts section comments for internal use hide advanced iati fields checkbox custom fields per partner include admin section help texts maximum character limit help manual page for first use remove funding when different partner type is selected update currency when adjusted show when a section is saved or when an error occurred update mandatory fields and publishing status replace partner types show total budget and replace budget items fold unfold multiple levels or background colour show preview project when not published legenda intro pop up difference small description fields for results section i icon also for headers update my projects to also show projects of reporting organisation and placeholder title and search for project number not all date fields show calendar safari firefox log changes better display of errors add alert when closing the window with unsaved changes process feedback from | 1 |
767,560 | 26,931,443,087 | IssuesEvent | 2023-02-07 17:06:23 | openforcefield/protein-ligand-benchmark | https://api.github.com/repos/openforcefield/protein-ligand-benchmark | closed | Fix PDB files | priority-high | Essentially #58 but this time directly against `main`.
Need to fix:
- Make sure HETATM are applied properly, and make sure https://github.com/openforcefield/protein-ligand-benchmark/pull/52#issuecomment-1259610322 is fixed.
- Change the atom names for the caps to adhere to PDB naming conventions
- Remove ANISOU records for TYK2 and Thrombin
- Rename NMA caps to NME
- Don't have NME (or NMA) caps have icodes
- Make sure SSBOND entries are consistent (I believe this is already fine)
- Assign correct hydrogen name for histidines (need to double check if this is PDB compliant) | 1.0 | Fix PDB files - Essentially #58 but this time directly against `main`.
Need to fix:
- Make sure HETATM are applied properly, and make sure https://github.com/openforcefield/protein-ligand-benchmark/pull/52#issuecomment-1259610322 is fixed.
- Change the atom names for the caps to adhere to PDB naming conventions
- Remove ANISOU records for TYK2 and Thrombin
- Rename NMA caps to NME
- Don't have NME (or NMA) caps have icodes
- Make sure SSBOND entries are consistent (I believe this is already fine)
- Assign correct hydrogen name for histidines (need to double check if this is PDB compliant) | priority | fix pdb files essentially but this time directly against main need to fix make sure hetatm are applied properly and make sure is fixed change the atom names for the caps to adhere to pdb naming conventions remove anisou records for and thrombin rename nma caps to nme don t have nme or nma caps have icodes make sure ssbond entries are consistent i believe this is already fine assign correct hydrogen name for histidines need to double check if this is pdb compliant | 1 |
368,013 | 10,864,580,186 | IssuesEvent | 2019-11-14 17:08:38 | Azure/mmlspark | https://api.github.com/repos/Azure/mmlspark | closed | LightGBMClassifier Very Slow | LightGBM bug high priority | **Describe the bug**
I am attempting to train a LightGBMClassifier on a dataframe with 2.5 million rows and ~30 columns. This is a very basic MLLIB pipeline where the model is being fit with essentially all default settings. It took 1 hour and 54 minutes to complete. For comparison, a similar run with the commented out `GBTClassifier() `took about 5 minutes.
Are there any known issues with this version (the newest version appears unavailable - see https://github.com/Azure/mmlspark/issues/718) or settings recommended with the Spark?
```
#set up pipeline and fit
stages = []
#target label
label_stringIdx = StringIndexer(inputCol = target_col[0], outputCol = 'label')
stages += [label_stringIdx]
#numeric (would also build up with categorical using StringIndexer and OneHotEncoderEstimator)
assembler = VectorAssembler(inputCols=input_cols, outputCol="features")
stages += [assembler]
#model
#gbt = GBTClassifier(labelCol="label", featuresCol="features", maxIter=50)
#stages += [gbt]
lgb_estimator = LightGBMClassifier(learningRate=0.1,
earlyStoppingRound=10,
featuresCol='features',
labelCol="label" )
stages += [lgb_estimator]
#pipeline
pipelineModel = Pipeline(stages=stages)
start = time.time()
#fit train
model = pipelineModel.fit(train)
end = time.time()
print(elapsedtime(start,end))
#predict
preds=model.transform(test)
#preds.show(10)
```
**Info (please complete the following information):**
- MMLSpark Version: pyspark --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.1
- Spark Version 2.4.3
- Spark Platform EMR
| 1.0 | LightGBMClassifier Very Slow - **Describe the bug**
I am attempting to train a LightGBMClassifier on a dataframe with 2.5 million rows and ~30 columns. This is a very basic MLLIB pipeline where the model is being fit with essentially all default settings. It took 1 hour and 54 minutes to complete. For comparison, a similar run with the commented out `GBTClassifier() `took about 5 minutes.
Are there any known issues with this version (the newest version appears unavailable - see https://github.com/Azure/mmlspark/issues/718) or settings recommended with the Spark?
```
#set up pipeline and fit
stages = []
#target label
label_stringIdx = StringIndexer(inputCol = target_col[0], outputCol = 'label')
stages += [label_stringIdx]
#numeric (would also build up with categorical using StringIndexer and OneHotEncoderEstimator)
assembler = VectorAssembler(inputCols=input_cols, outputCol="features")
stages += [assembler]
#model
#gbt = GBTClassifier(labelCol="label", featuresCol="features", maxIter=50)
#stages += [gbt]
lgb_estimator = LightGBMClassifier(learningRate=0.1,
earlyStoppingRound=10,
featuresCol='features',
labelCol="label" )
stages += [lgb_estimator]
#pipeline
pipelineModel = Pipeline(stages=stages)
start = time.time()
#fit train
model = pipelineModel.fit(train)
end = time.time()
print(elapsedtime(start,end))
#predict
preds=model.transform(test)
#preds.show(10)
```
**Info (please complete the following information):**
- MMLSpark Version: pyspark --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.1
- Spark Version 2.4.3
- Spark Platform EMR
| priority | lightgbmclassifier very slow describe the bug i am attempting to train a lightgbmclassifier on a dataframe with million rows and columns this is a very basic mllib pipeline where the model is being fit with essentially all default settings it took hour and minutes to complete for comparison a similar run with the commented out gbtclassifier took about minutes are there any known issues with this version the newest version appears unavailable see or settings recommended with the spark set up pipeline and fit stages target label label stringidx stringindexer inputcol target col outputcol label stages numeric would also build up with categorical using stringindexer and onehotencoderestimator assembler vectorassembler inputcols input cols outputcol features stages model gbt gbtclassifier labelcol label featurescol features maxiter stages lgb estimator lightgbmclassifier learningrate earlystoppinground featurescol features labelcol label stages pipeline pipelinemodel pipeline stages stages start time time fit train model pipelinemodel fit train end time time print elapsedtime start end predict preds model transform test preds show info please complete the following information mmlspark version pyspark packages com microsoft ml spark mmlspark spark version spark platform emr | 1 |
805,466 | 29,520,766,934 | IssuesEvent | 2023-06-05 01:27:35 | fablabjoinville/thinktank | https://api.github.com/repos/fablabjoinville/thinktank | closed | Criar um model para Evento e um para Encontro | priority-high | Quando se cria um Evento preliminar (P), não existe ainda uma Equipe associada.
Precisamos adicionar as Pessoas manualmente ao Evento.
Quando se cria um Evento encontro (E), cada Mentor faz a avaliação de Presença.
A diferença entre Evento P e Evento E é que no E as pessoas se encontram para trabalhar e conversar.
Eventos do tipo P: palestra, churrasco. | 1.0 | Criar um model para Evento e um para Encontro - Quando se cria um Evento preliminar (P), não existe ainda uma Equipe associada.
Precisamos adicionar as Pessoas manualmente ao Evento.
Quando se cria um Evento encontro (E), cada Mentor faz a avaliação de Presença.
A diferença entre Evento P e Evento E é que no E as pessoas se encontram para trabalhar e conversar.
Eventos do tipo P: palestra, churrasco. | priority | criar um model para evento e um para encontro quando se cria um evento preliminar p não existe ainda uma equipe associada precisamos adicionar as pessoas manualmente ao evento quando se cria um evento encontro e cada mentor faz a avaliação de presença a diferença entre evento p e evento e é que no e as pessoas se encontram para trabalhar e conversar eventos do tipo p palestra churrasco | 1 |
154,566 | 5,921,320,289 | IssuesEvent | 2017-05-22 22:42:04 | minio/minio | https://api.github.com/repos/minio/minio | closed | [gateway-azure]: PutObject is not verifying md5sum | priority: high | ```
func (a AzureObjects) PutObject(bucket, object string, size int64, data io.Reader, metadata map[string]string, sha256sum string) (objInfo ObjectInfo, err error) {
var sha256Writer hash.Hash
teeReader := data
if sha256sum != "" {
sha256Writer = sha256.New()
teeReader = io.TeeReader(data, sha256Writer)
}
delete(metadata, "md5Sum")
```
Azure gateway is ignoring the md5sum sent by client. It should verify that it is correct.
| 1.0 | [gateway-azure]: PutObject is not verifying md5sum - ```
func (a AzureObjects) PutObject(bucket, object string, size int64, data io.Reader, metadata map[string]string, sha256sum string) (objInfo ObjectInfo, err error) {
var sha256Writer hash.Hash
teeReader := data
if sha256sum != "" {
sha256Writer = sha256.New()
teeReader = io.TeeReader(data, sha256Writer)
}
delete(metadata, "md5Sum")
```
Azure gateway is ignoring the md5sum sent by client. It should verify that it is correct.
| priority | putobject is not verifying func a azureobjects putobject bucket object string size data io reader metadata map string string objinfo objectinfo err error var hash hash teereader data if new teereader io teereader data delete metadata azure gateway is ignoring the sent by client it should verify that it is correct | 1 |
521,106 | 15,102,644,833 | IssuesEvent | 2021-02-08 09:16:53 | kubermatic/kubermatic | https://api.github.com/repos/kubermatic/kubermatic | closed | Integrate OPA with Kubermatic | Epic priority/high sig/ui | **User Story**
We would like to have OPA integrated with Kubermatic. Users should be able to set OPA policies through the Kubermatic dashboard and have them applied to their clusters.
**Note:** Issues relating to this epic are managed [via ZenHub](https://app.zenhub.com/workspace/o/kubermatic/kubermatic/issues/5759). | 1.0 | Integrate OPA with Kubermatic - **User Story**
We would like to have OPA integrated with Kubermatic. Users should be able to set OPA policies through the Kubermatic dashboard and have them applied to their clusters.
**Note:** Issues relating to this epic are managed [via ZenHub](https://app.zenhub.com/workspace/o/kubermatic/kubermatic/issues/5759). | priority | integrate opa with kubermatic user story we would like to have opa integrated with kubermatic users should be able to set opa policies through the kubermatic dashboard and have them applied to their clusters note issues relating to this epic are managed | 1 |
138,246 | 5,330,512,816 | IssuesEvent | 2017-02-15 17:13:08 | rd-alliance/metadata-catalog-dev | https://api.github.com/repos/rd-alliance/metadata-catalog-dev | closed | Search by identifier | GUI high priority | Responding to a search query of a metadata scheme identifier, display the corresponding record. | 1.0 | Search by identifier - Responding to a search query of a metadata scheme identifier, display the corresponding record. | priority | search by identifier responding to a search query of a metadata scheme identifier display the corresponding record | 1 |
143,163 | 5,511,226,644 | IssuesEvent | 2017-03-17 03:38:02 | Esteemed-Innovation/Esteemed-Innovation | https://api.github.com/repos/Esteemed-Innovation/Esteemed-Innovation | closed | Hardcode locales in StringUtility | Priority: High Type: API Type: Bug | ## Description
Certain locales do not capitalize stuff the same way. The locale should be explicitly set.
## Base information
* Minecraft version:
* Minecraft Forge version:
* Esteemed Innovation version:
## Crash report
```
CRASH REPORT HERE
```
| 1.0 | Hardcode locales in StringUtility - ## Description
Certain locales do not capitalize stuff the same way. The locale should be explicitly set.
## Base information
* Minecraft version:
* Minecraft Forge version:
* Esteemed Innovation version:
## Crash report
```
CRASH REPORT HERE
```
| priority | hardcode locales in stringutility description certain locales do not capitalize stuff the same way the locale should be explicitly set base information minecraft version minecraft forge version esteemed innovation version crash report crash report here | 1 |
752,692 | 26,295,563,015 | IssuesEvent | 2023-01-08 23:06:52 | inlang/inlang | https://api.github.com/repos/inlang/inlang | closed | pushing changes fails if outstanding origin changes exist | type: bug priority: high | ## Problem
Pushing changes fails if the origin repository has changes that have not been pulled.
## Steps to reproduce
1. Open a repository in the editor
2. Make a change to the repository outside of the editor
3. Make a change to the repository inside the editor
4. Push the changes from the editor
### Expected behavior
Pushing should work if no merge conflicts exist
### Additional information (screenshots?)
<img width="466" alt="CleanShot 2023-01-03 at 12 55 24@2x" src="https://user-images.githubusercontent.com/35429197/210352947-f9f10a09-458d-4338-8740-a56873b6b6a5.png">
| 1.0 | pushing changes fails if outstanding origin changes exist - ## Problem
Pushing changes fails if the origin repository has changes that have not been pulled.
## Steps to reproduce
1. Open a repository in the editor
2. Make a change to the repository outside of the editor
3. Make a change to the repository inside the editor
4. Push the changes from the editor
### Expected behavior
Pushing should work if no merge conflicts exist
### Additional information (screenshots?)
<img width="466" alt="CleanShot 2023-01-03 at 12 55 24@2x" src="https://user-images.githubusercontent.com/35429197/210352947-f9f10a09-458d-4338-8740-a56873b6b6a5.png">
| priority | pushing changes fails if outstanding origin changes exist problem pushing changes fails if the origin repository has changes that have not been pulled steps to reproduce open a repository in the editor make a change to the repository outside of the editor make a change to the repository inside the editor push the changes from the editor expected behavior pushing should work if no merge conflicts exist additional information screenshots img width alt cleanshot at src | 1 |
105,852 | 4,242,726,355 | IssuesEvent | 2016-07-06 20:29:03 | PolarisSS13/Polaris | https://api.github.com/repos/PolarisSS13/Polaris | closed | Most ghosts lack sprites | Bug Priority: High | Upon observing from the lobby, your sprite does not appear. Ghosting from a mob works as intended.
This did not occur prior to the full body prosthetics change. | 1.0 | Most ghosts lack sprites - Upon observing from the lobby, your sprite does not appear. Ghosting from a mob works as intended.
This did not occur prior to the full body prosthetics change. | priority | most ghosts lack sprites upon observing from the lobby your sprite does not appear ghosting from a mob works as intended this did not occur prior to the full body prosthetics change | 1 |
695,926 | 23,876,698,785 | IssuesEvent | 2022-09-07 19:49:13 | PrefectHQ/prefect | https://api.github.com/repos/PrefectHQ/prefect | closed | Frequent crashing with scheduled deployments | bug priority:high status:in-progress component:deployment | ### First check
- [X] I added a descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the Prefect documentation for this issue.
- [X] I checked that this issue is related to Prefect and not one of its dependencies.
### Bug summary
When scheduling flows with multiple agents listening to the same work queue, I get frequent CRASHED flow runs even when the flow run was successful. When only running a single agent, these crashes never happen and only happen infrequently on manual flow runs using multiple agents
What appears to be happening is that all or some of the agents pick up the same flow run. The first to execute it succeeds and I can sometimes see the flow run move to COMPLETED briefly (1 second or less) and then it moves to CRASHED
If I set `PREFECT_AGENT_PREFETCH_SECONDS` to 0, the crashes happen less frequently but still do happen sometimes
### Reproduction
```python
Ran 4 docker containers, one orion server and 3 agents:
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -p 4200:4200 -e PREFECT_ORION_API_HOST="0.0.0.0" prefecthq/prefect:2.3.2-python3.10 prefect orion start
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -e PREFECT_API_URL="http://172.17.0.2:4200/api" prefecthq/prefect:2.3.2-python3.10 prefect agent start --work-queue default
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -e PREFECT_API_URL="http://172.17.0.2:4200/api" prefecthq/prefect:2.3.2-python3.10 prefect agent start --work-queue default
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -e PREFECT_API_URL="http://172.17.0.2:4200/api" prefecthq/prefect:2.3.2-python3.10 prefect agent start --work-queue default
```
Deployed the following flow with a schedule interval of 1 minute in `/tmp/prefect-testing` so all could access the flow file:
```
@task
def print_something():
logger = get_run_logger()
logger.info("Got here")
@flow
def testing():
print_something()
```
This is also happening on my current testing environment:
* Orion server on a single host running from docker `prefecthq/prefect:2.3.2-python3.10`
* 3 agents running on separate hosts running on Ubuntu jammy (kernel 5.15.0-47-generic) with python 3.10.4 and prefect running in a venv
### Error
In the list below, the COMPLETED flow run was manually executed, but the rest were scheduled:
```
prefect flow-run ls
Flow Runs
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓
┃ ID ┃ Flow ┃ Name ┃ State ┃ When ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩
│ 27c8708e-513e-46c0-a194-f9d0fa250032 │ testing │ soft-dragon │ CRASHED │ 13 seconds ago │
│ da5cf23e-4763-462f-b15a-12e4d58bc029 │ testing │ translucent-swift │ CRASHED │ 1 minute ago │
│ 6a5ff55d-3850-4e01-8002-1427a0975e14 │ testing │ shrewd-elk │ CRASHED │ 2 minutes ago │
│ 5252f15c-eecc-4a11-a46a-a2503b80deaf │ testing │ cunning-okapi │ CRASHED │ 3 minutes ago │
│ c5ad3fa9-c55e-4c01-8eb7-70214e17021a │ testing │ rapid-oriole │ CRASHED │ 4 minutes ago │
│ 61ce236a-cd5d-428c-b653-34e1a491b6f3 │ testing │ versed-kittiwake │ CRASHED │ 5 minutes ago │
│ 7cbc9c9e-490a-4f54-ba3e-df89a07eb79e │ testing │ tungsten-sambar │ CRASHED │ 6 minutes ago │
│ 188cd036-76fc-4ab8-9cbf-0acef8d0846c │ testing │ uber-elk │ COMPLETED │ 8 minutes ago │
│ c3b2a1be-9f2b-458a-af36-738777a678c7 │ testing │ azure-gibbon │ CRASHED │ 7 minutes ago │
│ 07f5a490-1519-4335-8382-d471c05762ca │ testing │ hot-otter │ CRASHED │ 8 minutes ago │
│ c73af7d0-9e1c-4bf6-adbe-df494e1f714b │ testing │ statuesque-starling │ CRASHED │ 9 minutes ago │
└──────────────────────────────────────┴─────────┴─────────────────────┴───────────┴────────────────┘
```
If I look at the logs in each agent for the first flow run, this is what I can see:
Agent 1:
```
15:15:43.466 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:48.554 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:52.669 | INFO | prefect.infrastructure.process - Opening process 'statuesque-starling'...
15:15:52.671 | INFO | prefect.agent - Completed submission of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:58.570 | INFO | Flow run 'statuesque-starling' - Created task run 'print_something-84260fba-0' for task 'print_something'
15:15:58.571 | INFO | Flow run 'statuesque-starling' - Executing 'print_something-84260fba-0' immediately...
15:15:58.600 | INFO | Task run 'print_something-84260fba-0' - Got here
15:15:58.624 | INFO | Task run 'print_something-84260fba-0' - Finished in state Completed()
15:15:58.644 | INFO | Flow run 'statuesque-starling' - Finished in state Completed('All states completed.')
15:15:58.911 | INFO | prefect.infrastructure.process - Process 'statuesque-starling' exited cleanly.
```
Agent 2:
```
15:15:45.858 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:50.940 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:52.963 | INFO | prefect.infrastructure.process - Opening process 'statuesque-starling'...
15:15:52.968 | INFO | prefect.agent - Completed submission of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:16:02.187 | ERROR | Flow run 'statuesque-starling' - Crash detected! Execution was interrupted by an unexpected exception.
15:16:02.209 | INFO | prefect.engine - Engine execution of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b' aborted by orchestrator: This run has already terminated.
15:16:02.828 | INFO | prefect.infrastructure.process - Process 'statuesque-starling' exited cleanly.
```
Agent 3:
```
15:15:45.233 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:50.316 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:52.406 | INFO | prefect.infrastructure.process - Opening process 'statuesque-starling'...
15:15:52.409 | INFO | prefect.agent - Completed submission of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:59.966 | ERROR | Flow run 'statuesque-starling' - Crash detected! Execution was interrupted by an unexpected exception.
15:16:00.002 | INFO | prefect.engine - Engine execution of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b' aborted by orchestrator: This run has already terminated.
15:16:00.962 | INFO | prefect.infrastructure.process - Process 'statuesque-starling' exited cleanly.
```
In this case, all of the agents picked up the same flow run and attempted to execute it. The first agent succeeded and reported success, the other two agents also attempted to run the job and failed because it was already complete which would be expected. The problem is that their CRASHED status report seems to be overwriting the original COMPLETED
If I look in the orion UI for this job, I get the following output:
```
Created task run 'print_something-84260fba-0' for task 'print_something'
Executing 'print_something-84260fba-0' immediately...
Got here
Crash detected! Execution was interrupted by an unexpected exception.
Crash detected! Execution was interrupted by an unexpected exception.
```
Running more complex flows, I also get the occasional `ValueError: Path /root/.prefect/storage/xxx does not exist` error in the logs, but again it always seems to be related to other agents running the same flow and producing `This run has already terminated` errors
Same flow with `PREFECT_AGENT_PREFETCH_SECONDS` set to 0 after clearing out the server:
```
prefect flow-run ls
Flow Runs
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓
┃ ID ┃ Flow ┃ Name ┃ State ┃ When ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩
│ bb8aa740-e9a7-4429-ab76-50ebb8aa4081 │ testing │ humongous-guppy │ SCHEDULED │ in 30 seconds │
│ fae5b82b-927b-45af-ac51-2cb56ec33864 │ testing │ utopian-hyena │ COMPLETED │ 20 seconds ago │
│ 67d0550c-0d63-4866-8719-2ed74d5c987d │ testing │ phenomenal-chupacabra │ COMPLETED │ 1 minute ago │
│ 68ef2876-c682-47b8-b1cc-a9ef4ff26c69 │ testing │ astonishing-stoat │ COMPLETED │ 2 minutes ago │
│ 38abdb63-0d26-4cfb-afbe-fb8dba070d16 │ testing │ enchanted-mole │ COMPLETED │ 3 minutes ago │
│ 30b6aa26-6c40-4ec1-a59d-df49625c9ff6 │ testing │ acoustic-mantis │ COMPLETED │ 4 minutes ago │
│ 6c4d0172-ebf8-45ab-baa6-492d96941be6 │ testing │ purring-caracara │ CRASHED │ 5 minutes ago │
│ 827ec6a9-91d1-4d98-80f8-176001169887 │ testing │ merciful-kudu │ CRASHED │ 6 minutes ago │
│ 18eca9a0-591a-4edd-8c0a-2c5b9d885d7e │ testing │ enormous-caribou │ CRASHED │ 7 minutes ago │
│ 53f2d58b-edb2-4bae-9cdc-fac10bdd8ea5 │ testing │ calm-roadrunner │ CRASHED │ 8 minutes ago │
│ af5a5776-f9ad-415e-a4d0-37f130a45bde │ testing │ agate-earthworm │ COMPLETED │ 9 minutes ago │
│ 249849e6-a509-467a-b069-2618215ca48c │ testing │ horned-quokka │ COMPLETED │ 10 minutes ago │
│ 709778c5-17de-47ac-8be9-6f954f92dee5 │ testing │ spiritual-copperhead │ COMPLETED │ 11 minutes ago │
│ 0b93c9af-9808-407f-a154-8d0bba022646 │ testing │ magnetic-viper │ COMPLETED │ 12 minutes ago │
│ db2f7a16-a17a-4925-8f8d-b00a7e6cb146 │ testing │ precious-crayfish │ COMPLETED │ 13 minutes ago │
└──────────────────────────────────────┴─────────┴───────────────────────┴───────────┴────────────────┘
```
### Versions
```
> prefect version
Version: 2.3.2
API version: 0.8.0
Python version: 3.10.6
Git commit: 6e931ee9
Built: Tue, Sep 6, 2022 12:36 PM
OS/Arch: linux/x86_64
Profile: default
Server type: hosted
```
### Additional context
_No response_ | 1.0 | Frequent crashing with scheduled deployments - ### First check
- [X] I added a descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the Prefect documentation for this issue.
- [X] I checked that this issue is related to Prefect and not one of its dependencies.
### Bug summary
When scheduling flows with multiple agents listening to the same work queue, I get frequent CRASHED flow runs even when the flow run was successful. When only running a single agent, these crashes never happen and only happen infrequently on manual flow runs using multiple agents
What appears to be happening is that all or some of the agents pick up the same flow run. The first to execute it succeeds and I can sometimes see the flow run move to COMPLETED briefly (1 second or less) and then it moves to CRASHED
If I set `PREFECT_AGENT_PREFETCH_SECONDS` to 0, the crashes happen less frequently but still do happen sometimes
### Reproduction
```python
Ran 4 docker containers, one orion server and 3 agents:
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -p 4200:4200 -e PREFECT_ORION_API_HOST="0.0.0.0" prefecthq/prefect:2.3.2-python3.10 prefect orion start
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -e PREFECT_API_URL="http://172.17.0.2:4200/api" prefecthq/prefect:2.3.2-python3.10 prefect agent start --work-queue default
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -e PREFECT_API_URL="http://172.17.0.2:4200/api" prefecthq/prefect:2.3.2-python3.10 prefect agent start --work-queue default
docker run --rm -it --volume /tmp/prefect-testing:/tmp/prefect-testing -e PREFECT_API_URL="http://172.17.0.2:4200/api" prefecthq/prefect:2.3.2-python3.10 prefect agent start --work-queue default
```
Deployed the following flow with a schedule interval of 1 minute in `/tmp/prefect-testing` so all could access the flow file:
```
@task
def print_something():
logger = get_run_logger()
logger.info("Got here")
@flow
def testing():
print_something()
```
This is also happening on my current testing environment:
* Orion server on a single host running from docker `prefecthq/prefect:2.3.2-python3.10`
* 3 agents running on separate hosts running on Ubuntu jammy (kernel 5.15.0-47-generic) with python 3.10.4 and prefect running in a venv
### Error
In the list below, the COMPLETED flow run was manually executed, but the rest were scheduled:
```
prefect flow-run ls
Flow Runs
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓
┃ ID ┃ Flow ┃ Name ┃ State ┃ When ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩
│ 27c8708e-513e-46c0-a194-f9d0fa250032 │ testing │ soft-dragon │ CRASHED │ 13 seconds ago │
│ da5cf23e-4763-462f-b15a-12e4d58bc029 │ testing │ translucent-swift │ CRASHED │ 1 minute ago │
│ 6a5ff55d-3850-4e01-8002-1427a0975e14 │ testing │ shrewd-elk │ CRASHED │ 2 minutes ago │
│ 5252f15c-eecc-4a11-a46a-a2503b80deaf │ testing │ cunning-okapi │ CRASHED │ 3 minutes ago │
│ c5ad3fa9-c55e-4c01-8eb7-70214e17021a │ testing │ rapid-oriole │ CRASHED │ 4 minutes ago │
│ 61ce236a-cd5d-428c-b653-34e1a491b6f3 │ testing │ versed-kittiwake │ CRASHED │ 5 minutes ago │
│ 7cbc9c9e-490a-4f54-ba3e-df89a07eb79e │ testing │ tungsten-sambar │ CRASHED │ 6 minutes ago │
│ 188cd036-76fc-4ab8-9cbf-0acef8d0846c │ testing │ uber-elk │ COMPLETED │ 8 minutes ago │
│ c3b2a1be-9f2b-458a-af36-738777a678c7 │ testing │ azure-gibbon │ CRASHED │ 7 minutes ago │
│ 07f5a490-1519-4335-8382-d471c05762ca │ testing │ hot-otter │ CRASHED │ 8 minutes ago │
│ c73af7d0-9e1c-4bf6-adbe-df494e1f714b │ testing │ statuesque-starling │ CRASHED │ 9 minutes ago │
└──────────────────────────────────────┴─────────┴─────────────────────┴───────────┴────────────────┘
```
If I look at the logs in each agent for the first flow run, this is what I can see:
Agent 1:
```
15:15:43.466 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:48.554 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:52.669 | INFO | prefect.infrastructure.process - Opening process 'statuesque-starling'...
15:15:52.671 | INFO | prefect.agent - Completed submission of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:58.570 | INFO | Flow run 'statuesque-starling' - Created task run 'print_something-84260fba-0' for task 'print_something'
15:15:58.571 | INFO | Flow run 'statuesque-starling' - Executing 'print_something-84260fba-0' immediately...
15:15:58.600 | INFO | Task run 'print_something-84260fba-0' - Got here
15:15:58.624 | INFO | Task run 'print_something-84260fba-0' - Finished in state Completed()
15:15:58.644 | INFO | Flow run 'statuesque-starling' - Finished in state Completed('All states completed.')
15:15:58.911 | INFO | prefect.infrastructure.process - Process 'statuesque-starling' exited cleanly.
```
Agent 2:
```
15:15:45.858 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:50.940 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:52.963 | INFO | prefect.infrastructure.process - Opening process 'statuesque-starling'...
15:15:52.968 | INFO | prefect.agent - Completed submission of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:16:02.187 | ERROR | Flow run 'statuesque-starling' - Crash detected! Execution was interrupted by an unexpected exception.
15:16:02.209 | INFO | prefect.engine - Engine execution of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b' aborted by orchestrator: This run has already terminated.
15:16:02.828 | INFO | prefect.infrastructure.process - Process 'statuesque-starling' exited cleanly.
```
Agent 3:
```
15:15:45.233 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:50.316 | INFO | prefect.agent - Submitting flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:52.406 | INFO | prefect.infrastructure.process - Opening process 'statuesque-starling'...
15:15:52.409 | INFO | prefect.agent - Completed submission of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b'
15:15:59.966 | ERROR | Flow run 'statuesque-starling' - Crash detected! Execution was interrupted by an unexpected exception.
15:16:00.002 | INFO | prefect.engine - Engine execution of flow run 'c73af7d0-9e1c-4bf6-adbe-df494e1f714b' aborted by orchestrator: This run has already terminated.
15:16:00.962 | INFO | prefect.infrastructure.process - Process 'statuesque-starling' exited cleanly.
```
In this case, all of the agents picked up the same flow run and attempted to execute it. The first agent succeeded and reported success, the other two agents also attempted to run the job and failed because it was already complete which would be expected. The problem is that their CRASHED status report seems to be overwriting the original COMPLETED
If I look in the orion UI for this job, I get the following output:
```
Created task run 'print_something-84260fba-0' for task 'print_something'
Executing 'print_something-84260fba-0' immediately...
Got here
Crash detected! Execution was interrupted by an unexpected exception.
Crash detected! Execution was interrupted by an unexpected exception.
```
Running more complex flows, I also get the occasional `ValueError: Path /root/.prefect/storage/xxx does not exist` error in the logs, but again it always seems to be related to other agents running the same flow and producing `This run has already terminated` errors
Same flow with `PREFECT_AGENT_PREFETCH_SECONDS` set to 0 after clearing out the server:
```
prefect flow-run ls
Flow Runs
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓
┃ ID ┃ Flow ┃ Name ┃ State ┃ When ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩
│ bb8aa740-e9a7-4429-ab76-50ebb8aa4081 │ testing │ humongous-guppy │ SCHEDULED │ in 30 seconds │
│ fae5b82b-927b-45af-ac51-2cb56ec33864 │ testing │ utopian-hyena │ COMPLETED │ 20 seconds ago │
│ 67d0550c-0d63-4866-8719-2ed74d5c987d │ testing │ phenomenal-chupacabra │ COMPLETED │ 1 minute ago │
│ 68ef2876-c682-47b8-b1cc-a9ef4ff26c69 │ testing │ astonishing-stoat │ COMPLETED │ 2 minutes ago │
│ 38abdb63-0d26-4cfb-afbe-fb8dba070d16 │ testing │ enchanted-mole │ COMPLETED │ 3 minutes ago │
│ 30b6aa26-6c40-4ec1-a59d-df49625c9ff6 │ testing │ acoustic-mantis │ COMPLETED │ 4 minutes ago │
│ 6c4d0172-ebf8-45ab-baa6-492d96941be6 │ testing │ purring-caracara │ CRASHED │ 5 minutes ago │
│ 827ec6a9-91d1-4d98-80f8-176001169887 │ testing │ merciful-kudu │ CRASHED │ 6 minutes ago │
│ 18eca9a0-591a-4edd-8c0a-2c5b9d885d7e │ testing │ enormous-caribou │ CRASHED │ 7 minutes ago │
│ 53f2d58b-edb2-4bae-9cdc-fac10bdd8ea5 │ testing │ calm-roadrunner │ CRASHED │ 8 minutes ago │
│ af5a5776-f9ad-415e-a4d0-37f130a45bde │ testing │ agate-earthworm │ COMPLETED │ 9 minutes ago │
│ 249849e6-a509-467a-b069-2618215ca48c │ testing │ horned-quokka │ COMPLETED │ 10 minutes ago │
│ 709778c5-17de-47ac-8be9-6f954f92dee5 │ testing │ spiritual-copperhead │ COMPLETED │ 11 minutes ago │
│ 0b93c9af-9808-407f-a154-8d0bba022646 │ testing │ magnetic-viper │ COMPLETED │ 12 minutes ago │
│ db2f7a16-a17a-4925-8f8d-b00a7e6cb146 │ testing │ precious-crayfish │ COMPLETED │ 13 minutes ago │
└──────────────────────────────────────┴─────────┴───────────────────────┴───────────┴────────────────┘
```
### Versions
```
> prefect version
Version: 2.3.2
API version: 0.8.0
Python version: 3.10.6
Git commit: 6e931ee9
Built: Tue, Sep 6, 2022 12:36 PM
OS/Arch: linux/x86_64
Profile: default
Server type: hosted
```
### Additional context
_No response_ | priority | frequent crashing with scheduled deployments first check i added a descriptive title to this issue i used the github search to find a similar issue and didn t find it i searched the prefect documentation for this issue i checked that this issue is related to prefect and not one of its dependencies bug summary when scheduling flows with multiple agents listening to the same work queue i get frequent crashed flow runs even when the flow run was successful when only running a single agent these crashes never happen and only happen infrequently on manual flow runs using multiple agents what appears to be happening is that all or some of the agents pick up the same flow run the first to execute it succeeds and i can sometimes see the flow run move to completed briefly second or less and then it moves to crashed if i set prefect agent prefetch seconds to the crashes happen less frequently but still do happen sometimes reproduction python ran docker containers one orion server and agents docker run rm it volume tmp prefect testing tmp prefect testing p e prefect orion api host prefecthq prefect prefect orion start docker run rm it volume tmp prefect testing tmp prefect testing e prefect api url prefecthq prefect prefect agent start work queue default docker run rm it volume tmp prefect testing tmp prefect testing e prefect api url prefecthq prefect prefect agent start work queue default docker run rm it volume tmp prefect testing tmp prefect testing e prefect api url prefecthq prefect prefect agent start work queue default deployed the following flow with a schedule interval of minute in tmp prefect testing so all could access the flow file task def print something logger get run logger logger info got here flow def testing print something this is also happening on my current testing environment orion server on a single host running from docker prefecthq prefect agents running on separate hosts running on ubuntu jammy kernel generic with python and prefect running in a venv error in the list below the completed flow run was manually executed but the rest were scheduled prefect flow run ls flow runs ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ id ┃ flow ┃ name ┃ state ┃ when ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩ │ │ testing │ soft dragon │ crashed │ seconds ago │ │ │ testing │ translucent swift │ crashed │ minute ago │ │ │ testing │ shrewd elk │ crashed │ minutes ago │ │ eecc │ testing │ cunning okapi │ crashed │ minutes ago │ │ │ testing │ rapid oriole │ crashed │ minutes ago │ │ │ testing │ versed kittiwake │ crashed │ minutes ago │ │ │ testing │ tungsten sambar │ crashed │ minutes ago │ │ │ testing │ uber elk │ completed │ minutes ago │ │ │ testing │ azure gibbon │ crashed │ minutes ago │ │ │ testing │ hot otter │ crashed │ minutes ago │ │ adbe │ testing │ statuesque starling │ crashed │ minutes ago │ └──────────────────────────────────────┴─────────┴─────────────────────┴───────────┴────────────────┘ if i look at the logs in each agent for the first flow run this is what i can see agent info prefect agent submitting flow run adbe info prefect agent submitting flow run adbe info prefect infrastructure process opening process statuesque starling info prefect agent completed submission of flow run adbe info flow run statuesque starling created task run print something for task print something info flow run statuesque starling executing print something immediately info task run print something got here info task run print something finished in state completed info flow run statuesque starling finished in state completed all states completed info prefect infrastructure process process statuesque starling exited cleanly agent info prefect agent submitting flow run adbe info prefect agent submitting flow run adbe info prefect infrastructure process opening process statuesque starling info prefect agent completed submission of flow run adbe error flow run statuesque starling crash detected execution was interrupted by an unexpected exception info prefect engine engine execution of flow run adbe aborted by orchestrator this run has already terminated info prefect infrastructure process process statuesque starling exited cleanly agent info prefect agent submitting flow run adbe info prefect agent submitting flow run adbe info prefect infrastructure process opening process statuesque starling info prefect agent completed submission of flow run adbe error flow run statuesque starling crash detected execution was interrupted by an unexpected exception info prefect engine engine execution of flow run adbe aborted by orchestrator this run has already terminated info prefect infrastructure process process statuesque starling exited cleanly in this case all of the agents picked up the same flow run and attempted to execute it the first agent succeeded and reported success the other two agents also attempted to run the job and failed because it was already complete which would be expected the problem is that their crashed status report seems to be overwriting the original completed if i look in the orion ui for this job i get the following output created task run print something for task print something executing print something immediately got here crash detected execution was interrupted by an unexpected exception crash detected execution was interrupted by an unexpected exception running more complex flows i also get the occasional valueerror path root prefect storage xxx does not exist error in the logs but again it always seems to be related to other agents running the same flow and producing this run has already terminated errors same flow with prefect agent prefetch seconds set to after clearing out the server prefect flow run ls flow runs ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ id ┃ flow ┃ name ┃ state ┃ when ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩ │ │ testing │ humongous guppy │ scheduled │ in seconds │ │ │ testing │ utopian hyena │ completed │ seconds ago │ │ │ testing │ phenomenal chupacabra │ completed │ minute ago │ │ │ testing │ astonishing stoat │ completed │ minutes ago │ │ afbe │ testing │ enchanted mole │ completed │ minutes ago │ │ │ testing │ acoustic mantis │ completed │ minutes ago │ │ │ testing │ purring caracara │ crashed │ minutes ago │ │ │ testing │ merciful kudu │ crashed │ minutes ago │ │ │ testing │ enormous caribou │ crashed │ minutes ago │ │ │ testing │ calm roadrunner │ crashed │ minutes ago │ │ │ testing │ agate earthworm │ completed │ minutes ago │ │ │ testing │ horned quokka │ completed │ minutes ago │ │ │ testing │ spiritual copperhead │ completed │ minutes ago │ │ │ testing │ magnetic viper │ completed │ minutes ago │ │ │ testing │ precious crayfish │ completed │ minutes ago │ └──────────────────────────────────────┴─────────┴───────────────────────┴───────────┴────────────────┘ versions prefect version version api version python version git commit built tue sep pm os arch linux profile default server type hosted additional context no response | 1 |
64,670 | 3,214,057,431 | IssuesEvent | 2015-10-06 22:52:41 | cryptonomex/graphene | https://api.github.com/repos/cryptonomex/graphene | opened | Two witness attempt to produce block for same timestamp | bug hardfork High Priority | ```
2829060ms th_a application.cpp:388 handle_block ] Got block #37740 with time 2015-10-06T22:47:09 from network with latency of 59 ms from init4
2832064ms th_a application.cpp:388 handle_block ] Got block #37741 with time 2015-10-06T22:47:12 from network with latency of 64 ms from init6
2832196ms th_a application.cpp:518 get_item ] Serving up block #37741
2835070ms th_a application.cpp:388 handle_block ] Got block #37742 with time 2015-10-06T22:47:15 from network with latency of 69 ms from init9
2835276ms th_a application.cpp:388 handle_block ] Got block #37742 with time 2015-10-06T22:47:15 from network with latency of 276 ms from bitshares-argentina
2841178ms th_a application.cpp:388 handle_block ] Got block #37743 with time 2015-10-06T22:47:21 from network with latency of 178 ms from mindphlux.witness
2841178ms th_a db_block.cpp:134 _push_block ] Switching to fork: 0000936f6e74cf60d63a26beac7a5ec018571f23
```
What is very odd about that one of the witnesses produced the prior two blocks! | 1.0 | Two witness attempt to produce block for same timestamp - ```
2829060ms th_a application.cpp:388 handle_block ] Got block #37740 with time 2015-10-06T22:47:09 from network with latency of 59 ms from init4
2832064ms th_a application.cpp:388 handle_block ] Got block #37741 with time 2015-10-06T22:47:12 from network with latency of 64 ms from init6
2832196ms th_a application.cpp:518 get_item ] Serving up block #37741
2835070ms th_a application.cpp:388 handle_block ] Got block #37742 with time 2015-10-06T22:47:15 from network with latency of 69 ms from init9
2835276ms th_a application.cpp:388 handle_block ] Got block #37742 with time 2015-10-06T22:47:15 from network with latency of 276 ms from bitshares-argentina
2841178ms th_a application.cpp:388 handle_block ] Got block #37743 with time 2015-10-06T22:47:21 from network with latency of 178 ms from mindphlux.witness
2841178ms th_a db_block.cpp:134 _push_block ] Switching to fork: 0000936f6e74cf60d63a26beac7a5ec018571f23
```
What is very odd about that one of the witnesses produced the prior two blocks! | priority | two witness attempt to produce block for same timestamp th a application cpp handle block got block with time from network with latency of ms from th a application cpp handle block got block with time from network with latency of ms from th a application cpp get item serving up block th a application cpp handle block got block with time from network with latency of ms from th a application cpp handle block got block with time from network with latency of ms from bitshares argentina th a application cpp handle block got block with time from network with latency of ms from mindphlux witness th a db block cpp push block switching to fork what is very odd about that one of the witnesses produced the prior two blocks | 1 |
267,473 | 8,389,283,380 | IssuesEvent | 2018-10-09 09:10:39 | CS2113-AY1819S1-T16-4/main | https://api.github.com/repos/CS2113-AY1819S1-T16-4/main | opened | As a HR staff, I can delete old employee’s data | priority.high type.story | So that I can remove employee’s details that are no longer required. | 1.0 | As a HR staff, I can delete old employee’s data - So that I can remove employee’s details that are no longer required. | priority | as a hr staff i can delete old employee’s data so that i can remove employee’s details that are no longer required | 1 |
739,170 | 25,583,606,359 | IssuesEvent | 2022-12-01 07:25:49 | BeatsuDev/tibber.py | https://api.github.com/repos/BeatsuDev/tibber.py | closed | [BUG] Interrupting the websocket subscription, then starting it again results in duplicate callback invocations | bug High Priority | ## Describe the bug
If you interrupt a script that's subscribed to live data (by pressing ctrl+c for example), and then subscribe to live data again (using `home.start_live_feed()` again, you will start to receive duplicate callback invocations.
## To Reproduce
Steps to reproduce the behavior:
```py
import tibber
account = tibber.Account(tibber.DEMO_TOKEN)
home = account.homes[0]
@home.event("live_measurement")
def callback(data):
print(data.power)
home.start_live_feed()
# Press ctrl+c
home.start_live_feed()
# From here on out, data.power gets printed out twice every time it's received.
```
## Expected behavior
The callback function should only be called once. | 1.0 | [BUG] Interrupting the websocket subscription, then starting it again results in duplicate callback invocations - ## Describe the bug
If you interrupt a script that's subscribed to live data (by pressing ctrl+c for example), and then subscribe to live data again (using `home.start_live_feed()` again, you will start to receive duplicate callback invocations.
## To Reproduce
Steps to reproduce the behavior:
```py
import tibber
account = tibber.Account(tibber.DEMO_TOKEN)
home = account.homes[0]
@home.event("live_measurement")
def callback(data):
print(data.power)
home.start_live_feed()
# Press ctrl+c
home.start_live_feed()
# From here on out, data.power gets printed out twice every time it's received.
```
## Expected behavior
The callback function should only be called once. | priority | interrupting the websocket subscription then starting it again results in duplicate callback invocations describe the bug if you interrupt a script that s subscribed to live data by pressing ctrl c for example and then subscribe to live data again using home start live feed again you will start to receive duplicate callback invocations to reproduce steps to reproduce the behavior py import tibber account tibber account tibber demo token home account homes home event live measurement def callback data print data power home start live feed press ctrl c home start live feed from here on out data power gets printed out twice every time it s received expected behavior the callback function should only be called once | 1 |
616,497 | 19,303,938,108 | IssuesEvent | 2021-12-13 09:30:53 | TeamNADA/NADA-iOS-ForRelease | https://api.github.com/repos/TeamNADA/NADA-iOS-ForRelease | opened | [FIX] 카카오톡 소셜 로그인과 스플래시 뷰 연결, 수정 | Minjae 🐻❄️ P1 / Priority High Fix | # 👀 이슈 (issue)
카카오톡 소셜 로그인과 관련된 여러 코드를 구현, 수정합니다.
# 🚀 to-do
<!-- 진행할 작업에 대해 적어주세요 -->
- [ ] 카카오톡 어플이 설치되지 않았을 때 웹으로 카카오톡이 열리는 로직 수정
- [ ] 스플래시 어플에 붙이기
- [ ] 스플래시 상황에서 자동 로그인 처리 로직 추가하기
- [ ] 토큰 재발급에 대한 로직 추가하기
- [ ] 토큰을 UserDefault로 보내는걸 제대로 수정해야 함 | 1.0 | [FIX] 카카오톡 소셜 로그인과 스플래시 뷰 연결, 수정 - # 👀 이슈 (issue)
카카오톡 소셜 로그인과 관련된 여러 코드를 구현, 수정합니다.
# 🚀 to-do
<!-- 진행할 작업에 대해 적어주세요 -->
- [ ] 카카오톡 어플이 설치되지 않았을 때 웹으로 카카오톡이 열리는 로직 수정
- [ ] 스플래시 어플에 붙이기
- [ ] 스플래시 상황에서 자동 로그인 처리 로직 추가하기
- [ ] 토큰 재발급에 대한 로직 추가하기
- [ ] 토큰을 UserDefault로 보내는걸 제대로 수정해야 함 | priority | 카카오톡 소셜 로그인과 스플래시 뷰 연결 수정 👀 이슈 issue 카카오톡 소셜 로그인과 관련된 여러 코드를 구현 수정합니다 🚀 to do 카카오톡 어플이 설치되지 않았을 때 웹으로 카카오톡이 열리는 로직 수정 스플래시 어플에 붙이기 스플래시 상황에서 자동 로그인 처리 로직 추가하기 토큰 재발급에 대한 로직 추가하기 토큰을 userdefault로 보내는걸 제대로 수정해야 함 | 1 |
239,569 | 7,799,813,243 | IssuesEvent | 2018-06-09 00:47:47 | tine20/Tine-2.0-Open-Source-Groupware-and-CRM | https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM | closed | 0005582:
"manage permissions" is shown for all folders | Bug Filemanager Mantis high priority | **Reported by pschuele on 8 Feb 2012 21:04**
**Version:** Milan (2012-03) Beta 2
non-container folders and containers for which user has no admin grant or is not owner of should not show "manage permissions" ctx menu option!
| 1.0 | 0005582:
"manage permissions" is shown for all folders - **Reported by pschuele on 8 Feb 2012 21:04**
**Version:** Milan (2012-03) Beta 2
non-container folders and containers for which user has no admin grant or is not owner of should not show "manage permissions" ctx menu option!
| priority | manage permissions is shown for all folders reported by pschuele on feb version milan beta non container folders and containers for which user has no admin grant or is not owner of should not show quot manage permissions quot ctx menu option | 1 |
200,449 | 7,007,894,994 | IssuesEvent | 2017-12-19 14:02:37 | Rendyindo/Flyme_X510-cm | https://api.github.com/repos/Rendyindo/Flyme_X510-cm | opened | RIL not working | bug high priority nougat | ```01-01 20:10:45.890 1017 1017 W System.err: java.lang.ClassNotFoundException: com.mediatek.internal.telephony.RadioManager
01-01 20:10:45.890 1017 1017 W System.err: at java.lang.Class.classForName(Native Method)
01-01 20:10:45.890 1017 1017 W System.err: at java.lang.Class.forName(Class.java:400)
01-01 20:10:45.890 1017 1017 W System.err: at java.lang.Class.forName(Class.java:326)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.getCachedClass(Reflector.java:31)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.getCachedMethod(Reflector.java:95)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.invokeMethod(Reflector.java:232)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.invokeMethod(Reflector.java:255)
01-01 20:10:45.891 1017 1017 W System.err: at com.meizu.phone.api.wrapper.mediatek.RadioManager.getMRadioManager(RadioManager.java:40)
01-01 20:10:45.891 1017 1017 W System.err: at com.meizu.phone.api.wrapper.mediatek.RadioManager.isPowerOnFeatureAllClosed(RadioManager.java:189)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.phone.PhoneGlobals.handleAirplaneModeChange(PhoneGlobals.java:870)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.phone.PhoneGlobals.-wrap0(PhoneGlobals.java)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.phone.PhoneGlobals$PhoneAppBroadcastReceiver.onReceive(PhoneGlobals.java:904)
01-01 20:10:45.891 1017 1017 W System.err: at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
01-01 20:10:45.891 1017 1017 W System.err: at android.os.Handler.handleCallback(Handler.java:751)
01-01 20:10:45.891 1017 1017 W System.err: at android.os.Handler.dispatchMessage(Handler.java:95)
01-01 20:10:45.891 1017 1017 W System.err: at android.os.Looper.loop(Looper.java:154)
01-01 20:10:45.891 1017 1017 W System.err: at android.app.ActivityThread.main(ActivityThread.java:6236)
01-01 20:10:45.891 1017 1017 W System.err: at java.lang.reflect.Method.invoke(Native Method)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:891)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:781)
01-01 20:10:45.893 1017 1017 W System.err: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.mediatek.internal.telephony.RadioManager" on path: DexPathList[[zip file "/system/priv-app/TeleService/TeleService.apk"],nativeLibraryDirectories=[/system/priv-app/TeleService/lib/arm, /system/lib, /vendor/lib, /system/lib, /vendor/lib]]
01-01 20:10:45.894 1017 1017 W System.err: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
01-01 20:10:45.894 1017 1017 W System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:380)
01-01 20:10:45.895 1017 1017 W System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
01-01 20:10:45.895 1017 1017 W System.err: ... 20 more
01-01 20:10:45.896 1017 1017 I Telephony: Refector-Telephony: Fail to reflect: java.lang.IllegalArgumentException: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.reflect.Method java.lang.Class.getMethod(java.lang.String, java.lang.Class[])' on a null object reference
01-01 20:10:45.897 1017 1017 I Telephony: Refector-Telephony: Fail to reflect: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.Class java.lang.Object.getClass()' on a null object reference
01-01 20:10:45.916 223 757 D AudioALSAStreamOut: latency(), flags 4, return 10
01-01 20:10:45.931 223 757 D AudioALSAStreamOut: latency(), flags 4, return 10
01-01 20:10:46.302 306 593 E flymed_connector: Communications error: java.io.IOException: No such file or directory
01-01 20:10:46.305 306 593 E flymed_connector: Error in NativeDaemonConnector: java.io.IOException: No such file or directory``` | 1.0 | RIL not working - ```01-01 20:10:45.890 1017 1017 W System.err: java.lang.ClassNotFoundException: com.mediatek.internal.telephony.RadioManager
01-01 20:10:45.890 1017 1017 W System.err: at java.lang.Class.classForName(Native Method)
01-01 20:10:45.890 1017 1017 W System.err: at java.lang.Class.forName(Class.java:400)
01-01 20:10:45.890 1017 1017 W System.err: at java.lang.Class.forName(Class.java:326)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.getCachedClass(Reflector.java:31)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.getCachedMethod(Reflector.java:95)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.invokeMethod(Reflector.java:232)
01-01 20:10:45.890 1017 1017 W System.err: at com.meizu.phone.Reflector.invokeMethod(Reflector.java:255)
01-01 20:10:45.891 1017 1017 W System.err: at com.meizu.phone.api.wrapper.mediatek.RadioManager.getMRadioManager(RadioManager.java:40)
01-01 20:10:45.891 1017 1017 W System.err: at com.meizu.phone.api.wrapper.mediatek.RadioManager.isPowerOnFeatureAllClosed(RadioManager.java:189)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.phone.PhoneGlobals.handleAirplaneModeChange(PhoneGlobals.java:870)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.phone.PhoneGlobals.-wrap0(PhoneGlobals.java)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.phone.PhoneGlobals$PhoneAppBroadcastReceiver.onReceive(PhoneGlobals.java:904)
01-01 20:10:45.891 1017 1017 W System.err: at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
01-01 20:10:45.891 1017 1017 W System.err: at android.os.Handler.handleCallback(Handler.java:751)
01-01 20:10:45.891 1017 1017 W System.err: at android.os.Handler.dispatchMessage(Handler.java:95)
01-01 20:10:45.891 1017 1017 W System.err: at android.os.Looper.loop(Looper.java:154)
01-01 20:10:45.891 1017 1017 W System.err: at android.app.ActivityThread.main(ActivityThread.java:6236)
01-01 20:10:45.891 1017 1017 W System.err: at java.lang.reflect.Method.invoke(Native Method)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:891)
01-01 20:10:45.891 1017 1017 W System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:781)
01-01 20:10:45.893 1017 1017 W System.err: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.mediatek.internal.telephony.RadioManager" on path: DexPathList[[zip file "/system/priv-app/TeleService/TeleService.apk"],nativeLibraryDirectories=[/system/priv-app/TeleService/lib/arm, /system/lib, /vendor/lib, /system/lib, /vendor/lib]]
01-01 20:10:45.894 1017 1017 W System.err: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
01-01 20:10:45.894 1017 1017 W System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:380)
01-01 20:10:45.895 1017 1017 W System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
01-01 20:10:45.895 1017 1017 W System.err: ... 20 more
01-01 20:10:45.896 1017 1017 I Telephony: Refector-Telephony: Fail to reflect: java.lang.IllegalArgumentException: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.reflect.Method java.lang.Class.getMethod(java.lang.String, java.lang.Class[])' on a null object reference
01-01 20:10:45.897 1017 1017 I Telephony: Refector-Telephony: Fail to reflect: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.Class java.lang.Object.getClass()' on a null object reference
01-01 20:10:45.916 223 757 D AudioALSAStreamOut: latency(), flags 4, return 10
01-01 20:10:45.931 223 757 D AudioALSAStreamOut: latency(), flags 4, return 10
01-01 20:10:46.302 306 593 E flymed_connector: Communications error: java.io.IOException: No such file or directory
01-01 20:10:46.305 306 593 E flymed_connector: Error in NativeDaemonConnector: java.io.IOException: No such file or directory``` | priority | ril not working w system err java lang classnotfoundexception com mediatek internal telephony radiomanager w system err at java lang class classforname native method w system err at java lang class forname class java w system err at java lang class forname class java w system err at com meizu phone reflector getcachedclass reflector java w system err at com meizu phone reflector getcachedmethod reflector java w system err at com meizu phone reflector invokemethod reflector java w system err at com meizu phone reflector invokemethod reflector java w system err at com meizu phone api wrapper mediatek radiomanager getmradiomanager radiomanager java w system err at com meizu phone api wrapper mediatek radiomanager ispoweronfeatureallclosed radiomanager java w system err at com android phone phoneglobals handleairplanemodechange phoneglobals java w system err at com android phone phoneglobals phoneglobals java w system err at com android phone phoneglobals phoneappbroadcastreceiver onreceive phoneglobals java w system err at android app loadedapk receiverdispatcher args run loadedapk java w system err at android os handler handlecallback handler java w system err at android os handler dispatchmessage handler java w system err at android os looper loop looper java w system err at android app activitythread main activitythread java w system err at java lang reflect method invoke native method w system err at com android internal os zygoteinit methodandargscaller run zygoteinit java w system err at com android internal os zygoteinit main zygoteinit java w system err caused by java lang classnotfoundexception didn t find class com mediatek internal telephony radiomanager on path dexpathlist nativelibrarydirectories w system err at dalvik system basedexclassloader findclass basedexclassloader java w system err at java lang classloader loadclass classloader java w system err at java lang classloader loadclass classloader java w system err more i telephony refector telephony fail to reflect java lang illegalargumentexception java lang nullpointerexception attempt to invoke virtual method java lang reflect method java lang class getmethod java lang string java lang class on a null object reference i telephony refector telephony fail to reflect java lang nullpointerexception attempt to invoke virtual method java lang class java lang object getclass on a null object reference d audioalsastreamout latency flags return d audioalsastreamout latency flags return e flymed connector communications error java io ioexception no such file or directory e flymed connector error in nativedaemonconnector java io ioexception no such file or directory | 1 |
451,064 | 13,023,975,766 | IssuesEvent | 2020-07-27 10:59:04 | hotosm/tasking-manager | https://api.github.com/repos/hotosm/tasking-manager | closed | Map feature options in iD | Component: Editor Priority: High Status: Needs implementation Type: Enhancement | As a user, when mapping a building i am only seeing 'Area' but then i cannot select building unless i manually type it in.

> Do you know why I am not able to select the generic type:building for areas, or any line types at all in any of the projects that are currently active? This is what it looks like for areas:

| 1.0 | Map feature options in iD - As a user, when mapping a building i am only seeing 'Area' but then i cannot select building unless i manually type it in.

> Do you know why I am not able to select the generic type:building for areas, or any line types at all in any of the projects that are currently active? This is what it looks like for areas:

| priority | map feature options in id as a user when mapping a building i am only seeing area but then i cannot select building unless i manually type it in do you know why i am not able to select the generic type building for areas or any line types at all in any of the projects that are currently active this is what it looks like for areas | 1 |
235,073 | 7,734,093,565 | IssuesEvent | 2018-05-26 19:50:58 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | tests: benchmarks: build fail in arm/core/fault.c for frdm_k64f in footprint/min | bug priority: high | Unrelated fault "fault.c:274:9: error: ‘mmfar’ undeclared" when testing PR #6762:
```
cd /home/buildslave/src/github.com/zephyrproject-rtos/zephyr/out-2nd-pass/frdm_k64f/tests/benchmarks/footprint/benchmark.footprint.min/zephyr && ccache /opt/sdk/zephyr-sdk-0.9.3/sysroots/x86_64-pokysdk-linux/usr/bin/arm-zephyr-eabi/arm-zephyr-eabi-gcc -DBUILD_VERSION=v1.12.0-rc1-225-g0ae6a7cda -DCPU_MK64FN1M0VLL12 -DKERNEL -D_FORTIFY_SOURCE=2 -D__ZEPHYR__=1 -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/kernel/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/soc/nxp_kinetis/k6x -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/soc/nxp_kinetis/k6x/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/soc/nxp_kinetis/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/boards/arm/frdm_k64f -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/include/drivers -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/out-2nd-pass/frdm_k64f/tests/benchmarks/footprint/benchmark.footprint.min/zephyr/include/generated -isystem /opt/sdk/zephyr-sdk-0.9.3/sysroots/x86_64-pokysdk-linux/usr/lib/arm-zephyr-eabi/gcc/arm-zephyr-eabi/6.2.0/include -isystem /opt/sdk/zephyr-sdk-0.9.3/sysroots/x86_64-pokysdk-linux/usr/lib/arm-zephyr-eabi/gcc/arm-zephyr-eabi/6.2.0/include-fixed -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/lib/libc/minimal/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/ext/hal/cmsis/Include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/ext/hal/nxp/mcux/devices/MK64F12 -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/ext/hal/nxp/mcux/drivers/kinetis/. -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/tests/include -Os -g -Wall -Wformat -Wformat-security -Wno-format-zero-length -imacros /home/buildslave/src/github.com/zephyrproject-rtos/zephyr/out-2nd-pass/frdm_k64f/tests/benchmarks/footprint/benchmark.footprint.min/zephyr/include/generated/autoconf.h -ffreestanding -Wno-main --sysroot /opt/sdk/zephyr-sdk-0.9.3/sysroots/armv5-zephyr-eabi/usr -mthumb -mcpu=cortex-m4 -std=c99 -Werror -Wno-deprecated-declarations -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -Wno-pointer-sign -Wno-unused-but-set-variable -fno-reorder-functions -fno-defer-pop -Werror=implicit-int -ffunction-sections -fdata-sections -mabi=aapcs -march=armv7e-m -o CMakeFiles/zephyr.dir/drivers/timer/cortex_m_systick.c.obj -c /home/buildslave/src/github.com/zephyrproject-rtos/zephyr/drivers/timer/cortex_m_systick.c
/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/core/fault.c: In function ‘_MpuFault’:
/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/core/fault.c:274:9: error: ‘mmfar’ undeclared (first use in this function)
if (mmfar >= guard_start &&
^~~~~
/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/core/fault.c:274:9: note: each undeclared identifier is reported only once for each function it appears in
zephyr/arch/arm/core/CMakeFiles/arch__arm__core.dir/build.make:142: recipe for target 'zephyr/arch/arm/core/CMakeFiles/arch__arm__core.dir/fault.c.obj' failed
make[3]: *** [zephyr/arch/arm/core/CMakeFiles/arch__arm__core.dir/fault.c.obj] Error 1
```
See https://app.shippable.com/github/zephyrproject-rtos/zephyr/runs/15960/2/tests
| 1.0 | tests: benchmarks: build fail in arm/core/fault.c for frdm_k64f in footprint/min - Unrelated fault "fault.c:274:9: error: ‘mmfar’ undeclared" when testing PR #6762:
```
cd /home/buildslave/src/github.com/zephyrproject-rtos/zephyr/out-2nd-pass/frdm_k64f/tests/benchmarks/footprint/benchmark.footprint.min/zephyr && ccache /opt/sdk/zephyr-sdk-0.9.3/sysroots/x86_64-pokysdk-linux/usr/bin/arm-zephyr-eabi/arm-zephyr-eabi-gcc -DBUILD_VERSION=v1.12.0-rc1-225-g0ae6a7cda -DCPU_MK64FN1M0VLL12 -DKERNEL -D_FORTIFY_SOURCE=2 -D__ZEPHYR__=1 -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/kernel/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/soc/nxp_kinetis/k6x -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/soc/nxp_kinetis/k6x/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/soc/nxp_kinetis/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/boards/arm/frdm_k64f -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/include/drivers -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/out-2nd-pass/frdm_k64f/tests/benchmarks/footprint/benchmark.footprint.min/zephyr/include/generated -isystem /opt/sdk/zephyr-sdk-0.9.3/sysroots/x86_64-pokysdk-linux/usr/lib/arm-zephyr-eabi/gcc/arm-zephyr-eabi/6.2.0/include -isystem /opt/sdk/zephyr-sdk-0.9.3/sysroots/x86_64-pokysdk-linux/usr/lib/arm-zephyr-eabi/gcc/arm-zephyr-eabi/6.2.0/include-fixed -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/lib/libc/minimal/include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/ext/hal/cmsis/Include -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/ext/hal/nxp/mcux/devices/MK64F12 -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/ext/hal/nxp/mcux/drivers/kinetis/. -I/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/tests/include -Os -g -Wall -Wformat -Wformat-security -Wno-format-zero-length -imacros /home/buildslave/src/github.com/zephyrproject-rtos/zephyr/out-2nd-pass/frdm_k64f/tests/benchmarks/footprint/benchmark.footprint.min/zephyr/include/generated/autoconf.h -ffreestanding -Wno-main --sysroot /opt/sdk/zephyr-sdk-0.9.3/sysroots/armv5-zephyr-eabi/usr -mthumb -mcpu=cortex-m4 -std=c99 -Werror -Wno-deprecated-declarations -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -Wno-pointer-sign -Wno-unused-but-set-variable -fno-reorder-functions -fno-defer-pop -Werror=implicit-int -ffunction-sections -fdata-sections -mabi=aapcs -march=armv7e-m -o CMakeFiles/zephyr.dir/drivers/timer/cortex_m_systick.c.obj -c /home/buildslave/src/github.com/zephyrproject-rtos/zephyr/drivers/timer/cortex_m_systick.c
/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/core/fault.c: In function ‘_MpuFault’:
/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/core/fault.c:274:9: error: ‘mmfar’ undeclared (first use in this function)
if (mmfar >= guard_start &&
^~~~~
/home/buildslave/src/github.com/zephyrproject-rtos/zephyr/arch/arm/core/fault.c:274:9: note: each undeclared identifier is reported only once for each function it appears in
zephyr/arch/arm/core/CMakeFiles/arch__arm__core.dir/build.make:142: recipe for target 'zephyr/arch/arm/core/CMakeFiles/arch__arm__core.dir/fault.c.obj' failed
make[3]: *** [zephyr/arch/arm/core/CMakeFiles/arch__arm__core.dir/fault.c.obj] Error 1
```
See https://app.shippable.com/github/zephyrproject-rtos/zephyr/runs/15960/2/tests
| priority | tests benchmarks build fail in arm core fault c for frdm in footprint min unrelated fault fault c error ‘mmfar’ undeclared when testing pr cd home buildslave src github com zephyrproject rtos zephyr out pass frdm tests benchmarks footprint benchmark footprint min zephyr ccache opt sdk zephyr sdk sysroots pokysdk linux usr bin arm zephyr eabi arm zephyr eabi gcc dbuild version dcpu dkernel d fortify source d zephyr i home buildslave src github com zephyrproject rtos zephyr kernel include i home buildslave src github com zephyrproject rtos zephyr arch arm include i home buildslave src github com zephyrproject rtos zephyr arch arm soc nxp kinetis i home buildslave src github com zephyrproject rtos zephyr arch arm soc nxp kinetis include i home buildslave src github com zephyrproject rtos zephyr arch arm soc nxp kinetis include i home buildslave src github com zephyrproject rtos zephyr boards arm frdm i home buildslave src github com zephyrproject rtos zephyr include i home buildslave src github com zephyrproject rtos zephyr include drivers i home buildslave src github com zephyrproject rtos zephyr out pass frdm tests benchmarks footprint benchmark footprint min zephyr include generated isystem opt sdk zephyr sdk sysroots pokysdk linux usr lib arm zephyr eabi gcc arm zephyr eabi include isystem opt sdk zephyr sdk sysroots pokysdk linux usr lib arm zephyr eabi gcc arm zephyr eabi include fixed i home buildslave src github com zephyrproject rtos zephyr lib libc minimal include i home buildslave src github com zephyrproject rtos zephyr ext hal cmsis include i home buildslave src github com zephyrproject rtos zephyr ext hal nxp mcux devices i home buildslave src github com zephyrproject rtos zephyr ext hal nxp mcux drivers kinetis i home buildslave src github com zephyrproject rtos zephyr tests include os g wall wformat wformat security wno format zero length imacros home buildslave src github com zephyrproject rtos zephyr out pass frdm tests benchmarks footprint benchmark footprint min zephyr include generated autoconf h ffreestanding wno main sysroot opt sdk zephyr sdk sysroots zephyr eabi usr mthumb mcpu cortex std werror wno deprecated declarations fno asynchronous unwind tables fno pie fno pic fno strict overflow wno pointer sign wno unused but set variable fno reorder functions fno defer pop werror implicit int ffunction sections fdata sections mabi aapcs march m o cmakefiles zephyr dir drivers timer cortex m systick c obj c home buildslave src github com zephyrproject rtos zephyr drivers timer cortex m systick c home buildslave src github com zephyrproject rtos zephyr arch arm core fault c in function ‘ mpufault’ home buildslave src github com zephyrproject rtos zephyr arch arm core fault c error ‘mmfar’ undeclared first use in this function if mmfar guard start home buildslave src github com zephyrproject rtos zephyr arch arm core fault c note each undeclared identifier is reported only once for each function it appears in zephyr arch arm core cmakefiles arch arm core dir build make recipe for target zephyr arch arm core cmakefiles arch arm core dir fault c obj failed make error see | 1 |
804,483 | 29,489,658,336 | IssuesEvent | 2023-06-02 12:33:48 | MerchantPug/bovines-and-buttercups | https://api.github.com/repos/MerchantPug/bovines-and-buttercups | closed | Startup crash from EMI 1.0.1 | bug compatibility high priority | Hi hello! the funky EMI integration for status effects has broken and needs suring up on EMI 1.0.1, where it causes a startup crash
https://mclo.gs/MI7bm32
https://github.com/emilyploszaj/emi/issues/198#issuecomment-1572345480 | 1.0 | Startup crash from EMI 1.0.1 - Hi hello! the funky EMI integration for status effects has broken and needs suring up on EMI 1.0.1, where it causes a startup crash
https://mclo.gs/MI7bm32
https://github.com/emilyploszaj/emi/issues/198#issuecomment-1572345480 | priority | startup crash from emi hi hello the funky emi integration for status effects has broken and needs suring up on emi where it causes a startup crash | 1 |
331,811 | 10,077,102,927 | IssuesEvent | 2019-07-24 17:54:02 | semperfiwebdesign/all-in-one-seo-pack | https://api.github.com/repos/semperfiwebdesign/all-in-one-seo-pack | closed | Undefined variable: post_type in aioseop_class.php | Bug Has PR Priority | High User Reported | `Undefined variable: post_type in <b>/var/www/fournais-bender.dk/public_html/wp-content/plugins/all-in-one-seo-pack-pro/aioseop_class.php</b> on line <b>4155</b>`
https://github.com/semperfiwebdesign/all-in-one-seo-pack/blob/master/aioseop_class.php#L4159
Reported by Henriette via email.
For reproducing... on the customer's site, it's only showing up on the _search results_ page. | 1.0 | Undefined variable: post_type in aioseop_class.php - `Undefined variable: post_type in <b>/var/www/fournais-bender.dk/public_html/wp-content/plugins/all-in-one-seo-pack-pro/aioseop_class.php</b> on line <b>4155</b>`
https://github.com/semperfiwebdesign/all-in-one-seo-pack/blob/master/aioseop_class.php#L4159
Reported by Henriette via email.
For reproducing... on the customer's site, it's only showing up on the _search results_ page. | priority | undefined variable post type in aioseop class php undefined variable post type in var www fournais bender dk public html wp content plugins all in one seo pack pro aioseop class php on line reported by henriette via email for reproducing on the customer s site it s only showing up on the search results page | 1 |
700,048 | 24,043,323,945 | IssuesEvent | 2022-09-16 05:33:31 | openmsupply/mobile | https://api.github.com/repos/openmsupply/mobile | closed | Kiribati Vax: In patients detail window, show which store the patient was created on | Priority: high Effort: medium Closed: invalid Project: Kiribati COVID-19 Vax Type: Enhancement | # Description
https://github.com/openmsupply/mobile/issues/4842#issuecomment-1203925482
> Adam: We need to be able to tell them which tablet they need to use to edit the patient, they can't try all 40 tablets until they find the right one. (Possibly a dashboard report would be sufficient)
### Expected behaviour
- Currently patient is only editable by its home store. But in other tablets (with other stores), we need to at least show which store they can go to, to edit this patient. Of course they would need physically use that tablet but having the store name available at least makes things easier for the client.
### Proposed Solution
- We can show it in patient detail window somewhere, maybe at the top, as a pill where it says Patient Details, we can append a pill ui interface with the store name.
### Version and device info
- App version:8.4.2.20220727
- Tablet model:Samsung
- OS version:
### Additional context
Add any other context about the problem here.
| 1.0 | Kiribati Vax: In patients detail window, show which store the patient was created on - # Description
https://github.com/openmsupply/mobile/issues/4842#issuecomment-1203925482
> Adam: We need to be able to tell them which tablet they need to use to edit the patient, they can't try all 40 tablets until they find the right one. (Possibly a dashboard report would be sufficient)
### Expected behaviour
- Currently patient is only editable by its home store. But in other tablets (with other stores), we need to at least show which store they can go to, to edit this patient. Of course they would need physically use that tablet but having the store name available at least makes things easier for the client.
### Proposed Solution
- We can show it in patient detail window somewhere, maybe at the top, as a pill where it says Patient Details, we can append a pill ui interface with the store name.
### Version and device info
- App version:8.4.2.20220727
- Tablet model:Samsung
- OS version:
### Additional context
Add any other context about the problem here.
| priority | kiribati vax in patients detail window show which store the patient was created on description adam we need to be able to tell them which tablet they need to use to edit the patient they can t try all tablets until they find the right one possibly a dashboard report would be sufficient expected behaviour currently patient is only editable by its home store but in other tablets with other stores we need to at least show which store they can go to to edit this patient of course they would need physically use that tablet but having the store name available at least makes things easier for the client proposed solution we can show it in patient detail window somewhere maybe at the top as a pill where it says patient details we can append a pill ui interface with the store name version and device info app version tablet model samsung os version additional context add any other context about the problem here | 1 |
197,461 | 6,955,483,304 | IssuesEvent | 2017-12-07 07:52:19 | DashboardHub/Blog | https://api.github.com/repos/DashboardHub/Blog | closed | In 1 hour setup a Best practice delivery & deployment pipeline for an Open Source project | Blog priority: high | There are no excuses not to do this first, because it is so easy & simple with modern services:
- Github repo
- Branching
- Travis CI
- Scrutinisizer
- Deployment to heroku
Also
- What a Pipeline should look like (reference http://fractio.nl/2015/05/22/cd-for-infrastructure-services/)
| 1.0 | In 1 hour setup a Best practice delivery & deployment pipeline for an Open Source project - There are no excuses not to do this first, because it is so easy & simple with modern services:
- Github repo
- Branching
- Travis CI
- Scrutinisizer
- Deployment to heroku
Also
- What a Pipeline should look like (reference http://fractio.nl/2015/05/22/cd-for-infrastructure-services/)
| priority | in hour setup a best practice delivery deployment pipeline for an open source project there are no excuses not to do this first because it is so easy simple with modern services github repo branching travis ci scrutinisizer deployment to heroku also what a pipeline should look like reference | 1 |
174,851 | 6,543,833,599 | IssuesEvent | 2017-09-03 06:57:18 | TheValarProject/AwakenDreamsClient | https://api.github.com/repos/TheValarProject/AwakenDreamsClient | opened | New crafting recipes | new-feature priority-high proposal | There are plenty of items and blocks in the mod, yet almost none of them have crafting recipes right now. I would like to see more many more crafting recipes in v0.5. We will use this issue to track proposed recipes. Thanks to @MartyParty21's new crafting system, we also have to figure out what recipes should be specific to certain crafting tables. | 1.0 | New crafting recipes - There are plenty of items and blocks in the mod, yet almost none of them have crafting recipes right now. I would like to see more many more crafting recipes in v0.5. We will use this issue to track proposed recipes. Thanks to @MartyParty21's new crafting system, we also have to figure out what recipes should be specific to certain crafting tables. | priority | new crafting recipes there are plenty of items and blocks in the mod yet almost none of them have crafting recipes right now i would like to see more many more crafting recipes in we will use this issue to track proposed recipes thanks to s new crafting system we also have to figure out what recipes should be specific to certain crafting tables | 1 |
618,797 | 19,487,617,122 | IssuesEvent | 2021-12-26 17:48:56 | ctm/mb2-doc | https://api.github.com/repos/ctm/mb2-doc | closed | fix spinner css | bug high priority easy | Fix the spinner CSS so it doesn't apply once the page is loaded.
I didn't notice it at the time, but some of the CSS meant for the spinner changes the page (one big change is all the padding at the bottom of the lobby) after the spinner is gone.
| 1.0 | fix spinner css - Fix the spinner CSS so it doesn't apply once the page is loaded.
I didn't notice it at the time, but some of the CSS meant for the spinner changes the page (one big change is all the padding at the bottom of the lobby) after the spinner is gone.
| priority | fix spinner css fix the spinner css so it doesn t apply once the page is loaded i didn t notice it at the time but some of the css meant for the spinner changes the page one big change is all the padding at the bottom of the lobby after the spinner is gone | 1 |
132,479 | 5,186,947,565 | IssuesEvent | 2017-01-20 15:32:19 | DOAJ/doaj | https://api.github.com/repos/DOAJ/doaj | opened | CRITICAL article_cleanup_sync is duplicating articles | bug data at risk high priority | Running this locally, it's using lots of CPU and my article count is climbing. This is not the desired behaviour. Actually, that's one of the things it was supposed to be fixing.
All of the scary labels have been used. -> | 1.0 | CRITICAL article_cleanup_sync is duplicating articles - Running this locally, it's using lots of CPU and my article count is climbing. This is not the desired behaviour. Actually, that's one of the things it was supposed to be fixing.
All of the scary labels have been used. -> | priority | critical article cleanup sync is duplicating articles running this locally it s using lots of cpu and my article count is climbing this is not the desired behaviour actually that s one of the things it was supposed to be fixing all of the scary labels have been used | 1 |
422,619 | 12,281,036,425 | IssuesEvent | 2020-05-08 15:08:40 | silverbackis/api-components-bundle | https://api.github.com/repos/silverbackis/api-components-bundle | opened | Email address changed notifications | High Priority enhancement v2 | New notification email if email address changed with auto password reset link added. Otherwise the new user can change the user's password. May need to be a new backup password change key so that this cannot be overwritten by a hacker changing email and then doing a password reset request... | 1.0 | Email address changed notifications - New notification email if email address changed with auto password reset link added. Otherwise the new user can change the user's password. May need to be a new backup password change key so that this cannot be overwritten by a hacker changing email and then doing a password reset request... | priority | email address changed notifications new notification email if email address changed with auto password reset link added otherwise the new user can change the user s password may need to be a new backup password change key so that this cannot be overwritten by a hacker changing email and then doing a password reset request | 1 |
102,769 | 4,160,338,063 | IssuesEvent | 2016-06-17 12:56:03 | lale-help/lale-help | https://api.github.com/repos/lale-help/lale-help | closed | Improved circle dashboard | priority:high | While evolving the experience of dashboards and homepages is always an iterative approach, we have already heard some good feedback from users as to what could be done to improve the current layout.
Here is a mockup of a revised circle dashboard.

**New features:**
- add description to circle definition and display on dashboard (similar to working groups)
- use tabbed page layout for Tasks, Supplies and Projects.
- show circle level stats of (as we do on projects today):
- number of helpers in circle
- Tasks (open / urgent / completed)
- Supplies (open / urgent / completed)
- remove circle leaders and organizers
- move 'Contact admin' into footer area on right.
| 1.0 | Improved circle dashboard - While evolving the experience of dashboards and homepages is always an iterative approach, we have already heard some good feedback from users as to what could be done to improve the current layout.
Here is a mockup of a revised circle dashboard.

**New features:**
- add description to circle definition and display on dashboard (similar to working groups)
- use tabbed page layout for Tasks, Supplies and Projects.
- show circle level stats of (as we do on projects today):
- number of helpers in circle
- Tasks (open / urgent / completed)
- Supplies (open / urgent / completed)
- remove circle leaders and organizers
- move 'Contact admin' into footer area on right.
| priority | improved circle dashboard while evolving the experience of dashboards and homepages is always an iterative approach we have already heard some good feedback from users as to what could be done to improve the current layout here is a mockup of a revised circle dashboard new features add description to circle definition and display on dashboard similar to working groups use tabbed page layout for tasks supplies and projects show circle level stats of as we do on projects today number of helpers in circle tasks open urgent completed supplies open urgent completed remove circle leaders and organizers move contact admin into footer area on right | 1 |
220,640 | 7,369,378,301 | IssuesEvent | 2018-03-13 02:23:54 | SpongePowered/Ore | https://api.github.com/repos/SpongePowered/Ore | closed | Update Play to latest version | priority: high | We are falling farther and farther behind in play builds. This should be updated at the start of the next development cycle in order to avoid any side effects from API changes | 1.0 | Update Play to latest version - We are falling farther and farther behind in play builds. This should be updated at the start of the next development cycle in order to avoid any side effects from API changes | priority | update play to latest version we are falling farther and farther behind in play builds this should be updated at the start of the next development cycle in order to avoid any side effects from api changes | 1 |
449,803 | 12,975,226,026 | IssuesEvent | 2020-07-21 16:38:29 | wp-media/wp-rocket | https://api.github.com/repos/wp-media/wp-rocket | closed | Removing rocket-critical-css can lead to "delayed" FOUC | module: file optimization priority: high status: blocked type: bug | Tested with WP Rocket 3.6.1
In some cases removing the CPCSS can result in "delayed" FOUC.
Please see these gifs to demonstrate the difference in loading behaviour:
3.5.5.1 - http://recordit.co/Wcil5yYpgH (no fouc)
3.6.1 - http://recordit.co/PzpB8spSpN (fouc )
3.6.1 modified to keep the CPCSS - http://recordit.co/ljGzTvjIGe (no fouc)
It's not happening on all sites, so I'm not yet sure of the exact steps to reproduce.
Related ticket: https://secure.helpscout.net/conversation/1199425512/174160?folderId=377611
Slack conversation (Cristina is assisting): https://wp-media.slack.com/archives/C43T1AYMQ/p1593110340302700 | 1.0 | Removing rocket-critical-css can lead to "delayed" FOUC - Tested with WP Rocket 3.6.1
In some cases removing the CPCSS can result in "delayed" FOUC.
Please see these gifs to demonstrate the difference in loading behaviour:
3.5.5.1 - http://recordit.co/Wcil5yYpgH (no fouc)
3.6.1 - http://recordit.co/PzpB8spSpN (fouc )
3.6.1 modified to keep the CPCSS - http://recordit.co/ljGzTvjIGe (no fouc)
It's not happening on all sites, so I'm not yet sure of the exact steps to reproduce.
Related ticket: https://secure.helpscout.net/conversation/1199425512/174160?folderId=377611
Slack conversation (Cristina is assisting): https://wp-media.slack.com/archives/C43T1AYMQ/p1593110340302700 | priority | removing rocket critical css can lead to delayed fouc tested with wp rocket in some cases removing the cpcss can result in delayed fouc please see these gifs to demonstrate the difference in loading behaviour no fouc fouc modified to keep the cpcss no fouc it s not happening on all sites so i m not yet sure of the exact steps to reproduce related ticket slack conversation cristina is assisting | 1 |
315,500 | 9,621,414,692 | IssuesEvent | 2019-05-14 10:34:36 | volcano-sh/volcano | https://api.github.com/repos/volcano-sh/volcano | closed | Rename vk-scheduler to vk-kube-batch | kind/bug priority/high | **Is this a BUG REPORT or FEATURE REQUEST?**:
/kind bug
**Description**:
Currently, Volcano's scheduler is an enhanced kube-batch; it's better to keep kube-batch's name/signature :)
| 1.0 | Rename vk-scheduler to vk-kube-batch - **Is this a BUG REPORT or FEATURE REQUEST?**:
/kind bug
**Description**:
Currently, Volcano's scheduler is an enhanced kube-batch; it's better to keep kube-batch's name/signature :)
| priority | rename vk scheduler to vk kube batch is this a bug report or feature request kind bug description currently volcano s scheduler is an enhanced kube batch it s better to keep kube batch s name signature | 1 |
786,147 | 27,636,435,958 | IssuesEvent | 2023-03-10 14:47:08 | MaibornWolff/codecharta | https://api.github.com/repos/MaibornWolff/codecharta | closed | Screenshot improvements | pr-visualization javascript priority:high feature | # Feature request
## Description
As a user, I want to see all parts of the view on my screenshot so that I have the same information on the screenshot as I do when having a open map.
## Acceptance criteria
- ~~Add a new hotkey to save the screenshot to the clipboard instead of saving it to a file.~~
- ~~Add a section in the global configuration to allow changing default screenshot behavior (allowing to switch between different output behaviors - either saving to file or to clipboard)~~
- ~~Add a option to add the logo to the screenshot output and use that as new default behavior~~ (a separate [issue](#1990) exists for that part)
- Add the legend to the screenshot output (will be done in #3080
## Development notes (optional Task Breakdown)
Please add one PR per acceptance criteria, building one feature on top of the other.
| 1.0 | Screenshot improvements - # Feature request
## Description
As a user, I want to see all parts of the view on my screenshot so that I have the same information on the screenshot as I do when having a open map.
## Acceptance criteria
- ~~Add a new hotkey to save the screenshot to the clipboard instead of saving it to a file.~~
- ~~Add a section in the global configuration to allow changing default screenshot behavior (allowing to switch between different output behaviors - either saving to file or to clipboard)~~
- ~~Add a option to add the logo to the screenshot output and use that as new default behavior~~ (a separate [issue](#1990) exists for that part)
- Add the legend to the screenshot output (will be done in #3080
## Development notes (optional Task Breakdown)
Please add one PR per acceptance criteria, building one feature on top of the other.
| priority | screenshot improvements feature request description as a user i want to see all parts of the view on my screenshot so that i have the same information on the screenshot as i do when having a open map acceptance criteria add a new hotkey to save the screenshot to the clipboard instead of saving it to a file add a section in the global configuration to allow changing default screenshot behavior allowing to switch between different output behaviors either saving to file or to clipboard add a option to add the logo to the screenshot output and use that as new default behavior a separate exists for that part add the legend to the screenshot output will be done in development notes optional task breakdown please add one pr per acceptance criteria building one feature on top of the other | 1 |
565,014 | 16,747,147,555 | IssuesEvent | 2021-06-11 17:01:45 | ballerina-platform/ballerina-dev-website | https://api.github.com/repos/ballerina-platform/ballerina-dev-website | closed | Keep the Left Nav Items Expanded When the Learn Sections are Opened | Area/UI Priority/Highest SwanLakeDump Type/NewFeature | **Description:**
Need to keep the left nav menu items expanded when the Learn sections are opened. For example, when the "Get Started" is clicked in the "Learn" landing page, the "Setting up Visual Studio Code" menu item should be expanded and all sub topics of it should be viewable.
<img width="1256" alt="Screenshot 2020-11-26 at 17 09 24" src="https://user-images.githubusercontent.com/11707273/100346827-7d01ac80-300a-11eb-917b-6c9fe221407e.png">
**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, Browser, 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 | Keep the Left Nav Items Expanded When the Learn Sections are Opened - **Description:**
Need to keep the left nav menu items expanded when the Learn sections are opened. For example, when the "Get Started" is clicked in the "Learn" landing page, the "Setting up Visual Studio Code" menu item should be expanded and all sub topics of it should be viewable.
<img width="1256" alt="Screenshot 2020-11-26 at 17 09 24" src="https://user-images.githubusercontent.com/11707273/100346827-7d01ac80-300a-11eb-917b-6c9fe221407e.png">
**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, Browser, 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 | keep the left nav items expanded when the learn sections are opened description need to keep the left nav menu items expanded when the learn sections are opened for example when the get started is clicked in the learn landing page the setting up visual studio code menu item should be expanded and all sub topics of it should be viewable img width alt screenshot at src suggested labels suggested assignees affected product version os browser other environment details and versions steps to reproduce related issues | 1 |
468,397 | 13,466,818,567 | IssuesEvent | 2020-09-09 23:54:25 | deshaw/versioned-hdf5 | https://api.github.com/repos/deshaw/versioned-hdf5 | closed | Writing empty dataset fails | high_priority | ```
import h5py
import numpy as np
from versioned_hdf5 import VersionedHDF5File
with h5py.File('foo.h5', 'w') as f:
vf = VersionedHDF5File(f)
with vf.stage_version('0') as sv:
sv['bar'] = np.arange(0)
```
fails with
```
File "/u/bessen/opensource/versioned-hdf5/versioned_hdf5/backend.py", line 152, in create_virtual_dataset
shape = (chunk_size*(len(slices) - 1) + slices[-1].stop - slices[-1].start,) + chunks[1:]
IndexError: list index out of range
```
in master and with
```
File "/u/bessen/opensource/versioned-hdf5/versioned_hdf5/backend.py", line 155, in create_virtual_dataset
shape = tuple([max(c.args[i].stop for c in slices) for i in range(len(chunks))])
File "/u/bessen/opensource/versioned-hdf5/versioned_hdf5/backend.py", line 155, in <listcomp>
shape = tuple([max(c.args[i].stop for c in slices) for i in range(len(chunks))])
ValueError: max() arg is an empty sequence
```
in asmeurer/as_subindex. | 1.0 | Writing empty dataset fails - ```
import h5py
import numpy as np
from versioned_hdf5 import VersionedHDF5File
with h5py.File('foo.h5', 'w') as f:
vf = VersionedHDF5File(f)
with vf.stage_version('0') as sv:
sv['bar'] = np.arange(0)
```
fails with
```
File "/u/bessen/opensource/versioned-hdf5/versioned_hdf5/backend.py", line 152, in create_virtual_dataset
shape = (chunk_size*(len(slices) - 1) + slices[-1].stop - slices[-1].start,) + chunks[1:]
IndexError: list index out of range
```
in master and with
```
File "/u/bessen/opensource/versioned-hdf5/versioned_hdf5/backend.py", line 155, in create_virtual_dataset
shape = tuple([max(c.args[i].stop for c in slices) for i in range(len(chunks))])
File "/u/bessen/opensource/versioned-hdf5/versioned_hdf5/backend.py", line 155, in <listcomp>
shape = tuple([max(c.args[i].stop for c in slices) for i in range(len(chunks))])
ValueError: max() arg is an empty sequence
```
in asmeurer/as_subindex. | priority | writing empty dataset fails import import numpy as np from versioned import with file foo w as f vf f with vf stage version as sv sv np arange fails with file u bessen opensource versioned versioned backend py line in create virtual dataset shape chunk size len slices slices stop slices start chunks indexerror list index out of range in master and with file u bessen opensource versioned versioned backend py line in create virtual dataset shape tuple stop for c in slices for i in range len chunks file u bessen opensource versioned versioned backend py line in shape tuple stop for c in slices for i in range len chunks valueerror max arg is an empty sequence in asmeurer as subindex | 1 |
148,047 | 5,658,122,233 | IssuesEvent | 2017-04-10 09:13:53 | mantidproject/mantid | https://api.github.com/repos/mantidproject/mantid | closed | Event mode filtering and multiperiod data | Component: Reflectometry Misc: Roadmap Priority: High | Needs discussion with scientists.
A fix is needed for event mode filtering and multi-period loading, as well as inclusion of event workspace reduction in table interface.
The initial estimated time for this task was 2w-1m.
I may reassign this to Matt.
| 1.0 | Event mode filtering and multiperiod data - Needs discussion with scientists.
A fix is needed for event mode filtering and multi-period loading, as well as inclusion of event workspace reduction in table interface.
The initial estimated time for this task was 2w-1m.
I may reassign this to Matt.
| priority | event mode filtering and multiperiod data needs discussion with scientists a fix is needed for event mode filtering and multi period loading as well as inclusion of event workspace reduction in table interface the initial estimated time for this task was i may reassign this to matt | 1 |
386,469 | 11,439,589,953 | IssuesEvent | 2020-02-05 07:41:42 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0 staging-1360] Craft Migration: need to remove all the orders | Priority: High Status: Fixed | and store resources in the void storage
For now can't migrate save from #14497 | 1.0 | [0.9.0 staging-1360] Craft Migration: need to remove all the orders - and store resources in the void storage
For now can't migrate save from #14497 | priority | craft migration need to remove all the orders and store resources in the void storage for now can t migrate save from | 1 |
813,507 | 30,459,446,103 | IssuesEvent | 2023-07-17 05:10:28 | ACCESS-NRI/ESMValTool-workflow | https://api.github.com/repos/ACCESS-NRI/ESMValTool-workflow | closed | Download MODIS | High priority | Source: https://ladsweb.modaps.eosdis.nasa.gov/search/order
Automatic download: No
In Products: select "MODIS Aqua", "Collection 6.1" and
"L3 Atmosphere Product", click on MYD08_M3.
In Time: select from 2000-01-01 to today.
In Location: skip, the global domain will be applied.
In Files: select all.
Submit the order.
A registration is required to download the data.
Caveats
clwvi and clivi data are in-cloud values whereas CMIP5 models provide
grid-box averages --> multiply MODIS clwvi and clivi values with cloud
fraction as a first guess
| 1.0 | Download MODIS - Source: https://ladsweb.modaps.eosdis.nasa.gov/search/order
Automatic download: No
In Products: select "MODIS Aqua", "Collection 6.1" and
"L3 Atmosphere Product", click on MYD08_M3.
In Time: select from 2000-01-01 to today.
In Location: skip, the global domain will be applied.
In Files: select all.
Submit the order.
A registration is required to download the data.
Caveats
clwvi and clivi data are in-cloud values whereas CMIP5 models provide
grid-box averages --> multiply MODIS clwvi and clivi values with cloud
fraction as a first guess
| priority | download modis source automatic download no in products select modis aqua collection and atmosphere product click on in time select from to today in location skip the global domain will be applied in files select all submit the order a registration is required to download the data caveats clwvi and clivi data are in cloud values whereas models provide grid box averages multiply modis clwvi and clivi values with cloud fraction as a first guess | 1 |
310,705 | 9,523,195,010 | IssuesEvent | 2019-04-27 15:18:38 | NOVACProject/NOVACProgram | https://api.github.com/repos/NOVACProject/NOVACProgram | closed | Allow FTP to instrument to use hostname | high priority | Christoph is considering the use of cell modem for the installs he is planning at PNG in June. It is unclear yet how it will work there, but the thought is it will unlikely have static IP address and may require a hostname to connect with. It's possible it may be that we can't connect to the instrument this way (only instrument can connect out), but just in case, he would like the software to be able to support hostname. | 1.0 | Allow FTP to instrument to use hostname - Christoph is considering the use of cell modem for the installs he is planning at PNG in June. It is unclear yet how it will work there, but the thought is it will unlikely have static IP address and may require a hostname to connect with. It's possible it may be that we can't connect to the instrument this way (only instrument can connect out), but just in case, he would like the software to be able to support hostname. | priority | allow ftp to instrument to use hostname christoph is considering the use of cell modem for the installs he is planning at png in june it is unclear yet how it will work there but the thought is it will unlikely have static ip address and may require a hostname to connect with it s possible it may be that we can t connect to the instrument this way only instrument can connect out but just in case he would like the software to be able to support hostname | 1 |
444,972 | 12,824,377,810 | IssuesEvent | 2020-07-06 13:23:44 | getkirby/editor | https://api.github.com/repos/getkirby/editor | closed | Pressing Delete button at the end of the block deletes the whole block | priority: high 🔥 type: bug 🐛 | **Describe the bug**
Pressing "Delete" button at the end of the block deletes the whole block. It happens with headings, paragraphs and list items.
**To Reproduce**
Steps to reproduce the behavior:
1. Create a new paragraph in editor. Put some content into it.
2. Place the cursor at the end of the paragraph.
3. Press "Delete" button.
4. The whole block is deleted.
**Expected bahavior:**
I think this should not happen, when there is some content in the block.
**Kirby Version**
Kirby 3.3.4
Kirby Editor 1.0.2 | 1.0 | Pressing Delete button at the end of the block deletes the whole block - **Describe the bug**
Pressing "Delete" button at the end of the block deletes the whole block. It happens with headings, paragraphs and list items.
**To Reproduce**
Steps to reproduce the behavior:
1. Create a new paragraph in editor. Put some content into it.
2. Place the cursor at the end of the paragraph.
3. Press "Delete" button.
4. The whole block is deleted.
**Expected bahavior:**
I think this should not happen, when there is some content in the block.
**Kirby Version**
Kirby 3.3.4
Kirby Editor 1.0.2 | priority | pressing delete button at the end of the block deletes the whole block describe the bug pressing delete button at the end of the block deletes the whole block it happens with headings paragraphs and list items to reproduce steps to reproduce the behavior create a new paragraph in editor put some content into it place the cursor at the end of the paragraph press delete button the whole block is deleted expected bahavior i think this should not happen when there is some content in the block kirby version kirby kirby editor | 1 |
617,668 | 19,402,297,689 | IssuesEvent | 2021-12-19 12:02:45 | CAKES-coding/swe574-group2 | https://api.github.com/repos/CAKES-coding/swe574-group2 | closed | Article detail on recent activity integration | backend effort: 2 priority: High frontend | Article urls were hardcoded before intergration.
They are going to be integrated with real article URL from database. | 1.0 | Article detail on recent activity integration - Article urls were hardcoded before intergration.
They are going to be integrated with real article URL from database. | priority | article detail on recent activity integration article urls were hardcoded before intergration they are going to be integrated with real article url from database | 1 |
62,178 | 3,175,701,389 | IssuesEvent | 2015-09-24 02:07:30 | TroyManary/EasyPlow | https://api.github.com/repos/TroyManary/EasyPlow | opened | Operator Registration- Phone # Field | Function: Company Priority: High Type: Bug | found on easyplow.com in IE 11 Browser session
1. Clicked on Operator Registration
2. Phone # field indicates form text referring to "custome"
See image

| 1.0 | Operator Registration- Phone # Field - found on easyplow.com in IE 11 Browser session
1. Clicked on Operator Registration
2. Phone # field indicates form text referring to "custome"
See image

| priority | operator registration phone field found on easyplow com in ie browser session clicked on operator registration phone field indicates form text referring to custome see image | 1 |
498,676 | 14,428,490,186 | IssuesEvent | 2020-12-06 10:03:59 | bounswe/bounswe2020group4 | https://api.github.com/repos/bounswe/bounswe2020group4 | opened | (BKND) Profile Page Endpoint | Backend Coding Effort: Medium Priority: High Status: In-Progress | Profile page endpoint for vendor and customer user must be implemented.
| 1.0 | (BKND) Profile Page Endpoint - Profile page endpoint for vendor and customer user must be implemented.
| priority | bknd profile page endpoint profile page endpoint for vendor and customer user must be implemented | 1 |
646,517 | 21,051,059,512 | IssuesEvent | 2022-03-31 20:35:36 | watertap-org/watertap | https://api.github.com/repos/watertap-org/watertap | closed | Initial MVC Model | Priority:High model dev team | For NAWI, we need to implement an MVC model in WaterTAP.
This will require the following:
- [x] Pure water property package with vapor
- [x] Evaporator
- [x] Condenser
- [x] Compressor (maybe different than IDAES)
- [x] Addition of Chen's approximation for log-mean temperature difference to IDAES heat exchangers | 1.0 | Initial MVC Model - For NAWI, we need to implement an MVC model in WaterTAP.
This will require the following:
- [x] Pure water property package with vapor
- [x] Evaporator
- [x] Condenser
- [x] Compressor (maybe different than IDAES)
- [x] Addition of Chen's approximation for log-mean temperature difference to IDAES heat exchangers | priority | initial mvc model for nawi we need to implement an mvc model in watertap this will require the following pure water property package with vapor evaporator condenser compressor maybe different than idaes addition of chen s approximation for log mean temperature difference to idaes heat exchangers | 1 |
550,292 | 16,108,821,321 | IssuesEvent | 2021-04-27 18:14:19 | numldesign/numl-react | https://api.github.com/repos/numldesign/numl-react | closed | ATOMS | priority: high work-in-progress (wip) | - [x] Avatar
- [x] Badge
- [x] Buttons
- [x] Button Groups
- [x] Checkboxes
- [x] Chips
- [x] Exception List
- [x] Footer Help
- [x] Footer
- [x] Links
- [x] Message Error
- [x] Pagination & Icon Button
- [x] Progress Bar
- [x] Radio Buttons
- [x] Range Slider
- [x] Switches
- [x] Tags
- [x] Text Inputs
- [x] Thumbnails | 1.0 | ATOMS - - [x] Avatar
- [x] Badge
- [x] Buttons
- [x] Button Groups
- [x] Checkboxes
- [x] Chips
- [x] Exception List
- [x] Footer Help
- [x] Footer
- [x] Links
- [x] Message Error
- [x] Pagination & Icon Button
- [x] Progress Bar
- [x] Radio Buttons
- [x] Range Slider
- [x] Switches
- [x] Tags
- [x] Text Inputs
- [x] Thumbnails | priority | atoms avatar badge buttons button groups checkboxes chips exception list footer help footer links message error pagination icon button progress bar radio buttons range slider switches tags text inputs thumbnails | 1 |
35,862 | 2,793,271,239 | IssuesEvent | 2015-05-11 09:48:50 | DOAJ/doaj | https://api.github.com/repos/DOAJ/doaj | closed | Default search operator is OR from home page and doesn't switch to AND | feedback high priority ready for review | Two things:
- [x] The default operator from the home page quick search is OR and should be AND. Beilstein Journal of Organic Chemistry from the homepage returns:
Journals (7175)
Articles (1620937)
https://doaj.org/search?source={%22query%22%3A{%22query_string%22%3A{%22query%22%3A%22Beilstein%20Journal%20of%20Organic%20Chemistry%22%2C%22default_operator%22%3A%22OR%22}}%2C%22from%22%3A0%2C%22size%22%3A10}#.VUomCZN2N64
- [x] I carry out the search above, from the home page, and get taken to the URL above. I then click into the search box and hit enter to do the search again and the search results stay the same but the URL changes to https://doaj.org/search?source={%22query%22%3A{%22query_string%22%3A{%22query%22%3A%22Beilstein%20Journal%20of%20Organic%20Chemistry%22%2C%22default_operator%22%3A%22OR%22}}%2C%22from%22%3A0%2C%22size%22%3A10}. If I then clear all search settings and do the search again, I get this URL https://doaj.org/search?source={%22query%22%3A{%22query_string%22%3A{%22query%22%3A%22Beilstein%20Journal%20of%20Organic%20Chemistry%22%2C%22default_operator%22%3A%22AND%22}}%2C%22from%22%3A0%2C%22size%22%3A10} with these results:
Journals (1)
Articles (1467)
which is the more correct and precise search result I was looking for. Is this a bug? | 1.0 | Default search operator is OR from home page and doesn't switch to AND - Two things:
- [x] The default operator from the home page quick search is OR and should be AND. Beilstein Journal of Organic Chemistry from the homepage returns:
Journals (7175)
Articles (1620937)
https://doaj.org/search?source={%22query%22%3A{%22query_string%22%3A{%22query%22%3A%22Beilstein%20Journal%20of%20Organic%20Chemistry%22%2C%22default_operator%22%3A%22OR%22}}%2C%22from%22%3A0%2C%22size%22%3A10}#.VUomCZN2N64
- [x] I carry out the search above, from the home page, and get taken to the URL above. I then click into the search box and hit enter to do the search again and the search results stay the same but the URL changes to https://doaj.org/search?source={%22query%22%3A{%22query_string%22%3A{%22query%22%3A%22Beilstein%20Journal%20of%20Organic%20Chemistry%22%2C%22default_operator%22%3A%22OR%22}}%2C%22from%22%3A0%2C%22size%22%3A10}. If I then clear all search settings and do the search again, I get this URL https://doaj.org/search?source={%22query%22%3A{%22query_string%22%3A{%22query%22%3A%22Beilstein%20Journal%20of%20Organic%20Chemistry%22%2C%22default_operator%22%3A%22AND%22}}%2C%22from%22%3A0%2C%22size%22%3A10} with these results:
Journals (1)
Articles (1467)
which is the more correct and precise search result I was looking for. Is this a bug? | priority | default search operator is or from home page and doesn t switch to and two things the default operator from the home page quick search is or and should be and beilstein journal of organic chemistry from the homepage returns journals articles i carry out the search above from the home page and get taken to the url above i then click into the search box and hit enter to do the search again and the search results stay the same but the url changes to if i then clear all search settings and do the search again i get this url with these results journals articles which is the more correct and precise search result i was looking for is this a bug | 1 |
813,121 | 30,446,145,260 | IssuesEvent | 2023-07-15 17:39:09 | EPPIcenter/mad4hatter | https://api.github.com/repos/EPPIcenter/mad4hatter | closed | microhaplotype output missing column name in resmarkers_aad | high priority | Missing second to last column name | 1.0 | microhaplotype output missing column name in resmarkers_aad - Missing second to last column name | priority | microhaplotype output missing column name in resmarkers aad missing second to last column name | 1 |
512,736 | 14,908,589,179 | IssuesEvent | 2021-01-22 06:15:11 | GiganticMinecraft/SeichiAssist | https://api.github.com/repos/GiganticMinecraft/SeichiAssist | closed | 1分間あたりの建築量制限がなくなっている | Place: Production Priority: High Type: Unexpected Behavior | 「通常、建築勢のプレイヤーが1日中建築をしても、1日で増える建築量は20000程度」であるはずだが、「1日あたり40万」建築量を増やしているプレイヤーや、スキルを使って鉱石を設置した際に「20分程度で建築量が53000」ほど増えたプレイヤーがいる
報告者:Moti_OMEGA、kazutaTruth3Zk
https://redmine.seichi.click/issues/8992
https://discord.com/channels/237758724121427969/573131925158494220/800149993058992238
https://discord.com/channels/237758724121427969/237828471668080640/801999862157148192 | 1.0 | 1分間あたりの建築量制限がなくなっている - 「通常、建築勢のプレイヤーが1日中建築をしても、1日で増える建築量は20000程度」であるはずだが、「1日あたり40万」建築量を増やしているプレイヤーや、スキルを使って鉱石を設置した際に「20分程度で建築量が53000」ほど増えたプレイヤーがいる
報告者:Moti_OMEGA、kazutaTruth3Zk
https://redmine.seichi.click/issues/8992
https://discord.com/channels/237758724121427969/573131925158494220/800149993058992238
https://discord.com/channels/237758724121427969/237828471668080640/801999862157148192 | priority | 「通常、 、 」であるはずだが、「 」建築量を増やしているプレイヤーや、スキルを使って鉱石を設置した際に「 」ほど増えたプレイヤーがいる 報告者:moti omega、 | 1 |
9,232 | 2,607,932,264 | IssuesEvent | 2015-02-26 00:27:15 | chrsmithdemos/minify | https://api.github.com/repos/chrsmithdemos/minify | opened | Easier API for page minification | auto-migrated Priority-High Type-Enhancement | ```
I've studies the Minify builder a little, but couldn't make much of the way
the html is minified.
A nice way would be the following, where Minify would follow the config.
<?php ob_start(); ?>
<!-- html -->
<?
$contents = 0b_get_contents();
ob_end_clean();
require '/min/Minify.php';
Minify::serve('Page', $contents);
// This as a cleaner alternative to
http://code.google.com/p/minify/source/browse/trunk/min/builder/index.php
```
-----
Original issue reported on code.google.com by `Kramieb@gmail.com` on 4 Aug 2009 at 12:58 | 1.0 | Easier API for page minification - ```
I've studies the Minify builder a little, but couldn't make much of the way
the html is minified.
A nice way would be the following, where Minify would follow the config.
<?php ob_start(); ?>
<!-- html -->
<?
$contents = 0b_get_contents();
ob_end_clean();
require '/min/Minify.php';
Minify::serve('Page', $contents);
// This as a cleaner alternative to
http://code.google.com/p/minify/source/browse/trunk/min/builder/index.php
```
-----
Original issue reported on code.google.com by `Kramieb@gmail.com` on 4 Aug 2009 at 12:58 | priority | easier api for page minification i ve studies the minify builder a little but couldn t make much of the way the html is minified a nice way would be the following where minify would follow the config contents get contents ob end clean require min minify php minify serve page contents this as a cleaner alternative to original issue reported on code google com by kramieb gmail com on aug at | 1 |
520,513 | 15,087,301,769 | IssuesEvent | 2021-02-05 21:53:37 | LujainKhalaf/Soengram | https://api.github.com/repos/LujainKhalaf/Soengram | opened | As a user, I want a navbar to be able to move across different pages | feature-request front end priority-high user story | <!-- Please search existing issues to avoid creating duplicates. -->
### Describe the feature or problem you'd like to solve
I want a ui to be able to move between different pages such as the home page, profile page, and other quick access options such as the logout button
### Proposed solution
We can use bootstrap to implement a navbar and include all the needed menu items
### Additional context
https://getbootstrap.com/
 | 1.0 | As a user, I want a navbar to be able to move across different pages - <!-- Please search existing issues to avoid creating duplicates. -->
### Describe the feature or problem you'd like to solve
I want a ui to be able to move between different pages such as the home page, profile page, and other quick access options such as the logout button
### Proposed solution
We can use bootstrap to implement a navbar and include all the needed menu items
### Additional context
https://getbootstrap.com/
 | priority | as a user i want a navbar to be able to move across different pages describe the feature or problem you d like to solve i want a ui to be able to move between different pages such as the home page profile page and other quick access options such as the logout button proposed solution we can use bootstrap to implement a navbar and include all the needed menu items additional context | 1 |
630,022 | 20,074,297,811 | IssuesEvent | 2022-02-04 10:53:55 | edwisely-ai/Tech-Bridge | https://api.github.com/repos/edwisely-ai/Tech-Bridge | opened | IOS SAIL Faculty App Screen Struck at SAIL welcome or launcher page after Opening | Criticality High Priority High | user details:- Kothai, IPhone XR

App Struck on the Launcher ICON itself even after Opening and Closing.
The issue is resolved after, reinstalling SAIL Application, BUt the Root Cause still needs to be Found
Should figure out Root Cause
@vickyse91 @RAJASEKHAR36 @Prahalya19
THe similar issue was found on Kautilya's iPhone yesterday with SAIE App
Please look into the issue | 1.0 | IOS SAIL Faculty App Screen Struck at SAIL welcome or launcher page after Opening - user details:- Kothai, IPhone XR

App Struck on the Launcher ICON itself even after Opening and Closing.
The issue is resolved after, reinstalling SAIL Application, BUt the Root Cause still needs to be Found
Should figure out Root Cause
@vickyse91 @RAJASEKHAR36 @Prahalya19
THe similar issue was found on Kautilya's iPhone yesterday with SAIE App
Please look into the issue | priority | ios sail faculty app screen struck at sail welcome or launcher page after opening user details kothai iphone xr app struck on the launcher icon itself even after opening and closing the issue is resolved after reinstalling sail application but the root cause still needs to be found should figure out root cause the similar issue was found on kautilya s iphone yesterday with saie app please look into the issue | 1 |
355,034 | 10,575,983,750 | IssuesEvent | 2019-10-07 16:51:07 | 18F/samhsa-prototype | https://api.github.com/repos/18F/samhsa-prototype | closed | Interacting with filters when location is not set is confusing | high-priority | If there is no `Location` set, any interaction with the form does not produce any noticeable changes. This can be especially confusing if you have previously searched used a location and have results displayed, then clear out the location and interact with the filters - the previous results will continue to remain unchanged. | 1.0 | Interacting with filters when location is not set is confusing - If there is no `Location` set, any interaction with the form does not produce any noticeable changes. This can be especially confusing if you have previously searched used a location and have results displayed, then clear out the location and interact with the filters - the previous results will continue to remain unchanged. | priority | interacting with filters when location is not set is confusing if there is no location set any interaction with the form does not produce any noticeable changes this can be especially confusing if you have previously searched used a location and have results displayed then clear out the location and interact with the filters the previous results will continue to remain unchanged | 1 |
368,028 | 10,864,933,754 | IssuesEvent | 2019-11-14 17:53:17 | Jinnaix/nemesis-bug-reporting | https://api.github.com/repos/Jinnaix/nemesis-bug-reporting | closed | [EVENT] Honor Hold Hellfire | C++ Script Core Creature High Priority Valid | <!--- (**********************************)
(** Fill in the following fields **)
(**********************************)
Try to give us IDs for Quests, Spells, Items, Creatures and so on if can - it makes things easier and faster. Please dont gather multiple Bugs in one Issue - create one for every Bug. Start with proper naming of your Titel for example : [QUEST] In Dreams (ID 5944)
--->
**Description:**
Duo to a current Core Bug, grouped feared NPCs don´t return to their Home position after fear runs out.
**Current behaviour:**
After fear ends, NPC stay where they are instead of returning back to home.
**To Do:**
Disable [Fear](https://github.com/sveN295/Nemesis/blob/335C/src/server/scripts/Outland/zone_hellfire_peninsula.cpp#L1196) from Honor Hold event for now until Core Support of this behavior.
<!--- Notes
- This template is for problem reports. Try to give us IDs for Quests, Spells, Items, Creatures and so on if can - it makes things easier and faster. Please dont gather multiple Bugs in one Issue - create one for every Bug.
--->
| 1.0 | [EVENT] Honor Hold Hellfire - <!--- (**********************************)
(** Fill in the following fields **)
(**********************************)
Try to give us IDs for Quests, Spells, Items, Creatures and so on if can - it makes things easier and faster. Please dont gather multiple Bugs in one Issue - create one for every Bug. Start with proper naming of your Titel for example : [QUEST] In Dreams (ID 5944)
--->
**Description:**
Duo to a current Core Bug, grouped feared NPCs don´t return to their Home position after fear runs out.
**Current behaviour:**
After fear ends, NPC stay where they are instead of returning back to home.
**To Do:**
Disable [Fear](https://github.com/sveN295/Nemesis/blob/335C/src/server/scripts/Outland/zone_hellfire_peninsula.cpp#L1196) from Honor Hold event for now until Core Support of this behavior.
<!--- Notes
- This template is for problem reports. Try to give us IDs for Quests, Spells, Items, Creatures and so on if can - it makes things easier and faster. Please dont gather multiple Bugs in one Issue - create one for every Bug.
--->
| priority | honor hold hellfire fill in the following fields try to give us ids for quests spells items creatures and so on if can it makes things easier and faster please dont gather multiple bugs in one issue create one for every bug start with proper naming of your titel for example in dreams id description duo to a current core bug grouped feared npcs don´t return to their home position after fear runs out current behaviour after fear ends npc stay where they are instead of returning back to home to do disable from honor hold event for now until core support of this behavior notes this template is for problem reports try to give us ids for quests spells items creatures and so on if can it makes things easier and faster please dont gather multiple bugs in one issue create one for every bug | 1 |
234,397 | 7,720,687,773 | IssuesEvent | 2018-05-24 00:36:52 | tgstation/tgstation | https://api.github.com/repos/tgstation/tgstation | closed | Admin Command Check Contents doesn't work. | Administration Bug Priority: High | [Reproduction]: # Check contents on any human mob, doesn't do what it's supposed to do and instead just shows the name of the mob. | 1.0 | Admin Command Check Contents doesn't work. - [Reproduction]: # Check contents on any human mob, doesn't do what it's supposed to do and instead just shows the name of the mob. | priority | admin command check contents doesn t work check contents on any human mob doesn t do what it s supposed to do and instead just shows the name of the mob | 1 |
215,699 | 7,296,836,007 | IssuesEvent | 2018-02-26 12:13:11 | dagcoin/dagcoin | https://api.github.com/repos/dagcoin/dagcoin | closed | User can login to the Dagcoin app without knowing password if pwd is required | bug high priority |
Wallet asks for a password, user chooses the pwd pressing arrow ↓ and app will be opened.
## Steps to Reproduce
1. Open wallet -> it asks a pwd
2. Click on pwd field -> you will see a dropdown -> choose the pwd (…….) -> OK
3. You are logged in
o sometimes you should try two times
o Sometimes you can't see the dropdown
<img width="650" alt="pwdlogin" src="https://user-images.githubusercontent.com/35455231/35623787-7e2f4690-0695-11e8-9d25-f3808f51b986.png">
## Your Environment
• Win 10
• Testnet
## Acceptance criteria
• If password is requiered, then user should insert it by his own, user cannot choose from dropdown which crome offers
• If pwd was chosen from dropdown, then user cannot login even there is correct pwd
• Chrome offered pwd cannot be copied
• (!) Please check the accepted criteria from technical side
| 1.0 | User can login to the Dagcoin app without knowing password if pwd is required -
Wallet asks for a password, user chooses the pwd pressing arrow ↓ and app will be opened.
## Steps to Reproduce
1. Open wallet -> it asks a pwd
2. Click on pwd field -> you will see a dropdown -> choose the pwd (…….) -> OK
3. You are logged in
o sometimes you should try two times
o Sometimes you can't see the dropdown
<img width="650" alt="pwdlogin" src="https://user-images.githubusercontent.com/35455231/35623787-7e2f4690-0695-11e8-9d25-f3808f51b986.png">
## Your Environment
• Win 10
• Testnet
## Acceptance criteria
• If password is requiered, then user should insert it by his own, user cannot choose from dropdown which crome offers
• If pwd was chosen from dropdown, then user cannot login even there is correct pwd
• Chrome offered pwd cannot be copied
• (!) Please check the accepted criteria from technical side
| priority | user can login to the dagcoin app without knowing password if pwd is required wallet asks for a password user chooses the pwd pressing arrow ↓ and app will be opened steps to reproduce open wallet it asks a pwd click on pwd field you will see a dropdown choose the pwd …… ok you are logged in o sometimes you should try two times o sometimes you can t see the dropdown img width alt pwdlogin src your environment • win • testnet acceptance criteria • if password is requiered then user should insert it by his own user cannot choose from dropdown which crome offers • if pwd was chosen from dropdown then user cannot login even there is correct pwd • chrome offered pwd cannot be copied • please check the accepted criteria from technical side | 1 |
115,504 | 4,675,304,498 | IssuesEvent | 2016-10-07 07:09:20 | mantidproject/mantid | https://api.github.com/repos/mantidproject/mantid | closed | Allow loading using LoadISISNexus in Polref GUI | Component: Reflectometry Priority: High | Jos reported that scientists would like to use `LoadISISNexus` in the Polref interface so that they are able to inspect event data. | 1.0 | Allow loading using LoadISISNexus in Polref GUI - Jos reported that scientists would like to use `LoadISISNexus` in the Polref interface so that they are able to inspect event data. | priority | allow loading using loadisisnexus in polref gui jos reported that scientists would like to use loadisisnexus in the polref interface so that they are able to inspect event data | 1 |
532,123 | 15,529,995,018 | IssuesEvent | 2021-03-13 17:20:57 | RashikaKarki/SheHacks_Team-001 | https://api.github.com/repos/RashikaKarki/SheHacks_Team-001 | closed | Data for the chrome extension | Flask API enhancement high priority | I am planning to scrape these websites and filter data that are more women centric:
- https://powertofly.com/events/
- https://www.hackerearth.com/challenges/?filters=competitive%2Chackathon%2Chiring%2Cuniversity
- https://mlh.io/seasons/2021/events
- https://www.youthop.com/browse
- https://events.withgoogle.com/iamremarkable-workshops-iwd-2021/registrations/new/
I will try to see if there are already api's to get those data. | 1.0 | Data for the chrome extension - I am planning to scrape these websites and filter data that are more women centric:
- https://powertofly.com/events/
- https://www.hackerearth.com/challenges/?filters=competitive%2Chackathon%2Chiring%2Cuniversity
- https://mlh.io/seasons/2021/events
- https://www.youthop.com/browse
- https://events.withgoogle.com/iamremarkable-workshops-iwd-2021/registrations/new/
I will try to see if there are already api's to get those data. | priority | data for the chrome extension i am planning to scrape these websites and filter data that are more women centric i will try to see if there are already api s to get those data | 1 |
316,053 | 9,635,532,139 | IssuesEvent | 2019-05-16 01:38:12 | bradnoble/msc-vuejs | https://api.github.com/repos/bradnoble/msc-vuejs | opened | View categories of member entries | Component: Members Priority: High Status: Backlog Type: Change | I have gotten used to being able to click a member status and get all the members associated with it. I have had to use it a bunch (when not having the CSV properly download) to cross-reference current member data and find discrepancies between an old download and current member status.
Use case 1:
Also useful for if you don't know for sure how to spell a name (i.e. type "Jeff" but looking for "Geoff").
Use case 2: Membership committee wants to look at active members to decide who to recruit for officer/committee positions.
If CSV download is working better now, that may not be needed, but it was something I got used to having. | 1.0 | View categories of member entries - I have gotten used to being able to click a member status and get all the members associated with it. I have had to use it a bunch (when not having the CSV properly download) to cross-reference current member data and find discrepancies between an old download and current member status.
Use case 1:
Also useful for if you don't know for sure how to spell a name (i.e. type "Jeff" but looking for "Geoff").
Use case 2: Membership committee wants to look at active members to decide who to recruit for officer/committee positions.
If CSV download is working better now, that may not be needed, but it was something I got used to having. | priority | view categories of member entries i have gotten used to being able to click a member status and get all the members associated with it i have had to use it a bunch when not having the csv properly download to cross reference current member data and find discrepancies between an old download and current member status use case also useful for if you don t know for sure how to spell a name i e type jeff but looking for geoff use case membership committee wants to look at active members to decide who to recruit for officer committee positions if csv download is working better now that may not be needed but it was something i got used to having | 1 |
811,917 | 30,305,807,769 | IssuesEvent | 2023-07-10 09:23:42 | code4romania/rvm | https://api.github.com/repos/code4romania/rvm | opened | [Organisations] remove 'Interventions' section from the MVP | high-priority :fire: | There should be no 'Interventions' section in the organization profile at this state of the project.
You can notice the 'Interventions' in the tab component if you go to the organization profile.

Remove the section from MVP.a | 1.0 | [Organisations] remove 'Interventions' section from the MVP - There should be no 'Interventions' section in the organization profile at this state of the project.
You can notice the 'Interventions' in the tab component if you go to the organization profile.

Remove the section from MVP.a | priority | remove interventions section from the mvp there should be no interventions section in the organization profile at this state of the project you can notice the interventions in the tab component if you go to the organization profile remove the section from mvp a | 1 |
717,035 | 24,658,191,096 | IssuesEvent | 2022-10-18 02:56:00 | HaDuve/TravelCostNative | https://api.github.com/repos/HaDuve/TravelCostNative | opened | fix the signup double store user bug | Bug 1 - High Priority | probably somewhere in SignupScreen.js and https.js
```
export async function storeUser(uid, userData) {
// some weird shit is happening here
// TODO: fix it
const response = await axios.post(
BACKEND_URL + "/users/" + `${uid}.json`,
userData ? userData : { uid: uid }
);
const id = response.data.name;
return id;
}
``` | 1.0 | fix the signup double store user bug - probably somewhere in SignupScreen.js and https.js
```
export async function storeUser(uid, userData) {
// some weird shit is happening here
// TODO: fix it
const response = await axios.post(
BACKEND_URL + "/users/" + `${uid}.json`,
userData ? userData : { uid: uid }
);
const id = response.data.name;
return id;
}
``` | priority | fix the signup double store user bug probably somewhere in signupscreen js and https js export async function storeuser uid userdata some weird shit is happening here todo fix it const response await axios post backend url users uid json userdata userdata uid uid const id response data name return id | 1 |
162,589 | 6,156,254,544 | IssuesEvent | 2017-06-28 16:18:04 | metasfresh/metasfresh-webui-api | https://api.github.com/repos/metasfresh/metasfresh-webui-api | opened | Sticky empty Filter in modal overly. | priority:high type:bug | ### Type of issue
Bug
### Current behavior
Currently, when opening the modal overlay Material Receipt window from material Disposition, an empty Sticky Filter is shown.
### Expected behavior
Shall not be shown for these filtered modal overlays, because the filter was set by the underlying selection in the main window and needed in the workflow.
### Steps to reproduce
Open window/540196, select a line and press Quickaction to open the Handling Unit Editor modal overlay.

| 1.0 | Sticky empty Filter in modal overly. - ### Type of issue
Bug
### Current behavior
Currently, when opening the modal overlay Material Receipt window from material Disposition, an empty Sticky Filter is shown.
### Expected behavior
Shall not be shown for these filtered modal overlays, because the filter was set by the underlying selection in the main window and needed in the workflow.
### Steps to reproduce
Open window/540196, select a line and press Quickaction to open the Handling Unit Editor modal overlay.

| priority | sticky empty filter in modal overly type of issue bug current behavior currently when opening the modal overlay material receipt window from material disposition an empty sticky filter is shown expected behavior shall not be shown for these filtered modal overlays because the filter was set by the underlying selection in the main window and needed in the workflow steps to reproduce open window select a line and press quickaction to open the handling unit editor modal overlay | 1 |
211,535 | 7,201,949,538 | IssuesEvent | 2018-02-06 01:06:12 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Put cart on ground game crashed says this: | High Priority | Caught exception: Sequence contains no matching element | 1.0 | Put cart on ground game crashed says this: - Caught exception: Sequence contains no matching element | priority | put cart on ground game crashed says this caught exception sequence contains no matching element | 1 |
486,548 | 14,010,968,569 | IssuesEvent | 2020-10-29 06:24:59 | AY2021S1-CS2103T-F13-2/tp | https://api.github.com/repos/AY2021S1-CS2103T-F13-2/tp | closed | Adding goal/deleting goal causes Ui view to switch | priority.High type.Bug | After adding/deleting a goal in detailed view, the Ui will switch to the summarized view
#### Reproduction
- Go into detailed view by using view command
- Add or delete a goal for that book
- The Ui will switch out of detailed view after the command is executed
#### Possible causes
- The ViewType selected for add goal and delete goal's CommandResult is probably wrong, should be `ViewType.MOST_RECENTLY_USED`
| 1.0 | Adding goal/deleting goal causes Ui view to switch - After adding/deleting a goal in detailed view, the Ui will switch to the summarized view
#### Reproduction
- Go into detailed view by using view command
- Add or delete a goal for that book
- The Ui will switch out of detailed view after the command is executed
#### Possible causes
- The ViewType selected for add goal and delete goal's CommandResult is probably wrong, should be `ViewType.MOST_RECENTLY_USED`
| priority | adding goal deleting goal causes ui view to switch after adding deleting a goal in detailed view the ui will switch to the summarized view reproduction go into detailed view by using view command add or delete a goal for that book the ui will switch out of detailed view after the command is executed possible causes the viewtype selected for add goal and delete goal s commandresult is probably wrong should be viewtype most recently used | 1 |
348,675 | 10,451,351,252 | IssuesEvent | 2019-09-19 12:41:09 | AY1920S1-CS2113T-F11-2/main | https://api.github.com/repos/AY1920S1-CS2113T-F11-2/main | closed | B-ViewSchedules | priority.High | Provide a way to view tasks in the form of a schedule e.g., view the schedule for a specific date. | 1.0 | B-ViewSchedules - Provide a way to view tasks in the form of a schedule e.g., view the schedule for a specific date. | priority | b viewschedules provide a way to view tasks in the form of a schedule e g view the schedule for a specific date | 1 |
654,539 | 21,655,671,487 | IssuesEvent | 2022-05-06 13:53:42 | QuiltMC/quiltflower | https://api.github.com/repos/QuiltMC/quiltflower | opened | Variable merging doesn't consider read usages outside of the current block | bug Priority: High Subsystem: Variables | When you have
```java
public void test(int i, int j) {
int k = i;
i += j;
int k1 = i;
i += j;
int k2 = i;
if (j > 0) {
i += j;
}
this.i_1 = i;
this.i_2 = k;
this.i_3 = k1;
this.i_4 = k2;
}
```
This becomes
```java
public void test(int var1, int var2) {
var1 += var2;
var1 += var2;
int var5 = var1;
if (var2 > 0) {
var1 += var2;
}
this.i_1 = var1;
this.i_2 = var1;
this.i_3 = var1;
this.i_4 = var5;
}
```
As the `k`, `k1`, and `k2` are entirely eliminated through variable merging, causing improper code generation as a successor uses the pre-modified version of the variable. Before variable merging, the output is correct (albeit ugly):
```java
int var6 = var1 + var2;
int var7 = var6 + var2;
int var5 = var7;
if (var2 > 0) {
var7 += var2;
}
this.i_1 = var7;
this.i_2 = var1;
this.i_3 = var6;
this.i_4 = var5;
``` | 1.0 | Variable merging doesn't consider read usages outside of the current block - When you have
```java
public void test(int i, int j) {
int k = i;
i += j;
int k1 = i;
i += j;
int k2 = i;
if (j > 0) {
i += j;
}
this.i_1 = i;
this.i_2 = k;
this.i_3 = k1;
this.i_4 = k2;
}
```
This becomes
```java
public void test(int var1, int var2) {
var1 += var2;
var1 += var2;
int var5 = var1;
if (var2 > 0) {
var1 += var2;
}
this.i_1 = var1;
this.i_2 = var1;
this.i_3 = var1;
this.i_4 = var5;
}
```
As the `k`, `k1`, and `k2` are entirely eliminated through variable merging, causing improper code generation as a successor uses the pre-modified version of the variable. Before variable merging, the output is correct (albeit ugly):
```java
int var6 = var1 + var2;
int var7 = var6 + var2;
int var5 = var7;
if (var2 > 0) {
var7 += var2;
}
this.i_1 = var7;
this.i_2 = var1;
this.i_3 = var6;
this.i_4 = var5;
``` | priority | variable merging doesn t consider read usages outside of the current block when you have java public void test int i int j int k i i j int i i j int i if j i j this i i this i k this i this i this becomes java public void test int int int if this i this i this i this i as the k and are entirely eliminated through variable merging causing improper code generation as a successor uses the pre modified version of the variable before variable merging the output is correct albeit ugly java int int int if this i this i this i this i | 1 |
774,683 | 27,206,381,522 | IssuesEvent | 2023-02-20 13:23:54 | zowe/api-layer | https://api.github.com/repos/zowe/api-layer | closed | Distributed (OIDC) Authentication Scheme | enhancement Priority: High docs Epic | **Use Cases**
- There is a client application on the distributed side that needs to communicate with the services running on the zOS. The client needs to access the zOS services under its own authority. For some reason, the client application can't use a client certificate to authenticate with API ML ZAAS service. Similarly, Personal Access Token is not an option. A possible solution is that the client properly implements OIDC protocol and uses OAuth2 Client Credentials flow to authenticate with the distributed IdP/IAM. The outcome of the client's successful authentication is an OAuth2 access token which can be used to communicate via Gateway towards the zOS services.
- There is a client application on the distributed side that needs to access zOS resources on behalf of a user working with the client application using some kind of user interface (User Agent). The client application properly implements OIDC protocol and allows the user to authenticate with a distributed IdP/IAM. The outcome of successful user authentication and client application authorization by the user is a set of tokens: Access Token, ID token, and optionally Refresh Token. The client application can use the ID token for user profile information and the Access Token for access to zOS resources through API ML GW.
For the above use cases to work, API ML must implement OIDC authentication scheme and be able to translate/propagate distributed identities encoded in the access token to mainframe identities.
**Acceptance Criteria**
- [ ] There is a new authentication scheme - _oidc_
- [ ] The _oidc_ scheme is supported on the northbound
- [ ] The identity from the _oidc/oauth_ token is translated/propagated to a mainframe identity encoded in a Zowe Token (z/OSMF, SAF IDT) which is supported on the southbound
- [ ] The usage is demonstrated with OKTA as distributed IdP.
- [ ] The scheme is properly documented in the Zowe Docs. The documentation belongs to the Extend section.
| 1.0 | Distributed (OIDC) Authentication Scheme - **Use Cases**
- There is a client application on the distributed side that needs to communicate with the services running on the zOS. The client needs to access the zOS services under its own authority. For some reason, the client application can't use a client certificate to authenticate with API ML ZAAS service. Similarly, Personal Access Token is not an option. A possible solution is that the client properly implements OIDC protocol and uses OAuth2 Client Credentials flow to authenticate with the distributed IdP/IAM. The outcome of the client's successful authentication is an OAuth2 access token which can be used to communicate via Gateway towards the zOS services.
- There is a client application on the distributed side that needs to access zOS resources on behalf of a user working with the client application using some kind of user interface (User Agent). The client application properly implements OIDC protocol and allows the user to authenticate with a distributed IdP/IAM. The outcome of successful user authentication and client application authorization by the user is a set of tokens: Access Token, ID token, and optionally Refresh Token. The client application can use the ID token for user profile information and the Access Token for access to zOS resources through API ML GW.
For the above use cases to work, API ML must implement OIDC authentication scheme and be able to translate/propagate distributed identities encoded in the access token to mainframe identities.
**Acceptance Criteria**
- [ ] There is a new authentication scheme - _oidc_
- [ ] The _oidc_ scheme is supported on the northbound
- [ ] The identity from the _oidc/oauth_ token is translated/propagated to a mainframe identity encoded in a Zowe Token (z/OSMF, SAF IDT) which is supported on the southbound
- [ ] The usage is demonstrated with OKTA as distributed IdP.
- [ ] The scheme is properly documented in the Zowe Docs. The documentation belongs to the Extend section.
| priority | distributed oidc authentication scheme use cases there is a client application on the distributed side that needs to communicate with the services running on the zos the client needs to access the zos services under its own authority for some reason the client application can t use a client certificate to authenticate with api ml zaas service similarly personal access token is not an option a possible solution is that the client properly implements oidc protocol and uses client credentials flow to authenticate with the distributed idp iam the outcome of the client s successful authentication is an access token which can be used to communicate via gateway towards the zos services there is a client application on the distributed side that needs to access zos resources on behalf of a user working with the client application using some kind of user interface user agent the client application properly implements oidc protocol and allows the user to authenticate with a distributed idp iam the outcome of successful user authentication and client application authorization by the user is a set of tokens access token id token and optionally refresh token the client application can use the id token for user profile information and the access token for access to zos resources through api ml gw for the above use cases to work api ml must implement oidc authentication scheme and be able to translate propagate distributed identities encoded in the access token to mainframe identities acceptance criteria there is a new authentication scheme oidc the oidc scheme is supported on the northbound the identity from the oidc oauth token is translated propagated to a mainframe identity encoded in a zowe token z osmf saf idt which is supported on the southbound the usage is demonstrated with okta as distributed idp the scheme is properly documented in the zowe docs the documentation belongs to the extend section | 1 |
805,262 | 29,514,733,495 | IssuesEvent | 2023-06-04 11:04:47 | ctm/mb2-doc | https://api.github.com/repos/ctm/mb2-doc | opened | Investigate auto-check on hand 346473 | high priority easy request | Investigate hand 346,473 to see if the autocheck bug is still present
> JADC🚴: Cliff, I believe I had another "auto check" on the flop. hand # 346473
| 1.0 | Investigate auto-check on hand 346473 - Investigate hand 346,473 to see if the autocheck bug is still present
> JADC🚴: Cliff, I believe I had another "auto check" on the flop. hand # 346473
| priority | investigate auto check on hand investigate hand to see if the autocheck bug is still present jadc🚴 cliff i believe i had another auto check on the flop hand | 1 |
812,413 | 30,332,964,560 | IssuesEvent | 2023-07-11 07:46:26 | calcom/cal.com | https://api.github.com/repos/calcom/cal.com | closed | [CAL-2111] Managed event does not fire Webhooks if it has multiple team members | 🐛 bug High priority teams webhooks | Found a bug? Please fill out the sections below. 👍
### Issue Summary
A managed event doesn't fire webhook if the it contains multiple team members. If it has a single team member, the webhooks fire.
### Steps to Reproduce
1. Create a managed event
2. Add a webhook to this event with BOOKING.CREATED trigger enabled
3. Make booking and confirm that the webhook works
4. Now add more team members to the event
5. Make another booking, and how it shouldn't trigger the webhook
Any other relevant information. For example, why do you consider this a bug and what did you expect to happen instead?
### Technical details
- Production
<sub>[CAL-2111](https://linear.app/calcom/issue/CAL-2111/managed-event-does-not-fire-webhooks-if-it-has-multiple-team-members)</sub> | 1.0 | [CAL-2111] Managed event does not fire Webhooks if it has multiple team members - Found a bug? Please fill out the sections below. 👍
### Issue Summary
A managed event doesn't fire webhook if the it contains multiple team members. If it has a single team member, the webhooks fire.
### Steps to Reproduce
1. Create a managed event
2. Add a webhook to this event with BOOKING.CREATED trigger enabled
3. Make booking and confirm that the webhook works
4. Now add more team members to the event
5. Make another booking, and how it shouldn't trigger the webhook
Any other relevant information. For example, why do you consider this a bug and what did you expect to happen instead?
### Technical details
- Production
<sub>[CAL-2111](https://linear.app/calcom/issue/CAL-2111/managed-event-does-not-fire-webhooks-if-it-has-multiple-team-members)</sub> | priority | managed event does not fire webhooks if it has multiple team members found a bug please fill out the sections below 👍 issue summary a managed event doesn t fire webhook if the it contains multiple team members if it has a single team member the webhooks fire steps to reproduce create a managed event add a webhook to this event with booking created trigger enabled make booking and confirm that the webhook works now add more team members to the event make another booking and how it shouldn t trigger the webhook any other relevant information for example why do you consider this a bug and what did you expect to happen instead technical details production | 1 |
590,017 | 17,768,905,100 | IssuesEvent | 2021-08-30 11:13:05 | EscolaLMS/Auth | https://api.github.com/repos/EscolaLMS/Auth | opened | user groups | high priority | add CRUD for user groups
- groups are managable from admin panel by admins
- [ ] model
- [ ] controller
- [ ] tests
- [ ] swagger | 1.0 | user groups - add CRUD for user groups
- groups are managable from admin panel by admins
- [ ] model
- [ ] controller
- [ ] tests
- [ ] swagger | priority | user groups add crud for user groups groups are managable from admin panel by admins model controller tests swagger | 1 |
430,432 | 12,453,109,464 | IssuesEvent | 2020-05-27 13:23:00 | CovidShield/mobile | https://api.github.com/repos/CovidShield/mobile | opened | [Global] Links open a new window without warning | accessibility high priority | ## Issue summary
Links which request and external resource open a new window/tab/app without warning the user. This could confuse visually impaired users who believe they are following a link in the same browser/app window which causes extra effort to switch back to the previous window/app.
<details>
<summary>Screenshots</summary>
<img width="374" alt="Screen Shot 2020-05-27 at 8 27 53 AM" src="https://user-images.githubusercontent.com/1392632/83023887-85e1d900-9ffb-11ea-855e-469e551e04d2.png">
<img width="370" alt="Screen Shot 2020-05-27 at 8 28 17 AM" src="https://user-images.githubusercontent.com/1392632/83023894-88443300-9ffb-11ea-8c57-93f32cb1263c.png">
<img width="372" alt="Screen Shot 2020-05-27 at 8 28 38 AM" src="https://user-images.githubusercontent.com/1392632/83023900-88dcc980-9ffb-11ea-948e-2141058c229e.png">
<img width="374" alt="Screen Shot 2020-05-27 at 8 30 42 AM" src="https://user-images.githubusercontent.com/1392632/83023901-8a0df680-9ffb-11ea-87d6-e7408cfee52d.png">
</details>
### Current code
#### TSX
```tsx
// InfoShareView.tsx
const InfoShareItem = ({onPress, text, icon}: InfoShareItemProps) => (
// …
<TouchableOpacity onPress={onPress}>
// …
</TouchableOpacity>
// …
<InfoShareItem onPress={onSymptomps} text={i18n.translate('Info.CheckSymptoms')} icon="icon-external-arrow" />
```
## Steps to reproduce
1. Load the app into the iOS simulator
2. Expand the Sheet content
3. Enable [VoiceOver screen reader](https://dequeuniversity.com/screenreaders/voiceover-keyboard-shortcuts) on macOS
4. Use the Virtual Cursor to navigate through the Sheet controls
## Behavior
### Expected
- Links which open a new window/app will be accompanied by a visible and audible warning.
### Actual
- Links open a new window without any warning.
## Recommendation
For each link in the app which opens an external resource:
1. Add the `accessibilityLabel` prop, setting its value to the control `{text}` (This is required for `accessibilityHint`)
2. Add the `accessibilityHint` prop, setting its value to a string which warns the user audibly
3. If no icon is present, include a "new window" icon to convey the warning visually
### Recommended code
#### TSX
```tsx
// InfoShareView.tsx
const InfoShareItem = ({onPress, text, icon, role, hint}: InfoShareItemProps) => (
// …
<TouchableOpacity onPress={onPress} accessibilityLabel={text} accessibilityHint={hint} accessibilityRole={role}>
// …
</TouchableOpacity>
// …
<InfoShareItem onPress={onSymptomps} text={i18n.translate('Info.CheckSymptoms')} icon="icon-external-arrow" role="link" hint="opens in a new window" />
```
## Specifications
- **Component:** CovidShield [Global]
- **WCAG Principle:** Understandable
- **WCAG SC:** 3.2.2 On Input
- **Severity:** High
- **Effort:** High | 1.0 | [Global] Links open a new window without warning - ## Issue summary
Links which request and external resource open a new window/tab/app without warning the user. This could confuse visually impaired users who believe they are following a link in the same browser/app window which causes extra effort to switch back to the previous window/app.
<details>
<summary>Screenshots</summary>
<img width="374" alt="Screen Shot 2020-05-27 at 8 27 53 AM" src="https://user-images.githubusercontent.com/1392632/83023887-85e1d900-9ffb-11ea-855e-469e551e04d2.png">
<img width="370" alt="Screen Shot 2020-05-27 at 8 28 17 AM" src="https://user-images.githubusercontent.com/1392632/83023894-88443300-9ffb-11ea-8c57-93f32cb1263c.png">
<img width="372" alt="Screen Shot 2020-05-27 at 8 28 38 AM" src="https://user-images.githubusercontent.com/1392632/83023900-88dcc980-9ffb-11ea-948e-2141058c229e.png">
<img width="374" alt="Screen Shot 2020-05-27 at 8 30 42 AM" src="https://user-images.githubusercontent.com/1392632/83023901-8a0df680-9ffb-11ea-87d6-e7408cfee52d.png">
</details>
### Current code
#### TSX
```tsx
// InfoShareView.tsx
const InfoShareItem = ({onPress, text, icon}: InfoShareItemProps) => (
// …
<TouchableOpacity onPress={onPress}>
// …
</TouchableOpacity>
// …
<InfoShareItem onPress={onSymptomps} text={i18n.translate('Info.CheckSymptoms')} icon="icon-external-arrow" />
```
## Steps to reproduce
1. Load the app into the iOS simulator
2. Expand the Sheet content
3. Enable [VoiceOver screen reader](https://dequeuniversity.com/screenreaders/voiceover-keyboard-shortcuts) on macOS
4. Use the Virtual Cursor to navigate through the Sheet controls
## Behavior
### Expected
- Links which open a new window/app will be accompanied by a visible and audible warning.
### Actual
- Links open a new window without any warning.
## Recommendation
For each link in the app which opens an external resource:
1. Add the `accessibilityLabel` prop, setting its value to the control `{text}` (This is required for `accessibilityHint`)
2. Add the `accessibilityHint` prop, setting its value to a string which warns the user audibly
3. If no icon is present, include a "new window" icon to convey the warning visually
### Recommended code
#### TSX
```tsx
// InfoShareView.tsx
const InfoShareItem = ({onPress, text, icon, role, hint}: InfoShareItemProps) => (
// …
<TouchableOpacity onPress={onPress} accessibilityLabel={text} accessibilityHint={hint} accessibilityRole={role}>
// …
</TouchableOpacity>
// …
<InfoShareItem onPress={onSymptomps} text={i18n.translate('Info.CheckSymptoms')} icon="icon-external-arrow" role="link" hint="opens in a new window" />
```
## Specifications
- **Component:** CovidShield [Global]
- **WCAG Principle:** Understandable
- **WCAG SC:** 3.2.2 On Input
- **Severity:** High
- **Effort:** High | priority | links open a new window without warning issue summary links which request and external resource open a new window tab app without warning the user this could confuse visually impaired users who believe they are following a link in the same browser app window which causes extra effort to switch back to the previous window app screenshots img width alt screen shot at am src img width alt screen shot at am src img width alt screen shot at am src img width alt screen shot at am src current code tsx tsx infoshareview tsx const infoshareitem onpress text icon infoshareitemprops … … … steps to reproduce load the app into the ios simulator expand the sheet content enable on macos use the virtual cursor to navigate through the sheet controls behavior expected links which open a new window app will be accompanied by a visible and audible warning actual links open a new window without any warning recommendation for each link in the app which opens an external resource add the accessibilitylabel prop setting its value to the control text this is required for accessibilityhint add the accessibilityhint prop setting its value to a string which warns the user audibly if no icon is present include a new window icon to convey the warning visually recommended code tsx tsx infoshareview tsx const infoshareitem onpress text icon role hint infoshareitemprops … … … specifications component covidshield wcag principle understandable wcag sc on input severity high effort high | 1 |
828,160 | 31,814,318,901 | IssuesEvent | 2023-09-13 19:13:13 | chairemobilite/evolution | https://api.github.com/repos/chairemobilite/evolution | closed | validations: Change when an interview is_frozen | enhancement od_2023 High priority | Now, the minute the interview is opened in the InterviewSummary window, the interview is frozen and the participant cannot edit it anymore. It should be frozen only when the interview is validated and confirmed, by clicking on the buttons on top of the screen

| 1.0 | validations: Change when an interview is_frozen - Now, the minute the interview is opened in the InterviewSummary window, the interview is frozen and the participant cannot edit it anymore. It should be frozen only when the interview is validated and confirmed, by clicking on the buttons on top of the screen

| priority | validations change when an interview is frozen now the minute the interview is opened in the interviewsummary window the interview is frozen and the participant cannot edit it anymore it should be frozen only when the interview is validated and confirmed by clicking on the buttons on top of the screen | 1 |
517,233 | 14,997,606,537 | IssuesEvent | 2021-01-29 17:08:24 | ucb-rit/coldfront | https://api.github.com/repos/ucb-rit/coldfront | closed | Add API endpoints needed to support check_usage.sh | high priority rest api | The existing API endpoints that currently support the `check_usage` client need to be adapted to use ColdFront's models. | 1.0 | Add API endpoints needed to support check_usage.sh - The existing API endpoints that currently support the `check_usage` client need to be adapted to use ColdFront's models. | priority | add api endpoints needed to support check usage sh the existing api endpoints that currently support the check usage client need to be adapted to use coldfront s models | 1 |
465,508 | 13,387,159,495 | IssuesEvent | 2020-09-02 15:38:15 | dtcenter/METplus | https://api.github.com/repos/dtcenter/METplus | closed | Filename templates that have other arguments besides a filename for python embedding fails | component: use case wrapper priority: high requestor: NCAR type: enhancement | @j-opatz brought this to attention. His use case had a template with additional arguments to pass to his python embedding script via MET_PYTHON_INPUT_ARG:
```
...
FCST_VAR1_NAME = /d1/projects/nrl_aerosol/forecast_embedded.py MET_PYTHON_INPUT_ARG
...
FCST_MTD_INPUT_DATATYPE = PYTHON_NUMPY
...
FCST_MTD_INPUT_TEMPLATE=
/d1/projects/nrl_aerosol/input/icap_{init?fmt=%Y%m%d}00_aod.nc:total_aod:{valid?fmt=%Y%m%d%H%M}:0,
/d1/projects/nrl_aerosol/input/icap_{init?fmt=%Y%m%d}00_aod.nc:total_aod:{valid?fmt=%Y%m%d%H%M}:1
...
```
## Describe the Enhancement ##
Added a check if the data type is set and it contains PYTHON in the text. If it does, then return the full path without checking if the file exists. This allows the text to contain other arguments that can be passed to the python embedding script.
### Time Estimate ###
2 days
### Sub-Issues ###
Consider breaking the enhancement down into sub-issues.
- [X] *Add a checkbox for each sub-issue here.*
## Define the Metadata ##
### Assignee ###
- [X] Select **engineer(s)** or **no engineer** required
- [X] Select **scientist(s)** or **no scientist** required
### Labels ###
- [X] Select **component(s)**
- [X] Select **priority**
- [X] Select **requestor(s)**
### Projects and Milestone ###
- [X] Review **projects** and select relevant **Repository** and **Organization** ones
- [X] Select **milestone**
## Define Related Issue(s) ##
Consider the impact to the other METplus components.
- [X] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdatadb](https://github.com/dtcenter/METdatadb/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose)
## Enhancement Checklist ##
See the [METplus Workflow](https://dtcenter.github.io/METplus/Contributors_Guide/github_workflow.html) for details.
- [X] Complete the issue definition above.
- [X] Fork this repository or create a branch of **develop**.
Branch name: `feature_581_mtd_py_embed_error`
- [X] Complete the development and test your changes.
- [ ] Add/update unit tests.
- [ ] Add/update documentation.
- [ ] Push local changes to GitHub.
- [ ] Submit a pull request to merge into **develop** and link the pull request to this issue.
Pull request: `feature <Issue Number> <Description>`
- [ ] Iterate until the reviewer(s) accept and merge your changes.
- [ ] Delete your fork or branch.
- [ ] Close this issue.
| 1.0 | Filename templates that have other arguments besides a filename for python embedding fails - @j-opatz brought this to attention. His use case had a template with additional arguments to pass to his python embedding script via MET_PYTHON_INPUT_ARG:
```
...
FCST_VAR1_NAME = /d1/projects/nrl_aerosol/forecast_embedded.py MET_PYTHON_INPUT_ARG
...
FCST_MTD_INPUT_DATATYPE = PYTHON_NUMPY
...
FCST_MTD_INPUT_TEMPLATE=
/d1/projects/nrl_aerosol/input/icap_{init?fmt=%Y%m%d}00_aod.nc:total_aod:{valid?fmt=%Y%m%d%H%M}:0,
/d1/projects/nrl_aerosol/input/icap_{init?fmt=%Y%m%d}00_aod.nc:total_aod:{valid?fmt=%Y%m%d%H%M}:1
...
```
## Describe the Enhancement ##
Added a check if the data type is set and it contains PYTHON in the text. If it does, then return the full path without checking if the file exists. This allows the text to contain other arguments that can be passed to the python embedding script.
### Time Estimate ###
2 days
### Sub-Issues ###
Consider breaking the enhancement down into sub-issues.
- [X] *Add a checkbox for each sub-issue here.*
## Define the Metadata ##
### Assignee ###
- [X] Select **engineer(s)** or **no engineer** required
- [X] Select **scientist(s)** or **no scientist** required
### Labels ###
- [X] Select **component(s)**
- [X] Select **priority**
- [X] Select **requestor(s)**
### Projects and Milestone ###
- [X] Review **projects** and select relevant **Repository** and **Organization** ones
- [X] Select **milestone**
## Define Related Issue(s) ##
Consider the impact to the other METplus components.
- [X] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdatadb](https://github.com/dtcenter/METdatadb/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose)
## Enhancement Checklist ##
See the [METplus Workflow](https://dtcenter.github.io/METplus/Contributors_Guide/github_workflow.html) for details.
- [X] Complete the issue definition above.
- [X] Fork this repository or create a branch of **develop**.
Branch name: `feature_581_mtd_py_embed_error`
- [X] Complete the development and test your changes.
- [ ] Add/update unit tests.
- [ ] Add/update documentation.
- [ ] Push local changes to GitHub.
- [ ] Submit a pull request to merge into **develop** and link the pull request to this issue.
Pull request: `feature <Issue Number> <Description>`
- [ ] Iterate until the reviewer(s) accept and merge your changes.
- [ ] Delete your fork or branch.
- [ ] Close this issue.
| priority | filename templates that have other arguments besides a filename for python embedding fails j opatz brought this to attention his use case had a template with additional arguments to pass to his python embedding script via met python input arg fcst name projects nrl aerosol forecast embedded py met python input arg fcst mtd input datatype python numpy fcst mtd input template projects nrl aerosol input icap init fmt y m d aod nc total aod valid fmt y m d h m projects nrl aerosol input icap init fmt y m d aod nc total aod valid fmt y m d h m describe the enhancement added a check if the data type is set and it contains python in the text if it does then return the full path without checking if the file exists this allows the text to contain other arguments that can be passed to the python embedding script time estimate days sub issues consider breaking the enhancement down into sub issues add a checkbox for each sub issue here define the metadata assignee select engineer s or no engineer required select scientist s or no scientist required labels select component s select priority select requestor s projects and milestone review projects and select relevant repository and organization ones select milestone define related issue s consider the impact to the other metplus components enhancement checklist see the for details complete the issue definition above fork this repository or create a branch of develop branch name feature mtd py embed error complete the development and test your changes add update unit tests add update documentation push local changes to github submit a pull request to merge into develop and link the pull request to this issue pull request feature iterate until the reviewer s accept and merge your changes delete your fork or branch close this issue | 1 |
2,225 | 2,524,879,580 | IssuesEvent | 2015-01-20 20:43:18 | SiCKRAGETV/sickrage-issues | https://api.github.com/repos/SiCKRAGETV/sickrage-issues | reopened | Config > General page | 1: Bug / issue 2: High Priority 3: Confirmed 3: Fix branch: master | I am a beginner and not good with Linux, but I have run sickbeard for the last 4 years on my mac. I am now setting up a new mac and tried to install the latest version of SickRage yesterday as it sounds GREAT! I will need some step by step instructions on how to fix this, but if nobody can help, then at least how to uninstall so I can go back to sickbeard, although I would really like to get this working as it sounds like much improved features.
On the config options, I am not getting a WEBUI page here, I get the following:
Error
'NoneType' object is not iterable
Traceback
```
Traceback (most recent call last):
File "/Applications/SickRage/tornado/web.py", line 1292, in _stack_context_handle_exception raise_exc_info((type, value, traceback))
File "/Applications/SickRage/tornado/stack_context.py", line 314, in wrapped ret = fn(*args, **kwargs)
File "/Applications/SickRage/tornado/concurrent.py", line 226, in lambda future: callback(future.result()))
File "/Applications/SickRage/lib/concurrent/futures/_base.py", line 400, in result return self.__get_result()
File "/Applications/SickRage/lib/concurrent/futures/_base.py", line 359, in __get_result reraise(self._exception, self._traceback)
File "/Applications/SickRage/lib/concurrent/futures/_compat.py", line 107, in reraise exec('raise exc_type, exc_value, traceback', {}, locals_)
File "/Applications/SickRage/lib/concurrent/futures/thread.py", line 61, in run result = self.fn(*self.args, **self.kwargs)
File "/Applications/SickRage/sickbeard/webserve.py", line 230, in async_call result = function(**kwargs)
File "/Applications/SickRage/sickbeard/webserve.py", line 3390, in index return t.respond()
File "/Applications/SickRage/cache/cheetah/_Applications_SickRage_gui_slick_interfaces_default_config_general_tmpl.py", line 952, in respond for cur_branch in VFN(VFFSL(SL,"sickbeard.versionCheckScheduler.action",True),"list_remote_branches",False)(): # generated from line 521, col 10
TypeError: 'NoneType' object is not iterable
```
Request Info
```
body:
files: {}
protocol: http
connection:
body_arguments: {}
uri: /config/general/
query_arguments: {}
_start_time: 1419964360.95
headers: {'Accept-Language': 'en-us', 'Accept-Encoding': 'gzip, deflate', 'Connection': 'keep-alive', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5', 'Host': 'localhost:8081', 'Cache-Control': 'max-age=0'}
host: localhost:8081
version: HTTP/1.1
arguments: {}
_finish_time: None
query:
path: /config/general/
method: GET
remote_ip
```
 | 1.0 | Config > General page - I am a beginner and not good with Linux, but I have run sickbeard for the last 4 years on my mac. I am now setting up a new mac and tried to install the latest version of SickRage yesterday as it sounds GREAT! I will need some step by step instructions on how to fix this, but if nobody can help, then at least how to uninstall so I can go back to sickbeard, although I would really like to get this working as it sounds like much improved features.
On the config options, I am not getting a WEBUI page here, I get the following:
Error
'NoneType' object is not iterable
Traceback
```
Traceback (most recent call last):
File "/Applications/SickRage/tornado/web.py", line 1292, in _stack_context_handle_exception raise_exc_info((type, value, traceback))
File "/Applications/SickRage/tornado/stack_context.py", line 314, in wrapped ret = fn(*args, **kwargs)
File "/Applications/SickRage/tornado/concurrent.py", line 226, in lambda future: callback(future.result()))
File "/Applications/SickRage/lib/concurrent/futures/_base.py", line 400, in result return self.__get_result()
File "/Applications/SickRage/lib/concurrent/futures/_base.py", line 359, in __get_result reraise(self._exception, self._traceback)
File "/Applications/SickRage/lib/concurrent/futures/_compat.py", line 107, in reraise exec('raise exc_type, exc_value, traceback', {}, locals_)
File "/Applications/SickRage/lib/concurrent/futures/thread.py", line 61, in run result = self.fn(*self.args, **self.kwargs)
File "/Applications/SickRage/sickbeard/webserve.py", line 230, in async_call result = function(**kwargs)
File "/Applications/SickRage/sickbeard/webserve.py", line 3390, in index return t.respond()
File "/Applications/SickRage/cache/cheetah/_Applications_SickRage_gui_slick_interfaces_default_config_general_tmpl.py", line 952, in respond for cur_branch in VFN(VFFSL(SL,"sickbeard.versionCheckScheduler.action",True),"list_remote_branches",False)(): # generated from line 521, col 10
TypeError: 'NoneType' object is not iterable
```
Request Info
```
body:
files: {}
protocol: http
connection:
body_arguments: {}
uri: /config/general/
query_arguments: {}
_start_time: 1419964360.95
headers: {'Accept-Language': 'en-us', 'Accept-Encoding': 'gzip, deflate', 'Connection': 'keep-alive', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5', 'Host': 'localhost:8081', 'Cache-Control': 'max-age=0'}
host: localhost:8081
version: HTTP/1.1
arguments: {}
_finish_time: None
query:
path: /config/general/
method: GET
remote_ip
```
 | priority | config general page i am a beginner and not good with linux but i have run sickbeard for the last years on my mac i am now setting up a new mac and tried to install the latest version of sickrage yesterday as it sounds great i will need some step by step instructions on how to fix this but if nobody can help then at least how to uninstall so i can go back to sickbeard although i would really like to get this working as it sounds like much improved features on the config options i am not getting a webui page here i get the following error nonetype object is not iterable traceback traceback most recent call last file applications sickrage tornado web py line in stack context handle exception raise exc info type value traceback file applications sickrage tornado stack context py line in wrapped ret fn args kwargs file applications sickrage tornado concurrent py line in lambda future callback future result file applications sickrage lib concurrent futures base py line in result return self get result file applications sickrage lib concurrent futures base py line in get result reraise self exception self traceback file applications sickrage lib concurrent futures compat py line in reraise exec raise exc type exc value traceback locals file applications sickrage lib concurrent futures thread py line in run result self fn self args self kwargs file applications sickrage sickbeard webserve py line in async call result function kwargs file applications sickrage sickbeard webserve py line in index return t respond file applications sickrage cache cheetah applications sickrage gui slick interfaces default config general tmpl py line in respond for cur branch in vfn vffsl sl sickbeard versioncheckscheduler action true list remote branches false generated from line col typeerror nonetype object is not iterable request info body files protocol http connection body arguments uri config general query arguments start time headers accept language en us accept encoding gzip deflate connection keep alive accept text html application xhtml xml application xml q q user agent mozilla macintosh intel mac os x applewebkit khtml like gecko version safari host localhost cache control max age host localhost version http arguments finish time none query path config general method get remote ip | 1 |
764,940 | 26,824,646,828 | IssuesEvent | 2023-02-02 12:00:22 | LIKELION-FE-LAB9/Market-Karly | https://api.github.com/repos/LIKELION-FE-LAB9/Market-Karly | closed | Footer | Inner Top CSS 작업 | ❤️ Feature 🟠 Priority: High | # 🌳 작업 브랜치
ukss
# 📝 TASK 개요
Footer > Inner > Top Part CSS 작업 및 리팩토링
# ✅ To Do 및 진행상황
Customer Service
- [x] 고객행복센터
- [x] Number
- [x] inquiry
- [x] mail
About
- [x] footerNavigation
- [x] Area
- [x] SNS
| 1.0 | Footer | Inner Top CSS 작업 - # 🌳 작업 브랜치
ukss
# 📝 TASK 개요
Footer > Inner > Top Part CSS 작업 및 리팩토링
# ✅ To Do 및 진행상황
Customer Service
- [x] 고객행복센터
- [x] Number
- [x] inquiry
- [x] mail
About
- [x] footerNavigation
- [x] Area
- [x] SNS
| priority | footer inner top css 작업 🌳 작업 브랜치 ukss 📝 task 개요 footer inner top part css 작업 및 리팩토링 ✅ to do 및 진행상황 customer service 고객행복센터 number inquiry mail about footernavigation area sns | 1 |
439,938 | 12,690,768,153 | IssuesEvent | 2020-06-21 13:50:47 | sourcefrog/conserve | https://api.github.com/repos/sourcefrog/conserve | opened | Check blocks are present during backup | priority:high topic:robustness | a21737b8e89456040089858c6b35e2b35f12d906 changed Conserve so that it assumes that blocks referenced by previous indexes are present in the archive. That helps performance, but it does mean that blocks that are missing in the previous band will never get re-added by a later band: the files just remain missing, which is not great.
Perhaps this should be reverted, and instead Conserve should check the blocks are present before adding a new reference to them, perhaps with an in-memory cache of which ones have been seen. #106
If the previous index references an out-of-range address that won't be caught, but perhaps that's less likely: it requires a bug in the old version, not just loss of files. | 1.0 | Check blocks are present during backup - a21737b8e89456040089858c6b35e2b35f12d906 changed Conserve so that it assumes that blocks referenced by previous indexes are present in the archive. That helps performance, but it does mean that blocks that are missing in the previous band will never get re-added by a later band: the files just remain missing, which is not great.
Perhaps this should be reverted, and instead Conserve should check the blocks are present before adding a new reference to them, perhaps with an in-memory cache of which ones have been seen. #106
If the previous index references an out-of-range address that won't be caught, but perhaps that's less likely: it requires a bug in the old version, not just loss of files. | priority | check blocks are present during backup changed conserve so that it assumes that blocks referenced by previous indexes are present in the archive that helps performance but it does mean that blocks that are missing in the previous band will never get re added by a later band the files just remain missing which is not great perhaps this should be reverted and instead conserve should check the blocks are present before adding a new reference to them perhaps with an in memory cache of which ones have been seen if the previous index references an out of range address that won t be caught but perhaps that s less likely it requires a bug in the old version not just loss of files | 1 |
793,522 | 28,000,822,246 | IssuesEvent | 2023-03-27 11:38:28 | AY2223S2-CS2113-T12-1/tp | https://api.github.com/repos/AY2223S2-CS2113-T12-1/tp | closed | Update Income | type.Task priority.High | Based on the arguments in the input, update the required fields for the selected income within IncomeList
Satisfies user story #105 | 1.0 | Update Income - Based on the arguments in the input, update the required fields for the selected income within IncomeList
Satisfies user story #105 | priority | update income based on the arguments in the input update the required fields for the selected income within incomelist satisfies user story | 1 |
808,271 | 30,053,417,551 | IssuesEvent | 2023-06-28 03:50:24 | leanprover/vscode-lean4 | https://api.github.com/repos/leanprover/vscode-lean4 | closed | InfoView popups need scrollability | enhancement high priority | Some large markdown comment blocks require scrolling like this, which you will see in the editor tips:

Today the infoview will render large popups off the bottom or off the top of the infoview:

or

and the vertical size will be infinite with no nested scrollbar inside the tip. I think a fixed max vertical height with scrollbars when needed would be nicer especially because of the flip() limitations in Popper v2.x mentioned in https://github.com/leanprover/vscode-lean4/pull/207 | 1.0 | InfoView popups need scrollability - Some large markdown comment blocks require scrolling like this, which you will see in the editor tips:

Today the infoview will render large popups off the bottom or off the top of the infoview:

or

and the vertical size will be infinite with no nested scrollbar inside the tip. I think a fixed max vertical height with scrollbars when needed would be nicer especially because of the flip() limitations in Popper v2.x mentioned in https://github.com/leanprover/vscode-lean4/pull/207 | priority | infoview popups need scrollability some large markdown comment blocks require scrolling like this which you will see in the editor tips today the infoview will render large popups off the bottom or off the top of the infoview or and the vertical size will be infinite with no nested scrollbar inside the tip i think a fixed max vertical height with scrollbars when needed would be nicer especially because of the flip limitations in popper x mentioned in | 1 |
65,065 | 3,226,124,771 | IssuesEvent | 2015-10-10 01:56:42 | synkarius/caster | https://api.github.com/repos/synkarius/caster | closed | Reimplement Missing WSR Functionality | enhancement high priority | - [x] _Timer
- [x] RecognitionHistory
- [x] BoxAction
~~64 bit Windows scanning patch (not really related)~~ | 1.0 | Reimplement Missing WSR Functionality - - [x] _Timer
- [x] RecognitionHistory
- [x] BoxAction
~~64 bit Windows scanning patch (not really related)~~ | priority | reimplement missing wsr functionality timer recognitionhistory boxaction bit windows scanning patch not really related | 1 |
766,424 | 26,883,237,261 | IssuesEvent | 2023-02-05 21:59:03 | Wonderland-Mobile/Issue-Tracker | https://api.github.com/repos/Wonderland-Mobile/Issue-Tracker | closed | Shadow Stinkers won't push boxes or pick up coins | bug High Priority | _[From the "Stinky and Loof in Wonderland" issues document]_
Shadow Stinkers are completely broken; they don’t push or collect coins like they’re supposed to, and don’t die to electro tiles or spikes. | 1.0 | Shadow Stinkers won't push boxes or pick up coins - _[From the "Stinky and Loof in Wonderland" issues document]_
Shadow Stinkers are completely broken; they don’t push or collect coins like they’re supposed to, and don’t die to electro tiles or spikes. | priority | shadow stinkers won t push boxes or pick up coins shadow stinkers are completely broken they don’t push or collect coins like they’re supposed to and don’t die to electro tiles or spikes | 1 |
753,615 | 26,355,814,544 | IssuesEvent | 2023-01-11 09:37:38 | mateuszrymar/gpx-analyzer | https://api.github.com/repos/mateuszrymar/gpx-analyzer | closed | Compress example gpx files | enhancement high priority | Compress all gpx files into gzip format.
Add a functionality to unpack gzip files.
Measure performance change. | 1.0 | Compress example gpx files - Compress all gpx files into gzip format.
Add a functionality to unpack gzip files.
Measure performance change. | priority | compress example gpx files compress all gpx files into gzip format add a functionality to unpack gzip files measure performance change | 1 |
257,258 | 8,135,026,445 | IssuesEvent | 2018-08-19 22:55:01 | NaomiProject/Naomi | https://api.github.com/repos/NaomiProject/Naomi | opened | Auth middleware for naomi and plugins | High priority Needs Milestone enhancement feature request question | **Is your feature request related to a problem? Please describe.**
There is no current way of allowing users to authenticate with 3rd party services very easy. And each plugin requires the developer to implement auth code. This is not very scalable!
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
I'd like to have one codebase to authenticate other services.
E.G. Allowing plugins to use these services w/o implementing auth code for each service in the plugin.
**Describe alternatives you've considered**
Implementing our own?
Firebase auth?
Still researching options. | 1.0 | Auth middleware for naomi and plugins - **Is your feature request related to a problem? Please describe.**
There is no current way of allowing users to authenticate with 3rd party services very easy. And each plugin requires the developer to implement auth code. This is not very scalable!
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
I'd like to have one codebase to authenticate other services.
E.G. Allowing plugins to use these services w/o implementing auth code for each service in the plugin.
**Describe alternatives you've considered**
Implementing our own?
Firebase auth?
Still researching options. | priority | auth middleware for naomi and plugins is your feature request related to a problem please describe there is no current way of allowing users to authenticate with party services very easy and each plugin requires the developer to implement auth code this is not very scalable describe the solution you d like a clear and concise description of what you want to happen i d like to have one codebase to authenticate other services e g allowing plugins to use these services w o implementing auth code for each service in the plugin describe alternatives you ve considered implementing our own firebase auth still researching options | 1 |
283,094 | 8,714,004,022 | IssuesEvent | 2018-12-07 05:51:08 | aowen87/TicketTester | https://api.github.com/repos/aowen87/TicketTester | closed | silo vs blueprint issue | bug likelihood medium priority reviewed severity high | bug in exception forwarding logic in blueprint is undermining silo files named ".root"
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 3106
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Immediate
Subject: silo vs blueprint issue
Assigned to: Cyrus Harrison
Category:
Target version: 2.13.2
Author: Cyrus Harrison
Start: 05/15/2018
Due date:
% Done: 0
Estimated time:
Created: 05/15/2018 08:00 pm
Updated: 05/22/2018 07:22 pm
Likelihood: 3 - Occasional
Severity: 5 - Very Serious
Found in version: 2.13.0
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
bug in exception forwarding logic in blueprint is undermining silo files named ".root"
Comments:
resovled
| 1.0 | silo vs blueprint issue - bug in exception forwarding logic in blueprint is undermining silo files named ".root"
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 3106
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Immediate
Subject: silo vs blueprint issue
Assigned to: Cyrus Harrison
Category:
Target version: 2.13.2
Author: Cyrus Harrison
Start: 05/15/2018
Due date:
% Done: 0
Estimated time:
Created: 05/15/2018 08:00 pm
Updated: 05/22/2018 07:22 pm
Likelihood: 3 - Occasional
Severity: 5 - Very Serious
Found in version: 2.13.0
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
bug in exception forwarding logic in blueprint is undermining silo files named ".root"
Comments:
resovled
| priority | silo vs blueprint issue bug in exception forwarding logic in blueprint is undermining silo files named root redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker bug priority immediate subject silo vs blueprint issue assigned to cyrus harrison category target version author cyrus harrison start due date done estimated time created pm updated pm likelihood occasional severity very serious found in version impact expected use os all support group any description bug in exception forwarding logic in blueprint is undermining silo files named root comments resovled | 1 |
181,709 | 6,663,480,769 | IssuesEvent | 2017-10-02 16:32:52 | zom/Zom-iOS | https://api.github.com/repos/zom/Zom-iOS | closed | Inbound group media messages show the link still | bug high-priority | The inbound media https link is displayed, and then the media is fetched, and displayed properly. Both show up in the group chat display, which is confusing.
| 1.0 | Inbound group media messages show the link still - The inbound media https link is displayed, and then the media is fetched, and displayed properly. Both show up in the group chat display, which is confusing.
| priority | inbound group media messages show the link still the inbound media https link is displayed and then the media is fetched and displayed properly both show up in the group chat display which is confusing | 1 |
217,976 | 7,329,614,972 | IssuesEvent | 2018-03-05 06:13:49 | wso2/product-ei | https://api.github.com/repos/wso2/product-ei | closed | Ciphertool is broken in WSO2 EI and EI as a BPS | 6.2.0 Priority/High | **Description:**
- When executing the cipher tool to encrypt passwords, on WSO2 EI from <EI_HOME>/bin directory, got an error as below.
- And also when executing the cipher tool to encrypt passwords, on WSO2 EI as a BPS Profile from <EI_HOME>/wso2/business-process/bin, got an error as below.
```
Exception in thread "main" org.wso2.ciphertool.exception.CipherToolException: File, cipher-standalone-config.properties does not exist.
at org.wso2.ciphertool.utils.Utils.setSystemProperties(Utils.java:247)
at org.wso2.ciphertool.CipherTool.initialize(CipherTool.java:93)
at org.wso2.ciphertool.CipherTool.main(CipherTool.java:52)
```
- This was reproduced with EI 6.0.0 and EI 6.1.1.
**Suggested Labels:**
Type/Bug
<!-- 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-->
**Affected Product Version:**
EI 6.0.0, EI 6.1.1
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | 1.0 | Ciphertool is broken in WSO2 EI and EI as a BPS - **Description:**
- When executing the cipher tool to encrypt passwords, on WSO2 EI from <EI_HOME>/bin directory, got an error as below.
- And also when executing the cipher tool to encrypt passwords, on WSO2 EI as a BPS Profile from <EI_HOME>/wso2/business-process/bin, got an error as below.
```
Exception in thread "main" org.wso2.ciphertool.exception.CipherToolException: File, cipher-standalone-config.properties does not exist.
at org.wso2.ciphertool.utils.Utils.setSystemProperties(Utils.java:247)
at org.wso2.ciphertool.CipherTool.initialize(CipherTool.java:93)
at org.wso2.ciphertool.CipherTool.main(CipherTool.java:52)
```
- This was reproduced with EI 6.0.0 and EI 6.1.1.
**Suggested Labels:**
Type/Bug
<!-- 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-->
**Affected Product Version:**
EI 6.0.0, EI 6.1.1
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | priority | ciphertool is broken in ei and ei as a bps description when executing the cipher tool to encrypt passwords on ei from bin directory got an error as below and also when executing the cipher tool to encrypt passwords on ei as a bps profile from business process bin got an error as below exception in thread main org ciphertool exception ciphertoolexception file cipher standalone config properties does not exist at org ciphertool utils utils setsystemproperties utils java at org ciphertool ciphertool initialize ciphertool java at org ciphertool ciphertool main ciphertool java this was reproduced with ei and ei suggested labels type bug affected product version ei ei related issues | 1 |
29,918 | 2,718,428,849 | IssuesEvent | 2015-04-12 09:16:43 | tomatocart/TomatoCart-v1 | https://api.github.com/repos/tomatocart/TomatoCart-v1 | opened | [Upgrade]SagePay Form payment module | Priority: High | I am currently using TomatoCart for my site. I have been informed by SagePay that the SagePay Form payment module I use needs upgrading to their new protocols.
Is there an update which incorporates this? After July the SagePay Form module will no longer be supported and will no longer work. | 1.0 | [Upgrade]SagePay Form payment module - I am currently using TomatoCart for my site. I have been informed by SagePay that the SagePay Form payment module I use needs upgrading to their new protocols.
Is there an update which incorporates this? After July the SagePay Form module will no longer be supported and will no longer work. | priority | sagepay form payment module i am currently using tomatocart for my site i have been informed by sagepay that the sagepay form payment module i use needs upgrading to their new protocols is there an update which incorporates this after july the sagepay form module will no longer be supported and will no longer work | 1 |
381,575 | 11,276,837,775 | IssuesEvent | 2020-01-15 00:34:59 | ShabadOS/desktop | https://api.github.com/repos/ShabadOS/desktop | closed | Overlay breaking | Priority: 3 High Status: Confirmed Type: Fix | Searching and loading the line fails to show up on overlay. Breaks overlay. Other shabads which work require refreshing the overlay page to work.
Potentially related to #303 or maybe has something to do with setting mainline and nextline to same id:
```
{"level":30,"time":1573940923220,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting Line ID to VVYJ","v":1}
{"level":30,"time":1573940923219,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting Shabad ID to 83K","v":1}
{"level":30,"time":1573940923221,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting mainLineId to VVYJ","v":1}
{"level":30,"time":1573940923222,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting nextLineId to VVYJ","v":1}
``` | 1.0 | Overlay breaking - Searching and loading the line fails to show up on overlay. Breaks overlay. Other shabads which work require refreshing the overlay page to work.
Potentially related to #303 or maybe has something to do with setting mainline and nextline to same id:
```
{"level":30,"time":1573940923220,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting Line ID to VVYJ","v":1}
{"level":30,"time":1573940923219,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting Shabad ID to 83K","v":1}
{"level":30,"time":1573940923221,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting mainLineId to VVYJ","v":1}
{"level":30,"time":1573940923222,"pid":6216,"hostname":"BhajneetX1Carbon","msg":"Setting nextLineId to VVYJ","v":1}
``` | priority | overlay breaking searching and loading the line fails to show up on overlay breaks overlay other shabads which work require refreshing the overlay page to work potentially related to or maybe has something to do with setting mainline and nextline to same id level time pid hostname msg setting line id to vvyj v level time pid hostname msg setting shabad id to v level time pid hostname msg setting mainlineid to vvyj v level time pid hostname msg setting nextlineid to vvyj v | 1 |
475,595 | 13,723,534,642 | IssuesEvent | 2020-10-03 09:48:58 | ahmedkaludi/pwa-for-wp | https://api.github.com/repos/ahmedkaludi/pwa-for-wp | closed | If the PWA Extension Manager is not active then the license key should not show | High Priority bug | Ref: https://secure.helpscout.net/conversation/1281255541/154177?folderId=2770545
If the PWA Extension Manager is not active then the license key should not be visible. The user wants this because any other person can not use the same code | 1.0 | If the PWA Extension Manager is not active then the license key should not show - Ref: https://secure.helpscout.net/conversation/1281255541/154177?folderId=2770545
If the PWA Extension Manager is not active then the license key should not be visible. The user wants this because any other person can not use the same code | priority | if the pwa extension manager is not active then the license key should not show ref if the pwa extension manager is not active then the license key should not be visible the user wants this because any other person can not use the same code | 1 |
226,403 | 7,518,890,489 | IssuesEvent | 2018-04-12 09:47:53 | WordImpress/Give | https://api.github.com/repos/WordImpress/Give | closed | feat(form): allow forms to be queried based on close status | 3-reported high-priority | ## Issue Overview
Occasionally, users want to have an archive of Give forms, but exclude those that are closed because they achieved their goal. We currently have `post_meta` called `_give_close_form_when_goal_achieved` which returns just `enabled|disabled`, but when the goal is actually achieved and the form is closed, there's no way to query and exclude those forms. Adding `_give_form_is_closed` with `true|false` would benefit these users greatly. | 1.0 | feat(form): allow forms to be queried based on close status - ## Issue Overview
Occasionally, users want to have an archive of Give forms, but exclude those that are closed because they achieved their goal. We currently have `post_meta` called `_give_close_form_when_goal_achieved` which returns just `enabled|disabled`, but when the goal is actually achieved and the form is closed, there's no way to query and exclude those forms. Adding `_give_form_is_closed` with `true|false` would benefit these users greatly. | priority | feat form allow forms to be queried based on close status issue overview occasionally users want to have an archive of give forms but exclude those that are closed because they achieved their goal we currently have post meta called give close form when goal achieved which returns just enabled disabled but when the goal is actually achieved and the form is closed there s no way to query and exclude those forms adding give form is closed with true false would benefit these users greatly | 1 |
717,656 | 24,685,691,815 | IssuesEvent | 2022-10-19 03:08:07 | apache/dolphinscheduler | https://api.github.com/repos/apache/dolphinscheduler | closed | [Bug][Style] Spotless sometimes fails to detect and block wildcard imports | bug CI&CD priority:high | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
* Spotless sometimes fails to detect and block wildcard imports, see: https://github.com/apache/dolphinscheduler/pull/12076#discussion_r996636015
### What you expected to happen
* Spotless should be able to detect and block wildcard imports in code.
### How to reproduce
* WIP, will update this section later.
### Anything else
_No response_
### Version
dev
### Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| 1.0 | [Bug][Style] Spotless sometimes fails to detect and block wildcard imports - ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
* Spotless sometimes fails to detect and block wildcard imports, see: https://github.com/apache/dolphinscheduler/pull/12076#discussion_r996636015
### What you expected to happen
* Spotless should be able to detect and block wildcard imports in code.
### How to reproduce
* WIP, will update this section later.
### Anything else
_No response_
### Version
dev
### Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| priority | spotless sometimes fails to detect and block wildcard imports search before asking i had searched in the and found no similar issues what happened spotless sometimes fails to detect and block wildcard imports see what you expected to happen spotless should be able to detect and block wildcard imports in code how to reproduce wip will update this section later anything else no response version dev are you willing to submit pr yes i am willing to submit a pr code of conduct i agree to follow this project s | 1 |
738,552 | 25,565,953,552 | IssuesEvent | 2022-11-30 14:19:09 | fractal-analytics-platform/fractal-server | https://api.github.com/repos/fractal-analytics-platform/fractal-server | closed | Reinstate `WORKER_INIT` argument for workflow submission | High Priority | When running the cellpose-segmentation task, and after fixing #310, it still fails with
```python traceback
$ cat 4_par_20200812-CardiomyocyteDifferentiation14-Cycle1_mip_zarr_B_03_0_.err
Matplotlib created a temporary config/cache directory at /tmp/matplotlib-mlqq0ii4 because the default path (/data/homes/fractal/.config/matplotlib) is not a writable directory; it is highly recommended to set the MPLCONFIGDIR environment variable to a writable directory, in particular to speed up the import of Matplotlib and to better support multiprocessing.
Traceback (most recent call last):
File "/net/nfs4/pelkmanslab-fileserver-common/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/fractal_tasks_core/cellpose_segmentation.py", line 35, in <module>
from cellpose import models
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/models.py", line 11, in <module>
from . import transforms, dynamics, utils, plot
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/transforms.py", line 9, in <module>
from . import dynamics, utils
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/dynamics.py", line 332, in <module>
def map_coordinates(I, yc, xc, Y):
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/decorators.py", line 212, in wrapper
disp.enable_caching()
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/dispatcher.py", line 863, in enable_caching
self._cache = FunctionCache(self.py_func)
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/caching.py", line 601, in __init__
self._impl = self._impl_class(py_func)
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/caching.py", line 337, in __init__
raise RuntimeError("cannot cache function %r: no locator available "
RuntimeError: cannot cache function 'map_coordinates': no locator available for file '/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/dynamics.py'
``` | 1.0 | Reinstate `WORKER_INIT` argument for workflow submission - When running the cellpose-segmentation task, and after fixing #310, it still fails with
```python traceback
$ cat 4_par_20200812-CardiomyocyteDifferentiation14-Cycle1_mip_zarr_B_03_0_.err
Matplotlib created a temporary config/cache directory at /tmp/matplotlib-mlqq0ii4 because the default path (/data/homes/fractal/.config/matplotlib) is not a writable directory; it is highly recommended to set the MPLCONFIGDIR environment variable to a writable directory, in particular to speed up the import of Matplotlib and to better support multiprocessing.
Traceback (most recent call last):
File "/net/nfs4/pelkmanslab-fileserver-common/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/fractal_tasks_core/cellpose_segmentation.py", line 35, in <module>
from cellpose import models
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/models.py", line 11, in <module>
from . import transforms, dynamics, utils, plot
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/transforms.py", line 9, in <module>
from . import dynamics, utils
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/dynamics.py", line 332, in <module>
def map_coordinates(I, yc, xc, Y):
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/decorators.py", line 212, in wrapper
disp.enable_caching()
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/dispatcher.py", line 863, in enable_caching
self._cache = FunctionCache(self.py_func)
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/caching.py", line 601, in __init__
self._impl = self._impl_class(py_func)
File "/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/numba/core/caching.py", line 337, in __init__
raise RuntimeError("cannot cache function %r: no locator available "
RuntimeError: cannot cache function 'map_coordinates': no locator available for file '/data/homes/fractal/fractal-demos/examples-v1/server/FRACTAL_ROOT/.fractal/fractal-tasks-core0.4.6/venv/lib/python3.8/site-packages/cellpose/dynamics.py'
``` | priority | reinstate worker init argument for workflow submission when running the cellpose segmentation task and after fixing it still fails with python traceback cat par mip zarr b err matplotlib created a temporary config cache directory at tmp matplotlib because the default path data homes fractal config matplotlib is not a writable directory it is highly recommended to set the mplconfigdir environment variable to a writable directory in particular to speed up the import of matplotlib and to better support multiprocessing traceback most recent call last file net pelkmanslab fileserver common data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages fractal tasks core cellpose segmentation py line in from cellpose import models file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages cellpose models py line in from import transforms dynamics utils plot file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages cellpose transforms py line in from import dynamics utils file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages cellpose dynamics py line in def map coordinates i yc xc y file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages numba core decorators py line in wrapper disp enable caching file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages numba core dispatcher py line in enable caching self cache functioncache self py func file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages numba core caching py line in init self impl self impl class py func file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages numba core caching py line in init raise runtimeerror cannot cache function r no locator available runtimeerror cannot cache function map coordinates no locator available for file data homes fractal fractal demos examples server fractal root fractal fractal tasks venv lib site packages cellpose dynamics py | 1 |
223,541 | 7,458,230,290 | IssuesEvent | 2018-03-30 09:17:42 | ppy/osu-web | https://api.github.com/repos/ppy/osu-web | closed | Badge placement for new user profiles | high priority required for live user profile | Seeing as how there isn't any badges on the user profiles in the new website, here are some suggestions.



| 1.0 | Badge placement for new user profiles - Seeing as how there isn't any badges on the user profiles in the new website, here are some suggestions.



| priority | badge placement for new user profiles seeing as how there isn t any badges on the user profiles in the new website here are some suggestions | 1 |
56,686 | 3,081,038,685 | IssuesEvent | 2015-08-22 09:20:18 | opencaching/okapi | https://api.github.com/repos/opencaching/okapi | closed | Exception handling problem during update | bug Priority-High | If an exception occurs during the OKAPI update process, PHP will produce the warning 'Cannot modify header information - headers already sent ...', which will result in the following error during exception handling (on the new OC.de test server running PHP 5.4):
===== ERROR MESSAGE =====
Uncaught exception 'ErrorException' with message 'Cannot modify header information - headers already sent by (output started at /var/www/centos7/code/htdocs/okapi/views/update.php:57)' in /var/www/centos7/code/htdocs/okapi/core.php:99
Stack trace:
#0 [internal function]: okapi\OkapiErrorHandler::handle(2, 'Cannot modify h...', '/var/www/centos...', 99, Array)
#1 /var/www/centos7/code/htdocs/okapi/core.php(99): header('HTTP/1.0 400 Ba...')
#2 [internal function]: okapi\OkapiExceptionHandler::handle(Object(okapi\InvalidParam))
#3 {main}
thrown
File: /var/www/centos7/code/htdocs/okapi/core.php
Line: 99
--- OKAPI method called ---
/okapi/update
--- OKAPI version ---
1105 (69bb1a7be72b7a52621532626e5c6813fb26e354) | 1.0 | Exception handling problem during update - If an exception occurs during the OKAPI update process, PHP will produce the warning 'Cannot modify header information - headers already sent ...', which will result in the following error during exception handling (on the new OC.de test server running PHP 5.4):
===== ERROR MESSAGE =====
Uncaught exception 'ErrorException' with message 'Cannot modify header information - headers already sent by (output started at /var/www/centos7/code/htdocs/okapi/views/update.php:57)' in /var/www/centos7/code/htdocs/okapi/core.php:99
Stack trace:
#0 [internal function]: okapi\OkapiErrorHandler::handle(2, 'Cannot modify h...', '/var/www/centos...', 99, Array)
#1 /var/www/centos7/code/htdocs/okapi/core.php(99): header('HTTP/1.0 400 Ba...')
#2 [internal function]: okapi\OkapiExceptionHandler::handle(Object(okapi\InvalidParam))
#3 {main}
thrown
File: /var/www/centos7/code/htdocs/okapi/core.php
Line: 99
--- OKAPI method called ---
/okapi/update
--- OKAPI version ---
1105 (69bb1a7be72b7a52621532626e5c6813fb26e354) | priority | exception handling problem during update if an exception occurs during the okapi update process php will produce the warning cannot modify header information headers already sent which will result in the following error during exception handling on the new oc de test server running php error message uncaught exception errorexception with message cannot modify header information headers already sent by output started at var www code htdocs okapi views update php in var www code htdocs okapi core php stack trace okapi okapierrorhandler handle cannot modify h var www centos array var www code htdocs okapi core php header http ba okapi okapiexceptionhandler handle object okapi invalidparam main thrown file var www code htdocs okapi core php line okapi method called okapi update okapi version | 1 |
59,059 | 3,102,645,942 | IssuesEvent | 2015-08-31 01:34:41 | Fortune-Transportation/fortune-front-end | https://api.github.com/repos/Fortune-Transportation/fortune-front-end | opened | As a developer I want to testing to be automated | high priority story | Testing should be fully automated and included as an npm script. | 1.0 | As a developer I want to testing to be automated - Testing should be fully automated and included as an npm script. | priority | as a developer i want to testing to be automated testing should be fully automated and included as an npm script | 1 |
715,915 | 24,615,322,313 | IssuesEvent | 2022-10-15 08:24:20 | AY2223S1-CS2113T-W11-1/tp | https://api.github.com/repos/AY2223S1-CS2113T-W11-1/tp | closed | expenses are not sorted automatically when new expenses are added | type.Enhancement priority.High | Extension of "As a user, I can sort my expenses so I can organise my spendings."
| 1.0 | expenses are not sorted automatically when new expenses are added - Extension of "As a user, I can sort my expenses so I can organise my spendings."
| priority | expenses are not sorted automatically when new expenses are added extension of as a user i can sort my expenses so i can organise my spendings | 1 |
812,458 | 30,336,178,629 | IssuesEvent | 2023-07-11 09:42:43 | bodleian/archiox-mirador-plugin | https://api.github.com/repos/bodleian/archiox-mirador-plugin | closed | Light direction doesn't work in Safari Mobile | type: bug status: ready for review priority: high | When looking at https://iiif.bodleian.ox.ac.uk/iiif/mirador/?iiif-content=https://iiif.bodleian.ox.ac.uk/iiif/manifest/1fc3f35d-bbb5-4524-8fbe-a5bcb5468be2.json on an iPhone, the light direction control is unresponsive in Safari. | 1.0 | Light direction doesn't work in Safari Mobile - When looking at https://iiif.bodleian.ox.ac.uk/iiif/mirador/?iiif-content=https://iiif.bodleian.ox.ac.uk/iiif/manifest/1fc3f35d-bbb5-4524-8fbe-a5bcb5468be2.json on an iPhone, the light direction control is unresponsive in Safari. | priority | light direction doesn t work in safari mobile when looking at on an iphone the light direction control is unresponsive in safari | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.