Unnamed: 0
int64
3
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
2
430
labels
stringlengths
4
347
body
stringlengths
5
237k
index
stringclasses
7 values
text_combine
stringlengths
96
237k
label
stringclasses
2 values
text
stringlengths
96
219k
binary_label
int64
0
1
149,154
13,258,314,179
IssuesEvent
2020-08-20 15:13:18
kubernetes-sigs/external-dns
https://api.github.com/repos/kubernetes-sigs/external-dns
closed
Update Kustomize Image Tag Docs
kind/documentation
How can we make sure it's updated for future releases? _Originally posted by @james-callahan in https://github.com/kubernetes-sigs/external-dns/pull/1709#issuecomment-675172047_ @james-callahan I think for starts this should be documented here: https://github.com/kubernetes-sigs/external-dns/blob/master/docs/release.md
1.0
Update Kustomize Image Tag Docs - How can we make sure it's updated for future releases? _Originally posted by @james-callahan in https://github.com/kubernetes-sigs/external-dns/pull/1709#issuecomment-675172047_ @james-callahan I think for starts this should be documented here: https://github.com/kubernetes-sigs/external-dns/blob/master/docs/release.md
non_comp
update kustomize image tag docs how can we make sure it s updated for future releases originally posted by james callahan in james callahan i think for starts this should be documented here
0
11,981
14,115,565,237
IssuesEvent
2020-11-07 21:35:05
unascribed/Fabrication
https://api.github.com/repos/unascribed/Fabrication
closed
Startup crash with KubeJS
k: Incompatibility
Crash on startup with both Fabrication and KubeJS, both mods work fine individually. I have no idea how to read those particular errors but Fabrication is the one who appears in the error so that's where I'm reporting. Minecraft - 1.16.4 Fabric API - 0.25.1 Fabrication - 1.2.2 KubeJS Fabric - 1.6.0 Rhino - 1.7.13.7 The log file gets cut off before the exception so here's the copied MultiMC log (so it has extra stuff at the top) : https://gist.github.com/Lykrast/47aec9660a9c013cb698222ef60f82d9
True
Startup crash with KubeJS - Crash on startup with both Fabrication and KubeJS, both mods work fine individually. I have no idea how to read those particular errors but Fabrication is the one who appears in the error so that's where I'm reporting. Minecraft - 1.16.4 Fabric API - 0.25.1 Fabrication - 1.2.2 KubeJS Fabric - 1.6.0 Rhino - 1.7.13.7 The log file gets cut off before the exception so here's the copied MultiMC log (so it has extra stuff at the top) : https://gist.github.com/Lykrast/47aec9660a9c013cb698222ef60f82d9
comp
startup crash with kubejs crash on startup with both fabrication and kubejs both mods work fine individually i have no idea how to read those particular errors but fabrication is the one who appears in the error so that s where i m reporting minecraft fabric api fabrication kubejs fabric rhino the log file gets cut off before the exception so here s the copied multimc log so it has extra stuff at the top
1
264,486
20,022,543,089
IssuesEvent
2022-02-01 17:43:03
hashicorp/terraform-provider-aws
https://api.github.com/repos/hashicorp/terraform-provider-aws
closed
aws_launch_template - unable to add associate_public_ip_address to interface even when subnet is defined
bug documentation service/ec2 service/autoscaling stale
**### Terraform Version** Terraform v0.11.11 + provider.aws v1.58.0 + provider.template v2.1.0 **### Affected Resource(s)** aws_launch_template **### Debug Output** Error: Error applying plan: ``` 1 error(s) occurred: * aws_autoscaling_group.SeleniumGrid: 1 error(s) occurred: * aws_autoscaling_group.SeleniumGrid: Error creating AutoScaling Group: ValidationError: AssociatePublicIpAddress field can not be specified without a subnet id status code: 400, request id: 3b9be5b9-4029-11e9-8a51-256062cbd3bf ``` **### Code** ``` **main.tf** resource "aws_autoscaling_group" "SeleniumGrid" { availability_zones = ["eu-west-1a"] desired_capacity = 1 max_size = 1 min_size = 1 mixed_instances_policy = { instances_distribution = { on_demand_allocation_strategy = "prioritized" on_demand_base_capacity = 0 on_demand_percentage_above_base_capacity = 0 spot_allocation_strategy = "lowest-price" spot_instance_pools = 3 } launch_template = { launch_template_specification = { launch_template_id = "${aws_launch_template.SeleniumTemplate.id}" version = "$$Latest" } override = { instance_type = "m5.xlarge" } override = { instance_type = "t2.xlarge" } override = { instance_type = "m3.xlarge" } override = { instance_type = "m4.xlarge" } override = { instance_type = "r3.xlarge" } override = { instance_type = "r4.xlarge" } } } } **template.ft** resource "aws_launch_template" "SeleniumTemplate" { iam_instance_profile = { name = "TEST_ROLE" } image_id = "ami-022b246f9283975aa" key_name = "TEST-Key-Pair" network_interfaces = { security_groups = ["sg-091255abf930f78ea"] delete_on_termination = true subnet_id = "subnet-619ba501" description = "Primary" device_index = 0 associate_public_ip_address = true } tag_specifications = { resource_type = "instance" tags = { Client = "Testing" Name = "${var.NameTag}" "Paid By" = "Testing" project = "AutomationTesting" } } tag_specifications = { resource_type = "volume" tags = { Client = "Testing" Name = "${var.NameTag}" "Paid By" = "Testing" project = "AutomationTesting" } } user_data = "${base64encode("${data.template_file.userData.rendered}")}" } ``` **### Expected Behavior** Launch template created that automatically assigned public IP address to the network interface on instance creation ### Actual Behavior I am able to run Terraform plan with no issues, when running apply and confirming yes throws the error, the subnet being used is a "public" subnet and has automatically assign public IP enabled on it. if i remove associate_public_ip_address from the configuration it will create the resources but defaults to false ### Steps to Reproduce create a aws_launch_template and add a network interface with a public subnet defined and associate_public_ip_address set to true / false for example, ``` resource "aws_launch_template" "SeleniumTemplate" { image_id = "ami-022b246f9283975aa" network_interfaces = { subnet_id = "subnet-a9c3bd80" associate_public_ip_address = true } } ```
1.0
aws_launch_template - unable to add associate_public_ip_address to interface even when subnet is defined - **### Terraform Version** Terraform v0.11.11 + provider.aws v1.58.0 + provider.template v2.1.0 **### Affected Resource(s)** aws_launch_template **### Debug Output** Error: Error applying plan: ``` 1 error(s) occurred: * aws_autoscaling_group.SeleniumGrid: 1 error(s) occurred: * aws_autoscaling_group.SeleniumGrid: Error creating AutoScaling Group: ValidationError: AssociatePublicIpAddress field can not be specified without a subnet id status code: 400, request id: 3b9be5b9-4029-11e9-8a51-256062cbd3bf ``` **### Code** ``` **main.tf** resource "aws_autoscaling_group" "SeleniumGrid" { availability_zones = ["eu-west-1a"] desired_capacity = 1 max_size = 1 min_size = 1 mixed_instances_policy = { instances_distribution = { on_demand_allocation_strategy = "prioritized" on_demand_base_capacity = 0 on_demand_percentage_above_base_capacity = 0 spot_allocation_strategy = "lowest-price" spot_instance_pools = 3 } launch_template = { launch_template_specification = { launch_template_id = "${aws_launch_template.SeleniumTemplate.id}" version = "$$Latest" } override = { instance_type = "m5.xlarge" } override = { instance_type = "t2.xlarge" } override = { instance_type = "m3.xlarge" } override = { instance_type = "m4.xlarge" } override = { instance_type = "r3.xlarge" } override = { instance_type = "r4.xlarge" } } } } **template.ft** resource "aws_launch_template" "SeleniumTemplate" { iam_instance_profile = { name = "TEST_ROLE" } image_id = "ami-022b246f9283975aa" key_name = "TEST-Key-Pair" network_interfaces = { security_groups = ["sg-091255abf930f78ea"] delete_on_termination = true subnet_id = "subnet-619ba501" description = "Primary" device_index = 0 associate_public_ip_address = true } tag_specifications = { resource_type = "instance" tags = { Client = "Testing" Name = "${var.NameTag}" "Paid By" = "Testing" project = "AutomationTesting" } } tag_specifications = { resource_type = "volume" tags = { Client = "Testing" Name = "${var.NameTag}" "Paid By" = "Testing" project = "AutomationTesting" } } user_data = "${base64encode("${data.template_file.userData.rendered}")}" } ``` **### Expected Behavior** Launch template created that automatically assigned public IP address to the network interface on instance creation ### Actual Behavior I am able to run Terraform plan with no issues, when running apply and confirming yes throws the error, the subnet being used is a "public" subnet and has automatically assign public IP enabled on it. if i remove associate_public_ip_address from the configuration it will create the resources but defaults to false ### Steps to Reproduce create a aws_launch_template and add a network interface with a public subnet defined and associate_public_ip_address set to true / false for example, ``` resource "aws_launch_template" "SeleniumTemplate" { image_id = "ami-022b246f9283975aa" network_interfaces = { subnet_id = "subnet-a9c3bd80" associate_public_ip_address = true } } ```
non_comp
aws launch template unable to add associate public ip address to interface even when subnet is defined terraform version terraform provider aws provider template affected resource s aws launch template debug output error error applying plan error s occurred aws autoscaling group seleniumgrid error s occurred aws autoscaling group seleniumgrid error creating autoscaling group validationerror associatepublicipaddress field can not be specified without a subnet id status code request id code main tf resource aws autoscaling group seleniumgrid availability zones desired capacity max size min size mixed instances policy instances distribution on demand allocation strategy prioritized on demand base capacity on demand percentage above base capacity spot allocation strategy lowest price spot instance pools launch template launch template specification launch template id aws launch template seleniumtemplate id version latest override instance type xlarge override instance type xlarge override instance type xlarge override instance type xlarge override instance type xlarge override instance type xlarge template ft resource aws launch template seleniumtemplate iam instance profile name test role image id ami key name test key pair network interfaces security groups delete on termination true subnet id subnet description primary device index associate public ip address true tag specifications resource type instance tags client testing name var nametag paid by testing project automationtesting tag specifications resource type volume tags client testing name var nametag paid by testing project automationtesting user data data template file userdata rendered expected behavior launch template created that automatically assigned public ip address to the network interface on instance creation actual behavior i am able to run terraform plan with no issues when running apply and confirming yes throws the error the subnet being used is a public subnet and has automatically assign public ip enabled on it if i remove associate public ip address from the configuration it will create the resources but defaults to false steps to reproduce create a aws launch template and add a network interface with a public subnet defined and associate public ip address set to true false for example resource aws launch template seleniumtemplate image id ami network interfaces subnet id subnet associate public ip address true
0
4,526
7,187,987,029
IssuesEvent
2018-02-02 08:24:11
AdguardTeam/AdguardForAndroid
https://api.github.com/repos/AdguardTeam/AdguardForAndroid
closed
nl.rijksoverheid.digid.pub - HTTPS filtering issue
SSL compatibility
https://play.google.com/store/apps/details?id=nl.rijksoverheid.digid.pub&hl > I didn't know I could disable HTTP filtering for specific apps. This indeed solved the problem (the app gave an error stating no connection could be made) and has no side effects as the app doesn't contain any ads.
True
nl.rijksoverheid.digid.pub - HTTPS filtering issue - https://play.google.com/store/apps/details?id=nl.rijksoverheid.digid.pub&hl > I didn't know I could disable HTTP filtering for specific apps. This indeed solved the problem (the app gave an error stating no connection could be made) and has no side effects as the app doesn't contain any ads.
comp
nl rijksoverheid digid pub https filtering issue i didn t know i could disable http filtering for specific apps this indeed solved the problem the app gave an error stating no connection could be made and has no side effects as the app doesn t contain any ads
1
165,346
26,150,709,539
IssuesEvent
2022-12-30 13:09:38
nextcloud/deck
https://api.github.com/repos/nextcloud/deck
closed
Tag creation not working inside the tag selector
enhancement good first issue 1. to develop design: papercut
**Describe the bug** Entered tags do not show up / are not saved. **To Reproduce** Steps to reproduce the behavior: 1. Go to a card's details view 2. Enter a new own tag into tags field 3. click enter 4. an empty label is added to tags field, no tag is added to card **Expected behavior** An label with the entered tag is created and added to the card.
1.0
Tag creation not working inside the tag selector - **Describe the bug** Entered tags do not show up / are not saved. **To Reproduce** Steps to reproduce the behavior: 1. Go to a card's details view 2. Enter a new own tag into tags field 3. click enter 4. an empty label is added to tags field, no tag is added to card **Expected behavior** An label with the entered tag is created and added to the card.
non_comp
tag creation not working inside the tag selector describe the bug entered tags do not show up are not saved to reproduce steps to reproduce the behavior go to a card s details view enter a new own tag into tags field click enter an empty label is added to tags field no tag is added to card expected behavior an label with the entered tag is created and added to the card
0
43,016
5,561,116,731
IssuesEvent
2017-03-24 21:27:24
CuBoulder/express
https://api.github.com/repos/CuBoulder/express
closed
As a SO/CE, I would like the option of all blocks contained within a block row to be able to have the same height so when block themes are applied the design is cleaner
Design Epic
## Context When adding backgrounds to blocks within a block row, the design is cleaner and causes less visual clutter if the blocks are the same height. ## Process 1. Create a few text blocks 2. Apply Background colors/block themes to those blocks 3. Place them in a block row 4. Check the match heights checkbox [ordered list the process to finding and recreating the issue, example below] 1. Login to site as a [SO, CE, EO, ADMIN or DEV] 2. Click Administer 3. Click Webform 4. Enter "Kevin, don't do that" in the body field 5. Click save ## Expected result The blocks within the row should all be the same height, and the backgrounds extending to the height of the largest block. ## Current result Block backgrounds are varied heights and don't match, adding visual clutter to the page. Before: ![screen shot 2017-01-25 at 1 00 39 pm](https://cloud.githubusercontent.com/assets/349713/23413918/7445880e-fd97-11e6-8b01-f9106f0d0f7b.jpg) After: ![screen shot 2017-01-25 at 12 12 20 pm](https://cloud.githubusercontent.com/assets/349713/23413928/7ad70710-fd97-11e6-9c9e-591bba8abb3c.jpg)
1.0
As a SO/CE, I would like the option of all blocks contained within a block row to be able to have the same height so when block themes are applied the design is cleaner - ## Context When adding backgrounds to blocks within a block row, the design is cleaner and causes less visual clutter if the blocks are the same height. ## Process 1. Create a few text blocks 2. Apply Background colors/block themes to those blocks 3. Place them in a block row 4. Check the match heights checkbox [ordered list the process to finding and recreating the issue, example below] 1. Login to site as a [SO, CE, EO, ADMIN or DEV] 2. Click Administer 3. Click Webform 4. Enter "Kevin, don't do that" in the body field 5. Click save ## Expected result The blocks within the row should all be the same height, and the backgrounds extending to the height of the largest block. ## Current result Block backgrounds are varied heights and don't match, adding visual clutter to the page. Before: ![screen shot 2017-01-25 at 1 00 39 pm](https://cloud.githubusercontent.com/assets/349713/23413918/7445880e-fd97-11e6-8b01-f9106f0d0f7b.jpg) After: ![screen shot 2017-01-25 at 12 12 20 pm](https://cloud.githubusercontent.com/assets/349713/23413928/7ad70710-fd97-11e6-9c9e-591bba8abb3c.jpg)
non_comp
as a so ce i would like the option of all blocks contained within a block row to be able to have the same height so when block themes are applied the design is cleaner context when adding backgrounds to blocks within a block row the design is cleaner and causes less visual clutter if the blocks are the same height process create a few text blocks apply background colors block themes to those blocks place them in a block row check the match heights checkbox login to site as a click administer click webform enter kevin don t do that in the body field click save expected result the blocks within the row should all be the same height and the backgrounds extending to the height of the largest block current result block backgrounds are varied heights and don t match adding visual clutter to the page before after
0
20,690
30,765,439,532
IssuesEvent
2023-07-30 08:31:23
simonwep/selection
https://api.github.com/repos/simonwep/selection
closed
babel-loader error while compiling the project
question awaiting response Incompatibility
<!-- Before creating an issue please make sure you are using the latest version of Selection.js --> <!-- DO NOT DELETE THIS TEMPLATE - OTHERWISE YOUR ISSUE WILL GET CLOSED IMMEDIATELY --> #### What is the problem? getting babel-loader error while compiling the project, any fix for this or any work around? Please help me get a solution for this as I have this last option for my feature. #### What is the current behavior? The following error I get while compiling the project. `` C:/Users/... /node_modules/@viselect/react/lib/viselect.esm.js 15:25 Module parse failed: Unexpected token (15:25) File was processed with these loaders: * ../../node_modules/react-scripts/node_modules/babel-loader/lib/index.js You may need an additional loader to handle the result of these loaders. | | removeEventListener(t, e) { > return this.t.get(t)?.delete(e), this; | } | `` #### Please provide the steps to reproduce and create a [CodeSandbox](https://codesandbox.io/). <!-- - Vue template: https://codesandbox.io/s/viselectvue-x13g6 - Vanilla template: https://codesandbox.io/s/viselectvanilla-kt332 - Preact template: https://codesandbox.io/s/viselectpreact-kjo9e - React template: https://codesandbox.io/s/viselectreact-sbn83 --> #### What is the expected behavior? Expected behavior is same as given in the viselect/react codesandbox example. My app to be able to select multiple files and folders by dragging over it. #### Your environment: ``` Toolset (e.g. webpack, vite, vue-cli...): Version (@viselect/react): Browser: Google Chrome OS: Windows 10 ```
True
babel-loader error while compiling the project - <!-- Before creating an issue please make sure you are using the latest version of Selection.js --> <!-- DO NOT DELETE THIS TEMPLATE - OTHERWISE YOUR ISSUE WILL GET CLOSED IMMEDIATELY --> #### What is the problem? getting babel-loader error while compiling the project, any fix for this or any work around? Please help me get a solution for this as I have this last option for my feature. #### What is the current behavior? The following error I get while compiling the project. `` C:/Users/... /node_modules/@viselect/react/lib/viselect.esm.js 15:25 Module parse failed: Unexpected token (15:25) File was processed with these loaders: * ../../node_modules/react-scripts/node_modules/babel-loader/lib/index.js You may need an additional loader to handle the result of these loaders. | | removeEventListener(t, e) { > return this.t.get(t)?.delete(e), this; | } | `` #### Please provide the steps to reproduce and create a [CodeSandbox](https://codesandbox.io/). <!-- - Vue template: https://codesandbox.io/s/viselectvue-x13g6 - Vanilla template: https://codesandbox.io/s/viselectvanilla-kt332 - Preact template: https://codesandbox.io/s/viselectpreact-kjo9e - React template: https://codesandbox.io/s/viselectreact-sbn83 --> #### What is the expected behavior? Expected behavior is same as given in the viselect/react codesandbox example. My app to be able to select multiple files and folders by dragging over it. #### Your environment: ``` Toolset (e.g. webpack, vite, vue-cli...): Version (@viselect/react): Browser: Google Chrome OS: Windows 10 ```
comp
babel loader error while compiling the project what is the problem getting babel loader error while compiling the project any fix for this or any work around please help me get a solution for this as i have this last option for my feature what is the current behavior the following error i get while compiling the project c users node modules viselect react lib viselect esm js module parse failed unexpected token file was processed with these loaders node modules react scripts node modules babel loader lib index js you may need an additional loader to handle the result of these loaders removeeventlistener t e return this t get t delete e this please provide the steps to reproduce and create a vue template vanilla template preact template react template what is the expected behavior expected behavior is same as given in the viselect react codesandbox example my app to be able to select multiple files and folders by dragging over it your environment toolset e g webpack vite vue cli version viselect react browser google chrome os windows
1
243,771
20,518,267,188
IssuesEvent
2022-03-01 14:04:02
alpaka-group/alpaka
https://api.github.com/repos/alpaka-group/alpaka
closed
Test zero extents alpaka buffer
Type:Testing
Alpaka's API allows the creation of buffers with extents containing only zeros, which might be a valid use case when a buffer object is needed, but no allocation should occur yet. We should make sure this use case is supported by extending the unit tests accordingly. See also discussion #1445.
1.0
Test zero extents alpaka buffer - Alpaka's API allows the creation of buffers with extents containing only zeros, which might be a valid use case when a buffer object is needed, but no allocation should occur yet. We should make sure this use case is supported by extending the unit tests accordingly. See also discussion #1445.
non_comp
test zero extents alpaka buffer alpaka s api allows the creation of buffers with extents containing only zeros which might be a valid use case when a buffer object is needed but no allocation should occur yet we should make sure this use case is supported by extending the unit tests accordingly see also discussion
0
4,674
7,298,190,479
IssuesEvent
2018-02-26 16:17:08
dotnet/project-system
https://api.github.com/repos/dotnet/project-system
closed
Support for Class Diagram in .Net Core projects
Area-New-Project-System Compatibility Parity-VSLangProj Resolution-Duplicate
This feature is useful when working with a huge codebase or domain. In orther to work with this I followed this stackoverflow: https://stackoverflow.com/questions/47967459/how-to-generate-class-diagram-from-asp-net-core-1-1-project But it only work until I closed the editor and never more. It didn't show the associations neither. Is there any plan to support this?
True
Support for Class Diagram in .Net Core projects - This feature is useful when working with a huge codebase or domain. In orther to work with this I followed this stackoverflow: https://stackoverflow.com/questions/47967459/how-to-generate-class-diagram-from-asp-net-core-1-1-project But it only work until I closed the editor and never more. It didn't show the associations neither. Is there any plan to support this?
comp
support for class diagram in net core projects this feature is useful when working with a huge codebase or domain in orther to work with this i followed this stackoverflow but it only work until i closed the editor and never more it didn t show the associations neither is there any plan to support this
1
701
3,125,641,027
IssuesEvent
2015-09-08 02:04:37
facebook/hhvm
https://api.github.com/repos/facebook/hhvm
closed
HHVM Kills connection to MySQL after 59 seconds
ini php5 incompatibility
Launch any php script using the cli, that executes a long running mysql query. It fails with: SlowTimer [59999ms] at runtime/ext_mysql: slow query: and the resulting output in the cli: <p>Error Number: 2013</p><p>Lost connection to MySQL server during query</p><p> Added these settings but did not help: hhvm.mysql.read_timeout = 1800000 hhvm.mysql.slow_query_threshold = 0
True
HHVM Kills connection to MySQL after 59 seconds - Launch any php script using the cli, that executes a long running mysql query. It fails with: SlowTimer [59999ms] at runtime/ext_mysql: slow query: and the resulting output in the cli: <p>Error Number: 2013</p><p>Lost connection to MySQL server during query</p><p> Added these settings but did not help: hhvm.mysql.read_timeout = 1800000 hhvm.mysql.slow_query_threshold = 0
comp
hhvm kills connection to mysql after seconds launch any php script using the cli that executes a long running mysql query it fails with slowtimer at runtime ext mysql slow query and the resulting output in the cli error number lost connection to mysql server during query added these settings but did not help hhvm mysql read timeout hhvm mysql slow query threshold
1
11,124
13,148,148,474
IssuesEvent
2020-08-08 19:42:01
jenkinsci/dark-theme-plugin
https://api.github.com/repos/jenkinsci/dark-theme-plugin
opened
Graphs are not themeable
core-compatibility
`hudson.util.Graph` is used around Jenkins and not (really) themeable. While it can consume some limited query parameters for background color, they're neither set nor work in a way that suits the existing CSS variable approach AFAICT. On the plus side, if the color definitions are never set we can probably get away with adding an extension point to override them. ## Examples > <img width="1672" alt="Screenshot" src="https://user-images.githubusercontent.com/1831569/89718557-ced0e900-d9bf-11ea-9ae0-253f55d7f2d5.png"> > <img width="1681" alt="Screenshot" src="https://user-images.githubusercontent.com/1831569/89718559-d0021600-d9bf-11ea-952b-043941bed7a6.png">
True
Graphs are not themeable - `hudson.util.Graph` is used around Jenkins and not (really) themeable. While it can consume some limited query parameters for background color, they're neither set nor work in a way that suits the existing CSS variable approach AFAICT. On the plus side, if the color definitions are never set we can probably get away with adding an extension point to override them. ## Examples > <img width="1672" alt="Screenshot" src="https://user-images.githubusercontent.com/1831569/89718557-ced0e900-d9bf-11ea-9ae0-253f55d7f2d5.png"> > <img width="1681" alt="Screenshot" src="https://user-images.githubusercontent.com/1831569/89718559-d0021600-d9bf-11ea-952b-043941bed7a6.png">
comp
graphs are not themeable hudson util graph is used around jenkins and not really themeable while it can consume some limited query parameters for background color they re neither set nor work in a way that suits the existing css variable approach afaict on the plus side if the color definitions are never set we can probably get away with adding an extension point to override them examples img width alt screenshot src img width alt screenshot src
1
862
2,551,902,215
IssuesEvent
2015-02-02 13:44:47
kogarashisan/LiquidLava
https://api.github.com/repos/kogarashisan/LiquidLava
opened
Ability to filter class trees
Category: Documentation P2 T4 Type: Feature
Take functionality from FilteredTree example. Should display "nothing found" when there are no records. Should automatically expand folders with only one item inside them.
1.0
Ability to filter class trees - Take functionality from FilteredTree example. Should display "nothing found" when there are no records. Should automatically expand folders with only one item inside them.
non_comp
ability to filter class trees take functionality from filteredtree example should display nothing found when there are no records should automatically expand folders with only one item inside them
0
9,434
11,492,129,867
IssuesEvent
2020-02-11 20:21:33
google/model-viewer
https://api.github.com/repos/google/model-viewer
closed
Enable <model-viewer> Scene Graph test suite
arc: compatibility project: model-viewer type: bug
We have been plagued by CI-only timeouts for the recently added scene graph test suite. We need to enable this test suite ASAP, so this task covers diagnosing the timeout. Running tests locally against browsers in Sauce Labs works fine and does not appear to be affected by the timeout. The timeout only occurs once hitting the first test that attempts to load a model in the scene graph test suite, and only when that test is run in Travis (or Github Actions).
True
Enable <model-viewer> Scene Graph test suite - We have been plagued by CI-only timeouts for the recently added scene graph test suite. We need to enable this test suite ASAP, so this task covers diagnosing the timeout. Running tests locally against browsers in Sauce Labs works fine and does not appear to be affected by the timeout. The timeout only occurs once hitting the first test that attempts to load a model in the scene graph test suite, and only when that test is run in Travis (or Github Actions).
comp
enable scene graph test suite we have been plagued by ci only timeouts for the recently added scene graph test suite we need to enable this test suite asap so this task covers diagnosing the timeout running tests locally against browsers in sauce labs works fine and does not appear to be affected by the timeout the timeout only occurs once hitting the first test that attempts to load a model in the scene graph test suite and only when that test is run in travis or github actions
1
6,838
9,124,925,163
IssuesEvent
2019-02-24 08:53:59
scylladb/scylla
https://api.github.com/repos/scylladb/scylla
opened
Slight different between Scylla and Apache Cassandra TTL
CQL cassandra 3.x compatibility
*Installation details* Scylla version (or git commit hash): 3.0.3 Apache Cassandra 3.11 Just before a row is TTLed, Scylla return a null value, while Cassandra does not ### Setup ``` cqlsh> CREATE KEYSPACE mykeyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'} AND durable_writes = true; cqlsh> USE mykeyspace; cqlsh:mykeyspace> CREATE TABLE heartrate_ttl ( ... pet_chip_id uuid, ... time timestamp, ... heart_rate int, ... PRIMARY KEY (pet_chip_id, time)); cqlsh:mykeyspace> INSERT INTO heartrate_ttl(pet_chip_id, time, heart_rate) VALUES (123e4567-e89b-12d3-a456-426655440b23, '2019-03-04 07:04:00', 131) USING TTL 21; cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl; pet_chip_id | time | heart_rate | ttl(heart_rate) --------------------------------------+---------------------------------+------------+----------------- 123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | 131 | 10 ``` Just before TTL is over Scylla will return ``` cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl; pet_chip_id | time | heart_rate | ttl(heart_rate) --------------------------------------+---------------------------------+------------+----------------- 123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | null | null ``` and after a second ``` pet_chip_id | time | heart_rate | ttl(heart_rate) -------------+------+------------+----------------- ``` I cound not repreduce this null value with Cassandra. Not sure its a bug
True
Slight different between Scylla and Apache Cassandra TTL - *Installation details* Scylla version (or git commit hash): 3.0.3 Apache Cassandra 3.11 Just before a row is TTLed, Scylla return a null value, while Cassandra does not ### Setup ``` cqlsh> CREATE KEYSPACE mykeyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'} AND durable_writes = true; cqlsh> USE mykeyspace; cqlsh:mykeyspace> CREATE TABLE heartrate_ttl ( ... pet_chip_id uuid, ... time timestamp, ... heart_rate int, ... PRIMARY KEY (pet_chip_id, time)); cqlsh:mykeyspace> INSERT INTO heartrate_ttl(pet_chip_id, time, heart_rate) VALUES (123e4567-e89b-12d3-a456-426655440b23, '2019-03-04 07:04:00', 131) USING TTL 21; cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl; pet_chip_id | time | heart_rate | ttl(heart_rate) --------------------------------------+---------------------------------+------------+----------------- 123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | 131 | 10 ``` Just before TTL is over Scylla will return ``` cqlsh:mykeyspace> select pet_chip_id,time, heart_rate, TTL(heart_rate) from heartrate_ttl; pet_chip_id | time | heart_rate | ttl(heart_rate) --------------------------------------+---------------------------------+------------+----------------- 123e4567-e89b-12d3-a456-426655440b23 | 2019-03-04 07:04:00.000000+0000 | null | null ``` and after a second ``` pet_chip_id | time | heart_rate | ttl(heart_rate) -------------+------+------------+----------------- ``` I cound not repreduce this null value with Cassandra. Not sure its a bug
comp
slight different between scylla and apache cassandra ttl installation details scylla version or git commit hash apache cassandra just before a row is ttled scylla return a null value while cassandra does not setup cqlsh create keyspace mykeyspace with replication class simplestrategy replication factor and durable writes true cqlsh use mykeyspace cqlsh mykeyspace create table heartrate ttl pet chip id uuid time timestamp heart rate int primary key pet chip id time cqlsh mykeyspace insert into heartrate ttl pet chip id time heart rate values using ttl cqlsh mykeyspace select pet chip id time heart rate ttl heart rate from heartrate ttl pet chip id time heart rate ttl heart rate just before ttl is over scylla will return cqlsh mykeyspace select pet chip id time heart rate ttl heart rate from heartrate ttl pet chip id time heart rate ttl heart rate null null and after a second pet chip id time heart rate ttl heart rate i cound not repreduce this null value with cassandra not sure its a bug
1
4,158
6,960,470,455
IssuesEvent
2017-12-08 03:42:33
userfrosting/UserFrosting
https://api.github.com/repos/userfrosting/UserFrosting
closed
DB migration from UF3 to UF4
bakery compatibility standards and best practices up-for-grabs
We could really use a DB migration tool for helping people upgrade from UF3 to UF4.
True
DB migration from UF3 to UF4 - We could really use a DB migration tool for helping people upgrade from UF3 to UF4.
comp
db migration from to we could really use a db migration tool for helping people upgrade from to
1
807,304
29,994,166,542
IssuesEvent
2023-06-26 03:04:13
openmsupply/open-msupply
https://api.github.com/repos/openmsupply/open-msupply
closed
Merge programs feature into develop
programs v1.02 Priority: Should have
What it says in the title: taking into consideration - the effect on sync - whether the dispensing section should be displayed for non-programs users, and how this is en/disabled - database initialisation for programs ( currently users and documents are added, and these should only come from sync I think )
1.0
Merge programs feature into develop - What it says in the title: taking into consideration - the effect on sync - whether the dispensing section should be displayed for non-programs users, and how this is en/disabled - database initialisation for programs ( currently users and documents are added, and these should only come from sync I think )
non_comp
merge programs feature into develop what it says in the title taking into consideration the effect on sync whether the dispensing section should be displayed for non programs users and how this is en disabled database initialisation for programs currently users and documents are added and these should only come from sync i think
0
8,873
10,861,476,419
IssuesEvent
2019-11-14 11:10:02
cryptape/cita
https://api.github.com/repos/cryptape/cita
closed
hash account key or not
compatibility vm & state
## Description In CITA trie insert: ```rs trie.insert(&address, &account.rlp()) .map_err(|err| *err)?; ``` In Ethereum trie insert: ``` trie.insert(&tiny_keccak::keccak256(&address), &account.rlp()) .map_err(|err| *err)?; ``` Just seeing the key inserted into trie store, Ethereum did hash firstly, then insert it. CITA did insert operation directly. This difference will cause the whole state changed.
True
hash account key or not - ## Description In CITA trie insert: ```rs trie.insert(&address, &account.rlp()) .map_err(|err| *err)?; ``` In Ethereum trie insert: ``` trie.insert(&tiny_keccak::keccak256(&address), &account.rlp()) .map_err(|err| *err)?; ``` Just seeing the key inserted into trie store, Ethereum did hash firstly, then insert it. CITA did insert operation directly. This difference will cause the whole state changed.
comp
hash account key or not description in cita trie insert rs trie insert address account rlp map err err err in ethereum trie insert trie insert tiny keccak address account rlp map err err err just seeing the key inserted into trie store ethereum did hash firstly then insert it cita did insert operation directly this difference will cause the whole state changed
1
19,401
26,920,701,615
IssuesEvent
2023-02-07 10:14:40
eclipse/microprofile-marketing
https://api.github.com/repos/eclipse/microprofile-marketing
closed
[Compatible Implementations Announcement] Oracle, Helidon 3.1
Announcement Compatible Implementation
**Organization Name** Name: Oracle **Product Version and download URL** URL: [Helidon 3.1](https://helidon.io) [Documentation for Helidon 3.0](https://helidon.io/docs/v3/#/about/introduction) **Java runtime used to run the implementation** JDK 17.0.4. [CCR](https://github.com/eclipse/microprofile/issues/291) **Media Description** Helidon 3 is a compact Java framework that delivers complete MicroProfile 5 compatibility. Helidon also includes compatible implementations of GraphQL, LRA, Reactive Streams Operators, and Reactive Messaging. Helidon provides a convenient starter feature that allows you to generate your first MicroProfile application right away. Go to [helidon.io](https://helidon.io) and click the 'Starter' button. **Design Card** (for MicroProfile designer) Helidon Logo (frank.svg)as .svg is attached. **Notes** [MicroProfile 5 Certification, Helidon 3](https://github.com/helidon-io/helidon/wiki/Eclipse-MicroProfile-5-Certification,-Helidon-3) ![frank](https://user-images.githubusercontent.com/12281454/211943562-1ed69d78-8745-4729-8864-6dcd40f3a172.svg)
True
[Compatible Implementations Announcement] Oracle, Helidon 3.1 - **Organization Name** Name: Oracle **Product Version and download URL** URL: [Helidon 3.1](https://helidon.io) [Documentation for Helidon 3.0](https://helidon.io/docs/v3/#/about/introduction) **Java runtime used to run the implementation** JDK 17.0.4. [CCR](https://github.com/eclipse/microprofile/issues/291) **Media Description** Helidon 3 is a compact Java framework that delivers complete MicroProfile 5 compatibility. Helidon also includes compatible implementations of GraphQL, LRA, Reactive Streams Operators, and Reactive Messaging. Helidon provides a convenient starter feature that allows you to generate your first MicroProfile application right away. Go to [helidon.io](https://helidon.io) and click the 'Starter' button. **Design Card** (for MicroProfile designer) Helidon Logo (frank.svg)as .svg is attached. **Notes** [MicroProfile 5 Certification, Helidon 3](https://github.com/helidon-io/helidon/wiki/Eclipse-MicroProfile-5-Certification,-Helidon-3) ![frank](https://user-images.githubusercontent.com/12281454/211943562-1ed69d78-8745-4729-8864-6dcd40f3a172.svg)
comp
oracle helidon organization name name oracle product version and download url url java runtime used to run the implementation jdk media description helidon is a compact java framework that delivers complete microprofile compatibility helidon also includes compatible implementations of graphql lra reactive streams operators and reactive messaging helidon provides a convenient starter feature that allows you to generate your first microprofile application right away go to and click the starter button design card for microprofile designer helidon logo frank svg as svg is attached notes
1
6,619
8,894,548,296
IssuesEvent
2019-01-16 04:46:25
MozillaReality/FirefoxReality
https://api.github.com/repos/MozillaReality/FirefoxReality
opened
Intermittent errors in playing videos (YouTube) because of JavaScript error: `AbortError: The operation was aborted.`
P0 bug compatibility
## Hardware Oculus Go 1.1.2 ## Steps to Reproduce <!--- For bugs, please provide a link to a live web site, test page, or a rough set of --> <!--- steps to reproduce this bug. If relevant, include code to reproduce. --> <!--- Feel free to attach images and GIFs of screen captures. --> 1. Launch https://www.youtube.com/watch?v=fSo_BDant_s&mozVideoProjection=360s_auto and press the Play button for the video. 2. Press the Fullscreen icon to enter the 360 Stereo projection. 3. Ensure `Remote Debugging` is enabled. Launch the WebIDE from desktop Firefox. 4. Click on the Tab on the left side. 5. Notice the error in the DevTools console: ``` AbortError: The operation was aborted. ``` ![screenshot](https://user-images.githubusercontent.com/203725/51226794-eb04c500-1905-11e9-8818-6169296941fe.png) ## Current Behavior Sometimes, the video cannot be played due to a JavaScript error. ``` AbortError: The operation was aborted. ``` ## Expected Behavior The video consistently plays correctly. ## Context Originally identified and reproduced by @thenadj. Reported in https://github.com/MozillaReality/FirefoxReality/issues/925#issue-399637415. ![screenshot](https://user-images.githubusercontent.com/203725/51226906-71210b80-1906-11e9-88d9-8b5f4c1643bb.png) CC: @MortimerGoro @bluemarvin @caseyyee @adamopenweb
True
Intermittent errors in playing videos (YouTube) because of JavaScript error: `AbortError: The operation was aborted.` - ## Hardware Oculus Go 1.1.2 ## Steps to Reproduce <!--- For bugs, please provide a link to a live web site, test page, or a rough set of --> <!--- steps to reproduce this bug. If relevant, include code to reproduce. --> <!--- Feel free to attach images and GIFs of screen captures. --> 1. Launch https://www.youtube.com/watch?v=fSo_BDant_s&mozVideoProjection=360s_auto and press the Play button for the video. 2. Press the Fullscreen icon to enter the 360 Stereo projection. 3. Ensure `Remote Debugging` is enabled. Launch the WebIDE from desktop Firefox. 4. Click on the Tab on the left side. 5. Notice the error in the DevTools console: ``` AbortError: The operation was aborted. ``` ![screenshot](https://user-images.githubusercontent.com/203725/51226794-eb04c500-1905-11e9-8818-6169296941fe.png) ## Current Behavior Sometimes, the video cannot be played due to a JavaScript error. ``` AbortError: The operation was aborted. ``` ## Expected Behavior The video consistently plays correctly. ## Context Originally identified and reproduced by @thenadj. Reported in https://github.com/MozillaReality/FirefoxReality/issues/925#issue-399637415. ![screenshot](https://user-images.githubusercontent.com/203725/51226906-71210b80-1906-11e9-88d9-8b5f4c1643bb.png) CC: @MortimerGoro @bluemarvin @caseyyee @adamopenweb
comp
intermittent errors in playing videos youtube because of javascript error aborterror the operation was aborted hardware oculus go steps to reproduce launch and press the play button for the video press the fullscreen icon to enter the stereo projection ensure remote debugging is enabled launch the webide from desktop firefox click on the tab on the left side notice the error in the devtools console aborterror the operation was aborted current behavior sometimes the video cannot be played due to a javascript error aborterror the operation was aborted expected behavior the video consistently plays correctly context originally identified and reproduced by thenadj reported in cc mortimergoro bluemarvin caseyyee adamopenweb
1
313,882
26,960,223,803
IssuesEvent
2023-02-08 17:35:44
WISE-Developers/Project_issues
https://api.github.com/repos/WISE-Developers/Project_issues
closed
[WISE Bug]: Linux WISE on Azure & Windows 10 WSL
bug W.I.S.E. Testing Failed
### Contact Details rbryce@heartlandsoftware.ca ### What happened? Reported issues with W.I.S.E. on Azure. ### Version (Linux) 2021.11.xx ### What component are you seeing the problem on? WISE Binary ### Relevant log output From Alex: On Azure - Directly inside the container, running ```psaas --validate job.fgmj ``` leads to the following error: ``` terminate called after throwing an instance of 'boost::interprocess::interprocess_exception' what(): Invalid argument /usr/bin/psaas: line 2: 6688 Aborted LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/psaas /usr/lib/psaas/psaas "$@" ``` From Alex: Windows 10 Enterprise 20H2 OS build 19042.2251. My WSL distro is Ubuntu 22.04.1 LTS (GNU/Linux 5.10.102.1-microsoft-standard-WSL2 x86_64) ``` 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | > base_typescript@1.0.0 model 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | > node dist/model.js 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | Clearing old results 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | Running the job 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | error: Command failed: /usr/bin/psaas ~/app_data/testjob/job.fgmj 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | terminate called after throwing an instance of 'boost::interprocess::interprocess_exception' 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | what(): Failed to load CPU details. 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | /usr/bin/psaas: line 2: 30 Aborted LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/psaas /usr/lib/psaas/psaas "$@" 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | error: Command failed: /usr/bin/psaas ~/app_data/testjob/job.fgmj --validate 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | terminate called after throwing an instance of 'boost::interprocess::interprocess_exception' 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | what(): Invalid argument 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | /usr/bin/psaas: line 2: 27 Aborted LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/psaas /usr/lib/psaas/psaas "$@" 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | ``` ### Approvals Process - [ ] Testing For Issue - [ ] Executive Approval - [ ] Merge
1.0
[WISE Bug]: Linux WISE on Azure & Windows 10 WSL - ### Contact Details rbryce@heartlandsoftware.ca ### What happened? Reported issues with W.I.S.E. on Azure. ### Version (Linux) 2021.11.xx ### What component are you seeing the problem on? WISE Binary ### Relevant log output From Alex: On Azure - Directly inside the container, running ```psaas --validate job.fgmj ``` leads to the following error: ``` terminate called after throwing an instance of 'boost::interprocess::interprocess_exception' what(): Invalid argument /usr/bin/psaas: line 2: 6688 Aborted LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/psaas /usr/lib/psaas/psaas "$@" ``` From Alex: Windows 10 Enterprise 20H2 OS build 19042.2251. My WSL distro is Ubuntu 22.04.1 LTS (GNU/Linux 5.10.102.1-microsoft-standard-WSL2 x86_64) ``` 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | > base_typescript@1.0.0 model 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | > node dist/model.js 2022-12-16 16:01:25 WISE-DEMO-DEVELOPER | 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | Clearing old results 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | Running the job 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | error: Command failed: /usr/bin/psaas ~/app_data/testjob/job.fgmj 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | terminate called after throwing an instance of 'boost::interprocess::interprocess_exception' 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | what(): Failed to load CPU details. 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | /usr/bin/psaas: line 2: 30 Aborted LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/psaas /usr/lib/psaas/psaas "$@" 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | error: Command failed: /usr/bin/psaas ~/app_data/testjob/job.fgmj --validate 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | terminate called after throwing an instance of 'boost::interprocess::interprocess_exception' 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | what(): Invalid argument 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | /usr/bin/psaas: line 2: 27 Aborted LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/psaas /usr/lib/psaas/psaas "$@" 2022-12-16 16:01:26 WISE-DEMO-DEVELOPER | ``` ### Approvals Process - [ ] Testing For Issue - [ ] Executive Approval - [ ] Merge
non_comp
linux wise on azure windows wsl contact details rbryce heartlandsoftware ca what happened reported issues with w i s e on azure version linux xx what component are you seeing the problem on wise binary relevant log output from alex on azure directly inside the container running psaas validate job fgmj leads to the following error terminate called after throwing an instance of boost interprocess interprocess exception what invalid argument usr bin psaas line aborted ld library path ld library path usr lib psaas usr lib psaas psaas from alex windows enterprise os build my wsl distro is ubuntu lts gnu linux microsoft standard wise demo developer wise demo developer base typescript model wise demo developer node dist model js wise demo developer wise demo developer clearing old results wise demo developer running the job wise demo developer error command failed usr bin psaas app data testjob job fgmj wise demo developer terminate called after throwing an instance of boost interprocess interprocess exception wise demo developer what failed to load cpu details wise demo developer usr bin psaas line aborted ld library path ld library path usr lib psaas usr lib psaas psaas wise demo developer wise demo developer error command failed usr bin psaas app data testjob job fgmj validate wise demo developer terminate called after throwing an instance of boost interprocess interprocess exception wise demo developer what invalid argument wise demo developer usr bin psaas line aborted ld library path ld library path usr lib psaas usr lib psaas psaas wise demo developer approvals process testing for issue executive approval merge
0
17,181
23,696,668,694
IssuesEvent
2022-08-29 15:10:40
opensrp/web
https://api.github.com/repos/opensrp/web
opened
[FHIR Road Map - Supply Chain]: Display a list of Commodities on table.
FHIR compatibility
### Issue Context? - We would like to list out all the commodities on a specific FHIR Core set-up. - This will be displayed on a table with the same look and feel as the other tables on the platform. - We are using the [group resource](https://www.hl7.org/fhir/group.html) for this representation. ### Issue Implemetation details? - [ ] Create a navigation menu called `Commodity Management - [ ] On clicking the `Commodity Management` menu redirect to the page displaying a list of commodities. - [ ] How to fetch the commodities - [ ] Load all the [Group resources](https://www.hl7.org/fhir/group.html) with the following code - `{"coding":[{"system":"http://snomed.info/sct","code":"386452003","display":"Supply management"}]}` - [ ] How to display the commodities. - [ ] Have a search input filed. This searches through the `name` attribute - [ ] Show the following columns `name`, `active` & `action (edit and view details)` - [ ] Show an `Add Commodity` button that redirects to the group addition form. - [ ] The view details action should do the following - [ ] Show the View details section on the right of the page - [ ] The view details should show the following items - [ ] Name - [ ] Active status - [ ] Unit of Measure - How to get the unit of measure. - Load the `characteristic.valueCodeableConcept.text` on the [Group resource](https://www.hl7.org/fhir/group.html). ### Issue Acceptance criteria? - [ ] Have a table displaying all the commodities on the server. - [ ] The table should have the following columns `name`, `active`, `Unit of Measure` & `action (edit and view details)`commodities. - [ ] Have the following actions. - [ ] Edit -- Redirects to the edit form - [ ] View Details -- Opens up the details section on the page's right side. - [ ] Add Commodity -- Redirects to the add form ### FHIR resources to be used? Group Resource - https://www.hl7.org/fhir/group.html Sample Resources - https://github.com/opensrp/fhir-resources/tree/main/ecbis/supply_chain/commodities ### Relevant Information _No response_
True
[FHIR Road Map - Supply Chain]: Display a list of Commodities on table. - ### Issue Context? - We would like to list out all the commodities on a specific FHIR Core set-up. - This will be displayed on a table with the same look and feel as the other tables on the platform. - We are using the [group resource](https://www.hl7.org/fhir/group.html) for this representation. ### Issue Implemetation details? - [ ] Create a navigation menu called `Commodity Management - [ ] On clicking the `Commodity Management` menu redirect to the page displaying a list of commodities. - [ ] How to fetch the commodities - [ ] Load all the [Group resources](https://www.hl7.org/fhir/group.html) with the following code - `{"coding":[{"system":"http://snomed.info/sct","code":"386452003","display":"Supply management"}]}` - [ ] How to display the commodities. - [ ] Have a search input filed. This searches through the `name` attribute - [ ] Show the following columns `name`, `active` & `action (edit and view details)` - [ ] Show an `Add Commodity` button that redirects to the group addition form. - [ ] The view details action should do the following - [ ] Show the View details section on the right of the page - [ ] The view details should show the following items - [ ] Name - [ ] Active status - [ ] Unit of Measure - How to get the unit of measure. - Load the `characteristic.valueCodeableConcept.text` on the [Group resource](https://www.hl7.org/fhir/group.html). ### Issue Acceptance criteria? - [ ] Have a table displaying all the commodities on the server. - [ ] The table should have the following columns `name`, `active`, `Unit of Measure` & `action (edit and view details)`commodities. - [ ] Have the following actions. - [ ] Edit -- Redirects to the edit form - [ ] View Details -- Opens up the details section on the page's right side. - [ ] Add Commodity -- Redirects to the add form ### FHIR resources to be used? Group Resource - https://www.hl7.org/fhir/group.html Sample Resources - https://github.com/opensrp/fhir-resources/tree/main/ecbis/supply_chain/commodities ### Relevant Information _No response_
comp
display a list of commodities on table issue context we would like to list out all the commodities on a specific fhir core set up this will be displayed on a table with the same look and feel as the other tables on the platform we are using the for this representation issue implemetation details create a navigation menu called commodity management on clicking the commodity management menu redirect to the page displaying a list of commodities how to fetch the commodities load all the with the following code coding how to display the commodities have a search input filed this searches through the name attribute show the following columns name active action edit and view details show an add commodity button that redirects to the group addition form the view details action should do the following show the view details section on the right of the page the view details should show the following items name active status unit of measure how to get the unit of measure load the characteristic valuecodeableconcept text on the issue acceptance criteria have a table displaying all the commodities on the server the table should have the following columns name active unit of measure action edit and view details commodities have the following actions edit redirects to the edit form view details opens up the details section on the page s right side add commodity redirects to the add form fhir resources to be used group resource sample resources relevant information no response
1
17,222
23,749,620,842
IssuesEvent
2022-08-31 19:17:07
lgblgblgb/xemu
https://api.github.com/repos/lgblgblgb/xemu
closed
MEGA65: VIC-II bank ignored when displaying sprites in VIC-IV mode
target:MEGA65 Committed compatibility-example VIC-IV
**Describe the bug** The VIC-II bank is set to $8000 via CIA2_PRA, VIC hot registers disabled, charset, screen position, and sprite pointer set via VIC-IV registers. On MEGA65, the correct sprites are displayed, on xmega65 the data from bank 0 is displayed instead. **Used version of the project** ``` **** The Evolving MEGA65 emulator from LGB **** This software is part of the Xemu project: https://github.com/lgblgblgb/xemu CREATED: travis@lgb on Darwin 18.7.0 at Tue Apr 26 10:24:46 GMT 2022 CREATED: clang 4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.33.8) 64LE for osx VERSION: https://github.com/lgblgblgb/xemu.git master 08ed0450f53a65a285dcac802373aea4f9c6450d 20220426121838 official-build EMULATE: MEGA65 (mega65): xmega65 (../../build/bin/xmega65.native) for mega65 on osx (native) using cc ``` **To Reproduce** Start the attached program on the emulator. [anykey-mega65.prg.zip](https://github.com/lgblgblgb/xemu/files/8731997/anykey-mega65.prg.zip) Sources are at [GitHub](https://github.com/T-Pau/Anykey). (For the build above, I've commented out line 135 of start-vicii.s that copies the sprite data to bank 0 as a workaround for this bug.) If it helps, I can try to create a smaller example program. **Expected behavior** In the lower right corner, a logo should be displayed. **Screenshots** How it looks in the emulator: <img width="697" alt="Screenshot 2022-05-19 at 18 07 17" src="https://user-images.githubusercontent.com/1974387/169347027-50cc5cf1-fce3-450c-b3ea-11eb6cefd92f.png"> How it looks on the MEGA65: <img width="692" alt="Screenshot 2022-05-19 at 18 07 35" src="https://user-images.githubusercontent.com/1974387/169347030-deff4c6a-327a-4a36-b4be-c7f95db33c49.png"> **Computer/Device (please complete the following information):** - Device/Platform: Mac - OS and its version: macOS 12.3.1 **Additional context**
True
MEGA65: VIC-II bank ignored when displaying sprites in VIC-IV mode - **Describe the bug** The VIC-II bank is set to $8000 via CIA2_PRA, VIC hot registers disabled, charset, screen position, and sprite pointer set via VIC-IV registers. On MEGA65, the correct sprites are displayed, on xmega65 the data from bank 0 is displayed instead. **Used version of the project** ``` **** The Evolving MEGA65 emulator from LGB **** This software is part of the Xemu project: https://github.com/lgblgblgb/xemu CREATED: travis@lgb on Darwin 18.7.0 at Tue Apr 26 10:24:46 GMT 2022 CREATED: clang 4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.33.8) 64LE for osx VERSION: https://github.com/lgblgblgb/xemu.git master 08ed0450f53a65a285dcac802373aea4f9c6450d 20220426121838 official-build EMULATE: MEGA65 (mega65): xmega65 (../../build/bin/xmega65.native) for mega65 on osx (native) using cc ``` **To Reproduce** Start the attached program on the emulator. [anykey-mega65.prg.zip](https://github.com/lgblgblgb/xemu/files/8731997/anykey-mega65.prg.zip) Sources are at [GitHub](https://github.com/T-Pau/Anykey). (For the build above, I've commented out line 135 of start-vicii.s that copies the sprite data to bank 0 as a workaround for this bug.) If it helps, I can try to create a smaller example program. **Expected behavior** In the lower right corner, a logo should be displayed. **Screenshots** How it looks in the emulator: <img width="697" alt="Screenshot 2022-05-19 at 18 07 17" src="https://user-images.githubusercontent.com/1974387/169347027-50cc5cf1-fce3-450c-b3ea-11eb6cefd92f.png"> How it looks on the MEGA65: <img width="692" alt="Screenshot 2022-05-19 at 18 07 35" src="https://user-images.githubusercontent.com/1974387/169347030-deff4c6a-327a-4a36-b4be-c7f95db33c49.png"> **Computer/Device (please complete the following information):** - Device/Platform: Mac - OS and its version: macOS 12.3.1 **Additional context**
comp
vic ii bank ignored when displaying sprites in vic iv mode describe the bug the vic ii bank is set to via pra vic hot registers disabled charset screen position and sprite pointer set via vic iv registers on the correct sprites are displayed on the data from bank is displayed instead used version of the project the evolving emulator from lgb this software is part of the xemu project created travis lgb on darwin at tue apr gmt created clang compatible apple llvm clang for osx version master official build emulate build bin native for on osx native using cc to reproduce start the attached program on the emulator sources are at for the build above i ve commented out line of start vicii s that copies the sprite data to bank as a workaround for this bug if it helps i can try to create a smaller example program expected behavior in the lower right corner a logo should be displayed screenshots how it looks in the emulator img width alt screenshot at src how it looks on the img width alt screenshot at src computer device please complete the following information device platform mac os and its version macos additional context
1
12,400
14,665,628,195
IssuesEvent
2020-12-29 14:38:48
Angry-Pixel/The-Betweenlands
https://api.github.com/repos/Angry-Pixel/The-Betweenlands
closed
[Suggestion] Decay bar conflicting with flight bar from botania
Incompatibility
those two bars are covering each other, I was wondering if you could make the decay bar go above the flight bar if I have my flugel tiara in the beweenlands so that they don't cover each other anymore. it is really annoying me . though I think it is a problem from their mod but I am not really sure. if it is, it would be highly appreciated if you or they made an "support" kinda thing .... I dunno. thanks for listening
True
[Suggestion] Decay bar conflicting with flight bar from botania - those two bars are covering each other, I was wondering if you could make the decay bar go above the flight bar if I have my flugel tiara in the beweenlands so that they don't cover each other anymore. it is really annoying me . though I think it is a problem from their mod but I am not really sure. if it is, it would be highly appreciated if you or they made an "support" kinda thing .... I dunno. thanks for listening
comp
decay bar conflicting with flight bar from botania those two bars are covering each other i was wondering if you could make the decay bar go above the flight bar if i have my flugel tiara in the beweenlands so that they don t cover each other anymore it is really annoying me though i think it is a problem from their mod but i am not really sure if it is it would be highly appreciated if you or they made an support kinda thing i dunno thanks for listening
1
57,594
14,169,815,833
IssuesEvent
2020-11-12 13:45:17
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
[Security Solution] Kibana crash on adding endpoint integration
Feature:Endpoint Team: SecuritySolution Team:Onboarding and Lifecycle Mgt bug
**Describe the bug:** Adding endpoint integration to a policy triggers a side effect (https://github.com/elastic/kibana/pull/79198) of installing detection index and rules. If installing those rules fails, the error is not caught correctly, and kibana crashes **Kibana/Elasticsearch Stack version:** kibana master @ 7e24ae6e70a **Server OS version:** 8.0.0-SNAPSHOT **Browser and Browser OS versions:** n/a **Elastic Endpoint version:** n/a **Original install method (e.g. download page, yum, from source, etc.):** kibana running from source `yarn start --no-base-path` elasticsearch running from docker snapshot ``` docker run --rm -it \ -p 9200:9200 -p 9300:9300 \ -e discovery.type=single-node \ -e xpack.security.authc.api_key.enabled=true \ -e xpack.security.enabled=true \ -e xpack.license.self_generated.type=trial \ -e network.host=0.0.0.0 \ -e ELASTIC_PASSWORD=foo \ -e ES_JAVA_OPTS=-Xms4g -Xmx4g \ --ulimit=host \ --privileged elasticsearch:8.0.0-SNAPSHOT ``` (similar to `yarn es snapshot`, but the rule installation only fails w/ docker snapshot) **Steps to reproduce:** 1. start es snapshot in docker 2. start kibana 3. navigate to fleet policy page ( http://localhost:5601/app/ingestManager#/policies ) 4. Click Default policy name 5. Add integration 6. Endpoint Security 7. give it a name 8. Kibana will crash on clicking Save **Current behavior:** Performing the detection rules installation seems to fail with HTTP 503 and ECONNRESET. Which, sure, that's an environment thing maybe. But **The exception is not handled** and kibana crashes **Expected behavior:** Flaky connections or other errors are gracefully handled **Screenshots (if relevant):** ![2020-11-12-084016_scrot](https://user-images.githubusercontent.com/315796/98947036-ad9dfe00-24c2-11eb-8352-aab682172a9d.png) ![2020-11-12-084116_scrot](https://user-images.githubusercontent.com/315796/98947149-d7efbb80-24c2-11eb-8727-71a61d837e93.png) **Errors in browser console (if relevant):** **Provide logs and/or server output (if relevant):** ``` server log [08:22:51.193] [error][data][elasticsearch] [ConnectionError]: read ECONNRESET Unhandled Promise rejection detected: { ConnectionError: read ECONNRESET at ClientRequest.request.on.err (/home/dan/dev/elastic/kibana/node_modules/@elastic/elasticsearch/lib/Connection.js:132:18) at ClientRequest.emit (events.js:198:13) at Socket.socketErrorListener (_http_client.js:401:9) at Socket.emit (events.js:198:13) at emitErrorNT (internal/streams/destroy.js:91:8) at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) at process._tickCallback (internal/process/next_tick.js:63:19) name: 'ConnectionError', meta: { body: null, statusCode: null, headers: null, meta: { context: null, request: [Object], name: 'elasticsearch-js', connection: [Object], attempts: 0, aborted: false } }, isBoom: true, isServer: true, data: null, output: { statusCode: 503, payload: { statusCode: 503, error: 'Service Unavailable', message: 'read ECONNRESET' }, headers: {} }, [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/esUnavailable' } Terminating process... server crashed with status code 1 ``` **Any additional context (logs, chat logs, magical formulas, etc.):**
True
[Security Solution] Kibana crash on adding endpoint integration - **Describe the bug:** Adding endpoint integration to a policy triggers a side effect (https://github.com/elastic/kibana/pull/79198) of installing detection index and rules. If installing those rules fails, the error is not caught correctly, and kibana crashes **Kibana/Elasticsearch Stack version:** kibana master @ 7e24ae6e70a **Server OS version:** 8.0.0-SNAPSHOT **Browser and Browser OS versions:** n/a **Elastic Endpoint version:** n/a **Original install method (e.g. download page, yum, from source, etc.):** kibana running from source `yarn start --no-base-path` elasticsearch running from docker snapshot ``` docker run --rm -it \ -p 9200:9200 -p 9300:9300 \ -e discovery.type=single-node \ -e xpack.security.authc.api_key.enabled=true \ -e xpack.security.enabled=true \ -e xpack.license.self_generated.type=trial \ -e network.host=0.0.0.0 \ -e ELASTIC_PASSWORD=foo \ -e ES_JAVA_OPTS=-Xms4g -Xmx4g \ --ulimit=host \ --privileged elasticsearch:8.0.0-SNAPSHOT ``` (similar to `yarn es snapshot`, but the rule installation only fails w/ docker snapshot) **Steps to reproduce:** 1. start es snapshot in docker 2. start kibana 3. navigate to fleet policy page ( http://localhost:5601/app/ingestManager#/policies ) 4. Click Default policy name 5. Add integration 6. Endpoint Security 7. give it a name 8. Kibana will crash on clicking Save **Current behavior:** Performing the detection rules installation seems to fail with HTTP 503 and ECONNRESET. Which, sure, that's an environment thing maybe. But **The exception is not handled** and kibana crashes **Expected behavior:** Flaky connections or other errors are gracefully handled **Screenshots (if relevant):** ![2020-11-12-084016_scrot](https://user-images.githubusercontent.com/315796/98947036-ad9dfe00-24c2-11eb-8352-aab682172a9d.png) ![2020-11-12-084116_scrot](https://user-images.githubusercontent.com/315796/98947149-d7efbb80-24c2-11eb-8727-71a61d837e93.png) **Errors in browser console (if relevant):** **Provide logs and/or server output (if relevant):** ``` server log [08:22:51.193] [error][data][elasticsearch] [ConnectionError]: read ECONNRESET Unhandled Promise rejection detected: { ConnectionError: read ECONNRESET at ClientRequest.request.on.err (/home/dan/dev/elastic/kibana/node_modules/@elastic/elasticsearch/lib/Connection.js:132:18) at ClientRequest.emit (events.js:198:13) at Socket.socketErrorListener (_http_client.js:401:9) at Socket.emit (events.js:198:13) at emitErrorNT (internal/streams/destroy.js:91:8) at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) at process._tickCallback (internal/process/next_tick.js:63:19) name: 'ConnectionError', meta: { body: null, statusCode: null, headers: null, meta: { context: null, request: [Object], name: 'elasticsearch-js', connection: [Object], attempts: 0, aborted: false } }, isBoom: true, isServer: true, data: null, output: { statusCode: 503, payload: { statusCode: 503, error: 'Service Unavailable', message: 'read ECONNRESET' }, headers: {} }, [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/esUnavailable' } Terminating process... server crashed with status code 1 ``` **Any additional context (logs, chat logs, magical formulas, etc.):**
non_comp
kibana crash on adding endpoint integration describe the bug adding endpoint integration to a policy triggers a side effect of installing detection index and rules if installing those rules fails the error is not caught correctly and kibana crashes kibana elasticsearch stack version kibana master server os version snapshot browser and browser os versions n a elastic endpoint version n a original install method e g download page yum from source etc kibana running from source yarn start no base path elasticsearch running from docker snapshot docker run rm it p p e discovery type single node e xpack security authc api key enabled true e xpack security enabled true e xpack license self generated type trial e network host e elastic password foo e es java opts ulimit host privileged elasticsearch snapshot similar to yarn es snapshot but the rule installation only fails w docker snapshot steps to reproduce start es snapshot in docker start kibana navigate to fleet policy page click default policy name add integration endpoint security give it a name kibana will crash on clicking save current behavior performing the detection rules installation seems to fail with http and econnreset which sure that s an environment thing maybe but the exception is not handled and kibana crashes expected behavior flaky connections or other errors are gracefully handled screenshots if relevant errors in browser console if relevant provide logs and or server output if relevant server log read econnreset unhandled promise rejection detected connectionerror read econnreset at clientrequest request on err home dan dev elastic kibana node modules elastic elasticsearch lib connection js at clientrequest emit events js at socket socketerrorlistener http client js at socket emit events js at emiterrornt internal streams destroy js at emiterrorandclosent internal streams destroy js at process tickcallback internal process next tick js name connectionerror meta body null statuscode null headers null meta context null request name elasticsearch js connection attempts aborted false isboom true isserver true data null output statuscode payload statuscode error service unavailable message read econnreset headers savedobjectsclient esunavailable terminating process server crashed with status code any additional context logs chat logs magical formulas etc
0
32,682
4,782,131,424
IssuesEvent
2016-10-28 12:09:34
VS-work/vs-website
https://api.github.com/repos/VS-work/vs-website
closed
General. Contact forms. Button "Send inquiry" doesn't work
priority2: important status: done(tested) type: enhancement
**WTR:** 1. Go ti Contact page 2. Fill all fields, click on button "Send inquiry" **Result:** Nothing happens - Button "Send inquiry" doesn't work **Expected result:** Inquiry sended ![1476352616039](https://cloud.githubusercontent.com/assets/19388643/19344844/84993dd2-9144-11e6-9ff8-55189698127a.jpg)
1.0
General. Contact forms. Button "Send inquiry" doesn't work - **WTR:** 1. Go ti Contact page 2. Fill all fields, click on button "Send inquiry" **Result:** Nothing happens - Button "Send inquiry" doesn't work **Expected result:** Inquiry sended ![1476352616039](https://cloud.githubusercontent.com/assets/19388643/19344844/84993dd2-9144-11e6-9ff8-55189698127a.jpg)
non_comp
general contact forms button send inquiry doesn t work wtr go ti contact page fill all fields click on button send inquiry result nothing happens button send inquiry doesn t work expected result inquiry sended
0
32,958
6,145,724,124
IssuesEvent
2017-06-27 12:18:10
Darksonn/backblaze-b2-rs
https://api.github.com/repos/Darksonn/backblaze-b2-rs
closed
Links in modules are broken in some places
documentation
In the module level documentation for each module there are links to various structs that use relative urls. Since the doc for the module is embedded on the index, which is in another folder, this causes broken links.
1.0
Links in modules are broken in some places - In the module level documentation for each module there are links to various structs that use relative urls. Since the doc for the module is embedded on the index, which is in another folder, this causes broken links.
non_comp
links in modules are broken in some places in the module level documentation for each module there are links to various structs that use relative urls since the doc for the module is embedded on the index which is in another folder this causes broken links
0
25,762
12,300,069,677
IssuesEvent
2020-05-11 13:26:38
cityofaustin/atd-data-tech
https://api.github.com/repos/cityofaustin/atd-data-tech
closed
TDSD Fees in Amanda for Zoning Cases
Need: 1-Must Have Product: AMANDA Provider: CTM Service: Apps Workgroup: TDSD
When Rodrick's group does intake, they should charge the applicant these ATD fees along with the other fees they charge for DSD and PAZ, based on the type of case application. Rodrick's team will provide the customer with the bill/ invoice. Based on the type of case application - C8,C814, SP , ZC, and the subtypes, the fees should be automatically calculated for ATD. Applicant pays these fees at OTC/ Highland Center (when that happens), ATD will get these fees. As per George (CTM), Tracy had emailed a request in Jan, the work is in Test, and needs a UAT before it can be moved to Production. as per Sangeeta, Zoning cases would be the most urgent. Sangeeta tried to do some testing on March 20th, but was not successful. We need to know if it works on the DSD side. https://app.zenhub.com/files/140626918/8f9d32d4-6092-4c84-bcf6-c98b151e721a/download image.png
1.0
TDSD Fees in Amanda for Zoning Cases - When Rodrick's group does intake, they should charge the applicant these ATD fees along with the other fees they charge for DSD and PAZ, based on the type of case application. Rodrick's team will provide the customer with the bill/ invoice. Based on the type of case application - C8,C814, SP , ZC, and the subtypes, the fees should be automatically calculated for ATD. Applicant pays these fees at OTC/ Highland Center (when that happens), ATD will get these fees. As per George (CTM), Tracy had emailed a request in Jan, the work is in Test, and needs a UAT before it can be moved to Production. as per Sangeeta, Zoning cases would be the most urgent. Sangeeta tried to do some testing on March 20th, but was not successful. We need to know if it works on the DSD side. https://app.zenhub.com/files/140626918/8f9d32d4-6092-4c84-bcf6-c98b151e721a/download image.png
non_comp
tdsd fees in amanda for zoning cases when rodrick s group does intake they should charge the applicant these atd fees along with the other fees they charge for dsd and paz based on the type of case application rodrick s team will provide the customer with the bill invoice based on the type of case application sp zc and the subtypes the fees should be automatically calculated for atd applicant pays these fees at otc highland center when that happens atd will get these fees as per george ctm tracy had emailed a request in jan the work is in test and needs a uat before it can be moved to production as per sangeeta zoning cases would be the most urgent sangeeta tried to do some testing on march but was not successful we need to know if it works on the dsd side image png
0
6,646
8,925,031,437
IssuesEvent
2019-01-21 20:58:25
cobalt-org/liquid-rust
https://api.github.com/repos/cobalt-org/liquid-rust
closed
Error with double curly brackets "}}" inside code blocks in cobalt 0.15.0
question std-compatibility
Starting with 0.15.0 i get an error message ``` Error: build command failed Caused by: Failed to render content for "posts/2011/03/04/sending-apple-push-notifications-with-erlang.html" Caused by: liquid: --> 100:27 | 100 | "{"aps":{"alert":"Message"}}"␊ | ^--- | = expected EOI, Tag, Expression, or Raw ``` from the code blob: ``` ```erlang 2> pushnotification:send("Message"). "{"aps":{"alert":"Message"}}" ``` this works perfectly fine: ``` ```erlang 2> pushnotification:send("Message"). "{"aps":{"alert":"Message"} }" ``` i guess the content inside a code block should be completely ignored by cobalt / liquid.
True
Error with double curly brackets "}}" inside code blocks in cobalt 0.15.0 - Starting with 0.15.0 i get an error message ``` Error: build command failed Caused by: Failed to render content for "posts/2011/03/04/sending-apple-push-notifications-with-erlang.html" Caused by: liquid: --> 100:27 | 100 | "{"aps":{"alert":"Message"}}"␊ | ^--- | = expected EOI, Tag, Expression, or Raw ``` from the code blob: ``` ```erlang 2> pushnotification:send("Message"). "{"aps":{"alert":"Message"}}" ``` this works perfectly fine: ``` ```erlang 2> pushnotification:send("Message"). "{"aps":{"alert":"Message"} }" ``` i guess the content inside a code block should be completely ignored by cobalt / liquid.
comp
error with double curly brackets inside code blocks in cobalt starting with i get an error message error build command failed caused by failed to render content for posts sending apple push notifications with erlang html caused by liquid aps alert message ␊ expected eoi tag expression or raw from the code blob erlang pushnotification send message aps alert message this works perfectly fine erlang pushnotification send message aps alert message i guess the content inside a code block should be completely ignored by cobalt liquid
1
1,923
4,630,505,291
IssuesEvent
2016-09-28 13:02:55
Yoast/wordpress-seo
https://api.github.com/repos/Yoast/wordpress-seo
closed
Plugin Conflict with Login Radius
compatibility wait for feedback
### What did you expect to happen? Values when editing the post/page do not update for YOAST. Custom fields and the main content editor do up, but anything in the Focus Keyword box, or Snippet Editor box do not. ### What happened instead? The original values appear after updating the post. ### How can we reproduce this behavior? Install Social Login for Wordpress 7.2 and the latest versions of YOAST 3.5, and WP 4.6.1. Can you provide a link to a page which shows this issue? No, it’s an admin screen ### Technical info * WordPress version: 4.6.1 * Yoast SEO version: 3.5
True
Plugin Conflict with Login Radius - ### What did you expect to happen? Values when editing the post/page do not update for YOAST. Custom fields and the main content editor do up, but anything in the Focus Keyword box, or Snippet Editor box do not. ### What happened instead? The original values appear after updating the post. ### How can we reproduce this behavior? Install Social Login for Wordpress 7.2 and the latest versions of YOAST 3.5, and WP 4.6.1. Can you provide a link to a page which shows this issue? No, it’s an admin screen ### Technical info * WordPress version: 4.6.1 * Yoast SEO version: 3.5
comp
plugin conflict with login radius what did you expect to happen values when editing the post page do not update for yoast custom fields and the main content editor do up but anything in the focus keyword box or snippet editor box do not what happened instead the original values appear after updating the post how can we reproduce this behavior install social login for wordpress and the latest versions of yoast and wp can you provide a link to a page which shows this issue no it’s an admin screen technical info wordpress version yoast seo version
1
11,776
13,889,926,335
IssuesEvent
2020-10-19 08:35:18
ChaosInitiative/Portal-2-Community-Edition
https://api.github.com/repos/ChaosInitiative/Portal-2-Community-Edition
reopened
Map name at the top right
backwards compatibility type/bug ui
In vanilla Portal 2, the map name does appear at the top right corner of the screen when you open the console (it also shows the engine build). It would be helpful if we could see the map name easily again. ![unknown](https://user-images.githubusercontent.com/48654552/92590966-5cdd0f80-f29d-11ea-8274-fe26b9762949.png)
True
Map name at the top right - In vanilla Portal 2, the map name does appear at the top right corner of the screen when you open the console (it also shows the engine build). It would be helpful if we could see the map name easily again. ![unknown](https://user-images.githubusercontent.com/48654552/92590966-5cdd0f80-f29d-11ea-8274-fe26b9762949.png)
comp
map name at the top right in vanilla portal the map name does appear at the top right corner of the screen when you open the console it also shows the engine build it would be helpful if we could see the map name easily again
1
169,691
13,157,465,147
IssuesEvent
2020-08-10 12:48:18
Chiniga/pa-queue-ph
https://api.github.com/repos/Chiniga/pa-queue-ph
closed
[Queue] Active games and number of courts should always be equal
P1 ready for testing
Sometimes, the user would need to generate new games to occupy a court. The app should automatically supply an Active game for empty courts.
1.0
[Queue] Active games and number of courts should always be equal - Sometimes, the user would need to generate new games to occupy a court. The app should automatically supply an Active game for empty courts.
non_comp
active games and number of courts should always be equal sometimes the user would need to generate new games to occupy a court the app should automatically supply an active game for empty courts
0
47,795
25,189,869,767
IssuesEvent
2022-11-11 22:44:34
aws/s2n-tls
https://api.github.com/repos/aws/s2n-tls
closed
Reduce memory usage of s2n_connection
type/performance
## **Problem:** Currently, the size of s2n_connection is about 14.5K thus about 14G for 1 million connections on a high throughput server. (gdb) p sizeof(struct s2n_connection) $1 = 14656 The server could suffer from OOM issue potentially because of it. We need to find a way to move memory that is not frequently accessed or is only needed for the negotiation off of the s2n_connection allocation. ## **Proposed Solution:** For example, not every connection needs ALPN, we could create following variable when necessary. char application_protocol[256]; The idea is to identify large and less frequent used variable/struct and create them as needed. [//]: # (NOTE: If you believe this might be a security issue, please email aws-security@amazon.com instead of creating a GitHub issue. For more details, see the AWS Vulnerability Reporting Guide: https://aws.amazon.com/security/vulnerability-reporting/ )
True
Reduce memory usage of s2n_connection - ## **Problem:** Currently, the size of s2n_connection is about 14.5K thus about 14G for 1 million connections on a high throughput server. (gdb) p sizeof(struct s2n_connection) $1 = 14656 The server could suffer from OOM issue potentially because of it. We need to find a way to move memory that is not frequently accessed or is only needed for the negotiation off of the s2n_connection allocation. ## **Proposed Solution:** For example, not every connection needs ALPN, we could create following variable when necessary. char application_protocol[256]; The idea is to identify large and less frequent used variable/struct and create them as needed. [//]: # (NOTE: If you believe this might be a security issue, please email aws-security@amazon.com instead of creating a GitHub issue. For more details, see the AWS Vulnerability Reporting Guide: https://aws.amazon.com/security/vulnerability-reporting/ )
non_comp
reduce memory usage of connection problem currently the size of connection is about thus about for million connections on a high throughput server gdb p sizeof struct connection the server could suffer from oom issue potentially because of it we need to find a way to move memory that is not frequently accessed or is only needed for the negotiation off of the connection allocation proposed solution for example not every connection needs alpn we could create following variable when necessary char application protocol the idea is to identify large and less frequent used variable struct and create them as needed note if you believe this might be a security issue please email aws security amazon com instead of creating a github issue for more details see the aws vulnerability reporting guide
0
6,585
3,035,137,291
IssuesEvent
2015-08-06 00:09:07
orientechnologies/orientdb
https://api.github.com/repos/orientechnologies/orientdb
closed
2.1 Documentation: "clusters" command
documentation
I'm new to OrientDB and currently working through the "Getting Started" part of the manual. On the [Clusters-Page](http://orientdb.com/docs/2.1/Tutorial-Clusters.html) it says > To view all clusters, from the console run the CLUSTERS command But the console doesn't know about `CLUSTERS`: > !Unrecognized command: 'CLUSTERS' Instead, the command is available in lowercase (`clusters`). The [2.0-Version of the tutorial](http://orientdb.com/docs/2.0/orientdb.wiki/Tutorial-Clusters.html) was correct.
1.0
2.1 Documentation: "clusters" command - I'm new to OrientDB and currently working through the "Getting Started" part of the manual. On the [Clusters-Page](http://orientdb.com/docs/2.1/Tutorial-Clusters.html) it says > To view all clusters, from the console run the CLUSTERS command But the console doesn't know about `CLUSTERS`: > !Unrecognized command: 'CLUSTERS' Instead, the command is available in lowercase (`clusters`). The [2.0-Version of the tutorial](http://orientdb.com/docs/2.0/orientdb.wiki/Tutorial-Clusters.html) was correct.
non_comp
documentation clusters command i m new to orientdb and currently working through the getting started part of the manual on the it says to view all clusters from the console run the clusters command but the console doesn t know about clusters unrecognized command clusters instead the command is available in lowercase clusters the was correct
0
682,860
23,360,075,066
IssuesEvent
2022-08-10 10:53:07
team-5jo/firstrepo-5jo
https://api.github.com/repos/team-5jo/firstrepo-5jo
closed
Pig dice game 레이아웃 구성
Priority: Urgent Scope: HTML/CSS Features
## 설명 UI 레이아웃 ## Tasks - [x] 주사위 그리기 - [x] 유저 그리기 - [x] 버튼 그리기 ## Reference ~~.html
1.0
Pig dice game 레이아웃 구성 - ## 설명 UI 레이아웃 ## Tasks - [x] 주사위 그리기 - [x] 유저 그리기 - [x] 버튼 그리기 ## Reference ~~.html
non_comp
pig dice game 레이아웃 구성 설명 ui 레이아웃 tasks 주사위 그리기 유저 그리기 버튼 그리기 reference html
0
10,300
12,290,997,785
IssuesEvent
2020-05-10 07:38:56
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
SocketsHttpHandler rejects certificate with RemoteCertificateNameMismatch .Net Core 3.1 linux
area-System.Net.Http needs more info tenet-compatibility
Refer to this: https://github.com/dotnet/runtime/issues/26494 If I use .net core 2.2 without setting DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER=0, certificate validation is good. So i guess the fix were there. But on .net core 3.1 app, the error RemoteCertificateNameMismatch is back. There is no chainstatus and I have to disable default socket http to get it working again.
True
SocketsHttpHandler rejects certificate with RemoteCertificateNameMismatch .Net Core 3.1 linux - Refer to this: https://github.com/dotnet/runtime/issues/26494 If I use .net core 2.2 without setting DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER=0, certificate validation is good. So i guess the fix were there. But on .net core 3.1 app, the error RemoteCertificateNameMismatch is back. There is no chainstatus and I have to disable default socket http to get it working again.
comp
socketshttphandler rejects certificate with remotecertificatenamemismatch net core linux refer to this if i use net core without setting dotnet system net http usesocketshttphandler certificate validation is good so i guess the fix were there but on net core app the error remotecertificatenamemismatch is back there is no chainstatus and i have to disable default socket http to get it working again
1
11,618
13,654,920,864
IssuesEvent
2020-09-27 19:42:59
AlphaNodes/additionals
https://api.github.com/repos/AlphaNodes/additionals
closed
Stack Level too Deep on wiki pages with redmine_wiki_extensions
Fixed in master compatibility
Hey folks, on Redmine 4.1.1 with Rails 5.2.4.2 and Ruby 2.6.3 I'm seeing an infinite loop with the redmine wiki extension. I'm not sure which plugin is at fault (if any fault) but starting here. When going to a wiki page where both plugins are active you end up in an infinite loops between: plugins/additionals/lib/additionals/patches/wiki_controller_patch.rb:23:in `respond_to_with_additionals' plugins/redmine_wiki_extensions/lib/wiki_extensions_wiki_controller_patch.rb:42:in `respond_to' in additionals that is: ``` ruby module InstanceMethods def respond_to_with_additionals(&block) if @project && @content if @_action_name == 'show' additionals_include_header additionals_include_footer end end respond_to_without_additionals(&block) end ``` in wiki extensions that is: ``` ruby def respond_to(&block) if @project and WikiExtensionsUtil.is_enabled?(@project) and @content if (@_action_name == 'show') wiki_extensions_include_header wiki_extensions_add_fnlist wiki_extensions_include_footer end end super(&block) end ```
True
Stack Level too Deep on wiki pages with redmine_wiki_extensions - Hey folks, on Redmine 4.1.1 with Rails 5.2.4.2 and Ruby 2.6.3 I'm seeing an infinite loop with the redmine wiki extension. I'm not sure which plugin is at fault (if any fault) but starting here. When going to a wiki page where both plugins are active you end up in an infinite loops between: plugins/additionals/lib/additionals/patches/wiki_controller_patch.rb:23:in `respond_to_with_additionals' plugins/redmine_wiki_extensions/lib/wiki_extensions_wiki_controller_patch.rb:42:in `respond_to' in additionals that is: ``` ruby module InstanceMethods def respond_to_with_additionals(&block) if @project && @content if @_action_name == 'show' additionals_include_header additionals_include_footer end end respond_to_without_additionals(&block) end ``` in wiki extensions that is: ``` ruby def respond_to(&block) if @project and WikiExtensionsUtil.is_enabled?(@project) and @content if (@_action_name == 'show') wiki_extensions_include_header wiki_extensions_add_fnlist wiki_extensions_include_footer end end super(&block) end ```
comp
stack level too deep on wiki pages with redmine wiki extensions hey folks on redmine with rails and ruby i m seeing an infinite loop with the redmine wiki extension i m not sure which plugin is at fault if any fault but starting here when going to a wiki page where both plugins are active you end up in an infinite loops between plugins additionals lib additionals patches wiki controller patch rb in respond to with additionals plugins redmine wiki extensions lib wiki extensions wiki controller patch rb in respond to in additionals that is ruby module instancemethods def respond to with additionals block if project content if action name show additionals include header additionals include footer end end respond to without additionals block end in wiki extensions that is ruby def respond to block if project and wikiextensionsutil is enabled project and content if action name show wiki extensions include header wiki extensions add fnlist wiki extensions include footer end end super block end
1
20,446
3,355,888,095
IssuesEvent
2015-11-18 18:11:55
jarz/slimtune
https://api.github.com/repos/jarz/slimtune
closed
Command line invocation of SlimTune
auto-migrated Priority-Medium Type-Defect
``` Not a bug, instead a feature request. I'd like to be able to invoke SlimTune and profile an application from the command line (actually from Visual Studio's External Tools menu). However SlimTune doesn't seem to recognize any command line parameters I give it. Can you add the ability to load and profile an application from the command line, please? ``` Original issue reported on code.google.com by `edko...@gmail.com` on 4 Apr 2012 at 6:51
1.0
Command line invocation of SlimTune - ``` Not a bug, instead a feature request. I'd like to be able to invoke SlimTune and profile an application from the command line (actually from Visual Studio's External Tools menu). However SlimTune doesn't seem to recognize any command line parameters I give it. Can you add the ability to load and profile an application from the command line, please? ``` Original issue reported on code.google.com by `edko...@gmail.com` on 4 Apr 2012 at 6:51
non_comp
command line invocation of slimtune not a bug instead a feature request i d like to be able to invoke slimtune and profile an application from the command line actually from visual studio s external tools menu however slimtune doesn t seem to recognize any command line parameters i give it can you add the ability to load and profile an application from the command line please original issue reported on code google com by edko gmail com on apr at
0
2,916
5,736,351,659
IssuesEvent
2017-04-22 07:52:22
luc-github/ESP3D
https://api.github.com/repos/luc-github/ESP3D
closed
"command_silent" query from UI seems not to do anything with "plain"
bug Cannot Duplicate Compatibility Marlin Waiting for details
There is issue with file delete M30 command (sent by click on BIN icon button in UI): it does not seem to work at all in web interface of current version. UI makes confirmation popup dialog, and nothing else (the same problem I have about "Print" button). Tested Marlin 1.0.2/RAMPS1.4. In case I send same "plain" from "Command" form, proper GCODE, it does deletion well. debugger showed `/command_silent?plain=M30%20COM.GCO ` and ` /command_silent?plain=M20` both returned "OK" esp3d FW: V0.9.77 default GIT in ESP-12F device Compiled with ESP8266 package 2.4.0., but UI shows SDK Version: 2.0.0(656edbf), Arduino IDE 1.6.8
True
"command_silent" query from UI seems not to do anything with "plain" - There is issue with file delete M30 command (sent by click on BIN icon button in UI): it does not seem to work at all in web interface of current version. UI makes confirmation popup dialog, and nothing else (the same problem I have about "Print" button). Tested Marlin 1.0.2/RAMPS1.4. In case I send same "plain" from "Command" form, proper GCODE, it does deletion well. debugger showed `/command_silent?plain=M30%20COM.GCO ` and ` /command_silent?plain=M20` both returned "OK" esp3d FW: V0.9.77 default GIT in ESP-12F device Compiled with ESP8266 package 2.4.0., but UI shows SDK Version: 2.0.0(656edbf), Arduino IDE 1.6.8
comp
command silent query from ui seems not to do anything with plain there is issue with file delete command sent by click on bin icon button in ui it does not seem to work at all in web interface of current version ui makes confirmation popup dialog and nothing else the same problem i have about print button tested marlin in case i send same plain from command form proper gcode it does deletion well debugger showed command silent plain gco and command silent plain both returned ok fw default git in esp device compiled with package but ui shows sdk version arduino ide
1
18,536
25,785,436,744
IssuesEvent
2022-12-09 19:54:16
Lailloken/Lailloken-UI
https://api.github.com/repos/Lailloken/Lailloken-UI
closed
[Kakao Client] There is no Leveling & Mapping Tracker in the UI Settings menu tab
incompatibility
![image](https://user-images.githubusercontent.com/83152730/206500038-1ee13173-084d-4b0d-b13b-249f475e969c.png) There is no Leveling & Mapping Tracker in the UI Settings menu tab. I'm using Lailloken-UI-1.29.0 and I've checked that the leveling tracker.ahk and map tracker.ahk files exist in the modules folder, but they don't appear in the settings menu tab.
True
[Kakao Client] There is no Leveling & Mapping Tracker in the UI Settings menu tab - ![image](https://user-images.githubusercontent.com/83152730/206500038-1ee13173-084d-4b0d-b13b-249f475e969c.png) There is no Leveling & Mapping Tracker in the UI Settings menu tab. I'm using Lailloken-UI-1.29.0 and I've checked that the leveling tracker.ahk and map tracker.ahk files exist in the modules folder, but they don't appear in the settings menu tab.
comp
there is no leveling mapping tracker in the ui settings menu tab there is no leveling mapping tracker in the ui settings menu tab i m using lailloken ui and i ve checked that the leveling tracker ahk and map tracker ahk files exist in the modules folder but they don t appear in the settings menu tab
1
44,285
5,792,910,004
IssuesEvent
2017-05-02 10:55:13
Automattic/wp-calypso
https://api.github.com/repos/Automattic/wp-calypso
opened
Customize message when "signing up" using an existing email
Signup [Status] Needs Design Review [Type] Enhancement
Reported by @josemarques: We should display a different message when "signing up" for an account associated with an existing email. Currently, in the processing screen, we don't indicate that the user is logging in to an existing account during signup on the success page. cc @ranh for copy.
1.0
Customize message when "signing up" using an existing email - Reported by @josemarques: We should display a different message when "signing up" for an account associated with an existing email. Currently, in the processing screen, we don't indicate that the user is logging in to an existing account during signup on the success page. cc @ranh for copy.
non_comp
customize message when signing up using an existing email reported by josemarques we should display a different message when signing up for an account associated with an existing email currently in the processing screen we don t indicate that the user is logging in to an existing account during signup on the success page cc ranh for copy
0
10,824
12,814,042,910
IssuesEvent
2020-07-04 16:23:54
jptrrs/HumanResources
https://api.github.com/repos/jptrrs/HumanResources
closed
Colonists can wear untrained weapons through caravan gathering.
compatibility duplicate
You indeed have done good jobs to fix the backdoor of Simple Sidearms. However, colonists can gather untrained weapons to their inventory. Then they can use it through the weapon change key of Simple Sidearms.
True
Colonists can wear untrained weapons through caravan gathering. - You indeed have done good jobs to fix the backdoor of Simple Sidearms. However, colonists can gather untrained weapons to their inventory. Then they can use it through the weapon change key of Simple Sidearms.
comp
colonists can wear untrained weapons through caravan gathering you indeed have done good jobs to fix the backdoor of simple sidearms however colonists can gather untrained weapons to their inventory then they can use it through the weapon change key of simple sidearms
1
697,384
23,937,194,539
IssuesEvent
2022-09-11 12:02:02
GSM-MSG/Took-iOS
https://api.github.com/repos/GSM-MSG/Took-iOS
closed
디자인 시스템 - 위험표시 아이콘 추가
⚙ Setting 0️⃣Priority: Critical ⚡️ Simple
### Describe <img width="54" alt="스크린샷 2022-09-11 오후 8 55 09" src="https://user-images.githubusercontent.com/81547954/189526169-3b2857ca-202e-4fb4-91a0-68db331980eb.png"> 이 아이콘 추가 ### Additional _No response_
1.0
디자인 시스템 - 위험표시 아이콘 추가 - ### Describe <img width="54" alt="스크린샷 2022-09-11 오후 8 55 09" src="https://user-images.githubusercontent.com/81547954/189526169-3b2857ca-202e-4fb4-91a0-68db331980eb.png"> 이 아이콘 추가 ### Additional _No response_
non_comp
디자인 시스템 위험표시 아이콘 추가 describe img width alt 스크린샷 오후 src 이 아이콘 추가 additional no response
0
3,518
6,562,175,510
IssuesEvent
2017-09-07 15:39:52
york-region-tpss/stp
https://api.github.com/repos/york-region-tpss/stp
opened
Contract Year must be set in order to view content
process workflow ui ux
Prompt user to pick contract year after they login to the application
1.0
Contract Year must be set in order to view content - Prompt user to pick contract year after they login to the application
non_comp
contract year must be set in order to view content prompt user to pick contract year after they login to the application
0
131,543
5,154,896,082
IssuesEvent
2017-01-15 05:23:31
openshift/origin
https://api.github.com/repos/openshift/origin
closed
When delete a project, the empty directory of the namespace are not deleted in the etcd
component/kubernetes kind/bug priority/P3
When delete a project, the empty directory of the namespace are not deleted in the etcd ##### Version ``` openshift v1.5.0-alpha.0+595b6bd-376 kubernetes v1.4.0+776c994 etcd 3.1.0-rc.0 ``` ##### Steps To Reproduce 1. lunch an all in one openshift cluster 2. Create some resources like buildconfigs, deployments 3. delete the project 4. check the etcd: ``` $ etcdctl --cert-file /openshift.local.config/master/master.etcd-client.crt --key-file=/openshift.local.config/master/master.etcd-client.key --ca-file /openshift.local.config/master/ca.crt --endpoint https://127.0.0.1:4001 ls /openshift.io/builds/ ``` ##### Current Result ``` $ etcdctl --cert-file /openshift.local.config/master/master.etcd-client.crt --key-file=/openshift.local.config/master/master.etcd-client.key --ca-file /openshift.local.config/master/ca.crt --endpoint https://127.0.0.1:4001 ls /openshift.io/builds/ /openshift.io/builds/haowang /openshift.io/builds/haowang1 ``` ##### Expected Result the sub dir should be delete under the different resources directory.
1.0
When delete a project, the empty directory of the namespace are not deleted in the etcd - When delete a project, the empty directory of the namespace are not deleted in the etcd ##### Version ``` openshift v1.5.0-alpha.0+595b6bd-376 kubernetes v1.4.0+776c994 etcd 3.1.0-rc.0 ``` ##### Steps To Reproduce 1. lunch an all in one openshift cluster 2. Create some resources like buildconfigs, deployments 3. delete the project 4. check the etcd: ``` $ etcdctl --cert-file /openshift.local.config/master/master.etcd-client.crt --key-file=/openshift.local.config/master/master.etcd-client.key --ca-file /openshift.local.config/master/ca.crt --endpoint https://127.0.0.1:4001 ls /openshift.io/builds/ ``` ##### Current Result ``` $ etcdctl --cert-file /openshift.local.config/master/master.etcd-client.crt --key-file=/openshift.local.config/master/master.etcd-client.key --ca-file /openshift.local.config/master/ca.crt --endpoint https://127.0.0.1:4001 ls /openshift.io/builds/ /openshift.io/builds/haowang /openshift.io/builds/haowang1 ``` ##### Expected Result the sub dir should be delete under the different resources directory.
non_comp
when delete a project the empty directory of the namespace are not deleted in the etcd when delete a project the empty directory of the namespace are not deleted in the etcd version openshift alpha kubernetes etcd rc steps to reproduce lunch an all in one openshift cluster create some resources like buildconfigs deployments delete the project check the etcd etcdctl cert file openshift local config master master etcd client crt key file openshift local config master master etcd client key ca file openshift local config master ca crt endpoint ls openshift io builds current result etcdctl cert file openshift local config master master etcd client crt key file openshift local config master master etcd client key ca file openshift local config master ca crt endpoint ls openshift io builds openshift io builds haowang openshift io builds expected result the sub dir should be delete under the different resources directory
0
3,721
6,584,382,642
IssuesEvent
2017-09-13 09:58:59
skuschel/postpic
https://api.github.com/repos/skuschel/postpic
opened
Make `Field` behave as a numpy array
core not downwards compatible
The `Field` object is basically a numpy array plus axes and labels. Therefore it may be more intuitive to be able to use it as a numpy array: * Be immutable. Functions should not change the current object but rather return the changed object * Interact with numpys ufuncs, such that `np.abs` can work with a `Field` object and return a `Field` object.
True
Make `Field` behave as a numpy array - The `Field` object is basically a numpy array plus axes and labels. Therefore it may be more intuitive to be able to use it as a numpy array: * Be immutable. Functions should not change the current object but rather return the changed object * Interact with numpys ufuncs, such that `np.abs` can work with a `Field` object and return a `Field` object.
comp
make field behave as a numpy array the field object is basically a numpy array plus axes and labels therefore it may be more intuitive to be able to use it as a numpy array be immutable functions should not change the current object but rather return the changed object interact with numpys ufuncs such that np abs can work with a field object and return a field object
1
373,014
26,031,781,695
IssuesEvent
2022-12-21 22:10:35
gkiavash/Master-Thesis-Structure-from-Motion
https://api.github.com/repos/gkiavash/Master-Thesis-Structure-from-Motion
closed
Study papers 1: SfM, BA, and feature matching
documentation
- [ ] [*Distributed Photometric Bundle Adjustment](https://vision.in.tum.de/_media/spezial/bib/demmel2020distributed.pdf) - [x] [BA-NET: DENSE BUNDLE ADJUSTMENT NETWORKS](https://arxiv.org/pdf/1806.04807.pdf) - [x] [*Evaluating the Performance of Structure from Motion Pipelines](https://www.mdpi.com/2313-433X/4/8/98/pdf) - [x] [Multi-View Optimization of Local Feature Geometry](https://www.ecva.net/papers/eccv_2020/papers_ECCV/papers/123460647.pdf) - [x] [Pixel-Perfect Structure-from-Motion with Featuremetric Refinement](https://arxiv.org/pdf/2108.08291.pdf) - [ ] [Learning Accurate Dense Correspondences and When to Trust Them](https://arxiv.org/pdf/2101.01710.pdf) - [x] [Deep Two-View Structure-from-Motion Revisited](https://arxiv.org/pdf/2104.00556.pdf) - [ ] [Deep Patch Visual Odometry](https://arxiv.org/pdf/2208.04726.pdf) - [x] [*GLU-Net: Global-Local Universal Network for Dense Flow and Correspondences](https://arxiv.org/pdf/1912.05524.pdf) - [ ] [*DeMoN: Depth and Motion Network for Learning Monocular Stereo](https://openaccess.thecvf.com/content_cvpr_2017/papers/Ummenhofer_DeMoN_Depth_and_CVPR_2017_paper.pdf) - [ ] [*S2DNet: Learning Image Features for Accurate Sparse-to-Dense Matching](https://www.ecva.net/papers/eccv_2020/papers_ECCV/papers/123480630.pdf) \* : additional resourses
1.0
Study papers 1: SfM, BA, and feature matching - - [ ] [*Distributed Photometric Bundle Adjustment](https://vision.in.tum.de/_media/spezial/bib/demmel2020distributed.pdf) - [x] [BA-NET: DENSE BUNDLE ADJUSTMENT NETWORKS](https://arxiv.org/pdf/1806.04807.pdf) - [x] [*Evaluating the Performance of Structure from Motion Pipelines](https://www.mdpi.com/2313-433X/4/8/98/pdf) - [x] [Multi-View Optimization of Local Feature Geometry](https://www.ecva.net/papers/eccv_2020/papers_ECCV/papers/123460647.pdf) - [x] [Pixel-Perfect Structure-from-Motion with Featuremetric Refinement](https://arxiv.org/pdf/2108.08291.pdf) - [ ] [Learning Accurate Dense Correspondences and When to Trust Them](https://arxiv.org/pdf/2101.01710.pdf) - [x] [Deep Two-View Structure-from-Motion Revisited](https://arxiv.org/pdf/2104.00556.pdf) - [ ] [Deep Patch Visual Odometry](https://arxiv.org/pdf/2208.04726.pdf) - [x] [*GLU-Net: Global-Local Universal Network for Dense Flow and Correspondences](https://arxiv.org/pdf/1912.05524.pdf) - [ ] [*DeMoN: Depth and Motion Network for Learning Monocular Stereo](https://openaccess.thecvf.com/content_cvpr_2017/papers/Ummenhofer_DeMoN_Depth_and_CVPR_2017_paper.pdf) - [ ] [*S2DNet: Learning Image Features for Accurate Sparse-to-Dense Matching](https://www.ecva.net/papers/eccv_2020/papers_ECCV/papers/123480630.pdf) \* : additional resourses
non_comp
study papers sfm ba and feature matching additional resourses
0
7,758
9,985,231,562
IssuesEvent
2019-07-10 16:04:32
wp-media/imagify-plugin
https://api.github.com/repos/wp-media/imagify-plugin
closed
Bulk method not working in NGG gallery list
3rd Party Compatibility Severity: minor Type: bug
When displaying a NGG gallery page, listing its images, the bulk method (with checkboxes and the `<select>`) does not work.
True
Bulk method not working in NGG gallery list - When displaying a NGG gallery page, listing its images, the bulk method (with checkboxes and the `<select>`) does not work.
comp
bulk method not working in ngg gallery list when displaying a ngg gallery page listing its images the bulk method with checkboxes and the does not work
1
721,185
24,820,580,765
IssuesEvent
2022-10-25 16:06:59
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
Add backend support for UI plugins
area/catalog priority/0 internal [zube]: QA Working area/ui team/area3
In 2.6.5, the UI team will be adding support for UI plugins. **Backend needs** The UI will allow plugins to be added into Rancher after deployment. (ie: the ability to expand Rancher without a new release.) These will be a package of Javascript and other assets. This will be packaged up into a gzipped-tar file (same as would be uploaded as an npm pacakge). Users will be able to browse a catalog of UI plugins in the UI and install/uninstall/upgrade them. Since there is already a mechanism for Helm Charts and a catalog in Rancher, it probably makes sense to use that approach here as well. I'll describe this approach below and that should give enough context to determine if that is indeed the correct approach or not. UI Plugins will be distributed as UI Packages - a gzipped-tarball of javascript and other assets - this needs to be unpacked and served up via https when the plugin is installed. **Catalog** I propose that we distribute UI Plugins as helm charts. We already have a mechanism for dealing with charts and helm in Rancher, so we can leverage this. I suggest we keep UI plugin Helm charts in a new chart repository and in the UI, when a user adds a Helm chart repository, we can label it as a UI plugin repository and use that to hide it in the Apps and Marketplace views and include it in new UI plugin views. Users will be able to browse UI plugins using the existing chart support in Rancher, so nothing extra should be needed from a catalog point of view with this approach. **UI Plugin Helm Chart** We should add a new custom resource, something like [uipkg.cattle.io](http://uipkg.cattle.io/) - essentially a config map (we could just use config maps if that is easier) that can hold the gzipped-tar file as data. This will allow the plugin to persist across upgrades etc. Where a package is greater than 1MB, it will need to be split into multiple of these resources. The Helm chart for a plugin would create one or more uipkg.cattle.io resources - essentially storing the gzipped-tar bundle in etcd. These would be stored in the Rancher management cluster in the `cattle-system` namespace (or we could use a new system namespace - cattle-ui, if that would help with separation). The custom resource would include the following data (could be stored as annotations, if using config map) - we will refer to this as PLUGIN_METADATA. Required: - Plugin name - Plugin version - Display name - Creation datetime Optional: - Icon - Description - Annotations The backend will need to serve up plugins that have been installed - this should be under the /pkg endpoint. This can just serve up a local folder contents - we'll call this PACKAGE_FOLDER. The backend should watch for new instances of the custom resources - when any one of them is created/updated/deleted, it should fetch the list of all of the custom ui package resources and: Create a folder in PACKAGE_FOLDER (if not already existing) for each unique name and version (joined by a hyphen) - e.g. fleet-0.1.0. Unpack the contents of each resources into the appropriate folder (guznip and untar) - there might be multiple resources with the same name and version when the plugin is large, so these will be unpacked on top of one another. Iterate through the folders within PACKAGE_FOLDER and remove any which no longer relate to one of the ui package resources - this will clean-up old packages that have been removed This process will mean the backend will unpack and serve up UI plugins that are stored in the new custom resource. Additionally, the backend should provide a new endpoint (e.g. /pkgs) which returns a JSON document listing all of the installed plugins - this should return the PLUGIN_METADATA for all of the custom resource s (de-duped so that if there are multiple resources for a single plugin, only one PLUGIN_METADATA is returned - it is assumed that all resources for a single plugin would have the same metadata). With this in place, the UI will be able to make requests to /pkgs during first-load (and subsequently) to determine the plugins that need to be loaded and then be able to load the javascript and assets from /pkg/<NAME>-<VERSION>/... as needed. The /pkg and /pkgs endpoints should be public, not requiring any authentication.
1.0
Add backend support for UI plugins - In 2.6.5, the UI team will be adding support for UI plugins. **Backend needs** The UI will allow plugins to be added into Rancher after deployment. (ie: the ability to expand Rancher without a new release.) These will be a package of Javascript and other assets. This will be packaged up into a gzipped-tar file (same as would be uploaded as an npm pacakge). Users will be able to browse a catalog of UI plugins in the UI and install/uninstall/upgrade them. Since there is already a mechanism for Helm Charts and a catalog in Rancher, it probably makes sense to use that approach here as well. I'll describe this approach below and that should give enough context to determine if that is indeed the correct approach or not. UI Plugins will be distributed as UI Packages - a gzipped-tarball of javascript and other assets - this needs to be unpacked and served up via https when the plugin is installed. **Catalog** I propose that we distribute UI Plugins as helm charts. We already have a mechanism for dealing with charts and helm in Rancher, so we can leverage this. I suggest we keep UI plugin Helm charts in a new chart repository and in the UI, when a user adds a Helm chart repository, we can label it as a UI plugin repository and use that to hide it in the Apps and Marketplace views and include it in new UI plugin views. Users will be able to browse UI plugins using the existing chart support in Rancher, so nothing extra should be needed from a catalog point of view with this approach. **UI Plugin Helm Chart** We should add a new custom resource, something like [uipkg.cattle.io](http://uipkg.cattle.io/) - essentially a config map (we could just use config maps if that is easier) that can hold the gzipped-tar file as data. This will allow the plugin to persist across upgrades etc. Where a package is greater than 1MB, it will need to be split into multiple of these resources. The Helm chart for a plugin would create one or more uipkg.cattle.io resources - essentially storing the gzipped-tar bundle in etcd. These would be stored in the Rancher management cluster in the `cattle-system` namespace (or we could use a new system namespace - cattle-ui, if that would help with separation). The custom resource would include the following data (could be stored as annotations, if using config map) - we will refer to this as PLUGIN_METADATA. Required: - Plugin name - Plugin version - Display name - Creation datetime Optional: - Icon - Description - Annotations The backend will need to serve up plugins that have been installed - this should be under the /pkg endpoint. This can just serve up a local folder contents - we'll call this PACKAGE_FOLDER. The backend should watch for new instances of the custom resources - when any one of them is created/updated/deleted, it should fetch the list of all of the custom ui package resources and: Create a folder in PACKAGE_FOLDER (if not already existing) for each unique name and version (joined by a hyphen) - e.g. fleet-0.1.0. Unpack the contents of each resources into the appropriate folder (guznip and untar) - there might be multiple resources with the same name and version when the plugin is large, so these will be unpacked on top of one another. Iterate through the folders within PACKAGE_FOLDER and remove any which no longer relate to one of the ui package resources - this will clean-up old packages that have been removed This process will mean the backend will unpack and serve up UI plugins that are stored in the new custom resource. Additionally, the backend should provide a new endpoint (e.g. /pkgs) which returns a JSON document listing all of the installed plugins - this should return the PLUGIN_METADATA for all of the custom resource s (de-duped so that if there are multiple resources for a single plugin, only one PLUGIN_METADATA is returned - it is assumed that all resources for a single plugin would have the same metadata). With this in place, the UI will be able to make requests to /pkgs during first-load (and subsequently) to determine the plugins that need to be loaded and then be able to load the javascript and assets from /pkg/<NAME>-<VERSION>/... as needed. The /pkg and /pkgs endpoints should be public, not requiring any authentication.
non_comp
add backend support for ui plugins in the ui team will be adding support for ui plugins backend needs the ui will allow plugins to be added into rancher after deployment ie the ability to expand rancher without a new release these will be a package of javascript and other assets this will be packaged up into a gzipped tar file same as would be uploaded as an npm pacakge users will be able to browse a catalog of ui plugins in the ui and install uninstall upgrade them since there is already a mechanism for helm charts and a catalog in rancher it probably makes sense to use that approach here as well i ll describe this approach below and that should give enough context to determine if that is indeed the correct approach or not ui plugins will be distributed as ui packages a gzipped tarball of javascript and other assets this needs to be unpacked and served up via https when the plugin is installed catalog i propose that we distribute ui plugins as helm charts we already have a mechanism for dealing with charts and helm in rancher so we can leverage this i suggest we keep ui plugin helm charts in a new chart repository and in the ui when a user adds a helm chart repository we can label it as a ui plugin repository and use that to hide it in the apps and marketplace views and include it in new ui plugin views users will be able to browse ui plugins using the existing chart support in rancher so nothing extra should be needed from a catalog point of view with this approach ui plugin helm chart we should add a new custom resource something like essentially a config map we could just use config maps if that is easier that can hold the gzipped tar file as data this will allow the plugin to persist across upgrades etc where a package is greater than it will need to be split into multiple of these resources the helm chart for a plugin would create one or more uipkg cattle io resources essentially storing the gzipped tar bundle in etcd these would be stored in the rancher management cluster in the cattle system namespace or we could use a new system namespace cattle ui if that would help with separation the custom resource would include the following data could be stored as annotations if using config map we will refer to this as plugin metadata required plugin name plugin version display name creation datetime optional icon description annotations the backend will need to serve up plugins that have been installed this should be under the pkg endpoint this can just serve up a local folder contents we ll call this package folder the backend should watch for new instances of the custom resources when any one of them is created updated deleted it should fetch the list of all of the custom ui package resources and create a folder in package folder if not already existing for each unique name and version joined by a hyphen e g fleet unpack the contents of each resources into the appropriate folder guznip and untar there might be multiple resources with the same name and version when the plugin is large so these will be unpacked on top of one another iterate through the folders within package folder and remove any which no longer relate to one of the ui package resources this will clean up old packages that have been removed this process will mean the backend will unpack and serve up ui plugins that are stored in the new custom resource additionally the backend should provide a new endpoint e g pkgs which returns a json document listing all of the installed plugins this should return the plugin metadata for all of the custom resource s de duped so that if there are multiple resources for a single plugin only one plugin metadata is returned it is assumed that all resources for a single plugin would have the same metadata with this in place the ui will be able to make requests to pkgs during first load and subsequently to determine the plugins that need to be loaded and then be able to load the javascript and assets from pkg as needed the pkg and pkgs endpoints should be public not requiring any authentication
0
14,996
8,728,714,184
IssuesEvent
2018-12-10 18:09:20
phetsims/energy-skate-park
https://api.github.com/repos/phetsims/energy-skate-park
closed
Performance degradation from bar graph changes
type:performance
From #39 and #25, I have noticed that changes to the bar graph have caused the sim to slow down quite a bit on my Windows 10 Laptop in Chrome. If I remove this line from BarGraphForegroundNode, the sim runs much faster again ```js bar.children = [ solidBar, imageNode ]; ```
True
Performance degradation from bar graph changes - From #39 and #25, I have noticed that changes to the bar graph have caused the sim to slow down quite a bit on my Windows 10 Laptop in Chrome. If I remove this line from BarGraphForegroundNode, the sim runs much faster again ```js bar.children = [ solidBar, imageNode ]; ```
non_comp
performance degradation from bar graph changes from and i have noticed that changes to the bar graph have caused the sim to slow down quite a bit on my windows laptop in chrome if i remove this line from bargraphforegroundnode the sim runs much faster again js bar children
0
11,671
13,734,380,587
IssuesEvent
2020-10-05 08:36:44
voxpupuli/puppet-puppetboard
https://api.github.com/repos/voxpupuli/puppet-puppetboard
closed
Drop SLES 12 because of missing tests/compatibility
backwards-incompatible
We had to do a major rework of the module in https://github.com/voxpupuli/puppet-puppetboard/pull/292. The new code is not compatible with SLES 12 and we don't have any SLES 12 instances where we could develop/test on. That brings us to the point where we have to remove SLES from the metadata.json.
True
Drop SLES 12 because of missing tests/compatibility - We had to do a major rework of the module in https://github.com/voxpupuli/puppet-puppetboard/pull/292. The new code is not compatible with SLES 12 and we don't have any SLES 12 instances where we could develop/test on. That brings us to the point where we have to remove SLES from the metadata.json.
comp
drop sles because of missing tests compatibility we had to do a major rework of the module in the new code is not compatible with sles and we don t have any sles instances where we could develop test on that brings us to the point where we have to remove sles from the metadata json
1
683
7,786,447,375
IssuesEvent
2018-06-06 18:58:49
humphd/next
https://api.github.com/repos/humphd/next
closed
Create unit tests for /data/api endpoint
assigned automation database
We need to run unit tests on every Travis build to insure that the code still works as expected. We could explore technologies like [Jest](https://facebook.github.io/jest/) and [Puppeteer](https://github.com/GoogleChrome/puppeteer). Jest would be our test runner and Puppeteer would host our browser env to run tests in.
1.0
Create unit tests for /data/api endpoint - We need to run unit tests on every Travis build to insure that the code still works as expected. We could explore technologies like [Jest](https://facebook.github.io/jest/) and [Puppeteer](https://github.com/GoogleChrome/puppeteer). Jest would be our test runner and Puppeteer would host our browser env to run tests in.
non_comp
create unit tests for data api endpoint we need to run unit tests on every travis build to insure that the code still works as expected we could explore technologies like and jest would be our test runner and puppeteer would host our browser env to run tests in
0
390,951
26,875,918,384
IssuesEvent
2023-02-05 02:15:40
git-cola/git-cola
https://api.github.com/repos/git-cola/git-cola
closed
hotkeys: Location issue of hotkey "Copy SHA-1"
documentation
The "Copy SHA-1" hotkey is currently classified under "Browser actions", but it actually works in DAG view. This particular hotkey should probably be put under a new category.
1.0
hotkeys: Location issue of hotkey "Copy SHA-1" - The "Copy SHA-1" hotkey is currently classified under "Browser actions", but it actually works in DAG view. This particular hotkey should probably be put under a new category.
non_comp
hotkeys location issue of hotkey copy sha the copy sha hotkey is currently classified under browser actions but it actually works in dag view this particular hotkey should probably be put under a new category
0
805,041
29,506,057,446
IssuesEvent
2023-06-03 10:22:13
cloudflare/cloudflared
https://api.github.com/repos/cloudflare/cloudflared
closed
🐛Tunnel MSI not installed properly on Windows Server 2022
Type: Bug Priority: Normal
**Describe the bug** I followed the dashboard setup however the tunnel is not able to connect on a Windows Server 2022 machine. However doing so on Windows 11 works fine. Has this been tested on Windows Server 2022? Oddly the service is also installed under "program files x86" whereas the installer indicates its 64 bit. **To Reproduce** Steps to reproduce the behavior: 1. Create a new tunnel on the dashboard 2. Install the MSI on the server 3. Run the cmd found on the dashboard **Environment and versions** ``` OS Name: Microsoft Windows Server 2022 Datacenter OS Version: 10.0.20348 Build 20348 ``` **Logs and errors** MSI logs show that the configuration fails during the MSI installation: ``` === Logging stopped: 6/3/2023 1:27:52 === MSI (c) (C8:58) [01:27:52:684]: Note: 1: 1729 MSI (c) (C8:58) [01:27:52:684]: Note: 1: 2262 2: Error 3: -2147287038 MSI (c) (C8:58) [01:27:52:684]: Note: 1: 2262 2: Error 3: -2147287038 MSI (c) (C8:58) [01:27:52:684]: Product: cloudflared -- Configuration failed. MSI (c) (C8:58) [01:27:52:684]: Windows Installer reconfigured the product. Product Name: cloudflared. Product Version: 2023.5.1. Product Language: 1033. Manufacturer: cloudflare. Reconfiguration success or error status: 1603. MSI (c) (C8:58) [01:27:52:684]: Grabbed execution mutex. MSI (c) (C8:58) [01:27:52:684]: Cleaning up uninstalled install packages, if any exist MSI (c) (C8:58) [01:27:52:693]: MainEngineThread is returning 1603 === Verbose logging stopped: 6/3/2023 1:27:52 === ```
1.0
🐛Tunnel MSI not installed properly on Windows Server 2022 - **Describe the bug** I followed the dashboard setup however the tunnel is not able to connect on a Windows Server 2022 machine. However doing so on Windows 11 works fine. Has this been tested on Windows Server 2022? Oddly the service is also installed under "program files x86" whereas the installer indicates its 64 bit. **To Reproduce** Steps to reproduce the behavior: 1. Create a new tunnel on the dashboard 2. Install the MSI on the server 3. Run the cmd found on the dashboard **Environment and versions** ``` OS Name: Microsoft Windows Server 2022 Datacenter OS Version: 10.0.20348 Build 20348 ``` **Logs and errors** MSI logs show that the configuration fails during the MSI installation: ``` === Logging stopped: 6/3/2023 1:27:52 === MSI (c) (C8:58) [01:27:52:684]: Note: 1: 1729 MSI (c) (C8:58) [01:27:52:684]: Note: 1: 2262 2: Error 3: -2147287038 MSI (c) (C8:58) [01:27:52:684]: Note: 1: 2262 2: Error 3: -2147287038 MSI (c) (C8:58) [01:27:52:684]: Product: cloudflared -- Configuration failed. MSI (c) (C8:58) [01:27:52:684]: Windows Installer reconfigured the product. Product Name: cloudflared. Product Version: 2023.5.1. Product Language: 1033. Manufacturer: cloudflare. Reconfiguration success or error status: 1603. MSI (c) (C8:58) [01:27:52:684]: Grabbed execution mutex. MSI (c) (C8:58) [01:27:52:684]: Cleaning up uninstalled install packages, if any exist MSI (c) (C8:58) [01:27:52:693]: MainEngineThread is returning 1603 === Verbose logging stopped: 6/3/2023 1:27:52 === ```
non_comp
🐛tunnel msi not installed properly on windows server describe the bug i followed the dashboard setup however the tunnel is not able to connect on a windows server machine however doing so on windows works fine has this been tested on windows server oddly the service is also installed under program files whereas the installer indicates its bit to reproduce steps to reproduce the behavior create a new tunnel on the dashboard install the msi on the server run the cmd found on the dashboard environment and versions os name microsoft windows server datacenter os version build logs and errors msi logs show that the configuration fails during the msi installation logging stopped msi c note msi c note error msi c note error msi c product cloudflared configuration failed msi c windows installer reconfigured the product product name cloudflared product version product language manufacturer cloudflare reconfiguration success or error status msi c grabbed execution mutex msi c cleaning up uninstalled install packages if any exist msi c mainenginethread is returning verbose logging stopped
0
443,288
12,780,797,243
IssuesEvent
2020-07-01 01:54:29
vmware/singleton
https://api.github.com/repos/vmware/singleton
closed
[BUG] [CSharp Client]Cache is not update with nonexistent language when it is expired and service has updates
area/c#-client kind/bug priority/medium
**Describe the bug** Cache is not update with language nonexistent when it is expired and service has updates The Nonexistent language is not in localelist of cache The result of get translation is source and not is the translation that user update language **To Reproduce** Steps to reproduce the behavior: 1. Get nonexistent language translation by ITranslation. 2. Put nonexistent language translation by put api. 3. Waiting cache expired. 4. Send the request in step1 again. 5. Waiting 5 s 6. Send the request in step1 again. **Expected behavior** The result of step6 is the translation that user put
1.0
[BUG] [CSharp Client]Cache is not update with nonexistent language when it is expired and service has updates - **Describe the bug** Cache is not update with language nonexistent when it is expired and service has updates The Nonexistent language is not in localelist of cache The result of get translation is source and not is the translation that user update language **To Reproduce** Steps to reproduce the behavior: 1. Get nonexistent language translation by ITranslation. 2. Put nonexistent language translation by put api. 3. Waiting cache expired. 4. Send the request in step1 again. 5. Waiting 5 s 6. Send the request in step1 again. **Expected behavior** The result of step6 is the translation that user put
non_comp
cache is not update with nonexistent language when it is expired and service has updates describe the bug cache is not update with language nonexistent when it is expired and service has updates the nonexistent language is not in localelist of cache the result of get translation is source and not is the translation that user update language to reproduce steps to reproduce the behavior get nonexistent language translation by itranslation put nonexistent language translation by put api waiting cache expired send the request in again waiting s send the request in again expected behavior the result of is the translation that user put
0
3,220
6,151,016,280
IssuesEvent
2017-06-28 00:42:03
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
SystemNative_SysConf Regression on Ubuntu 17.04
area-System.Runtime.Extensions bug tenet-compatibility
After further investigation of a bug that first manifested with powershell on Ubuntu 17.04, I have noticed that the SysConf method in System.Native is in some way allowing input that triggers its assertion. Running powershell in fact triggers this assertion immediately.
True
SystemNative_SysConf Regression on Ubuntu 17.04 - After further investigation of a bug that first manifested with powershell on Ubuntu 17.04, I have noticed that the SysConf method in System.Native is in some way allowing input that triggers its assertion. Running powershell in fact triggers this assertion immediately.
comp
systemnative sysconf regression on ubuntu after further investigation of a bug that first manifested with powershell on ubuntu i have noticed that the sysconf method in system native is in some way allowing input that triggers its assertion running powershell in fact triggers this assertion immediately
1
67,212
27,751,863,680
IssuesEvent
2023-03-15 21:27:56
cityofaustin/atd-data-tech
https://api.github.com/repos/cityofaustin/atd-data-tech
closed
Update Python Scripts: "hazard_flashers_agol" and "hazard_flashers_socrata"
Workgroup: AMD Workgroup: DTS Service: Dev Type: DevOps Product: AMD Data Tracker
Follow up from issue #3172 - knack object was updated from `hazard_flashers` to `flashing_beacons` - socrata data set was updated from `hazard_flashers` to `flashing_beacons` - agol feature layer and service definition were updated from `hazard_flashers` to `flashing_beacons` The scripts broke because the `ATD_FLASHER_ID` was renamed to `ATD_BEACON_ID`. - Both scripts need to be updated to reflect the ID name change ![image.png](https://images.zenhubusercontent.com/5cb4c11373d7e234297de5cf/042b006a-9701-4c50-96f1-2a60d99c0283)
1.0
Update Python Scripts: "hazard_flashers_agol" and "hazard_flashers_socrata" - Follow up from issue #3172 - knack object was updated from `hazard_flashers` to `flashing_beacons` - socrata data set was updated from `hazard_flashers` to `flashing_beacons` - agol feature layer and service definition were updated from `hazard_flashers` to `flashing_beacons` The scripts broke because the `ATD_FLASHER_ID` was renamed to `ATD_BEACON_ID`. - Both scripts need to be updated to reflect the ID name change ![image.png](https://images.zenhubusercontent.com/5cb4c11373d7e234297de5cf/042b006a-9701-4c50-96f1-2a60d99c0283)
non_comp
update python scripts hazard flashers agol and hazard flashers socrata follow up from issue knack object was updated from hazard flashers to flashing beacons socrata data set was updated from hazard flashers to flashing beacons agol feature layer and service definition were updated from hazard flashers to flashing beacons the scripts broke because the atd flasher id was renamed to atd beacon id both scripts need to be updated to reflect the id name change
0
226,281
24,946,875,678
IssuesEvent
2022-11-01 01:33:46
Daniel-Svensson/CoreWCF
https://api.github.com/repos/Daniel-Svensson/CoreWCF
opened
microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg: 1 vulnerabilities (highest severity is: 7.5)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</b></p></summary> <p>Core components of ASP.NET Core Kestrel cross-platform web server.</p> <p>Library home page: <a href="https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg">https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</a></p> <p>Path to dependency file: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p>Path to vulnerable library: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2021-1723](https://www.mend.io/vulnerability-database/CVE-2021-1723) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg | Direct | Microsoft.AspNetCore.App.Runtime.win-arm64 - 5.0.2;LiveReloadServer - 1.1.0;Plugga.Core - 1.0.2;Maple.Branch.Module - 1.0.4;Microsoft.AspNetCore.Components.WebAssembly.Server - 5.0.1,5.0.0-rc.1.20451.17;AspNetCoreRuntime.5.0.x64 - 5.0.2;AspNetCoreRuntime.5.0.x86 - 5.0.2;Microsoft.AspNetCore.App.Runtime.osx-x64 - 5.0.2,3.1.10;GrazeDocs - 2.0.1;Microsoft.AspNetCore.App.Runtime.linux-musl-arm - 5.0.2;Microsoft.AspNetCore.App.Runtime.linux-musl-x64 - 5.0.2,3.1.10;YHWins.Template - 1.1.0;Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Ref - 3.1.10,6.0.0-rc.1.21452.15;Microsoft.AspNetCore.Blazor.DevServer - 3.2.0-preview1.20073.1,3.1.0-preview4.19579.2;Microsoft.AspNetCore.App.Runtime.linux-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-x64 - 3.1.10,5.0.2;stankins.console - 2020.12.20-beta298;Toolbelt.Blazor.DevServer.WithCssLiveReloader - 5.0.1,5.0.0-rc.1.20451.17;DragonFire.Server - 0.0.1-alpha.0;PoExtractor.OrchardCore - 0.5.0-rc2-16220;Microsoft.AspNetCore.App.Runtime.win-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x86 - 3.1.10,5.0.2;HuLu.Template.Api - 1.0.2;AspNetCoreRuntime.3.1.x64 - 3.1.10;AspNetCoreRuntime.3.1.x86 - 3.1.10;Microsoft.AspNetCore.Components.WebAssembly.DevServer - 5.0.0-rc.1.20451.17,5.0.1;Microsoft.AspNetCore.App.Runtime.win-arm64 - 3.1.10;lingman-webapi - 0.0.18 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-1723</summary> ### Vulnerable Library - <b>microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</b></p> <p>Core components of ASP.NET Core Kestrel cross-platform web server.</p> <p>Library home page: <a href="https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg">https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</a></p> <p>Path to dependency file: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p>Path to vulnerable library: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p> Dependency Hierarchy: - :x: **microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg** (Vulnerable Library) </p> <p></p> ### Vulnerability Details <p> ASP.NET Core and Visual Studio Denial of Service Vulnerability <p>Publish Date: 2021-01-12 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-1723>CVE-2021-1723</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2021-1723">https://nvd.nist.gov/vuln/detail/CVE-2021-1723</a></p> <p>Release Date: 2021-01-12</p> <p>Fix Resolution: Microsoft.AspNetCore.App.Runtime.win-arm64 - 5.0.2;LiveReloadServer - 1.1.0;Plugga.Core - 1.0.2;Maple.Branch.Module - 1.0.4;Microsoft.AspNetCore.Components.WebAssembly.Server - 5.0.1,5.0.0-rc.1.20451.17;AspNetCoreRuntime.5.0.x64 - 5.0.2;AspNetCoreRuntime.5.0.x86 - 5.0.2;Microsoft.AspNetCore.App.Runtime.osx-x64 - 5.0.2,3.1.10;GrazeDocs - 2.0.1;Microsoft.AspNetCore.App.Runtime.linux-musl-arm - 5.0.2;Microsoft.AspNetCore.App.Runtime.linux-musl-x64 - 5.0.2,3.1.10;YHWins.Template - 1.1.0;Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Ref - 3.1.10,6.0.0-rc.1.21452.15;Microsoft.AspNetCore.Blazor.DevServer - 3.2.0-preview1.20073.1,3.1.0-preview4.19579.2;Microsoft.AspNetCore.App.Runtime.linux-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-x64 - 3.1.10,5.0.2;stankins.console - 2020.12.20-beta298;Toolbelt.Blazor.DevServer.WithCssLiveReloader - 5.0.1,5.0.0-rc.1.20451.17;DragonFire.Server - 0.0.1-alpha.0;PoExtractor.OrchardCore - 0.5.0-rc2-16220;Microsoft.AspNetCore.App.Runtime.win-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x86 - 3.1.10,5.0.2;HuLu.Template.Api - 1.0.2;AspNetCoreRuntime.3.1.x64 - 3.1.10;AspNetCoreRuntime.3.1.x86 - 3.1.10;Microsoft.AspNetCore.Components.WebAssembly.DevServer - 5.0.0-rc.1.20451.17,5.0.1;Microsoft.AspNetCore.App.Runtime.win-arm64 - 3.1.10;lingman-webapi - 0.0.18</p> </p> <p></p> Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) </details>
True
microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg: 1 vulnerabilities (highest severity is: 7.5) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</b></p></summary> <p>Core components of ASP.NET Core Kestrel cross-platform web server.</p> <p>Library home page: <a href="https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg">https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</a></p> <p>Path to dependency file: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p>Path to vulnerable library: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2021-1723](https://www.mend.io/vulnerability-database/CVE-2021-1723) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg | Direct | Microsoft.AspNetCore.App.Runtime.win-arm64 - 5.0.2;LiveReloadServer - 1.1.0;Plugga.Core - 1.0.2;Maple.Branch.Module - 1.0.4;Microsoft.AspNetCore.Components.WebAssembly.Server - 5.0.1,5.0.0-rc.1.20451.17;AspNetCoreRuntime.5.0.x64 - 5.0.2;AspNetCoreRuntime.5.0.x86 - 5.0.2;Microsoft.AspNetCore.App.Runtime.osx-x64 - 5.0.2,3.1.10;GrazeDocs - 2.0.1;Microsoft.AspNetCore.App.Runtime.linux-musl-arm - 5.0.2;Microsoft.AspNetCore.App.Runtime.linux-musl-x64 - 5.0.2,3.1.10;YHWins.Template - 1.1.0;Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Ref - 3.1.10,6.0.0-rc.1.21452.15;Microsoft.AspNetCore.Blazor.DevServer - 3.2.0-preview1.20073.1,3.1.0-preview4.19579.2;Microsoft.AspNetCore.App.Runtime.linux-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-x64 - 3.1.10,5.0.2;stankins.console - 2020.12.20-beta298;Toolbelt.Blazor.DevServer.WithCssLiveReloader - 5.0.1,5.0.0-rc.1.20451.17;DragonFire.Server - 0.0.1-alpha.0;PoExtractor.OrchardCore - 0.5.0-rc2-16220;Microsoft.AspNetCore.App.Runtime.win-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x86 - 3.1.10,5.0.2;HuLu.Template.Api - 1.0.2;AspNetCoreRuntime.3.1.x64 - 3.1.10;AspNetCoreRuntime.3.1.x86 - 3.1.10;Microsoft.AspNetCore.Components.WebAssembly.DevServer - 5.0.0-rc.1.20451.17,5.0.1;Microsoft.AspNetCore.App.Runtime.win-arm64 - 3.1.10;lingman-webapi - 0.0.18 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2021-1723</summary> ### Vulnerable Library - <b>microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</b></p> <p>Core components of ASP.NET Core Kestrel cross-platform web server.</p> <p>Library home page: <a href="https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg">https://api.nuget.org/packages/microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg</a></p> <p>Path to dependency file: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p>Path to vulnerable library: /src/CoreWCF.NetTcp/src/CoreWCF.NetTcp.csproj</p> <p> Dependency Hierarchy: - :x: **microsoft.aspnetcore.server.kestrel.core.2.1.7.nupkg** (Vulnerable Library) </p> <p></p> ### Vulnerability Details <p> ASP.NET Core and Visual Studio Denial of Service Vulnerability <p>Publish Date: 2021-01-12 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-1723>CVE-2021-1723</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2021-1723">https://nvd.nist.gov/vuln/detail/CVE-2021-1723</a></p> <p>Release Date: 2021-01-12</p> <p>Fix Resolution: Microsoft.AspNetCore.App.Runtime.win-arm64 - 5.0.2;LiveReloadServer - 1.1.0;Plugga.Core - 1.0.2;Maple.Branch.Module - 1.0.4;Microsoft.AspNetCore.Components.WebAssembly.Server - 5.0.1,5.0.0-rc.1.20451.17;AspNetCoreRuntime.5.0.x64 - 5.0.2;AspNetCoreRuntime.5.0.x86 - 5.0.2;Microsoft.AspNetCore.App.Runtime.osx-x64 - 5.0.2,3.1.10;GrazeDocs - 2.0.1;Microsoft.AspNetCore.App.Runtime.linux-musl-arm - 5.0.2;Microsoft.AspNetCore.App.Runtime.linux-musl-x64 - 5.0.2,3.1.10;YHWins.Template - 1.1.0;Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-arm64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Ref - 3.1.10,6.0.0-rc.1.21452.15;Microsoft.AspNetCore.Blazor.DevServer - 3.2.0-preview1.20073.1,3.1.0-preview4.19579.2;Microsoft.AspNetCore.App.Runtime.linux-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.linux-x64 - 3.1.10,5.0.2;stankins.console - 2020.12.20-beta298;Toolbelt.Blazor.DevServer.WithCssLiveReloader - 5.0.1,5.0.0-rc.1.20451.17;DragonFire.Server - 0.0.1-alpha.0;PoExtractor.OrchardCore - 0.5.0-rc2-16220;Microsoft.AspNetCore.App.Runtime.win-arm - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x64 - 3.1.10,5.0.2;Microsoft.AspNetCore.App.Runtime.win-x86 - 3.1.10,5.0.2;HuLu.Template.Api - 1.0.2;AspNetCoreRuntime.3.1.x64 - 3.1.10;AspNetCoreRuntime.3.1.x86 - 3.1.10;Microsoft.AspNetCore.Components.WebAssembly.DevServer - 5.0.0-rc.1.20451.17,5.0.1;Microsoft.AspNetCore.App.Runtime.win-arm64 - 3.1.10;lingman-webapi - 0.0.18</p> </p> <p></p> Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) </details>
non_comp
microsoft aspnetcore server kestrel core nupkg vulnerabilities highest severity is vulnerable library microsoft aspnetcore server kestrel core nupkg core components of asp net core kestrel cross platform web server library home page a href path to dependency file src corewcf nettcp src corewcf nettcp csproj path to vulnerable library src corewcf nettcp src corewcf nettcp csproj vulnerabilities cve severity cvss dependency type fixed in microsoft aspnetcore server kestrel core nupkg version remediation available high microsoft aspnetcore server kestrel core nupkg direct microsoft aspnetcore app runtime win livereloadserver plugga core maple branch module microsoft aspnetcore components webassembly server rc aspnetcoreruntime aspnetcoreruntime microsoft aspnetcore app runtime osx grazedocs microsoft aspnetcore app runtime linux musl arm microsoft aspnetcore app runtime linux musl yhwins template microsoft aspnetcore app runtime linux musl microsoft aspnetcore app runtime linux microsoft aspnetcore app ref rc microsoft aspnetcore blazor devserver microsoft aspnetcore app runtime linux arm microsoft aspnetcore app runtime linux stankins console toolbelt blazor devserver withcsslivereloader rc dragonfire server alpha poextractor orchardcore microsoft aspnetcore app runtime win arm microsoft aspnetcore app runtime win microsoft aspnetcore app runtime win hulu template api aspnetcoreruntime aspnetcoreruntime microsoft aspnetcore components webassembly devserver rc microsoft aspnetcore app runtime win lingman webapi details cve vulnerable library microsoft aspnetcore server kestrel core nupkg core components of asp net core kestrel cross platform web server library home page a href path to dependency file src corewcf nettcp src corewcf nettcp csproj path to vulnerable library src corewcf nettcp src corewcf nettcp csproj dependency hierarchy x microsoft aspnetcore server kestrel core nupkg vulnerable library vulnerability details asp net core and visual studio denial of service vulnerability publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution microsoft aspnetcore app runtime win livereloadserver plugga core maple branch module microsoft aspnetcore components webassembly server rc aspnetcoreruntime aspnetcoreruntime microsoft aspnetcore app runtime osx grazedocs microsoft aspnetcore app runtime linux musl arm microsoft aspnetcore app runtime linux musl yhwins template microsoft aspnetcore app runtime linux musl microsoft aspnetcore app runtime linux microsoft aspnetcore app ref rc microsoft aspnetcore blazor devserver microsoft aspnetcore app runtime linux arm microsoft aspnetcore app runtime linux stankins console toolbelt blazor devserver withcsslivereloader rc dragonfire server alpha poextractor orchardcore microsoft aspnetcore app runtime win arm microsoft aspnetcore app runtime win microsoft aspnetcore app runtime win hulu template api aspnetcoreruntime aspnetcoreruntime microsoft aspnetcore components webassembly devserver rc microsoft aspnetcore app runtime win lingman webapi step up your open source security game with mend
0
370,829
10,949,301,278
IssuesEvent
2019-11-26 10:34:37
kubeapps/kubeapps
https://api.github.com/repos/kubeapps/kubeapps
closed
Ingress URL not shown in the AppView
kind/bug priority/high
<!-- If you are reporting a new issue, make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead. If you suspect your issue is a bug, please edit your issue description to include the BUG REPORT INFORMATION shown below. If you fail to provide this information within 7 days, we cannot debug your issue and we'll close it. We will, however, reopen it if you later provide the information. ------------------------------- BUG REPORT INFORMATION ------------------------------- Use the commands below to provide key information from your environment: You do NOT have to include this information if this is a FEATURE REQUEST --> **Description** URL of the ingress are not shown in the Access URL table **Steps to reproduce the issue:** 1. Deploy Wordpress 2. Enable the Ingress rule **Additional information you deem important (e.g. issue happens only occasionally):** Apparently, the `AccessURLTable` is being mounted before the application manifests is parsed. It's only when mounting it when the component `AccessURLTable` fetches the existing ingress and at that point the list is empty. **Version of Helm, Kubeapps and Kubernetes**: - Output of `helm version`: ``` Server: &version.Version{SemVer:"v2.16.1", GitCommit:"bbdfe5e7803a12bbdf97e94cd847859890cf4050", GitTreeState:"clean"} ``` - Output of `helm list <kubeapps-release-name>`: ``` kubeapps 1 Wed Nov 20 15:29:47 2019 DEPLOYED kubeapps-3.0.3v1.6.1 kubeapps ``` - Output of `kubectl version`: ``` Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.3", GitCommit:"b3cbbae08ec52a7fc73d334838e18d17e8512749", GitTreeState:"clean", BuildDate:"2019-11-13T11:23:11Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"14+", GitVersion:"v1.14.8-gke.17", GitCommit:"188432a69210ca32cafded81b4dd1c063720cac0", GitTreeState:"clean", BuildDate:"2019-11-13T20:47:11Z", GoVersion:"go1.12.11b4", Compiler:"gc", Platform:"linux/amd64"} ```
1.0
Ingress URL not shown in the AppView - <!-- If you are reporting a new issue, make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead. If you suspect your issue is a bug, please edit your issue description to include the BUG REPORT INFORMATION shown below. If you fail to provide this information within 7 days, we cannot debug your issue and we'll close it. We will, however, reopen it if you later provide the information. ------------------------------- BUG REPORT INFORMATION ------------------------------- Use the commands below to provide key information from your environment: You do NOT have to include this information if this is a FEATURE REQUEST --> **Description** URL of the ingress are not shown in the Access URL table **Steps to reproduce the issue:** 1. Deploy Wordpress 2. Enable the Ingress rule **Additional information you deem important (e.g. issue happens only occasionally):** Apparently, the `AccessURLTable` is being mounted before the application manifests is parsed. It's only when mounting it when the component `AccessURLTable` fetches the existing ingress and at that point the list is empty. **Version of Helm, Kubeapps and Kubernetes**: - Output of `helm version`: ``` Server: &version.Version{SemVer:"v2.16.1", GitCommit:"bbdfe5e7803a12bbdf97e94cd847859890cf4050", GitTreeState:"clean"} ``` - Output of `helm list <kubeapps-release-name>`: ``` kubeapps 1 Wed Nov 20 15:29:47 2019 DEPLOYED kubeapps-3.0.3v1.6.1 kubeapps ``` - Output of `kubectl version`: ``` Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.3", GitCommit:"b3cbbae08ec52a7fc73d334838e18d17e8512749", GitTreeState:"clean", BuildDate:"2019-11-13T11:23:11Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"14+", GitVersion:"v1.14.8-gke.17", GitCommit:"188432a69210ca32cafded81b4dd1c063720cac0", GitTreeState:"clean", BuildDate:"2019-11-13T20:47:11Z", GoVersion:"go1.12.11b4", Compiler:"gc", Platform:"linux/amd64"} ```
non_comp
ingress url not shown in the appview if you are reporting a new issue make sure that we do not have any duplicates already open you can ensure this by searching the issue list for this repository if there is a duplicate please close your issue and add a comment to the existing issue instead if you suspect your issue is a bug please edit your issue description to include the bug report information shown below if you fail to provide this information within days we cannot debug your issue and we ll close it we will however reopen it if you later provide the information bug report information use the commands below to provide key information from your environment you do not have to include this information if this is a feature request description url of the ingress are not shown in the access url table steps to reproduce the issue deploy wordpress enable the ingress rule additional information you deem important e g issue happens only occasionally apparently the accessurltable is being mounted before the application manifests is parsed it s only when mounting it when the component accessurltable fetches the existing ingress and at that point the list is empty version of helm kubeapps and kubernetes output of helm version server version version semver gitcommit gittreestate clean output of helm list kubeapps wed nov deployed kubeapps kubeapps output of kubectl version client version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux server version version info major minor gitversion gke gitcommit gittreestate clean builddate goversion compiler gc platform linux
0
6,801
9,101,327,247
IssuesEvent
2019-02-20 10:48:27
codeofsumit/leaflet.pm
https://api.github.com/repos/codeofsumit/leaflet.pm
closed
Problem with leaflet-measure-path and dragging circles
other plugin compatibility
<!-- hey there, thanks for reporting an issue or feature request. If you found unexpected behaviour or problems using leaflet.pm, please provide a demo via JSfiddle that reproduces the problem. You can use this as a starting point: http://jsfiddle.net/LnzN2/1332/ . This saves me a lot of time to find the issue and I can help you / fix it much faster :-) - THANKS --> Hi, dragging a circle, with the [leaflet-measure-path](https://github.com/ProminentEdge/leaflet-measure-path) library embedded, is firing an error: this._layer.setLatLng(...) is undefined http://jsfiddle.net/Jumpy/1bqtnLxj/
True
Problem with leaflet-measure-path and dragging circles - <!-- hey there, thanks for reporting an issue or feature request. If you found unexpected behaviour or problems using leaflet.pm, please provide a demo via JSfiddle that reproduces the problem. You can use this as a starting point: http://jsfiddle.net/LnzN2/1332/ . This saves me a lot of time to find the issue and I can help you / fix it much faster :-) - THANKS --> Hi, dragging a circle, with the [leaflet-measure-path](https://github.com/ProminentEdge/leaflet-measure-path) library embedded, is firing an error: this._layer.setLatLng(...) is undefined http://jsfiddle.net/Jumpy/1bqtnLxj/
comp
problem with leaflet measure path and dragging circles hi dragging a circle with the library embedded is firing an error this layer setlatlng is undefined
1
7,474
9,733,374,102
IssuesEvent
2019-05-31 09:30:27
Johni0702/BetterPortals
https://api.github.com/repos/Johni0702/BetterPortals
closed
Possible RandomThings Incompatibility
Compatibility
Wanted to try this out, dumped it in my existing E2E world, and it renders the portal properly (had to remake the existing one). But when I try to go through it, my client completely freezes, I have to close it, and this is my log: https://pastebin.com/raw/kXSQzRQf
True
Possible RandomThings Incompatibility - Wanted to try this out, dumped it in my existing E2E world, and it renders the portal properly (had to remake the existing one). But when I try to go through it, my client completely freezes, I have to close it, and this is my log: https://pastebin.com/raw/kXSQzRQf
comp
possible randomthings incompatibility wanted to try this out dumped it in my existing world and it renders the portal properly had to remake the existing one but when i try to go through it my client completely freezes i have to close it and this is my log
1
286,078
24,718,278,048
IssuesEvent
2022-10-20 08:44:37
MartinaB91/project5-task-app-front
https://api.github.com/repos/MartinaB91/project5-task-app-front
closed
Test: View Number of completed tasks, my scoreboard
test
_Test to check if the amount of closed tasks is shown when a user has marked a task as done_ ## Story: #21 ## Testcases: |Test id: #89 | | |--------|------------------------------| |**Purpose:**| Check if the amount of closed tasks is shown when a user has marked a task as done| |**Requirements:**| As a **Family member** I want to **see how many tasks I have completed** so that I can **follow how much work I have done.**| |**Data:**| Username: Tester Password: Only available for tester Family Member: Parent | |**Preconditions:**|Signed-in as Tester, Completed test #87. | |**Procedure step:**|**Expected result:**| |**Step 1:** Got to the task you assigned in test #87 | Click the "Done" button| |**Step 2:** Watch my scoreboard | Ongoing tasks should have the amount of 0 and completed task should have the amount of 1 |
1.0
Test: View Number of completed tasks, my scoreboard - _Test to check if the amount of closed tasks is shown when a user has marked a task as done_ ## Story: #21 ## Testcases: |Test id: #89 | | |--------|------------------------------| |**Purpose:**| Check if the amount of closed tasks is shown when a user has marked a task as done| |**Requirements:**| As a **Family member** I want to **see how many tasks I have completed** so that I can **follow how much work I have done.**| |**Data:**| Username: Tester Password: Only available for tester Family Member: Parent | |**Preconditions:**|Signed-in as Tester, Completed test #87. | |**Procedure step:**|**Expected result:**| |**Step 1:** Got to the task you assigned in test #87 | Click the "Done" button| |**Step 2:** Watch my scoreboard | Ongoing tasks should have the amount of 0 and completed task should have the amount of 1 |
non_comp
test view number of completed tasks my scoreboard test to check if the amount of closed tasks is shown when a user has marked a task as done story testcases test id purpose check if the amount of closed tasks is shown when a user has marked a task as done requirements as a family member i want to see how many tasks i have completed so that i can follow how much work i have done data username tester password only available for tester family member parent preconditions signed in as tester completed test procedure step expected result step got to the task you assigned in test click the done button step watch my scoreboard ongoing tasks should have the amount of and completed task should have the amount of
0
985
3,452,930,494
IssuesEvent
2015-12-17 08:36:48
pytest-dev/pytest
https://api.github.com/repos/pytest-dev/pytest
opened
introduce fixture scope and dependency based sort key for sorting tests
backward compatibility collection enhancement xdist
this would reduce the collection sort logic to a "trivial" key function and povide exactly the metadata we need in xdist to do smarter placement of tests wrt setupstate
True
introduce fixture scope and dependency based sort key for sorting tests - this would reduce the collection sort logic to a "trivial" key function and povide exactly the metadata we need in xdist to do smarter placement of tests wrt setupstate
comp
introduce fixture scope and dependency based sort key for sorting tests this would reduce the collection sort logic to a trivial key function and povide exactly the metadata we need in xdist to do smarter placement of tests wrt setupstate
1
13,528
16,022,634,944
IssuesEvent
2021-04-21 03:26:29
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
SMTP client problem with .net 5.0
area-System.Net bug needs more info tenet-compatibility
### Description [https://github.com/dotnet/fsharp/issues/11186](https://github.com/dotnet/fsharp/issues/11186) An application build with .net 4.8 works fine but throw 5.7.0 authentication required error with .net 5.0 ### Configuration git clone https://github.com/ingted/dotnet5mail Modify the address and gmail app password Build it and execute with a "The server response was: 5.7.0 Authentication Required" error. (.net 5.0) Build it and execute without any error. (.net 4.8) Execute the code in Fsi.exe (.net 4.8), and the email would be successfully sent. Execute the code in Fsi.exe (.net 5.0), and the email would be failed to send. ### Regression? * Did this work in a previous build or release of .NET Core, or from .NET Framework? Yes. Successfully with .net 4.8
True
SMTP client problem with .net 5.0 - ### Description [https://github.com/dotnet/fsharp/issues/11186](https://github.com/dotnet/fsharp/issues/11186) An application build with .net 4.8 works fine but throw 5.7.0 authentication required error with .net 5.0 ### Configuration git clone https://github.com/ingted/dotnet5mail Modify the address and gmail app password Build it and execute with a "The server response was: 5.7.0 Authentication Required" error. (.net 5.0) Build it and execute without any error. (.net 4.8) Execute the code in Fsi.exe (.net 4.8), and the email would be successfully sent. Execute the code in Fsi.exe (.net 5.0), and the email would be failed to send. ### Regression? * Did this work in a previous build or release of .NET Core, or from .NET Framework? Yes. Successfully with .net 4.8
comp
smtp client problem with net description an application build with net works fine but throw authentication required error with net configuration git clone modify the address and gmail app password build it and execute with a the server response was authentication required error net build it and execute without any error net execute the code in fsi exe net and the email would be successfully sent execute the code in fsi exe net and the email would be failed to send regression did this work in a previous build or release of net core or from net framework yes successfully with net
1
258,076
8,154,218,484
IssuesEvent
2018-08-23 02:01:49
curationexperts/laevigata
https://api.github.com/repos/curationexperts/laevigata
closed
Can't Save and Continue My Files in Safari
Ready for QA bug release priority
I've tested in Safari and Chrome (Incognito windows with a new ETD) and I can't save and continue from My Files Testing on QA / 2017 Emory University. Version v2.0.0-beta5 updated 20 August 2018 Screen recording of issue: https://youtu.be/uhF5sYDYxKc
1.0
Can't Save and Continue My Files in Safari - I've tested in Safari and Chrome (Incognito windows with a new ETD) and I can't save and continue from My Files Testing on QA / 2017 Emory University. Version v2.0.0-beta5 updated 20 August 2018 Screen recording of issue: https://youtu.be/uhF5sYDYxKc
non_comp
can t save and continue my files in safari i ve tested in safari and chrome incognito windows with a new etd and i can t save and continue from my files testing on qa emory university version updated august screen recording of issue
0
11,242
13,222,925,095
IssuesEvent
2020-08-17 16:19:17
gudmdharalds-a8c/testing123
https://api.github.com/repos/gudmdharalds-a8c/testing123
closed
PHP Upgrade: Compatibility issues found in bla-11.php
PHP 7.4 Compatibility PHP Compatibility
The following issues were found when scanning for PHP compatibility issues in preparation for upgrade to PHP version 7.4: * <b>Error</b>: Extension 'mysql_' is deprecated since PHP 5.5 and removed since PHP 7.0; Use mysqli instead https://github.com/gudmdharalds-a8c/testing123/blob/b99a028e21f490f459f7095329fe4933e8643e79/bla-11.php#L3 Note that this is an automated report. We recommend that the issues noted here are looked into, as it will make the transition to the new PHP version easier.
True
PHP Upgrade: Compatibility issues found in bla-11.php - The following issues were found when scanning for PHP compatibility issues in preparation for upgrade to PHP version 7.4: * <b>Error</b>: Extension 'mysql_' is deprecated since PHP 5.5 and removed since PHP 7.0; Use mysqli instead https://github.com/gudmdharalds-a8c/testing123/blob/b99a028e21f490f459f7095329fe4933e8643e79/bla-11.php#L3 Note that this is an automated report. We recommend that the issues noted here are looked into, as it will make the transition to the new PHP version easier.
comp
php upgrade compatibility issues found in bla php the following issues were found when scanning for php compatibility issues in preparation for upgrade to php version error extension mysql is deprecated since php and removed since php use mysqli instead note that this is an automated report we recommend that the issues noted here are looked into as it will make the transition to the new php version easier
1
513,990
14,930,520,962
IssuesEvent
2021-01-25 03:11:39
ballerina-platform/ballerina-lang
https://api.github.com/repos/ballerina-platform/ballerina-lang
opened
Type narrowing doesn't work properly in match/binding pattern
Area/TypeChecker Lanauge/BindingPatterns Priority/Blocker Team/CompilerFE
Following program fails. Seem like a regression issue. ```ballerina import ballerina/io; public function main() { xx([1]); } function xx(any v) { match v { [var a , ...var b] => { string aa = a.toBalString(); // ^ ERROR [main.bal:(10:25,10:26)] incompatible types: expected 'any', found '(any|error)' string bb = b.toBalString(); io:println("match" + aa + bb); return; } } io:println("no match"); return; } ```
1.0
Type narrowing doesn't work properly in match/binding pattern - Following program fails. Seem like a regression issue. ```ballerina import ballerina/io; public function main() { xx([1]); } function xx(any v) { match v { [var a , ...var b] => { string aa = a.toBalString(); // ^ ERROR [main.bal:(10:25,10:26)] incompatible types: expected 'any', found '(any|error)' string bb = b.toBalString(); io:println("match" + aa + bb); return; } } io:println("no match"); return; } ```
non_comp
type narrowing doesn t work properly in match binding pattern following program fails seem like a regression issue ballerina import ballerina io public function main xx function xx any v match v string aa a tobalstring error incompatible types expected any found any error string bb b tobalstring io println match aa bb return io println no match return
0
86,282
24,810,698,537
IssuesEvent
2022-10-25 09:11:27
chaotic-aur/packages
https://api.github.com/repos/chaotic-aur/packages
closed
[Request] hplip-lite
request:new-pkg interfere required priority:lowest bug:PKGBUILD
### Link to the package(s) in the AUR https://aur.archlinux.org/packages/hplip-lite ### Utility this package has for you This AUR package is useful for me since the default hplip app installs the hp printing app and this application only provides the printer drivers, which is useful for me since I don't need the application. ### Do you consider the package(s) to be useful for every Chaotic-AUR user? No, but for a few. ### Do you consider the package to be useful for feature testing/preview? - [ ] Yes ### Have you tested if the package builds in a clean chroot? - [X] Yes ### Does the package's license allow redistributing it? YES! ### Have you searched the issues to ensure this request is unique? - [X] YES! ### Have you read the README to ensure this package is not banned? - [X] YES! ### More information _No response_
1.0
[Request] hplip-lite - ### Link to the package(s) in the AUR https://aur.archlinux.org/packages/hplip-lite ### Utility this package has for you This AUR package is useful for me since the default hplip app installs the hp printing app and this application only provides the printer drivers, which is useful for me since I don't need the application. ### Do you consider the package(s) to be useful for every Chaotic-AUR user? No, but for a few. ### Do you consider the package to be useful for feature testing/preview? - [ ] Yes ### Have you tested if the package builds in a clean chroot? - [X] Yes ### Does the package's license allow redistributing it? YES! ### Have you searched the issues to ensure this request is unique? - [X] YES! ### Have you read the README to ensure this package is not banned? - [X] YES! ### More information _No response_
non_comp
hplip lite link to the package s in the aur utility this package has for you this aur package is useful for me since the default hplip app installs the hp printing app and this application only provides the printer drivers which is useful for me since i don t need the application do you consider the package s to be useful for every chaotic aur user no but for a few do you consider the package to be useful for feature testing preview yes have you tested if the package builds in a clean chroot yes does the package s license allow redistributing it yes have you searched the issues to ensure this request is unique yes have you read the readme to ensure this package is not banned yes more information no response
0
4,990
7,588,926,512
IssuesEvent
2018-04-26 04:35:57
angelleye/paypal-woocommerce
https://api.github.com/repos/angelleye/paypal-woocommerce
opened
1.4.8 release broke compatibility with bookings..??
compatibility
* https://mail.google.com/mail/u/0/#inbox/162ff4a73b87ffa7 >After your new release off yesterday your pluging is not working again. >Try to book anything at my website please. >http://www.jorgebarefoot.com/product/group-douro-wine-tour/
True
1.4.8 release broke compatibility with bookings..?? - * https://mail.google.com/mail/u/0/#inbox/162ff4a73b87ffa7 >After your new release off yesterday your pluging is not working again. >Try to book anything at my website please. >http://www.jorgebarefoot.com/product/group-douro-wine-tour/
comp
release broke compatibility with bookings after your new release off yesterday your pluging is not working again try to book anything at my website please
1
2,605
5,331,226,610
IssuesEvent
2017-02-15 18:58:32
ignacionelson/ProjectSend
https://api.github.com/repos/ignacionelson/ProjectSend
closed
Admin works, Clients don't
Configuration PHP 5.6 + compatibilities
I can log in as admin and everything works as intended. When I attempt a login as a client, I'm directed to /my_files/ The page is empty.
True
Admin works, Clients don't - I can log in as admin and everything works as intended. When I attempt a login as a client, I'm directed to /my_files/ The page is empty.
comp
admin works clients don t i can log in as admin and everything works as intended when i attempt a login as a client i m directed to my files the page is empty
1
15,670
20,235,046,649
IssuesEvent
2022-02-14 00:22:20
baldengineer/Golden-Delicious
https://api.github.com/repos/baldengineer/Golden-Delicious
closed
VGC is hiding left column in 80-col mode and right column in 40-col mode
compatibility issue
The IIgs's VGC controller has a border. It appears this border is masking some of the pixels from the Mega-II SERVID/RGBx signals. Since we don't have a way to control the VGC, we have to live it. We verified with oscilloscope waveforms that in 80-column mode the Mega-II _is generating the missing first _column_, The VGC just isn't displaying it. (And then I noticed the same thing in 40-column mode for far right side.)
True
VGC is hiding left column in 80-col mode and right column in 40-col mode - The IIgs's VGC controller has a border. It appears this border is masking some of the pixels from the Mega-II SERVID/RGBx signals. Since we don't have a way to control the VGC, we have to live it. We verified with oscilloscope waveforms that in 80-column mode the Mega-II _is generating the missing first _column_, The VGC just isn't displaying it. (And then I noticed the same thing in 40-column mode for far right side.)
comp
vgc is hiding left column in col mode and right column in col mode the iigs s vgc controller has a border it appears this border is masking some of the pixels from the mega ii servid rgbx signals since we don t have a way to control the vgc we have to live it we verified with oscilloscope waveforms that in column mode the mega ii is generating the missing first column the vgc just isn t displaying it and then i noticed the same thing in column mode for far right side
1
20,918
31,653,058,522
IssuesEvent
2023-09-07 01:08:53
SkyblockerMod/Skyblocker
https://api.github.com/repos/SkyblockerMod/Skyblocker
closed
Request support for EMI mods
enhancement compatibility
I've heard that this mod adapts to REI, but the plugin overload of R EI often causes the game to freeze or crash, and EMI has a recipe tree feature that works very well, so I would like to request that support for EMI be added
True
Request support for EMI mods - I've heard that this mod adapts to REI, but the plugin overload of R EI often causes the game to freeze or crash, and EMI has a recipe tree feature that works very well, so I would like to request that support for EMI be added
comp
request support for emi mods i ve heard that this mod adapts to rei but the plugin overload of r ei often causes the game to freeze or crash and emi has a recipe tree feature that works very well so i would like to request that support for emi be added
1
19,943
27,765,218,623
IssuesEvent
2023-03-16 11:00:29
TwelveIterationMods/KleeSlabs
https://api.github.com/repos/TwelveIterationMods/KleeSlabs
closed
Support Oceanopolis slabs
compatibility 1.19 lts
Driftwood double slabs from [Oceanopolis](https://www.curseforge.com/minecraft/mc-mods/oceanopolis) aren't recognized, and break as full blocks.
True
Support Oceanopolis slabs - Driftwood double slabs from [Oceanopolis](https://www.curseforge.com/minecraft/mc-mods/oceanopolis) aren't recognized, and break as full blocks.
comp
support oceanopolis slabs driftwood double slabs from aren t recognized and break as full blocks
1
8,700
10,617,462,687
IssuesEvent
2019-10-12 19:16:28
thedarkcolour/Future-MC
https://api.github.com/repos/thedarkcolour/Future-MC
closed
Future MC 0.1.11+ Biome Bundle crash at the creation of a new world.
compatibility duplicate
Using Biome Bundle v6.1 and FutureMC 0.1.11 makes the game crash at the creation of a new world. The error is : The game crashed whilst exception in server tick loop Error: java.lang.NullPointerException: Exception in server tick loop Step to reproduce : - install Biome Bundle + OTG - install Future MC - Launch the game and create a new world. And here are the complete log : ``` [10:26:02] [Server thread/ERROR]: Exception stopping the server java.lang.NullPointerException: null at net.minecraftforge.registries.ForgeRegistry.getOverrideOwners(ForgeRegistry.java:784) ~[ForgeRegistry.class:?] at net.minecraftforge.registries.ForgeRegistry.makeSnapshot(ForgeRegistry.java:771) ~[ForgeRegistry.class:?] at net.minecraftforge.registries.RegistryManager.lambda$takeSnapshot$0(RegistryManager.java:135) ~[RegistryManager.class:?] at net.minecraftforge.registries.RegistryManager$$Lambda$183/2073124154.accept(Unknown Source) ~[?:?] at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_51] at net.minecraftforge.registries.RegistryManager.takeSnapshot(RegistryManager.java:135) ~[RegistryManager.class:?] at net.minecraftforge.fml.common.FMLContainer.getDataForWriting(FMLContainer.java:126) ~[FMLContainer.class:?] at net.minecraftforge.fml.common.FMLCommonHandler.handleWorldDataSave(FMLCommonHandler.java:395) ~[FMLCommonHandler.class:?] at net.minecraft.world.storage.SaveHandler.func_75755_a(SaveHandler.java:141) ~[bfb.class:?] at net.minecraft.world.chunk.storage.AnvilSaveHandler.func_75755_a(AnvilSaveHandler.java:40) ~[bey.class:?] at net.minecraft.world.WorldServer.func_73042_a(WorldServer.java:1051) ~[oo.class:?] at net.minecraft.world.WorldServer.func_73044_a(WorldServer.java:1000) ~[oo.class:?] at net.minecraft.server.MinecraftServer.func_71267_a(MinecraftServer.java:408) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.func_71267_a(IntegratedServer.java:252) ~[chd.class:?] at net.minecraft.server.MinecraftServer.func_71260_j(MinecraftServer.java:446) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.func_71260_j(IntegratedServer.java:372) ~[chd.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:579) [MinecraftServer.class:?] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] [10:26:02] [Client thread/INFO]: [net.minecraft.init.Bootstrap:func_179870_a:553]: ---- Minecraft Crash Report ---- WARNING: coremods are present: OTGCorePlugin (OTG-Core.jar) Contact their authors BEFORE contacting forge // This doesn't make any sense! Time: 10/8/19 10:26 AM Description: Exception in server tick loop java.lang.NullPointerException: Exception in server tick loop at net.minecraftforge.registries.ForgeRegistry.getOverrideOwners(ForgeRegistry.java:784) at net.minecraftforge.registries.ForgeRegistry.makeSnapshot(ForgeRegistry.java:771) at net.minecraftforge.registries.RegistryManager.lambda$takeSnapshot$0(RegistryManager.java:135) at net.minecraftforge.registries.RegistryManager$$Lambda$183/2073124154.accept(Unknown Source) at java.lang.Iterable.forEach(Iterable.java:75) at net.minecraftforge.registries.RegistryManager.takeSnapshot(RegistryManager.java:135) at net.minecraftforge.fml.common.FMLContainer.getDataForWriting(FMLContainer.java:126) at net.minecraftforge.fml.common.FMLCommonHandler.handleWorldDataSave(FMLCommonHandler.java:395) at net.minecraft.world.storage.SaveHandler.func_75755_a(SaveHandler.java:141) at net.minecraft.world.chunk.storage.AnvilSaveHandler.func_75755_a(AnvilSaveHandler.java:40) at net.minecraft.world.WorldServer.func_73042_a(WorldServer.java:1051) at net.minecraft.world.WorldServer.func_73044_a(WorldServer.java:1000) at net.minecraft.server.MinecraftServer.func_71267_a(MinecraftServer.java:408) at net.minecraft.server.integrated.IntegratedServer.func_71267_a(IntegratedServer.java:252) at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:170) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) at java.lang.Thread.run(Thread.java:745) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1072899952 bytes (1023 MB) / 1488453632 bytes (1419 MB) up to 2863661056 bytes (2731 MB) JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3072m -Xms256m -XX:PermSize=256m IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2847 8 mods loaded, 8 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored | State | ID | Version | Source | Signature | |:------ |:-------------------- |:------------ |:------------------------------------ |:---------------------------------------- | | LCHIJA | minecraft | 1.12.2 | minecraft.jar | None | | LCHIJA | mcp | 9.42 | minecraft.jar | None | | LCHIJA | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2847.jar | None | | LCHIJA | forge | 14.23.5.2847 | forge-1.12.2-14.23.5.2847.jar | None | | LCHIJA | otgcore | 1.12.2 - v7 | minecraft.jar | None | | LCHIJA | openterraingenerator | v6 | OpenTerrainGenerator-1.12.2 - v6.jar | e9f7847a78c5342af5b0a9e04e5abc0b554d69e0 | | LCHIJA | biomebundle | 5.1 | Biome_Bundle-1.12.2-v6.1.jar | None | | LCHIJA | minecraftfuture | 0.1.11 | future-mc-0.1.11.jar | None | Loaded coremods (and transformers): OTGCorePlugin (OTG-Core.jar) com.pg85.otg.forge.asm.OTGClassTransformer GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread. Profiler Position: N/A (disabled) Player Count: 1 / 8; [EntityPlayerMP['Nimel'/13, l='Biome Bundle', x=885.50, y=47.00, z=541.50]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' ``` As Biome Bundle runs fine with all my others mods, I suspect the error is in future MC.
True
Future MC 0.1.11+ Biome Bundle crash at the creation of a new world. - Using Biome Bundle v6.1 and FutureMC 0.1.11 makes the game crash at the creation of a new world. The error is : The game crashed whilst exception in server tick loop Error: java.lang.NullPointerException: Exception in server tick loop Step to reproduce : - install Biome Bundle + OTG - install Future MC - Launch the game and create a new world. And here are the complete log : ``` [10:26:02] [Server thread/ERROR]: Exception stopping the server java.lang.NullPointerException: null at net.minecraftforge.registries.ForgeRegistry.getOverrideOwners(ForgeRegistry.java:784) ~[ForgeRegistry.class:?] at net.minecraftforge.registries.ForgeRegistry.makeSnapshot(ForgeRegistry.java:771) ~[ForgeRegistry.class:?] at net.minecraftforge.registries.RegistryManager.lambda$takeSnapshot$0(RegistryManager.java:135) ~[RegistryManager.class:?] at net.minecraftforge.registries.RegistryManager$$Lambda$183/2073124154.accept(Unknown Source) ~[?:?] at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_51] at net.minecraftforge.registries.RegistryManager.takeSnapshot(RegistryManager.java:135) ~[RegistryManager.class:?] at net.minecraftforge.fml.common.FMLContainer.getDataForWriting(FMLContainer.java:126) ~[FMLContainer.class:?] at net.minecraftforge.fml.common.FMLCommonHandler.handleWorldDataSave(FMLCommonHandler.java:395) ~[FMLCommonHandler.class:?] at net.minecraft.world.storage.SaveHandler.func_75755_a(SaveHandler.java:141) ~[bfb.class:?] at net.minecraft.world.chunk.storage.AnvilSaveHandler.func_75755_a(AnvilSaveHandler.java:40) ~[bey.class:?] at net.minecraft.world.WorldServer.func_73042_a(WorldServer.java:1051) ~[oo.class:?] at net.minecraft.world.WorldServer.func_73044_a(WorldServer.java:1000) ~[oo.class:?] at net.minecraft.server.MinecraftServer.func_71267_a(MinecraftServer.java:408) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.func_71267_a(IntegratedServer.java:252) ~[chd.class:?] at net.minecraft.server.MinecraftServer.func_71260_j(MinecraftServer.java:446) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.func_71260_j(IntegratedServer.java:372) ~[chd.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:579) [MinecraftServer.class:?] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] [10:26:02] [Client thread/INFO]: [net.minecraft.init.Bootstrap:func_179870_a:553]: ---- Minecraft Crash Report ---- WARNING: coremods are present: OTGCorePlugin (OTG-Core.jar) Contact their authors BEFORE contacting forge // This doesn't make any sense! Time: 10/8/19 10:26 AM Description: Exception in server tick loop java.lang.NullPointerException: Exception in server tick loop at net.minecraftforge.registries.ForgeRegistry.getOverrideOwners(ForgeRegistry.java:784) at net.minecraftforge.registries.ForgeRegistry.makeSnapshot(ForgeRegistry.java:771) at net.minecraftforge.registries.RegistryManager.lambda$takeSnapshot$0(RegistryManager.java:135) at net.minecraftforge.registries.RegistryManager$$Lambda$183/2073124154.accept(Unknown Source) at java.lang.Iterable.forEach(Iterable.java:75) at net.minecraftforge.registries.RegistryManager.takeSnapshot(RegistryManager.java:135) at net.minecraftforge.fml.common.FMLContainer.getDataForWriting(FMLContainer.java:126) at net.minecraftforge.fml.common.FMLCommonHandler.handleWorldDataSave(FMLCommonHandler.java:395) at net.minecraft.world.storage.SaveHandler.func_75755_a(SaveHandler.java:141) at net.minecraft.world.chunk.storage.AnvilSaveHandler.func_75755_a(AnvilSaveHandler.java:40) at net.minecraft.world.WorldServer.func_73042_a(WorldServer.java:1051) at net.minecraft.world.WorldServer.func_73044_a(WorldServer.java:1000) at net.minecraft.server.MinecraftServer.func_71267_a(MinecraftServer.java:408) at net.minecraft.server.integrated.IntegratedServer.func_71267_a(IntegratedServer.java:252) at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:170) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) at java.lang.Thread.run(Thread.java:745) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1072899952 bytes (1023 MB) / 1488453632 bytes (1419 MB) up to 2863661056 bytes (2731 MB) JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3072m -Xms256m -XX:PermSize=256m IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2847 8 mods loaded, 8 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored | State | ID | Version | Source | Signature | |:------ |:-------------------- |:------------ |:------------------------------------ |:---------------------------------------- | | LCHIJA | minecraft | 1.12.2 | minecraft.jar | None | | LCHIJA | mcp | 9.42 | minecraft.jar | None | | LCHIJA | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2847.jar | None | | LCHIJA | forge | 14.23.5.2847 | forge-1.12.2-14.23.5.2847.jar | None | | LCHIJA | otgcore | 1.12.2 - v7 | minecraft.jar | None | | LCHIJA | openterraingenerator | v6 | OpenTerrainGenerator-1.12.2 - v6.jar | e9f7847a78c5342af5b0a9e04e5abc0b554d69e0 | | LCHIJA | biomebundle | 5.1 | Biome_Bundle-1.12.2-v6.1.jar | None | | LCHIJA | minecraftfuture | 0.1.11 | future-mc-0.1.11.jar | None | Loaded coremods (and transformers): OTGCorePlugin (OTG-Core.jar) com.pg85.otg.forge.asm.OTGClassTransformer GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread. Profiler Position: N/A (disabled) Player Count: 1 / 8; [EntityPlayerMP['Nimel'/13, l='Biome Bundle', x=885.50, y=47.00, z=541.50]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' ``` As Biome Bundle runs fine with all my others mods, I suspect the error is in future MC.
comp
future mc biome bundle crash at the creation of a new world using biome bundle and futuremc makes the game crash at the creation of a new world the error is the game crashed whilst exception in server tick loop error java lang nullpointerexception exception in server tick loop step to reproduce install biome bundle otg install future mc launch the game and create a new world and here are the complete log exception stopping the server java lang nullpointerexception null at net minecraftforge registries forgeregistry getoverrideowners forgeregistry java at net minecraftforge registries forgeregistry makesnapshot forgeregistry java at net minecraftforge registries registrymanager lambda takesnapshot registrymanager java at net minecraftforge registries registrymanager lambda accept unknown source at java lang iterable foreach iterable java at net minecraftforge registries registrymanager takesnapshot registrymanager java at net minecraftforge fml common fmlcontainer getdataforwriting fmlcontainer java at net minecraftforge fml common fmlcommonhandler handleworlddatasave fmlcommonhandler java at net minecraft world storage savehandler func a savehandler java at net minecraft world chunk storage anvilsavehandler func a anvilsavehandler java at net minecraft world worldserver func a worldserver java at net minecraft world worldserver func a worldserver java at net minecraft server minecraftserver func a minecraftserver java at net minecraft server integrated integratedserver func a integratedserver java at net minecraft server minecraftserver func j minecraftserver java at net minecraft server integrated integratedserver func j integratedserver java at net minecraft server minecraftserver run minecraftserver java at java lang thread run thread java minecraft crash report warning coremods are present otgcoreplugin otg core jar contact their authors before contacting forge this doesn t make any sense time am description exception in server tick loop java lang nullpointerexception exception in server tick loop at net minecraftforge registries forgeregistry getoverrideowners forgeregistry java at net minecraftforge registries forgeregistry makesnapshot forgeregistry java at net minecraftforge registries registrymanager lambda takesnapshot registrymanager java at net minecraftforge registries registrymanager lambda accept unknown source at java lang iterable foreach iterable java at net minecraftforge registries registrymanager takesnapshot registrymanager java at net minecraftforge fml common fmlcontainer getdataforwriting fmlcontainer java at net minecraftforge fml common fmlcommonhandler handleworlddatasave fmlcommonhandler java at net minecraft world storage savehandler func a savehandler java at net minecraft world chunk storage anvilsavehandler func a anvilsavehandler java at net minecraft world worldserver func a worldserver java at net minecraft world worldserver func a worldserver java at net minecraft server minecraftserver func a minecraftserver java at net minecraft server integrated integratedserver func a integratedserver java at net minecraft server integrated integratedserver func p integratedserver java at net minecraft server minecraftserver run minecraftserver java at java lang thread run thread java a detailed walkthrough of the error its code path and all known details is as follows system details details minecraft version operating system windows version java version oracle corporation java vm version java hotspot tm bit server vm mixed mode oracle corporation memory bytes mb bytes mb up to bytes mb jvm flags total xx heapdumppath mojangtricksinteldriversforperformance javaw exe minecraft exe heapdump xx permsize intcache cache tcache allocated tallocated fml mcp powered by forge mods loaded mods active states u unloaded l loaded c constructed h pre initialized i initialized j post initialized a available d disabled e errored state id version source signature lchija minecraft minecraft jar none lchija mcp minecraft jar none lchija fml forge jar none lchija forge forge jar none lchija otgcore minecraft jar none lchija openterraingenerator openterraingenerator jar lchija biomebundle biome bundle jar none lchija minecraftfuture future mc jar none loaded coremods and transformers otgcoreplugin otg core jar com otg forge asm otgclasstransformer gl info error runtimeexception no opengl context found in the current thread profiler position n a disabled player count type integrated server map client txt is modded definitely client brand changed to fml forge as biome bundle runs fine with all my others mods i suspect the error is in future mc
1
11,684
13,756,645,530
IssuesEvent
2020-10-06 20:16:38
widelands/widelands
https://api.github.com/repos/widelands/widelands
reopened
String "Saving Game" appears too late
saveloading & compatibility ui
A automatic "Save game" process behaves like following on my maschine: 1. Game stuck (workers are standing still) 2. Game runs ( worker are working) and then "SavingGame... Game saved" is shown. 3. After about 2 seconds the string "Saving game ..." disappears 4. After one second the String "Game saved" disappears I think the string "Saving game ..." should be shown when the game stuck (1.) and disappear when it runs further (2.) ------------------------------------ Imported from Launchpad using lp2gh. * date created: 2016-04-05T17:18:49Z * owner: franku * assignee: tiborb95 * the launchpad url was https://bugs.launchpad.net/bugs/1566441
True
String "Saving Game" appears too late - A automatic "Save game" process behaves like following on my maschine: 1. Game stuck (workers are standing still) 2. Game runs ( worker are working) and then "SavingGame... Game saved" is shown. 3. After about 2 seconds the string "Saving game ..." disappears 4. After one second the String "Game saved" disappears I think the string "Saving game ..." should be shown when the game stuck (1.) and disappear when it runs further (2.) ------------------------------------ Imported from Launchpad using lp2gh. * date created: 2016-04-05T17:18:49Z * owner: franku * assignee: tiborb95 * the launchpad url was https://bugs.launchpad.net/bugs/1566441
comp
string saving game appears too late a automatic save game process behaves like following on my maschine game stuck workers are standing still game runs worker are working and then savinggame game saved is shown after about seconds the string saving game disappears after one second the string game saved disappears i think the string saving game should be shown when the game stuck and disappear when it runs further imported from launchpad using date created owner franku assignee the launchpad url was
1
8,592
10,564,922,212
IssuesEvent
2019-10-05 06:44:29
mike42/escpos-php
https://api.github.com/repos/mike42/escpos-php
closed
Printer tested: Bixolon SRP-350Plus
printer-compatibility
Hi, I've used this library in a Bixolon SRP-350Plus. It works. Thanks.
True
Printer tested: Bixolon SRP-350Plus - Hi, I've used this library in a Bixolon SRP-350Plus. It works. Thanks.
comp
printer tested bixolon srp hi i ve used this library in a bixolon srp it works thanks
1
13,621
16,166,777,092
IssuesEvent
2021-05-01 17:01:02
kernitus/BukkitOldCombatMechanics
https://api.github.com/repos/kernitus/BukkitOldCombatMechanics
closed
Error being spammed in console while players online
incompatibility investigate
Server version: git-Paper-497 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT) OCM version: 1.9.0 Error: https://pastebin.com/EpjB2RFe Config: https://pastebin.com/Cg1VfePz there are no problems in the functionality itself just the console being spammed if someone is on the server if they are on survival creative adventure or spectator it never stops unless all players leave it's almost impossible to use the console like this so I'd be glad if there's a way to stop it from spamming errors
True
Error being spammed in console while players online - Server version: git-Paper-497 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT) OCM version: 1.9.0 Error: https://pastebin.com/EpjB2RFe Config: https://pastebin.com/Cg1VfePz there are no problems in the functionality itself just the console being spammed if someone is on the server if they are on survival creative adventure or spectator it never stops unless all players leave it's almost impossible to use the console like this so I'd be glad if there's a way to stop it from spamming errors
comp
error being spammed in console while players online server version git paper mc implementing api version snapshot ocm version error config there are no problems in the functionality itself just the console being spammed if someone is on the server if they are on survival creative adventure or spectator it never stops unless all players leave it s almost impossible to use the console like this so i d be glad if there s a way to stop it from spamming errors
1
331,366
24,304,887,515
IssuesEvent
2022-09-29 16:31:12
nguyenvulong/QA
https://api.github.com/repos/nguyenvulong/QA
opened
sed tab in a statement
documentation
not all `sed` versions would understand `tab` Ctrl-V then `tab` instead
1.0
sed tab in a statement - not all `sed` versions would understand `tab` Ctrl-V then `tab` instead
non_comp
sed tab in a statement not all sed versions would understand tab ctrl v then tab instead
0
37,156
9,968,706,976
IssuesEvent
2019-07-08 16:10:14
cypress-io/cypress
https://api.github.com/repos/cypress-io/cypress
closed
Add comment to commits in "develop" explaining how to install beta version
process: build stage: work in progress type: chore
## Background Currently every commit that lands into "develop" branch triggers a CI build on each platform (Linux, Mac, Win 32 and 64) which produces NPM module `cypress.tgz` and application binary `cypress.zip`. These two files are uploaded to a temporary S3 folder where they are used to test downstream projects. Typical test commit message like https://github.com/cypress-io/cypress-test-example-repos/commit/295f6acd09694da213381217e2802d7ffbfbabe6 is below ``` Testing new win32 x64 Cypress version 3.3.2 448de97 { "platform": "win32", "arch": "x64", "env": { "CYPRESS_INSTALL_BINARY": "https://cdn.cypress.io/beta/binary/3.3.2/win32-x64/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.zip" }, "packages": "https://cdn.cypress.io/beta/npm/3.3.2/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.tgz", "branch": "3.3.2", "commit": "448de97b9d901e04d6aaf21fe3b5f068092e4761", "status": { "owner": "cypress-io", "repo": "cypress", "sha": "448de97b9d901e04d6aaf21fe3b5f068092e4761", "platform": "win32", "arch": "x64", "context": "[win32-x64] cypress-test-example-repos" } } Use tool `@cypress/commit-message-install` to install from above block AppVeyor: cypress-io/cypress 6528 ``` Each CI runs the tests - since this is a Win 64bit binary, Linux and Mac CI jobs finish right away, and only the AppVeyor Windows CI 64bit actually tests the new binary ![Screen Shot 2019-06-19 at 3 14 23 PM](https://user-images.githubusercontent.com/2212006/59793649-0d2fb400-92a5-11e9-8f61-fb0b09b63652.png) The above message shows how to install the beta release: you need to set environment variable [`CYPRESS_INSTALL_BINARY`](https://on.cypress.io/installing-cypress#Install-binary) to the beta url and then install `cypress.tgz` url. This is platform-specific binary, thus only on Windows 64bit machine you should do ``` set CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/3.3.2/win32-x64/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.zip npm i https://cdn.cypress.io/beta/npm/3.3.2/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.tgz ``` On Linux one needs to find a Linux build for commit `448de97b9d901e04d6aaf21fe3b5f068092e4761` - in this case it listed in https://github.com/cypress-io/cypress-test-example-repos/commit/bc5c376601b3cef1799c3222de038c88eafaee43 and run to install ``` export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/3.3.2/linux-x64/circle-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-125099/cypress.zip npm i https://cdn.cypress.io/beta/npm/3.3.2/circle-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-125112/cypress.tgz ``` Note: the NPM package usually does NOT change and is NOT platform-specific just yet. Thus it should be ok to install `cypress.tgz` from any OS ## Problem Some of our users would like to try a beta release of Cypress before it is published to NPM to test new changes and fixes. For example, see https://github.com/cypress-io/cypress/issues/4313#issuecomment-503272257 Even we ourselves sometimes need to try out a built pre-release binary against a particular project and would need an easy way to pull this info. ## Proposal For now, let's comment on each commit in `develop` branch like https://github.com/cypress-io/cypress/commit/448de97b9d901e04d6aaf21fe3b5f068092e4761 from the build job with information on how to install this particular binary. We already have commit status checks for pull requests and can use the same logic to comment on commit. There will be several comments I guess (each built platform) but I think this is acceptable
1.0
Add comment to commits in "develop" explaining how to install beta version - ## Background Currently every commit that lands into "develop" branch triggers a CI build on each platform (Linux, Mac, Win 32 and 64) which produces NPM module `cypress.tgz` and application binary `cypress.zip`. These two files are uploaded to a temporary S3 folder where they are used to test downstream projects. Typical test commit message like https://github.com/cypress-io/cypress-test-example-repos/commit/295f6acd09694da213381217e2802d7ffbfbabe6 is below ``` Testing new win32 x64 Cypress version 3.3.2 448de97 { "platform": "win32", "arch": "x64", "env": { "CYPRESS_INSTALL_BINARY": "https://cdn.cypress.io/beta/binary/3.3.2/win32-x64/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.zip" }, "packages": "https://cdn.cypress.io/beta/npm/3.3.2/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.tgz", "branch": "3.3.2", "commit": "448de97b9d901e04d6aaf21fe3b5f068092e4761", "status": { "owner": "cypress-io", "repo": "cypress", "sha": "448de97b9d901e04d6aaf21fe3b5f068092e4761", "platform": "win32", "arch": "x64", "context": "[win32-x64] cypress-test-example-repos" } } Use tool `@cypress/commit-message-install` to install from above block AppVeyor: cypress-io/cypress 6528 ``` Each CI runs the tests - since this is a Win 64bit binary, Linux and Mac CI jobs finish right away, and only the AppVeyor Windows CI 64bit actually tests the new binary ![Screen Shot 2019-06-19 at 3 14 23 PM](https://user-images.githubusercontent.com/2212006/59793649-0d2fb400-92a5-11e9-8f61-fb0b09b63652.png) The above message shows how to install the beta release: you need to set environment variable [`CYPRESS_INSTALL_BINARY`](https://on.cypress.io/installing-cypress#Install-binary) to the beta url and then install `cypress.tgz` url. This is platform-specific binary, thus only on Windows 64bit machine you should do ``` set CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/3.3.2/win32-x64/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.zip npm i https://cdn.cypress.io/beta/npm/3.3.2/appveyor-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-25393127/cypress.tgz ``` On Linux one needs to find a Linux build for commit `448de97b9d901e04d6aaf21fe3b5f068092e4761` - in this case it listed in https://github.com/cypress-io/cypress-test-example-repos/commit/bc5c376601b3cef1799c3222de038c88eafaee43 and run to install ``` export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/3.3.2/linux-x64/circle-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-125099/cypress.zip npm i https://cdn.cypress.io/beta/npm/3.3.2/circle-develop-448de97b9d901e04d6aaf21fe3b5f068092e4761-125112/cypress.tgz ``` Note: the NPM package usually does NOT change and is NOT platform-specific just yet. Thus it should be ok to install `cypress.tgz` from any OS ## Problem Some of our users would like to try a beta release of Cypress before it is published to NPM to test new changes and fixes. For example, see https://github.com/cypress-io/cypress/issues/4313#issuecomment-503272257 Even we ourselves sometimes need to try out a built pre-release binary against a particular project and would need an easy way to pull this info. ## Proposal For now, let's comment on each commit in `develop` branch like https://github.com/cypress-io/cypress/commit/448de97b9d901e04d6aaf21fe3b5f068092e4761 from the build job with information on how to install this particular binary. We already have commit status checks for pull requests and can use the same logic to comment on commit. There will be several comments I guess (each built platform) but I think this is acceptable
non_comp
add comment to commits in develop explaining how to install beta version background currently every commit that lands into develop branch triggers a ci build on each platform linux mac win and which produces npm module cypress tgz and application binary cypress zip these two files are uploaded to a temporary folder where they are used to test downstream projects typical test commit message like is below testing new cypress version platform arch env cypress install binary packages branch commit status owner cypress io repo cypress sha platform arch context cypress test example repos use tool cypress commit message install to install from above block appveyor cypress io cypress each ci runs the tests since this is a win binary linux and mac ci jobs finish right away and only the appveyor windows ci actually tests the new binary the above message shows how to install the beta release you need to set environment variable to the beta url and then install cypress tgz url this is platform specific binary thus only on windows machine you should do set cypress install binary npm i on linux one needs to find a linux build for commit in this case it listed in and run to install export cypress install binary npm i note the npm package usually does not change and is not platform specific just yet thus it should be ok to install cypress tgz from any os problem some of our users would like to try a beta release of cypress before it is published to npm to test new changes and fixes for example see even we ourselves sometimes need to try out a built pre release binary against a particular project and would need an easy way to pull this info proposal for now let s comment on each commit in develop branch like from the build job with information on how to install this particular binary we already have commit status checks for pull requests and can use the same logic to comment on commit there will be several comments i guess each built platform but i think this is acceptable
0
6,502
8,784,678,414
IssuesEvent
2018-12-20 10:32:58
Cha-OS/colabo
https://api.github.com/repos/Cha-OS/colabo
opened
MapsList
IMPORTANT compatibility domain:Workshops refactoring working on it
- rebuilding into `src/frontend/dev_puzzles/maps/core/maps-list/maps-list.component.html` from `src/frontend/dev_puzzles/mapsList/partials/maps-list.tpl.html`
True
MapsList - - rebuilding into `src/frontend/dev_puzzles/maps/core/maps-list/maps-list.component.html` from `src/frontend/dev_puzzles/mapsList/partials/maps-list.tpl.html`
comp
mapslist rebuilding into src frontend dev puzzles maps core maps list maps list component html from src frontend dev puzzles mapslist partials maps list tpl html
1
30,891
13,382,438,166
IssuesEvent
2020-09-02 08:49:09
terraform-providers/terraform-provider-azurerm
https://api.github.com/repos/terraform-providers/terraform-provider-azurerm
closed
azurerm_dns_a_record failing with weird "from no visitor picked" string in target_resource_id?
question service/dns
<!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues * [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues * [Registry](https://registry.terraform.io/) issues * Spans resources across multiple providers If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead. ---> <!--- Please keep this note for the community ---> ### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform (and AzureRM Provider) Version <!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). ---> ``` $ terraform -v Terraform v0.12.29 + provider.azurerm v2.24.0 + provider.null v2.1.2 ``` ### Affected Resource(s) <!--- Please list the affected resources and data sources. ---> * `azurerm_dns_a_record` * `azurerm_cdn_profile` * `azurerm_cdn_endpoint` ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ```hcl resource "azurerm_cdn_profile" "cdn" { resource_group_name = "RG" location = "EastUS2" name = "cdn" sku = "Standard_Microsoft" } resource "azurerm_cdn_endpoint" "endpoint" { resource_group_name = "RG" location = "EastUS2" profile_name = azurerm_cdn_profile.cdn.name name = "cdn-endpoint" querystring_caching_behaviour = "UseQueryString" origin_host_header = "www.domain.test" origin { name = "www" host_name = "www.domain.test" } global_delivery_rule { modify_request_header_action { action = "Delete" name = "Cookie" } modify_response_header_action { action = "Delete" name = "Set-Cookie" } } } resource "azurerm_dns_a_record" "apex" { resource_group_name = "RG" zone_name = "domain.test" name = "@" ttl = 300 target_resource_id = azurerm_cdn_profile.cdn.id } ``` ### Debug Output <!--- Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist. To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html). ---> <details> <summary>(I cannot provide the entire log, but I've redacted names and IDs from the relevant portion of the log. Click to expand.)</summary> ``` 2020/08/20 16:34:46 [DEBUG] azurerm_dns_a_record.apex[0]: applying the planned Create change 2020/08/20 16:34:46 [TRACE] GRPCProvider: ApplyResourceChange 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Request: 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: GET /subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01 HTTP/1.1 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Host: management.azure.com 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: User-Agent: Go/go1.14.5 (amd64-darwin) go-autorest/v14.0.0 Azure-SDK-For-Go/v44.2.0 dns/2018-05-01 HashiCorp Terraform/0.12.29 (+https://www.terraform.io) Terraform Plugin SDK/1.13.1 terraform-provider-azurerm/2.24.0 pid-222c6c49-1b0a-5959-a213-6608f9eb8820 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Accept-Encoding: gzip 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Response for https://management.azure.com/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01: 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: HTTP/2.0 404 Not Found 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Length: 170 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Cache-Control: private 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Type: application/json; charset=utf-8 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Date: Thu, 20 Aug 2020 20:34:46 GMT 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Server: Microsoft-IIS/10.0 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Strict-Transport-Security: max-age=31536000; includeSubDomains 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Content-Type-Options: nosniff 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: 499 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Request-Id: REDACTED 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Routing-Request-Id: REDACTED 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Powered-By: ASP.NET 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: {"code":"NotFound","message":"The resource record '@' does not exist in resource group 'REDACTED' of subscription 'REDACTED'."} 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Request: 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: PUT /subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01 HTTP/1.1 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Host: management.azure.com 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: User-Agent: Go/go1.14.5 (amd64-darwin) go-autorest/v14.0.0 Azure-SDK-For-Go/v44.2.0 dns/2018-05-01 HashiCorp Terraform/0.12.29 (+https://www.terraform.io) Terraform Plugin SDK/1.13.1 terraform-provider-azurerm/2.24.0 pid-222c6c49-1b0a-5959-a213-6608f9eb8820 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Length: 254 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Type: application/json; charset=utf-8 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Accept-Encoding: gzip 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: {"properties":{"ARecords":[],"TTL":300,"metadata":{"brand":"BB","environment":"production"},"targetResource":{"id":"/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn"}}} 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Response for https://management.azure.com/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01: 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: HTTP/2.0 400 Bad Request 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Length: 250 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Cache-Control: private 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Type: application/json; charset=utf-8 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Date: Thu, 20 Aug 2020 20:34:47 GMT 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Server: Microsoft-IIS/10.0 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Strict-Transport-Security: max-age=31536000; includeSubDomains 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Content-Type-Options: nosniff 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: 11998 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Request-Id: REDACTED 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Routing-Request-Id: REDACTED 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Powered-By: ASP.NET 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: {"code":"BadRequest","message":"Reference records are not supported for resource '\/subscriptions\/REDACTED\/resourceGroups\/REDACTED\/providers\/Microsoft.Cdn\/profiles\/cdn from no visitor picked'"} 2020/08/20 16:34:47 [DEBUG] azurerm_dns_a_record.apex[0]: apply errored, but we're indicating that via the Error pointer rather than returning it: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalMaybeTainted 2020/08/20 16:34:47 [TRACE] EvalMaybeTainted: azurerm_dns_a_record.apex[0] encountered an error during creation, so it is now marked as tainted 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalWriteState 2020/08/20 16:34:47 [TRACE] EvalWriteState: removing state object for azurerm_dns_a_record.apex[0] 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalApplyProvisioners 2020/08/20 16:34:47 [TRACE] EvalApplyProvisioners: azurerm_dns_a_record.apex[0] has no state, so skipping provisioners 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalMaybeTainted 2020/08/20 16:34:47 [TRACE] EvalMaybeTainted: azurerm_dns_a_record.apex[0] encountered an error during creation, so it is now marked as tainted 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalWriteState 2020/08/20 16:34:47 [TRACE] EvalWriteState: removing state object for azurerm_dns_a_record.apex[0] 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalIf 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalIf 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalWriteDiff 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalApplyPost 2020/08/20 16:34:47 [ERROR] <root>: eval: *terraform.EvalApplyPost, err: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" 2020/08/20 16:34:47 [ERROR] <root>: eval: *terraform.EvalSequence, err: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" 2020/08/20 16:34:47 [TRACE] [walkApply] Exiting eval tree: azurerm_dns_a_record.apex[0] 2020/08/20 16:34:47 [TRACE] vertex "azurerm_dns_a_record.apex[0]": visit complete 2020/08/20 16:34:47 [TRACE] dag/walk: upstream of "meta.count-boundary (EachMode fixup)" errored, so skipping 2020/08/20 16:34:47 [TRACE] dag/walk: upstream of "provider.azurerm (close)" errored, so skipping 2020/08/20 16:34:47 [TRACE] dag/walk: upstream of "root" errored, so skipping 2020-08-20T16:34:47.900-0400 [DEBUG] plugin: plugin process exited: path=/Users/REDACTED/stacks/cdn/.terraform/plugins/darwin_amd64/terraform-provider-azurerm_v2.24.0_x5 pid=71900 2020-08-20T16:34:47.900-0400 [DEBUG] plugin: plugin exited ``` </details> ### Panic Output <!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. ---> N/A ### Expected Behavior <!--- What should have happened? ---> The apex record `@` should have been created in the Azure DNS zone, as an alias resource pointing at the Azure CDN profile `cdn`. ### Actual Behavior <!--- What actually happened? ---> ``` Terraform will perform the following actions: # azurerm_dns_a_record.apex[0] will be created + resource "azurerm_dns_a_record" "apex" { + fqdn = (known after apply) + id = (known after apply) + name = "@" + resource_group_name = "REDACTED" + target_resource_id = "/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn" + ttl = 300 + zone_name = "domain.test" } Plan: 1 to add, 0 to change, 0 to destroy. Do you want to perform these actions in workspace "REDACTED"? Terraform will perform the actions described above. Only 'yes' will be accepted to approve. Enter a value: yes azurerm_dns_a_record.apex[0]: Creating... Error: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" on cdn.tf line 56, in resource "azurerm_dns_a_record" "apex": 56: resource "azurerm_dns_a_record" "apex" { ``` ### Steps to Reproduce <!--- Please list the steps required to reproduce the issue. ---> 1. `terraform apply` ### Important Factoids <!--- Are there anything atypical about your accounts that we should know? For example: Running in a Azure China/Germany/Government? ---> N/A ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation? ---> N/A
1.0
azurerm_dns_a_record failing with weird "from no visitor picked" string in target_resource_id? - <!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues * [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues * [Registry](https://registry.terraform.io/) issues * Spans resources across multiple providers If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead. ---> <!--- Please keep this note for the community ---> ### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform (and AzureRM Provider) Version <!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). ---> ``` $ terraform -v Terraform v0.12.29 + provider.azurerm v2.24.0 + provider.null v2.1.2 ``` ### Affected Resource(s) <!--- Please list the affected resources and data sources. ---> * `azurerm_dns_a_record` * `azurerm_cdn_profile` * `azurerm_cdn_endpoint` ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ```hcl resource "azurerm_cdn_profile" "cdn" { resource_group_name = "RG" location = "EastUS2" name = "cdn" sku = "Standard_Microsoft" } resource "azurerm_cdn_endpoint" "endpoint" { resource_group_name = "RG" location = "EastUS2" profile_name = azurerm_cdn_profile.cdn.name name = "cdn-endpoint" querystring_caching_behaviour = "UseQueryString" origin_host_header = "www.domain.test" origin { name = "www" host_name = "www.domain.test" } global_delivery_rule { modify_request_header_action { action = "Delete" name = "Cookie" } modify_response_header_action { action = "Delete" name = "Set-Cookie" } } } resource "azurerm_dns_a_record" "apex" { resource_group_name = "RG" zone_name = "domain.test" name = "@" ttl = 300 target_resource_id = azurerm_cdn_profile.cdn.id } ``` ### Debug Output <!--- Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist. To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html). ---> <details> <summary>(I cannot provide the entire log, but I've redacted names and IDs from the relevant portion of the log. Click to expand.)</summary> ``` 2020/08/20 16:34:46 [DEBUG] azurerm_dns_a_record.apex[0]: applying the planned Create change 2020/08/20 16:34:46 [TRACE] GRPCProvider: ApplyResourceChange 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Request: 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: GET /subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01 HTTP/1.1 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Host: management.azure.com 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: User-Agent: Go/go1.14.5 (amd64-darwin) go-autorest/v14.0.0 Azure-SDK-For-Go/v44.2.0 dns/2018-05-01 HashiCorp Terraform/0.12.29 (+https://www.terraform.io) Terraform Plugin SDK/1.13.1 terraform-provider-azurerm/2.24.0 pid-222c6c49-1b0a-5959-a213-6608f9eb8820 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Accept-Encoding: gzip 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:46.861-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Response for https://management.azure.com/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01: 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: HTTP/2.0 404 Not Found 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Length: 170 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Cache-Control: private 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Type: application/json; charset=utf-8 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Date: Thu, 20 Aug 2020 20:34:46 GMT 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Server: Microsoft-IIS/10.0 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Strict-Transport-Security: max-age=31536000; includeSubDomains 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Content-Type-Options: nosniff 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: 499 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Request-Id: REDACTED 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Routing-Request-Id: REDACTED 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Powered-By: ASP.NET 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.196-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: {"code":"NotFound","message":"The resource record '@' does not exist in resource group 'REDACTED' of subscription 'REDACTED'."} 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Request: 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: PUT /subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01 HTTP/1.1 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Host: management.azure.com 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: User-Agent: Go/go1.14.5 (amd64-darwin) go-autorest/v14.0.0 Azure-SDK-For-Go/v44.2.0 dns/2018-05-01 HashiCorp Terraform/0.12.29 (+https://www.terraform.io) Terraform Plugin SDK/1.13.1 terraform-provider-azurerm/2.24.0 pid-222c6c49-1b0a-5959-a213-6608f9eb8820 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Length: 254 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Type: application/json; charset=utf-8 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Accept-Encoding: gzip 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.197-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: {"properties":{"ARecords":[],"TTL":300,"metadata":{"brand":"BB","environment":"production"},"targetResource":{"id":"/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn"}}} 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: [DEBUG] AzureRM Response for https://management.azure.com/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Network/dnsZones/domain.test/A/@?api-version=2018-05-01: 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: HTTP/2.0 400 Bad Request 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Length: 250 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Cache-Control: private 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Content-Type: application/json; charset=utf-8 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Date: Thu, 20 Aug 2020 20:34:47 GMT 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Server: Microsoft-IIS/10.0 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: Strict-Transport-Security: max-age=31536000; includeSubDomains 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Content-Type-Options: nosniff 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Correlation-Request-Id: REDACTED 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: 11998 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Request-Id: REDACTED 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Ms-Routing-Request-Id: REDACTED 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: X-Powered-By: ASP.NET 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: 2020-08-20T16:34:47.636-0400 [DEBUG] plugin.terraform-provider-azurerm_v2.24.0_x5: {"code":"BadRequest","message":"Reference records are not supported for resource '\/subscriptions\/REDACTED\/resourceGroups\/REDACTED\/providers\/Microsoft.Cdn\/profiles\/cdn from no visitor picked'"} 2020/08/20 16:34:47 [DEBUG] azurerm_dns_a_record.apex[0]: apply errored, but we're indicating that via the Error pointer rather than returning it: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalMaybeTainted 2020/08/20 16:34:47 [TRACE] EvalMaybeTainted: azurerm_dns_a_record.apex[0] encountered an error during creation, so it is now marked as tainted 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalWriteState 2020/08/20 16:34:47 [TRACE] EvalWriteState: removing state object for azurerm_dns_a_record.apex[0] 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalApplyProvisioners 2020/08/20 16:34:47 [TRACE] EvalApplyProvisioners: azurerm_dns_a_record.apex[0] has no state, so skipping provisioners 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalMaybeTainted 2020/08/20 16:34:47 [TRACE] EvalMaybeTainted: azurerm_dns_a_record.apex[0] encountered an error during creation, so it is now marked as tainted 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalWriteState 2020/08/20 16:34:47 [TRACE] EvalWriteState: removing state object for azurerm_dns_a_record.apex[0] 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalIf 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalIf 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalWriteDiff 2020/08/20 16:34:47 [TRACE] <root>: eval: *terraform.EvalApplyPost 2020/08/20 16:34:47 [ERROR] <root>: eval: *terraform.EvalApplyPost, err: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" 2020/08/20 16:34:47 [ERROR] <root>: eval: *terraform.EvalSequence, err: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" 2020/08/20 16:34:47 [TRACE] [walkApply] Exiting eval tree: azurerm_dns_a_record.apex[0] 2020/08/20 16:34:47 [TRACE] vertex "azurerm_dns_a_record.apex[0]": visit complete 2020/08/20 16:34:47 [TRACE] dag/walk: upstream of "meta.count-boundary (EachMode fixup)" errored, so skipping 2020/08/20 16:34:47 [TRACE] dag/walk: upstream of "provider.azurerm (close)" errored, so skipping 2020/08/20 16:34:47 [TRACE] dag/walk: upstream of "root" errored, so skipping 2020-08-20T16:34:47.900-0400 [DEBUG] plugin: plugin process exited: path=/Users/REDACTED/stacks/cdn/.terraform/plugins/darwin_amd64/terraform-provider-azurerm_v2.24.0_x5 pid=71900 2020-08-20T16:34:47.900-0400 [DEBUG] plugin: plugin exited ``` </details> ### Panic Output <!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. ---> N/A ### Expected Behavior <!--- What should have happened? ---> The apex record `@` should have been created in the Azure DNS zone, as an alias resource pointing at the Azure CDN profile `cdn`. ### Actual Behavior <!--- What actually happened? ---> ``` Terraform will perform the following actions: # azurerm_dns_a_record.apex[0] will be created + resource "azurerm_dns_a_record" "apex" { + fqdn = (known after apply) + id = (known after apply) + name = "@" + resource_group_name = "REDACTED" + target_resource_id = "/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn" + ttl = 300 + zone_name = "domain.test" } Plan: 1 to add, 0 to change, 0 to destroy. Do you want to perform these actions in workspace "REDACTED"? Terraform will perform the actions described above. Only 'yes' will be accepted to approve. Enter a value: yes azurerm_dns_a_record.apex[0]: Creating... Error: Error creating/updating DNS A Record "@" (Zone "domain.test" / Resource Group "REDACTED"): dns.RecordSetsClient#CreateOrUpdate: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="BadRequest" Message="Reference records are not supported for resource '/subscriptions/REDACTED/resourceGroups/REDACTED/providers/Microsoft.Cdn/profiles/cdn from no visitor picked'" on cdn.tf line 56, in resource "azurerm_dns_a_record" "apex": 56: resource "azurerm_dns_a_record" "apex" { ``` ### Steps to Reproduce <!--- Please list the steps required to reproduce the issue. ---> 1. `terraform apply` ### Important Factoids <!--- Are there anything atypical about your accounts that we should know? For example: Running in a Azure China/Germany/Government? ---> N/A ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation? ---> N/A
non_comp
azurerm dns a record failing with weird from no visitor picked string in target resource id please note the following potential times when an issue might be in terraform core or resource ordering issues and issues issues issues spans resources across multiple providers if you are running into one of these scenarios we recommend opening an issue in the instead community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform and azurerm provider version terraform v terraform provider azurerm provider null affected resource s azurerm dns a record azurerm cdn profile azurerm cdn endpoint terraform configuration files hcl resource azurerm cdn profile cdn resource group name rg location name cdn sku standard microsoft resource azurerm cdn endpoint endpoint resource group name rg location profile name azurerm cdn profile cdn name name cdn endpoint querystring caching behaviour usequerystring origin host header origin name www host name global delivery rule modify request header action action delete name cookie modify response header action action delete name set cookie resource azurerm dns a record apex resource group name rg zone name domain test name ttl target resource id azurerm cdn profile cdn id debug output please provide a link to a github gist containing the complete debug output please do not paste the debug output in the issue just paste a link to the gist to obtain the debug output see the i cannot provide the entire log but i ve redacted names and ids from the relevant portion of the log click to expand azurerm dns a record apex applying the planned create change grpcprovider applyresourcechange plugin terraform provider azurerm azurerm request plugin terraform provider azurerm get subscriptions redacted resourcegroups redacted providers microsoft network dnszones domain test a api version http plugin terraform provider azurerm host management azure com plugin terraform provider azurerm user agent go darwin go autorest azure sdk for go dns hashicorp terraform terraform plugin sdk terraform provider azurerm pid plugin terraform provider azurerm x ms correlation request id redacted plugin terraform provider azurerm accept encoding gzip plugin terraform provider azurerm plugin terraform provider azurerm plugin terraform provider azurerm azurerm response for plugin terraform provider azurerm http not found plugin terraform provider azurerm content length plugin terraform provider azurerm cache control private plugin terraform provider azurerm content type application json charset utf plugin terraform provider azurerm date thu aug gmt plugin terraform provider azurerm server microsoft iis plugin terraform provider azurerm strict transport security max age includesubdomains plugin terraform provider azurerm x content type options nosniff plugin terraform provider azurerm x ms correlation request id redacted plugin terraform provider azurerm x ms ratelimit remaining subscription resource requests plugin terraform provider azurerm x ms request id redacted plugin terraform provider azurerm x ms routing request id redacted plugin terraform provider azurerm x powered by asp net plugin terraform provider azurerm plugin terraform provider azurerm code notfound message the resource record does not exist in resource group redacted of subscription redacted plugin terraform provider azurerm azurerm request plugin terraform provider azurerm put subscriptions redacted resourcegroups redacted providers microsoft network dnszones domain test a api version http plugin terraform provider azurerm host management azure com plugin terraform provider azurerm user agent go darwin go autorest azure sdk for go dns hashicorp terraform terraform plugin sdk terraform provider azurerm pid plugin terraform provider azurerm content length plugin terraform provider azurerm content type application json charset utf plugin terraform provider azurerm x ms correlation request id redacted plugin terraform provider azurerm accept encoding gzip plugin terraform provider azurerm plugin terraform provider azurerm properties arecords ttl metadata brand bb environment production targetresource id subscriptions redacted resourcegroups redacted providers microsoft cdn profiles cdn plugin terraform provider azurerm azurerm response for plugin terraform provider azurerm http bad request plugin terraform provider azurerm content length plugin terraform provider azurerm cache control private plugin terraform provider azurerm content type application json charset utf plugin terraform provider azurerm date thu aug gmt plugin terraform provider azurerm server microsoft iis plugin terraform provider azurerm strict transport security max age includesubdomains plugin terraform provider azurerm x content type options nosniff plugin terraform provider azurerm x ms correlation request id redacted plugin terraform provider azurerm x ms ratelimit remaining subscription resource requests plugin terraform provider azurerm x ms request id redacted plugin terraform provider azurerm x ms routing request id redacted plugin terraform provider azurerm x powered by asp net plugin terraform provider azurerm plugin terraform provider azurerm code badrequest message reference records are not supported for resource subscriptions redacted resourcegroups redacted providers microsoft cdn profiles cdn from no visitor picked azurerm dns a record apex apply errored but we re indicating that via the error pointer rather than returning it error creating updating dns a record zone domain test resource group redacted dns recordsetsclient createorupdate failure responding to request statuscode original error autorest azure service returned an error status code badrequest message reference records are not supported for resource subscriptions redacted resourcegroups redacted providers microsoft cdn profiles cdn from no visitor picked eval terraform evalmaybetainted evalmaybetainted azurerm dns a record apex encountered an error during creation so it is now marked as tainted eval terraform evalwritestate evalwritestate removing state object for azurerm dns a record apex eval terraform evalapplyprovisioners evalapplyprovisioners azurerm dns a record apex has no state so skipping provisioners eval terraform evalmaybetainted evalmaybetainted azurerm dns a record apex encountered an error during creation so it is now marked as tainted eval terraform evalwritestate evalwritestate removing state object for azurerm dns a record apex eval terraform evalif eval terraform evalif eval terraform evalwritediff eval terraform evalapplypost eval terraform evalapplypost err error creating updating dns a record zone domain test resource group redacted dns recordsetsclient createorupdate failure responding to request statuscode original error autorest azure service returned an error status code badrequest message reference records are not supported for resource subscriptions redacted resourcegroups redacted providers microsoft cdn profiles cdn from no visitor picked eval terraform evalsequence err error creating updating dns a record zone domain test resource group redacted dns recordsetsclient createorupdate failure responding to request statuscode original error autorest azure service returned an error status code badrequest message reference records are not supported for resource subscriptions redacted resourcegroups redacted providers microsoft cdn profiles cdn from no visitor picked exiting eval tree azurerm dns a record apex vertex azurerm dns a record apex visit complete dag walk upstream of meta count boundary eachmode fixup errored so skipping dag walk upstream of provider azurerm close errored so skipping dag walk upstream of root errored so skipping plugin plugin process exited path users redacted stacks cdn terraform plugins darwin terraform provider azurerm pid plugin plugin exited panic output n a expected behavior the apex record should have been created in the azure dns zone as an alias resource pointing at the azure cdn profile cdn actual behavior terraform will perform the following actions azurerm dns a record apex will be created resource azurerm dns a record apex fqdn known after apply id known after apply name resource group name redacted target resource id subscriptions redacted resourcegroups redacted providers microsoft cdn profiles cdn ttl zone name domain test plan to add to change to destroy do you want to perform these actions in workspace redacted terraform will perform the actions described above only yes will be accepted to approve enter a value yes azurerm dns a record apex creating error error creating updating dns a record zone domain test resource group redacted dns recordsetsclient createorupdate failure responding to request statuscode original error autorest azure service returned an error status code badrequest message reference records are not supported for resource subscriptions redacted resourcegroups redacted providers microsoft cdn profiles cdn from no visitor picked on cdn tf line in resource azurerm dns a record apex resource azurerm dns a record apex steps to reproduce terraform apply important factoids n a references information about referencing github issues are there any other github issues open or closed or pull requests that should be linked here such as vendor documentation n a
0
794,363
28,033,117,040
IssuesEvent
2023-03-28 13:35:15
mozilla/addons-server
https://api.github.com/repos/mozilla/addons-server
closed
Expose delayed block submission status in admin changelist
component:admin_tools priority:p3
follow-up for https://github.com/mozilla/addons-server/issues/20478, part of https://mozilla-hub.atlassian.net/browse/AMO-43 We should expose the delayed status in the admin changelist for blocklist submission instances. Submissions that are delayed could have a status of SIGNOFF_PENDING (for a submission that still needs a signoff), SIGNOFF_APPROVED (for a submission that has already been signed off), or SIGNOFF_AUTOAPPROVED (for a submission that didn't need a sign-off).
1.0
Expose delayed block submission status in admin changelist - follow-up for https://github.com/mozilla/addons-server/issues/20478, part of https://mozilla-hub.atlassian.net/browse/AMO-43 We should expose the delayed status in the admin changelist for blocklist submission instances. Submissions that are delayed could have a status of SIGNOFF_PENDING (for a submission that still needs a signoff), SIGNOFF_APPROVED (for a submission that has already been signed off), or SIGNOFF_AUTOAPPROVED (for a submission that didn't need a sign-off).
non_comp
expose delayed block submission status in admin changelist follow up for part of we should expose the delayed status in the admin changelist for blocklist submission instances submissions that are delayed could have a status of signoff pending for a submission that still needs a signoff signoff approved for a submission that has already been signed off or signoff autoapproved for a submission that didn t need a sign off
0
8,772
23,421,737,082
IssuesEvent
2022-08-13 20:06:55
nix-community/dream2nix
https://api.github.com/repos/nix-community/dream2nix
closed
per-subsystem subsystemInfo definition/parser?
enhancement architecture
It feels weird to let subsystemInfo be handled by translator only, especially since there can be many translators, passing settings to the builder is arbitrary, and I guess the discoverer can't see them? How about a per-subsystem settings module that defines the flags and optionally transforms them? Then they could also be made available to the overrides?
1.0
per-subsystem subsystemInfo definition/parser? - It feels weird to let subsystemInfo be handled by translator only, especially since there can be many translators, passing settings to the builder is arbitrary, and I guess the discoverer can't see them? How about a per-subsystem settings module that defines the flags and optionally transforms them? Then they could also be made available to the overrides?
non_comp
per subsystem subsysteminfo definition parser it feels weird to let subsysteminfo be handled by translator only especially since there can be many translators passing settings to the builder is arbitrary and i guess the discoverer can t see them how about a per subsystem settings module that defines the flags and optionally transforms them then they could also be made available to the overrides
0
10,918
12,891,928,080
IssuesEvent
2020-07-13 18:38:33
arcticicestudio/nord-vim
https://api.github.com/repos/arcticicestudio/nord-vim
closed
Scheme editing for usage with Go(lang)
context-syntax scope-compatibility status-pending type-support
_Disclosure:_ In case I didn't fully follow the community standard for submitting a new issue, please point me in the right direction as to how it should be done. Since this is more of a help inquiry than an actual issue. The only thing I was wondering is how could I alter `nord-vim` so it's more like in the GoLand. I'm mostly interested in the following: * If param to a function is an *interface* or another function, make it *bold* and/or of *slightly* different color * Return types of a function to be a *slightly* different color Since a picture says a thousand words... In the `SS No.1` I would like that the `RegistrationReaderFn` is of slightly different color and that `session.UserInfo` is bolded. ![SS No.1](https://i.imgur.com/EJp3nnA.png) In the `SS No.2` I would like that `handlers.Handler` is of slightly different color and that both interfaces are bolded in params. ![SS No.2](https://i.imgur.com/XkiG3ZP.png) I would welcome any suggestions as to how I would achieve this. I'm aware that such information is probably waiting behind the corner, but since I recently transitioned to nvim I'm still not very versed at finding such minor tweaks.
True
Scheme editing for usage with Go(lang) - _Disclosure:_ In case I didn't fully follow the community standard for submitting a new issue, please point me in the right direction as to how it should be done. Since this is more of a help inquiry than an actual issue. The only thing I was wondering is how could I alter `nord-vim` so it's more like in the GoLand. I'm mostly interested in the following: * If param to a function is an *interface* or another function, make it *bold* and/or of *slightly* different color * Return types of a function to be a *slightly* different color Since a picture says a thousand words... In the `SS No.1` I would like that the `RegistrationReaderFn` is of slightly different color and that `session.UserInfo` is bolded. ![SS No.1](https://i.imgur.com/EJp3nnA.png) In the `SS No.2` I would like that `handlers.Handler` is of slightly different color and that both interfaces are bolded in params. ![SS No.2](https://i.imgur.com/XkiG3ZP.png) I would welcome any suggestions as to how I would achieve this. I'm aware that such information is probably waiting behind the corner, but since I recently transitioned to nvim I'm still not very versed at finding such minor tweaks.
comp
scheme editing for usage with go lang disclosure in case i didn t fully follow the community standard for submitting a new issue please point me in the right direction as to how it should be done since this is more of a help inquiry than an actual issue the only thing i was wondering is how could i alter nord vim so it s more like in the goland i m mostly interested in the following if param to a function is an interface or another function make it bold and or of slightly different color return types of a function to be a slightly different color since a picture says a thousand words in the ss no i would like that the registrationreaderfn is of slightly different color and that session userinfo is bolded in the ss no i would like that handlers handler is of slightly different color and that both interfaces are bolded in params i would welcome any suggestions as to how i would achieve this i m aware that such information is probably waiting behind the corner but since i recently transitioned to nvim i m still not very versed at finding such minor tweaks
1
112,842
14,292,125,184
IssuesEvent
2020-11-24 00:16:30
mexyn/statev_v2_issues
https://api.github.com/repos/mexyn/statev_v2_issues
closed
Versetzung des Ladepunktes
gamedesign solved
<!-- Bitte die Vorlage unten vollständig ausfüllen --> Sandy_Folk **Character Name** <!-- Mit welchem Character wurde das Verhalten in-game ausgelöst/beobachtet -->Sandy_Folk **Zeitpunkt (Datum / Uhrzeit)** <!-- Wann exakt (Datum / Uhrzeit) ist der Fehler beobachtet worden -->23.11.2020 / 01:16 **Beobachtetes Verhalten** <!--- Beschreibe den Fehler -->Kann an diesem Punkt nicht mit größeren Fahrzeugen Be- und Entladen **Erwartetes Verhalten** <!--- Beschreibe wie es richtigerweise sein sollte --> Punkt bitte nach vorne an die Strasse setzen **Schritte um den Fehler nachvollziehen zu können** <!--- Beschreibe Schritt für Schritt wie man den Fehler nachstellen kann --> **Monitorauflösung (nur wenn Falsche Darstellung in der UI)** <!--- Beschreibe Schritt für Schritt wie man den Fehler nachstellen kann --> **Optional: Video / Bilder des Fehlers** <!--- Falls du ein Video oder Bild vom Fehler gemacht hast, dann kannst du diesen hier einfügen. Dies geht ganz einfach per Drag & Drop --> ![Ladepunkt Alt](https://user-images.githubusercontent.com/74882929/99921335-045cd080-2d2a-11eb-9c84-9392695e4b8b.png) ![Ladepunkt Neu](https://user-images.githubusercontent.com/74882929/99921341-0aeb4800-2d2a-11eb-9cf9-4c0a935c6baf.png) Firmenhash | davis35 -- | -- ![InkedKarte_LI](https://user-images.githubusercontent.com/74882929/99921413-88af5380-2d2a-11eb-9a0b-e7aa0da9d8ac.jpg)
1.0
Versetzung des Ladepunktes - <!-- Bitte die Vorlage unten vollständig ausfüllen --> Sandy_Folk **Character Name** <!-- Mit welchem Character wurde das Verhalten in-game ausgelöst/beobachtet -->Sandy_Folk **Zeitpunkt (Datum / Uhrzeit)** <!-- Wann exakt (Datum / Uhrzeit) ist der Fehler beobachtet worden -->23.11.2020 / 01:16 **Beobachtetes Verhalten** <!--- Beschreibe den Fehler -->Kann an diesem Punkt nicht mit größeren Fahrzeugen Be- und Entladen **Erwartetes Verhalten** <!--- Beschreibe wie es richtigerweise sein sollte --> Punkt bitte nach vorne an die Strasse setzen **Schritte um den Fehler nachvollziehen zu können** <!--- Beschreibe Schritt für Schritt wie man den Fehler nachstellen kann --> **Monitorauflösung (nur wenn Falsche Darstellung in der UI)** <!--- Beschreibe Schritt für Schritt wie man den Fehler nachstellen kann --> **Optional: Video / Bilder des Fehlers** <!--- Falls du ein Video oder Bild vom Fehler gemacht hast, dann kannst du diesen hier einfügen. Dies geht ganz einfach per Drag & Drop --> ![Ladepunkt Alt](https://user-images.githubusercontent.com/74882929/99921335-045cd080-2d2a-11eb-9c84-9392695e4b8b.png) ![Ladepunkt Neu](https://user-images.githubusercontent.com/74882929/99921341-0aeb4800-2d2a-11eb-9cf9-4c0a935c6baf.png) Firmenhash | davis35 -- | -- ![InkedKarte_LI](https://user-images.githubusercontent.com/74882929/99921413-88af5380-2d2a-11eb-9a0b-e7aa0da9d8ac.jpg)
non_comp
versetzung des ladepunktes sandy folk character name sandy folk zeitpunkt datum uhrzeit beobachtetes verhalten kann an diesem punkt nicht mit größeren fahrzeugen be und entladen erwartetes verhalten punkt bitte nach vorne an die strasse setzen schritte um den fehler nachvollziehen zu können monitorauflösung nur wenn falsche darstellung in der ui optional video bilder des fehlers firmenhash
0
18,483
25,570,516,904
IssuesEvent
2022-11-30 17:18:07
universal-ctags/ctags
https://api.github.com/repos/universal-ctags/ctags
closed
Fortran parser: truncate tag line blindly
Incompatibilities ctags6
When parsing: ``` Fortran integer :: i ``` ``` i input.f90 /^in/;" v ``` will be written to tags file. However, what should be in tags file is ``` i input.f90 /^integer :: i/;" v ``` This is caused by **truncateTagLine** function in entry.c which uses **strstr** to get the position of tag in current line and truncate text after the tag. In this case, the tag **i** occurs in the first character of **integer** keyword and all the following text will be truncated. This issue is specific to Fortran parser for that only **truncateLine** is set to be TRUE in fortran.c (I just grep *.c under parser/ directory). So the easiest way to fix it is to comment out ``` C e.truncateLine = (boolean) (token->tag != TAG_LABEL); ``` in fortran.c. This also make the Fortran parser consistent with the others. However, this fix fails almost all Fortran unit tests in this project and it may not be trivial to update units tags according to this fix. May be a better approach is to teach **truncateTagLine** how to truncate smarter (may not be easy to fix). I can't determine it myself and propose it here to discuss.
True
Fortran parser: truncate tag line blindly - When parsing: ``` Fortran integer :: i ``` ``` i input.f90 /^in/;" v ``` will be written to tags file. However, what should be in tags file is ``` i input.f90 /^integer :: i/;" v ``` This is caused by **truncateTagLine** function in entry.c which uses **strstr** to get the position of tag in current line and truncate text after the tag. In this case, the tag **i** occurs in the first character of **integer** keyword and all the following text will be truncated. This issue is specific to Fortran parser for that only **truncateLine** is set to be TRUE in fortran.c (I just grep *.c under parser/ directory). So the easiest way to fix it is to comment out ``` C e.truncateLine = (boolean) (token->tag != TAG_LABEL); ``` in fortran.c. This also make the Fortran parser consistent with the others. However, this fix fails almost all Fortran unit tests in this project and it may not be trivial to update units tags according to this fix. May be a better approach is to teach **truncateTagLine** how to truncate smarter (may not be easy to fix). I can't determine it myself and propose it here to discuss.
comp
fortran parser truncate tag line blindly when parsing fortran integer i i input in v will be written to tags file however what should be in tags file is i input integer i v this is caused by truncatetagline function in entry c which uses strstr to get the position of tag in current line and truncate text after the tag in this case the tag i occurs in the first character of integer keyword and all the following text will be truncated this issue is specific to fortran parser for that only truncateline is set to be true in fortran c i just grep c under parser directory so the easiest way to fix it is to comment out c e truncateline boolean token tag tag label in fortran c this also make the fortran parser consistent with the others however this fix fails almost all fortran unit tests in this project and it may not be trivial to update units tags according to this fix may be a better approach is to teach truncatetagline how to truncate smarter may not be easy to fix i can t determine it myself and propose it here to discuss
1
1,387
6,015,202,230
IssuesEvent
2017-06-07 00:57:20
ansible/ansible-modules-extras
https://api.github.com/repos/ansible/ansible-modules-extras
closed
win_robocopy module don't handle all posible exit codes
affects_2.2 bug_report waiting_on_maintainer windows
<!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Bug Report ##### COMPONENT NAME <!--- Name of the plugin/module/task --> win_robocopy module ##### ANSIBLE VERSION <!--- Paste verbatim output from “ansible --version” between quotes below --> ``` 2.2.0.0 ``` ##### CONFIGURATION <!--- Mention any settings you have changed/added/removed in ansible.cfg (or using the ANSIBLE_* environment variables). --> ##### OS / ENVIRONMENT <!--- Mention the OS you are running Ansible from, and the OS you are managing, or say “N/A” for anything that is not platform-specific. --> ##### SUMMARY <!--- Explain the problem briefly --> module handle only 0,1,2,4,8,16 robocopy exit codes but if custom flags used exit codes may eq combined value: These can be combined, giving a few extra exit codes: 0×03 3 (2+1) Some files were copied. Additional files were present. No failure was encountered. 0×05 5 (4+1) Some files were copied. Some files were mismatched. No failure was encountered. 0×06 6 (4+2) Additional files and mismatched files exist. No files were copied and no failures were encountered. This means that the files already exist in the destination directory 0×07 7 (4+1+2) Files were copied, a file mismatch was present, and additional files were present. ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem. For new features, show how the feature would be used. --> <!--- Paste example playbooks or commands between quotes below --> ``` ``` <!--- You can also paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- What did you expect to happen when running the steps above? --> ##### ACTUAL RESULTS <!--- What actually happened? If possible run with high verbosity (-vvvv) --> <!--- Paste verbatim command output between quotes below --> ``` ```
True
win_robocopy module don't handle all posible exit codes - <!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Bug Report ##### COMPONENT NAME <!--- Name of the plugin/module/task --> win_robocopy module ##### ANSIBLE VERSION <!--- Paste verbatim output from “ansible --version” between quotes below --> ``` 2.2.0.0 ``` ##### CONFIGURATION <!--- Mention any settings you have changed/added/removed in ansible.cfg (or using the ANSIBLE_* environment variables). --> ##### OS / ENVIRONMENT <!--- Mention the OS you are running Ansible from, and the OS you are managing, or say “N/A” for anything that is not platform-specific. --> ##### SUMMARY <!--- Explain the problem briefly --> module handle only 0,1,2,4,8,16 robocopy exit codes but if custom flags used exit codes may eq combined value: These can be combined, giving a few extra exit codes: 0×03 3 (2+1) Some files were copied. Additional files were present. No failure was encountered. 0×05 5 (4+1) Some files were copied. Some files were mismatched. No failure was encountered. 0×06 6 (4+2) Additional files and mismatched files exist. No files were copied and no failures were encountered. This means that the files already exist in the destination directory 0×07 7 (4+1+2) Files were copied, a file mismatch was present, and additional files were present. ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem. For new features, show how the feature would be used. --> <!--- Paste example playbooks or commands between quotes below --> ``` ``` <!--- You can also paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- What did you expect to happen when running the steps above? --> ##### ACTUAL RESULTS <!--- What actually happened? If possible run with high verbosity (-vvvv) --> <!--- Paste verbatim command output between quotes below --> ``` ```
non_comp
win robocopy module don t handle all posible exit codes issue type bug report component name win robocopy module ansible version configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific summary module handle only robocopy exit codes but if custom flags used exit codes may eq combined value these can be combined giving a few extra exit codes × some files were copied additional files were present no failure was encountered × some files were copied some files were mismatched no failure was encountered × additional files and mismatched files exist no files were copied and no failures were encountered this means that the files already exist in the destination directory × files were copied a file mismatch was present and additional files were present steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used expected results actual results
0
140,088
5,396,869,571
IssuesEvent
2017-02-27 13:08:08
Caleydo/ordino
https://api.github.com/repos/Caleydo/ordino
closed
Column filter icon still black after resetting filters of categorical column
bug low priority
By default, the column filter icons are white. If one sets a filter for a categorical column, this icon gets black indicating that a filter is active. If one resets the filter settings to the default (i.e., showing all categories including missing values), the icon should become white again indicating that no filter is active.
1.0
Column filter icon still black after resetting filters of categorical column - By default, the column filter icons are white. If one sets a filter for a categorical column, this icon gets black indicating that a filter is active. If one resets the filter settings to the default (i.e., showing all categories including missing values), the icon should become white again indicating that no filter is active.
non_comp
column filter icon still black after resetting filters of categorical column by default the column filter icons are white if one sets a filter for a categorical column this icon gets black indicating that a filter is active if one resets the filter settings to the default i e showing all categories including missing values the icon should become white again indicating that no filter is active
0
266,761
28,435,099,931
IssuesEvent
2023-04-15 07:50:41
emqx/nanomq
https://api.github.com/repos/emqx/nanomq
closed
potential memleak
security
**Describe the bug** 您好,我们在NanoMQ当前版本中还发现了一项内存泄露,以下为详细漏洞信息以供开发人员参考。 School of Cyber Science and Technology, Shandong University **Expected behavior** 如果在编译时启用 ASAN,NanoMQ 会崩溃并显示 ASAN 信息。 ![image](https://user-images.githubusercontent.com/44093631/232076656-b9f891f5-6a0f-4018-ab19-a35cec93e74d.png) **To Reproduce** 1. start nanomq with ./nanomq start 2. Send the packet:nc 127.0.0.1 1883 < ./leak.raw 3. NanoMQ crashes [leak1.zip](https://github.com/emqx/nanomq/files/11234045/leak1.zip) ** Environment Details ** - NanoMQ version:master branch version commit #8c54cd7 - Operating system and version:Ubuntu 20.04 - Compiler and language used:gcc 9.4.0 clang 10.0.0 - testing scenario
True
potential memleak - **Describe the bug** 您好,我们在NanoMQ当前版本中还发现了一项内存泄露,以下为详细漏洞信息以供开发人员参考。 School of Cyber Science and Technology, Shandong University **Expected behavior** 如果在编译时启用 ASAN,NanoMQ 会崩溃并显示 ASAN 信息。 ![image](https://user-images.githubusercontent.com/44093631/232076656-b9f891f5-6a0f-4018-ab19-a35cec93e74d.png) **To Reproduce** 1. start nanomq with ./nanomq start 2. Send the packet:nc 127.0.0.1 1883 < ./leak.raw 3. NanoMQ crashes [leak1.zip](https://github.com/emqx/nanomq/files/11234045/leak1.zip) ** Environment Details ** - NanoMQ version:master branch version commit #8c54cd7 - Operating system and version:Ubuntu 20.04 - Compiler and language used:gcc 9.4.0 clang 10.0.0 - testing scenario
non_comp
potential memleak describe the bug 您好,我们在nanomq当前版本中还发现了一项内存泄露,以下为详细漏洞信息以供开发人员参考。 school of cyber science and technology shandong university expected behavior 如果在编译时启用 asan,nanomq 会崩溃并显示 asan 信息。 to reproduce start nanomq with nanomq start send the packet:nc leak raw nanomq crashes environment details nanomq version:master branch version commit operating system and version:ubuntu compiler and language used:gcc clang testing scenario
0
3,185
6,104,152,967
IssuesEvent
2017-06-20 20:19:45
userfrosting/UserFrosting
https://api.github.com/repos/userfrosting/UserFrosting
opened
Bakery has trouble running `npm install` from the parent directory, in Windows
compatibility confirmed bug installer
Bakery uses the [`--prefix` flag](https://docs.npmjs.com/misc/config#prefix) to tell `npm` which directory to target for installing node dependencies. For whatever reason, this is working in *nix but not Windows: ``` > npm install npm ERR! addLocal Could not install D:\dev\userfrosting npm ERR! Windows_NT 6.1.7601 npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\ node_modules\\npm\\bin\\npm-cli.js" "install" "--prefix" "D:\\dev\\userfrosting/ build" npm ERR! node v6.11.0 npm ERR! npm v3.10.10 npm ERR! code EISDIR npm ERR! errno -4068 npm ERR! syscall read npm ERR! eisdir EISDIR: illegal operation on a directory, read npm ERR! eisdir This is most likely not a problem with npm itself npm ERR! eisdir and is related to npm not being able to find a package.json in npm ERR! eisdir a package you are trying to install. npm ERR! Please include the following file with any support request: npm ERR! D:\dev\userfrosting\npm-debug.log ``` `npm` docs don't seem to have any useful information. For now, the workaround is to just run `npm install` directly in the `build/` subdirectory.
True
Bakery has trouble running `npm install` from the parent directory, in Windows - Bakery uses the [`--prefix` flag](https://docs.npmjs.com/misc/config#prefix) to tell `npm` which directory to target for installing node dependencies. For whatever reason, this is working in *nix but not Windows: ``` > npm install npm ERR! addLocal Could not install D:\dev\userfrosting npm ERR! Windows_NT 6.1.7601 npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\ node_modules\\npm\\bin\\npm-cli.js" "install" "--prefix" "D:\\dev\\userfrosting/ build" npm ERR! node v6.11.0 npm ERR! npm v3.10.10 npm ERR! code EISDIR npm ERR! errno -4068 npm ERR! syscall read npm ERR! eisdir EISDIR: illegal operation on a directory, read npm ERR! eisdir This is most likely not a problem with npm itself npm ERR! eisdir and is related to npm not being able to find a package.json in npm ERR! eisdir a package you are trying to install. npm ERR! Please include the following file with any support request: npm ERR! D:\dev\userfrosting\npm-debug.log ``` `npm` docs don't seem to have any useful information. For now, the workaround is to just run `npm install` directly in the `build/` subdirectory.
comp
bakery has trouble running npm install from the parent directory in windows bakery uses the to tell npm which directory to target for installing node dependencies for whatever reason this is working in nix but not windows npm install npm err addlocal could not install d dev userfrosting npm err windows nt npm err argv c program files nodejs node exe c program files nodejs node modules npm bin npm cli js install prefix d dev userfrosting build npm err node npm err npm npm err code eisdir npm err errno npm err syscall read npm err eisdir eisdir illegal operation on a directory read npm err eisdir this is most likely not a problem with npm itself npm err eisdir and is related to npm not being able to find a package json in npm err eisdir a package you are trying to install npm err please include the following file with any support request npm err d dev userfrosting npm debug log npm docs don t seem to have any useful information for now the workaround is to just run npm install directly in the build subdirectory
1
3,067
5,967,711,305
IssuesEvent
2017-05-30 16:30:44
byuweb/byu-theme-components
https://api.github.com/repos/byuweb/byu-theme-components
closed
Site Title Not Resizing in mobile for polyfilled browsers
browser-compatibility
# One-Line Summary When you reduce the browser to a mobile resolution it doesn't apply the mobile font sizes. # Websites Affected All. (Example: http://2017-components-demo.byu.edu) *If this is a bug or styling issue, please list one or more URLs where we can see the issue.* # Issue Type *Is this (add an x in the boxes that apply)* - [X] A difference between the components and the [Official Specification](https://brand.byu.edu)? - [X] A bug, such as a Javascript error, or the UI not rendering properly on a page? - [X] Inconsistent appearance/behavior between browsers? - [X] An issue on mobile browsers? - [ ] A request for a new feature/enhancement? # Browsers Affected *Add an x in all the boxes that apply. Please mark desktop and mobile browsers separately.* **We support the last two versions of Chrome, Firefox, Safari, and Edge, plus Internet Explorer 11.** ## Desktop Browsers - [ ] Google Chrome - [X] Mozilla Firefox - [ ] Apple Safari - [X] Microsoft Edge - [X] Microsoft Internet Explorer 11 - [ ] Other (please specify) ## Mobile Browsers - [ ] Any browser on iOS - [ ] Chrome for Android - [ ] Firefox Mobile for Android - [ ] Other (please specify) # Web Site Platform *What is hosting your website?* - [ ] Drupal 7 - [ ] Drupal 8 - [ ] Wordpress - [X] Custom Site - [ ] Don't Know # Detailed Description I'm workin on a PR for this, I'm just logging it as an issue so we have a record. *Tell us all about your problem or feature proposal.* **If the issue is with styling, please include screenshots!**
True
Site Title Not Resizing in mobile for polyfilled browsers - # One-Line Summary When you reduce the browser to a mobile resolution it doesn't apply the mobile font sizes. # Websites Affected All. (Example: http://2017-components-demo.byu.edu) *If this is a bug or styling issue, please list one or more URLs where we can see the issue.* # Issue Type *Is this (add an x in the boxes that apply)* - [X] A difference between the components and the [Official Specification](https://brand.byu.edu)? - [X] A bug, such as a Javascript error, or the UI not rendering properly on a page? - [X] Inconsistent appearance/behavior between browsers? - [X] An issue on mobile browsers? - [ ] A request for a new feature/enhancement? # Browsers Affected *Add an x in all the boxes that apply. Please mark desktop and mobile browsers separately.* **We support the last two versions of Chrome, Firefox, Safari, and Edge, plus Internet Explorer 11.** ## Desktop Browsers - [ ] Google Chrome - [X] Mozilla Firefox - [ ] Apple Safari - [X] Microsoft Edge - [X] Microsoft Internet Explorer 11 - [ ] Other (please specify) ## Mobile Browsers - [ ] Any browser on iOS - [ ] Chrome for Android - [ ] Firefox Mobile for Android - [ ] Other (please specify) # Web Site Platform *What is hosting your website?* - [ ] Drupal 7 - [ ] Drupal 8 - [ ] Wordpress - [X] Custom Site - [ ] Don't Know # Detailed Description I'm workin on a PR for this, I'm just logging it as an issue so we have a record. *Tell us all about your problem or feature proposal.* **If the issue is with styling, please include screenshots!**
comp
site title not resizing in mobile for polyfilled browsers one line summary when you reduce the browser to a mobile resolution it doesn t apply the mobile font sizes websites affected all example if this is a bug or styling issue please list one or more urls where we can see the issue issue type is this add an x in the boxes that apply a difference between the components and the a bug such as a javascript error or the ui not rendering properly on a page inconsistent appearance behavior between browsers an issue on mobile browsers a request for a new feature enhancement browsers affected add an x in all the boxes that apply please mark desktop and mobile browsers separately we support the last two versions of chrome firefox safari and edge plus internet explorer desktop browsers google chrome mozilla firefox apple safari microsoft edge microsoft internet explorer other please specify mobile browsers any browser on ios chrome for android firefox mobile for android other please specify web site platform what is hosting your website drupal drupal wordpress custom site don t know detailed description i m workin on a pr for this i m just logging it as an issue so we have a record tell us all about your problem or feature proposal if the issue is with styling please include screenshots
1
16,944
12,152,151,790
IssuesEvent
2020-04-24 21:31:39
BCDevOps/developer-experience
https://api.github.com/repos/BCDevOps/developer-experience
closed
Test CNS Volume Expansion in LAB
Infrastructure closed low priority
https://trello.com/c/6HPVa9Jv/57-test-cns-volume-expansion-in-lab https://access.redhat.com/documentation/en-us/red_hat_openshift_container_storage/3.11/html-single/operations_guide/#sect_expanding_pv https://docs.openshift.com/container-platform/3.11/dev_guide/expanding_persistent_volumes.html#expanding_glusterfs_pvc Looks like this GA now. Lets test it in LAB and see if/how it works.
1.0
Test CNS Volume Expansion in LAB - https://trello.com/c/6HPVa9Jv/57-test-cns-volume-expansion-in-lab https://access.redhat.com/documentation/en-us/red_hat_openshift_container_storage/3.11/html-single/operations_guide/#sect_expanding_pv https://docs.openshift.com/container-platform/3.11/dev_guide/expanding_persistent_volumes.html#expanding_glusterfs_pvc Looks like this GA now. Lets test it in LAB and see if/how it works.
non_comp
test cns volume expansion in lab looks like this ga now lets test it in lab and see if how it works
0
18,385
25,442,023,048
IssuesEvent
2022-11-24 00:00:09
Automattic/woocommerce-subscriptions-core
https://api.github.com/repos/Automattic/woocommerce-subscriptions-core
closed
[HPOS] New manual renewal order is not linked to subscription when DataSyncing and HPOS is enabled
type: bug compatibility: HPOS
## Describe the bug <!-- A clear and concise description of what the bug is. Please be as descriptive as possible, and include screenshots to illustrate. --> When HPOS is enabled and data syncing is turned on (i.e. backfilling to post tables), processing a manual renewal order doesn't properly save the related orders cache on the order object. This is similar to #294 except this issue is for the Related Orders metadata not being saved on the Order. In our `WCS_Related_Order_Store_CPT` class we use the following code to save our relationship meta on an order: ``` $order->add_meta_data( '_subscription_renewal', $subscription_id, false ); $order->save_meta_data(); ``` Calling `$order->save_meta_data();` doesn't backfill the metadata to the posts tables, resulting in the wp-postsmeta table being having out-of-date meta. When the posts and order metadata is not in sync, WC Core compares the latest modified dates and migrates/overrides the values from one object to the other to ensure the metadata is the same. This results in our renewal order meta being cleared. ### What is the impact of this bug? The main issue here is that the `'_subscription_{relationship_type}'` meta isn't being saved on the manual renewal order. This impacts store managers and customers in a few ways: - When viewing the order on the My Account page, the Related Subscriptions table isn't loaded. - Setting the status of the on-hold renewal order to processing or completed wasn't activating the subscription - Renewal order doesn't have a related order tables on Edit Order admin page. ### Why does this only affect Manual Renewals? The manual renewal process doesn't do any payment processing so after the new pending order is created it's not touched again. As for automatic payment renewals, the order is passed onto the payment gateway which adds its own meta and calls `$order->save()`, this then triggers the backfilling of all order meta to posts table. ## To Reproduce <!-- Describe the steps to reproduce the behavior. --> 1. Turn on HPOS and turn on syncing data between tables 2. Set the authoritative data store to COT 3. In **WooCommerce > Settings > Subscriptions**, turn on the "Accept Manual Renewals" setting 4. Purchase a subscription product with BACs gateway 5. Activate the subscription by setting the parent order status to processing or completed 6. Go **WP Admin > Tools > Scheduled Actions** 7. Search for the new subscription ID 8. Under the `woocommerce_scheduled_subscription_payment` action press "Run" 9. Navigate to **My Account > Orders**, view your new renewal order 10. Scroll down and notice no Related Subscriptions table is shown :x: 11. Mark the order has processing/completed status and notice the related subscription is still on-hold :x: ![image](https://user-images.githubusercontent.com/2275145/203484178-015b6312-b196-48ec-a79c-128fb2f19cc3.png) ### Expected behavior <!-- A clear and concise description of what you expected to happen. --> It's expected that the Related Subscriptions table has the linked subscription: ![image](https://user-images.githubusercontent.com/2275145/203484352-c50bfe89-8849-4f64-8d05-2f178936e8ab.png) ## Product impact <!-- What products does this issue affect? --> - [ ] Does this issue affect WooCommerce Subscriptions? yes/no/tbc, add issue ref - [ ] Does this issue affect WooCommerce Payments? yes/no/tbc, add issue ref ## Additional context <!-- Any additional context or details you think might be helpful. --> <!-- Ticket numbers/links, plugin versions, system statuses etc. --> <!-- Collapse lengthy logs or status reports with a <details> tag --> <!-- <details> ``` ``` </details> -->
True
[HPOS] New manual renewal order is not linked to subscription when DataSyncing and HPOS is enabled - ## Describe the bug <!-- A clear and concise description of what the bug is. Please be as descriptive as possible, and include screenshots to illustrate. --> When HPOS is enabled and data syncing is turned on (i.e. backfilling to post tables), processing a manual renewal order doesn't properly save the related orders cache on the order object. This is similar to #294 except this issue is for the Related Orders metadata not being saved on the Order. In our `WCS_Related_Order_Store_CPT` class we use the following code to save our relationship meta on an order: ``` $order->add_meta_data( '_subscription_renewal', $subscription_id, false ); $order->save_meta_data(); ``` Calling `$order->save_meta_data();` doesn't backfill the metadata to the posts tables, resulting in the wp-postsmeta table being having out-of-date meta. When the posts and order metadata is not in sync, WC Core compares the latest modified dates and migrates/overrides the values from one object to the other to ensure the metadata is the same. This results in our renewal order meta being cleared. ### What is the impact of this bug? The main issue here is that the `'_subscription_{relationship_type}'` meta isn't being saved on the manual renewal order. This impacts store managers and customers in a few ways: - When viewing the order on the My Account page, the Related Subscriptions table isn't loaded. - Setting the status of the on-hold renewal order to processing or completed wasn't activating the subscription - Renewal order doesn't have a related order tables on Edit Order admin page. ### Why does this only affect Manual Renewals? The manual renewal process doesn't do any payment processing so after the new pending order is created it's not touched again. As for automatic payment renewals, the order is passed onto the payment gateway which adds its own meta and calls `$order->save()`, this then triggers the backfilling of all order meta to posts table. ## To Reproduce <!-- Describe the steps to reproduce the behavior. --> 1. Turn on HPOS and turn on syncing data between tables 2. Set the authoritative data store to COT 3. In **WooCommerce > Settings > Subscriptions**, turn on the "Accept Manual Renewals" setting 4. Purchase a subscription product with BACs gateway 5. Activate the subscription by setting the parent order status to processing or completed 6. Go **WP Admin > Tools > Scheduled Actions** 7. Search for the new subscription ID 8. Under the `woocommerce_scheduled_subscription_payment` action press "Run" 9. Navigate to **My Account > Orders**, view your new renewal order 10. Scroll down and notice no Related Subscriptions table is shown :x: 11. Mark the order has processing/completed status and notice the related subscription is still on-hold :x: ![image](https://user-images.githubusercontent.com/2275145/203484178-015b6312-b196-48ec-a79c-128fb2f19cc3.png) ### Expected behavior <!-- A clear and concise description of what you expected to happen. --> It's expected that the Related Subscriptions table has the linked subscription: ![image](https://user-images.githubusercontent.com/2275145/203484352-c50bfe89-8849-4f64-8d05-2f178936e8ab.png) ## Product impact <!-- What products does this issue affect? --> - [ ] Does this issue affect WooCommerce Subscriptions? yes/no/tbc, add issue ref - [ ] Does this issue affect WooCommerce Payments? yes/no/tbc, add issue ref ## Additional context <!-- Any additional context or details you think might be helpful. --> <!-- Ticket numbers/links, plugin versions, system statuses etc. --> <!-- Collapse lengthy logs or status reports with a <details> tag --> <!-- <details> ``` ``` </details> -->
comp
new manual renewal order is not linked to subscription when datasyncing and hpos is enabled describe the bug when hpos is enabled and data syncing is turned on i e backfilling to post tables processing a manual renewal order doesn t properly save the related orders cache on the order object this is similar to except this issue is for the related orders metadata not being saved on the order in our wcs related order store cpt class we use the following code to save our relationship meta on an order order add meta data subscription renewal subscription id false order save meta data calling order save meta data doesn t backfill the metadata to the posts tables resulting in the wp postsmeta table being having out of date meta when the posts and order metadata is not in sync wc core compares the latest modified dates and migrates overrides the values from one object to the other to ensure the metadata is the same this results in our renewal order meta being cleared what is the impact of this bug the main issue here is that the subscription relationship type meta isn t being saved on the manual renewal order this impacts store managers and customers in a few ways when viewing the order on the my account page the related subscriptions table isn t loaded setting the status of the on hold renewal order to processing or completed wasn t activating the subscription renewal order doesn t have a related order tables on edit order admin page why does this only affect manual renewals the manual renewal process doesn t do any payment processing so after the new pending order is created it s not touched again as for automatic payment renewals the order is passed onto the payment gateway which adds its own meta and calls order save this then triggers the backfilling of all order meta to posts table to reproduce turn on hpos and turn on syncing data between tables set the authoritative data store to cot in woocommerce settings subscriptions turn on the accept manual renewals setting purchase a subscription product with bacs gateway activate the subscription by setting the parent order status to processing or completed go wp admin tools scheduled actions search for the new subscription id under the woocommerce scheduled subscription payment action press run navigate to my account orders view your new renewal order scroll down and notice no related subscriptions table is shown x mark the order has processing completed status and notice the related subscription is still on hold x expected behavior it s expected that the related subscriptions table has the linked subscription product impact does this issue affect woocommerce subscriptions yes no tbc add issue ref does this issue affect woocommerce payments yes no tbc add issue ref additional context tag
1
5,694
8,160,870,925
IssuesEvent
2018-08-24 04:12:02
PrinceOfAmber/Storage-Network
https://api.github.com/repos/PrinceOfAmber/Storage-Network
closed
Dupe bug with mod interaction
compatibility
One of the mods, [Factory Tech](https://minecraft.curseforge.com/projects/factory-tech?gameCategorySlug=mc-mods&projectID=278822) got Autocrafting unit. You can put items in, but can't pull out using various hoppers, AE busses or itemducts. But your Storage link can pull items, but actually it dupes them... https://i.gyazo.com/891c2087a9d2bf0ac230125598a0be51.gif I will report same thing to developer of Factory Tech. Maybe he will use other method of "item extraction" lock (I'm not a coder, so i don't know how it's done)
True
Dupe bug with mod interaction - One of the mods, [Factory Tech](https://minecraft.curseforge.com/projects/factory-tech?gameCategorySlug=mc-mods&projectID=278822) got Autocrafting unit. You can put items in, but can't pull out using various hoppers, AE busses or itemducts. But your Storage link can pull items, but actually it dupes them... https://i.gyazo.com/891c2087a9d2bf0ac230125598a0be51.gif I will report same thing to developer of Factory Tech. Maybe he will use other method of "item extraction" lock (I'm not a coder, so i don't know how it's done)
comp
dupe bug with mod interaction one of the mods got autocrafting unit you can put items in but can t pull out using various hoppers ae busses or itemducts but your storage link can pull items but actually it dupes them i will report same thing to developer of factory tech maybe he will use other method of item extraction lock i m not a coder so i don t know how it s done
1
235,844
25,962,070,423
IssuesEvent
2022-12-19 01:03:15
michaeldotson/movie-app
https://api.github.com/repos/michaeldotson/movie-app
opened
CVE-2022-23517 (High) detected in rails-html-sanitizer-1.0.4.gem
security vulnerability
## CVE-2022-23517 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>rails-html-sanitizer-1.0.4.gem</b></p></summary> <p>HTML sanitization for Rails applications</p> <p>Library home page: <a href="https://rubygems.org/gems/rails-html-sanitizer-1.0.4.gem">https://rubygems.org/gems/rails-html-sanitizer-1.0.4.gem</a></p> <p>Path to dependency file: /movie-app/Gemfile.lock</p> <p>Path to vulnerable library: /var/lib/gems/2.3.0/cache/rails-html-sanitizer-1.0.4.gem</p> <p> Dependency Hierarchy: - web-console-3.7.0.gem (Root Library) - actionview-5.2.2.gem - :x: **rails-html-sanitizer-1.0.4.gem** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> rails-html-sanitizer is responsible for sanitizing HTML fragments in Rails applications. Certain configurations of rails-html-sanitizer < 1.4.4 use an inefficient regular expression that is susceptible to excessive backtracking when attempting to sanitize certain SVG attributes. This may lead to a denial of service through CPU resource consumption. This issue has been patched in version 1.4.4. <p>Publish Date: 2022-12-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23517>CVE-2022-23517</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/rails/rails-html-sanitizer/security/advisories/GHSA-5x79-w82f-gw8w">https://github.com/rails/rails-html-sanitizer/security/advisories/GHSA-5x79-w82f-gw8w</a></p> <p>Release Date: 2022-12-14</p> <p>Fix Resolution: rails-html-sanitizer - 1.4.4</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-23517 (High) detected in rails-html-sanitizer-1.0.4.gem - ## CVE-2022-23517 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>rails-html-sanitizer-1.0.4.gem</b></p></summary> <p>HTML sanitization for Rails applications</p> <p>Library home page: <a href="https://rubygems.org/gems/rails-html-sanitizer-1.0.4.gem">https://rubygems.org/gems/rails-html-sanitizer-1.0.4.gem</a></p> <p>Path to dependency file: /movie-app/Gemfile.lock</p> <p>Path to vulnerable library: /var/lib/gems/2.3.0/cache/rails-html-sanitizer-1.0.4.gem</p> <p> Dependency Hierarchy: - web-console-3.7.0.gem (Root Library) - actionview-5.2.2.gem - :x: **rails-html-sanitizer-1.0.4.gem** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> rails-html-sanitizer is responsible for sanitizing HTML fragments in Rails applications. Certain configurations of rails-html-sanitizer < 1.4.4 use an inefficient regular expression that is susceptible to excessive backtracking when attempting to sanitize certain SVG attributes. This may lead to a denial of service through CPU resource consumption. This issue has been patched in version 1.4.4. <p>Publish Date: 2022-12-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23517>CVE-2022-23517</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/rails/rails-html-sanitizer/security/advisories/GHSA-5x79-w82f-gw8w">https://github.com/rails/rails-html-sanitizer/security/advisories/GHSA-5x79-w82f-gw8w</a></p> <p>Release Date: 2022-12-14</p> <p>Fix Resolution: rails-html-sanitizer - 1.4.4</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_comp
cve high detected in rails html sanitizer gem cve high severity vulnerability vulnerable library rails html sanitizer gem html sanitization for rails applications library home page a href path to dependency file movie app gemfile lock path to vulnerable library var lib gems cache rails html sanitizer gem dependency hierarchy web console gem root library actionview gem x rails html sanitizer gem vulnerable library vulnerability details rails html sanitizer is responsible for sanitizing html fragments in rails applications certain configurations of rails html sanitizer use an inefficient regular expression that is susceptible to excessive backtracking when attempting to sanitize certain svg attributes this may lead to a denial of service through cpu resource consumption this issue has been patched in version publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rails html sanitizer step up your open source security game with mend
0
1,802
4,369,847,799
IssuesEvent
2016-08-04 02:26:04
medic/medic-webapp
https://api.github.com/repos/medic/medic-webapp
closed
Schedule not assigned to registration form
0 - Backlog Bug Reports v0.4 Compatibility v0.4 features in 2.x
The associated scheduled was not attached to a registration form that was valid and properly parsed. _Note, this is running .4 config on a 2.6 instance._ <!--- @huboard:{"order":1847.25} -->
True
Schedule not assigned to registration form - The associated scheduled was not attached to a registration form that was valid and properly parsed. _Note, this is running .4 config on a 2.6 instance._ <!--- @huboard:{"order":1847.25} -->
comp
schedule not assigned to registration form the associated scheduled was not attached to a registration form that was valid and properly parsed note this is running config on a instance huboard order
1
785,780
27,624,913,133
IssuesEvent
2023-03-10 05:31:50
curiouslearning/FeedTheMonsterJS
https://api.github.com/repos/curiouslearning/FeedTheMonsterJS
closed
Create Bug Report issue template in Zenhub
Medium Priority
It would be super helpful to create a Bug Report issue template in Zenhub that anyone can report issues with enough details to be useful in troubleshooting for the Feed the Monster project.
1.0
Create Bug Report issue template in Zenhub - It would be super helpful to create a Bug Report issue template in Zenhub that anyone can report issues with enough details to be useful in troubleshooting for the Feed the Monster project.
non_comp
create bug report issue template in zenhub it would be super helpful to create a bug report issue template in zenhub that anyone can report issues with enough details to be useful in troubleshooting for the feed the monster project
0
7,670
9,922,750,409
IssuesEvent
2019-07-01 04:22:05
invoiceninja/invoiceninja
https://api.github.com/repos/invoiceninja/invoiceninja
closed
method call error on android
compatibility
I'm having a "NoSuchMethodError" on the new Android app (with the round icon). ![Screenshot_20190629-163224](https://user-images.githubusercontent.com/105581/60385707-67dac400-9a8c-11e9-8b0f-da9e2aaca1eb.png) I'm self hosting master branch as of today.
True
method call error on android - I'm having a "NoSuchMethodError" on the new Android app (with the round icon). ![Screenshot_20190629-163224](https://user-images.githubusercontent.com/105581/60385707-67dac400-9a8c-11e9-8b0f-da9e2aaca1eb.png) I'm self hosting master branch as of today.
comp
method call error on android i m having a nosuchmethoderror on the new android app with the round icon i m self hosting master branch as of today
1
169,358
26,786,708,591
IssuesEvent
2023-02-01 03:49:08
briangormanly/agora
https://api.github.com/repos/briangormanly/agora
opened
Topics should be able to be created just by clicking in a "new tab" or pressing a +
enhancement help wanted UI Design Topics UI / Front end
Currently to create a topic a user has to click the "+" on the right of the workspace/topic view then select "Create a new Topic" there is also an option to "open an existing topic" that does not do anything. (While I think it was intended to find topics in other workspaces that you might want to associate with the current workspace, I don't think this is an implementation of that use case that makes sense). So: 1. Remove the options for topics from the right "+" (for now leave the resource options, but I will be creating a separate ticket to have them done differently as well. 2. The "open an existing topic" option will just go away for now. 3. If you put your mouse anywhere in the area to the right of existing tabs a "phantom" tab should appear under the mouse and if you click a topic will be created and you will be editing the topic name by creating the name of the tab. 4. Also there should be "+" option just to the right of the last existing topic tab and clicking on it will have the same effect as #3 above
1.0
Topics should be able to be created just by clicking in a "new tab" or pressing a + - Currently to create a topic a user has to click the "+" on the right of the workspace/topic view then select "Create a new Topic" there is also an option to "open an existing topic" that does not do anything. (While I think it was intended to find topics in other workspaces that you might want to associate with the current workspace, I don't think this is an implementation of that use case that makes sense). So: 1. Remove the options for topics from the right "+" (for now leave the resource options, but I will be creating a separate ticket to have them done differently as well. 2. The "open an existing topic" option will just go away for now. 3. If you put your mouse anywhere in the area to the right of existing tabs a "phantom" tab should appear under the mouse and if you click a topic will be created and you will be editing the topic name by creating the name of the tab. 4. Also there should be "+" option just to the right of the last existing topic tab and clicking on it will have the same effect as #3 above
non_comp
topics should be able to be created just by clicking in a new tab or pressing a currently to create a topic a user has to click the on the right of the workspace topic view then select create a new topic there is also an option to open an existing topic that does not do anything while i think it was intended to find topics in other workspaces that you might want to associate with the current workspace i don t think this is an implementation of that use case that makes sense so remove the options for topics from the right for now leave the resource options but i will be creating a separate ticket to have them done differently as well the open an existing topic option will just go away for now if you put your mouse anywhere in the area to the right of existing tabs a phantom tab should appear under the mouse and if you click a topic will be created and you will be editing the topic name by creating the name of the tab also there should be option just to the right of the last existing topic tab and clicking on it will have the same effect as above
0
177,457
14,629,232,211
IssuesEvent
2020-12-23 15:30:17
eclipse-emfcloud/theia-tree-editor
https://api.github.com/repos/eclipse-emfcloud/theia-tree-editor
closed
Review documentation
documentation
- Understandability - Correct description of all necessary services to implement and register - Import of stylesheets - Potentially more
1.0
Review documentation - - Understandability - Correct description of all necessary services to implement and register - Import of stylesheets - Potentially more
non_comp
review documentation understandability correct description of all necessary services to implement and register import of stylesheets potentially more
0
530,859
15,437,376,832
IssuesEvent
2021-03-07 16:28:55
nasaku898/soen390-team08
https://api.github.com/repos/nasaku898/soen390-team08
opened
[bug] User can access order and inventory page without logging in and user not redirected when inactive
bug: high priority
When the user is inactive, he is redirected to the login page. However, the user can still access the order and inventory page from the login page. This bug must be fixed. Additionally, once the user is in the order page, and he is inactive, the user is not redirected to the home page.
1.0
[bug] User can access order and inventory page without logging in and user not redirected when inactive - When the user is inactive, he is redirected to the login page. However, the user can still access the order and inventory page from the login page. This bug must be fixed. Additionally, once the user is in the order page, and he is inactive, the user is not redirected to the home page.
non_comp
user can access order and inventory page without logging in and user not redirected when inactive when the user is inactive he is redirected to the login page however the user can still access the order and inventory page from the login page this bug must be fixed additionally once the user is in the order page and he is inactive the user is not redirected to the home page
0