Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
957
labels
stringlengths
4
795
body
stringlengths
1
259k
index
stringclasses
12 values
text_combine
stringlengths
96
259k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
55,355
3,073,028,968
IssuesEvent
2015-08-19 19:52:20
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
compatibility with Jelly Bean
bug imported Priority-Medium wontfix
_From [vladimir...@qnective.com](https://code.google.com/u/103582861998926209227/) on August 09, 2012 05:00:11_ pasting whole email conversation related to this issue. Please see bellow. I tried one more thing which suggested Renas. I iterated over all objects returned by solo.getViews() and I checked all ImageView, ImageButton and Button objects but I did not find the one which I'm looking for. The button which I would like to find is normally visible on screen and it is possible to click on it [that invokes other action]. Again please let me stress the fact that the same code worked on my device before I did upgrade from 4.0 to 4.1. After that upgrade it does not work any longer. I tried that code with robotium 3.2, 3.3 and 3.4 with same result. \---------------------------- Email communication 1) If that is the case then please file an issue on it. 2) I chose an incorrect word in my first answer. There is no need for them to be shown but they have to be there in the display space for the getCurrent methods to return the objects. /Renas On Aug 9, 1:19 pm, Vladimir Marek \<vladimir.ma...@qnective.com> wrote: \> @1: hmmm the screen looks the same for all Android versions and I'm sure \> the code worked before upgrade to Jelly bean on the same dev ice where \> it does not work now \> \> @2: now I'm confused \> originally you wrote that "getCurrentImages() only returns the image \> views that are shown on the display at a given time." \> let say I have an object which is invisible - should getCurrentImages() \> return it or not? \> According to your answer that it should return views which are shown I \> would expect that invisible object will not be returned but apparently \> it is \> Maybe I misunderstood it. \> \> Vladimir \> \> On 08/09/2012 01:08 PM, Renas Reda wrote: \> \> \> \> \> \> \> \>> 1) I think it can have something to do with the display size, \>> resolution and how many of the objects that are there. \> \>> 2) Just because you can not see them do not mean that they are not \>> there. Many times a view is set to be invisible or gone and then you \>> will not see it however the object is still there. \> \>> /Renas \> \>> On Aug 9, 1:01 pm, Vladimir Marek \<vladimir.ma...@qnective.com> wrote: \>>> OK, I can try that but have two questions \> \>>> 1) Why the same code work for Android 2.3.* and 4.0? \>>> 2) Why the result from solo.getCurrentImageViews() contains object which \>>> is NOT visible on the screen? [it is hidden there and can be shown by \>>> some action] \> \>>> Vladimir \> \>>> On 08/09/2012 12:56 PM, Renas Reda wrote: \> \>>>> Can you see all of them fully on the display? Because \>>>> getCurrentImages() only returns the image views that are shown on the \>>>> display at a given time. If you want everything back you can use \>>>> solo.getViews() and then filter out the ImageView objects from the \>>>> ArrayList it returns. \>>>> /Renas \>>>> On Aug 9, 12:53 pm, Vladimir Marek \<vladimir.ma...@qnective.com> \>>>> wrote: \>>>>> Hi, \>>>>> the "solo.getCurrentImageViews()" returns less objects than I would expect. \>>>>> Vladimir \>>>>> On 08/09/2012 12:32 PM, Renas Reda wrote: \>>>>>> Hi, \>>>>>> Is your issue due to this: solo.getCurrentActivity().getResources()? \>>>>>> Or is it that solo.getCurrentImageViews() returns less items then \>>>>>> expected? \>>>>>> If it is getResources() that you have an issue with then it is a bug \>>>>>> in the Android platform. The only thing Robotium does in your case is \>>>>>> to give you the current activity. The getResources() method is part of \>>>>>> the Activity API. \>>>>>> /Renas \>>>>>> On 9 Aug, 11:51, Vladimir Marek \<vladimir.ma...@qnective.com> wrote: \>>>>>>> Hi Naveed, \>>>>>>> did you have a time to check the code again? \>>>>>>> Today I tried it with robotium 3.4.1 and issue still persists. \>>>>>>> I would not expect an issue with array list but as you mentioned \>>>>>>> something wrong with getting all resources from current activity. \>>>>>>> Thanks, \>>>>>>> Vladimir \>>>>>>> On 08/04/2012 05:45 AM, naveed wrote: \>>>>>>>> Hi, \>>>>>>>> I don't think it is issue with Arraylist, it seems like issue with \>>>>>>>> Resources or something else, because I am using ArryList & its working \>>>>>>>> fine in my case. \>>>>>>>> I'll check with this code and get back to you. \>>>>>>>> On Friday, August 3, 2012 7:26:54 PM UTC+5, Vladimir wrote: \>>>>>>>> Hello, \>>>>>>>> I would like to ask you if robotium 3.3 fully supports Android \>>>>>>>> jelly bean. \>>>>>>>> I am facing following problem. \>>>>>>>> The code bellow returns all image view object on active screen but \>>>>>>>> for \>>>>>>>> jelly bean OS the array list is different then for ICS OS ... For \>>>>>>>> Jelly \>>>>>>>> bean there is missing one image button. \>>>>>>>> ArrayList<ImageView> img_view = solo.getCurrentImageViews(); \>>>>>>>> Resources res = solo.getCurrentActivity().getResources(); \>>>>>>>> String name; \>>>>>>>> for (int i = 0; i \< img_view.size(); i++) { \>>>>>>>> if (img_view.get(i).getId() != -1) { \>>>>>>>> name = res.getResourceEntryName(img_view.get(i).getId()); \>>>>>>>> if (name.equals(SHOW_ADD_BUT)) { \>>>>>>>> showAddBut = img_view.get(i); \>>>>>>>> } \>>>>>>>> if (name.equals(ADD_BUT)) { \>>>>>>>> addBut = img_view.get(i); \>>>>>>>> } \>>>>>>>> } \>>>>>>>> } \>>>>>>>> Any idea what could be wrong? \>>>>>>>> I'm testing given apk file. \>>>>>>>> I'm using robotium 3.3 and Android 2.3.3 from Android-10 platform \>>>>>>>> from \>>>>>>>> SDK [both configured in eclipse]. \>>>>>>>> Thank you for any hints! \>>>>>>>> Vladimir _Original issue: http://code.google.com/p/robotium/issues/detail?id=304_
1.0
compatibility with Jelly Bean - _From [vladimir...@qnective.com](https://code.google.com/u/103582861998926209227/) on August 09, 2012 05:00:11_ pasting whole email conversation related to this issue. Please see bellow. I tried one more thing which suggested Renas. I iterated over all objects returned by solo.getViews() and I checked all ImageView, ImageButton and Button objects but I did not find the one which I'm looking for. The button which I would like to find is normally visible on screen and it is possible to click on it [that invokes other action]. Again please let me stress the fact that the same code worked on my device before I did upgrade from 4.0 to 4.1. After that upgrade it does not work any longer. I tried that code with robotium 3.2, 3.3 and 3.4 with same result. \---------------------------- Email communication 1) If that is the case then please file an issue on it. 2) I chose an incorrect word in my first answer. There is no need for them to be shown but they have to be there in the display space for the getCurrent methods to return the objects. /Renas On Aug 9, 1:19 pm, Vladimir Marek \<vladimir.ma...@qnective.com> wrote: \> @1: hmmm the screen looks the same for all Android versions and I'm sure \> the code worked before upgrade to Jelly bean on the same dev ice where \> it does not work now \> \> @2: now I'm confused \> originally you wrote that "getCurrentImages() only returns the image \> views that are shown on the display at a given time." \> let say I have an object which is invisible - should getCurrentImages() \> return it or not? \> According to your answer that it should return views which are shown I \> would expect that invisible object will not be returned but apparently \> it is \> Maybe I misunderstood it. \> \> Vladimir \> \> On 08/09/2012 01:08 PM, Renas Reda wrote: \> \> \> \> \> \> \> \>> 1) I think it can have something to do with the display size, \>> resolution and how many of the objects that are there. \> \>> 2) Just because you can not see them do not mean that they are not \>> there. Many times a view is set to be invisible or gone and then you \>> will not see it however the object is still there. \> \>> /Renas \> \>> On Aug 9, 1:01 pm, Vladimir Marek \<vladimir.ma...@qnective.com> wrote: \>>> OK, I can try that but have two questions \> \>>> 1) Why the same code work for Android 2.3.* and 4.0? \>>> 2) Why the result from solo.getCurrentImageViews() contains object which \>>> is NOT visible on the screen? [it is hidden there and can be shown by \>>> some action] \> \>>> Vladimir \> \>>> On 08/09/2012 12:56 PM, Renas Reda wrote: \> \>>>> Can you see all of them fully on the display? Because \>>>> getCurrentImages() only returns the image views that are shown on the \>>>> display at a given time. If you want everything back you can use \>>>> solo.getViews() and then filter out the ImageView objects from the \>>>> ArrayList it returns. \>>>> /Renas \>>>> On Aug 9, 12:53 pm, Vladimir Marek \<vladimir.ma...@qnective.com> \>>>> wrote: \>>>>> Hi, \>>>>> the "solo.getCurrentImageViews()" returns less objects than I would expect. \>>>>> Vladimir \>>>>> On 08/09/2012 12:32 PM, Renas Reda wrote: \>>>>>> Hi, \>>>>>> Is your issue due to this: solo.getCurrentActivity().getResources()? \>>>>>> Or is it that solo.getCurrentImageViews() returns less items then \>>>>>> expected? \>>>>>> If it is getResources() that you have an issue with then it is a bug \>>>>>> in the Android platform. The only thing Robotium does in your case is \>>>>>> to give you the current activity. The getResources() method is part of \>>>>>> the Activity API. \>>>>>> /Renas \>>>>>> On 9 Aug, 11:51, Vladimir Marek \<vladimir.ma...@qnective.com> wrote: \>>>>>>> Hi Naveed, \>>>>>>> did you have a time to check the code again? \>>>>>>> Today I tried it with robotium 3.4.1 and issue still persists. \>>>>>>> I would not expect an issue with array list but as you mentioned \>>>>>>> something wrong with getting all resources from current activity. \>>>>>>> Thanks, \>>>>>>> Vladimir \>>>>>>> On 08/04/2012 05:45 AM, naveed wrote: \>>>>>>>> Hi, \>>>>>>>> I don't think it is issue with Arraylist, it seems like issue with \>>>>>>>> Resources or something else, because I am using ArryList & its working \>>>>>>>> fine in my case. \>>>>>>>> I'll check with this code and get back to you. \>>>>>>>> On Friday, August 3, 2012 7:26:54 PM UTC+5, Vladimir wrote: \>>>>>>>> Hello, \>>>>>>>> I would like to ask you if robotium 3.3 fully supports Android \>>>>>>>> jelly bean. \>>>>>>>> I am facing following problem. \>>>>>>>> The code bellow returns all image view object on active screen but \>>>>>>>> for \>>>>>>>> jelly bean OS the array list is different then for ICS OS ... For \>>>>>>>> Jelly \>>>>>>>> bean there is missing one image button. \>>>>>>>> ArrayList<ImageView> img_view = solo.getCurrentImageViews(); \>>>>>>>> Resources res = solo.getCurrentActivity().getResources(); \>>>>>>>> String name; \>>>>>>>> for (int i = 0; i \< img_view.size(); i++) { \>>>>>>>> if (img_view.get(i).getId() != -1) { \>>>>>>>> name = res.getResourceEntryName(img_view.get(i).getId()); \>>>>>>>> if (name.equals(SHOW_ADD_BUT)) { \>>>>>>>> showAddBut = img_view.get(i); \>>>>>>>> } \>>>>>>>> if (name.equals(ADD_BUT)) { \>>>>>>>> addBut = img_view.get(i); \>>>>>>>> } \>>>>>>>> } \>>>>>>>> } \>>>>>>>> Any idea what could be wrong? \>>>>>>>> I'm testing given apk file. \>>>>>>>> I'm using robotium 3.3 and Android 2.3.3 from Android-10 platform \>>>>>>>> from \>>>>>>>> SDK [both configured in eclipse]. \>>>>>>>> Thank you for any hints! \>>>>>>>> Vladimir _Original issue: http://code.google.com/p/robotium/issues/detail?id=304_
priority
compatibility with jelly bean from on august pasting whole email conversation related to this issue please see bellow i tried one more thing which suggested renas i iterated over all objects returned by solo getviews and i checked all imageview imagebutton and button objects but i did not find the one which i m looking for the button which i would like to find is normally visible on screen and it is possible to click on it again please let me stress the fact that the same code worked on my device before i did upgrade from to after that upgrade it does not work any longer i tried that code with robotium and with same result email communication if that is the case then please file an issue on it i chose an incorrect word in my first answer there is no need for them to be shown but they have to be there in the display space for the getcurrent methods to return the objects renas on aug pm vladimir marek wrote hmmm the screen looks the same for all android versions and i m sure the code worked before upgrade to jelly bean on the same dev ice where it does not work now now i m confused originally you wrote that getcurrentimages only returns the image views that are shown on the display at a given time let say i have an object which is invisible should getcurrentimages return it or not according to your answer that it should return views which are shown i would expect that invisible object will not be returned but apparently it is maybe i misunderstood it vladimir on pm renas reda wrote i think it can have something to do with the display size resolution and how many of the objects that are there just because you can not see them do not mean that they are not there many times a view is set to be invisible or gone and then you will not see it however the object is still there renas on aug pm vladimir marek wrote ok i can try that but have two questions why the same code work for android and why the result from solo getcurrentimageviews contains object which is not visible on the screen it is hidden there and can be shown by some action vladimir on pm renas reda wrote can you see all of them fully on the display because getcurrentimages only returns the image views that are shown on the display at a given time if you want everything back you can use solo getviews and then filter out the imageview objects from the arraylist it returns renas on aug pm vladimir marek wrote hi the solo getcurrentimageviews returns less objects than i would expect vladimir on pm renas reda wrote hi is your issue due to this solo getcurrentactivity getresources or is it that solo getcurrentimageviews returns less items then expected if it is getresources that you have an issue with then it is a bug in the android platform the only thing robotium does in your case is to give you the current activity the getresources method is part of the activity api renas on aug vladimir marek wrote hi naveed did you have a time to check the code again today i tried it with robotium and issue still persists i would not expect an issue with array list but as you mentioned something wrong with getting all resources from current activity thanks vladimir on am naveed wrote hi i don t think it is issue with arraylist it seems like issue with resources or something else because i am using arrylist its working fine in my case i ll check with this code and get back to you on friday august pm utc vladimir wrote hello i would like to ask you if robotium fully supports android jelly bean i am facing following problem the code bellow returns all image view object on active screen but for jelly bean os the array list is different then for ics os for jelly bean there is missing one image button arraylist img view solo getcurrentimageviews resources res solo getcurrentactivity getresources string name for int i i img view size i if img view get i getid name res getresourceentryname img view get i getid if name equals show add but showaddbut img view get i if name equals add but addbut img view get i any idea what could be wrong i m testing given apk file i m using robotium and android from android platform from sdk thank you for any hints vladimir original issue
1
55,454
3,073,451,613
IssuesEvent
2015-08-19 22:02:31
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
Views selection
bug imported Priority-Medium
_From [G.Rjab...@gmail.com](https://code.google.com/u/114613923384070765920/) on December 29, 2012 03:04:01_ It will be awesome to have possibility get from parent view ArrayList of any android widget types not only textViews. public ArrayList<android.widget.TextView> getCurrentTextViews(android.view.View parent) I mean methods: public ArrayList<android.widget.ToggleButton> getCurrentToggleButtons() public ArrayList<android.widget.CheckBox> getCurrentCheckBoxes() public ArrayList<android.widget.ImageButton> getCurrentImageButtons() ...and maybe others _Original issue: http://code.google.com/p/robotium/issues/detail?id=372_
1.0
Views selection - _From [G.Rjab...@gmail.com](https://code.google.com/u/114613923384070765920/) on December 29, 2012 03:04:01_ It will be awesome to have possibility get from parent view ArrayList of any android widget types not only textViews. public ArrayList<android.widget.TextView> getCurrentTextViews(android.view.View parent) I mean methods: public ArrayList<android.widget.ToggleButton> getCurrentToggleButtons() public ArrayList<android.widget.CheckBox> getCurrentCheckBoxes() public ArrayList<android.widget.ImageButton> getCurrentImageButtons() ...and maybe others _Original issue: http://code.google.com/p/robotium/issues/detail?id=372_
priority
views selection from on december it will be awesome to have possibility get from parent view arraylist of any android widget types not only textviews public arraylist getcurrenttextviews android view view parent i mean methods public arraylist getcurrenttogglebuttons public arraylist getcurrentcheckboxes public arraylist getcurrentimagebuttons and maybe others original issue
1
420,086
12,233,099,790
IssuesEvent
2020-05-04 10:57:52
luna/ide
https://api.github.com/repos/luna/ide
closed
PageUp/PageDown does not work as expected on short text in Text Editor.
Category: IDE Change: Non-Breaking Priority: Medium Type: Bug
<!-- Please ensure that you are using the latest version of Enso IDE before reporting the bug! It may have been fixed since. --> ### General Summary <!-- - Please include a high-level description of your bug here. --> When PageUp/PageDown is used on a short text it should go to the beginning/end of the text not change the view. ### Steps to Reproduce <!-- Please list the reproduction steps for your bug. --> open the text editor write `def foo` press page up ### Expected Result <!-- - A description of the results you expected from the reproduction steps. --> cursor at the beginning of the text ### Actual Result <!-- - A description of what actually happens when you perform these steps. - Please include any error output if relevant. --> clean screen ### Enso Version <!-- - Please include the version of Enso IDE you are using here. --> core : 2.0.0-alpha.0 build : 6d3fe64 electron : 8.1.1 chrome : 80.0.3987.141
1.0
PageUp/PageDown does not work as expected on short text in Text Editor. - <!-- Please ensure that you are using the latest version of Enso IDE before reporting the bug! It may have been fixed since. --> ### General Summary <!-- - Please include a high-level description of your bug here. --> When PageUp/PageDown is used on a short text it should go to the beginning/end of the text not change the view. ### Steps to Reproduce <!-- Please list the reproduction steps for your bug. --> open the text editor write `def foo` press page up ### Expected Result <!-- - A description of the results you expected from the reproduction steps. --> cursor at the beginning of the text ### Actual Result <!-- - A description of what actually happens when you perform these steps. - Please include any error output if relevant. --> clean screen ### Enso Version <!-- - Please include the version of Enso IDE you are using here. --> core : 2.0.0-alpha.0 build : 6d3fe64 electron : 8.1.1 chrome : 80.0.3987.141
priority
pageup pagedown does not work as expected on short text in text editor please ensure that you are using the latest version of enso ide before reporting the bug it may have been fixed since general summary please include a high level description of your bug here when pageup pagedown is used on a short text it should go to the beginning end of the text not change the view steps to reproduce please list the reproduction steps for your bug open the text editor write def foo press page up expected result a description of the results you expected from the reproduction steps cursor at the beginning of the text actual result a description of what actually happens when you perform these steps please include any error output if relevant clean screen enso version please include the version of enso ide you are using here core alpha build electron chrome
1
515,979
14,973,325,776
IssuesEvent
2021-01-28 00:48:53
HabitRPG/habitica-ios
https://api.github.com/repos/HabitRPG/habitica-ios
opened
Check in reward modal not showing when you get an item
Help wanted Priority: medium Type: Bug
The modal shouldnt show when you dont get an item, just a toast. But when you do get an actual item reward, we want the modal to show. Not sure if this is already implemented and just not showing correctly, or if it needs updated to show properly. There are designs for it, if its the latter.
1.0
Check in reward modal not showing when you get an item - The modal shouldnt show when you dont get an item, just a toast. But when you do get an actual item reward, we want the modal to show. Not sure if this is already implemented and just not showing correctly, or if it needs updated to show properly. There are designs for it, if its the latter.
priority
check in reward modal not showing when you get an item the modal shouldnt show when you dont get an item just a toast but when you do get an actual item reward we want the modal to show not sure if this is already implemented and just not showing correctly or if it needs updated to show properly there are designs for it if its the latter
1
499,090
14,440,080,862
IssuesEvent
2020-12-07 15:09:00
geosolutions-it/austrocontrol-C125
https://api.github.com/repos/geosolutions-it/austrocontrol-C125
closed
Embedded is missing
Accepted C125-2020-AUSTROCONTROL-Map2Imp Priority: Medium
The embedded.html file is missing in the MS project so it is not working. ![image.png](https://images.zenhubusercontent.com/5c9ca89d6607b6793c66ec35/5f58a251-5621-4af0-857b-9acf1175c9bf) ![image.png](https://images.zenhubusercontent.com/5c9ca89d6607b6793c66ec35/59171ca4-04af-4a54-bcfe-7191c0d98a4e) Below a GIF that illustrates how to reprodice the issue: ![embed](https://user-images.githubusercontent.com/1280027/101057700-a1bace80-358c-11eb-9604-88000aae3a42.gif)
1.0
Embedded is missing - The embedded.html file is missing in the MS project so it is not working. ![image.png](https://images.zenhubusercontent.com/5c9ca89d6607b6793c66ec35/5f58a251-5621-4af0-857b-9acf1175c9bf) ![image.png](https://images.zenhubusercontent.com/5c9ca89d6607b6793c66ec35/59171ca4-04af-4a54-bcfe-7191c0d98a4e) Below a GIF that illustrates how to reprodice the issue: ![embed](https://user-images.githubusercontent.com/1280027/101057700-a1bace80-358c-11eb-9604-88000aae3a42.gif)
priority
embedded is missing the embedded html file is missing in the ms project so it is not working below a gif that illustrates how to reprodice the issue
1
748,372
26,119,784,498
IssuesEvent
2022-12-28 11:08:53
trimble-oss/modus-web-components
https://api.github.com/repos/trimble-oss/modus-web-components
closed
DeprecationWarning: Default PostCSS plugins are deprecated.
2 up-for-grabs priority:high priority:medium
Saw this in the CLI: > DeprecationWarning: Default PostCSS plugins are deprecated. When switching to '@storybook/addon-postcss', you will need to add your own plugins, such as 'postcss-flexbugs-fixes' and 'autoprefixer'. See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-default-postcss-plugins for details.
2.0
DeprecationWarning: Default PostCSS plugins are deprecated. - Saw this in the CLI: > DeprecationWarning: Default PostCSS plugins are deprecated. When switching to '@storybook/addon-postcss', you will need to add your own plugins, such as 'postcss-flexbugs-fixes' and 'autoprefixer'. See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-default-postcss-plugins for details.
priority
deprecationwarning default postcss plugins are deprecated saw this in the cli deprecationwarning default postcss plugins are deprecated when switching to storybook addon postcss you will need to add your own plugins such as postcss flexbugs fixes and autoprefixer see for details
1
728,279
25,073,731,402
IssuesEvent
2022-11-07 14:06:00
AY2223S1-CS2103T-T10-3/tp
https://api.github.com/repos/AY2223S1-CS2103T-T10-3/tp
closed
As a student with OCD, I want to sort the internships lexicographically
type.Story priority.Medium
... so that I can have a more aesthetically pleasing list of internship applications
1.0
As a student with OCD, I want to sort the internships lexicographically - ... so that I can have a more aesthetically pleasing list of internship applications
priority
as a student with ocd i want to sort the internships lexicographically so that i can have a more aesthetically pleasing list of internship applications
1
280,514
8,683,310,738
IssuesEvent
2018-12-02 17:00:47
ericyuegu/whaddya-havin
https://api.github.com/repos/ericyuegu/whaddya-havin
closed
Meal Titling
medium priority
As a user, I want to be able to create titles for each of my meals so I can search for different tiles and label my food.
1.0
Meal Titling - As a user, I want to be able to create titles for each of my meals so I can search for different tiles and label my food.
priority
meal titling as a user i want to be able to create titles for each of my meals so i can search for different tiles and label my food
1
188,527
6,777,220,171
IssuesEvent
2017-10-27 21:08:26
Cyberjusticelab/JusticeAI
https://api.github.com/repos/Cyberjusticelab/JusticeAI
closed
Evaluate ML requirements
PO Input Needed Points (8) Priority (High) Risk (Medium)
*Description* As a CJL administrator, I would like to know the computing resources required for Machine learning (Research-oriented task) *Scope of Work* - [ ] Evaluate unsupervised learning algorithms (Gaussian Mixture, K-Means training/prediction times for 300*45000 (estimated facts) inputs into 250 clusters (estimated fact types) - [ ] Evaluate unsupervised learning algorithms training times for clustering 250*45000 (estimated facts) inputs into 100 clusters (estimated case types) - [ ] Evaluate supervised learning algorithm training times for 250*45000 for training/predicting output vectors *Story Points* - 8 *Priority* - High *Risk* - Medium *Acceptance Criteria* - Have computing resource requirements to submit to the Lab
1.0
Evaluate ML requirements - *Description* As a CJL administrator, I would like to know the computing resources required for Machine learning (Research-oriented task) *Scope of Work* - [ ] Evaluate unsupervised learning algorithms (Gaussian Mixture, K-Means training/prediction times for 300*45000 (estimated facts) inputs into 250 clusters (estimated fact types) - [ ] Evaluate unsupervised learning algorithms training times for clustering 250*45000 (estimated facts) inputs into 100 clusters (estimated case types) - [ ] Evaluate supervised learning algorithm training times for 250*45000 for training/predicting output vectors *Story Points* - 8 *Priority* - High *Risk* - Medium *Acceptance Criteria* - Have computing resource requirements to submit to the Lab
priority
evaluate ml requirements description as a cjl administrator i would like to know the computing resources required for machine learning research oriented task scope of work evaluate unsupervised learning algorithms gaussian mixture k means training prediction times for estimated facts inputs into clusters estimated fact types evaluate unsupervised learning algorithms training times for clustering estimated facts inputs into clusters estimated case types evaluate supervised learning algorithm training times for for training predicting output vectors story points priority high risk medium acceptance criteria have computing resource requirements to submit to the lab
1
22,800
2,650,929,980
IssuesEvent
2015-03-16 06:52:45
grepper/tovid
https://api.github.com/repos/grepper/tovid
closed
more than 10 animated sub-menus
bug imported Priority-Medium
_From [claude.o...@gmail.com](https://code.google.com/u/114500179454331997356/) on March 01, 2008 04:38:42_ When using more than 10 chapters with many titles on a DVD and animated sub-menus the animations after chapter 9 or 10 of the first title are not fully removed for the second or thirst title. So animated submenus show animations of first title for the last chapters. Fix is very simple: todisc V 0.31: line 4576 \## \##find $WORK_DIR/animenu/[0-9]/ -type f -exec rm -f {} \; find $WORK_DIR/animenu/[0-9]*/ -type f -exec rm -f {} \; Hope this help. _Original issue: http://code.google.com/p/tovid/issues/detail?id=38_
1.0
more than 10 animated sub-menus - _From [claude.o...@gmail.com](https://code.google.com/u/114500179454331997356/) on March 01, 2008 04:38:42_ When using more than 10 chapters with many titles on a DVD and animated sub-menus the animations after chapter 9 or 10 of the first title are not fully removed for the second or thirst title. So animated submenus show animations of first title for the last chapters. Fix is very simple: todisc V 0.31: line 4576 \## \##find $WORK_DIR/animenu/[0-9]/ -type f -exec rm -f {} \; find $WORK_DIR/animenu/[0-9]*/ -type f -exec rm -f {} \; Hope this help. _Original issue: http://code.google.com/p/tovid/issues/detail?id=38_
priority
more than animated sub menus from on march when using more than chapters with many titles on a dvd and animated sub menus the animations after chapter or of the first title are not fully removed for the second or thirst title so animated submenus show animations of first title for the last chapters fix is very simple todisc v line find work dir animenu type f exec rm f find work dir animenu type f exec rm f hope this help original issue
1
568,367
16,977,254,439
IssuesEvent
2021-06-30 02:06:41
arwes/arwes
https://api.github.com/repos/arwes/arwes
opened
Update Table component animations and accessibility features
complexity: medium package: core priority: low type: bug type: enhancement type: refactor
**RELATED TO #88** ---- The `Table` component has some issues in performance and accessibility when animations are executed. - [ ] Review transition animations performance optimizations. - [ ] Add row/cell update animation transitions. - [ ] Fix overflow hidden layout resize on transition animations. - [ ] Row hover should not occur on animation flow different from entered.
1.0
Update Table component animations and accessibility features - **RELATED TO #88** ---- The `Table` component has some issues in performance and accessibility when animations are executed. - [ ] Review transition animations performance optimizations. - [ ] Add row/cell update animation transitions. - [ ] Fix overflow hidden layout resize on transition animations. - [ ] Row hover should not occur on animation flow different from entered.
priority
update table component animations and accessibility features related to the table component has some issues in performance and accessibility when animations are executed review transition animations performance optimizations add row cell update animation transitions fix overflow hidden layout resize on transition animations row hover should not occur on animation flow different from entered
1
228,804
7,567,925,168
IssuesEvent
2018-04-22 15:07:48
tootsuite/mastodon
https://api.github.com/repos/tootsuite/mastodon
closed
Filename can cause image upload to fail
bug priority - medium
I tried to upload an image named `C9uGktdW0AAqK9N.jpg-large` and it failed with the message > 422 Validation failed: File has contents that are not what they are reported to be If I rename the file to `C9uGktdW0AAqK9N.jpg`, then it succeeds. I'm pretty sure most services ignore the filename and just look at the contents. Can we do that here to prevent this error? * * * * - [x] I searched or browsed the repo’s other issues to ensure this is not a duplicate. - [ ] This bug happens on a [tagged release](https://github.com/tootsuite/mastodon/releases) and not on `master` (If you're a user, don't worry about this).
1.0
Filename can cause image upload to fail - I tried to upload an image named `C9uGktdW0AAqK9N.jpg-large` and it failed with the message > 422 Validation failed: File has contents that are not what they are reported to be If I rename the file to `C9uGktdW0AAqK9N.jpg`, then it succeeds. I'm pretty sure most services ignore the filename and just look at the contents. Can we do that here to prevent this error? * * * * - [x] I searched or browsed the repo’s other issues to ensure this is not a duplicate. - [ ] This bug happens on a [tagged release](https://github.com/tootsuite/mastodon/releases) and not on `master` (If you're a user, don't worry about this).
priority
filename can cause image upload to fail i tried to upload an image named jpg large and it failed with the message validation failed file has contents that are not what they are reported to be if i rename the file to jpg then it succeeds i m pretty sure most services ignore the filename and just look at the contents can we do that here to prevent this error i searched or browsed the repo’s other issues to ensure this is not a duplicate this bug happens on a and not on master if you re a user don t worry about this
1
568,418
16,979,037,607
IssuesEvent
2021-06-30 06:11:21
TerriaJS/terriajs
https://api.github.com/repos/TerriaJS/terriajs
closed
Disable timeline (and other time features) if dataset only has a single date
Medium priority
Sometimes a dataset will still have a datetime picker, timeseries chart in feature info even though there is only a single date. This isn't super useful Also, it might cause the dataset to not show if the `currentTime` is too far away from the single date
1.0
Disable timeline (and other time features) if dataset only has a single date - Sometimes a dataset will still have a datetime picker, timeseries chart in feature info even though there is only a single date. This isn't super useful Also, it might cause the dataset to not show if the `currentTime` is too far away from the single date
priority
disable timeline and other time features if dataset only has a single date sometimes a dataset will still have a datetime picker timeseries chart in feature info even though there is only a single date this isn t super useful also it might cause the dataset to not show if the currenttime is too far away from the single date
1
526,701
15,299,198,556
IssuesEvent
2021-02-24 10:39:05
AyeCode/geodirectory
https://api.github.com/repos/AyeCode/geodirectory
closed
Check gutenberg based widgets screen works
For: Developer Priority: Medium
WP 5.7 will change the widgets screen to use gutenberg, in my quick test there are some JS issues. Lets test this and make sure its all working before the WP 5.7 release in a few months. To test i had to install WP 5.7 AND the gutenberg plugin.
1.0
Check gutenberg based widgets screen works - WP 5.7 will change the widgets screen to use gutenberg, in my quick test there are some JS issues. Lets test this and make sure its all working before the WP 5.7 release in a few months. To test i had to install WP 5.7 AND the gutenberg plugin.
priority
check gutenberg based widgets screen works wp will change the widgets screen to use gutenberg in my quick test there are some js issues lets test this and make sure its all working before the wp release in a few months to test i had to install wp and the gutenberg plugin
1
516,136
14,975,868,708
IssuesEvent
2021-01-28 07:02:11
nlpsandbox/nlpsandbox-controller
https://api.github.com/repos/nlpsandbox/nlpsandbox-controller
closed
Add '_type' into scoring in convert_score.cwl once goldstandard is updated
Priority: Medium
Currently: ``` # key = f"{annotator_type}_type" # for types in scores[key]: # new_scores_dict[f"type_{types['metric']}"] = types['value'] ``` Is commented out, because `dateFormat` is blank for the goldstandard. Once it is filled in, then this code can be added.
1.0
Add '_type' into scoring in convert_score.cwl once goldstandard is updated - Currently: ``` # key = f"{annotator_type}_type" # for types in scores[key]: # new_scores_dict[f"type_{types['metric']}"] = types['value'] ``` Is commented out, because `dateFormat` is blank for the goldstandard. Once it is filled in, then this code can be added.
priority
add type into scoring in convert score cwl once goldstandard is updated currently key f annotator type type for types in scores new scores dict types is commented out because dateformat is blank for the goldstandard once it is filled in then this code can be added
1
51,793
3,013,888,308
IssuesEvent
2015-07-29 11:57:58
hotosm/osm-tasking-manager2
https://api.github.com/repos/hotosm/osm-tasking-manager2
closed
User profile problem (nickname vs uid) creates broken links and incompatibilities
easy priority_medium user-profile
The http://tasks.hotosm.org/users page refers to a user by his OSM nickname instead of the uid. This creates problem when a user change his nickname. For example, in the Users list, we have nickname rwst. this links to http://tasks.hotosm.org/user/rwst This second page links to http://tasks.hotosm.org/user/1833571/project_manager and http://tasks.hotosm.org/user/1833571/admin. But not possible to link as http://tasks.hotosm.org/user/1833571. The excellent User profile page provides a summary of a user experience witht the Task Manager. This can be very useful to follow contributors. But two important links are broken when contributor modifies his nickname. 1. The OSM user profile url http://www.openstreetmap.org/api/0.6/user/rwst should be http://www.openstreetmap.org/api/0.6/user/1833571 2. The Overpass Query url using the user parameter should be replaced by uid parameter.
1.0
User profile problem (nickname vs uid) creates broken links and incompatibilities - The http://tasks.hotosm.org/users page refers to a user by his OSM nickname instead of the uid. This creates problem when a user change his nickname. For example, in the Users list, we have nickname rwst. this links to http://tasks.hotosm.org/user/rwst This second page links to http://tasks.hotosm.org/user/1833571/project_manager and http://tasks.hotosm.org/user/1833571/admin. But not possible to link as http://tasks.hotosm.org/user/1833571. The excellent User profile page provides a summary of a user experience witht the Task Manager. This can be very useful to follow contributors. But two important links are broken when contributor modifies his nickname. 1. The OSM user profile url http://www.openstreetmap.org/api/0.6/user/rwst should be http://www.openstreetmap.org/api/0.6/user/1833571 2. The Overpass Query url using the user parameter should be replaced by uid parameter.
priority
user profile problem nickname vs uid creates broken links and incompatibilities the page refers to a user by his osm nickname instead of the uid this creates problem when a user change his nickname for example in the users list we have nickname rwst this links to this second page links to and but not possible to link as the excellent user profile page provides a summary of a user experience witht the task manager this can be very useful to follow contributors but two important links are broken when contributor modifies his nickname the osm user profile url should be the overpass query url using the user parameter should be replaced by uid parameter
1
304,745
9,335,162,629
IssuesEvent
2019-03-28 17:54:11
FluidSense/SeatMaster
https://api.github.com/repos/FluidSense/SeatMaster
closed
User should be removed immediately after delete
Frontend Priority: MEDIUM
When deleting a student, it will linger in the list until refresh. This could be solved by doing another fetch on /all (possibly unecessary) or making another frontend workaround.
1.0
User should be removed immediately after delete - When deleting a student, it will linger in the list until refresh. This could be solved by doing another fetch on /all (possibly unecessary) or making another frontend workaround.
priority
user should be removed immediately after delete when deleting a student it will linger in the list until refresh this could be solved by doing another fetch on all possibly unecessary or making another frontend workaround
1
721,047
24,816,208,441
IssuesEvent
2022-10-25 13:20:43
bounswe/bounswe2022group1
https://api.github.com/repos/bounswe/bounswe2022group1
closed
Android Sub-group meeting
Priority: Medium
14.10.2022 Android group meeting for architectural structure and project plan.
1.0
Android Sub-group meeting - 14.10.2022 Android group meeting for architectural structure and project plan.
priority
android sub group meeting android group meeting for architectural structure and project plan
1
505,855
14,653,106,046
IssuesEvent
2020-12-28 04:43:39
vanjarosoftware/Vanjaro.Platform
https://api.github.com/repos/vanjarosoftware/Vanjaro.Platform
closed
Section block options are not visible after changing type
Area: Frontend Bug Priority: Medium Release: Patch
Steps to duplicate: - Add Section block and select it - Change Type to Header - Reload page - Select section and you will see no options are visible
1.0
Section block options are not visible after changing type - Steps to duplicate: - Add Section block and select it - Change Type to Header - Reload page - Select section and you will see no options are visible
priority
section block options are not visible after changing type steps to duplicate add section block and select it change type to header reload page select section and you will see no options are visible
1
757,075
26,495,355,365
IssuesEvent
2023-01-18 04:51:39
camsaul/toucan2
https://api.github.com/repos/camsaul/toucan2
opened
Add a `touch` helper function to "force" a key to show up in `changes`?
under consideration new feature medium priority
This can work by removing the value from `original` or something like that. Would this be useful? What about also adding an equivalent `reset` function?
1.0
Add a `touch` helper function to "force" a key to show up in `changes`? - This can work by removing the value from `original` or something like that. Would this be useful? What about also adding an equivalent `reset` function?
priority
add a touch helper function to force a key to show up in changes this can work by removing the value from original or something like that would this be useful what about also adding an equivalent reset function
1
20,521
2,622,851,875
IssuesEvent
2015-03-04 08:05:41
max99x/pagemon-chrome-ext
https://api.github.com/repos/max99x/pagemon-chrome-ext
closed
How to recognize if an image on the page is uploaded ?
auto-migrated Priority-Medium
``` Hello, can I check with pagemon extension, if an image has been on the page fresh uploaded ? = the html code of page have not been changed. BUT - an image of the web page, that was deleted, has been uploaded on the server. Thank you ! ``` Original issue reported on code.google.com by `spagrspa...@gmail.com` on 3 Sep 2012 at 10:29
1.0
How to recognize if an image on the page is uploaded ? - ``` Hello, can I check with pagemon extension, if an image has been on the page fresh uploaded ? = the html code of page have not been changed. BUT - an image of the web page, that was deleted, has been uploaded on the server. Thank you ! ``` Original issue reported on code.google.com by `spagrspa...@gmail.com` on 3 Sep 2012 at 10:29
priority
how to recognize if an image on the page is uploaded hello can i check with pagemon extension if an image has been on the page fresh uploaded the html code of page have not been changed but an image of the web page that was deleted has been uploaded on the server thank you original issue reported on code google com by spagrspa gmail com on sep at
1
30,647
2,724,496,682
IssuesEvent
2015-04-14 18:10:04
CruxFramework/crux-widgets
https://api.github.com/repos/CruxFramework/crux-widgets
closed
NullPointerException when generating ETAG for rest service operations when null is returned
bug imported Milestone-M14-C2 Priority-Medium
_From [thi...@cruxframework.org](https://code.google.com/u/114650528804514463329/) on March 18, 2014 17:25:54_ What steps will reproduce the problem? 1. Create a REST service operation 2. return null What is the expected output? What do you see instead? When crux tries to generate the ETAG for this response, a nullpointer exception occurs Please use labels and text to provide additional information. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=335_
1.0
NullPointerException when generating ETAG for rest service operations when null is returned - _From [thi...@cruxframework.org](https://code.google.com/u/114650528804514463329/) on March 18, 2014 17:25:54_ What steps will reproduce the problem? 1. Create a REST service operation 2. return null What is the expected output? What do you see instead? When crux tries to generate the ETAG for this response, a nullpointer exception occurs Please use labels and text to provide additional information. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=335_
priority
nullpointerexception when generating etag for rest service operations when null is returned from on march what steps will reproduce the problem create a rest service operation return null what is the expected output what do you see instead when crux tries to generate the etag for this response a nullpointer exception occurs please use labels and text to provide additional information original issue
1
487,407
14,046,061,312
IssuesEvent
2020-11-02 03:31:28
AY2021S1-CS2103T-T10-1/tp
https://api.github.com/repos/AY2021S1-CS2103T-T10-1/tp
closed
Change the function of c/ in sort command
priority.Medium type.Enhancement
Use c/ to change the grouping of projects by completion status and retain the behaviour for the subsequent sorts.
1.0
Change the function of c/ in sort command - Use c/ to change the grouping of projects by completion status and retain the behaviour for the subsequent sorts.
priority
change the function of c in sort command use c to change the grouping of projects by completion status and retain the behaviour for the subsequent sorts
1
324,067
9,883,401,912
IssuesEvent
2019-06-24 19:18:33
milnel2/blocks4alliOS
https://api.github.com/repos/milnel2/blocks4alliOS
closed
Movement Consistency
change high priority medium
Movement consistency should be set for all of the drive blocks, so every forward block is the same distance before modification etc.
1.0
Movement Consistency - Movement consistency should be set for all of the drive blocks, so every forward block is the same distance before modification etc.
priority
movement consistency movement consistency should be set for all of the drive blocks so every forward block is the same distance before modification etc
1
91,192
3,839,401,156
IssuesEvent
2016-04-03 02:19:12
UristMcStation/UristMcStation
https://api.github.com/repos/UristMcStation/UristMcStation
closed
Spacebattle.dmm starts larger then it should be.
bug Feature Kill Me Map Priority: Medium What the Fuck
When the spacebattle away loads, it loads the map as 510x255 tiles, instead of 255x255, which is all that's used, I have no idea why. This may be one of the reasons Spacebattle lags the server when it's loading.
1.0
Spacebattle.dmm starts larger then it should be. - When the spacebattle away loads, it loads the map as 510x255 tiles, instead of 255x255, which is all that's used, I have no idea why. This may be one of the reasons Spacebattle lags the server when it's loading.
priority
spacebattle dmm starts larger then it should be when the spacebattle away loads it loads the map as tiles instead of which is all that s used i have no idea why this may be one of the reasons spacebattle lags the server when it s loading
1
472,899
13,632,805,683
IssuesEvent
2020-09-24 20:16:56
gnosis/conditional-tokens-explorer
https://api.github.com/repos/gnosis/conditional-tokens-explorer
opened
Add more information to condition and position details
Medium priority enhancement ux
In [this issue](https://github.com/gnosis/conditional-tokens-explorer/issues/340), I mentioned a few columns that would be great to add to the list views. That information should also be added to the details view. In the conditions details, we should add: - creation date - creator address - Total Value Locked In the positions details, we should add: - creation date - oracle address / name - question ID - total value locked - Collateral token address - Wrapped outcome token address
1.0
Add more information to condition and position details - In [this issue](https://github.com/gnosis/conditional-tokens-explorer/issues/340), I mentioned a few columns that would be great to add to the list views. That information should also be added to the details view. In the conditions details, we should add: - creation date - creator address - Total Value Locked In the positions details, we should add: - creation date - oracle address / name - question ID - total value locked - Collateral token address - Wrapped outcome token address
priority
add more information to condition and position details in i mentioned a few columns that would be great to add to the list views that information should also be added to the details view in the conditions details we should add creation date creator address total value locked in the positions details we should add creation date oracle address name question id total value locked collateral token address wrapped outcome token address
1
700,878
24,076,514,418
IssuesEvent
2022-09-18 21:35:32
containrrr/watchtower
https://api.github.com/repos/containrrr/watchtower
closed
Exempt container from auto-update not working
Type: Bug Priority: Medium Status: Available
**Describe the bug** Watchtower is successfully updating all my docker containers, but I am trying to exempt only 1 container (named "znc") from being updated. I tried applying the following label in my docker-compose for the znc container as seen in the snippet below: ``` services: znc: labels: - com.centurylinklabs.watchtower.enable="false" ``` I then recreated the containers but the znc container is still auto updating. I then added the environment line to watchtower in my docker-compose as per the snippet below: ``` services: znc: labels: - com.centurylinklabs.watchtower.enable="false" watchtower: environment: WATCHTOWER_LABEL_ENABLE: "true" ``` I re-created the containers again and this time none of my containers updated. What am I doing wrong? **Expected behavior** I would like to have all containers auto update except my znc container. Instead of manually setting which containers to update, I would like to only set which container not to update. **Environment** - Operating System: Ubuntu 22.04.1 LTS - Kernel: Linux 5.15.0-46-generic - Architecture: x86-64 - Docker version 20.10.17, build 100c701 <details> <summary><b> Logs from running watchtower</b></summary> ``` time="2022-08-16T14:02:09-05:00" level=info msg="Watchtower 1.4.0" time="2022-08-16T14:02:09-05:00" level=info msg="Using no notifications" time="2022-08-16T14:02:09-05:00" level=info msg="Only checking containers using enable label" time="2022-08-16T14:02:09-05:00" level=info msg="Scheduling first run: 2022-08-17 04:00:00 -0500 CDT" time="2022-08-16T14:02:09-05:00" level=info msg="Note that the first check will be performed in 13 hours, 57 minutes, 50 seconds" time="2022-08-17T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-18T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-19T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-20T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-21T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-22T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-23T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-24T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-25T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-26T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-27T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-28T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-29T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-30T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-31T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-09-01T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-09-02T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no ``` </details>
1.0
Exempt container from auto-update not working - **Describe the bug** Watchtower is successfully updating all my docker containers, but I am trying to exempt only 1 container (named "znc") from being updated. I tried applying the following label in my docker-compose for the znc container as seen in the snippet below: ``` services: znc: labels: - com.centurylinklabs.watchtower.enable="false" ``` I then recreated the containers but the znc container is still auto updating. I then added the environment line to watchtower in my docker-compose as per the snippet below: ``` services: znc: labels: - com.centurylinklabs.watchtower.enable="false" watchtower: environment: WATCHTOWER_LABEL_ENABLE: "true" ``` I re-created the containers again and this time none of my containers updated. What am I doing wrong? **Expected behavior** I would like to have all containers auto update except my znc container. Instead of manually setting which containers to update, I would like to only set which container not to update. **Environment** - Operating System: Ubuntu 22.04.1 LTS - Kernel: Linux 5.15.0-46-generic - Architecture: x86-64 - Docker version 20.10.17, build 100c701 <details> <summary><b> Logs from running watchtower</b></summary> ``` time="2022-08-16T14:02:09-05:00" level=info msg="Watchtower 1.4.0" time="2022-08-16T14:02:09-05:00" level=info msg="Using no notifications" time="2022-08-16T14:02:09-05:00" level=info msg="Only checking containers using enable label" time="2022-08-16T14:02:09-05:00" level=info msg="Scheduling first run: 2022-08-17 04:00:00 -0500 CDT" time="2022-08-16T14:02:09-05:00" level=info msg="Note that the first check will be performed in 13 hours, 57 minutes, 50 seconds" time="2022-08-17T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-18T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-19T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-20T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-21T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-22T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-23T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-24T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-25T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-26T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-27T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-28T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-29T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-30T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-08-31T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-09-01T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no time="2022-09-02T04:00:00-05:00" level=info msg="Session done" Failed=0 Scanned=0 Updated=0 notify=no ``` </details>
priority
exempt container from auto update not working describe the bug watchtower is successfully updating all my docker containers but i am trying to exempt only container named znc from being updated i tried applying the following label in my docker compose for the znc container as seen in the snippet below services znc labels com centurylinklabs watchtower enable false i then recreated the containers but the znc container is still auto updating i then added the environment line to watchtower in my docker compose as per the snippet below services znc labels com centurylinklabs watchtower enable false watchtower environment watchtower label enable true i re created the containers again and this time none of my containers updated what am i doing wrong expected behavior i would like to have all containers auto update except my znc container instead of manually setting which containers to update i would like to only set which container not to update environment operating system ubuntu lts kernel linux generic architecture docker version build logs from running watchtower time level info msg watchtower time level info msg using no notifications time level info msg only checking containers using enable label time level info msg scheduling first run cdt time level info msg note that the first check will be performed in hours minutes seconds time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no time level info msg session done failed scanned updated notify no
1
25,969
2,684,072,701
IssuesEvent
2015-03-28 16:40:12
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
Ctrl+Tab не работает в ConEmu
1 star bug imported Priority-Medium
_From [SYako...@gmail.com](https://code.google.com/u/115705386262452344314/) on May 09, 2012 03:11:45_ OS version: Win7 SP1 x64 ConEmu version: 120508 x64 Far version: 3.0.2662 *Bug description* При открытии файла по F3/F4 (просмотр/редактирование) в ConEmu не создается новая закладка (Tab) и, как результат, Ctrl+Tab не работает. При отключеном "Internal CtrlTab" Фаровский вариант работает. *Steps to reproduction* 1. Проверить, установлен ли флажок для "Internal CtrlTab". Должен быть установлен. 2. Открыть файл в Far по F3. 3. Файл открывается в той же закладке. В списке консолей присутствует только одна консоль. Ctrl+Tab - не работает. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=535_
1.0
Ctrl+Tab не работает в ConEmu - _From [SYako...@gmail.com](https://code.google.com/u/115705386262452344314/) on May 09, 2012 03:11:45_ OS version: Win7 SP1 x64 ConEmu version: 120508 x64 Far version: 3.0.2662 *Bug description* При открытии файла по F3/F4 (просмотр/редактирование) в ConEmu не создается новая закладка (Tab) и, как результат, Ctrl+Tab не работает. При отключеном "Internal CtrlTab" Фаровский вариант работает. *Steps to reproduction* 1. Проверить, установлен ли флажок для "Internal CtrlTab". Должен быть установлен. 2. Открыть файл в Far по F3. 3. Файл открывается в той же закладке. В списке консолей присутствует только одна консоль. Ctrl+Tab - не работает. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=535_
priority
ctrl tab не работает в conemu from on may os version conemu version far version bug description при открытии файла по просмотр редактирование в conemu не создается новая закладка tab и как результат ctrl tab не работает при отключеном internal ctrltab фаровский вариант работает steps to reproduction проверить установлен ли флажок для internal ctrltab должен быть установлен открыть файл в far по файл открывается в той же закладке в списке консолей присутствует только одна консоль ctrl tab не работает original issue
1
742,794
25,869,442,369
IssuesEvent
2022-12-14 00:41:24
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YSQL] Add more int getters to libpq_utils
kind/enhancement area/ysql priority/medium
Jira Link: [DB-3829](https://yugabyte.atlassian.net/browse/DB-3829) ### Description libpq_utils has functions around libpq objects. There are several getters of PGresult, like GetBool, GetInt32, GetString, but it is not complete. Add getters for missing int types, GetInt16, GetOid. Also add a GetUint64 for convenience when getting catalog version because there needs to be a conversion of int64 to uint64 (pg has no uint64 type).
1.0
[YSQL] Add more int getters to libpq_utils - Jira Link: [DB-3829](https://yugabyte.atlassian.net/browse/DB-3829) ### Description libpq_utils has functions around libpq objects. There are several getters of PGresult, like GetBool, GetInt32, GetString, but it is not complete. Add getters for missing int types, GetInt16, GetOid. Also add a GetUint64 for convenience when getting catalog version because there needs to be a conversion of int64 to uint64 (pg has no uint64 type).
priority
add more int getters to libpq utils jira link description libpq utils has functions around libpq objects there are several getters of pgresult like getbool getstring but it is not complete add getters for missing int types getoid also add a for convenience when getting catalog version because there needs to be a conversion of to pg has no type
1
556,550
16,485,673,811
IssuesEvent
2021-05-24 17:34:36
apluslms/a-plus
https://api.github.com/repos/apluslms/a-plus
closed
Messy column names in the exported CSV or Excel file in the All results page (course points page)
area: UX teacher area: end-of-course effort: hours experience: beginner priority: medium requester: internal type: bug
After #797, the CSV and Excel files exported from the course points page (All results page) contain extra words in the end of column names. For example, the column "Total" in the web page becomes `Total supported)">` in the Excel file, and similarly, the exercise columns have the same ` supported)">` appended after the exercise title. The extra word might originate from the column search text box that contains the placeholder `Search (<, > supported)`.
1.0
Messy column names in the exported CSV or Excel file in the All results page (course points page) - After #797, the CSV and Excel files exported from the course points page (All results page) contain extra words in the end of column names. For example, the column "Total" in the web page becomes `Total supported)">` in the Excel file, and similarly, the exercise columns have the same ` supported)">` appended after the exercise title. The extra word might originate from the column search text box that contains the placeholder `Search (<, > supported)`.
priority
messy column names in the exported csv or excel file in the all results page course points page after the csv and excel files exported from the course points page all results page contain extra words in the end of column names for example the column total in the web page becomes total supported in the excel file and similarly the exercise columns have the same supported appended after the exercise title the extra word might originate from the column search text box that contains the placeholder search supported
1
562,812
16,670,290,729
IssuesEvent
2021-06-07 09:59:03
bounswe/2021SpringGroup1
https://api.github.com/repos/bounswe/2021SpringGroup1
closed
Community page post creating issue without a template
Priority: Medium Status: Revision Needed help wanted
Right now users cannot create a post if there are no templates. Instead, they will get a message like this {}. We need to replace that with a warning such as "you need a post template first" or "ask your moderators to create a post template!"
1.0
Community page post creating issue without a template - Right now users cannot create a post if there are no templates. Instead, they will get a message like this {}. We need to replace that with a warning such as "you need a post template first" or "ask your moderators to create a post template!"
priority
community page post creating issue without a template right now users cannot create a post if there are no templates instead they will get a message like this we need to replace that with a warning such as you need a post template first or ask your moderators to create a post template
1
310,584
9,516,179,326
IssuesEvent
2019-04-26 08:11:15
DigitalCampus/oppia-mobile-android
https://api.github.com/repos/DigitalCampus/oppia-mobile-android
closed
Finer grained data on video playback
Medium priority discourse enhancement
From LMH , the 2 use cases are: 1. are there particular segments of the video that are being watch multiple times 2. are the segments when the video is put on pause (eg because talking to client) So what we should want to track: The start/end time of the video and date/timestamp when it is playing The date/timestamp (and point in video ) when the video is paused Suggest for now adding this extra pieces of data into the Tracker data json object
1.0
Finer grained data on video playback - From LMH , the 2 use cases are: 1. are there particular segments of the video that are being watch multiple times 2. are the segments when the video is put on pause (eg because talking to client) So what we should want to track: The start/end time of the video and date/timestamp when it is playing The date/timestamp (and point in video ) when the video is paused Suggest for now adding this extra pieces of data into the Tracker data json object
priority
finer grained data on video playback from lmh the use cases are are there particular segments of the video that are being watch multiple times are the segments when the video is put on pause eg because talking to client so what we should want to track the start end time of the video and date timestamp when it is playing the date timestamp and point in video when the video is paused suggest for now adding this extra pieces of data into the tracker data json object
1
318,927
9,725,268,443
IssuesEvent
2019-05-30 08:12:41
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Distribution exception (master)
Medium Priority
Trying to debug another issue using this save Using this save https://www.dropbox.com/s/cmr1v6sfahgi70s/terryh_EcoGS_2018-07-23_15-43.zip?dl=0 ``` System.NullReferenceException HResult=0x80004003 Message=Object reference not set to an instance of an object. Source=Eco.Gameplay StackTrace: at Eco.Gameplay.Items.ItemStackExtensions.<>c.<Consolidate>b__0_0(ItemStack x) in C:\slg\Eco\Server\Eco.Gameplay\Items\Inventory.cs:line 1743 at System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer) at System.Linq.GroupedEnumerable`3.GetEnumerator() at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext() at System.Linq.Buffer`1..ctor(IEnumerable`1 source) at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source) at System.Collections.Immutable.ImmutableExtensions.FallbackWrapper`1.get_Count() at System.Collections.Immutable.ImmutableList`1.CreateRange(IEnumerable`1 items) at Eco.Core.Utils.ThreadSafeList`1.<>c__DisplayClass15_0.<AddRange>b__0(ImmutableList`1 x) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeList.cs:line 41 at Eco.Core.Utils.ImmutableHelper.ApplyImmutable[T](T& original, Func`2 apply) in C:\slg\Eco\Server\Eco.Core\Utils\ImmutableHelper.cs:line 19 at Eco.Core.Utils.ThreadSafeList`1.AddRange(IEnumerable`1 items) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeList.cs:line 41 at Eco.Core.Utils.ThreadSafeList`1..ctor(IEnumerable`1 contents) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeList.cs:line 36 at Eco.Gameplay.Utils.ItemTracker.LockTracker(IEnumerable`1 stacks, User user, Vector3i pos, LocString prependText) in C:\slg\Eco\Server\Eco.Gameplay\Utils\ItemTracker.cs:line 36 at Eco.Gameplay.Utils.ItemTracker..ctor(IEnumerable`1 stacks, User user, Vector3i pos, LocString prependText) in C:\slg\Eco\Server\Eco.Gameplay\Utils\ItemTracker.cs:line 29 at Eco.Gameplay.Components.ItemDistributionComponent.AddUser(User user) in C:\slg\Eco\Server\Eco.Gameplay\Components\ItemDistributionComponent.cs:line 57 at Eco.Core.Utils.ThreadSafeAction`1.Invoke(T t) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeAction.cs:line 57 at Eco.Gameplay.Players.UserManager.GetOrCreateUser(String steamId, String slgId, String username) in C:\slg\Eco\Server\Eco.Gameplay\Players\UserManager.cs:line 278 at Eco.Plugins.Networking.Client.SpawnPlayer(Single viewDistance, String language) in C:\slg\Eco\Server\Eco.Plugins\Networking\Client.cs:line 161 ```
1.0
Distribution exception (master) - Trying to debug another issue using this save Using this save https://www.dropbox.com/s/cmr1v6sfahgi70s/terryh_EcoGS_2018-07-23_15-43.zip?dl=0 ``` System.NullReferenceException HResult=0x80004003 Message=Object reference not set to an instance of an object. Source=Eco.Gameplay StackTrace: at Eco.Gameplay.Items.ItemStackExtensions.<>c.<Consolidate>b__0_0(ItemStack x) in C:\slg\Eco\Server\Eco.Gameplay\Items\Inventory.cs:line 1743 at System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer) at System.Linq.GroupedEnumerable`3.GetEnumerator() at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext() at System.Linq.Buffer`1..ctor(IEnumerable`1 source) at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source) at System.Collections.Immutable.ImmutableExtensions.FallbackWrapper`1.get_Count() at System.Collections.Immutable.ImmutableList`1.CreateRange(IEnumerable`1 items) at Eco.Core.Utils.ThreadSafeList`1.<>c__DisplayClass15_0.<AddRange>b__0(ImmutableList`1 x) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeList.cs:line 41 at Eco.Core.Utils.ImmutableHelper.ApplyImmutable[T](T& original, Func`2 apply) in C:\slg\Eco\Server\Eco.Core\Utils\ImmutableHelper.cs:line 19 at Eco.Core.Utils.ThreadSafeList`1.AddRange(IEnumerable`1 items) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeList.cs:line 41 at Eco.Core.Utils.ThreadSafeList`1..ctor(IEnumerable`1 contents) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeList.cs:line 36 at Eco.Gameplay.Utils.ItemTracker.LockTracker(IEnumerable`1 stacks, User user, Vector3i pos, LocString prependText) in C:\slg\Eco\Server\Eco.Gameplay\Utils\ItemTracker.cs:line 36 at Eco.Gameplay.Utils.ItemTracker..ctor(IEnumerable`1 stacks, User user, Vector3i pos, LocString prependText) in C:\slg\Eco\Server\Eco.Gameplay\Utils\ItemTracker.cs:line 29 at Eco.Gameplay.Components.ItemDistributionComponent.AddUser(User user) in C:\slg\Eco\Server\Eco.Gameplay\Components\ItemDistributionComponent.cs:line 57 at Eco.Core.Utils.ThreadSafeAction`1.Invoke(T t) in C:\slg\Eco\Server\Eco.Core\Utils\ThreadSafeAction.cs:line 57 at Eco.Gameplay.Players.UserManager.GetOrCreateUser(String steamId, String slgId, String username) in C:\slg\Eco\Server\Eco.Gameplay\Players\UserManager.cs:line 278 at Eco.Plugins.Networking.Client.SpawnPlayer(Single viewDistance, String language) in C:\slg\Eco\Server\Eco.Plugins\Networking\Client.cs:line 161 ```
priority
distribution exception master trying to debug another issue using this save using this save system nullreferenceexception hresult message object reference not set to an instance of an object source eco gameplay stacktrace at eco gameplay items itemstackextensions c b itemstack x in c slg eco server eco gameplay items inventory cs line at system linq lookup create ienumerable source func keyselector func elementselector iequalitycomparer comparer at system linq groupedenumerable getenumerator at system linq enumerable whereselectenumerableiterator movenext at system linq buffer ctor ienumerable source at system linq enumerable toarray ienumerable source at system collections immutable immutableextensions fallbackwrapper get count at system collections immutable immutablelist createrange ienumerable items at eco core utils threadsafelist c b immutablelist x in c slg eco server eco core utils threadsafelist cs line at eco core utils immutablehelper applyimmutable t original func apply in c slg eco server eco core utils immutablehelper cs line at eco core utils threadsafelist addrange ienumerable items in c slg eco server eco core utils threadsafelist cs line at eco core utils threadsafelist ctor ienumerable contents in c slg eco server eco core utils threadsafelist cs line at eco gameplay utils itemtracker locktracker ienumerable stacks user user pos locstring prependtext in c slg eco server eco gameplay utils itemtracker cs line at eco gameplay utils itemtracker ctor ienumerable stacks user user pos locstring prependtext in c slg eco server eco gameplay utils itemtracker cs line at eco gameplay components itemdistributioncomponent adduser user user in c slg eco server eco gameplay components itemdistributioncomponent cs line at eco core utils threadsafeaction invoke t t in c slg eco server eco core utils threadsafeaction cs line at eco gameplay players usermanager getorcreateuser string steamid string slgid string username in c slg eco server eco gameplay players usermanager cs line at eco plugins networking client spawnplayer single viewdistance string language in c slg eco server eco plugins networking client cs line
1
141,938
5,447,240,478
IssuesEvent
2017-03-07 13:02:05
CS2103JAN2017-F11-B1/main
https://api.github.com/repos/CS2103JAN2017-F11-B1/main
opened
Modify user guide based on feedback from v0.0
priority.medium type.story type.task
1. A better project name 2. Start project should run on jar file instead of eclipse 3. Finalize command format 4. Add command summary
1.0
Modify user guide based on feedback from v0.0 - 1. A better project name 2. Start project should run on jar file instead of eclipse 3. Finalize command format 4. Add command summary
priority
modify user guide based on feedback from a better project name start project should run on jar file instead of eclipse finalize command format add command summary
1
672,520
22,829,462,689
IssuesEvent
2022-07-12 11:38:23
vaticle/typedb
https://api.github.com/repos/vaticle/typedb
opened
Variable role resolution non-deterministically receives too few answers
type: bug priority: medium domain: reasoner
## Description The BDD scenario "converting a fixed role to a variable bound with 'sub role' (?)(Variable Role Resolution)" fails non-deterministically with `error java.lang.AssertionError: Expected [27] answers, but got [24] expected:<27> but was:<24>` ## Environment 1. OS (where TypeDB server runs): grabl 2. TypeDB version (and platform): 2.11.1 3. TypeDB client: BDD tests 4. Other environment details: ## Expected Output Assertion should succeed
1.0
Variable role resolution non-deterministically receives too few answers - ## Description The BDD scenario "converting a fixed role to a variable bound with 'sub role' (?)(Variable Role Resolution)" fails non-deterministically with `error java.lang.AssertionError: Expected [27] answers, but got [24] expected:<27> but was:<24>` ## Environment 1. OS (where TypeDB server runs): grabl 2. TypeDB version (and platform): 2.11.1 3. TypeDB client: BDD tests 4. Other environment details: ## Expected Output Assertion should succeed
priority
variable role resolution non deterministically receives too few answers description the bdd scenario converting a fixed role to a variable bound with sub role variable role resolution fails non deterministically with error java lang assertionerror expected answers but got expected but was environment os where typedb server runs grabl typedb version and platform typedb client bdd tests other environment details expected output assertion should succeed
1
531,958
15,527,812,704
IssuesEvent
2021-03-13 07:58:15
containrrr/watchtower
https://api.github.com/repos/containrrr/watchtower
closed
failed to send notification to Gotify: x509: certificate signed by unknown authority
Priority: Medium Status: Available Type: Bug
Using a self-signed certificate, I am trying to send notifications to Gotify. When deploying watchtower with the `-e WATCHTOWER_NOTIFICATION_GOTIFY_TLS_SKIP_VERIFY=true` variable, it fails to send the notification with the following error: `failed to send notification to Gotify: x509: certificate signed by unknown authority`. For some reason it seems like the flag is not working properly, i guess?
1.0
failed to send notification to Gotify: x509: certificate signed by unknown authority - Using a self-signed certificate, I am trying to send notifications to Gotify. When deploying watchtower with the `-e WATCHTOWER_NOTIFICATION_GOTIFY_TLS_SKIP_VERIFY=true` variable, it fails to send the notification with the following error: `failed to send notification to Gotify: x509: certificate signed by unknown authority`. For some reason it seems like the flag is not working properly, i guess?
priority
failed to send notification to gotify certificate signed by unknown authority using a self signed certificate i am trying to send notifications to gotify when deploying watchtower with the e watchtower notification gotify tls skip verify true variable it fails to send the notification with the following error failed to send notification to gotify certificate signed by unknown authority for some reason it seems like the flag is not working properly i guess
1
490,926
14,142,170,168
IssuesEvent
2020-11-10 13:43:55
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.1 develop-78] Craft glithes if you have Craft resource/time multiplier = 0
Category: Gameplay Priority: Medium Status: Fixed
Need to set minimum value = 0,01 (more than zero) - [ ] 1. If you set Craft resource multiplier = 0 your craft don't work at all. - [ ] 2. If you set Craft time multiplier = 0 and start order without adding any resources you will have a lot of exceptions in log file: [Player.log](https://github.com/StrangeLoopGames/EcoIssues/files/5345665/Player.log) from here: https://github.com/StrangeLoopGames/EcoIssues/issues/18426
1.0
[0.9.1 develop-78] Craft glithes if you have Craft resource/time multiplier = 0 - Need to set minimum value = 0,01 (more than zero) - [ ] 1. If you set Craft resource multiplier = 0 your craft don't work at all. - [ ] 2. If you set Craft time multiplier = 0 and start order without adding any resources you will have a lot of exceptions in log file: [Player.log](https://github.com/StrangeLoopGames/EcoIssues/files/5345665/Player.log) from here: https://github.com/StrangeLoopGames/EcoIssues/issues/18426
priority
craft glithes if you have craft resource time multiplier need to set minimum value more than zero if you set craft resource multiplier your craft don t work at all if you set craft time multiplier and start order without adding any resources you will have a lot of exceptions in log file from here
1
89,889
3,801,545,707
IssuesEvent
2016-03-23 23:29:06
USC-CSSL/TACIT
https://api.github.com/repos/USC-CSSL/TACIT
reopened
nested directories
Medium Priority
it doesn't look like TACIT can handle nested directories. This needs to be fixed.
1.0
nested directories - it doesn't look like TACIT can handle nested directories. This needs to be fixed.
priority
nested directories it doesn t look like tacit can handle nested directories this needs to be fixed
1
287,619
8,817,501,052
IssuesEvent
2018-12-31 01:04:57
json-schema-org/json-schema-spec
https://api.github.com/repos/json-schema-org/json-schema-spec
closed
Should "headerSchema" always be of type array for HTTP?
Priority: Medium Status: In Progress Type: Maintenance hypermedia
We're a bit ambiguous on how `headerSchema` works. `targetSchema`, for HTTP or anything similar that allows repeated headers and/or headers with multiple values (which are equivalent in HTTP), we require the hint value to always be an array, even if only one element. This is consistent with the [JSON Encoding for HTTP Header Field Values](https://tools.ietf.org/html/draft-reschke-http-jfv-09) draft that we cite. However, `headerSchema` does not clearly state such guidance, and I know I have often written it as assuming a single value (and therefore not an array). This is fine for most circumstances, but if you want to require someone to pass multiple distinct values through the header, it is not possible to do so in a consistent way. Should all schemas in `headerSchemas` for HTTP (and similar systems) be of `"type": "array"` and use `"items"` (either the single schema or tuple syntax) for their contents? The one implementation that I know of, https://github.com/mokkabonna/json-hyper-schema from @mokkabonna, does not do anything specific with `headerSchema`, as that is not necessary for link construction. The [Getting Started With JSON Hyper-Schema, Part 2](https://blog.apisyouwonthate.com/getting-started-with-json-hyper-schema-part-2-ca9d7ffdf6f6), from @dashron, shows it as a schema describing a single value. I reviewed that article and either approved of it or was the person who told him that's how it worked :-P My personal inclination is to say that it has to be an array schema and to use `items`. It's a bit more boilerplate, but it is also more consistent, and covers a small but significant gap (e.g. what if I want to say that you have to supply *both* the "respond-async" preference and the "wait" preference if you supply either of them- those are two separate preferences that often work together). Also paging @dlax, @philsturgeon
1.0
Should "headerSchema" always be of type array for HTTP? - We're a bit ambiguous on how `headerSchema` works. `targetSchema`, for HTTP or anything similar that allows repeated headers and/or headers with multiple values (which are equivalent in HTTP), we require the hint value to always be an array, even if only one element. This is consistent with the [JSON Encoding for HTTP Header Field Values](https://tools.ietf.org/html/draft-reschke-http-jfv-09) draft that we cite. However, `headerSchema` does not clearly state such guidance, and I know I have often written it as assuming a single value (and therefore not an array). This is fine for most circumstances, but if you want to require someone to pass multiple distinct values through the header, it is not possible to do so in a consistent way. Should all schemas in `headerSchemas` for HTTP (and similar systems) be of `"type": "array"` and use `"items"` (either the single schema or tuple syntax) for their contents? The one implementation that I know of, https://github.com/mokkabonna/json-hyper-schema from @mokkabonna, does not do anything specific with `headerSchema`, as that is not necessary for link construction. The [Getting Started With JSON Hyper-Schema, Part 2](https://blog.apisyouwonthate.com/getting-started-with-json-hyper-schema-part-2-ca9d7ffdf6f6), from @dashron, shows it as a schema describing a single value. I reviewed that article and either approved of it or was the person who told him that's how it worked :-P My personal inclination is to say that it has to be an array schema and to use `items`. It's a bit more boilerplate, but it is also more consistent, and covers a small but significant gap (e.g. what if I want to say that you have to supply *both* the "respond-async" preference and the "wait" preference if you supply either of them- those are two separate preferences that often work together). Also paging @dlax, @philsturgeon
priority
should headerschema always be of type array for http we re a bit ambiguous on how headerschema works targetschema for http or anything similar that allows repeated headers and or headers with multiple values which are equivalent in http we require the hint value to always be an array even if only one element this is consistent with the draft that we cite however headerschema does not clearly state such guidance and i know i have often written it as assuming a single value and therefore not an array this is fine for most circumstances but if you want to require someone to pass multiple distinct values through the header it is not possible to do so in a consistent way should all schemas in headerschemas for http and similar systems be of type array and use items either the single schema or tuple syntax for their contents the one implementation that i know of from mokkabonna does not do anything specific with headerschema as that is not necessary for link construction the from dashron shows it as a schema describing a single value i reviewed that article and either approved of it or was the person who told him that s how it worked p my personal inclination is to say that it has to be an array schema and to use items it s a bit more boilerplate but it is also more consistent and covers a small but significant gap e g what if i want to say that you have to supply both the respond async preference and the wait preference if you supply either of them those are two separate preferences that often work together also paging dlax philsturgeon
1
720,416
24,791,838,753
IssuesEvent
2022-10-24 14:18:06
wp-media/wp-rocket
https://api.github.com/repos/wp-media/wp-rocket
opened
Allow serving webp for all browsers
type: enhancement module: preload priority: medium module: webp cache
**Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version - Used the search feature to ensure that the bug hasn’t been reported before **Describe the bug** Seems like some browsers are not including the `webp` in HTTP_ACCEPT header. It can cause our preload not being 100% effective. Part of the solution is having control over the HTTP_ACCEPT in the preload request headers: https://github.com/wp-media/wp-rocket/pull/5521 The second part is to serve webp version of the cache for all browsers, possibly, this enhancement should be available as a filter (if that's possible) ### Expected behavior version 1 **Creating the cache when the filter is enabled** 1. All browsers, no matter if they send HTTP_ACCEPT with `webp` or not should create the `webp` version of the cache 2. If there's no webp image on the page, we should create the normal cache file and a `nowebp` file, just like on the trunk: https://github.com/wp-media/wp-rocket/blob/ae07a02932a32df08918f3ff5c89b44d5195d03d/inc/classes/Buffer/class-cache.php#L486 **Serving the cache when the filter is enabled** 1. If there's a webp cache file present in the filesystem, it should be served for all browsers 2. If there's a `nowebp` file present, we should serve the normal cache for all browsers ### Expected behavior version 2 **Creating the cache when the filter is enabled** 1. All browsers, no matter if they send HTTP_ACCEPT with `webp` or not should the cache file with webp images. **We'd use just a normal name for this file, without appending the `-webp`** 2. If there's no webp image on the page, we'll also create just a regular cache file **Serving the cache when the filter is enabled** 1. We'll always serve the regular cache file for all browsers, there'll be no use of `nowebp` file **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
1.0
Allow serving webp for all browsers - **Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version - Used the search feature to ensure that the bug hasn’t been reported before **Describe the bug** Seems like some browsers are not including the `webp` in HTTP_ACCEPT header. It can cause our preload not being 100% effective. Part of the solution is having control over the HTTP_ACCEPT in the preload request headers: https://github.com/wp-media/wp-rocket/pull/5521 The second part is to serve webp version of the cache for all browsers, possibly, this enhancement should be available as a filter (if that's possible) ### Expected behavior version 1 **Creating the cache when the filter is enabled** 1. All browsers, no matter if they send HTTP_ACCEPT with `webp` or not should create the `webp` version of the cache 2. If there's no webp image on the page, we should create the normal cache file and a `nowebp` file, just like on the trunk: https://github.com/wp-media/wp-rocket/blob/ae07a02932a32df08918f3ff5c89b44d5195d03d/inc/classes/Buffer/class-cache.php#L486 **Serving the cache when the filter is enabled** 1. If there's a webp cache file present in the filesystem, it should be served for all browsers 2. If there's a `nowebp` file present, we should serve the normal cache for all browsers ### Expected behavior version 2 **Creating the cache when the filter is enabled** 1. All browsers, no matter if they send HTTP_ACCEPT with `webp` or not should the cache file with webp images. **We'd use just a normal name for this file, without appending the `-webp`** 2. If there's no webp image on the page, we'll also create just a regular cache file **Serving the cache when the filter is enabled** 1. We'll always serve the regular cache file for all browsers, there'll be no use of `nowebp` file **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
priority
allow serving webp for all browsers before submitting an issue please check that you’ve completed the following steps made sure you’re on the latest version used the search feature to ensure that the bug hasn’t been reported before describe the bug seems like some browsers are not including the webp in http accept header it can cause our preload not being effective part of the solution is having control over the http accept in the preload request headers the second part is to serve webp version of the cache for all browsers possibly this enhancement should be available as a filter if that s possible expected behavior version creating the cache when the filter is enabled all browsers no matter if they send http accept with webp or not should create the webp version of the cache if there s no webp image on the page we should create the normal cache file and a nowebp file just like on the trunk serving the cache when the filter is enabled if there s a webp cache file present in the filesystem it should be served for all browsers if there s a nowebp file present we should serve the normal cache for all browsers expected behavior version creating the cache when the filter is enabled all browsers no matter if they send http accept with webp or not should the cache file with webp images we d use just a normal name for this file without appending the webp if there s no webp image on the page we ll also create just a regular cache file serving the cache when the filter is enabled we ll always serve the regular cache file for all browsers there ll be no use of nowebp file backlog grooming for wp media dev team use only reproduce the problem identify the root cause scope a solution estimate the effort
1
236,125
7,746,706,613
IssuesEvent
2018-05-29 22:54:52
BlazeGuy2/Suggestions
https://api.github.com/repos/BlazeGuy2/Suggestions
closed
Alpha.6 [B8ce025e] Large Butchery Efficiency should increase output instead if decrease input
Medium Priority Suggestion
<a href="https://github.com/Fank"><img src="https://avatars1.githubusercontent.com/u/1900106?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [Fank](https://github.com/Fank)** _Tuesday Sep 26, 2017 at 09:08 GMT_ _Originally opened as https://github.com/StrangeLoopGames/EcoIssues/issues/2294_ ---- ![image](https://user-images.githubusercontent.com/1900106/30852026-ba393a1e-a2aa-11e7-8610-84c64970ce2b.png) Because it will still show the same output & input amount in Butchery Table: ![image](https://user-images.githubusercontent.com/1900106/30852079-eb14e200-a2aa-11e7-9600-09b3d2885833.png)
1.0
Alpha.6 [B8ce025e] Large Butchery Efficiency should increase output instead if decrease input - <a href="https://github.com/Fank"><img src="https://avatars1.githubusercontent.com/u/1900106?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [Fank](https://github.com/Fank)** _Tuesday Sep 26, 2017 at 09:08 GMT_ _Originally opened as https://github.com/StrangeLoopGames/EcoIssues/issues/2294_ ---- ![image](https://user-images.githubusercontent.com/1900106/30852026-ba393a1e-a2aa-11e7-8610-84c64970ce2b.png) Because it will still show the same output & input amount in Butchery Table: ![image](https://user-images.githubusercontent.com/1900106/30852079-eb14e200-a2aa-11e7-9600-09b3d2885833.png)
priority
alpha large butchery efficiency should increase output instead if decrease input issue by tuesday sep at gmt originally opened as because it will still show the same output input amount in butchery table
1
403,861
11,848,111,463
IssuesEvent
2020-03-24 13:15:53
ansible/awx
https://api.github.com/repos/ansible/awx
closed
Virtualenv in Kubernetes deployment doesn't work
component:api component:installer priority:medium state:needs_devel type:bug
##### ISSUE TYPE - Bug Report ##### SUMMARY Error when applying `curl -X PATCH 'https://admin:mypass@myurl/api/v2/organizations/my_org/' \ -d '{"custom_virtualenv": "/opt/custom-venvs/my_env/"}' -H 'Content-Type:application/json'` `{"custom_virtualenv":["/opt/custom-venvs/my_env/ is not a valid virtualenv in /var/lib/awx/venv"]}` ##### ENVIRONMENT * AWX version: 9.3.0 * AWX install method: Kubernetes v1.15.3 * Ansible version: 2.9.5 ##### STEPS TO REPRODUCE 1) Install AWX to kubernetes with similar config <details> <summary>inventory config</summary> ``` localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python" [all:vars] dockerhub_base=ansible kubernetes_context=mycontext kubernetes_namespace=awx kubernetes_ingress_hostname=myingress awx_task_hostname=awx awx_web_hostname=awxweb postgres_data_dir="~/.awx/pgdocker" host_port=80 host_port_ssl=443 docker_compose_dir="~/.awx/awxcompose" pg_hostname=mypghost pg_username=awx pg_password=mypgpass pg_database=awx pg_port=5432 rabbitmq_password=awxpass rabbitmq_erlang_cookie=cookiemonster admin_user=admin admin_password=myadminpass secret_key=mysecretkey logos/blob/master/TRADEMARKS.md ``` </details> <details> <summary>venv_vars.yaml</summary> ``` --- custom_venvs: - name: my_env python: python3 python_ansible_version: 2.9.6 python_modules: - dnspython - zabbix-api - jmespath ``` </details> 2) Assigning custom venv according to [this documentation](https://github.com/ansible/awx/blob/devel/docs/custom_virtualenvs.md) `curl -X PATCH 'https://admin:mypass@myurl/api/v2/settings/system/' \ -d '{"CUSTOM_VENV_PATHS": [["/opt/custom-venvs/my_env/"]}' -H 'Content-Type:application/json'` <details> <summary>answer</summary> ``` { "ACTIVITY_STREAM_ENABLED":true, "ACTIVITY_STREAM_ENABLED_FOR_INVENTORY_SYNC":false, "ORG_ADMINS_CAN_SEE_ALL_USERS":true, "MANAGE_ORGANIZATION_AUTH":true, "TOWER_URL_BASE":"myurl", "REMOTE_HOST_HEADERS":[ "HTTP_X_FORWARDED_FOR" ], "PROXY_IP_WHITELIST":[ ], "LICENSE":{ }, "REDHAT_USERNAME":"admin", "REDHAT_PASSWORD":"$encrypted$", "AUTOMATION_ANALYTICS_URL":"https://example.org", "INSTALL_UUID":"c1885c2a-d736-4023-9517-49929f8d77fa", "CUSTOM_VENV_PATHS":[ "/opt/custom-venvs/my_env/" ], "INSIGHTS_TRACKING_STATE":false, "BROKER_DURABILITY":true, "AUTOMATION_ANALYTICS_LAST_GATHER":null, "AUTOMATION_ANALYTICS_GATHER_INTERVAL":14400 } ``` </details> 3) Assigning custom venv to organization and get and error `curl -X PATCH 'https://admin:mypass@myurl/api/v2/organizations/my_org/' \ -d '{"custom_virtualenv": "/opt/custom-venvs/my_env/"}' -H 'Content-Type:application/json'` <details> <summary>error</summary> ``` {"custom_virtualenv":["/opt/custom-venvs/my_env/ is not a valid virtualenv in /var/lib/awx/venv"]} ``` </details> ##### EXPECTED RESULTS `my_org` will use custom venv ##### ACTUAL RESULTS `my_org` raises an error when apllying custom venv ##### ADDITIONAL INFORMATION I've checked both containers `awx_web` and `awx_task`, they have `/opt/custom-venvs/my_env/` dir with working venv. Even if `PATCH api/v2/settings/system/` works properly (according to it answer, and i can see added venv in web interface), `GET api/v2/config/` still returns no venv's <details> <summary>api/v2/config/ answer</summary> ``` { "time_zone": "UTC", "license_info": { "license_key": "OPEN", "valid_key": true, "compliant": true, "features": { "activity_streams": true, "ha": true, "ldap": true, "multiple_organizations": true, "surveys": true, "system_tracking": true, "rebranding": true, "enterprise_auth": true, "workflows": true }, "license_type": "open" }, "version": "9.3.0", "ansible_version": "2.9.5", "eula": "", "analytics_status": "off", "become_methods": [ [ "sudo", "Sudo" ], [ "su", "Su" ], [ "pbrun", "Pbrun" ], [ "pfexec", "Pfexec" ], [ "dzdo", "DZDO" ], [ "pmrun", "Pmrun" ], [ "runas", "Runas" ], [ "enable", "Enable" ], [ "doas", "Doas" ], [ "ksu", "Ksu" ], [ "machinectl", "Machinectl" ], [ "sesu", "Sesu" ] ], "project_base_dir": "/var/lib/awx/projects", "project_local_paths": [], "custom_virtualenvs": [ "/var/lib/awx/venv/ansible/" ] } ``` </details> After finding that venv doesn't apply even in `system`, i've tried to make fresh install of awx on another kube cluster, with same results.
1.0
Virtualenv in Kubernetes deployment doesn't work - ##### ISSUE TYPE - Bug Report ##### SUMMARY Error when applying `curl -X PATCH 'https://admin:mypass@myurl/api/v2/organizations/my_org/' \ -d '{"custom_virtualenv": "/opt/custom-venvs/my_env/"}' -H 'Content-Type:application/json'` `{"custom_virtualenv":["/opt/custom-venvs/my_env/ is not a valid virtualenv in /var/lib/awx/venv"]}` ##### ENVIRONMENT * AWX version: 9.3.0 * AWX install method: Kubernetes v1.15.3 * Ansible version: 2.9.5 ##### STEPS TO REPRODUCE 1) Install AWX to kubernetes with similar config <details> <summary>inventory config</summary> ``` localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python" [all:vars] dockerhub_base=ansible kubernetes_context=mycontext kubernetes_namespace=awx kubernetes_ingress_hostname=myingress awx_task_hostname=awx awx_web_hostname=awxweb postgres_data_dir="~/.awx/pgdocker" host_port=80 host_port_ssl=443 docker_compose_dir="~/.awx/awxcompose" pg_hostname=mypghost pg_username=awx pg_password=mypgpass pg_database=awx pg_port=5432 rabbitmq_password=awxpass rabbitmq_erlang_cookie=cookiemonster admin_user=admin admin_password=myadminpass secret_key=mysecretkey logos/blob/master/TRADEMARKS.md ``` </details> <details> <summary>venv_vars.yaml</summary> ``` --- custom_venvs: - name: my_env python: python3 python_ansible_version: 2.9.6 python_modules: - dnspython - zabbix-api - jmespath ``` </details> 2) Assigning custom venv according to [this documentation](https://github.com/ansible/awx/blob/devel/docs/custom_virtualenvs.md) `curl -X PATCH 'https://admin:mypass@myurl/api/v2/settings/system/' \ -d '{"CUSTOM_VENV_PATHS": [["/opt/custom-venvs/my_env/"]}' -H 'Content-Type:application/json'` <details> <summary>answer</summary> ``` { "ACTIVITY_STREAM_ENABLED":true, "ACTIVITY_STREAM_ENABLED_FOR_INVENTORY_SYNC":false, "ORG_ADMINS_CAN_SEE_ALL_USERS":true, "MANAGE_ORGANIZATION_AUTH":true, "TOWER_URL_BASE":"myurl", "REMOTE_HOST_HEADERS":[ "HTTP_X_FORWARDED_FOR" ], "PROXY_IP_WHITELIST":[ ], "LICENSE":{ }, "REDHAT_USERNAME":"admin", "REDHAT_PASSWORD":"$encrypted$", "AUTOMATION_ANALYTICS_URL":"https://example.org", "INSTALL_UUID":"c1885c2a-d736-4023-9517-49929f8d77fa", "CUSTOM_VENV_PATHS":[ "/opt/custom-venvs/my_env/" ], "INSIGHTS_TRACKING_STATE":false, "BROKER_DURABILITY":true, "AUTOMATION_ANALYTICS_LAST_GATHER":null, "AUTOMATION_ANALYTICS_GATHER_INTERVAL":14400 } ``` </details> 3) Assigning custom venv to organization and get and error `curl -X PATCH 'https://admin:mypass@myurl/api/v2/organizations/my_org/' \ -d '{"custom_virtualenv": "/opt/custom-venvs/my_env/"}' -H 'Content-Type:application/json'` <details> <summary>error</summary> ``` {"custom_virtualenv":["/opt/custom-venvs/my_env/ is not a valid virtualenv in /var/lib/awx/venv"]} ``` </details> ##### EXPECTED RESULTS `my_org` will use custom venv ##### ACTUAL RESULTS `my_org` raises an error when apllying custom venv ##### ADDITIONAL INFORMATION I've checked both containers `awx_web` and `awx_task`, they have `/opt/custom-venvs/my_env/` dir with working venv. Even if `PATCH api/v2/settings/system/` works properly (according to it answer, and i can see added venv in web interface), `GET api/v2/config/` still returns no venv's <details> <summary>api/v2/config/ answer</summary> ``` { "time_zone": "UTC", "license_info": { "license_key": "OPEN", "valid_key": true, "compliant": true, "features": { "activity_streams": true, "ha": true, "ldap": true, "multiple_organizations": true, "surveys": true, "system_tracking": true, "rebranding": true, "enterprise_auth": true, "workflows": true }, "license_type": "open" }, "version": "9.3.0", "ansible_version": "2.9.5", "eula": "", "analytics_status": "off", "become_methods": [ [ "sudo", "Sudo" ], [ "su", "Su" ], [ "pbrun", "Pbrun" ], [ "pfexec", "Pfexec" ], [ "dzdo", "DZDO" ], [ "pmrun", "Pmrun" ], [ "runas", "Runas" ], [ "enable", "Enable" ], [ "doas", "Doas" ], [ "ksu", "Ksu" ], [ "machinectl", "Machinectl" ], [ "sesu", "Sesu" ] ], "project_base_dir": "/var/lib/awx/projects", "project_local_paths": [], "custom_virtualenvs": [ "/var/lib/awx/venv/ansible/" ] } ``` </details> After finding that venv doesn't apply even in `system`, i've tried to make fresh install of awx on another kube cluster, with same results.
priority
virtualenv in kubernetes deployment doesn t work issue type bug report summary error when applying curl x patch d custom virtualenv opt custom venvs my env h content type application json custom virtualenv environment awx version awx install method kubernetes ansible version steps to reproduce install awx to kubernetes with similar config inventory config localhost ansible connection local ansible python interpreter usr bin env python dockerhub base ansible kubernetes context mycontext kubernetes namespace awx kubernetes ingress hostname myingress awx task hostname awx awx web hostname awxweb postgres data dir awx pgdocker host port host port ssl docker compose dir awx awxcompose pg hostname mypghost pg username awx pg password mypgpass pg database awx pg port rabbitmq password awxpass rabbitmq erlang cookie cookiemonster admin user admin admin password myadminpass secret key mysecretkey logos blob master trademarks md venv vars yaml custom venvs name my env python python ansible version python modules dnspython zabbix api jmespath assigning custom venv according to curl x patch d custom venv paths h content type application json answer activity stream enabled true activity stream enabled for inventory sync false org admins can see all users true manage organization auth true tower url base myurl remote host headers http x forwarded for proxy ip whitelist license redhat username admin redhat password encrypted automation analytics url install uuid custom venv paths opt custom venvs my env insights tracking state false broker durability true automation analytics last gather null automation analytics gather interval assigning custom venv to organization and get and error curl x patch d custom virtualenv opt custom venvs my env h content type application json error custom virtualenv expected results my org will use custom venv actual results my org raises an error when apllying custom venv additional information i ve checked both containers awx web and awx task they have opt custom venvs my env dir with working venv even if patch api settings system works properly according to it answer and i can see added venv in web interface get api config still returns no venv s api config answer time zone utc license info license key open valid key true compliant true features activity streams true ha true ldap true multiple organizations true surveys true system tracking true rebranding true enterprise auth true workflows true license type open version ansible version eula analytics status off become methods sudo sudo su su pbrun pbrun pfexec pfexec dzdo dzdo pmrun pmrun runas runas enable enable doas doas ksu ksu machinectl machinectl sesu sesu project base dir var lib awx projects project local paths custom virtualenvs var lib awx venv ansible after finding that venv doesn t apply even in system i ve tried to make fresh install of awx on another kube cluster with same results
1
388,300
11,485,962,079
IssuesEvent
2020-02-11 08:58:53
DigitalCampus/moodle-block_oppia_mobile_export
https://api.github.com/repos/DigitalCampus/moodle-block_oppia_mobile_export
closed
Activity icon not found if there is a space in the file name
bug medium priority
On export, if an image file in the page has a space in the filename, then it displays in the activity page, but doesn't get picked up to be used as the activity icon
1.0
Activity icon not found if there is a space in the file name - On export, if an image file in the page has a space in the filename, then it displays in the activity page, but doesn't get picked up to be used as the activity icon
priority
activity icon not found if there is a space in the file name on export if an image file in the page has a space in the filename then it displays in the activity page but doesn t get picked up to be used as the activity icon
1
490,405
14,119,132,118
IssuesEvent
2020-11-08 16:21:59
AY2021S1-CS2113-T13-2/tp
https://api.github.com/repos/AY2021S1-CS2113-T13-2/tp
closed
Complete multiple "completed" command inaccurate error message
priority.Medium
![image](https://user-images.githubusercontent.com/48993548/98450357-20337480-2177-11eb-9d63-67f728c0caae.png) Both modules above are already completed.
1.0
Complete multiple "completed" command inaccurate error message - ![image](https://user-images.githubusercontent.com/48993548/98450357-20337480-2177-11eb-9d63-67f728c0caae.png) Both modules above are already completed.
priority
complete multiple completed command inaccurate error message both modules above are already completed
1
736,047
25,455,522,890
IssuesEvent
2022-11-24 13:54:07
frappe/erpnext
https://api.github.com/repos/frappe/erpnext
closed
On Job Card, updating the 'Qty To Manufacture' after Material Transfer does reset the Transferred Qty in the Raw Materials table
bug manufacturing valid Medium Priority
## Description of the issue On Job Card, updating the 'Qty To Manufacture' after Material Transfer does reset the Transferred Qty in the Raw Materials table **Output of `bench version`** ``` 13.16 ``` ## Steps to reproduce the issue 1. Job Card 'Qty To Manufacture' is 10 2. Hit Material Transfer button, 3. Enter 'For Quantity' = 8 and submit stock entry 4. Back in Job Card, 'Transferred Qty' in Raw Materials table shows correct qty for 8 FG 5. Still in Job card, set 'Qty To Manufacture' to 8 6. The Raw Materials table is recalculated and all 'Transferred Qty' is lost ### Observed result ![image](https://user-images.githubusercontent.com/9451512/145071251-4c89653a-2396-42a6-aed3-53335c5d7919.png) ![image](https://user-images.githubusercontent.com/9451512/145071349-387f995d-38a5-42ee-823b-dc0d0d35c6b4.png)
1.0
On Job Card, updating the 'Qty To Manufacture' after Material Transfer does reset the Transferred Qty in the Raw Materials table - ## Description of the issue On Job Card, updating the 'Qty To Manufacture' after Material Transfer does reset the Transferred Qty in the Raw Materials table **Output of `bench version`** ``` 13.16 ``` ## Steps to reproduce the issue 1. Job Card 'Qty To Manufacture' is 10 2. Hit Material Transfer button, 3. Enter 'For Quantity' = 8 and submit stock entry 4. Back in Job Card, 'Transferred Qty' in Raw Materials table shows correct qty for 8 FG 5. Still in Job card, set 'Qty To Manufacture' to 8 6. The Raw Materials table is recalculated and all 'Transferred Qty' is lost ### Observed result ![image](https://user-images.githubusercontent.com/9451512/145071251-4c89653a-2396-42a6-aed3-53335c5d7919.png) ![image](https://user-images.githubusercontent.com/9451512/145071349-387f995d-38a5-42ee-823b-dc0d0d35c6b4.png)
priority
on job card updating the qty to manufacture after material transfer does reset the transferred qty in the raw materials table description of the issue on job card updating the qty to manufacture after material transfer does reset the transferred qty in the raw materials table output of bench version steps to reproduce the issue job card qty to manufacture is hit material transfer button enter for quantity and submit stock entry back in job card transferred qty in raw materials table shows correct qty for fg still in job card set qty to manufacture to the raw materials table is recalculated and all transferred qty is lost observed result
1
549,628
16,096,076,763
IssuesEvent
2021-04-27 00:04:16
Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
https://api.github.com/repos/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
closed
Goblin Top Hat
:art: 3D graphics :triangular_ruler: :grey_exclamation: priority medium :question: suggestion :question:
<!-- DO NOT REMOVE PRE-EXISTING LINES IF YOU WANT TO SUGGEST A FEW THINGS, OPEN A NEW ISSUE PER EVERY SUGGESTION ---------------------------------------------------------------------------------------------------------- --> **Describe your suggestion in full detail below:** Add a goblin top hat as a possible headgear.
1.0
Goblin Top Hat - <!-- DO NOT REMOVE PRE-EXISTING LINES IF YOU WANT TO SUGGEST A FEW THINGS, OPEN A NEW ISSUE PER EVERY SUGGESTION ---------------------------------------------------------------------------------------------------------- --> **Describe your suggestion in full detail below:** Add a goblin top hat as a possible headgear.
priority
goblin top hat do not remove pre existing lines if you want to suggest a few things open a new issue per every suggestion describe your suggestion in full detail below add a goblin top hat as a possible headgear
1
264,363
8,308,900,850
IssuesEvent
2018-09-24 01:47:38
json-schema-org/json-schema-spec
https://api.github.com/repos/json-schema-org/json-schema-spec
closed
Rename post-split "dependencies" to "schemaDependencies"
Priority: Medium Type: Maintenance core
Previously, we split the old `dependencies` keyword in two: * `requiredDependencies` is an assertion in the validation vocabulary, and behaves the same as the old string array form of `dependencies` * `dependencies` is an applicator in the core spec's applicator vocabulary, and only supports the old schema form This makes `dependencies` incompatible from draft-07 to draft-08: anything using the string form is now _incorrect_ and will not work. This is also confusing for schema authors migrating to draft-08: there is a non-obvious change and they need to change how they think about this keyword. Instead, let's do a true split, and make the schema case `schemaDependencies`. This does two things: 1. It makes the behavior clear from the name, in a way that is consistent with `requiredDependencies` 2. It allows schema authors to continue using `dependencies` with its pre-draft-08 semantics as an _extension_ keyword The second point is particularly compelling. It also gives implementors the ability to continue to support the existing `dependencies` behavior with draft-08 (presumably as an opt-in, or even better with a custom meta-schema using the new vocabulary support allowing schema authors to declare `dependencies` as an extension- we could even offer a "draft-08-transitional" meta-schema that provides this). I've been worried about breaking the `dependencies` keyword in this draft, and I think this is a much better solution for both clarity and migration support. Thoughts? Paging some folks who weighed in on other `dependencies` issues: @erayd @markchart @pipobscure
1.0
Rename post-split "dependencies" to "schemaDependencies" - Previously, we split the old `dependencies` keyword in two: * `requiredDependencies` is an assertion in the validation vocabulary, and behaves the same as the old string array form of `dependencies` * `dependencies` is an applicator in the core spec's applicator vocabulary, and only supports the old schema form This makes `dependencies` incompatible from draft-07 to draft-08: anything using the string form is now _incorrect_ and will not work. This is also confusing for schema authors migrating to draft-08: there is a non-obvious change and they need to change how they think about this keyword. Instead, let's do a true split, and make the schema case `schemaDependencies`. This does two things: 1. It makes the behavior clear from the name, in a way that is consistent with `requiredDependencies` 2. It allows schema authors to continue using `dependencies` with its pre-draft-08 semantics as an _extension_ keyword The second point is particularly compelling. It also gives implementors the ability to continue to support the existing `dependencies` behavior with draft-08 (presumably as an opt-in, or even better with a custom meta-schema using the new vocabulary support allowing schema authors to declare `dependencies` as an extension- we could even offer a "draft-08-transitional" meta-schema that provides this). I've been worried about breaking the `dependencies` keyword in this draft, and I think this is a much better solution for both clarity and migration support. Thoughts? Paging some folks who weighed in on other `dependencies` issues: @erayd @markchart @pipobscure
priority
rename post split dependencies to schemadependencies previously we split the old dependencies keyword in two requireddependencies is an assertion in the validation vocabulary and behaves the same as the old string array form of dependencies dependencies is an applicator in the core spec s applicator vocabulary and only supports the old schema form this makes dependencies incompatible from draft to draft anything using the string form is now incorrect and will not work this is also confusing for schema authors migrating to draft there is a non obvious change and they need to change how they think about this keyword instead let s do a true split and make the schema case schemadependencies this does two things it makes the behavior clear from the name in a way that is consistent with requireddependencies it allows schema authors to continue using dependencies with its pre draft semantics as an extension keyword the second point is particularly compelling it also gives implementors the ability to continue to support the existing dependencies behavior with draft presumably as an opt in or even better with a custom meta schema using the new vocabulary support allowing schema authors to declare dependencies as an extension we could even offer a draft transitional meta schema that provides this i ve been worried about breaking the dependencies keyword in this draft and i think this is a much better solution for both clarity and migration support thoughts paging some folks who weighed in on other dependencies issues erayd markchart pipobscure
1
388,368
11,487,159,026
IssuesEvent
2020-02-11 11:22:01
AugurProject/augur
https://api.github.com/repos/AugurProject/augur
closed
QA Reporting form spacing issue
Bug Needed for V2 launch Priority: Medium
Spacing looks broken here: ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/0afd8f76-f059-4be8-a69b-d36792ff2071) Should look like this: https://www.figma.com/file/aAzKHh4cA6OT2t7WFv2BQ7fB/Reporting-and-Disputing?node-id=198%3A7607 ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/86eba37f-a1e2-445e-8930-bbe00595a1fc) And additional scalar information like this: https://www.figma.com/file/aAzKHh4cA6OT2t7WFv2BQ7fB/Reporting-and-Disputing?node-id=2324%3A4169 ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/8e29f50e-8212-4ce7-8446-b3dcc692acb7)
1.0
QA Reporting form spacing issue - Spacing looks broken here: ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/0afd8f76-f059-4be8-a69b-d36792ff2071) Should look like this: https://www.figma.com/file/aAzKHh4cA6OT2t7WFv2BQ7fB/Reporting-and-Disputing?node-id=198%3A7607 ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/86eba37f-a1e2-445e-8930-bbe00595a1fc) And additional scalar information like this: https://www.figma.com/file/aAzKHh4cA6OT2t7WFv2BQ7fB/Reporting-and-Disputing?node-id=2324%3A4169 ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/8e29f50e-8212-4ce7-8446-b3dcc692acb7)
priority
qa reporting form spacing issue spacing looks broken here should look like this and additional scalar information like this
1
334,717
10,144,359,563
IssuesEvent
2019-08-04 20:12:19
flextype/flextype
https://api.github.com/repos/flextype/flextype
opened
Flextype Admin Panel: Store Entires/Collections counter in cache
priority: medium status: open type: improvement
Store Entires/Collections counter in cache. If counter exists **then** display it **else** store counter number this is will speed up the app!
1.0
Flextype Admin Panel: Store Entires/Collections counter in cache - Store Entires/Collections counter in cache. If counter exists **then** display it **else** store counter number this is will speed up the app!
priority
flextype admin panel store entires collections counter in cache store entires collections counter in cache if counter exists then display it else store counter number this is will speed up the app
1
655,068
21,676,969,306
IssuesEvent
2022-05-08 21:36:14
azerothcore/azerothcore-wotlk
https://api.github.com/repos/azerothcore/azerothcore-wotlk
closed
[Paladin] Doing Paladin breadcrumb quest results in quest hidden
Confirmed 1-19 Class - Paladin Priority-Medium
### Current Behaviour If you take for instance ["Jol" ](https://wowgaming.altervista.org/aowow/?quest=10366) as a DWARF it will tell you to go to exodar and hand it in. You will not get any follow up. Then checking your dwarf trainer in IF does not show a marker, but instead the marker is hidden ![image](https://user-images.githubusercontent.com/20357406/160439262-e819597f-7ff1-428b-8862-53773ebe8f91.png) **** ### Expected Blizzlike Behaviour I think you should be sent to your faction specific trainer. E.g. as dwarf you should be sent to Ironforge, and as Human to Stormwind. ### Source ` ### Steps to reproduce the problem 1. be level 12 dwarf paladin 2. ..q add 10366 3. go to joll hand it in 4. notice no follow up 5. go to if check trainer, notice no marker ### Extra Notes Alliance only ### AC rev. hash/commit 89ba502bfc09 ### Operating system Manjaro x64 ### Custom changes or Modules _No response_
1.0
[Paladin] Doing Paladin breadcrumb quest results in quest hidden - ### Current Behaviour If you take for instance ["Jol" ](https://wowgaming.altervista.org/aowow/?quest=10366) as a DWARF it will tell you to go to exodar and hand it in. You will not get any follow up. Then checking your dwarf trainer in IF does not show a marker, but instead the marker is hidden ![image](https://user-images.githubusercontent.com/20357406/160439262-e819597f-7ff1-428b-8862-53773ebe8f91.png) **** ### Expected Blizzlike Behaviour I think you should be sent to your faction specific trainer. E.g. as dwarf you should be sent to Ironforge, and as Human to Stormwind. ### Source ` ### Steps to reproduce the problem 1. be level 12 dwarf paladin 2. ..q add 10366 3. go to joll hand it in 4. notice no follow up 5. go to if check trainer, notice no marker ### Extra Notes Alliance only ### AC rev. hash/commit 89ba502bfc09 ### Operating system Manjaro x64 ### Custom changes or Modules _No response_
priority
doing paladin breadcrumb quest results in quest hidden current behaviour if you take for instance as a dwarf it will tell you to go to exodar and hand it in you will not get any follow up then checking your dwarf trainer in if does not show a marker but instead the marker is hidden expected blizzlike behaviour i think you should be sent to your faction specific trainer e g as dwarf you should be sent to ironforge and as human to stormwind source steps to reproduce the problem be level dwarf paladin q add go to joll hand it in notice no follow up go to if check trainer notice no marker extra notes alliance only ac rev hash commit operating system manjaro custom changes or modules no response
1
196,318
6,926,756,598
IssuesEvent
2017-11-30 20:18:01
minio/minio
https://api.github.com/repos/minio/minio
closed
Update kernel tuning doc to mention disabling transparent hugepages
priority: medium
<!--- Provide a general summary of the issue in the Title above --> **Not using template on purpose** [“Transparent Hugepages”](https://www.kernel.org/doc/Documentation/vm/transhuge.txt) is a Linux kernel feature intended to improve performance by making more efficient use of your processor’s memory-mapping hardware. It is enabled (”enabled=always”) by default in most Linux distributions. Transparent Hugepages gives some applications a [small performance improvement](https://lwn.net/Articles/423590/) (~ 10% at best, 0-3% more typically), but can cause [significant](https://docs.mongodb.com/manual/tutorial/transparent-huge-pages/) [performance](https://blogs.oracle.com/linux/entry/performance_issues_with_transparent_huge) [problems](https://docs.splunk.com/Documentation/Splunk/6.5.2/ReleaseNotes/SplunkandTHP), or even apparent [memory](https://www.digitalocean.com/company/blog/transparent-huge-pages-and-alternative-memory-allocators/) [leaks](https://github.com/golang/go/issues/8832) at worst. To avoid these problems, you should set `enabled=madvise` on your servers by running ``` echo madvise | sudo tee /sys/kernel/mm/transparent_hugepage/enabled ``` and setting `transparent_hugepage=madvise` on your kernel command line (e.g. in /etc/default/grub). This change will allow applications that are optimized for transparent hugepages to obtain the performance benefits, and prevent the associated problems otherwise. https://blog.nelhage.com/post/transparent-hugepages/
1.0
Update kernel tuning doc to mention disabling transparent hugepages - <!--- Provide a general summary of the issue in the Title above --> **Not using template on purpose** [“Transparent Hugepages”](https://www.kernel.org/doc/Documentation/vm/transhuge.txt) is a Linux kernel feature intended to improve performance by making more efficient use of your processor’s memory-mapping hardware. It is enabled (”enabled=always”) by default in most Linux distributions. Transparent Hugepages gives some applications a [small performance improvement](https://lwn.net/Articles/423590/) (~ 10% at best, 0-3% more typically), but can cause [significant](https://docs.mongodb.com/manual/tutorial/transparent-huge-pages/) [performance](https://blogs.oracle.com/linux/entry/performance_issues_with_transparent_huge) [problems](https://docs.splunk.com/Documentation/Splunk/6.5.2/ReleaseNotes/SplunkandTHP), or even apparent [memory](https://www.digitalocean.com/company/blog/transparent-huge-pages-and-alternative-memory-allocators/) [leaks](https://github.com/golang/go/issues/8832) at worst. To avoid these problems, you should set `enabled=madvise` on your servers by running ``` echo madvise | sudo tee /sys/kernel/mm/transparent_hugepage/enabled ``` and setting `transparent_hugepage=madvise` on your kernel command line (e.g. in /etc/default/grub). This change will allow applications that are optimized for transparent hugepages to obtain the performance benefits, and prevent the associated problems otherwise. https://blog.nelhage.com/post/transparent-hugepages/
priority
update kernel tuning doc to mention disabling transparent hugepages not using template on purpose is a linux kernel feature intended to improve performance by making more efficient use of your processor’s memory mapping hardware it is enabled ”enabled always” by default in most linux distributions transparent hugepages gives some applications a at best more typically but can cause or even apparent at worst to avoid these problems you should set enabled madvise on your servers by running echo madvise sudo tee sys kernel mm transparent hugepage enabled and setting transparent hugepage madvise on your kernel command line e g in etc default grub this change will allow applications that are optimized for transparent hugepages to obtain the performance benefits and prevent the associated problems otherwise
1
544,423
15,893,452,538
IssuesEvent
2021-04-11 05:55:54
k-roffle/knitting-service
https://api.github.com/repos/k-roffle/knitting-service
closed
Desgin List API에 clean architecture 적용
Priority: Medium Refactor
handler에서 직접적으로 entity에 접근하고 있습니다. model로 한 번 변환해준 후 리스트로 내려줄 수 있도록 변경합니다.
1.0
Desgin List API에 clean architecture 적용 - handler에서 직접적으로 entity에 접근하고 있습니다. model로 한 번 변환해준 후 리스트로 내려줄 수 있도록 변경합니다.
priority
desgin list api에 clean architecture 적용 handler에서 직접적으로 entity에 접근하고 있습니다 model로 한 번 변환해준 후 리스트로 내려줄 수 있도록 변경합니다
1
180,455
6,650,048,956
IssuesEvent
2017-09-28 15:06:08
rukayaj/species
https://api.github.com/repos/rukayaj/species
opened
Reptile spatial data update
high-priority medium-length-task
Please find update of spatial data for Reptiles – if possible can you check if there are any mismatch between shapefile names and SIS exports, by just checking for which taxa no maps appear please? I think, you did it before for mammals….. Or should I add it to the to do list, as the names have been edited to match what is in SIS, however, I might need to do a new export, but I will check with Krystal in which workingset the updated assessments are. M:\Public\Dewidine\Submission\Spatial data\Final Interpreted Distributions 2017 All files to be uploaded, we might later remove the subspecies, but this is still to be discussed.
1.0
Reptile spatial data update - Please find update of spatial data for Reptiles – if possible can you check if there are any mismatch between shapefile names and SIS exports, by just checking for which taxa no maps appear please? I think, you did it before for mammals….. Or should I add it to the to do list, as the names have been edited to match what is in SIS, however, I might need to do a new export, but I will check with Krystal in which workingset the updated assessments are. M:\Public\Dewidine\Submission\Spatial data\Final Interpreted Distributions 2017 All files to be uploaded, we might later remove the subspecies, but this is still to be discussed.
priority
reptile spatial data update please find update of spatial data for reptiles – if possible can you check if there are any mismatch between shapefile names and sis exports by just checking for which taxa no maps appear please i think you did it before for mammals… or should i add it to the to do list as the names have been edited to match what is in sis however i might need to do a new export but i will check with krystal in which workingset the updated assessments are m public dewidine submission spatial data final interpreted distributions all files to be uploaded we might later remove the subspecies but this is still to be discussed
1
475,294
13,690,836,847
IssuesEvent
2020-09-30 14:50:53
carbon-design-system/ibm-dotcom-library
https://api.github.com/repos/carbon-design-system/ibm-dotcom-library
opened
Web Component: Date picker - Implement a fluid variant
dev package: carbon web components priority: medium
#### User Story <!-- {{Provide a detailed description of the user's need here, but avoid any type of solutions}} --> > As a `[user role below]`: IBM.com Library developer > I need to: create a fluid variant of the `Date picker` control > so that I can: provide the ibm.com adopter developers Carbon feature parity in the components they use to build ibm.com web pages #### Additional information <!-- {{Please provide any additional information or resources for reference}} --> - [Fluid inputs sketch file link](https://ibm.ent.box.com/s/g97s3a2s7l7bn66wkbxnt30rj3j45bbc) - Add the corresponding styles to: https://github.com/carbon-design-system/carbon-web-components/blob/master/src/components/input/input.scss - Add the markup of fluid mode to: https://github.com/carbon-design-system/carbon-web-components/blob/master/src/components/input/input.ts - [Carbon Design reference](https://react.carbondesignsystem.com/) - Prod QA testing issue (#?prodqa issue?) #### Acceptance criteria - [ ] Corresponding styles are added - [ ] Fluid mode markup is added - [ ] Minimum 80% unit test coverage - [ ] A comment is posted in the Prod QA issue, tagging Praveen when development is finished
1.0
Web Component: Date picker - Implement a fluid variant - #### User Story <!-- {{Provide a detailed description of the user's need here, but avoid any type of solutions}} --> > As a `[user role below]`: IBM.com Library developer > I need to: create a fluid variant of the `Date picker` control > so that I can: provide the ibm.com adopter developers Carbon feature parity in the components they use to build ibm.com web pages #### Additional information <!-- {{Please provide any additional information or resources for reference}} --> - [Fluid inputs sketch file link](https://ibm.ent.box.com/s/g97s3a2s7l7bn66wkbxnt30rj3j45bbc) - Add the corresponding styles to: https://github.com/carbon-design-system/carbon-web-components/blob/master/src/components/input/input.scss - Add the markup of fluid mode to: https://github.com/carbon-design-system/carbon-web-components/blob/master/src/components/input/input.ts - [Carbon Design reference](https://react.carbondesignsystem.com/) - Prod QA testing issue (#?prodqa issue?) #### Acceptance criteria - [ ] Corresponding styles are added - [ ] Fluid mode markup is added - [ ] Minimum 80% unit test coverage - [ ] A comment is posted in the Prod QA issue, tagging Praveen when development is finished
priority
web component date picker implement a fluid variant user story as a ibm com library developer i need to create a fluid variant of the date picker control so that i can provide the ibm com adopter developers carbon feature parity in the components they use to build ibm com web pages additional information add the corresponding styles to add the markup of fluid mode to prod qa testing issue prodqa issue acceptance criteria corresponding styles are added fluid mode markup is added minimum unit test coverage a comment is posted in the prod qa issue tagging praveen when development is finished
1
3,399
2,538,021,347
IssuesEvent
2015-01-27 01:06:07
ubc/acj-versus
https://api.github.com/repos/ubc/acj-versus
opened
How to handle display names?
medium priority question
There is some inconsistency with how we use display name vs. full name right now. Most notably, the question screen shows "Displayname (Fullname)", while the comparisons screen shows "Fullname". Which is the preferred approach: should we always show both (allowing instructors/TAs to regularly see/check display names) or just show full names (meaning less reading/parsing for instructors/TAs)? Michael also suggested perhaps we don't need display names. Instead, we could make submissions always anonymous for students (e.g., all student answers would read "Student answered on January 26 at 5 p.m." to other students) and show only full names to instructors/TAs. Pros: Instructors/TAs don't have to monitor display names (which students can now change to identify themselves or be inappropriate). Students are assured of anonymity. Cons: Students can't have non-anonymous interactions with each other in the app. Instructors/TAs can't set up an assignment for a forum-like discussion.
1.0
How to handle display names? - There is some inconsistency with how we use display name vs. full name right now. Most notably, the question screen shows "Displayname (Fullname)", while the comparisons screen shows "Fullname". Which is the preferred approach: should we always show both (allowing instructors/TAs to regularly see/check display names) or just show full names (meaning less reading/parsing for instructors/TAs)? Michael also suggested perhaps we don't need display names. Instead, we could make submissions always anonymous for students (e.g., all student answers would read "Student answered on January 26 at 5 p.m." to other students) and show only full names to instructors/TAs. Pros: Instructors/TAs don't have to monitor display names (which students can now change to identify themselves or be inappropriate). Students are assured of anonymity. Cons: Students can't have non-anonymous interactions with each other in the app. Instructors/TAs can't set up an assignment for a forum-like discussion.
priority
how to handle display names there is some inconsistency with how we use display name vs full name right now most notably the question screen shows displayname fullname while the comparisons screen shows fullname which is the preferred approach should we always show both allowing instructors tas to regularly see check display names or just show full names meaning less reading parsing for instructors tas michael also suggested perhaps we don t need display names instead we could make submissions always anonymous for students e g all student answers would read student answered on january at p m to other students and show only full names to instructors tas pros instructors tas don t have to monitor display names which students can now change to identify themselves or be inappropriate students are assured of anonymity cons students can t have non anonymous interactions with each other in the app instructors tas can t set up an assignment for a forum like discussion
1
77,758
3,507,248,615
IssuesEvent
2016-01-08 12:09:48
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
[Bug] Talent Vengeance (Paladin) (BB #737)
migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** Alex_Step **Original Date:** 07.11.2014 17:55:46 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/737 <hr> How should work: Gives you a 5% bonus to Physical and Holy damage you deal for 30 sec after dealing a critical strike from a **weapon swing, spell, or ability**. This effect stacks up to 3 times. Problem: No proc after critical strike seals, such as: Seal of Command, Seal of Blood
1.0
[Bug] Talent Vengeance (Paladin) (BB #737) - This issue was migrated from bitbucket. **Original Reporter:** Alex_Step **Original Date:** 07.11.2014 17:55:46 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/737 <hr> How should work: Gives you a 5% bonus to Physical and Holy damage you deal for 30 sec after dealing a critical strike from a **weapon swing, spell, or ability**. This effect stacks up to 3 times. Problem: No proc after critical strike seals, such as: Seal of Command, Seal of Blood
priority
talent vengeance paladin bb this issue was migrated from bitbucket original reporter alex step original date gmt original priority major original type bug original state resolved direct link how should work gives you a bonus to physical and holy damage you deal for sec after dealing a critical strike from a weapon swing spell or ability this effect stacks up to times problem no proc after critical strike seals such as seal of command seal of blood
1
216,264
7,302,666,732
IssuesEvent
2018-02-27 10:26:20
SANBIBiodiversityforLife/species
https://api.github.com/repos/SANBIBiodiversityforLife/species
closed
Sparids (marine fish group) export from SIS to be imported
high-priority medium-length-task sprint-1
Must check with D to see exactly what is supposed to happen here. Does it replace what came in from Seakeys?
1.0
Sparids (marine fish group) export from SIS to be imported - Must check with D to see exactly what is supposed to happen here. Does it replace what came in from Seakeys?
priority
sparids marine fish group export from sis to be imported must check with d to see exactly what is supposed to happen here does it replace what came in from seakeys
1
327,177
9,967,648,554
IssuesEvent
2019-07-08 14:02:17
VandyHacks/vaken
https://api.github.com/repos/VandyHacks/vaken
closed
Get rid of explicit any
Priority: medium Type: Chore
I think we're being a bit lazy with using "any". We should get to a point where we can enable no-explicit-any in eslint. Some examples of the annoying bullshit this can cause are the "as statements" I had to add here. https://github.com/VandyHacks/vaken/pull/271
1.0
Get rid of explicit any - I think we're being a bit lazy with using "any". We should get to a point where we can enable no-explicit-any in eslint. Some examples of the annoying bullshit this can cause are the "as statements" I had to add here. https://github.com/VandyHacks/vaken/pull/271
priority
get rid of explicit any i think we re being a bit lazy with using any we should get to a point where we can enable no explicit any in eslint some examples of the annoying bullshit this can cause are the as statements i had to add here
1
522,004
15,146,779,956
IssuesEvent
2021-02-11 07:59:25
CMSCompOps/WmAgentScripts
https://api.github.com/repos/CMSCompOps/WmAgentScripts
opened
Filtering and automation panel: Implement functions to get information about input datasets
New Feature Priority: Medium
**Impact of the new feature** Management of resubmissions **Is your feature request related to a problem? Please describe.** Motivation: #731 **Describe the solution you'd like** The following 4 functions should be implemented: [1] https://github.com/CMSCompOps/WmAgentScripts/blob/21cb7dc8efbd992d5282b24e8598a8f842b3f70c/assistance/Workflow.py#L68-L106 **Describe alternatives you've considered** - **Additional context** @hbakhshi FYI
1.0
Filtering and automation panel: Implement functions to get information about input datasets - **Impact of the new feature** Management of resubmissions **Is your feature request related to a problem? Please describe.** Motivation: #731 **Describe the solution you'd like** The following 4 functions should be implemented: [1] https://github.com/CMSCompOps/WmAgentScripts/blob/21cb7dc8efbd992d5282b24e8598a8f842b3f70c/assistance/Workflow.py#L68-L106 **Describe alternatives you've considered** - **Additional context** @hbakhshi FYI
priority
filtering and automation panel implement functions to get information about input datasets impact of the new feature management of resubmissions is your feature request related to a problem please describe motivation describe the solution you d like the following functions should be implemented describe alternatives you ve considered additional context hbakhshi fyi
1
406,882
11,903,608,191
IssuesEvent
2020-03-30 15:34:50
unfoldingWord/translationCore
https://api.github.com/repos/unfoldingWord/translationCore
closed
Missing verses screen is skipped in some situations
Kind/Bug Priority/Medium Status/NeedsEstimate
0.8.1-alpha.18-f5cb8b8 [55-1TI.usfm.zip](https://github.com/unfoldingWord-dev/translationCore/files/1759737/55-1TI.usfm.zip) [57-TIT.usfm.zip](https://github.com/unfoldingWord-dev/translationCore/files/1759738/57-TIT.usfm.zip) 1. Import the 1T1 project 2. Choose CC-BY-SA as the license and en as the language in the validation stepper 3. Note that there are two missing verses 4. Launch the project with tW 5. Click on the Tools icon in the menu bar 6. Click the Go to Projects button 7. Repeat steps 1 - 6 for the TIT project ------------------------------------------------ 8. Select the 1TI project 9. Repeat steps 3 - 6 10. Select the TIT project 11. Note that you are taken immediately to the tools selection screen having skipped over the missing verses screen.
1.0
Missing verses screen is skipped in some situations - 0.8.1-alpha.18-f5cb8b8 [55-1TI.usfm.zip](https://github.com/unfoldingWord-dev/translationCore/files/1759737/55-1TI.usfm.zip) [57-TIT.usfm.zip](https://github.com/unfoldingWord-dev/translationCore/files/1759738/57-TIT.usfm.zip) 1. Import the 1T1 project 2. Choose CC-BY-SA as the license and en as the language in the validation stepper 3. Note that there are two missing verses 4. Launch the project with tW 5. Click on the Tools icon in the menu bar 6. Click the Go to Projects button 7. Repeat steps 1 - 6 for the TIT project ------------------------------------------------ 8. Select the 1TI project 9. Repeat steps 3 - 6 10. Select the TIT project 11. Note that you are taken immediately to the tools selection screen having skipped over the missing verses screen.
priority
missing verses screen is skipped in some situations alpha import the project choose cc by sa as the license and en as the language in the validation stepper note that there are two missing verses launch the project with tw click on the tools icon in the menu bar click the go to projects button repeat steps for the tit project select the project repeat steps select the tit project note that you are taken immediately to the tools selection screen having skipped over the missing verses screen
1
641,914
20,844,031,616
IssuesEvent
2022-03-21 06:18:14
CreeperMagnet/the-creepers-code
https://api.github.com/repos/CreeperMagnet/the-creepers-code
closed
Lockets of learning appear as snail buckets in some cases
priority: medium
Simply an incorrect CustomModelData value was inserted.
1.0
Lockets of learning appear as snail buckets in some cases - Simply an incorrect CustomModelData value was inserted.
priority
lockets of learning appear as snail buckets in some cases simply an incorrect custommodeldata value was inserted
1
190,120
6,810,055,014
IssuesEvent
2017-11-05 00:14:56
ArmaAchilles/AresModAchillesExpansion
https://api.github.com/repos/ArmaAchilles/AresModAchillesExpansion
closed
ReadMe.md changes
change priority/medium resolved
These issues below should be addressed: - [x] Change the addon description to something shorter, laconical - [x] Narrow down the links, buttons. There are too many links - [x] Make the whole design prettier - more attractive - [x] Add how to contribute and add some info to the wiki
1.0
ReadMe.md changes - These issues below should be addressed: - [x] Change the addon description to something shorter, laconical - [x] Narrow down the links, buttons. There are too many links - [x] Make the whole design prettier - more attractive - [x] Add how to contribute and add some info to the wiki
priority
readme md changes these issues below should be addressed change the addon description to something shorter laconical narrow down the links buttons there are too many links make the whole design prettier more attractive add how to contribute and add some info to the wiki
1
746,171
26,018,493,954
IssuesEvent
2022-12-21 10:31:24
authelia/authelia
https://api.github.com/repos/authelia/authelia
closed
Support for password expiration
priority/3/medium type/feature area/ldap
I am using the LDAP integration to connect Authelia to FreeIPA. I noticed that even after a user's password expires they're still able to log in to services protected by authelia. In addition using authelia to reset a users password does not reset it's expiry information. I would like for users with expired passwords to not be able to log in and then properly reset their password through authelia which would "unexpire" their password. I'm not sure if there's a workaround/feature I'm missing here or if authelia doesn't currently support this. Cheers!
1.0
Support for password expiration - I am using the LDAP integration to connect Authelia to FreeIPA. I noticed that even after a user's password expires they're still able to log in to services protected by authelia. In addition using authelia to reset a users password does not reset it's expiry information. I would like for users with expired passwords to not be able to log in and then properly reset their password through authelia which would "unexpire" their password. I'm not sure if there's a workaround/feature I'm missing here or if authelia doesn't currently support this. Cheers!
priority
support for password expiration i am using the ldap integration to connect authelia to freeipa i noticed that even after a user s password expires they re still able to log in to services protected by authelia in addition using authelia to reset a users password does not reset it s expiry information i would like for users with expired passwords to not be able to log in and then properly reset their password through authelia which would unexpire their password i m not sure if there s a workaround feature i m missing here or if authelia doesn t currently support this cheers
1
53,765
3,047,321,102
IssuesEvent
2015-08-11 03:25:37
piccolo2d/piccolo2d.java
https://api.github.com/repos/piccolo2d/piccolo2d.java
closed
Cannot turn off interacting at the PRoot level
Component-Core Effort-Low Milestone-1.3 OpSys-All Priority-Medium Status-Verified Toolkit-Piccolo2D.Java Type-Enhancement
Originally reported on Google Code with ID 21 ``` Currently the ways of downgrading animation quality are to create an animation or to set interacting on the Canvas. However, if you are trying to indicate that all canvases which are showing a particular node should set interacting to true, there is no easy way to do this. The proposed fix is to add a correlating setInteracting method to PRoot. Here is a unified diff of the proposed fix: Index: src/edu/umd/cs/piccolo/PRoot.java =================================================================== --- src/edu/umd/cs/piccolo/PRoot.java (revision 16) +++ src/edu/umd/cs/piccolo/PRoot.java (revision 17) @@ -29,26 +29,25 @@ */ package edu.umd.cs.piccolo; +import edu.umd.cs.piccolo.activities.PActivity; +import edu.umd.cs.piccolo.activities.PActivityScheduler; +import edu.umd.cs.piccolo.util.PDebug; +import edu.umd.cs.piccolo.util.PNodeFilter; + +import javax.swing.*; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.Iterator; import java.util.List; -import javax.swing.SwingUtilities; -import javax.swing.Timer; - -import edu.umd.cs.piccolo.activities.PActivity; -import edu.umd.cs.piccolo.activities.PActivityScheduler; -import edu.umd.cs.piccolo.util.PDebug; -import edu.umd.cs.piccolo.util.PNodeFilter; - /** * PRoot serves as the top node in Piccolo's runtime structure. * The PRoot responsible for running the main UI loop that processes * input from activities and external events. - * <P> + * <p/> + * + * @author Jesse Grosjean * @version 1.1 - * @author Jesse Grosjean */ public class PRoot extends PNode { @@ -60,10 +59,13 @@ */ public static final String PROPERTY_INPUT_SOURCES = "inputSources"; public static final int PROPERTY_CODE_INPUT_SOURCES = 1 << 14; + public static final String PROPERTY_INTERACTING_CHANGED = "INTERACTING_CHANGED_NOTIFICATION"; + public static final int PROPERTY_CODE_INTERACTING_CHANGED = 1 << 13; protected transient boolean processingInputs; protected transient boolean processInputsScheduled; + private transient int interacting; private PInputManager defaultInputManager; private transient List inputSources; private transient long globalTime; @@ -122,6 +124,7 @@ public boolean accept(PNode aNode) { return (aNode instanceof PCamera) && (((PCamera)aNode).getComponent() != null); } + public boolean acceptChildrenOf(PNode aNode) { return true; } @@ -162,6 +165,46 @@ } /** + * Return true if this root has been marked as interacting. If so + * the root will normally render at a lower quality that is faster. + * + * @return True if this root has user interaction taking place + */ + public boolean getInteracting() { + return interacting > 0; + } + + /** + * Set if this root is interacting. If so the root will normally + * render at a lower quality that is faster. Also repaints the root if the + * the interaction has ended. + * <p/> + * This has similar functionality to the setInteracting method on Canvas, + * but this is the appropriate place to mark interactions that may occur + * in multiple canvases if this Root is shared. + * + * @param isInteracting True if this root has user interaction taking place + * @see PCanvas#setInteracting(boolean) + */ + public void setInteracting(boolean isInteracting) { + boolean wasInteracting = getInteracting(); + + if (isInteracting) { + interacting++; + } else { + interacting--; + } + + isInteracting = getInteracting(); + if (!isInteracting) { + repaint(); + } + if (wasInteracting != isInteracting) { + firePropertyChange(PROPERTY_CODE_INTERACTING_CHANGED, PROPERTY_INTERACTING_CHANGED, wasInteracting, isInteracting); + } + } + + /** * Advanced. If you want to add additional input sources to the roots * UI process you can do that here. You will seldom do this unless you * are making additions to the piccolo framework. Index: src/edu/umd/cs/piccolo/PCanvas.java =================================================================== --- src/edu/umd/cs/piccolo/PCanvas.java (revision 16) +++ src/edu/umd/cs/piccolo/PCanvas.java (revision 17) @@ -34,6 +34,7 @@ import edu.umd.cs.piccolo.event.PZoomEventHandler; import edu.umd.cs.piccolo.util.*; +import javax.swing.FocusManager; import javax.swing.*; import java.awt.*; import java.awt.event.*; @@ -50,7 +51,7 @@ */ public class PCanvas extends JComponent implements PComponent { - public static final String INTERATING_CHANGED_NOTIFICATION = "INTERATING_CHANGED_NOTIFICATION"; + public static final String INTERACTING_CHANGED_NOTIFICATION = "INTERACTING_CHANGED_NOTIFICATION"; public static PCanvas CURRENT_ZCANVAS = null; @@ -209,7 +210,7 @@ * the canvas will normally render at a lower quality that is faster. */ public boolean getInteracting() { - return interacting > 0; + return interacting > 0 || getRoot().getInteracting(); } /** @@ -248,7 +249,7 @@ isInteracting = getInteracting(); if (wasInteracting != isInteracting) { - firePropertyChange(INTERATING_CHANGED_NOTIFICATION, wasInteracting, isInteracting); + firePropertyChange(INTERACTING_CHANGED_NOTIFICATION, wasInteracting, isInteracting); } } ``` Reported by `steveonjava` on 2008-06-24 08:37:39
1.0
Cannot turn off interacting at the PRoot level - Originally reported on Google Code with ID 21 ``` Currently the ways of downgrading animation quality are to create an animation or to set interacting on the Canvas. However, if you are trying to indicate that all canvases which are showing a particular node should set interacting to true, there is no easy way to do this. The proposed fix is to add a correlating setInteracting method to PRoot. Here is a unified diff of the proposed fix: Index: src/edu/umd/cs/piccolo/PRoot.java =================================================================== --- src/edu/umd/cs/piccolo/PRoot.java (revision 16) +++ src/edu/umd/cs/piccolo/PRoot.java (revision 17) @@ -29,26 +29,25 @@ */ package edu.umd.cs.piccolo; +import edu.umd.cs.piccolo.activities.PActivity; +import edu.umd.cs.piccolo.activities.PActivityScheduler; +import edu.umd.cs.piccolo.util.PDebug; +import edu.umd.cs.piccolo.util.PNodeFilter; + +import javax.swing.*; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.Iterator; import java.util.List; -import javax.swing.SwingUtilities; -import javax.swing.Timer; - -import edu.umd.cs.piccolo.activities.PActivity; -import edu.umd.cs.piccolo.activities.PActivityScheduler; -import edu.umd.cs.piccolo.util.PDebug; -import edu.umd.cs.piccolo.util.PNodeFilter; - /** * PRoot serves as the top node in Piccolo's runtime structure. * The PRoot responsible for running the main UI loop that processes * input from activities and external events. - * <P> + * <p/> + * + * @author Jesse Grosjean * @version 1.1 - * @author Jesse Grosjean */ public class PRoot extends PNode { @@ -60,10 +59,13 @@ */ public static final String PROPERTY_INPUT_SOURCES = "inputSources"; public static final int PROPERTY_CODE_INPUT_SOURCES = 1 << 14; + public static final String PROPERTY_INTERACTING_CHANGED = "INTERACTING_CHANGED_NOTIFICATION"; + public static final int PROPERTY_CODE_INTERACTING_CHANGED = 1 << 13; protected transient boolean processingInputs; protected transient boolean processInputsScheduled; + private transient int interacting; private PInputManager defaultInputManager; private transient List inputSources; private transient long globalTime; @@ -122,6 +124,7 @@ public boolean accept(PNode aNode) { return (aNode instanceof PCamera) && (((PCamera)aNode).getComponent() != null); } + public boolean acceptChildrenOf(PNode aNode) { return true; } @@ -162,6 +165,46 @@ } /** + * Return true if this root has been marked as interacting. If so + * the root will normally render at a lower quality that is faster. + * + * @return True if this root has user interaction taking place + */ + public boolean getInteracting() { + return interacting > 0; + } + + /** + * Set if this root is interacting. If so the root will normally + * render at a lower quality that is faster. Also repaints the root if the + * the interaction has ended. + * <p/> + * This has similar functionality to the setInteracting method on Canvas, + * but this is the appropriate place to mark interactions that may occur + * in multiple canvases if this Root is shared. + * + * @param isInteracting True if this root has user interaction taking place + * @see PCanvas#setInteracting(boolean) + */ + public void setInteracting(boolean isInteracting) { + boolean wasInteracting = getInteracting(); + + if (isInteracting) { + interacting++; + } else { + interacting--; + } + + isInteracting = getInteracting(); + if (!isInteracting) { + repaint(); + } + if (wasInteracting != isInteracting) { + firePropertyChange(PROPERTY_CODE_INTERACTING_CHANGED, PROPERTY_INTERACTING_CHANGED, wasInteracting, isInteracting); + } + } + + /** * Advanced. If you want to add additional input sources to the roots * UI process you can do that here. You will seldom do this unless you * are making additions to the piccolo framework. Index: src/edu/umd/cs/piccolo/PCanvas.java =================================================================== --- src/edu/umd/cs/piccolo/PCanvas.java (revision 16) +++ src/edu/umd/cs/piccolo/PCanvas.java (revision 17) @@ -34,6 +34,7 @@ import edu.umd.cs.piccolo.event.PZoomEventHandler; import edu.umd.cs.piccolo.util.*; +import javax.swing.FocusManager; import javax.swing.*; import java.awt.*; import java.awt.event.*; @@ -50,7 +51,7 @@ */ public class PCanvas extends JComponent implements PComponent { - public static final String INTERATING_CHANGED_NOTIFICATION = "INTERATING_CHANGED_NOTIFICATION"; + public static final String INTERACTING_CHANGED_NOTIFICATION = "INTERACTING_CHANGED_NOTIFICATION"; public static PCanvas CURRENT_ZCANVAS = null; @@ -209,7 +210,7 @@ * the canvas will normally render at a lower quality that is faster. */ public boolean getInteracting() { - return interacting > 0; + return interacting > 0 || getRoot().getInteracting(); } /** @@ -248,7 +249,7 @@ isInteracting = getInteracting(); if (wasInteracting != isInteracting) { - firePropertyChange(INTERATING_CHANGED_NOTIFICATION, wasInteracting, isInteracting); + firePropertyChange(INTERACTING_CHANGED_NOTIFICATION, wasInteracting, isInteracting); } } ``` Reported by `steveonjava` on 2008-06-24 08:37:39
priority
cannot turn off interacting at the proot level originally reported on google code with id currently the ways of downgrading animation quality are to create an animation or to set interacting on the canvas however if you are trying to indicate that all canvases which are showing a particular node should set interacting to true there is no easy way to do this the proposed fix is to add a correlating setinteracting method to proot here is a unified diff of the proposed fix index src edu umd cs piccolo proot java src edu umd cs piccolo proot java revision src edu umd cs piccolo proot java revision package edu umd cs piccolo import edu umd cs piccolo activities pactivity import edu umd cs piccolo activities pactivityscheduler import edu umd cs piccolo util pdebug import edu umd cs piccolo util pnodefilter import javax swing import java awt event actionlistener import java util arraylist import java util iterator import java util list import javax swing swingutilities import javax swing timer import edu umd cs piccolo activities pactivity import edu umd cs piccolo activities pactivityscheduler import edu umd cs piccolo util pdebug import edu umd cs piccolo util pnodefilter proot serves as the top node in piccolo s runtime structure the proot responsible for running the main ui loop that processes input from activities and external events author jesse grosjean version author jesse grosjean public class proot extends pnode public static final string property input sources inputsources public static final int property code input sources public static final string property interacting changed interacting changed notification public static final int property code interacting changed protected transient boolean processinginputs protected transient boolean processinputsscheduled private transient int interacting private pinputmanager defaultinputmanager private transient list inputsources private transient long globaltime public boolean accept pnode anode return anode instanceof pcamera pcamera anode getcomponent null public boolean acceptchildrenof pnode anode return true return true if this root has been marked as interacting if so the root will normally render at a lower quality that is faster return true if this root has user interaction taking place public boolean getinteracting return interacting set if this root is interacting if so the root will normally render at a lower quality that is faster also repaints the root if the the interaction has ended this has similar functionality to the setinteracting method on canvas but this is the appropriate place to mark interactions that may occur in multiple canvases if this root is shared param isinteracting true if this root has user interaction taking place see pcanvas setinteracting boolean public void setinteracting boolean isinteracting boolean wasinteracting getinteracting if isinteracting interacting else interacting isinteracting getinteracting if isinteracting repaint if wasinteracting isinteracting firepropertychange property code interacting changed property interacting changed wasinteracting isinteracting advanced if you want to add additional input sources to the roots ui process you can do that here you will seldom do this unless you are making additions to the piccolo framework index src edu umd cs piccolo pcanvas java src edu umd cs piccolo pcanvas java revision src edu umd cs piccolo pcanvas java revision import edu umd cs piccolo event pzoomeventhandler import edu umd cs piccolo util import javax swing focusmanager import javax swing import java awt import java awt event public class pcanvas extends jcomponent implements pcomponent public static final string interating changed notification interating changed notification public static final string interacting changed notification interacting changed notification public static pcanvas current zcanvas null the canvas will normally render at a lower quality that is faster public boolean getinteracting return interacting return interacting getroot getinteracting isinteracting getinteracting if wasinteracting isinteracting firepropertychange interating changed notification wasinteracting isinteracting firepropertychange interacting changed notification wasinteracting isinteracting reported by steveonjava on
1
126,430
4,995,505,882
IssuesEvent
2016-12-09 10:23:25
ubuntudesign/developer.ubuntu.com
https://api.github.com/repos/ubuntudesign/developer.ubuntu.com
opened
Add image lightbox feature
Priority: Medium Type: Enhancement
We need to be able to open images in a lightbox to see clearly details of diagrams etc.
1.0
Add image lightbox feature - We need to be able to open images in a lightbox to see clearly details of diagrams etc.
priority
add image lightbox feature we need to be able to open images in a lightbox to see clearly details of diagrams etc
1
528,910
15,376,888,103
IssuesEvent
2021-03-02 16:28:09
Sage-Bionetworks/rocc
https://api.github.com/repos/Sage-Bionetworks/rocc
closed
Identify the framework for the client prototype
Priority: Medium
Here are some aspects to consider for the selection of the web client framework - The pages generated "by default" should be appealing / meet modern UI standard (important for positive feedback from LT) - Because @vpchung is implementing the client, it should be a framework she knows or a different framework with a low learning curve. - We should accept that the production client will use a different framework. But the best scenario is still if the production client can be achieved by further working on the codebase of the prototype. @vpchung Could you follow [this tutorial](https://www.freecodecamp.org/news/angular-8-tutorial-in-easy-steps/) and tell me what your first impressions of Angular are? I have develop one large project with it in 2019 and would enjoy providing support and even help with the implementation if times permit.
1.0
Identify the framework for the client prototype - Here are some aspects to consider for the selection of the web client framework - The pages generated "by default" should be appealing / meet modern UI standard (important for positive feedback from LT) - Because @vpchung is implementing the client, it should be a framework she knows or a different framework with a low learning curve. - We should accept that the production client will use a different framework. But the best scenario is still if the production client can be achieved by further working on the codebase of the prototype. @vpchung Could you follow [this tutorial](https://www.freecodecamp.org/news/angular-8-tutorial-in-easy-steps/) and tell me what your first impressions of Angular are? I have develop one large project with it in 2019 and would enjoy providing support and even help with the implementation if times permit.
priority
identify the framework for the client prototype here are some aspects to consider for the selection of the web client framework the pages generated by default should be appealing meet modern ui standard important for positive feedback from lt because vpchung is implementing the client it should be a framework she knows or a different framework with a low learning curve we should accept that the production client will use a different framework but the best scenario is still if the production client can be achieved by further working on the codebase of the prototype vpchung could you follow and tell me what your first impressions of angular are i have develop one large project with it in and would enjoy providing support and even help with the implementation if times permit
1
711,947
24,480,385,359
IssuesEvent
2022-10-08 18:56:40
ArjunSharda/Searchor
https://api.github.com/repos/ArjunSharda/Searchor
closed
Copy URL to clipboard
enhancement Priority: Medium hacktoberfest
**Is your feature request related to a problem? Please describe if so, otherwise leave this blank..** **Describe the feature** The URL generated will be directly copied to clipboard **Provide any alternatives to the feature you've considered** **Additional information** Dependencies : `pyperclip` library
1.0
Copy URL to clipboard - **Is your feature request related to a problem? Please describe if so, otherwise leave this blank..** **Describe the feature** The URL generated will be directly copied to clipboard **Provide any alternatives to the feature you've considered** **Additional information** Dependencies : `pyperclip` library
priority
copy url to clipboard is your feature request related to a problem please describe if so otherwise leave this blank describe the feature the url generated will be directly copied to clipboard provide any alternatives to the feature you ve considered additional information dependencies pyperclip library
1
695,303
23,851,620,539
IssuesEvent
2022-09-06 18:30:19
WordPress/openverse-frontend
https://api.github.com/repos/WordPress/openverse-frontend
closed
Filter sidebar styles are incorrect after rezing window horizontally from small back to large
🟨 priority: medium 🛠 goal: fix 🕹 aspect: interface
## Description <!-- Concisely describe the bug. Compare your experience with what you expected to happen. --> <!-- For example: "I clicked the 'submit' button and instead of seeing a thank you message, I saw a blank page." --> After resizing one's browser from a typical desktop size to small enough to view the mobile filters ui, returning to the desktop width results in a broken user interface. The `has-sidebar` css class fails to be reapplied to the main element. ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. On a desktop display, open the filter sidebar 2. Drag the width of the window to around 300px, to switch to the mobile filter view 3. Drag the window back to the original width 4. Observe the site's `main` element is missing the `has-sidebar` class and that the sidebar is covering the site content ## Screenshots <!-- Add screenshots to show the problem; or delete the section entirely. --> <img width="1162" alt="CleanShot 2022-05-13 at 15 27 24@2x" src="https://user-images.githubusercontent.com/6351754/168376180-b2842cc6-52c0-42d1-8e49-8f5fa5818906.png">
1.0
Filter sidebar styles are incorrect after rezing window horizontally from small back to large - ## Description <!-- Concisely describe the bug. Compare your experience with what you expected to happen. --> <!-- For example: "I clicked the 'submit' button and instead of seeing a thank you message, I saw a blank page." --> After resizing one's browser from a typical desktop size to small enough to view the mobile filters ui, returning to the desktop width results in a broken user interface. The `has-sidebar` css class fails to be reapplied to the main element. ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. On a desktop display, open the filter sidebar 2. Drag the width of the window to around 300px, to switch to the mobile filter view 3. Drag the window back to the original width 4. Observe the site's `main` element is missing the `has-sidebar` class and that the sidebar is covering the site content ## Screenshots <!-- Add screenshots to show the problem; or delete the section entirely. --> <img width="1162" alt="CleanShot 2022-05-13 at 15 27 24@2x" src="https://user-images.githubusercontent.com/6351754/168376180-b2842cc6-52c0-42d1-8e49-8f5fa5818906.png">
priority
filter sidebar styles are incorrect after rezing window horizontally from small back to large description after resizing one s browser from a typical desktop size to small enough to view the mobile filters ui returning to the desktop width results in a broken user interface the has sidebar css class fails to be reapplied to the main element reproduction on a desktop display open the filter sidebar drag the width of the window to around to switch to the mobile filter view drag the window back to the original width observe the site s main element is missing the has sidebar class and that the sidebar is covering the site content screenshots img width alt cleanshot at src
1
28,371
2,701,243,808
IssuesEvent
2015-04-05 02:44:08
jupmorenor/201220-padv-proyectofinal
https://api.github.com/repos/jupmorenor/201220-padv-proyectofinal
closed
Code review request
auto-migrated Priority-Medium Type-Review
``` Branch name: Purpose of code changes on this branch: When reviewing my code changes, please focus on: After the review, I'll merge this branch into: /trunk ``` Original issue reported on code.google.com by `karenv0...@gmail.com` on 18 Nov 2012 at 4:42
1.0
Code review request - ``` Branch name: Purpose of code changes on this branch: When reviewing my code changes, please focus on: After the review, I'll merge this branch into: /trunk ``` Original issue reported on code.google.com by `karenv0...@gmail.com` on 18 Nov 2012 at 4:42
priority
code review request branch name purpose of code changes on this branch when reviewing my code changes please focus on after the review i ll merge this branch into trunk original issue reported on code google com by gmail com on nov at
1
428,676
12,415,068,874
IssuesEvent
2020-05-22 15:34:37
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio-ui] Fix form engine close exception
enhancement priority: medium
There's a new method on UI next content service called `unlock` content. On the form engine window, use this method and close the form on successful unlock instead of the sync XHR it does currently.
1.0
[studio-ui] Fix form engine close exception - There's a new method on UI next content service called `unlock` content. On the form engine window, use this method and close the form on successful unlock instead of the sync XHR it does currently.
priority
fix form engine close exception there s a new method on ui next content service called unlock content on the form engine window use this method and close the form on successful unlock instead of the sync xhr it does currently
1
385,157
11,414,127,627
IssuesEvent
2020-02-02 00:14:40
v0idp/Mellow
https://api.github.com/repos/v0idp/Mellow
closed
Redirect to /config if valid Token in Cookie exists
Feature Request Medium Priority
Users should be redirect to /config if a valid token exists in cookie.
1.0
Redirect to /config if valid Token in Cookie exists - Users should be redirect to /config if a valid token exists in cookie.
priority
redirect to config if valid token in cookie exists users should be redirect to config if a valid token exists in cookie
1
109,812
4,414,219,995
IssuesEvent
2016-08-13 09:01:44
eMoflon/emoflon
https://api.github.com/repos/eMoflon/emoflon
closed
Return to long links
feature-request medium-priority
After several disappointments with the link shortener tiny.cc (e.g., #760), we switch back to long links.
1.0
Return to long links - After several disappointments with the link shortener tiny.cc (e.g., #760), we switch back to long links.
priority
return to long links after several disappointments with the link shortener tiny cc e g we switch back to long links
1
731,653
25,225,907,054
IssuesEvent
2022-11-14 15:57:54
bounswe/bounswe2022group7
https://api.github.com/repos/bounswe/bounswe2022group7
opened
Fix .env issue in Mobile Widget Tests
Type: Bug Status: In Progress Priority: High Difficulty: Medium Target: Mobile
Since the `main` method in `main.dart` file is not run during the widget tests, the `.env` file cannot be loaded and the test fails as the IP address and the port cannot be loaded from it. - [ ] Open a hotfix branch - [ ] Update the `api_endpoints.dart` so that it will not throw an exception when the `.env` file cannot be loaded - [ ] Open the pull request and send it for review **Deadline: 15/11/2022, 15:00** **Reviewer: @atillaturkmen**
1.0
Fix .env issue in Mobile Widget Tests - Since the `main` method in `main.dart` file is not run during the widget tests, the `.env` file cannot be loaded and the test fails as the IP address and the port cannot be loaded from it. - [ ] Open a hotfix branch - [ ] Update the `api_endpoints.dart` so that it will not throw an exception when the `.env` file cannot be loaded - [ ] Open the pull request and send it for review **Deadline: 15/11/2022, 15:00** **Reviewer: @atillaturkmen**
priority
fix env issue in mobile widget tests since the main method in main dart file is not run during the widget tests the env file cannot be loaded and the test fails as the ip address and the port cannot be loaded from it open a hotfix branch update the api endpoints dart so that it will not throw an exception when the env file cannot be loaded open the pull request and send it for review deadline reviewer atillaturkmen
1
427,864
12,399,993,380
IssuesEvent
2020-05-21 06:48:58
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Can't get SEGI to work in the title screen
Fix Version: 0.9.0.0 Priority: Medium Status: Fixed Week Task
![image](https://user-images.githubusercontent.com/14983165/82109411-7359cc80-96ea-11ea-96f7-5cf7e504af71.png) I get this error when I try to add SEGI to the title screen camera. I'd like it to be the same settings as SEGI in-game.
1.0
Can't get SEGI to work in the title screen - ![image](https://user-images.githubusercontent.com/14983165/82109411-7359cc80-96ea-11ea-96f7-5cf7e504af71.png) I get this error when I try to add SEGI to the title screen camera. I'd like it to be the same settings as SEGI in-game.
priority
can t get segi to work in the title screen i get this error when i try to add segi to the title screen camera i d like it to be the same settings as segi in game
1
449,262
12,965,930,522
IssuesEvent
2020-07-20 23:30:25
nimona/go-nimona
https://api.github.com/repos/nimona/go-nimona
closed
feat: add object loader
Priority: Medium Type: Enhancement
Now that objects support references, we need a way to go through an object, find all references, look up their equivalent objects, and load them in the refs' place. Name needs some work.
1.0
feat: add object loader - Now that objects support references, we need a way to go through an object, find all references, look up their equivalent objects, and load them in the refs' place. Name needs some work.
priority
feat add object loader now that objects support references we need a way to go through an object find all references look up their equivalent objects and load them in the refs place name needs some work
1
401,367
11,789,214,855
IssuesEvent
2020-03-17 16:47:01
abs0lut3pwn4g3/RTB-CTF-Framework
https://api.github.com/repos/abs0lut3pwn4g3/RTB-CTF-Framework
closed
Freeze Scoreboard automatically
enhancement gssoc20 help wanted medium priority
Freezing scoreboard once the CTF is ended. According to the running time provided in config.py Idea: might be possible using `datetime` module
1.0
Freeze Scoreboard automatically - Freezing scoreboard once the CTF is ended. According to the running time provided in config.py Idea: might be possible using `datetime` module
priority
freeze scoreboard automatically freezing scoreboard once the ctf is ended according to the running time provided in config py idea might be possible using datetime module
1
168,110
6,362,211,591
IssuesEvent
2017-07-31 14:33:10
telerik/kendo-ui-core
https://api.github.com/repos/telerik/kendo-ui-core
closed
Editing cells in range, when filter is applied, modifies the cells in between
Bug C: Spreadsheet Kendo2 Priority 2 SEV: Medium
### Bug report Cells that are not visible due to applied filter are updated when editing cells range that includes them. ### Reproduction of the problem 1. Go to http://demos.telerik.com/kendo-ui/spreadsheet/sorting-filtering 2. Change Date column filter for display just rows with 6/30/2014 and 7/2/2014, it will hide row 5 and 6 3. Select a cell range from a column in 4 and 7 for example client column for both rows, delete the content 4. Remove the filters ### Current behavior Modified rows 4,5,6,7 ### Expected/desired behavior Modified rows 4,7 ### Environment * **Kendo UI version:** 2017.1.223 * **Browser:** all
1.0
Editing cells in range, when filter is applied, modifies the cells in between - ### Bug report Cells that are not visible due to applied filter are updated when editing cells range that includes them. ### Reproduction of the problem 1. Go to http://demos.telerik.com/kendo-ui/spreadsheet/sorting-filtering 2. Change Date column filter for display just rows with 6/30/2014 and 7/2/2014, it will hide row 5 and 6 3. Select a cell range from a column in 4 and 7 for example client column for both rows, delete the content 4. Remove the filters ### Current behavior Modified rows 4,5,6,7 ### Expected/desired behavior Modified rows 4,7 ### Environment * **Kendo UI version:** 2017.1.223 * **Browser:** all
priority
editing cells in range when filter is applied modifies the cells in between bug report cells that are not visible due to applied filter are updated when editing cells range that includes them reproduction of the problem go to change date column filter for display just rows with and it will hide row and select a cell range from a column in and for example client column for both rows delete the content remove the filters current behavior modified rows expected desired behavior modified rows environment kendo ui version browser all
1
278,983
8,655,567,059
IssuesEvent
2018-11-27 16:14:33
ansible/awx
https://api.github.com/repos/ansible/awx
closed
In workflow Visualizer, Auditors cannot see Jobs on the Node selection view
component:api component:ui flag:qe priority:medium state:needs_devel type:bug
##### ISSUE TYPE - Bug Report ##### COMPONENT NAME - API - UI ##### SUMMARY In workflow Visualizer, Auditors cannot see Jobs in the Node selection view ##### ENVIRONMENT * AWX version: 3.4.0-devel ##### STEPS TO REPRODUCE 1. Create a system auditor attached to an org 2. Ensure that the org has a workflow with at least 1 JT or WFJT. 3. As the system auditor, open the workflow visualizer and attempt to view the Jobs List in the Node selection screen Note: Inventory and Project Nodes are available. Jobs are not listed ##### ADDITIONAL INFORMATION ![screen shot 2018-11-26 at 7 50 23 pm](https://user-images.githubusercontent.com/12446869/49051220-ec8ef800-f1b4-11e8-8b18-161c34a5cc20.png)
1.0
In workflow Visualizer, Auditors cannot see Jobs on the Node selection view - ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME - API - UI ##### SUMMARY In workflow Visualizer, Auditors cannot see Jobs in the Node selection view ##### ENVIRONMENT * AWX version: 3.4.0-devel ##### STEPS TO REPRODUCE 1. Create a system auditor attached to an org 2. Ensure that the org has a workflow with at least 1 JT or WFJT. 3. As the system auditor, open the workflow visualizer and attempt to view the Jobs List in the Node selection screen Note: Inventory and Project Nodes are available. Jobs are not listed ##### ADDITIONAL INFORMATION ![screen shot 2018-11-26 at 7 50 23 pm](https://user-images.githubusercontent.com/12446869/49051220-ec8ef800-f1b4-11e8-8b18-161c34a5cc20.png)
priority
in workflow visualizer auditors cannot see jobs on the node selection view issue type bug report component name api ui summary in workflow visualizer auditors cannot see jobs in the node selection view environment awx version devel steps to reproduce create a system auditor attached to an org ensure that the org has a workflow with at least jt or wfjt as the system auditor open the workflow visualizer and attempt to view the jobs list in the node selection screen note inventory and project nodes are available jobs are not listed additional information
1
603,291
18,536,831,536
IssuesEvent
2021-10-21 12:27:14
P7-Team/P7-Report
https://api.github.com/repos/P7-Team/P7-Report
opened
This Project's Contribution
Introduction Priority:Medium
**What should be written?** This section should summarize the findings in Related Work and Problems Suitable for Distribution, and talk about the "hole" that we have found. It should then present the problem statement / contribution for the project. It should then either present the requirements or lead to the next chapter where the requirements are presented, depending on how long the list is.
1.0
This Project's Contribution - **What should be written?** This section should summarize the findings in Related Work and Problems Suitable for Distribution, and talk about the "hole" that we have found. It should then present the problem statement / contribution for the project. It should then either present the requirements or lead to the next chapter where the requirements are presented, depending on how long the list is.
priority
this project s contribution what should be written this section should summarize the findings in related work and problems suitable for distribution and talk about the hole that we have found it should then present the problem statement contribution for the project it should then either present the requirements or lead to the next chapter where the requirements are presented depending on how long the list is
1
17,123
2,615,131,526
IssuesEvent
2015-03-01 06:01:35
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
opened
Google Cloud Print java Sample
auto-migrated Priority-Medium Type-Sample
``` Please Provide Google Cloud Print Sample For Java environment Java 1.4+ Also Provide API ,reference, guide ``` Original issue reported on code.google.com by `jaydeep...@gmail.com` on 18 Feb 2013 at 12:36
1.0
Google Cloud Print java Sample - ``` Please Provide Google Cloud Print Sample For Java environment Java 1.4+ Also Provide API ,reference, guide ``` Original issue reported on code.google.com by `jaydeep...@gmail.com` on 18 Feb 2013 at 12:36
priority
google cloud print java sample please provide google cloud print sample for java environment java also provide api reference guide original issue reported on code google com by jaydeep gmail com on feb at
1
469,661
13,522,972,796
IssuesEvent
2020-09-15 09:17:58
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
opened
BB REST API - Notifications Endpoint (new_message) : Store thread id in the response
feature: enhancement priority: medium
**Is your feature request related to a problem? Please describe.** This enhancement has the same explanation that the issue #1490. If I want to open the full thread based on the notification, I need to extract the thread id (30) from the string link_url. ``` "id": 1131, "user_id": 1, "item_id": 379, "secondary_item_id": 12, "component": "messages", "action": "new_message", "date": "2020-09-15T09:10:13", "is_new": 1, "description": { "rendered": "<a href=\"http:\/\/buddyboss.localhost\/members\/exogeek\/messages\/view\/30\/\">Neville sent you a new private message<\/a>" }, "link_url": "http:\/\/buddyboss.localhost\/members\/exogeek\/messages\/view\/30\/", "rest_actions": "", "object": "user", "object_id": 12, ``` **Describe the solution you'd like** Could you use fields "object" and "object_id" to store the ID of the thread ? ``` "object": "thread", "object_id": 30, ``` **Describe alternatives you've considered** Another solution could be to use the field "secondary_item_id" **Support ticket links** none
1.0
BB REST API - Notifications Endpoint (new_message) : Store thread id in the response - **Is your feature request related to a problem? Please describe.** This enhancement has the same explanation that the issue #1490. If I want to open the full thread based on the notification, I need to extract the thread id (30) from the string link_url. ``` "id": 1131, "user_id": 1, "item_id": 379, "secondary_item_id": 12, "component": "messages", "action": "new_message", "date": "2020-09-15T09:10:13", "is_new": 1, "description": { "rendered": "<a href=\"http:\/\/buddyboss.localhost\/members\/exogeek\/messages\/view\/30\/\">Neville sent you a new private message<\/a>" }, "link_url": "http:\/\/buddyboss.localhost\/members\/exogeek\/messages\/view\/30\/", "rest_actions": "", "object": "user", "object_id": 12, ``` **Describe the solution you'd like** Could you use fields "object" and "object_id" to store the ID of the thread ? ``` "object": "thread", "object_id": 30, ``` **Describe alternatives you've considered** Another solution could be to use the field "secondary_item_id" **Support ticket links** none
priority
bb rest api notifications endpoint new message store thread id in the response is your feature request related to a problem please describe this enhancement has the same explanation that the issue if i want to open the full thread based on the notification i need to extract the thread id from the string link url id user id item id secondary item id component messages action new message date is new description rendered neville sent you a new private message link url http buddyboss localhost members exogeek messages view rest actions object user object id describe the solution you d like could you use fields object and object id to store the id of the thread object thread object id describe alternatives you ve considered another solution could be to use the field secondary item id support ticket links none
1
152,778
5,868,483,102
IssuesEvent
2017-05-14 13:13:33
status-im/status-react
https://api.github.com/repos/status-im/status-react
closed
bchat is not loaded on a second attempt
android bug in progress medium-priority
### Description [comment]: # (Feature or Bug? i.e Type: Bug) *Type*: Bug [comment]: # (Describe the feature you would like, or briefly summarise the bug and what you did, what you expected to happen, and what actually happens. Sections below) *Summary*: If open bchat second time then this screen is shown (no boards): ![bchat view](https://cloud.githubusercontent.com/assets/6584810/25812928/2d948862-3418-11e7-82a2-aed65d84e5f2.png) #### Expected behavior [comment]: # (Describe what you expected to happen.) bchat is opened with list of boards #### Actual behavior [comment]: # (Describe what actually happened.) bchat is loaded with no boards ### Reproduction [comment]: # (Describe how we can replicate the bug step by step.) - Open Status - Open bchat - Close bchat (tap on x in top right corner) - Return to Chats (tap on < in top left corner) - In Chats tap on bchat to open it again ### Additional Information [comment]: # (Please do your best to fill this out.) * Status version: 0.9.6-65 * Operating System: Android 7.0 and 5.0.2 (Galaxy S7 and Galaxy S6) #### Logs Log contains "05-08 11:01:07.157 31634 31634 I chromium: [INFO:CONSOLE(94)] "Uncaught ReferenceError: web3 is not defined", source: http://swarm-gateways.net/bzz:/go-bchat.eth/ (94)" [9f545bfc-bdf9-426e-9546-c83eb16971ac.logcat.txt](https://github.com/status-im/status-react/files/984104/9f545bfc-bdf9-426e-9546-c83eb16971ac.logcat.txt) video of the session (issue is on 5:55 minute) https://prod-us-west-2-results.s3-us-west-2.amazonaws.com/701112774158/92b2d17f-8083-4d2c-8024-bc3b91e44945/3c5615cc-f69a-479d-8131-298197d49d53/00000/00001/00000/56170e9c-88c5-41f0-96bc-58624630b2ac.mp4?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20170508T150716Z&X-Amz-SignedHeaders=host&X-Amz-Expires=259200&X-Amz-Credential=AKIAI3BDGZ5S7TQL2OZA%2F20170508%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=33ab6037976693b4df9e593ae675658b9b18c06f623408321ea4b761213d8d66
1.0
bchat is not loaded on a second attempt - ### Description [comment]: # (Feature or Bug? i.e Type: Bug) *Type*: Bug [comment]: # (Describe the feature you would like, or briefly summarise the bug and what you did, what you expected to happen, and what actually happens. Sections below) *Summary*: If open bchat second time then this screen is shown (no boards): ![bchat view](https://cloud.githubusercontent.com/assets/6584810/25812928/2d948862-3418-11e7-82a2-aed65d84e5f2.png) #### Expected behavior [comment]: # (Describe what you expected to happen.) bchat is opened with list of boards #### Actual behavior [comment]: # (Describe what actually happened.) bchat is loaded with no boards ### Reproduction [comment]: # (Describe how we can replicate the bug step by step.) - Open Status - Open bchat - Close bchat (tap on x in top right corner) - Return to Chats (tap on < in top left corner) - In Chats tap on bchat to open it again ### Additional Information [comment]: # (Please do your best to fill this out.) * Status version: 0.9.6-65 * Operating System: Android 7.0 and 5.0.2 (Galaxy S7 and Galaxy S6) #### Logs Log contains "05-08 11:01:07.157 31634 31634 I chromium: [INFO:CONSOLE(94)] "Uncaught ReferenceError: web3 is not defined", source: http://swarm-gateways.net/bzz:/go-bchat.eth/ (94)" [9f545bfc-bdf9-426e-9546-c83eb16971ac.logcat.txt](https://github.com/status-im/status-react/files/984104/9f545bfc-bdf9-426e-9546-c83eb16971ac.logcat.txt) video of the session (issue is on 5:55 minute) https://prod-us-west-2-results.s3-us-west-2.amazonaws.com/701112774158/92b2d17f-8083-4d2c-8024-bc3b91e44945/3c5615cc-f69a-479d-8131-298197d49d53/00000/00001/00000/56170e9c-88c5-41f0-96bc-58624630b2ac.mp4?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20170508T150716Z&X-Amz-SignedHeaders=host&X-Amz-Expires=259200&X-Amz-Credential=AKIAI3BDGZ5S7TQL2OZA%2F20170508%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=33ab6037976693b4df9e593ae675658b9b18c06f623408321ea4b761213d8d66
priority
bchat is not loaded on a second attempt description feature or bug i e type bug type bug describe the feature you would like or briefly summarise the bug and what you did what you expected to happen and what actually happens sections below summary if open bchat second time then this screen is shown no boards expected behavior describe what you expected to happen bchat is opened with list of boards actual behavior describe what actually happened bchat is loaded with no boards reproduction describe how we can replicate the bug step by step open status open bchat close bchat tap on x in top right corner return to chats tap on in top left corner in chats tap on bchat to open it again additional information please do your best to fill this out status version operating system android and galaxy and galaxy logs log contains i chromium uncaught referenceerror is not defined source video of the session issue is on minute
1
439,823
12,687,616,756
IssuesEvent
2020-06-20 17:25:43
openshift/odo
https://api.github.com/repos/openshift/odo
closed
source type component push does not work in a proxy+disconnected cluster environment
area/disconnected-cluster kind/bug lifecycle/rotten priority/Medium
/kind bug <!-- Welcome! - We kindly ask you to: 1. Fill out the issue template below 2. Use the Google group if you have a question rather than a bug or feature request. The group is at: https://groups.google.com/forum/#!forum/odo-users Thanks for understanding, and for contributing to the project! --> ## What versions of software are you using? **Operating System:** Supported type **Output of `odo version`:** master ## How did you run odo exactly? 1. Get a disconnected cluster with a proxy configured with it 2. odo create component --context ruby-ex/ --------- // For now i am using ruby component because the cluster i have is configured with ruby images only in the disconnected cluster ``` $ odo component create ruby --project rubylocal --context ruby-ex/ Warning: ruby is not fully supported by odo, and it is not guaranteed to work ✓ Validating component [493ms] Please use `odo push` command to create the component with source deployed ``` 3. odo push --context ruby-ex/ ``` $ odo push --context ruby-ex/ -v 9 [...] ✓ Waiting for component to start [41s] I0116 17:49:44.686426 15111 occlient.go:1784] Pod ruby-ruby-ex-hxfk-app-1-z2hwt is Running • Syncing files to the component ... I0116 17:49:44.686520 15111 component.go:701] Copying files to pod I0116 17:49:44.686535 15111 occlient.go:2640] CopyFile arguments: localPath /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex, dest /tmp/src/ruby-ex, copyFiles [], globalExps [/home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.git /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.odo/odo-file-index.json] I0116 17:49:44.686674 15111 occlient.go:2688] makeTar arguments: srcPath: /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex, destPath: /tmp/src/ruby-ex, files: [] I0116 17:49:44.686711 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex, destBase: /tmp/src, destFile: ruby-ex I0116 17:49:44.686722 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex I0116 17:49:44.686898 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.git, destBase: /tmp/src, destFile: ruby-ex/.git I0116 17:49:44.686910 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.git I0116 17:49:44.686933 15111 util.go:569] ignoring path /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.git because of glob rule /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.git I0116 17:49:44.686944 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.gitignore, destBase: /tmp/src, destFile: ruby-ex/.gitignore I0116 17:49:44.686944 15111 round_trippers.go:386] curl -k -v -XPOST -H "X-Stream-Protocol-Version: v4.channel.k8s.io" -H "X-Stream-Protocol-Version: v3.channel.k8s.io" -H "X-Stream-Protocol-Version: v2.channel.k8s.io" -H "X-Stream-Protocol-Version: channel.k8s.io" -H "Authorization: Bearer G8rCFirhCT2lTN5CljYz9kqnTu7B7TLjbxt4CVaHyik" 'https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=tar&command=xf&command=-&command=-C&command=%2Ftmp%2Fsrc&command=--strip&command=1&stderr=true&stdin=true&stdout=true' I0116 17:49:44.686953 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.gitignore I0116 17:49:45.730600 15111 round_trippers.go:405] POST https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=tar&command=xf&command=-&command=-C&command=%2Ftmp%2Fsrc&command=--strip&command=1&stderr=true&stdin=true&stdout=true 101 Switching Protocols in 1043 milliseconds I0116 17:49:45.730632 15111 round_trippers.go:411] Response Headers: I0116 17:49:45.730642 15111 round_trippers.go:414] Upgrade: SPDY/3.1 I0116 17:49:45.730649 15111 round_trippers.go:414] X-Stream-Protocol-Version: v4.channel.k8s.io I0116 17:49:45.730655 15111 round_trippers.go:414] Date: Thu, 16 Jan 2020 12:19:44 GMT I0116 17:49:45.730668 15111 round_trippers.go:414] Connection: Upgrade I0116 17:49:46.746978 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.odo, destBase: /tmp/src, destFile: ruby-ex/.odo I0116 17:49:46.747029 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.odo I0116 17:49:46.747317 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.odo/config.yaml, destBase: /tmp/src, destFile: ruby-ex/.odo/config.yaml I0116 17:49:46.747345 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.odo/config.yaml I0116 17:49:46.747788 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.odo/odo-file-index.json, destBase: /tmp/src, destFile: ruby-ex/.odo/odo-file-index.json I0116 17:49:46.747838 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.odo/odo-file-index.json I0116 17:49:46.747953 15111 util.go:569] ignoring path /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.odo/odo-file-index.json because of glob rule /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.odo/odo-file-index.json I0116 17:49:46.747981 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/Gemfile, destBase: /tmp/src, destFile: ruby-ex/Gemfile I0116 17:49:46.748001 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/Gemfile I0116 17:49:46.751315 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/Gemfile.lock, destBase: /tmp/src, destFile: ruby-ex/Gemfile.lock I0116 17:49:46.751359 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/Gemfile.lock I0116 17:49:46.751756 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/README.md, destBase: /tmp/src, destFile: ruby-ex/README.md I0116 17:49:46.751775 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/README.md I0116 17:49:46.752109 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/config.ru, destBase: /tmp/src, destFile: ruby-ex/config.ru I0116 17:49:46.752126 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/config.ru ✓ Syncing files to the component [12s] • Building component ... I0116 17:49:56.518978 15111 round_trippers.go:386] curl -k -v -XPOST -H "X-Stream-Protocol-Version: v4.channel.k8s.io" -H "X-Stream-Protocol-Version: v3.channel.k8s.io" -H "X-Stream-Protocol-Version: v2.channel.k8s.io" -H "X-Stream-Protocol-Version: channel.k8s.io" -H "Authorization: Bearer G8rCFirhCT2lTN5CljYz9kqnTu7B7TLjbxt4CVaHyik" 'https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=%2Fopt%2Fodo%2Fbin%2Fassemble-and-restart&stderr=true&stdout=true' I0116 17:49:57.616370 15111 round_trippers.go:405] POST https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=%2Fopt%2Fodo%2Fbin%2Fassemble-and-restart&stderr=true&stdout=true 101 Switching Protocols in 1097 milliseconds I0116 17:49:57.616402 15111 round_trippers.go:411] Response Headers: I0116 17:49:57.616412 15111 round_trippers.go:414] X-Stream-Protocol-Version: v4.channel.k8s.io I0116 17:49:57.616418 15111 round_trippers.go:414] Date: Thu, 16 Jan 2020 12:19:56 GMT I0116 17:49:57.616426 15111 round_trippers.go:414] Connection: Upgrade I0116 17:49:57.616432 15111 round_trippers.go:414] Upgrade: SPDY/3.1 + set -eo pipefail + export ODO_UTILS_DIR=/opt/odo + ODO_UTILS_DIR=/opt/odo + export ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json + ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json ++ /opt/odo/bin/getlanguage + IMAGE_LANG= + '[' '!' -z /opt/app-root/src ']' + '[' /tmp '!=' /opt/app-root/src ']' + '[' -n /opt/app-root/src-backup ']' + '[' '!' -d /opt/app-root/src-backup ']' + mkdir -p /opt/app-root/src-backup/src + rsync -rlO /tmp/src/. /opt/app-root/src-backup/src/ + b_IFS=' ' + b_OFS= + OIFS=' ' + IFS=' ' ++ ls -A /tmp/src/ + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.dummy + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.gitignore + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.odo + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile.lock + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/README.md + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/config.ru + OIFS= + IFS=' ' + '[' -n rhscl/ruby-25-rhel7 ']' + '[' rhscl/ruby-25-rhel7 == redhat-openjdk-18/openjdk18-openshift ']' + '[' -f /tmp/src/.s2i/bin/assemble ']' + '[' -n '' ']' + '[' -n /usr/libexec/s2i ']' + rm -rf /opt/app-root/src/.git + /usr/libexec/s2i/assemble ---> Installing application source ... ---> Building your Ruby application from source ... ---> Running 'bundle install --retry 2 --deployment --without development:test' ... Warning: the running version of Bundler (1.16.1) is older than the version that created the lockfile (1.16.4). We suggest you upgrade to the latest version of Bundler by running `gem install bundler`. Fetching source index from https://rubygems.org/ Retrying fetcher due to error (2/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Retrying fetcher due to error (3/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Could not fetch specs from https://rubygems.org/ ✗ Unable to build files + set -eo pipefail + export ODO_UTILS_DIR=/opt/odo + ODO_UTILS_DIR=/opt/odo + export ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json + ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json ++ /opt/odo/bin/getlanguage + IMAGE_LANG= + '[' '!' -z /opt/app-root/src ']' + '[' /tmp '!=' /opt/app-root/src ']' + '[' -n /opt/app-root/src-backup ']' + '[' '!' -d /opt/app-root/src-backup ']' + mkdir -p /opt/app-root/src-backup/src + rsync -rlO /tmp/src/. /opt/app-root/src-backup/src/ + b_IFS=' ' + b_OFS= + OIFS=' ' + IFS=' ' ++ ls -A /tmp/src/ + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.dummy + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.gitignore + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.odo + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile.lock + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/README.md + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/config.ru + OIFS= + IFS=' ' + '[' -n rhscl/ruby-25-rhel7 ']' + '[' rhscl/ruby-25-rhel7 == redhat-openjdk-18/openjdk18-openshift ']' + '[' -f /tmp/src/.s2i/bin/assemble ']' + '[' -n '' ']' + '[' -n /usr/libexec/s2i ']' + rm -rf /opt/app-root/src/.git + /usr/libexec/s2i/assemble ---> Installing application source ... ---> Building your Ruby application from source ... ---> Running 'bundle install --retry 2 --deployment --without development:test' ... Warning: the running version of Bundler (1.16.1) is older than the version that created the lockfile (1.16.4). We suggest you upgrade to the latest version of Bundler by running `gem install bundler`. Fetching source index from https://rubygems.org/ Retrying fetcher due to error (2/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Retrying fetcher due to error (3/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Could not fetch specs from https://rubygems.org/ ✗ Building component [3m] I0116 17:53:18.894697 15111 cmdutils.go:48] Error: Failed to push component: ruby-ruby-ex-hxfk: unable to execute assemble script: error while streaming command: command terminated with exit code 17 ✗ command terminated with exit code 17 ``` ## Actual behavior It works only for git component for example ```odo component create --project ruby && odo push```. AFAIU things are going wrong when init image comes to run certain steps and may be init image involvement overwriting some original configuration in the deploy container. ``` Retrying fetcher due to error (2/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Retrying fetcher due to error (3/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Could not fetch specs from https://rubygems.org/ ``` **NOTE:** Similar issue can be hit with nodejs and java component too. ## Expected behavior ruby packages should be accessible, i mean odo push should be successful. ## Any logs, error output, etc?
1.0
source type component push does not work in a proxy+disconnected cluster environment - /kind bug <!-- Welcome! - We kindly ask you to: 1. Fill out the issue template below 2. Use the Google group if you have a question rather than a bug or feature request. The group is at: https://groups.google.com/forum/#!forum/odo-users Thanks for understanding, and for contributing to the project! --> ## What versions of software are you using? **Operating System:** Supported type **Output of `odo version`:** master ## How did you run odo exactly? 1. Get a disconnected cluster with a proxy configured with it 2. odo create component --context ruby-ex/ --------- // For now i am using ruby component because the cluster i have is configured with ruby images only in the disconnected cluster ``` $ odo component create ruby --project rubylocal --context ruby-ex/ Warning: ruby is not fully supported by odo, and it is not guaranteed to work ✓ Validating component [493ms] Please use `odo push` command to create the component with source deployed ``` 3. odo push --context ruby-ex/ ``` $ odo push --context ruby-ex/ -v 9 [...] ✓ Waiting for component to start [41s] I0116 17:49:44.686426 15111 occlient.go:1784] Pod ruby-ruby-ex-hxfk-app-1-z2hwt is Running • Syncing files to the component ... I0116 17:49:44.686520 15111 component.go:701] Copying files to pod I0116 17:49:44.686535 15111 occlient.go:2640] CopyFile arguments: localPath /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex, dest /tmp/src/ruby-ex, copyFiles [], globalExps [/home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.git /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.odo/odo-file-index.json] I0116 17:49:44.686674 15111 occlient.go:2688] makeTar arguments: srcPath: /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex, destPath: /tmp/src/ruby-ex, files: [] I0116 17:49:44.686711 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex, destBase: /tmp/src, destFile: ruby-ex I0116 17:49:44.686722 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex I0116 17:49:44.686898 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.git, destBase: /tmp/src, destFile: ruby-ex/.git I0116 17:49:44.686910 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.git I0116 17:49:44.686933 15111 util.go:569] ignoring path /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.git because of glob rule /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.git I0116 17:49:44.686944 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.gitignore, destBase: /tmp/src, destFile: ruby-ex/.gitignore I0116 17:49:44.686944 15111 round_trippers.go:386] curl -k -v -XPOST -H "X-Stream-Protocol-Version: v4.channel.k8s.io" -H "X-Stream-Protocol-Version: v3.channel.k8s.io" -H "X-Stream-Protocol-Version: v2.channel.k8s.io" -H "X-Stream-Protocol-Version: channel.k8s.io" -H "Authorization: Bearer G8rCFirhCT2lTN5CljYz9kqnTu7B7TLjbxt4CVaHyik" 'https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=tar&command=xf&command=-&command=-C&command=%2Ftmp%2Fsrc&command=--strip&command=1&stderr=true&stdin=true&stdout=true' I0116 17:49:44.686953 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.gitignore I0116 17:49:45.730600 15111 round_trippers.go:405] POST https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=tar&command=xf&command=-&command=-C&command=%2Ftmp%2Fsrc&command=--strip&command=1&stderr=true&stdin=true&stdout=true 101 Switching Protocols in 1043 milliseconds I0116 17:49:45.730632 15111 round_trippers.go:411] Response Headers: I0116 17:49:45.730642 15111 round_trippers.go:414] Upgrade: SPDY/3.1 I0116 17:49:45.730649 15111 round_trippers.go:414] X-Stream-Protocol-Version: v4.channel.k8s.io I0116 17:49:45.730655 15111 round_trippers.go:414] Date: Thu, 16 Jan 2020 12:19:44 GMT I0116 17:49:45.730668 15111 round_trippers.go:414] Connection: Upgrade I0116 17:49:46.746978 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.odo, destBase: /tmp/src, destFile: ruby-ex/.odo I0116 17:49:46.747029 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.odo I0116 17:49:46.747317 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.odo/config.yaml, destBase: /tmp/src, destFile: ruby-ex/.odo/config.yaml I0116 17:49:46.747345 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.odo/config.yaml I0116 17:49:46.747788 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/.odo/odo-file-index.json, destBase: /tmp/src, destFile: ruby-ex/.odo/odo-file-index.json I0116 17:49:46.747838 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/.odo/odo-file-index.json I0116 17:49:46.747953 15111 util.go:569] ignoring path /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.odo/odo-file-index.json because of glob rule /home/amit/go/src/github.com/openshift/odo/test/ruby/ruby-ex/.odo/odo-file-index.json I0116 17:49:46.747981 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/Gemfile, destBase: /tmp/src, destFile: ruby-ex/Gemfile I0116 17:49:46.748001 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/Gemfile I0116 17:49:46.751315 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/Gemfile.lock, destBase: /tmp/src, destFile: ruby-ex/Gemfile.lock I0116 17:49:46.751359 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/Gemfile.lock I0116 17:49:46.751756 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/README.md, destBase: /tmp/src, destFile: ruby-ex/README.md I0116 17:49:46.751775 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/README.md I0116 17:49:46.752109 15111 occlient.go:2731] recursiveTar arguments: srcBase: /home/amit/go/src/github.com/openshift/odo/test/ruby, srcFile: ruby-ex/config.ru, destBase: /tmp/src, destFile: ruby-ex/config.ru I0116 17:49:46.752126 15111 occlient.go:2737] Corrected destinations: base: /tmp/src file: ruby-ex/config.ru ✓ Syncing files to the component [12s] • Building component ... I0116 17:49:56.518978 15111 round_trippers.go:386] curl -k -v -XPOST -H "X-Stream-Protocol-Version: v4.channel.k8s.io" -H "X-Stream-Protocol-Version: v3.channel.k8s.io" -H "X-Stream-Protocol-Version: v2.channel.k8s.io" -H "X-Stream-Protocol-Version: channel.k8s.io" -H "Authorization: Bearer G8rCFirhCT2lTN5CljYz9kqnTu7B7TLjbxt4CVaHyik" 'https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=%2Fopt%2Fodo%2Fbin%2Fassemble-and-restart&stderr=true&stdout=true' I0116 17:49:57.616370 15111 round_trippers.go:405] POST https://api.airgap46-amit.qe.devcluster.openshift.com:6443/api/v1/namespaces/rubylocal/pods/ruby-ruby-ex-hxfk-app-1-z2hwt/exec?command=%2Fopt%2Fodo%2Fbin%2Fassemble-and-restart&stderr=true&stdout=true 101 Switching Protocols in 1097 milliseconds I0116 17:49:57.616402 15111 round_trippers.go:411] Response Headers: I0116 17:49:57.616412 15111 round_trippers.go:414] X-Stream-Protocol-Version: v4.channel.k8s.io I0116 17:49:57.616418 15111 round_trippers.go:414] Date: Thu, 16 Jan 2020 12:19:56 GMT I0116 17:49:57.616426 15111 round_trippers.go:414] Connection: Upgrade I0116 17:49:57.616432 15111 round_trippers.go:414] Upgrade: SPDY/3.1 + set -eo pipefail + export ODO_UTILS_DIR=/opt/odo + ODO_UTILS_DIR=/opt/odo + export ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json + ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json ++ /opt/odo/bin/getlanguage + IMAGE_LANG= + '[' '!' -z /opt/app-root/src ']' + '[' /tmp '!=' /opt/app-root/src ']' + '[' -n /opt/app-root/src-backup ']' + '[' '!' -d /opt/app-root/src-backup ']' + mkdir -p /opt/app-root/src-backup/src + rsync -rlO /tmp/src/. /opt/app-root/src-backup/src/ + b_IFS=' ' + b_OFS= + OIFS=' ' + IFS=' ' ++ ls -A /tmp/src/ + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.dummy + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.gitignore + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.odo + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile.lock + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/README.md + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/config.ru + OIFS= + IFS=' ' + '[' -n rhscl/ruby-25-rhel7 ']' + '[' rhscl/ruby-25-rhel7 == redhat-openjdk-18/openjdk18-openshift ']' + '[' -f /tmp/src/.s2i/bin/assemble ']' + '[' -n '' ']' + '[' -n /usr/libexec/s2i ']' + rm -rf /opt/app-root/src/.git + /usr/libexec/s2i/assemble ---> Installing application source ... ---> Building your Ruby application from source ... ---> Running 'bundle install --retry 2 --deployment --without development:test' ... Warning: the running version of Bundler (1.16.1) is older than the version that created the lockfile (1.16.4). We suggest you upgrade to the latest version of Bundler by running `gem install bundler`. Fetching source index from https://rubygems.org/ Retrying fetcher due to error (2/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Retrying fetcher due to error (3/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Could not fetch specs from https://rubygems.org/ ✗ Unable to build files + set -eo pipefail + export ODO_UTILS_DIR=/opt/odo + ODO_UTILS_DIR=/opt/odo + export ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json + ODO_IMAGE_MAPPINGS_FILE=/opt/odo/language-scripts/image-mappings.json ++ /opt/odo/bin/getlanguage + IMAGE_LANG= + '[' '!' -z /opt/app-root/src ']' + '[' /tmp '!=' /opt/app-root/src ']' + '[' -n /opt/app-root/src-backup ']' + '[' '!' -d /opt/app-root/src-backup ']' + mkdir -p /opt/app-root/src-backup/src + rsync -rlO /tmp/src/. /opt/app-root/src-backup/src/ + b_IFS=' ' + b_OFS= + OIFS=' ' + IFS=' ' ++ ls -A /tmp/src/ + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.dummy + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.gitignore + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/.odo + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/Gemfile.lock + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/README.md + for file in '`ls -A ${ODO_S2I_SRC_BIN_PATH}/src/`' + rm -fr /opt/app-root/src/config.ru + OIFS= + IFS=' ' + '[' -n rhscl/ruby-25-rhel7 ']' + '[' rhscl/ruby-25-rhel7 == redhat-openjdk-18/openjdk18-openshift ']' + '[' -f /tmp/src/.s2i/bin/assemble ']' + '[' -n '' ']' + '[' -n /usr/libexec/s2i ']' + rm -rf /opt/app-root/src/.git + /usr/libexec/s2i/assemble ---> Installing application source ... ---> Building your Ruby application from source ... ---> Running 'bundle install --retry 2 --deployment --without development:test' ... Warning: the running version of Bundler (1.16.1) is older than the version that created the lockfile (1.16.4). We suggest you upgrade to the latest version of Bundler by running `gem install bundler`. Fetching source index from https://rubygems.org/ Retrying fetcher due to error (2/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Retrying fetcher due to error (3/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Could not fetch specs from https://rubygems.org/ ✗ Building component [3m] I0116 17:53:18.894697 15111 cmdutils.go:48] Error: Failed to push component: ruby-ruby-ex-hxfk: unable to execute assemble script: error while streaming command: command terminated with exit code 17 ✗ command terminated with exit code 17 ``` ## Actual behavior It works only for git component for example ```odo component create --project ruby && odo push```. AFAIU things are going wrong when init image comes to run certain steps and may be init image involvement overwriting some original configuration in the deploy container. ``` Retrying fetcher due to error (2/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Retrying fetcher due to error (3/3): Bundler::HTTPError Could not fetch specs from https://rubygems.org/ Could not fetch specs from https://rubygems.org/ ``` **NOTE:** Similar issue can be hit with nodejs and java component too. ## Expected behavior ruby packages should be accessible, i mean odo push should be successful. ## Any logs, error output, etc?
priority
source type component push does not work in a proxy disconnected cluster environment kind bug welcome we kindly ask you to fill out the issue template below use the google group if you have a question rather than a bug or feature request the group is at thanks for understanding and for contributing to the project what versions of software are you using operating system supported type output of odo version master how did you run odo exactly get a disconnected cluster with a proxy configured with it odo create component context ruby ex for now i am using ruby component because the cluster i have is configured with ruby images only in the disconnected cluster odo component create ruby project rubylocal context ruby ex warning ruby is not fully supported by odo and it is not guaranteed to work ✓ validating component please use odo push command to create the component with source deployed odo push context ruby ex odo push context ruby ex v ✓ waiting for component to start occlient go pod ruby ruby ex hxfk app is running • syncing files to the component component go copying files to pod occlient go copyfile arguments localpath home amit go src github com openshift odo test ruby ruby ex dest tmp src ruby ex copyfiles globalexps occlient go maketar arguments srcpath home amit go src github com openshift odo test ruby ruby ex destpath tmp src ruby ex files occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex destbase tmp src destfile ruby ex occlient go corrected destinations base tmp src file ruby ex occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex git destbase tmp src destfile ruby ex git occlient go corrected destinations base tmp src file ruby ex git util go ignoring path home amit go src github com openshift odo test ruby ruby ex git because of glob rule home amit go src github com openshift odo test ruby ruby ex git occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex gitignore destbase tmp src destfile ruby ex gitignore round trippers go curl k v xpost h x stream protocol version channel io h x stream protocol version channel io h x stream protocol version channel io h x stream protocol version channel io h authorization bearer occlient go corrected destinations base tmp src file ruby ex gitignore round trippers go post switching protocols in milliseconds round trippers go response headers round trippers go upgrade spdy round trippers go x stream protocol version channel io round trippers go date thu jan gmt round trippers go connection upgrade occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex odo destbase tmp src destfile ruby ex odo occlient go corrected destinations base tmp src file ruby ex odo occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex odo config yaml destbase tmp src destfile ruby ex odo config yaml occlient go corrected destinations base tmp src file ruby ex odo config yaml occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex odo odo file index json destbase tmp src destfile ruby ex odo odo file index json occlient go corrected destinations base tmp src file ruby ex odo odo file index json util go ignoring path home amit go src github com openshift odo test ruby ruby ex odo odo file index json because of glob rule home amit go src github com openshift odo test ruby ruby ex odo odo file index json occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex gemfile destbase tmp src destfile ruby ex gemfile occlient go corrected destinations base tmp src file ruby ex gemfile occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex gemfile lock destbase tmp src destfile ruby ex gemfile lock occlient go corrected destinations base tmp src file ruby ex gemfile lock occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex readme md destbase tmp src destfile ruby ex readme md occlient go corrected destinations base tmp src file ruby ex readme md occlient go recursivetar arguments srcbase home amit go src github com openshift odo test ruby srcfile ruby ex config ru destbase tmp src destfile ruby ex config ru occlient go corrected destinations base tmp src file ruby ex config ru ✓ syncing files to the component • building component round trippers go curl k v xpost h x stream protocol version channel io h x stream protocol version channel io h x stream protocol version channel io h x stream protocol version channel io h authorization bearer round trippers go post switching protocols in milliseconds round trippers go response headers round trippers go x stream protocol version channel io round trippers go date thu jan gmt round trippers go connection upgrade round trippers go upgrade spdy set eo pipefail export odo utils dir opt odo odo utils dir opt odo export odo image mappings file opt odo language scripts image mappings json odo image mappings file opt odo language scripts image mappings json opt odo bin getlanguage image lang mkdir p opt app root src backup src rsync rlo tmp src opt app root src backup src b ifs b ofs oifs ifs ls a tmp src for file in ls a odo src bin path src rm fr opt app root src dummy for file in ls a odo src bin path src rm fr opt app root src gitignore for file in ls a odo src bin path src rm fr opt app root src odo for file in ls a odo src bin path src rm fr opt app root src gemfile for file in ls a odo src bin path src rm fr opt app root src gemfile lock for file in ls a odo src bin path src rm fr opt app root src readme md for file in ls a odo src bin path src rm fr opt app root src config ru oifs ifs rm rf opt app root src git usr libexec assemble installing application source building your ruby application from source running bundle install retry deployment without development test warning the running version of bundler is older than the version that created the lockfile we suggest you upgrade to the latest version of bundler by running gem install bundler fetching source index from retrying fetcher due to error bundler httperror could not fetch specs from retrying fetcher due to error bundler httperror could not fetch specs from could not fetch specs from ✗ unable to build files set eo pipefail export odo utils dir opt odo odo utils dir opt odo export odo image mappings file opt odo language scripts image mappings json odo image mappings file opt odo language scripts image mappings json opt odo bin getlanguage image lang mkdir p opt app root src backup src rsync rlo tmp src opt app root src backup src b ifs b ofs oifs ifs ls a tmp src for file in ls a odo src bin path src rm fr opt app root src dummy for file in ls a odo src bin path src rm fr opt app root src gitignore for file in ls a odo src bin path src rm fr opt app root src odo for file in ls a odo src bin path src rm fr opt app root src gemfile for file in ls a odo src bin path src rm fr opt app root src gemfile lock for file in ls a odo src bin path src rm fr opt app root src readme md for file in ls a odo src bin path src rm fr opt app root src config ru oifs ifs rm rf opt app root src git usr libexec assemble installing application source building your ruby application from source running bundle install retry deployment without development test warning the running version of bundler is older than the version that created the lockfile we suggest you upgrade to the latest version of bundler by running gem install bundler fetching source index from retrying fetcher due to error bundler httperror could not fetch specs from retrying fetcher due to error bundler httperror could not fetch specs from could not fetch specs from ✗ building component cmdutils go error failed to push component ruby ruby ex hxfk unable to execute assemble script error while streaming command command terminated with exit code ✗ command terminated with exit code actual behavior it works only for git component for example odo component create project ruby odo push afaiu things are going wrong when init image comes to run certain steps and may be init image involvement overwriting some original configuration in the deploy container retrying fetcher due to error bundler httperror could not fetch specs from retrying fetcher due to error bundler httperror could not fetch specs from could not fetch specs from note similar issue can be hit with nodejs and java component too expected behavior ruby packages should be accessible i mean odo push should be successful any logs error output etc
1
81,673
3,593,349,391
IssuesEvent
2016-02-01 19:23:31
phetsims/tasks
https://api.github.com/repos/phetsims/tasks
closed
Test Rutherford Scattering to prepare for port
Medium Priority QA
@phet-steele (feel free to delegate) Please test the Java version of Rutherford Scattering and report any found issue in the rutherford scattering repo and mark them with a "java bug" label Testing on one platform (windows or mac) is fine, mainly looking for model bugs and such. http://phet.colorado.edu/en/simulation/rutherford-scattering
1.0
Test Rutherford Scattering to prepare for port - @phet-steele (feel free to delegate) Please test the Java version of Rutherford Scattering and report any found issue in the rutherford scattering repo and mark them with a "java bug" label Testing on one platform (windows or mac) is fine, mainly looking for model bugs and such. http://phet.colorado.edu/en/simulation/rutherford-scattering
priority
test rutherford scattering to prepare for port phet steele feel free to delegate please test the java version of rutherford scattering and report any found issue in the rutherford scattering repo and mark them with a java bug label testing on one platform windows or mac is fine mainly looking for model bugs and such
1
674,078
23,038,542,330
IssuesEvent
2022-07-22 22:20:07
usdigitalresponse/arpa-reporter
https://api.github.com/repos/usdigitalresponse/arpa-reporter
closed
[Partner submission] SFRF Audit Report - Adopted Budget Duplicating
bug form submission Medium Priority Audit Report
**Submitted Description:** Some strangeness with the audit report - see photo attached. Adopted Budget is doubled in the Audit Report TCO is doubled as well. TCE results in NaN CPO results in NaN CPE results in NaN **(Optional) Uploaded file - click to download:** https://www.jotform.com/uploads/grants.dev/212695501572052/5339793258217124044/error11.PNG
1.0
[Partner submission] SFRF Audit Report - Adopted Budget Duplicating - **Submitted Description:** Some strangeness with the audit report - see photo attached. Adopted Budget is doubled in the Audit Report TCO is doubled as well. TCE results in NaN CPO results in NaN CPE results in NaN **(Optional) Uploaded file - click to download:** https://www.jotform.com/uploads/grants.dev/212695501572052/5339793258217124044/error11.PNG
priority
sfrf audit report adopted budget duplicating submitted description some strangeness with the audit report see photo attached adopted budget is doubled in the audit report tco is doubled as well tce results in nan cpo results in nan cpe results in nan optional uploaded file click to download
1
296,697
9,125,456,204
IssuesEvent
2019-02-24 13:57:16
dita-ot/dita-ot
https://api.github.com/repos/dita-ot/dita-ot
closed
Plugin installation looks for Ant code in base directory
bug priority/medium stale
Reported in the google group, and I've reproduced on both 2.4.1 and 2.4.3: https://groups.google.com/forum/#!topic/dita-ot-users/4lnue2bt8Is Following the instructions in our documentation (CC: @infotexture), I've set up the "html-custom-css" transform type: http://www.dita-ot.org/dev/dev_ref/html-customization-plugin-bundle-css.html As reported in the issue, when I try to install (with either `bin\dita -install` or `bin\ant -f integrator.xml`), I get this message on the console: ``` C:\DITA-OT\dita-ot-2.4.3>bin\dita --install [integrate] [Fatal Error] :-1:-1: Premature end of file. [integrate] Premature end of file. ``` I tried changing `plugin.xml` to use a name other than `build.xml`: `<feature extension="dita.conductor.target.relative" value="testbuild.xml"/>` With that, it's clear that the integrator is looking for my build file in the DITA-OT base directory: ``` C:\DITA-OT\dita-ot-2.4.3>bin\dita --install [integrate] C:\DITA-OT\dita-ot-2.4.3\testbuild.xml (The system cannot find the file specified.) ``` In my 2.4.1 install, I tried changing the actual file name (and `plugin.xml` entry) to `mybuild.xml`, with that failure. I then tried `happybuild.xml`, and ... it worked. Changing back to `build.xml` works. I have no idea and think I may have entered some non-deterministic test universe. But I can reliably reproduce this issue in 2.4.3. I also built my own (similar) transform types before ever seeing this report, in 2.4.1, and did not encounter this issue. So again, I'm confused.
1.0
Plugin installation looks for Ant code in base directory - Reported in the google group, and I've reproduced on both 2.4.1 and 2.4.3: https://groups.google.com/forum/#!topic/dita-ot-users/4lnue2bt8Is Following the instructions in our documentation (CC: @infotexture), I've set up the "html-custom-css" transform type: http://www.dita-ot.org/dev/dev_ref/html-customization-plugin-bundle-css.html As reported in the issue, when I try to install (with either `bin\dita -install` or `bin\ant -f integrator.xml`), I get this message on the console: ``` C:\DITA-OT\dita-ot-2.4.3>bin\dita --install [integrate] [Fatal Error] :-1:-1: Premature end of file. [integrate] Premature end of file. ``` I tried changing `plugin.xml` to use a name other than `build.xml`: `<feature extension="dita.conductor.target.relative" value="testbuild.xml"/>` With that, it's clear that the integrator is looking for my build file in the DITA-OT base directory: ``` C:\DITA-OT\dita-ot-2.4.3>bin\dita --install [integrate] C:\DITA-OT\dita-ot-2.4.3\testbuild.xml (The system cannot find the file specified.) ``` In my 2.4.1 install, I tried changing the actual file name (and `plugin.xml` entry) to `mybuild.xml`, with that failure. I then tried `happybuild.xml`, and ... it worked. Changing back to `build.xml` works. I have no idea and think I may have entered some non-deterministic test universe. But I can reliably reproduce this issue in 2.4.3. I also built my own (similar) transform types before ever seeing this report, in 2.4.1, and did not encounter this issue. So again, I'm confused.
priority
plugin installation looks for ant code in base directory reported in the google group and i ve reproduced on both and following the instructions in our documentation cc infotexture i ve set up the html custom css transform type as reported in the issue when i try to install with either bin dita install or bin ant f integrator xml i get this message on the console c dita ot dita ot bin dita install premature end of file premature end of file i tried changing plugin xml to use a name other than build xml with that it s clear that the integrator is looking for my build file in the dita ot base directory c dita ot dita ot bin dita install c dita ot dita ot testbuild xml the system cannot find the file specified in my install i tried changing the actual file name and plugin xml entry to mybuild xml with that failure i then tried happybuild xml and it worked changing back to build xml works i have no idea and think i may have entered some non deterministic test universe but i can reliably reproduce this issue in i also built my own similar transform types before ever seeing this report in and did not encounter this issue so again i m confused
1
260,094
8,204,163,564
IssuesEvent
2018-09-03 04:45:02
openshiftio/openshift.io
https://api.github.com/repos/openshiftio/openshift.io
closed
Bug in workers: "Signature expired"
SEV3-medium area/analytics area/analytics/ingestion priority/P2 team/analytics team/analytics/core type/bug
In prod: ``` {"task_name": "dependency_snapshot", "event": "TASK_END", "task_id": "38678a6a-cf23-49c3-8acb-3b6543ebd0d4", "node_args": {"_release": "maven:com.manywho.sdk:sdk-server-servlet3:2.0.0-beta-04", "ecosystem": "maven", "_audit": {"version": "v1", "started_at": "2018-02-22T11:25:50.268175", "ended_at": "2018-02-22T11:25:51.339795"}, "job_id": "mavenReleasesJob", "name": "com.manywho.sdk:sdk-server-servlet3", "version": "2.0.0-beta-04", "document_id": 5121261, "recursive_limit": 0}, "storage": "BayesianPostgres", "queue": "prod_ingestion_DependencySnapshotTask_v0", "flow_name": "bayesianAnalysisFlow", "parent": {"metadata": "7e881a2e-3393-42b9-8635-34202f0af974"}, "dispatcher_id": "00074ee5-058c-4e34-8b87-c525ae91b106"} 2018-02-22 20:59:58,654 [INFO] celery.app.trace: Task selinon.SelinonTaskEnvelope[38678a6a-cf23-49c3-8acb-3b6543ebd0d4] succeeded in 0.09870916046202183s: None 2018-02-22 21:00:01,004 [CRITICAL] celery.worker: Unrecoverable error: Exception('Request HTTP Error HTTP 403 Forbidden (b\'<?xml version="1.0"?><ErrorResponse xmlns="http://queue.amazonaws.com/doc/2012-11-05/"><Error><Type>Sender</Type><Code>SignatureDoesNotMatch</Code><Message>Signature expired: 20180222T204115Z is now earlier than 20180222T204501Z (20180222T210001Z - 15 min.)</Message><Detail/></Error><RequestId>cc2bfe62-b17a-5809-bb62-ad6b80eb846a</RequestId></ErrorResponse>\')',) Traceback (most recent call last): File "/usr/lib/python3.4/site-packages/celery/worker/worker.py", line 203, in start self.blueprint.start(self) File "/usr/lib/python3.4/site-packages/celery/bootsteps.py", line 119, in start step.start(parent) File "/usr/lib/python3.4/site-packages/celery/bootsteps.py", line 370, in start return self.obj.start() File "/usr/lib/python3.4/site-packages/celery/worker/consumer/consumer.py", line 320, in start blueprint.start(self) File "/usr/lib/python3.4/site-packages/celery/bootsteps.py", line 119, in start step.start(parent) File "/usr/lib/python3.4/site-packages/celery/worker/consumer/consumer.py", line 596, in start c.loop(*c.loop_args()) File "/usr/lib/python3.4/site-packages/celery/worker/loops.py", line 88, in asynloop next(loop) File "/usr/lib/python3.4/site-packages/kombu/async/hub.py", line 354, in create_loop cb(*cbargs) File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 111, in on_readable return self._on_event(fd, _pycurl.CSELECT_IN) File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 124, in _on_event self._process_pending_requests() File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 130, in _process_pending_requests self._process(curl) File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 178, in _process buffer=buffer, effective_url=effective_url, error=error, File "/usr/lib/python3.4/site-packages/vine/promises.py", line 150, in __call__ svpending(*ca, **ck) File "/usr/lib/python3.4/site-packages/vine/promises.py", line 143, in __call__ return self.throw() File "/usr/lib/python3.4/site-packages/vine/promises.py", line 140, in __call__ retval = fun(*final_args, **final_kwargs) File "/usr/lib/python3.4/site-packages/vine/funtools.py", line 100, in _transback return callback(ret) File "/usr/lib/python3.4/site-packages/vine/promises.py", line 143, in __call__ return self.throw() File "/usr/lib/python3.4/site-packages/vine/promises.py", line 140, in __call__ retval = fun(*final_args, **final_kwargs) File "/usr/lib/python3.4/site-packages/vine/funtools.py", line 98, in _transback callback.throw() File "/usr/lib/python3.4/site-packages/vine/funtools.py", line 96, in _transback ret = filter_(*args + (ret,), **kwargs) File "/usr/lib/python3.4/site-packages/kombu/async/aws/connection.py", line 233, in _on_list_ready raise self._for_status(response, response.read()) Exception: Request HTTP Error HTTP 403 Forbidden (b'<?xml version="1.0"?><ErrorResponse xmlns="http://queue.amazonaws.com/doc/2012-11-05/"><Error><Type>Sender</Type><Code>SignatureDoesNotMatch</Code><Message>Signature expired: 20180222T204115Z is now earlier than 20180222T204501Z (20180222T210001Z - 15 min.)</Message><Detail/></Error><RequestId>cc2bfe62-b17a-5809-bb62-ad6b80eb846a</RequestId></ErrorResponse>') ```
1.0
Bug in workers: "Signature expired" - In prod: ``` {"task_name": "dependency_snapshot", "event": "TASK_END", "task_id": "38678a6a-cf23-49c3-8acb-3b6543ebd0d4", "node_args": {"_release": "maven:com.manywho.sdk:sdk-server-servlet3:2.0.0-beta-04", "ecosystem": "maven", "_audit": {"version": "v1", "started_at": "2018-02-22T11:25:50.268175", "ended_at": "2018-02-22T11:25:51.339795"}, "job_id": "mavenReleasesJob", "name": "com.manywho.sdk:sdk-server-servlet3", "version": "2.0.0-beta-04", "document_id": 5121261, "recursive_limit": 0}, "storage": "BayesianPostgres", "queue": "prod_ingestion_DependencySnapshotTask_v0", "flow_name": "bayesianAnalysisFlow", "parent": {"metadata": "7e881a2e-3393-42b9-8635-34202f0af974"}, "dispatcher_id": "00074ee5-058c-4e34-8b87-c525ae91b106"} 2018-02-22 20:59:58,654 [INFO] celery.app.trace: Task selinon.SelinonTaskEnvelope[38678a6a-cf23-49c3-8acb-3b6543ebd0d4] succeeded in 0.09870916046202183s: None 2018-02-22 21:00:01,004 [CRITICAL] celery.worker: Unrecoverable error: Exception('Request HTTP Error HTTP 403 Forbidden (b\'<?xml version="1.0"?><ErrorResponse xmlns="http://queue.amazonaws.com/doc/2012-11-05/"><Error><Type>Sender</Type><Code>SignatureDoesNotMatch</Code><Message>Signature expired: 20180222T204115Z is now earlier than 20180222T204501Z (20180222T210001Z - 15 min.)</Message><Detail/></Error><RequestId>cc2bfe62-b17a-5809-bb62-ad6b80eb846a</RequestId></ErrorResponse>\')',) Traceback (most recent call last): File "/usr/lib/python3.4/site-packages/celery/worker/worker.py", line 203, in start self.blueprint.start(self) File "/usr/lib/python3.4/site-packages/celery/bootsteps.py", line 119, in start step.start(parent) File "/usr/lib/python3.4/site-packages/celery/bootsteps.py", line 370, in start return self.obj.start() File "/usr/lib/python3.4/site-packages/celery/worker/consumer/consumer.py", line 320, in start blueprint.start(self) File "/usr/lib/python3.4/site-packages/celery/bootsteps.py", line 119, in start step.start(parent) File "/usr/lib/python3.4/site-packages/celery/worker/consumer/consumer.py", line 596, in start c.loop(*c.loop_args()) File "/usr/lib/python3.4/site-packages/celery/worker/loops.py", line 88, in asynloop next(loop) File "/usr/lib/python3.4/site-packages/kombu/async/hub.py", line 354, in create_loop cb(*cbargs) File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 111, in on_readable return self._on_event(fd, _pycurl.CSELECT_IN) File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 124, in _on_event self._process_pending_requests() File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 130, in _process_pending_requests self._process(curl) File "/usr/lib/python3.4/site-packages/kombu/async/http/curl.py", line 178, in _process buffer=buffer, effective_url=effective_url, error=error, File "/usr/lib/python3.4/site-packages/vine/promises.py", line 150, in __call__ svpending(*ca, **ck) File "/usr/lib/python3.4/site-packages/vine/promises.py", line 143, in __call__ return self.throw() File "/usr/lib/python3.4/site-packages/vine/promises.py", line 140, in __call__ retval = fun(*final_args, **final_kwargs) File "/usr/lib/python3.4/site-packages/vine/funtools.py", line 100, in _transback return callback(ret) File "/usr/lib/python3.4/site-packages/vine/promises.py", line 143, in __call__ return self.throw() File "/usr/lib/python3.4/site-packages/vine/promises.py", line 140, in __call__ retval = fun(*final_args, **final_kwargs) File "/usr/lib/python3.4/site-packages/vine/funtools.py", line 98, in _transback callback.throw() File "/usr/lib/python3.4/site-packages/vine/funtools.py", line 96, in _transback ret = filter_(*args + (ret,), **kwargs) File "/usr/lib/python3.4/site-packages/kombu/async/aws/connection.py", line 233, in _on_list_ready raise self._for_status(response, response.read()) Exception: Request HTTP Error HTTP 403 Forbidden (b'<?xml version="1.0"?><ErrorResponse xmlns="http://queue.amazonaws.com/doc/2012-11-05/"><Error><Type>Sender</Type><Code>SignatureDoesNotMatch</Code><Message>Signature expired: 20180222T204115Z is now earlier than 20180222T204501Z (20180222T210001Z - 15 min.)</Message><Detail/></Error><RequestId>cc2bfe62-b17a-5809-bb62-ad6b80eb846a</RequestId></ErrorResponse>') ```
priority
bug in workers signature expired in prod task name dependency snapshot event task end task id node args release maven com manywho sdk sdk server beta ecosystem maven audit version started at ended at job id mavenreleasesjob name com manywho sdk sdk server version beta document id recursive limit storage bayesianpostgres queue prod ingestion dependencysnapshottask flow name bayesiananalysisflow parent metadata dispatcher id celery app trace task selinon selinontaskenvelope succeeded in none celery worker unrecoverable error exception request http error http forbidden b traceback most recent call last file usr lib site packages celery worker worker py line in start self blueprint start self file usr lib site packages celery bootsteps py line in start step start parent file usr lib site packages celery bootsteps py line in start return self obj start file usr lib site packages celery worker consumer consumer py line in start blueprint start self file usr lib site packages celery bootsteps py line in start step start parent file usr lib site packages celery worker consumer consumer py line in start c loop c loop args file usr lib site packages celery worker loops py line in asynloop next loop file usr lib site packages kombu async hub py line in create loop cb cbargs file usr lib site packages kombu async http curl py line in on readable return self on event fd pycurl cselect in file usr lib site packages kombu async http curl py line in on event self process pending requests file usr lib site packages kombu async http curl py line in process pending requests self process curl file usr lib site packages kombu async http curl py line in process buffer buffer effective url effective url error error file usr lib site packages vine promises py line in call svpending ca ck file usr lib site packages vine promises py line in call return self throw file usr lib site packages vine promises py line in call retval fun final args final kwargs file usr lib site packages vine funtools py line in transback return callback ret file usr lib site packages vine promises py line in call return self throw file usr lib site packages vine promises py line in call retval fun final args final kwargs file usr lib site packages vine funtools py line in transback callback throw file usr lib site packages vine funtools py line in transback ret filter args ret kwargs file usr lib site packages kombu async aws connection py line in on list ready raise self for status response response read exception request http error http forbidden b
1
304,895
9,344,676,461
IssuesEvent
2019-03-30 00:11:39
neuropoly/axondeepseg
https://api.github.com/repos/neuropoly/axondeepseg
opened
Refactor `compute_morphometrics`
category: ENHANCEMENT category:FEATURE priority:MEDIUM
Some code is legacy, some comments are outdated, some code can be concatenated. This is one of the module that we use the most. Therefore it can be a good idea to refactor it! Some UT might need to be updated or even added!
1.0
Refactor `compute_morphometrics` - Some code is legacy, some comments are outdated, some code can be concatenated. This is one of the module that we use the most. Therefore it can be a good idea to refactor it! Some UT might need to be updated or even added!
priority
refactor compute morphometrics some code is legacy some comments are outdated some code can be concatenated this is one of the module that we use the most therefore it can be a good idea to refactor it some ut might need to be updated or even added
1
631,703
20,158,143,984
IssuesEvent
2022-02-09 18:27:42
Helioviewer-Project/api
https://api.github.com/repos/Helioviewer-Project/api
closed
Hinode XRT "Any" feature not working as intended
priority: medium bug? fix before 4.0
The "Any" selection for Hinode XRT is intended to mean "Any value of the filter wheel". A user has reported that this selection is not working as intended. For example, the filter selection "Al_med / open" is up to date (within a couple of weeks) but "Al_med / Any" gives an answer of a date some time in 2017. It should have given the same result as "Al_med / open".
1.0
Hinode XRT "Any" feature not working as intended - The "Any" selection for Hinode XRT is intended to mean "Any value of the filter wheel". A user has reported that this selection is not working as intended. For example, the filter selection "Al_med / open" is up to date (within a couple of weeks) but "Al_med / Any" gives an answer of a date some time in 2017. It should have given the same result as "Al_med / open".
priority
hinode xrt any feature not working as intended the any selection for hinode xrt is intended to mean any value of the filter wheel a user has reported that this selection is not working as intended for example the filter selection al med open is up to date within a couple of weeks but al med any gives an answer of a date some time in it should have given the same result as al med open
1
536,784
15,713,274,392
IssuesEvent
2021-03-27 15:31:01
AY2021S2-CS2103-T14-2/tp
https://api.github.com/repos/AY2021S2-CS2103-T14-2/tp
opened
Improved Price, Find & FindAll to include price as range
priority.Medium
As a user, I can search for prices by specifying a range, so that I can go for cheaper food options.
1.0
Improved Price, Find & FindAll to include price as range - As a user, I can search for prices by specifying a range, so that I can go for cheaper food options.
priority
improved price find findall to include price as range as a user i can search for prices by specifying a range so that i can go for cheaper food options
1
805,316
29,517,517,135
IssuesEvent
2023-06-04 17:08:51
oppia/oppia-android
https://api.github.com/repos/oppia/oppia-android
closed
Keyboard not at all visible (Portrait + Landscape) in API 19
Priority: Essential Impact: Medium ibt bug
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Create an emulator with small dimensions like `3.4 WQVGA` with `API 19` 2. Go to `Prototype Exploration` 3. Go to `State 2` 4. Click on edit text. 5. Keyboard is not visible **Expected behavior** Keyboard should be visible in API 19 and above. **Device** - 3.4 WQVGA - SDK version = 19
1.0
Keyboard not at all visible (Portrait + Landscape) in API 19 - **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Create an emulator with small dimensions like `3.4 WQVGA` with `API 19` 2. Go to `Prototype Exploration` 3. Go to `State 2` 4. Click on edit text. 5. Keyboard is not visible **Expected behavior** Keyboard should be visible in API 19 and above. **Device** - 3.4 WQVGA - SDK version = 19
priority
keyboard not at all visible portrait landscape in api describe the bug a clear and concise description of what the bug is to reproduce steps to reproduce the behavior create an emulator with small dimensions like wqvga with api go to prototype exploration go to state click on edit text keyboard is not visible expected behavior keyboard should be visible in api and above device wqvga sdk version
1
178,545
6,609,915,737
IssuesEvent
2017-09-19 15:57:17
vmware/vic
https://api.github.com/repos/vmware/vic
opened
consul application: No such interaction connection for container:
kind/bug priority/medium team/container team/foundation
Trying: ``` docker %{VCH-PARAMS} run -d --name=dev-consul -e CONSUL_BIND_INTERFACE=eth0 consul docker %{VCH-PARAMS} run -d -e CONSUL_BIND_INTERFACE=eth0 consul agent -dev -join=${ip} docker %{VCH-PARAMS} run -d -e CONSUL_BIND_INTERFACE=eth0 consul agent -dev -join=${ip} ``` Then when I attempt to query the members: ```docker %{VCH-PARAMS} exec -t ${server} consul members``` I receive the following error: ``` No such interaction connection for container: 70a7f84c4204c326f03cd4083ff1bc4d0027d4f16c33da52f6c21ac6d4d86004 ``` [22-13-Consul-VCH-0-8658-container-logs.zip](https://github.com/vmware/vic/files/1314888/22-13-Consul-VCH-0-8658-container-logs.zip)
1.0
consul application: No such interaction connection for container: - Trying: ``` docker %{VCH-PARAMS} run -d --name=dev-consul -e CONSUL_BIND_INTERFACE=eth0 consul docker %{VCH-PARAMS} run -d -e CONSUL_BIND_INTERFACE=eth0 consul agent -dev -join=${ip} docker %{VCH-PARAMS} run -d -e CONSUL_BIND_INTERFACE=eth0 consul agent -dev -join=${ip} ``` Then when I attempt to query the members: ```docker %{VCH-PARAMS} exec -t ${server} consul members``` I receive the following error: ``` No such interaction connection for container: 70a7f84c4204c326f03cd4083ff1bc4d0027d4f16c33da52f6c21ac6d4d86004 ``` [22-13-Consul-VCH-0-8658-container-logs.zip](https://github.com/vmware/vic/files/1314888/22-13-Consul-VCH-0-8658-container-logs.zip)
priority
consul application no such interaction connection for container trying docker vch params run d name dev consul e consul bind interface consul docker vch params run d e consul bind interface consul agent dev join ip docker vch params run d e consul bind interface consul agent dev join ip then when i attempt to query the members docker vch params exec t server consul members i receive the following error no such interaction connection for container
1
604,558
18,714,587,867
IssuesEvent
2021-11-03 01:34:14
docker-mailserver/docker-mailserver
https://api.github.com/repos/docker-mailserver/docker-mailserver
opened
[BUG] ERROR: open /proc/sys/kernel/domainname: permission denied in rootless mode
kind/bug meta/needs triage priority/medium
### Miscellaneous first checks - [X] I checked that all ports are open and not blocked by my ISP / hosting provider. - [X] I know that SSL errors are likely the result of a wrong setup on the user side and not caused by DMS itself. I'm confident my setup is correct. ### Affected Component(s) Container start ### What happened and when does this occur? ```Markdown Docker running in rootless mode. There is an error on 'docker-compose up' ERROR: for mailserver Cannot start service mailserver: OCI runtime create failed: container_linux.go:380: starting container process caused: process_linux.go:545: container init caused: write sysctl key kernel.domainname: open /proc/sys/kernel/domainname: permission denied: unknown ``` ### What did you expect to happen? ```Markdown Starting container ``` ### How do we replicate the issue? ```Markdown 1. Run container in rootless mode 2. Download files DMS_GITHUB_URL='https://raw.githubusercontent.com/docker-mailserver/docker-mailserver/master' wget "${DMS_GITHUB_URL}/docker-compose.yml" wget "${DMS_GITHUB_URL}/mailserver.env" wget "${DMS_GITHUB_URL}/setup.sh" chmod a+x ./setup.sh ./setup.sh help 3. Updated ports in docker-compose to be greater than 1024 4. Run docker-compose up 5. Catch an error ```sh docker-compose up Removing mailserver Recreating 2ce070dcd06a_mailserver ... error ERROR: for 2ce070dcd06a_mailserver Cannot start service mailserver: OCI runtime create failed: container_linux.go:380: starting container process caused: process_linux.go:545: container init caused: write sysctl key kernel.domainname: open /proc/sys/kernel/domainname: permission denied: unknown ERROR: for mailserver Cannot start service mailserver: OCI runtime create failed: container_linux.go:380: starting container process caused: process_linux.go:545: container init caused: write sysctl key kernel.domainname: open /proc/sys/kernel/domainname: permission denied: unknown ERROR: Encountered errors while bringing up the project. ``` ... ``` ### DMS version v10.1.2 ### What operating system is DMS running on? Linux ### What instruction set architecture is DMS running on? x86_64 / AMD64 ### What container orchestration tool are you using? Docker Compose ### docker-compose.yml ```yaml services: mailserver: image: docker.io/mailserver/docker-mailserver:latest container_name: mailserver # If the FQDN for your mail-server is only two labels (eg: example.com), # you can assign this entirely to `hostname` and remove `domainname`. hostname: mail domainname: mydomain.com env_file: mailserver.env # More information about the mail-server ports: # https://docker-mailserver.github.io/docker-mailserver/edge/config/security/understanding-the-ports/ # To avoid conflicts with yaml base-60 float, DO NOT remove the quotation marks. ports: - "10025:25" # SMTP (explicit TLS => STARTTLS) - "10143:143" # IMAP4 (explicit TLS => STARTTLS) - "10465:465" # ESMTP (implicit TLS) - "10587:587" # ESMTP (explicit TLS => STARTTLS) - "10993:993" # IMAP4 (implicit TLS) volumes: - ./docker-data/dms/mail-data/:/var/mail/ - ./docker-data/dms/mail-state/:/var/mail-state/ - ./docker-data/dms/mail-logs/:/var/log/mail/ - ./docker-data/dms/config/:/tmp/docker-mailserver/ - /etc/localtime:/etc/localtime:ro restart: always stop_grace_period: 1m cap_add: - NET_ADMIN ``` ### Relevant log output _No response_ ### Other relevant information _No response_ ### What level of experience do you have with Docker and mail servers? _No response_ ### Code of conduct - [X] I have read this project's [Code of Conduct](https://github.com/docker-mailserver/docker-mailserver/blob/master/CODE_OF_CONDUCT.md) and I agree - [X] I have read the [README](https://github.com/docker-mailserver/docker-mailserver/blob/master/README.md) and the [documentation](https://docker-mailserver.github.io/docker-mailserver/edge/) and I searched the [issue tracker](https://github.com/docker-mailserver/docker-mailserver/issues?q=is%3Aissue) but could not find a solution ### Improvements to this form? _No response_
1.0
[BUG] ERROR: open /proc/sys/kernel/domainname: permission denied in rootless mode - ### Miscellaneous first checks - [X] I checked that all ports are open and not blocked by my ISP / hosting provider. - [X] I know that SSL errors are likely the result of a wrong setup on the user side and not caused by DMS itself. I'm confident my setup is correct. ### Affected Component(s) Container start ### What happened and when does this occur? ```Markdown Docker running in rootless mode. There is an error on 'docker-compose up' ERROR: for mailserver Cannot start service mailserver: OCI runtime create failed: container_linux.go:380: starting container process caused: process_linux.go:545: container init caused: write sysctl key kernel.domainname: open /proc/sys/kernel/domainname: permission denied: unknown ``` ### What did you expect to happen? ```Markdown Starting container ``` ### How do we replicate the issue? ```Markdown 1. Run container in rootless mode 2. Download files DMS_GITHUB_URL='https://raw.githubusercontent.com/docker-mailserver/docker-mailserver/master' wget "${DMS_GITHUB_URL}/docker-compose.yml" wget "${DMS_GITHUB_URL}/mailserver.env" wget "${DMS_GITHUB_URL}/setup.sh" chmod a+x ./setup.sh ./setup.sh help 3. Updated ports in docker-compose to be greater than 1024 4. Run docker-compose up 5. Catch an error ```sh docker-compose up Removing mailserver Recreating 2ce070dcd06a_mailserver ... error ERROR: for 2ce070dcd06a_mailserver Cannot start service mailserver: OCI runtime create failed: container_linux.go:380: starting container process caused: process_linux.go:545: container init caused: write sysctl key kernel.domainname: open /proc/sys/kernel/domainname: permission denied: unknown ERROR: for mailserver Cannot start service mailserver: OCI runtime create failed: container_linux.go:380: starting container process caused: process_linux.go:545: container init caused: write sysctl key kernel.domainname: open /proc/sys/kernel/domainname: permission denied: unknown ERROR: Encountered errors while bringing up the project. ``` ... ``` ### DMS version v10.1.2 ### What operating system is DMS running on? Linux ### What instruction set architecture is DMS running on? x86_64 / AMD64 ### What container orchestration tool are you using? Docker Compose ### docker-compose.yml ```yaml services: mailserver: image: docker.io/mailserver/docker-mailserver:latest container_name: mailserver # If the FQDN for your mail-server is only two labels (eg: example.com), # you can assign this entirely to `hostname` and remove `domainname`. hostname: mail domainname: mydomain.com env_file: mailserver.env # More information about the mail-server ports: # https://docker-mailserver.github.io/docker-mailserver/edge/config/security/understanding-the-ports/ # To avoid conflicts with yaml base-60 float, DO NOT remove the quotation marks. ports: - "10025:25" # SMTP (explicit TLS => STARTTLS) - "10143:143" # IMAP4 (explicit TLS => STARTTLS) - "10465:465" # ESMTP (implicit TLS) - "10587:587" # ESMTP (explicit TLS => STARTTLS) - "10993:993" # IMAP4 (implicit TLS) volumes: - ./docker-data/dms/mail-data/:/var/mail/ - ./docker-data/dms/mail-state/:/var/mail-state/ - ./docker-data/dms/mail-logs/:/var/log/mail/ - ./docker-data/dms/config/:/tmp/docker-mailserver/ - /etc/localtime:/etc/localtime:ro restart: always stop_grace_period: 1m cap_add: - NET_ADMIN ``` ### Relevant log output _No response_ ### Other relevant information _No response_ ### What level of experience do you have with Docker and mail servers? _No response_ ### Code of conduct - [X] I have read this project's [Code of Conduct](https://github.com/docker-mailserver/docker-mailserver/blob/master/CODE_OF_CONDUCT.md) and I agree - [X] I have read the [README](https://github.com/docker-mailserver/docker-mailserver/blob/master/README.md) and the [documentation](https://docker-mailserver.github.io/docker-mailserver/edge/) and I searched the [issue tracker](https://github.com/docker-mailserver/docker-mailserver/issues?q=is%3Aissue) but could not find a solution ### Improvements to this form? _No response_
priority
error open proc sys kernel domainname permission denied in rootless mode miscellaneous first checks i checked that all ports are open and not blocked by my isp hosting provider i know that ssl errors are likely the result of a wrong setup on the user side and not caused by dms itself i m confident my setup is correct affected component s container start what happened and when does this occur markdown docker running in rootless mode there is an error on docker compose up error for mailserver cannot start service mailserver oci runtime create failed container linux go starting container process caused process linux go container init caused write sysctl key kernel domainname open proc sys kernel domainname permission denied unknown what did you expect to happen markdown starting container how do we replicate the issue markdown run container in rootless mode download files dms github url wget dms github url docker compose yml wget dms github url mailserver env wget dms github url setup sh chmod a x setup sh setup sh help updated ports in docker compose to be greater than run docker compose up catch an error sh docker compose up removing mailserver recreating mailserver error error for mailserver cannot start service mailserver oci runtime create failed container linux go starting container process caused process linux go container init caused write sysctl key kernel domainname open proc sys kernel domainname permission denied unknown error for mailserver cannot start service mailserver oci runtime create failed container linux go starting container process caused process linux go container init caused write sysctl key kernel domainname open proc sys kernel domainname permission denied unknown error encountered errors while bringing up the project dms version what operating system is dms running on linux what instruction set architecture is dms running on what container orchestration tool are you using docker compose docker compose yml yaml services mailserver image docker io mailserver docker mailserver latest container name mailserver if the fqdn for your mail server is only two labels eg example com you can assign this entirely to hostname and remove domainname hostname mail domainname mydomain com env file mailserver env more information about the mail server ports to avoid conflicts with yaml base float do not remove the quotation marks ports smtp explicit tls starttls explicit tls starttls esmtp implicit tls esmtp explicit tls starttls implicit tls volumes docker data dms mail data var mail docker data dms mail state var mail state docker data dms mail logs var log mail docker data dms config tmp docker mailserver etc localtime etc localtime ro restart always stop grace period cap add net admin relevant log output no response other relevant information no response what level of experience do you have with docker and mail servers no response code of conduct i have read this project s and i agree i have read the and the and i searched the but could not find a solution improvements to this form no response
1
757,362
26,508,908,346
IssuesEvent
2023-01-18 15:42:23
quickcase/spring-oidc
https://api.github.com/repos/quickcase/spring-oidc
opened
Restrict clients to organisations explicitly granted only
type:bug type:breaking priority:medium
Currently, clients (ie. headless, , service to service, no user) are given 'ORGANIZATION' level access with `PUBLIC` classification for all organisations. https://github.com/quickcase/spring-oidc/blob/main/api/src/main/java/app/quickcase/spring/oidc/authentication/QuickcaseClientAuthentication.java#L16-L21 Instead, a security exception should be thrown to interrupt processing and prevent access as clients should only be allowed access to organisation they were explicitly granted.
1.0
Restrict clients to organisations explicitly granted only - Currently, clients (ie. headless, , service to service, no user) are given 'ORGANIZATION' level access with `PUBLIC` classification for all organisations. https://github.com/quickcase/spring-oidc/blob/main/api/src/main/java/app/quickcase/spring/oidc/authentication/QuickcaseClientAuthentication.java#L16-L21 Instead, a security exception should be thrown to interrupt processing and prevent access as clients should only be allowed access to organisation they were explicitly granted.
priority
restrict clients to organisations explicitly granted only currently clients ie headless service to service no user are given organization level access with public classification for all organisations instead a security exception should be thrown to interrupt processing and prevent access as clients should only be allowed access to organisation they were explicitly granted
1
577,105
17,103,545,683
IssuesEvent
2021-07-09 14:30:42
stackabletech/issues
https://api.github.com/repos/stackabletech/issues
closed
All Operators: Remove "instances_per_node" from SelectorAndConfig
priority/medium type/bug
We currently have a field called `instances_per_node` in our `SelectorAndConfig` structs. This does - at least at the moment - not make sense with the tools we support because they will run into port conflicts when multiple tools are deployed on the same server. So, we decided to remove this functionality (which wasn't implemented anyway) for now. The same goal can be achieved by using multiple RoleGroups. Another idea is to automatically assign ports across all products but that's for the future.
1.0
All Operators: Remove "instances_per_node" from SelectorAndConfig - We currently have a field called `instances_per_node` in our `SelectorAndConfig` structs. This does - at least at the moment - not make sense with the tools we support because they will run into port conflicts when multiple tools are deployed on the same server. So, we decided to remove this functionality (which wasn't implemented anyway) for now. The same goal can be achieved by using multiple RoleGroups. Another idea is to automatically assign ports across all products but that's for the future.
priority
all operators remove instances per node from selectorandconfig we currently have a field called instances per node in our selectorandconfig structs this does at least at the moment not make sense with the tools we support because they will run into port conflicts when multiple tools are deployed on the same server so we decided to remove this functionality which wasn t implemented anyway for now the same goal can be achieved by using multiple rolegroups another idea is to automatically assign ports across all products but that s for the future
1
824,130
31,141,665,766
IssuesEvent
2023-08-16 00:53:11
gamefreedomgit/Maelstrom
https://api.github.com/repos/gamefreedomgit/Maelstrom
closed
[Deadmines] Foe Reaper 5000 - Overdrive
Status: Confirmed QA RUN Priority: Medium Dungeon: Deadmines
[//]: # (REMBEMBER! Add links to things related to the bug using for example:) [//]: # (http://wowhead.com/) [//]: # (cata-twinhead.twinstar.cz) **Description:** When Foe Reaper 5000 channels Overdrive (https://cata-twinhead.twinstar.cz/?spell=88481) he will still stick to the Tank. **How to reproduce:** Engage Foe Reaper 5000 in the Deadmines. **How it should work:** While channeling Overdrive, Foe Reaper 5000 should walk around randomly periodically instead of sticking to the Tank. **Database links:** Reference Video: https://www.youtube.com/watch?v=GK0Cv7AMLio
1.0
[Deadmines] Foe Reaper 5000 - Overdrive - [//]: # (REMBEMBER! Add links to things related to the bug using for example:) [//]: # (http://wowhead.com/) [//]: # (cata-twinhead.twinstar.cz) **Description:** When Foe Reaper 5000 channels Overdrive (https://cata-twinhead.twinstar.cz/?spell=88481) he will still stick to the Tank. **How to reproduce:** Engage Foe Reaper 5000 in the Deadmines. **How it should work:** While channeling Overdrive, Foe Reaper 5000 should walk around randomly periodically instead of sticking to the Tank. **Database links:** Reference Video: https://www.youtube.com/watch?v=GK0Cv7AMLio
priority
foe reaper overdrive rembember add links to things related to the bug using for example cata twinhead twinstar cz description when foe reaper channels overdrive he will still stick to the tank how to reproduce engage foe reaper in the deadmines how it should work while channeling overdrive foe reaper should walk around randomly periodically instead of sticking to the tank database links reference video
1
468,261
13,464,065,590
IssuesEvent
2020-09-09 18:37:17
Energy-Innovation/eps-us
https://api.github.com/repos/Energy-Innovation/eps-us
opened
Update Policy Lever: "Additional Battery Storage Annual Growth Percentage" to MW units
medium priority
For state level EPS development with RMI, it would be useful to have the "Additional Battery Storage" policy lever units be in MWs rather than percentages. Many states have very low battery storage deployment in a BAU scenario. The current policy lever uses a 0-100% annual growth rate scale. With a percentage scale, it is hard to represent the speed and scale of growth needed. Additionally, many state targets are in MWs. It would be easier to have this scale show MW growth by 2050, rather than adjusting compounding percentages to match state-level MW targets.
1.0
Update Policy Lever: "Additional Battery Storage Annual Growth Percentage" to MW units - For state level EPS development with RMI, it would be useful to have the "Additional Battery Storage" policy lever units be in MWs rather than percentages. Many states have very low battery storage deployment in a BAU scenario. The current policy lever uses a 0-100% annual growth rate scale. With a percentage scale, it is hard to represent the speed and scale of growth needed. Additionally, many state targets are in MWs. It would be easier to have this scale show MW growth by 2050, rather than adjusting compounding percentages to match state-level MW targets.
priority
update policy lever additional battery storage annual growth percentage to mw units for state level eps development with rmi it would be useful to have the additional battery storage policy lever units be in mws rather than percentages many states have very low battery storage deployment in a bau scenario the current policy lever uses a annual growth rate scale with a percentage scale it is hard to represent the speed and scale of growth needed additionally many state targets are in mws it would be easier to have this scale show mw growth by rather than adjusting compounding percentages to match state level mw targets
1
806,960
29,929,197,337
IssuesEvent
2023-06-22 08:16:40
calcom/cal.com
https://api.github.com/repos/calcom/cal.com
closed
[CAL-1928] /event-types page slow
✨ feature Medium priority i18n
find ways to improve event types endpoint and page when opening a PR make sure to have before and after benchmarks <sub>From [SyncLinear.com](https://synclinear.com) | [CAL-1928](https://linear.app/calcom/issue/CAL-1928/event-types-page-slow)</sub>
1.0
[CAL-1928] /event-types page slow - find ways to improve event types endpoint and page when opening a PR make sure to have before and after benchmarks <sub>From [SyncLinear.com](https://synclinear.com) | [CAL-1928](https://linear.app/calcom/issue/CAL-1928/event-types-page-slow)</sub>
priority
event types page slow find ways to improve event types endpoint and page when opening a pr make sure to have before and after benchmarks from
1
540,114
15,800,991,121
IssuesEvent
2021-04-03 02:21:39
PyCQA/flake8
https://api.github.com/repos/PyCQA/flake8
closed
Tokenizer Error: flake8 returns with code 0, which denotes success
bug:confirmed fix:committed fix:released priority:medium
In GitLab by @schtibe on Aug 11, 2016, 06:45 Best explained with an example: ``` $> echo "str(int(0)" > foo.py $> flake8 foo.py # error happens here $> echo $? # return code is 0 ``` The error I get when executing flake8 is ``` Process Process-1: Traceback (most recent call last): File "/usr/lib/python3.5/site-packages/flake8/processor.py", line 238, in generate_tokens for token in tokenize.generate_tokens(self.next_line): File "/usr/lib/python3.5/tokenize.py", line 597, in _tokenize raise TokenError("EOF in multi-line statement", (lnum, 0)) tokenize.TokenError: ('EOF in multi-line statement', (2, 0)) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/lib/python3.5/multiprocessing/process.py", line 249, in _bootstrap self.run() File "/usr/lib/python3.5/multiprocessing/process.py", line 93, in run self._target(*self._args, **self._kwargs) File "/usr/lib/python3.5/site-packages/flake8/checker.py", line 46, in _run_checks_from_queue checker.run_checks(results_queue, statistics_queue) File "/usr/lib/python3.5/site-packages/flake8/checker.py", line 579, in run_checks self.process_tokens() File "/usr/lib/python3.5/site-packages/flake8/checker.py", line 554, in process_tokens for token in file_processor.generate_tokens(): File "/usr/lib/python3.5/site-packages/flake8/processor.py", line 250, in generate_tokens raise exceptions.InvalidSyntax(exc.message, exception=exc) AttributeError: 'TokenError' object has no attribute 'message' ``` In my opinion, the return code should be something else than 0 My Data: * Python 3.5.2 * installed via pacman * 3.0.3 (pyflakes: 1.2.3, pycodestyle: 2.0.0, mccabe: 0.5.2) CPython 3.5.2 on Linux
1.0
Tokenizer Error: flake8 returns with code 0, which denotes success - In GitLab by @schtibe on Aug 11, 2016, 06:45 Best explained with an example: ``` $> echo "str(int(0)" > foo.py $> flake8 foo.py # error happens here $> echo $? # return code is 0 ``` The error I get when executing flake8 is ``` Process Process-1: Traceback (most recent call last): File "/usr/lib/python3.5/site-packages/flake8/processor.py", line 238, in generate_tokens for token in tokenize.generate_tokens(self.next_line): File "/usr/lib/python3.5/tokenize.py", line 597, in _tokenize raise TokenError("EOF in multi-line statement", (lnum, 0)) tokenize.TokenError: ('EOF in multi-line statement', (2, 0)) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/lib/python3.5/multiprocessing/process.py", line 249, in _bootstrap self.run() File "/usr/lib/python3.5/multiprocessing/process.py", line 93, in run self._target(*self._args, **self._kwargs) File "/usr/lib/python3.5/site-packages/flake8/checker.py", line 46, in _run_checks_from_queue checker.run_checks(results_queue, statistics_queue) File "/usr/lib/python3.5/site-packages/flake8/checker.py", line 579, in run_checks self.process_tokens() File "/usr/lib/python3.5/site-packages/flake8/checker.py", line 554, in process_tokens for token in file_processor.generate_tokens(): File "/usr/lib/python3.5/site-packages/flake8/processor.py", line 250, in generate_tokens raise exceptions.InvalidSyntax(exc.message, exception=exc) AttributeError: 'TokenError' object has no attribute 'message' ``` In my opinion, the return code should be something else than 0 My Data: * Python 3.5.2 * installed via pacman * 3.0.3 (pyflakes: 1.2.3, pycodestyle: 2.0.0, mccabe: 0.5.2) CPython 3.5.2 on Linux
priority
tokenizer error returns with code which denotes success in gitlab by schtibe on aug best explained with an example echo str int foo py foo py error happens here echo return code is the error i get when executing is process process traceback most recent call last file usr lib site packages processor py line in generate tokens for token in tokenize generate tokens self next line file usr lib tokenize py line in tokenize raise tokenerror eof in multi line statement lnum tokenize tokenerror eof in multi line statement during handling of the above exception another exception occurred traceback most recent call last file usr lib multiprocessing process py line in bootstrap self run file usr lib multiprocessing process py line in run self target self args self kwargs file usr lib site packages checker py line in run checks from queue checker run checks results queue statistics queue file usr lib site packages checker py line in run checks self process tokens file usr lib site packages checker py line in process tokens for token in file processor generate tokens file usr lib site packages processor py line in generate tokens raise exceptions invalidsyntax exc message exception exc attributeerror tokenerror object has no attribute message in my opinion the return code should be something else than my data python installed via pacman pyflakes pycodestyle mccabe cpython on linux
1
322,299
9,816,040,177
IssuesEvent
2019-06-13 13:54:52
spacetelescope/mirage
https://api.github.com/repos/spacetelescope/mirage
closed
FGS catalogs should distinguish between guider1 and guider2 magnitudes
Enhancement Medium Priority
To be consistent with the https://github.com/spacetelescope/jwst_magnitude_conversion, mirage should consider guider1 and guider2 magnitudes individually. This could be handled by using `guider1` and `guider2` as filter names.
1.0
FGS catalogs should distinguish between guider1 and guider2 magnitudes - To be consistent with the https://github.com/spacetelescope/jwst_magnitude_conversion, mirage should consider guider1 and guider2 magnitudes individually. This could be handled by using `guider1` and `guider2` as filter names.
priority
fgs catalogs should distinguish between and magnitudes to be consistent with the mirage should consider and magnitudes individually this could be handled by using and as filter names
1