Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
957
labels
stringlengths
4
795
body
stringlengths
1
259k
index
stringclasses
12 values
text_combine
stringlengths
96
259k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
787,107
27,706,411,617
IssuesEvent
2023-03-14 11:30:43
input-output-hk/cardano-node
https://api.github.com/repos/input-output-hk/cardano-node
closed
[FR] - CLI - Mechanism to check delegation to a pool.
enhancement priority medium cli revision
Pool operators would like to know what delegations have been made to their pools. This could be explorer/db-sync functionality? The fraction of total delegation is already available.
1.0
[FR] - CLI - Mechanism to check delegation to a pool. - Pool operators would like to know what delegations have been made to their pools. This could be explorer/db-sync functionality? The fraction of total delegation is already available.
priority
cli mechanism to check delegation to a pool pool operators would like to know what delegations have been made to their pools this could be explorer db sync functionality the fraction of total delegation is already available
1
452,097
13,046,037,345
IssuesEvent
2020-07-29 08:20:14
enso-org/ide
https://api.github.com/repos/enso-org/ide
closed
After rescaling the scene is not centered (`--debug-scene shapes`)
Category: GUI Priority: Medium Type: Bug
<!-- Please ensure that you are using the latest version of BaseGL before reporting the bug! It may have been fixed since. --> ### General Summary <!-- - Please include a high-level description of your bug here. --> After rescaling the Enso Studio scene it should be centered. Right now for `--debug-scene shapes` option it is not working. Text editor is working properly. ### Steps to Reproduce <!-- Please list the reproduction steps for your bug. --> Open Enso Studio with `debug-scene shapes` option Rescale application window ### Expected Result <!-- - A description of the results you expected from the reproduction steps. --> The example shape is in center ### Actual Result <!-- - A description of what actually happens when you perform these steps. - Please include any error output if relevant. --> ![obraz](https://user-images.githubusercontent.com/12892578/76199991-2260c000-61f1-11ea-9238-4175e022eef8.png) ### Luna Version <!-- - Please include the version of BaseGL you are using here. -->
1.0
After rescaling the scene is not centered (`--debug-scene shapes`) - <!-- Please ensure that you are using the latest version of BaseGL before reporting the bug! It may have been fixed since. --> ### General Summary <!-- - Please include a high-level description of your bug here. --> After rescaling the Enso Studio scene it should be centered. Right now for `--debug-scene shapes` option it is not working. Text editor is working properly. ### Steps to Reproduce <!-- Please list the reproduction steps for your bug. --> Open Enso Studio with `debug-scene shapes` option Rescale application window ### Expected Result <!-- - A description of the results you expected from the reproduction steps. --> The example shape is in center ### Actual Result <!-- - A description of what actually happens when you perform these steps. - Please include any error output if relevant. --> ![obraz](https://user-images.githubusercontent.com/12892578/76199991-2260c000-61f1-11ea-9238-4175e022eef8.png) ### Luna Version <!-- - Please include the version of BaseGL you are using here. -->
priority
after rescaling the scene is not centered debug scene shapes please ensure that you are using the latest version of basegl before reporting the bug it may have been fixed since general summary please include a high level description of your bug here after rescaling the enso studio scene it should be centered right now for debug scene shapes option it is not working text editor is working properly steps to reproduce please list the reproduction steps for your bug open enso studio with debug scene shapes option rescale application window expected result a description of the results you expected from the reproduction steps the example shape is in center actual result a description of what actually happens when you perform these steps please include any error output if relevant luna version please include the version of basegl you are using here
1
599,938
18,286,604,510
IssuesEvent
2021-10-05 11:00:30
AY2122S1-CS2103T-F11-2/tp
https://api.github.com/repos/AY2122S1-CS2103T-F11-2/tp
closed
As a recruiter, I can find applicants by their employment type
type.Story priority.Medium
so that I can filter out applicants with the desired employment type.
1.0
As a recruiter, I can find applicants by their employment type - so that I can filter out applicants with the desired employment type.
priority
as a recruiter i can find applicants by their employment type so that i can filter out applicants with the desired employment type
1
333,130
10,116,061,969
IssuesEvent
2019-07-31 00:11:47
joonaspaakko/ScriptUI-Dialog-Builder-Joonas
https://api.github.com/repos/joonaspaakko/ScriptUI-Dialog-Builder-Joonas
closed
CEP export clipboard export fails sometimes
Priority: Medium bug
It seems the clipboard export button fails sometimes when the CEP export is on. Sometimes it simply fails, other times it freezes the page. The `Alt+E` shortcut seems to work just fine. > That said, All of these export methods could use some sort of "things are happening" indicator. While the `Alt+E` shortcut seems to work consistently, it still seems to take a good while for the export to happen.
1.0
CEP export clipboard export fails sometimes - It seems the clipboard export button fails sometimes when the CEP export is on. Sometimes it simply fails, other times it freezes the page. The `Alt+E` shortcut seems to work just fine. > That said, All of these export methods could use some sort of "things are happening" indicator. While the `Alt+E` shortcut seems to work consistently, it still seems to take a good while for the export to happen.
priority
cep export clipboard export fails sometimes it seems the clipboard export button fails sometimes when the cep export is on sometimes it simply fails other times it freezes the page the alt e shortcut seems to work just fine that said all of these export methods could use some sort of things are happening indicator while the alt e shortcut seems to work consistently it still seems to take a good while for the export to happen
1
796,686
28,124,085,096
IssuesEvent
2023-03-31 16:11:16
decline-cookies/anvil-unity-dots
https://api.github.com/repos/decline-cookies/anvil-unity-dots
opened
EntitySpawnSystem - Devise a way to have definitions spawn extra entities by archetype
effort-high priority-medium type-feature
There is no efficient way to spawn multiple entities from a single `IEntitySpawnDefinition`. This is common practice for entities that generate other entities as a side effect, own proxy entities, or who's components have been split up for performance reasons. The solution for this may not add to `IEntitySpawnDefinition` but instead create another type that wraps/groups many definitions to a higher concept actor/instance. For now, a workaround has been implemented as part of (#TODO) that allows a definition to be created within the `PopulateOnEntity` method of another definition. This workaround gets the job done but isn't as efficient as instantiating from archtype. Maybe the proper solution is to provide a mechanism to fetch archetypes for a given definition as needed. That's really the only piece missing here. If this is the direction we take consider whether all definitions should be instantiated through the `IEntitySpawnDefinitionExtension.CreateAndPopulate<T>()` method.
1.0
EntitySpawnSystem - Devise a way to have definitions spawn extra entities by archetype - There is no efficient way to spawn multiple entities from a single `IEntitySpawnDefinition`. This is common practice for entities that generate other entities as a side effect, own proxy entities, or who's components have been split up for performance reasons. The solution for this may not add to `IEntitySpawnDefinition` but instead create another type that wraps/groups many definitions to a higher concept actor/instance. For now, a workaround has been implemented as part of (#TODO) that allows a definition to be created within the `PopulateOnEntity` method of another definition. This workaround gets the job done but isn't as efficient as instantiating from archtype. Maybe the proper solution is to provide a mechanism to fetch archetypes for a given definition as needed. That's really the only piece missing here. If this is the direction we take consider whether all definitions should be instantiated through the `IEntitySpawnDefinitionExtension.CreateAndPopulate<T>()` method.
priority
entityspawnsystem devise a way to have definitions spawn extra entities by archetype there is no efficient way to spawn multiple entities from a single ientityspawndefinition this is common practice for entities that generate other entities as a side effect own proxy entities or who s components have been split up for performance reasons the solution for this may not add to ientityspawndefinition but instead create another type that wraps groups many definitions to a higher concept actor instance for now a workaround has been implemented as part of todo that allows a definition to be created within the populateonentity method of another definition this workaround gets the job done but isn t as efficient as instantiating from archtype maybe the proper solution is to provide a mechanism to fetch archetypes for a given definition as needed that s really the only piece missing here if this is the direction we take consider whether all definitions should be instantiated through the ientityspawndefinitionextension createandpopulate method
1
22,175
2,645,721,233
IssuesEvent
2015-03-13 01:29:37
CorsixTH/CorsixTH
https://api.github.com/repos/CorsixTH/CorsixTH
closed
Graphics freeze while game continues to play
bug imported Priority-Medium
_From [plugnp...@gmail.com](https://code.google.com/u/112462140463187718406/) on March 08, 2012 16:02:21_ I'm experiencing an intermittent problem that's best described by the graphics freeze, mouse pointer too, but the game continues to play. Also the sounds keep playing. Then after a while (not a constant time interval) the graphics move again, mouse pointer responds too, but only for half a second, then it freezes again. It won't come out of this loop, so eventually I have to close the game and restart. I've had this three times now and there's no common factor I can point to yet. At one point I was repaying a loan, another time I was putting a bench down. I'm running R1494 on Windows XP. _Original issue: http://code.google.com/p/corsix-th/issues/detail?id=1161_
1.0
Graphics freeze while game continues to play - _From [plugnp...@gmail.com](https://code.google.com/u/112462140463187718406/) on March 08, 2012 16:02:21_ I'm experiencing an intermittent problem that's best described by the graphics freeze, mouse pointer too, but the game continues to play. Also the sounds keep playing. Then after a while (not a constant time interval) the graphics move again, mouse pointer responds too, but only for half a second, then it freezes again. It won't come out of this loop, so eventually I have to close the game and restart. I've had this three times now and there's no common factor I can point to yet. At one point I was repaying a loan, another time I was putting a bench down. I'm running R1494 on Windows XP. _Original issue: http://code.google.com/p/corsix-th/issues/detail?id=1161_
priority
graphics freeze while game continues to play from on march i m experiencing an intermittent problem that s best described by the graphics freeze mouse pointer too but the game continues to play also the sounds keep playing then after a while not a constant time interval the graphics move again mouse pointer responds too but only for half a second then it freezes again it won t come out of this loop so eventually i have to close the game and restart i ve had this three times now and there s no common factor i can point to yet at one point i was repaying a loan another time i was putting a bench down i m running on windows xp original issue
1
830,775
32,023,520,519
IssuesEvent
2023-09-22 07:09:08
oceanbase/odc
https://api.github.com/repos/oceanbase/odc
closed
[Bug]: Manually increase desensitization columns Some added columns are not grayed out
type-bug priority-medium
### ODC version 4.2.0 ### OB version mysql 4.1.0 ### What happened? Temporarily found that bit, time_x and other time types, enum, and set types are not grayed out, so they can be selected to report prompts ![image](https://github.com/oceanbase/odc/assets/141202865/24585c37-13a0-4246-b666-80aae8638206) ### What did you expect to happen? Added selections will be grayed out ### How can we reproduce it (as minimally and precisely as possible)? Add desensitization column manually ### Anything else we need to know? _No response_ ### Cloud _No response_
1.0
[Bug]: Manually increase desensitization columns Some added columns are not grayed out - ### ODC version 4.2.0 ### OB version mysql 4.1.0 ### What happened? Temporarily found that bit, time_x and other time types, enum, and set types are not grayed out, so they can be selected to report prompts ![image](https://github.com/oceanbase/odc/assets/141202865/24585c37-13a0-4246-b666-80aae8638206) ### What did you expect to happen? Added selections will be grayed out ### How can we reproduce it (as minimally and precisely as possible)? Add desensitization column manually ### Anything else we need to know? _No response_ ### Cloud _No response_
priority
manually increase desensitization columns some added columns are not grayed out odc version ob version mysql what happened temporarily found that bit time x and other time types enum and set types are not grayed out so they can be selected to report prompts what did you expect to happen added selections will be grayed out how can we reproduce it as minimally and precisely as possible add desensitization column manually anything else we need to know no response cloud no response
1
605,637
18,738,171,379
IssuesEvent
2021-11-04 10:20:47
stax76/mpv.net
https://api.github.com/repos/stax76/mpv.net
closed
Where can I get `mpvnet.com` for x86?
question priority medium
As manual said: > mpvnet.exe is platform agnostic, users that need x86 have to replace 3 native tools: > mpv-1.dll > MediaInfo.dll > mpvnet.com So I want to kown where can I get `mpvnet.com` for x86.
1.0
Where can I get `mpvnet.com` for x86? - As manual said: > mpvnet.exe is platform agnostic, users that need x86 have to replace 3 native tools: > mpv-1.dll > MediaInfo.dll > mpvnet.com So I want to kown where can I get `mpvnet.com` for x86.
priority
where can i get mpvnet com for as manual said mpvnet exe is platform agnostic users that need have to replace native tools mpv dll mediainfo dll mpvnet com so i want to kown where can i get mpvnet com for
1
731,114
25,202,669,476
IssuesEvent
2022-11-13 09:50:23
gruenes-brett/webseite
https://api.github.com/repos/gruenes-brett/webseite
closed
Marking events as cancelled
Medium priority
It should be possible to mark events as cancelled. They should still be shown on the website with a well visible note.
1.0
Marking events as cancelled - It should be possible to mark events as cancelled. They should still be shown on the website with a well visible note.
priority
marking events as cancelled it should be possible to mark events as cancelled they should still be shown on the website with a well visible note
1
89,770
3,800,009,951
IssuesEvent
2016-03-23 17:40:46
cs2103jan2016-t16-3j/main
https://api.github.com/repos/cs2103jan2016-t16-3j/main
closed
(User Story) Arranging/Sorting
priority.medium type.story
As a user, I can arrange my tasks either by due dates, category or priorities so that I know what needs to be done first.
1.0
(User Story) Arranging/Sorting - As a user, I can arrange my tasks either by due dates, category or priorities so that I know what needs to be done first.
priority
user story arranging sorting as a user i can arrange my tasks either by due dates category or priorities so that i know what needs to be done first
1
77,129
3,506,263,836
IssuesEvent
2016-01-08 05:05:35
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
opened
[Naxxramas] boss Sapphiron (BB #190)
migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** pdx15 **Original Date:** 12.06.2010 17:27:38 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** new **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/190 <hr> http://www.wowhead.com/npc=15989#comments TBC tactic Phase 2: Air Sapphiron will take off into the air, at this point the life drain and the Blizzards will stop, instead he will start casting Ice Bolts, it is imperative that every single raid member has at a bare minimum more that 50% Hp at this point to be able to take the frost blast. If he should hit you with a frost blast and you die, there will be no ice block for your friends. In addition to having sufficient life, you need to spread out, which isn�t important in the ground phase. The reason for that is to make sure minimal amount of people gets the splash damage from the Ice Bolt. After 4 or 5 Ice Bolts Sapphiron will cast a frost breath, at that point all the raid members that aren�t in an ice block will have to run and hide behind one before the frost breath hits the group. It take about 7 seconds for the breath ball to hit the ground, as mentioned in the abilities you wont be able to avoid the frost breath unless you are behind one of the ice blocks. No amount of frost resistance will save you from it, How ever paladin bubble and mage Ice Block will make you immune to the damage, but don�t be fooled by mage ice-blocks when you need to hide! Shortly: Icebolt concludes two players in an ice block. These blocks as LOS :) that is behind it it is possible to hide. After that it uses Frost Breath which kills all who has not hidden behind blocks Bug: Frost Breath who kills all who has hidden behind blocks and that in a block too. sorry for English )
1.0
[Naxxramas] boss Sapphiron (BB #190) - This issue was migrated from bitbucket. **Original Reporter:** pdx15 **Original Date:** 12.06.2010 17:27:38 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** new **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/190 <hr> http://www.wowhead.com/npc=15989#comments TBC tactic Phase 2: Air Sapphiron will take off into the air, at this point the life drain and the Blizzards will stop, instead he will start casting Ice Bolts, it is imperative that every single raid member has at a bare minimum more that 50% Hp at this point to be able to take the frost blast. If he should hit you with a frost blast and you die, there will be no ice block for your friends. In addition to having sufficient life, you need to spread out, which isn�t important in the ground phase. The reason for that is to make sure minimal amount of people gets the splash damage from the Ice Bolt. After 4 or 5 Ice Bolts Sapphiron will cast a frost breath, at that point all the raid members that aren�t in an ice block will have to run and hide behind one before the frost breath hits the group. It take about 7 seconds for the breath ball to hit the ground, as mentioned in the abilities you wont be able to avoid the frost breath unless you are behind one of the ice blocks. No amount of frost resistance will save you from it, How ever paladin bubble and mage Ice Block will make you immune to the damage, but don�t be fooled by mage ice-blocks when you need to hide! Shortly: Icebolt concludes two players in an ice block. These blocks as LOS :) that is behind it it is possible to hide. After that it uses Frost Breath which kills all who has not hidden behind blocks Bug: Frost Breath who kills all who has hidden behind blocks and that in a block too. sorry for English )
priority
boss sapphiron bb this issue was migrated from bitbucket original reporter original date gmt original priority major original type bug original state new direct link tbc tactic phase air sapphiron will take off into the air at this point the life drain and the blizzards will stop instead he will start casting ice bolts it is imperative that every single raid member has at a bare minimum more that hp at this point to be able to take the frost blast if he should hit you with a frost blast and you die there will be no ice block for your friends in addition to having sufficient life you need to spread out which isn�t important in the ground phase the reason for that is to make sure minimal amount of people gets the splash damage from the ice bolt after or ice bolts sapphiron will cast a frost breath at that point all the raid members that aren�t in an ice block will have to run and hide behind one before the frost breath hits the group it take about seconds for the breath ball to hit the ground as mentioned in the abilities you wont be able to avoid the frost breath unless you are behind one of the ice blocks no amount of frost resistance will save you from it how ever paladin bubble and mage ice block will make you immune to the damage but don�t be fooled by mage ice blocks when you need to hide shortly icebolt concludes two players in an ice block these blocks as los that is behind it it is possible to hide after that it uses frost breath which kills all who has not hidden behind blocks bug frost breath who kills all who has hidden behind blocks and that in a block too sorry for english
1
823,143
30,929,365,310
IssuesEvent
2023-08-06 22:17:28
x13pixels/remedybg-issues
https://api.github.com/repos/x13pixels/remedybg-issues
closed
symbols containing periods
Type: Enhancement Priority: 4 (Medium) Component: Watch Window
DMD writes symbols containing periods to pdb files: `0000000000000008 8 SymTagData test_module.global_var ?(0)` (I think) Remedy parses these as struct fields: `Identifier "test_module" not found` I'd like to use a backslash to escape periods.
1.0
symbols containing periods - DMD writes symbols containing periods to pdb files: `0000000000000008 8 SymTagData test_module.global_var ?(0)` (I think) Remedy parses these as struct fields: `Identifier "test_module" not found` I'd like to use a backslash to escape periods.
priority
symbols containing periods dmd writes symbols containing periods to pdb files symtagdata test module global var i think remedy parses these as struct fields identifier test module not found i d like to use a backslash to escape periods
1
790,542
27,829,152,098
IssuesEvent
2023-03-20 02:07:15
ansible-collections/azure
https://api.github.com/repos/ansible-collections/azure
closed
cannot install azure.azcollection without errors on a clean OS and dynamic inventory plugin does not work
inventory medium_priority not a bug work in
<!--- Verify first that your issue is not already reported on GitHub --> <!--- Also test if the latest release and devel branch are affected too --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### SUMMARY <!--- Explain the problem briefly below --> Unable to get azure.azcollection installed successfully without errors and subsequently unable to use the dynamic inventory plugin azure.azcollection.azure_rm. ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME <!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure --> azure.azcollection ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ```paste below ansible [core 2.13.8] config file = None configured module search path = ['/home/lsrvadm/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible ansible collection location = /home/lsrvadm/.ansible/collections:/usr/share/ansible/collections executable location = /home/lsrvadm/ansible214/bin/ansible python version = 3.8.10 (default, Nov 14 2022, 12:59:47) [GCC 9.4.0] jinja version = 3.1.2 libyaml = True ``` ##### COLLECTION VERSION <!--- Paste verbatim output from "ansible-galaxy collection list <namespace>.<collection>" between the quotes for example: ansible-galaxy collection list community.general --> ```paste below # /home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible_collections Collection Version ------------------ ------- azure.azcollection 1.14.0 # /home/lsrvadm/.ansible/collections/ansible_collections Collection Version ------------------ ------- azure.azcollection 1.14.0 ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ```paste below no output ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> NAME="Ubuntu" VERSION="20.04.5 LTS (Focal Fossa)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 20.04.5 LTS" VERSION_ID="20.04" HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" VERSION_CODENAME=focal UBUNTU_CODENAME=focal Running in Azure. ##### STEPS TO REPRODUCE <!--- Describe exactly how to reproduce the problem, using a minimal test-case --> From a 'clean' Azure Ubuntu 20.04 VM created a python virtual environment: `virtualenv ansible213` Activated the Virtual Environment: `source ansible214/bin/activate` (never mind the directory name, didn't know it was going to install 2.13) Installed ansible using pip: `pip3 install ansible` Installed the azure.azcollection: `ansible-galaxy collection install azure.azcollection` Installed the requirements (as per the documentation): `pip3 install -r ~/.ansible/collections/ansible_collections/azure/azcollection/requirements-azure.txt` This produced the following errors and warnings: ``` WARNING: The candidate selected for download or install is a yanked version: 'azure-mgmt-datalake-store' candidate (version 1.0.0 at https://files.pythonhosted.org/packages/ff/24/9212a136eeb98aa9031d8d58c90733e0527647ceabb4776bcf42a0316bd8/azure_mgmt_datalake_store-1.0.0-py2.py3-none-any.whl#sha256=02c0ceed26f9188e588dc1d4b1191184767f48a631e43f4d38de7d114ff61034 (from https://pypi.org/simple/azure-mgmt-datalake-store/)) Reason for being yanked: Retiring this version of the SDK. ERROR: azure-cli-telemetry 1.0.6 has requirement portalocker~=1.2, but you'll have portalocker 2.7.0 which is incompatible. ERROR: azure-cli-core 2.34.0 has requirement packaging<22.0,>=20.9, but you'll have packaging 23.0 which is incompatible. ``` <!--- Paste example playbooks or commands between quotes below --> Created the `myazure_inventory.yml` inventory file with the following content: ```yaml --- plugin: azure.azcollection.azure_rm include_vm_resource_groups: - rg-sandbox auth_source: auto ``` The resource group exists and contains VMs. Then exported the following environment variables: ``` export AZURE_SUBSCRIPTION_ID=[redacted] export AZURE_CLIENT_ID=[redacted] export AZURE_SECRET=[redacted] export AZURE_TENANT=[redacted] ``` Then ran the following command to check the inventory: `ansible-inventory -i myazure_inventory.yml --list -vvvvv` <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> To return an inventory list with the VMs in the resource group ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> Warnings and no VMs in the list. <!--- Paste verbatim command output between quotes --> This produced the following output: ``` ansible-inventory [core 2.13.8] config file = None configured module search path = ['/home/lsrvadm/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible ansible collection location = /home/lsrvadm/.ansible/collections:/usr/share/ansible/collections executable location = /home/lsrvadm/ansible214/bin/ansible-inventory python version = 3.8.10 (default, Nov 14 2022, 12:59:47) [GCC 9.4.0] jinja version = 3.1.2 libyaml = True No config file found; using defaults setting up inventory plugins host_list declined parsing /home/lsrvadm/myazure_inventory.yml as it did not pass its verify_file() method script declined parsing /home/lsrvadm/myazure_inventory.yml as it did not pass its verify_file() method Loading collection azure.azcollection from /home/lsrvadm/.ansible/collections/ansible_collections/azure/azcollection toml declined parsing /home/lsrvadm/myazure_inventory.yml as it did not pass its verify_file() method [WARNING]: * Failed to parse /home/lsrvadm/myazure_inventory.yml with auto plugin: inventory source '/home/lsrvadm/myazure_inventory.yml' could not be verified by inventory plugin 'azure.azcollection.azure_rm' File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/inventory/manager.py", line 290, in parse_source plugin.parse(self._inventory, self._loader, source, cache=cache) File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/plugins/inventory/auto.py", line 56, in parse raise AnsibleParserError("inventory source '{0}' could not be verified by inventory plugin '{1}'".format(path, plugin_name)) [WARNING]: * Failed to parse /home/lsrvadm/myazure_inventory.yml with yaml plugin: Plugin configuration YAML file, not YAML inventory File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/inventory/manager.py", line 290, in parse_source plugin.parse(self._inventory, self._loader, source, cache=cache) File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/plugins/inventory/yaml.py", line 114, in parse raise AnsibleParserError('Plugin configuration YAML file, not YAML inventory') [WARNING]: * Failed to parse /home/lsrvadm/myazure_inventory.yml with ini plugin: Invalid host pattern '---' supplied, '---' is normally a sign this is a YAML file. File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/inventory/manager.py", line 290, in parse_source plugin.parse(self._inventory, self._loader, source, cache=cache) File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/plugins/inventory/ini.py", line 136, in parse raise AnsibleParserError(e) [WARNING]: Unable to parse /home/lsrvadm/myazure_inventory.yml as an inventory source [WARNING]: No inventory was parsed, only implicit localhost is available { "_meta": { "hostvars": {} }, "all": { "children": [ "ungrouped" ] } } ```
1.0
cannot install azure.azcollection without errors on a clean OS and dynamic inventory plugin does not work - <!--- Verify first that your issue is not already reported on GitHub --> <!--- Also test if the latest release and devel branch are affected too --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### SUMMARY <!--- Explain the problem briefly below --> Unable to get azure.azcollection installed successfully without errors and subsequently unable to use the dynamic inventory plugin azure.azcollection.azure_rm. ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME <!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure --> azure.azcollection ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ```paste below ansible [core 2.13.8] config file = None configured module search path = ['/home/lsrvadm/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible ansible collection location = /home/lsrvadm/.ansible/collections:/usr/share/ansible/collections executable location = /home/lsrvadm/ansible214/bin/ansible python version = 3.8.10 (default, Nov 14 2022, 12:59:47) [GCC 9.4.0] jinja version = 3.1.2 libyaml = True ``` ##### COLLECTION VERSION <!--- Paste verbatim output from "ansible-galaxy collection list <namespace>.<collection>" between the quotes for example: ansible-galaxy collection list community.general --> ```paste below # /home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible_collections Collection Version ------------------ ------- azure.azcollection 1.14.0 # /home/lsrvadm/.ansible/collections/ansible_collections Collection Version ------------------ ------- azure.azcollection 1.14.0 ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ```paste below no output ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> NAME="Ubuntu" VERSION="20.04.5 LTS (Focal Fossa)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 20.04.5 LTS" VERSION_ID="20.04" HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" VERSION_CODENAME=focal UBUNTU_CODENAME=focal Running in Azure. ##### STEPS TO REPRODUCE <!--- Describe exactly how to reproduce the problem, using a minimal test-case --> From a 'clean' Azure Ubuntu 20.04 VM created a python virtual environment: `virtualenv ansible213` Activated the Virtual Environment: `source ansible214/bin/activate` (never mind the directory name, didn't know it was going to install 2.13) Installed ansible using pip: `pip3 install ansible` Installed the azure.azcollection: `ansible-galaxy collection install azure.azcollection` Installed the requirements (as per the documentation): `pip3 install -r ~/.ansible/collections/ansible_collections/azure/azcollection/requirements-azure.txt` This produced the following errors and warnings: ``` WARNING: The candidate selected for download or install is a yanked version: 'azure-mgmt-datalake-store' candidate (version 1.0.0 at https://files.pythonhosted.org/packages/ff/24/9212a136eeb98aa9031d8d58c90733e0527647ceabb4776bcf42a0316bd8/azure_mgmt_datalake_store-1.0.0-py2.py3-none-any.whl#sha256=02c0ceed26f9188e588dc1d4b1191184767f48a631e43f4d38de7d114ff61034 (from https://pypi.org/simple/azure-mgmt-datalake-store/)) Reason for being yanked: Retiring this version of the SDK. ERROR: azure-cli-telemetry 1.0.6 has requirement portalocker~=1.2, but you'll have portalocker 2.7.0 which is incompatible. ERROR: azure-cli-core 2.34.0 has requirement packaging<22.0,>=20.9, but you'll have packaging 23.0 which is incompatible. ``` <!--- Paste example playbooks or commands between quotes below --> Created the `myazure_inventory.yml` inventory file with the following content: ```yaml --- plugin: azure.azcollection.azure_rm include_vm_resource_groups: - rg-sandbox auth_source: auto ``` The resource group exists and contains VMs. Then exported the following environment variables: ``` export AZURE_SUBSCRIPTION_ID=[redacted] export AZURE_CLIENT_ID=[redacted] export AZURE_SECRET=[redacted] export AZURE_TENANT=[redacted] ``` Then ran the following command to check the inventory: `ansible-inventory -i myazure_inventory.yml --list -vvvvv` <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> To return an inventory list with the VMs in the resource group ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> Warnings and no VMs in the list. <!--- Paste verbatim command output between quotes --> This produced the following output: ``` ansible-inventory [core 2.13.8] config file = None configured module search path = ['/home/lsrvadm/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible ansible collection location = /home/lsrvadm/.ansible/collections:/usr/share/ansible/collections executable location = /home/lsrvadm/ansible214/bin/ansible-inventory python version = 3.8.10 (default, Nov 14 2022, 12:59:47) [GCC 9.4.0] jinja version = 3.1.2 libyaml = True No config file found; using defaults setting up inventory plugins host_list declined parsing /home/lsrvadm/myazure_inventory.yml as it did not pass its verify_file() method script declined parsing /home/lsrvadm/myazure_inventory.yml as it did not pass its verify_file() method Loading collection azure.azcollection from /home/lsrvadm/.ansible/collections/ansible_collections/azure/azcollection toml declined parsing /home/lsrvadm/myazure_inventory.yml as it did not pass its verify_file() method [WARNING]: * Failed to parse /home/lsrvadm/myazure_inventory.yml with auto plugin: inventory source '/home/lsrvadm/myazure_inventory.yml' could not be verified by inventory plugin 'azure.azcollection.azure_rm' File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/inventory/manager.py", line 290, in parse_source plugin.parse(self._inventory, self._loader, source, cache=cache) File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/plugins/inventory/auto.py", line 56, in parse raise AnsibleParserError("inventory source '{0}' could not be verified by inventory plugin '{1}'".format(path, plugin_name)) [WARNING]: * Failed to parse /home/lsrvadm/myazure_inventory.yml with yaml plugin: Plugin configuration YAML file, not YAML inventory File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/inventory/manager.py", line 290, in parse_source plugin.parse(self._inventory, self._loader, source, cache=cache) File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/plugins/inventory/yaml.py", line 114, in parse raise AnsibleParserError('Plugin configuration YAML file, not YAML inventory') [WARNING]: * Failed to parse /home/lsrvadm/myazure_inventory.yml with ini plugin: Invalid host pattern '---' supplied, '---' is normally a sign this is a YAML file. File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/inventory/manager.py", line 290, in parse_source plugin.parse(self._inventory, self._loader, source, cache=cache) File "/home/lsrvadm/ansible214/lib/python3.8/site-packages/ansible/plugins/inventory/ini.py", line 136, in parse raise AnsibleParserError(e) [WARNING]: Unable to parse /home/lsrvadm/myazure_inventory.yml as an inventory source [WARNING]: No inventory was parsed, only implicit localhost is available { "_meta": { "hostvars": {} }, "all": { "children": [ "ungrouped" ] } } ```
priority
cannot install azure azcollection without errors on a clean os and dynamic inventory plugin does not work summary unable to get azure azcollection installed successfully without errors and subsequently unable to use the dynamic inventory plugin azure azcollection azure rm issue type bug report component name azure azcollection ansible version paste below ansible config file none configured module search path ansible python module location home lsrvadm lib site packages ansible ansible collection location home lsrvadm ansible collections usr share ansible collections executable location home lsrvadm bin ansible python version default nov jinja version libyaml true collection version between the quotes for example ansible galaxy collection list community general paste below home lsrvadm lib site packages ansible collections collection version azure azcollection home lsrvadm ansible collections ansible collections collection version azure azcollection configuration paste below no output os environment name ubuntu version lts focal fossa id ubuntu id like debian pretty name ubuntu lts version id home url support url bug report url privacy policy url version codename focal ubuntu codename focal running in azure steps to reproduce from a clean azure ubuntu vm created a python virtual environment virtualenv activated the virtual environment source bin activate never mind the directory name didn t know it was going to install installed ansible using pip install ansible installed the azure azcollection ansible galaxy collection install azure azcollection installed the requirements as per the documentation install r ansible collections ansible collections azure azcollection requirements azure txt this produced the following errors and warnings warning the candidate selected for download or install is a yanked version azure mgmt datalake store candidate version at from reason for being yanked retiring this version of the sdk error azure cli telemetry has requirement portalocker but you ll have portalocker which is incompatible error azure cli core has requirement packaging but you ll have packaging which is incompatible created the myazure inventory yml inventory file with the following content yaml plugin azure azcollection azure rm include vm resource groups rg sandbox auth source auto the resource group exists and contains vms then exported the following environment variables export azure subscription id export azure client id export azure secret export azure tenant then ran the following command to check the inventory ansible inventory i myazure inventory yml list vvvvv expected results to return an inventory list with the vms in the resource group actual results warnings and no vms in the list this produced the following output ansible inventory config file none configured module search path ansible python module location home lsrvadm lib site packages ansible ansible collection location home lsrvadm ansible collections usr share ansible collections executable location home lsrvadm bin ansible inventory python version default nov jinja version libyaml true no config file found using defaults setting up inventory plugins host list declined parsing home lsrvadm myazure inventory yml as it did not pass its verify file method script declined parsing home lsrvadm myazure inventory yml as it did not pass its verify file method loading collection azure azcollection from home lsrvadm ansible collections ansible collections azure azcollection toml declined parsing home lsrvadm myazure inventory yml as it did not pass its verify file method failed to parse home lsrvadm myazure inventory yml with auto plugin inventory source home lsrvadm myazure inventory yml could not be verified by inventory plugin azure azcollection azure rm file home lsrvadm lib site packages ansible inventory manager py line in parse source plugin parse self inventory self loader source cache cache file home lsrvadm lib site packages ansible plugins inventory auto py line in parse raise ansibleparsererror inventory source could not be verified by inventory plugin format path plugin name failed to parse home lsrvadm myazure inventory yml with yaml plugin plugin configuration yaml file not yaml inventory file home lsrvadm lib site packages ansible inventory manager py line in parse source plugin parse self inventory self loader source cache cache file home lsrvadm lib site packages ansible plugins inventory yaml py line in parse raise ansibleparsererror plugin configuration yaml file not yaml inventory failed to parse home lsrvadm myazure inventory yml with ini plugin invalid host pattern supplied is normally a sign this is a yaml file file home lsrvadm lib site packages ansible inventory manager py line in parse source plugin parse self inventory self loader source cache cache file home lsrvadm lib site packages ansible plugins inventory ini py line in parse raise ansibleparsererror e unable to parse home lsrvadm myazure inventory yml as an inventory source no inventory was parsed only implicit localhost is available meta hostvars all children ungrouped
1
124,240
4,894,099,136
IssuesEvent
2016-11-19 03:50:16
caver456/issue_test
https://api.github.com/repos/caver456/issue_test
opened
not writing to COMMON
bug help wanted Priority:Medium
not always writing to COMMON (shared drive from server) in the trailer - is this only because COMMON may not have been alive when radiolog started? If so check every so often to see if it's alive
1.0
not writing to COMMON - not always writing to COMMON (shared drive from server) in the trailer - is this only because COMMON may not have been alive when radiolog started? If so check every so often to see if it's alive
priority
not writing to common not always writing to common shared drive from server in the trailer is this only because common may not have been alive when radiolog started if so check every so often to see if it s alive
1
376,556
11,148,499,990
IssuesEvent
2019-12-23 15:42:31
bounswe/bounswe2019group4
https://api.github.com/repos/bounswe/bounswe2019group4
closed
Frontend feature Edit Profile
Front-End Priority: Medium Status: In Progress Type: Feature
According to the requirement below, we have to create a page for the user to edit his profile. 1.1.2.4.6 Users shall see and edit their personal information including name, surname, location, IBAN, TC identification number and password in profile page.
1.0
Frontend feature Edit Profile - According to the requirement below, we have to create a page for the user to edit his profile. 1.1.2.4.6 Users shall see and edit their personal information including name, surname, location, IBAN, TC identification number and password in profile page.
priority
frontend feature edit profile according to the requirement below we have to create a page for the user to edit his profile users shall see and edit their personal information including name surname location iban tc identification number and password in profile page
1
661,333
22,049,345,058
IssuesEvent
2022-05-30 07:09:50
space-wizards/RobustToolbox
https://api.github.com/repos/space-wizards/RobustToolbox
opened
Duplicate component exception is vague
Issue: Needs Cleanup Priority: 2-Important Difficulty: 2-Medium
I think this is a recent change but whenever I have a dupe component the componentregistryserializer just throws and I have 0 clue which prototype it is.
1.0
Duplicate component exception is vague - I think this is a recent change but whenever I have a dupe component the componentregistryserializer just throws and I have 0 clue which prototype it is.
priority
duplicate component exception is vague i think this is a recent change but whenever i have a dupe component the componentregistryserializer just throws and i have clue which prototype it is
1
462,037
13,240,291,656
IssuesEvent
2020-08-19 06:00:12
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.0 staging-1722] Infinite Dirt Exploit - Ramp/Hoe
Priority: Medium Status: Fixed Type: Regression
Version - 0.9.0 staging-1722] **Exploit:** Infinite Dirt from Hoe/Ramp **Steps to Reproduce:** 1. Make Dirt Ramp 2. Place Dirt Ramp 3. Wooden Hoe a part of the ramp (maximum of 3 times). 4. Pick up ramp. 5. Will result in... 1 ramp, 3 dirt. stagingworld23
1.0
[0.9.0 staging-1722] Infinite Dirt Exploit - Ramp/Hoe - Version - 0.9.0 staging-1722] **Exploit:** Infinite Dirt from Hoe/Ramp **Steps to Reproduce:** 1. Make Dirt Ramp 2. Place Dirt Ramp 3. Wooden Hoe a part of the ramp (maximum of 3 times). 4. Pick up ramp. 5. Will result in... 1 ramp, 3 dirt. stagingworld23
priority
infinite dirt exploit ramp hoe version staging exploit infinite dirt from hoe ramp steps to reproduce make dirt ramp place dirt ramp wooden hoe a part of the ramp maximum of times pick up ramp will result in ramp dirt
1
247,049
7,896,146,991
IssuesEvent
2018-06-29 07:30:15
aowen87/BAR
https://api.github.com/repos/aowen87/BAR
closed
Ability to suppress warning popups in gui
Expected Use: 3 - Occasional Feature Impact: 3 - Medium OS: All Priority: Normal Support Group: Any
cq-id: VisIt00008878 cq-submitter: Kathleen S. Bonnell cq-submit-date: 01/29/09 Customer applies two instances of Transform or Slice, and the warning messages always popups up, without a way to disable it. Since our warnings are also printed to the output window, we should have a way to disable the popups in general. -----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. The following information could not be accurately captured in the new ticket: Original author: Cyrus Harrison Original creation: 06/21/2010 07:16 pm Original update: 08/25/2010 12:25 pm Ticket number: 123
1.0
Ability to suppress warning popups in gui - cq-id: VisIt00008878 cq-submitter: Kathleen S. Bonnell cq-submit-date: 01/29/09 Customer applies two instances of Transform or Slice, and the warning messages always popups up, without a way to disable it. Since our warnings are also printed to the output window, we should have a way to disable the popups in general. -----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. The following information could not be accurately captured in the new ticket: Original author: Cyrus Harrison Original creation: 06/21/2010 07:16 pm Original update: 08/25/2010 12:25 pm Ticket number: 123
priority
ability to suppress warning popups in gui cq id cq submitter kathleen s bonnell cq submit date customer applies two instances of transform or slice and the warning messages always popups up without a way to disable it since our warnings are also printed to the output window we should have a way to disable the popups in general redmine migration this ticket was migrated from redmine the following information could not be accurately captured in the new ticket original author cyrus harrison original creation pm original update pm ticket number
1
286,793
8,793,329,260
IssuesEvent
2018-12-21 19:30:08
minio/minio
https://api.github.com/repos/minio/minio
closed
Support Kafka authentication and TLS for bucket notifications
community priority: medium triage
<!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior <!--- If you're describing a bug, tell us what should happen --> <!--- If you're suggesting a change/improvement, tell us how it should work --> We should be able to specify the username and password to use when connecting to Kafka brokers, triggering the SASL/PLAIN mechanism that is supported by Sarama library. Ideally, support for TLS should also be configurable. ## Current Behavior <!--- If describing a bug, tell us what happens instead of the expected behavior --> <!--- If suggesting a change/improvement, explain the difference from current behavior --> Contrary to other bucket notification endpoints, there is currently no property available to configure authentication for Kafka. This rules out connecting to secured Kafka brokers. ## Possible Solution <!--- Not obligatory, but suggest a fix/reason for the bug, --> <!--- or ideas how to implement the addition or change --> Extending the config file items related to Kafka notifications and passing them to their corresponding Config type in Sarama Library should be sufficient to cover these new features. ## Context <!--- How has this issue affected you? What are you trying to accomplish? --> <!--- Providing context helps us come up with a solution that is most useful in the real world --> We're running a secured Kafka broker and can't afford to disable security. We think this should be a quite trivial implementation that will enable Kafka notification in real production environments. ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> N/A : any environment should be impacted by this missing feature.
1.0
Support Kafka authentication and TLS for bucket notifications - <!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior <!--- If you're describing a bug, tell us what should happen --> <!--- If you're suggesting a change/improvement, tell us how it should work --> We should be able to specify the username and password to use when connecting to Kafka brokers, triggering the SASL/PLAIN mechanism that is supported by Sarama library. Ideally, support for TLS should also be configurable. ## Current Behavior <!--- If describing a bug, tell us what happens instead of the expected behavior --> <!--- If suggesting a change/improvement, explain the difference from current behavior --> Contrary to other bucket notification endpoints, there is currently no property available to configure authentication for Kafka. This rules out connecting to secured Kafka brokers. ## Possible Solution <!--- Not obligatory, but suggest a fix/reason for the bug, --> <!--- or ideas how to implement the addition or change --> Extending the config file items related to Kafka notifications and passing them to their corresponding Config type in Sarama Library should be sufficient to cover these new features. ## Context <!--- How has this issue affected you? What are you trying to accomplish? --> <!--- Providing context helps us come up with a solution that is most useful in the real world --> We're running a secured Kafka broker and can't afford to disable security. We think this should be a quite trivial implementation that will enable Kafka notification in real production environments. ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> N/A : any environment should be impacted by this missing feature.
priority
support kafka authentication and tls for bucket notifications expected behavior we should be able to specify the username and password to use when connecting to kafka brokers triggering the sasl plain mechanism that is supported by sarama library ideally support for tls should also be configurable current behavior contrary to other bucket notification endpoints there is currently no property available to configure authentication for kafka this rules out connecting to secured kafka brokers possible solution extending the config file items related to kafka notifications and passing them to their corresponding config type in sarama library should be sufficient to cover these new features context we re running a secured kafka broker and can t afford to disable security we think this should be a quite trivial implementation that will enable kafka notification in real production environments your environment n a any environment should be impacted by this missing feature
1
706,437
24,270,176,223
IssuesEvent
2022-09-28 09:38:37
pika-org/pika
https://api.github.com/repos/pika-org/pika
closed
Build fails on arm64: error: 'regparm' is not valid on this platform
effort: 3 priority: medium type: bug category: CI
``` In file included from /wrkdirs/usr/ports/devel/pika/work/.build/libs/pika/algorithms/CMakeFiles/pika_algorithms.dir/Unity/unity_0_cxx.cxx:8: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/algorithms/src/task_group.cpp:11: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/algorithms/include/pika/parallel/task_group.hpp:19: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/executors/include/pika/executors/parallel_executor.hpp:16: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/execution/include/pika/execution/detail/async_launch_policy_dispatch.hpp:16: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/futures/include/pika/futures/future.hpp:22: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/futures/include/pika/futures/detail/future_data.hpp:21: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/synchronization/include/pika/synchronization/condition_variable.hpp:16: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/synchronization/include/pika/synchronization/mutex.hpp:14: In file included from /wrkdirs/usr/ports/devel/pika/work/.build/libs/pika/threading_base/include/pika/modules/threading_base.hpp:18: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/threading_base/include/pika/threading_base/execution_agent.hpp:11: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/coroutine_impl.hpp:41: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_base.hpp:44: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_impl.hpp:118: /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_linux_x86.hpp:75:18: error: 'regparm' is not valid on this platform __attribute((regparm(2))); ^ ~ /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_linux_x86.hpp:77:18: error: 'regparm' is not valid on this platform __attribute((regparm(2))); ^ ~ 2 errors generated. ``` Full log: http://ampere3.nyi.freebsd.org/data/130arm64-default/a51002eeb3d0/logs/pika-0.6.0.log (IPv6 URL). clang-13.1 FreeBSD 13.1
1.0
Build fails on arm64: error: 'regparm' is not valid on this platform - ``` In file included from /wrkdirs/usr/ports/devel/pika/work/.build/libs/pika/algorithms/CMakeFiles/pika_algorithms.dir/Unity/unity_0_cxx.cxx:8: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/algorithms/src/task_group.cpp:11: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/algorithms/include/pika/parallel/task_group.hpp:19: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/executors/include/pika/executors/parallel_executor.hpp:16: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/execution/include/pika/execution/detail/async_launch_policy_dispatch.hpp:16: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/futures/include/pika/futures/future.hpp:22: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/futures/include/pika/futures/detail/future_data.hpp:21: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/synchronization/include/pika/synchronization/condition_variable.hpp:16: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/synchronization/include/pika/synchronization/mutex.hpp:14: In file included from /wrkdirs/usr/ports/devel/pika/work/.build/libs/pika/threading_base/include/pika/modules/threading_base.hpp:18: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/threading_base/include/pika/threading_base/execution_agent.hpp:11: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/coroutine_impl.hpp:41: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_base.hpp:44: In file included from /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_impl.hpp:118: /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_linux_x86.hpp:75:18: error: 'regparm' is not valid on this platform __attribute((regparm(2))); ^ ~ /wrkdirs/usr/ports/devel/pika/work/pika-0.6.0/libs/pika/coroutines/include/pika/coroutines/detail/context_linux_x86.hpp:77:18: error: 'regparm' is not valid on this platform __attribute((regparm(2))); ^ ~ 2 errors generated. ``` Full log: http://ampere3.nyi.freebsd.org/data/130arm64-default/a51002eeb3d0/logs/pika-0.6.0.log (IPv6 URL). clang-13.1 FreeBSD 13.1
priority
build fails on error regparm is not valid on this platform in file included from wrkdirs usr ports devel pika work build libs pika algorithms cmakefiles pika algorithms dir unity unity cxx cxx in file included from wrkdirs usr ports devel pika work pika libs pika algorithms src task group cpp in file included from wrkdirs usr ports devel pika work pika libs pika algorithms include pika parallel task group hpp in file included from wrkdirs usr ports devel pika work pika libs pika executors include pika executors parallel executor hpp in file included from wrkdirs usr ports devel pika work pika libs pika execution include pika execution detail async launch policy dispatch hpp in file included from wrkdirs usr ports devel pika work pika libs pika futures include pika futures future hpp in file included from wrkdirs usr ports devel pika work pika libs pika futures include pika futures detail future data hpp in file included from wrkdirs usr ports devel pika work pika libs pika synchronization include pika synchronization condition variable hpp in file included from wrkdirs usr ports devel pika work pika libs pika synchronization include pika synchronization mutex hpp in file included from wrkdirs usr ports devel pika work build libs pika threading base include pika modules threading base hpp in file included from wrkdirs usr ports devel pika work pika libs pika threading base include pika threading base execution agent hpp in file included from wrkdirs usr ports devel pika work pika libs pika coroutines include pika coroutines detail coroutine impl hpp in file included from wrkdirs usr ports devel pika work pika libs pika coroutines include pika coroutines detail context base hpp in file included from wrkdirs usr ports devel pika work pika libs pika coroutines include pika coroutines detail context impl hpp wrkdirs usr ports devel pika work pika libs pika coroutines include pika coroutines detail context linux hpp error regparm is not valid on this platform attribute regparm wrkdirs usr ports devel pika work pika libs pika coroutines include pika coroutines detail context linux hpp error regparm is not valid on this platform attribute regparm errors generated full log url clang freebsd
1
172,077
6,498,749,925
IssuesEvent
2017-08-22 18:39:47
influxdata/docs.influxdata.com
https://api.github.com/repos/influxdata/docs.influxdata.com
closed
Doc update request: use of telegraf.d
help wanted Priority: medium Telegraf
Running Telegraf 0.13.1 and noticed that the startup uses `/etc/telegraf/telegraf.conf` and `/etc/telegraf/telegraf.d/*.conf`. Can we get some further details on how to use these, e.g.: 1. When to use `telegraf.conf` and when to use separate `*.conf` files? I've used a file in `telegraf.d`, but Telegraf's startup bitched that `telegraf.conf` didn't exist, (I created a dummy file in /etc/telegraf) 2. Precedence order: if `telegraph.conf` exists but so do `telegraf.d` files, is the resulting config the union of both, and if a setting is referred to multiple times then is it the last reference in `telegraf.d` that takes effect? 3. If I define an input and output stream in a `telegraf.d` conf file is that a single distinct dataflow? As an example if I have three configuration files in telegraf.d ``` A.conf: input kafka, output elasticsearch B.conf: input snmp, output influxdb C.conf: input docker, output file ``` Am I going to get kafka, snmp and docker all going to elasticsearch and influx and file (multiplex) or am I going to get kafka going to elasticsearch only, snmp to influxdb only and docker to file only? Point #3 is important for me at the moment, because I'm looking at Telegraf as a interface between multiple Kafka topics and a collection of InfluxDB and Elasticsearch databases. If T'graf can deal with those separate data flows then that'd (obviously!) be a cleaner solution than having to run a T'graf instance for each data flow. Yes, I know I could probably figure this out by looking at the code, but I'm only just past "hello world" in Go-lang at the moment [grin]
1.0
Doc update request: use of telegraf.d - Running Telegraf 0.13.1 and noticed that the startup uses `/etc/telegraf/telegraf.conf` and `/etc/telegraf/telegraf.d/*.conf`. Can we get some further details on how to use these, e.g.: 1. When to use `telegraf.conf` and when to use separate `*.conf` files? I've used a file in `telegraf.d`, but Telegraf's startup bitched that `telegraf.conf` didn't exist, (I created a dummy file in /etc/telegraf) 2. Precedence order: if `telegraph.conf` exists but so do `telegraf.d` files, is the resulting config the union of both, and if a setting is referred to multiple times then is it the last reference in `telegraf.d` that takes effect? 3. If I define an input and output stream in a `telegraf.d` conf file is that a single distinct dataflow? As an example if I have three configuration files in telegraf.d ``` A.conf: input kafka, output elasticsearch B.conf: input snmp, output influxdb C.conf: input docker, output file ``` Am I going to get kafka, snmp and docker all going to elasticsearch and influx and file (multiplex) or am I going to get kafka going to elasticsearch only, snmp to influxdb only and docker to file only? Point #3 is important for me at the moment, because I'm looking at Telegraf as a interface between multiple Kafka topics and a collection of InfluxDB and Elasticsearch databases. If T'graf can deal with those separate data flows then that'd (obviously!) be a cleaner solution than having to run a T'graf instance for each data flow. Yes, I know I could probably figure this out by looking at the code, but I'm only just past "hello world" in Go-lang at the moment [grin]
priority
doc update request use of telegraf d running telegraf and noticed that the startup uses etc telegraf telegraf conf and etc telegraf telegraf d conf can we get some further details on how to use these e g when to use telegraf conf and when to use separate conf files i ve used a file in telegraf d but telegraf s startup bitched that telegraf conf didn t exist i created a dummy file in etc telegraf precedence order if telegraph conf exists but so do telegraf d files is the resulting config the union of both and if a setting is referred to multiple times then is it the last reference in telegraf d that takes effect if i define an input and output stream in a telegraf d conf file is that a single distinct dataflow as an example if i have three configuration files in telegraf d a conf input kafka output elasticsearch b conf input snmp output influxdb c conf input docker output file am i going to get kafka snmp and docker all going to elasticsearch and influx and file multiplex or am i going to get kafka going to elasticsearch only snmp to influxdb only and docker to file only point is important for me at the moment because i m looking at telegraf as a interface between multiple kafka topics and a collection of influxdb and elasticsearch databases if t graf can deal with those separate data flows then that d obviously be a cleaner solution than having to run a t graf instance for each data flow yes i know i could probably figure this out by looking at the code but i m only just past hello world in go lang at the moment
1
122,565
4,837,212,211
IssuesEvent
2016-11-08 21:54:17
kolibox/koli
https://api.github.com/repos/kolibox/koli
closed
Save token in local git cache
complexity/medium feature priority/P0 WIP
When pushing to crafter remote the token must already exists in the local git cache. ``` bash koli login [user credentials] koli create deploy myapp # The user will not be prompt for the user credentials in this step! git push koli master ```
1.0
Save token in local git cache - When pushing to crafter remote the token must already exists in the local git cache. ``` bash koli login [user credentials] koli create deploy myapp # The user will not be prompt for the user credentials in this step! git push koli master ```
priority
save token in local git cache when pushing to crafter remote the token must already exists in the local git cache bash koli login koli create deploy myapp the user will not be prompt for the user credentials in this step git push koli master
1
55,951
3,075,571,286
IssuesEvent
2015-08-20 14:20:01
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
SeekBar not working
bug imported invalid Priority-Medium
_From [kday...@gmail.com](https://code.google.com/u/104096318788503824365/) on April 01, 2014 12:19:28_ Im trying to control the seekbar using robotium. but not having any luck. I can control it using the drag function but the problem is that i have to change the x,y coordinate for each phone. Here is the Main code that I'm using. @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { // update current location as seek bar is dragged. if (bIsSeeking) mTxtCurrent.setText(DateUtils.formatElapsedTime(progress / 1000)); } @Override public void onStartTrackingTouch(SeekBar seekBar) { SMLog.d(logtitle, "Start Tracking."); if( seekBar == mSeekVideo ) bIsSeeking = true; else if( seekBar == mSeekVolume ) bSeekingVolume = true; } @Override public void onStopTrackingTouch(SeekBar seekBar) { SMLog.d(logtitle, "Stop Tracking."); if( seekBar == mSeekVideo ) { bIsSeeking = false; int SeekTo = mSeekVideo.getProgress(); if( SeekTo == mDuration ) { if (IsVideoLooping()) DoSeek(SeekTo, false); else { bPlayComplete = true; getActivity().finish(); } } else DoSeek( SeekTo, false ); } else if( seekBar == mSeekVolume ) { int vol = mSeekVolume.getProgress(); if( vol == 0 ) MuteVolume(true); else { MuteVolume(false); audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL); } audioManager.setStreamVolume( AudioManager.STREAM_MUSIC, vol , 0 ); bSeekingVolume = false; } } And on the robotium side, this is what im calling SeekBar seek = (SeekBar) solo.getView(com.securemedia.SMHLSVOD.R.id.seekVideo); NativePlayerFragment Missile = new NativePlayerFragment(); for (int i=1; i<5; i++) { // click on screen so that the seek bar shows // set forward Missile.onStartTrackingTouch(seek); seek.setProgress(i*3); Missile.onStopTrackingTouch(seek); solo.sleep(10000); //click on screen so that the seek bar shows solo.clickOnScreen(100f, 100f); // set back Missile.onStartTrackingTouch(seek); seek.setProgress(i*2); Missile.onStopTrackingTouch(seek); solo.sleep(10000); } any idea of what I'm doing wrong ? _Original issue: http://code.google.com/p/robotium/issues/detail?id=595_
1.0
SeekBar not working - _From [kday...@gmail.com](https://code.google.com/u/104096318788503824365/) on April 01, 2014 12:19:28_ Im trying to control the seekbar using robotium. but not having any luck. I can control it using the drag function but the problem is that i have to change the x,y coordinate for each phone. Here is the Main code that I'm using. @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { // update current location as seek bar is dragged. if (bIsSeeking) mTxtCurrent.setText(DateUtils.formatElapsedTime(progress / 1000)); } @Override public void onStartTrackingTouch(SeekBar seekBar) { SMLog.d(logtitle, "Start Tracking."); if( seekBar == mSeekVideo ) bIsSeeking = true; else if( seekBar == mSeekVolume ) bSeekingVolume = true; } @Override public void onStopTrackingTouch(SeekBar seekBar) { SMLog.d(logtitle, "Stop Tracking."); if( seekBar == mSeekVideo ) { bIsSeeking = false; int SeekTo = mSeekVideo.getProgress(); if( SeekTo == mDuration ) { if (IsVideoLooping()) DoSeek(SeekTo, false); else { bPlayComplete = true; getActivity().finish(); } } else DoSeek( SeekTo, false ); } else if( seekBar == mSeekVolume ) { int vol = mSeekVolume.getProgress(); if( vol == 0 ) MuteVolume(true); else { MuteVolume(false); audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL); } audioManager.setStreamVolume( AudioManager.STREAM_MUSIC, vol , 0 ); bSeekingVolume = false; } } And on the robotium side, this is what im calling SeekBar seek = (SeekBar) solo.getView(com.securemedia.SMHLSVOD.R.id.seekVideo); NativePlayerFragment Missile = new NativePlayerFragment(); for (int i=1; i<5; i++) { // click on screen so that the seek bar shows // set forward Missile.onStartTrackingTouch(seek); seek.setProgress(i*3); Missile.onStopTrackingTouch(seek); solo.sleep(10000); //click on screen so that the seek bar shows solo.clickOnScreen(100f, 100f); // set back Missile.onStartTrackingTouch(seek); seek.setProgress(i*2); Missile.onStopTrackingTouch(seek); solo.sleep(10000); } any idea of what I'm doing wrong ? _Original issue: http://code.google.com/p/robotium/issues/detail?id=595_
priority
seekbar not working from on april im trying to control the seekbar using robotium but not having any luck i can control it using the drag function but the problem is that i have to change the x y coordinate for each phone here is the main code that i m using override public void onprogresschanged seekbar seekbar int progress boolean fromuser update current location as seek bar is dragged if bisseeking mtxtcurrent settext dateutils formatelapsedtime progress override public void onstarttrackingtouch seekbar seekbar smlog d logtitle start tracking if seekbar mseekvideo bisseeking true else if seekbar mseekvolume bseekingvolume true override public void onstoptrackingtouch seekbar seekbar smlog d logtitle stop tracking if seekbar mseekvideo bisseeking false int seekto mseekvideo getprogress if seekto mduration if isvideolooping doseek seekto false else bplaycomplete true getactivity finish else doseek seekto false else if seekbar mseekvolume int vol mseekvolume getprogress if vol mutevolume true else mutevolume false audiomanager setringermode audiomanager ringer mode normal audiomanager setstreamvolume audiomanager stream music vol bseekingvolume false and on the robotium side this is what im calling seekbar seek seekbar solo getview com securemedia smhlsvod r id seekvideo nativeplayerfragment missile new nativeplayerfragment for int i i i click on screen so that the seek bar shows set forward missile onstarttrackingtouch seek seek setprogress i missile onstoptrackingtouch seek solo sleep click on screen so that the seek bar shows solo clickonscreen set back missile onstarttrackingtouch seek seek setprogress i missile onstoptrackingtouch seek solo sleep any idea of what i m doing wrong original issue
1
564,509
16,735,451,756
IssuesEvent
2021-06-11 00:11:06
umple/umple
https://api.github.com/repos/umple/umple
closed
Download option at Yuml Class Diagram does not provide a proper return back in UmpleOnline
Component-UmpleOnline Diffic-VEasy Priority-Medium
## Summary Within the UmpleOnline, the users can generate the Yuml class diagram based on the modeling language. In a sample scenario, a user can create a model, generate the Yuml class diagram, and download it. ## Steps to Reproduce 1. Click the "Tools" menu item, select the example as "Class Diagrams >> Afghan Rain Design". ![image](https://user-images.githubusercontent.com/82404135/119898743-3ab11d80-bf10-11eb-8646-23683e8fd6aa.png) 2. Under the "Generate" section, select the target programming language as "Yuml Class Diagram". Click "Generate It". ![image](https://user-images.githubusercontent.com/82404135/119928552-c8f5c580-bf49-11eb-892f-223846e7fc75.png) 3. Scroll a bit down and click on the "Download the PNG file for the image" linked text URL. ![image](https://user-images.githubusercontent.com/82404135/119928688-14a86f00-bf4a-11eb-97b8-34f21dc2b233.png) 4. The system loads the diagram in PNG format. ![image](https://user-images.githubusercontent.com/82404135/119928775-3e619600-bf4a-11eb-9d55-25c195ce1627.png) 5. Now, there is no system-generated BACK button to go back to the previous page. The only option to go back is to click on the browser BACK button. If the user clicks on the browser back button, the system is reset to an empty page. All the previous changes are deleted. ![image](https://user-images.githubusercontent.com/82404135/119928931-95676b00-bf4a-11eb-88ec-e7e42b6fb409.png) ## Expected Feature The system should do any of the following- 1. Open the PNG image in a separate window. 2. Upon clicking on the browser back button, the system should return to the previously saved page.
1.0
Download option at Yuml Class Diagram does not provide a proper return back in UmpleOnline - ## Summary Within the UmpleOnline, the users can generate the Yuml class diagram based on the modeling language. In a sample scenario, a user can create a model, generate the Yuml class diagram, and download it. ## Steps to Reproduce 1. Click the "Tools" menu item, select the example as "Class Diagrams >> Afghan Rain Design". ![image](https://user-images.githubusercontent.com/82404135/119898743-3ab11d80-bf10-11eb-8646-23683e8fd6aa.png) 2. Under the "Generate" section, select the target programming language as "Yuml Class Diagram". Click "Generate It". ![image](https://user-images.githubusercontent.com/82404135/119928552-c8f5c580-bf49-11eb-892f-223846e7fc75.png) 3. Scroll a bit down and click on the "Download the PNG file for the image" linked text URL. ![image](https://user-images.githubusercontent.com/82404135/119928688-14a86f00-bf4a-11eb-97b8-34f21dc2b233.png) 4. The system loads the diagram in PNG format. ![image](https://user-images.githubusercontent.com/82404135/119928775-3e619600-bf4a-11eb-9d55-25c195ce1627.png) 5. Now, there is no system-generated BACK button to go back to the previous page. The only option to go back is to click on the browser BACK button. If the user clicks on the browser back button, the system is reset to an empty page. All the previous changes are deleted. ![image](https://user-images.githubusercontent.com/82404135/119928931-95676b00-bf4a-11eb-88ec-e7e42b6fb409.png) ## Expected Feature The system should do any of the following- 1. Open the PNG image in a separate window. 2. Upon clicking on the browser back button, the system should return to the previously saved page.
priority
download option at yuml class diagram does not provide a proper return back in umpleonline summary within the umpleonline the users can generate the yuml class diagram based on the modeling language in a sample scenario a user can create a model generate the yuml class diagram and download it steps to reproduce click the tools menu item select the example as class diagrams afghan rain design under the generate section select the target programming language as yuml class diagram click generate it scroll a bit down and click on the download the png file for the image linked text url the system loads the diagram in png format now there is no system generated back button to go back to the previous page the only option to go back is to click on the browser back button if the user clicks on the browser back button the system is reset to an empty page all the previous changes are deleted expected feature the system should do any of the following open the png image in a separate window upon clicking on the browser back button the system should return to the previously saved page
1
1,840
2,520,610,779
IssuesEvent
2015-01-19 06:09:31
AtlasOfLivingAustralia/sandbox
https://api.github.com/repos/AtlasOfLivingAustralia/sandbox
opened
Sandbox enhancements
priority-medium status-new type-enhancement
_From @djtfmartin on August 19, 2014 10:38_ *migrated from:* https://code.google.com/p/ala/issues/detail?id=145 *date:* Thu Aug 8 16:42:48 2013 *author:* moyesyside --- Original Issue reported by Project Member Reported by moyesyside, Sep 28, 2011 - [https://code.google.com/p/ala-portal/issues/detail?id=149](https://code.google.com/p/ala-portal/issues/detail?id=149) Project Member Reported by moyesyside@gmail.com, Sep 28, 2011 1) Mandatory authentication for data upload 2) Non-sequential IDs for data resources 3) Block view all - unless the user has ALA privileges 4) Dynamic facets _Copied from original issue: AtlasOfLivingAustralia/biocache-hubs#32_
1.0
Sandbox enhancements - _From @djtfmartin on August 19, 2014 10:38_ *migrated from:* https://code.google.com/p/ala/issues/detail?id=145 *date:* Thu Aug 8 16:42:48 2013 *author:* moyesyside --- Original Issue reported by Project Member Reported by moyesyside, Sep 28, 2011 - [https://code.google.com/p/ala-portal/issues/detail?id=149](https://code.google.com/p/ala-portal/issues/detail?id=149) Project Member Reported by moyesyside@gmail.com, Sep 28, 2011 1) Mandatory authentication for data upload 2) Non-sequential IDs for data resources 3) Block view all - unless the user has ALA privileges 4) Dynamic facets _Copied from original issue: AtlasOfLivingAustralia/biocache-hubs#32_
priority
sandbox enhancements from djtfmartin on august migrated from date thu aug author moyesyside original issue reported by project member reported by moyesyside sep project member reported by moyesyside gmail com sep mandatory authentication for data upload non sequential ids for data resources block view all unless the user has ala privileges dynamic facets copied from original issue atlasoflivingaustralia biocache hubs
1
246,536
7,895,390,317
IssuesEvent
2018-06-29 02:58:11
aowen87/BAR
https://api.github.com/repos/aowen87/BAR
closed
Change the default bank on the closed LC platforms to wbronze.
Expected Use: 3 - Occasional Feature Impact: 3 - Medium OS: All Priority: High Support Group: Any
-----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. The following information could not be accurately captured in the new ticket: Original author: Eric Brugger Original creation: 12/01/2014 11:54 am Original update: 12/01/2014 03:22 pm Ticket number: 2074
1.0
Change the default bank on the closed LC platforms to wbronze. - -----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. The following information could not be accurately captured in the new ticket: Original author: Eric Brugger Original creation: 12/01/2014 11:54 am Original update: 12/01/2014 03:22 pm Ticket number: 2074
priority
change the default bank on the closed lc platforms to wbronze redmine migration this ticket was migrated from redmine the following information could not be accurately captured in the new ticket original author eric brugger original creation am original update pm ticket number
1
477,654
13,765,849,155
IssuesEvent
2020-10-07 13:54:09
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
Group Admin setting - can't remove the group parent
bug component: groups hacktoberfest hacktoberfest-accepted priority: medium
**Describe the bug** If you have assigned the Group Parent and then if you have to remove the group parent from the backend then you can't remove the group parent it's not removing the group parent. **To Reproduce** Steps to reproduce the behavior: 1. Go to backend groups and edit single group. 2. Assign the group parent and click on Save. 3. Now remove the group parent click on Save. 4. Parent group not removing from the group. **Expected behavior** You can remove the group parent from the group. **Screenshots** https://www.loom.com/share/6fe310252e8d4f29a61fa06eabc656b6 **Support ticket links** If applicable, add HelpScout link or ticket number where the issue was originally reported.
1.0
Group Admin setting - can't remove the group parent - **Describe the bug** If you have assigned the Group Parent and then if you have to remove the group parent from the backend then you can't remove the group parent it's not removing the group parent. **To Reproduce** Steps to reproduce the behavior: 1. Go to backend groups and edit single group. 2. Assign the group parent and click on Save. 3. Now remove the group parent click on Save. 4. Parent group not removing from the group. **Expected behavior** You can remove the group parent from the group. **Screenshots** https://www.loom.com/share/6fe310252e8d4f29a61fa06eabc656b6 **Support ticket links** If applicable, add HelpScout link or ticket number where the issue was originally reported.
priority
group admin setting can t remove the group parent describe the bug if you have assigned the group parent and then if you have to remove the group parent from the backend then you can t remove the group parent it s not removing the group parent to reproduce steps to reproduce the behavior go to backend groups and edit single group assign the group parent and click on save now remove the group parent click on save parent group not removing from the group expected behavior you can remove the group parent from the group screenshots support ticket links if applicable add helpscout link or ticket number where the issue was originally reported
1
423,657
12,299,913,962
IssuesEvent
2020-05-11 13:12:10
canonical-web-and-design/deployment-configs
https://api.github.com/repos/canonical-web-and-design/deployment-configs
closed
Make the snap a strict one
Priority: Medium
Currently, after this [PR](https://github.com/canonical-web-and-design/deployment-configs/pull/342) the snap is a classic snap. It would be good to make the snap a strict one and use the home interface to access the configuration files.
1.0
Make the snap a strict one - Currently, after this [PR](https://github.com/canonical-web-and-design/deployment-configs/pull/342) the snap is a classic snap. It would be good to make the snap a strict one and use the home interface to access the configuration files.
priority
make the snap a strict one currently after this the snap is a classic snap it would be good to make the snap a strict one and use the home interface to access the configuration files
1
120,554
4,791,432,021
IssuesEvent
2016-10-31 12:35:18
evidenceontology/evidenceontology
https://api.github.com/repos/evidenceontology/evidenceontology
closed
missing is_a link between in situ hyb terms?
auto-migrated GeneOntology-No Priority-Medium Type-Ontology-Review
``` Should ECO:0001047 'fluorescence in situ hybridization evidence' - be is_a ECO:0000098 'in situ hybridization evidence'? I can't see why not ... thanks, midori ``` Original issue reported on code.google.com by `midori.h...@gmail.com` on 1 May 2014 at 10:25
1.0
missing is_a link between in situ hyb terms? - ``` Should ECO:0001047 'fluorescence in situ hybridization evidence' - be is_a ECO:0000098 'in situ hybridization evidence'? I can't see why not ... thanks, midori ``` Original issue reported on code.google.com by `midori.h...@gmail.com` on 1 May 2014 at 10:25
priority
missing is a link between in situ hyb terms should eco fluorescence in situ hybridization evidence be is a eco in situ hybridization evidence i can t see why not thanks midori original issue reported on code google com by midori h gmail com on may at
1
21,969
2,643,661,753
IssuesEvent
2015-03-12 12:43:21
Araq/Nim
https://api.github.com/repos/Araq/Nim
closed
idetools fails when the tacked file and the project file are in different directories
Idetools Medium Priority Tools
for a project like root main.nim subfolder file.nim a query like `nimrod idetools --trackDirty:/tmp/nimtmp.tmp,subfolder/file.nim,4,8 --suggest main.nim` will fail while a query like `nimrod idetools --trackDirty:/tmp/nimtmp.tmp,subfolder/file.nim,4,8 --suggest subfolder/file.nim` will succeed.
1.0
idetools fails when the tacked file and the project file are in different directories - for a project like root main.nim subfolder file.nim a query like `nimrod idetools --trackDirty:/tmp/nimtmp.tmp,subfolder/file.nim,4,8 --suggest main.nim` will fail while a query like `nimrod idetools --trackDirty:/tmp/nimtmp.tmp,subfolder/file.nim,4,8 --suggest subfolder/file.nim` will succeed.
priority
idetools fails when the tacked file and the project file are in different directories for a project like root main nim subfolder file nim a query like nimrod idetools trackdirty tmp nimtmp tmp subfolder file nim suggest main nim will fail while a query like nimrod idetools trackdirty tmp nimtmp tmp subfolder file nim suggest subfolder file nim will succeed
1
13,884
2,610,318,873
IssuesEvent
2015-02-26 19:42:55
chrsmith/republic-at-war
https://api.github.com/repos/chrsmith/republic-at-war
closed
Code review request
auto-migrated Priority-Medium Type-Review
``` Adjust BX commando squad size. ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 6 May 2011 at 1:58
1.0
Code review request - ``` Adjust BX commando squad size. ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 6 May 2011 at 1:58
priority
code review request adjust bx commando squad size original issue reported on code google com by gmail com on may at
1
417,786
12,179,250,580
IssuesEvent
2020-04-28 10:20:54
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[master-preview] Storage UI
Priority: Medium Status: Fixed Status: Reopen Week Task
String"Linked inventories" shouldn't move and differ from other string. How it was in 7.8.9: ![unknown (12)](https://user-images.githubusercontent.com/45708377/65494715-f9a47280-debd-11e9-8812-970dba82abca.png) It's moving now in 0.9.0 if you start scroll: ![image](https://user-images.githubusercontent.com/45708377/65494775-222c6c80-debe-11e9-8795-83e394da7b46.png)
1.0
[master-preview] Storage UI - String"Linked inventories" shouldn't move and differ from other string. How it was in 7.8.9: ![unknown (12)](https://user-images.githubusercontent.com/45708377/65494715-f9a47280-debd-11e9-8812-970dba82abca.png) It's moving now in 0.9.0 if you start scroll: ![image](https://user-images.githubusercontent.com/45708377/65494775-222c6c80-debe-11e9-8795-83e394da7b46.png)
priority
storage ui string linked inventories shouldn t move and differ from other string how it was in it s moving now in if you start scroll
1
115,129
4,652,092,321
IssuesEvent
2016-10-03 12:54:05
kduske/TrenchBroom
https://api.github.com/repos/kduske/TrenchBroom
closed
Clipped brush remains transparent
bug Platform:All Priority:Medium
- Select initial brush - Activate clip mode - Create clip plane - Switch clip side (hit Cmd+Enter twice) - Perform clip The remaining brush is transparent.
1.0
Clipped brush remains transparent - - Select initial brush - Activate clip mode - Create clip plane - Switch clip side (hit Cmd+Enter twice) - Perform clip The remaining brush is transparent.
priority
clipped brush remains transparent select initial brush activate clip mode create clip plane switch clip side hit cmd enter twice perform clip the remaining brush is transparent
1
34,021
2,774,442,339
IssuesEvent
2015-05-04 08:57:06
marvinlabs/customer-area
https://api.github.com/repos/marvinlabs/customer-area
closed
Add taxonomy parameter to shortcode
enhancement Priority - medium
We should be able to fetch private content associated to a given taxonomy term
1.0
Add taxonomy parameter to shortcode - We should be able to fetch private content associated to a given taxonomy term
priority
add taxonomy parameter to shortcode we should be able to fetch private content associated to a given taxonomy term
1
42,607
2,872,316,430
IssuesEvent
2015-06-08 11:04:15
codenameone/CodenameOne
https://api.github.com/repos/codenameone/CodenameOne
closed
ContactsModel with sorting
Priority-Medium Type-Enhancement
Original [issue 708](https://code.google.com/p/codenameone/issues/detail?id=708) created by codenameone on 2013-05-13T06:25:21.000Z: Current version of ContactsModel returns contacts in random order. In normal case it should be alphabetically sorted.
1.0
ContactsModel with sorting - Original [issue 708](https://code.google.com/p/codenameone/issues/detail?id=708) created by codenameone on 2013-05-13T06:25:21.000Z: Current version of ContactsModel returns contacts in random order. In normal case it should be alphabetically sorted.
priority
contactsmodel with sorting original created by codenameone on current version of contactsmodel returns contacts in random order in normal case it should be alphabetically sorted
1
220,168
7,353,668,725
IssuesEvent
2018-03-09 01:59:44
RoboJackets/apiary
https://api.github.com/repos/RoboJackets/apiary
closed
Attendance kiosk improvements
area / frontend priority / medium type / enhancement
- [x] Consider using non-button elements with `onClick` events so that the team buttons physically cannot have focus. - [x] Make the buttons bigger. Filling the entire screen may be a bit too aggressive but it looks like you could at least ~1.5x the height without it looking weird. - [x] Increase the "Welcome to the Shop" text size. +20pt maybe.
1.0
Attendance kiosk improvements - - [x] Consider using non-button elements with `onClick` events so that the team buttons physically cannot have focus. - [x] Make the buttons bigger. Filling the entire screen may be a bit too aggressive but it looks like you could at least ~1.5x the height without it looking weird. - [x] Increase the "Welcome to the Shop" text size. +20pt maybe.
priority
attendance kiosk improvements consider using non button elements with onclick events so that the team buttons physically cannot have focus make the buttons bigger filling the entire screen may be a bit too aggressive but it looks like you could at least the height without it looking weird increase the welcome to the shop text size maybe
1
207,685
7,132,541,546
IssuesEvent
2018-01-22 14:55:42
Cadasta/cadasta-platform
https://api.github.com/repos/Cadasta/cadasta-platform
closed
On Form Upload Required Form Fields Should be Checked For
bug priority: medium xform
### Steps to reproduce the error 1. Create project 2. Upload form without "location_type" 3. Download form to ODK 4. Fill in form 5. Send ![screenshot_20170719-141414](https://user-images.githubusercontent.com/67992/28389928-eb8c56e0-6c8c-11e7-826e-ad02dc979ef4.png) ### Expected behavior I would expect notification that location_type is a required field type.
1.0
On Form Upload Required Form Fields Should be Checked For - ### Steps to reproduce the error 1. Create project 2. Upload form without "location_type" 3. Download form to ODK 4. Fill in form 5. Send ![screenshot_20170719-141414](https://user-images.githubusercontent.com/67992/28389928-eb8c56e0-6c8c-11e7-826e-ad02dc979ef4.png) ### Expected behavior I would expect notification that location_type is a required field type.
priority
on form upload required form fields should be checked for steps to reproduce the error create project upload form without location type download form to odk fill in form send expected behavior i would expect notification that location type is a required field type
1
332,828
10,111,486,005
IssuesEvent
2019-07-30 12:52:21
RealVNF/coordination-simulation
https://api.github.com/repos/RealVNF/coordination-simulation
closed
Configure interval time in simulator config yaml
enhancement priority: medium
Instead of setting the time for the interval between actions inside the code (currently to 100, I think), this should be configurable in the simulator config yaml file to allow us to quickly and easily test different intervals. Make sure to also adjust the config in the RL repo.
1.0
Configure interval time in simulator config yaml - Instead of setting the time for the interval between actions inside the code (currently to 100, I think), this should be configurable in the simulator config yaml file to allow us to quickly and easily test different intervals. Make sure to also adjust the config in the RL repo.
priority
configure interval time in simulator config yaml instead of setting the time for the interval between actions inside the code currently to i think this should be configurable in the simulator config yaml file to allow us to quickly and easily test different intervals make sure to also adjust the config in the rl repo
1
549,695
16,098,226,328
IssuesEvent
2021-04-27 05:20:35
RaenonX-DL/dragalia-data-parse
https://api.github.com/repos/RaenonX-DL/dragalia-data-parse
opened
Index of unchecked unit data parsing
Priority-Medium Type-Enhancements
- P5S: #25 - V!Chelsea, Ryszarda: #30 - Faris - Eirene, Finni - G!Notte, Myriam - Alberius - HuMerc
1.0
Index of unchecked unit data parsing - - P5S: #25 - V!Chelsea, Ryszarda: #30 - Faris - Eirene, Finni - G!Notte, Myriam - Alberius - HuMerc
priority
index of unchecked unit data parsing v chelsea ryszarda faris eirene finni g notte myriam alberius humerc
1
648,792
21,194,105,186
IssuesEvent
2022-04-08 21:13:22
zeyneplervesarp/swe574-javagang
https://api.github.com/repos/zeyneplervesarp/swe574-javagang
closed
add zoom/physical selection to services and events
help wanted frontend backend high priority difficulty-medium
Must add a physical/ongoing selection to service creation page.
1.0
add zoom/physical selection to services and events - Must add a physical/ongoing selection to service creation page.
priority
add zoom physical selection to services and events must add a physical ongoing selection to service creation page
1
73,522
3,413,268,008
IssuesEvent
2015-12-06 15:21:49
SuperTux/supertux
https://api.github.com/repos/SuperTux/supertux
opened
Review credits
category:meta priority:medium
As mentioned in #243, the credits should be updated to include contributors after 0.3.5a, but also those who were forgotten to be added in the previous releases. To get a list of all git authors ever, you can run `git log --pretty=format:"%aN %aE" | sort -u` in the git repo (taken from revision e6ed7b1, expires in 1 month: <https://zerobin.net/?9d1b88226b83076e#DXnbF/Bl4KTi3QIE+qTrVfTGrc+uiu2hWKOYjfqlk5w=>) This list should be reviewed and the contributors should be mentioned in some way appropriate to their contributions (possibly: bigger contributions -> big mention, at least one commit: small mention in a category: "Other contributors").
1.0
Review credits - As mentioned in #243, the credits should be updated to include contributors after 0.3.5a, but also those who were forgotten to be added in the previous releases. To get a list of all git authors ever, you can run `git log --pretty=format:"%aN %aE" | sort -u` in the git repo (taken from revision e6ed7b1, expires in 1 month: <https://zerobin.net/?9d1b88226b83076e#DXnbF/Bl4KTi3QIE+qTrVfTGrc+uiu2hWKOYjfqlk5w=>) This list should be reviewed and the contributors should be mentioned in some way appropriate to their contributions (possibly: bigger contributions -> big mention, at least one commit: small mention in a category: "Other contributors").
priority
review credits as mentioned in the credits should be updated to include contributors after but also those who were forgotten to be added in the previous releases to get a list of all git authors ever you can run git log pretty format an ae sort u in the git repo taken from revision expires in month this list should be reviewed and the contributors should be mentioned in some way appropriate to their contributions possibly bigger contributions big mention at least one commit small mention in a category other contributors
1
241,273
7,810,979,461
IssuesEvent
2018-06-12 08:44:05
Codaone/DEXBot
https://api.github.com/repos/Codaone/DEXBot
opened
[Logic] Store trade and transfer history for further use
Priority: Medium Status: Available Type: Enhancement
To prepare for profit calculation, other displayed statistics, and trade history export; store all trades and transfers. I can imagine it might be a small challenge to get data of transactions that occurred during offline, but that is as important.
1.0
[Logic] Store trade and transfer history for further use - To prepare for profit calculation, other displayed statistics, and trade history export; store all trades and transfers. I can imagine it might be a small challenge to get data of transactions that occurred during offline, but that is as important.
priority
store trade and transfer history for further use to prepare for profit calculation other displayed statistics and trade history export store all trades and transfers i can imagine it might be a small challenge to get data of transactions that occurred during offline but that is as important
1
40,674
2,868,935,455
IssuesEvent
2015-06-05 22:03:29
dart-lang/pub
https://api.github.com/repos/dart-lang/pub
closed
Pub oauth2 test fails with RangeError
bug Fixed Priority-Medium
<a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)** _Originally opened as dart-lang/sdk#7015_ ---- Logs: http://build.chromium.org/p/client.dart/builders/pub-win/builds/814/steps/pub%20tests%20failures/logs/stdio
1.0
Pub oauth2 test fails with RangeError - <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)** _Originally opened as dart-lang/sdk#7015_ ---- Logs: http://build.chromium.org/p/client.dart/builders/pub-win/builds/814/steps/pub%20tests%20failures/logs/stdio
priority
pub test fails with rangeerror issue by originally opened as dart lang sdk logs
1
276,587
8,600,877,718
IssuesEvent
2018-11-16 09:12:07
TerriaJS/NorthernAustralia
https://api.github.com/repos/TerriaJS/NorthernAustralia
closed
Update the Mines and Minerals layers (csv)
Medium priority fix in PR
Currently the Mines and Minerals csv layer is based on an old version of the GA service Mines and Mineral Deposits. The service has been updated, and the csv layer (legend by commodity, not by operating status) has to be updated as well. The new service: http://services.ga.gov.au/earthresource/ows
1.0
Update the Mines and Minerals layers (csv) - Currently the Mines and Minerals csv layer is based on an old version of the GA service Mines and Mineral Deposits. The service has been updated, and the csv layer (legend by commodity, not by operating status) has to be updated as well. The new service: http://services.ga.gov.au/earthresource/ows
priority
update the mines and minerals layers csv currently the mines and minerals csv layer is based on an old version of the ga service mines and mineral deposits the service has been updated and the csv layer legend by commodity not by operating status has to be updated as well the new service
1
135,194
5,243,942,727
IssuesEvent
2017-01-31 22:03:56
vmware/vic
https://api.github.com/repos/vmware/vic
opened
Acceptability of 1st party VIB for configuring firewall
kind/investigation priority/medium
As a customer of VIC, I do not want to have to apply per ESX host firewall configuration. As an enterprise customer I have strict processes for approving which VIBs may be deployed to hosts and appreciate alternative solutions Using a VIB to configure firewall rules means: * viadmin should confirm that ESX firewall rule update will be applied to cluster hosts * viadmin will need to ensure that VIB is applied to all new hosts before they're added to the cluster (VUM, manual, or otherwise) Question: - [ ] is VIB based firewall config acceptable as the only solution? - [ ] is there a specific customer segment for whom VIBs in general could/would be an issue? - [ ] is there a specific customer segment for whom needing to add VIBs to new cluster hosts before hosts become viable VIC targets could/would be an issue? Related: #3643
1.0
Acceptability of 1st party VIB for configuring firewall - As a customer of VIC, I do not want to have to apply per ESX host firewall configuration. As an enterprise customer I have strict processes for approving which VIBs may be deployed to hosts and appreciate alternative solutions Using a VIB to configure firewall rules means: * viadmin should confirm that ESX firewall rule update will be applied to cluster hosts * viadmin will need to ensure that VIB is applied to all new hosts before they're added to the cluster (VUM, manual, or otherwise) Question: - [ ] is VIB based firewall config acceptable as the only solution? - [ ] is there a specific customer segment for whom VIBs in general could/would be an issue? - [ ] is there a specific customer segment for whom needing to add VIBs to new cluster hosts before hosts become viable VIC targets could/would be an issue? Related: #3643
priority
acceptability of party vib for configuring firewall as a customer of vic i do not want to have to apply per esx host firewall configuration as an enterprise customer i have strict processes for approving which vibs may be deployed to hosts and appreciate alternative solutions using a vib to configure firewall rules means viadmin should confirm that esx firewall rule update will be applied to cluster hosts viadmin will need to ensure that vib is applied to all new hosts before they re added to the cluster vum manual or otherwise question is vib based firewall config acceptable as the only solution is there a specific customer segment for whom vibs in general could would be an issue is there a specific customer segment for whom needing to add vibs to new cluster hosts before hosts become viable vic targets could would be an issue related
1
42,282
2,870,028,070
IssuesEvent
2015-06-06 19:08:33
Baystation12/Baystation12
https://api.github.com/repos/Baystation12/Baystation12
closed
[Dev-freeze] AI latejoin runtime
priority: medium runtime error
```` runtime error: Cannot read null.species proc name: get icon (/obj/item/organ/external/head/get_icon) source file: organ_icon.dm,38 usr: null src: the head (/obj/item/organ/external/head) call stack: the head (/obj/item/organ/external/head): get icon() the head (/obj/item/organ/external/head): New(null, null) ````
1.0
[Dev-freeze] AI latejoin runtime - ```` runtime error: Cannot read null.species proc name: get icon (/obj/item/organ/external/head/get_icon) source file: organ_icon.dm,38 usr: null src: the head (/obj/item/organ/external/head) call stack: the head (/obj/item/organ/external/head): get icon() the head (/obj/item/organ/external/head): New(null, null) ````
priority
ai latejoin runtime runtime error cannot read null species proc name get icon obj item organ external head get icon source file organ icon dm usr null src the head obj item organ external head call stack the head obj item organ external head get icon the head obj item organ external head new null null
1
609,897
18,889,762,314
IssuesEvent
2021-11-15 11:54:52
enviroCar/enviroCar-app
https://api.github.com/repos/enviroCar/enviroCar-app
closed
Missing log file in issue report
bug 3 - Done Priority - 2 - Medium
**Description** For some devices (e.g. Huawei P10) it could be observed that the log files are not attached to email when an issue report should be sent. **Workaround** You'll find the issue reported stored in the cache folder of the enviroCar data directory on your device, which can be sent manually by email. **Possible fix** As mentioned in the [Android documentation](https://developer.android.com/guide/components/intents-common#ComposeEmail) use `ACTION_SEND` intent instead of `ACTION_SENDTO`. In addition, make use of [Android FileProvider](https://developer.android.com/reference/androidx/core/content/FileProvider) for secure sharing of the file between the eviroCar app and the email app.
1.0
Missing log file in issue report - **Description** For some devices (e.g. Huawei P10) it could be observed that the log files are not attached to email when an issue report should be sent. **Workaround** You'll find the issue reported stored in the cache folder of the enviroCar data directory on your device, which can be sent manually by email. **Possible fix** As mentioned in the [Android documentation](https://developer.android.com/guide/components/intents-common#ComposeEmail) use `ACTION_SEND` intent instead of `ACTION_SENDTO`. In addition, make use of [Android FileProvider](https://developer.android.com/reference/androidx/core/content/FileProvider) for secure sharing of the file between the eviroCar app and the email app.
priority
missing log file in issue report description for some devices e g huawei it could be observed that the log files are not attached to email when an issue report should be sent workaround you ll find the issue reported stored in the cache folder of the envirocar data directory on your device which can be sent manually by email possible fix as mentioned in the use action send intent instead of action sendto in addition make use of for secure sharing of the file between the evirocar app and the email app
1
503,698
14,597,005,058
IssuesEvent
2020-12-20 18:13:17
bounswe/bounswe2020group3
https://api.github.com/repos/bounswe/bounswe2020group3
closed
[Front-End] Changing old profile paths to "with" id
Frontend Priority: Medium Type: Enhancement
* **Project: FRONTEND** * **This is a: FEATURE REQUEST** * **Description of the issue** We need to change the profile page locations to be with ids at the end for showing other profiles. Both for sidebar and navbar * **Deadline for resolution:** 22.12.2020
1.0
[Front-End] Changing old profile paths to "with" id - * **Project: FRONTEND** * **This is a: FEATURE REQUEST** * **Description of the issue** We need to change the profile page locations to be with ids at the end for showing other profiles. Both for sidebar and navbar * **Deadline for resolution:** 22.12.2020
priority
changing old profile paths to with id project frontend this is a feature request description of the issue we need to change the profile page locations to be with ids at the end for showing other profiles both for sidebar and navbar deadline for resolution
1
788,702
27,762,362,861
IssuesEvent
2023-03-16 09:12:26
containrrr/watchtower
https://api.github.com/repos/containrrr/watchtower
closed
Random update off-schedule, no logs
Type: Bug Priority: Medium Status: Available
### Describe the bug I have watchtower set up to send notifications to me via Telegram when an update occurs. I got a notification at 14:07 UTC today that one of my containers was updated to the latest tag (rustdesk/rustdesk-server:latest image (24f56bdbd4e2) - which is correct, that is the latest image at this point). What makes me suspicious about this is that a) my schedule for updates is set to ` "0 0 8/12 * * *"` and I do NOT have the HTTP API enabled (only `--http-api-metrics` with a `WATCHTOWER_HTTP_API_TOKEN` set to a 29 character string, since updated to a new 64-byte value) and b) there was nothing showing up in `docker logs` about this update happening. Last reboot of this server was 16 days ago and the watchtower docker image had been running for 14 days at this point. I've since realized that I had the metrics API exposed externally, I've now changed the port to be exposed only on 127.0.0.1. ### Steps to reproduce No idea? ### Expected behavior Updates should have happened only at 8am/pm UTC per my schedule setup, or there should at least be an entry in the log if the update was triggered by something else. ### Screenshots _No response_ ### Environment - Platform: Debian GNU/Linux 11 (bullseye) - Architecture: x86_64 - Docker Version: 23.0.1 ### Your logs ```text N/A - one-time occurrence and I didn't have `--debug` enabled at the time. ``` ### Additional context I'm concerned that this might have been somebody accessing my server, but I cannot find any evidence of logins or fail2ban entries that might be relevant (not to say there aren't any, I'm not a security expert, but I did look).
1.0
Random update off-schedule, no logs - ### Describe the bug I have watchtower set up to send notifications to me via Telegram when an update occurs. I got a notification at 14:07 UTC today that one of my containers was updated to the latest tag (rustdesk/rustdesk-server:latest image (24f56bdbd4e2) - which is correct, that is the latest image at this point). What makes me suspicious about this is that a) my schedule for updates is set to ` "0 0 8/12 * * *"` and I do NOT have the HTTP API enabled (only `--http-api-metrics` with a `WATCHTOWER_HTTP_API_TOKEN` set to a 29 character string, since updated to a new 64-byte value) and b) there was nothing showing up in `docker logs` about this update happening. Last reboot of this server was 16 days ago and the watchtower docker image had been running for 14 days at this point. I've since realized that I had the metrics API exposed externally, I've now changed the port to be exposed only on 127.0.0.1. ### Steps to reproduce No idea? ### Expected behavior Updates should have happened only at 8am/pm UTC per my schedule setup, or there should at least be an entry in the log if the update was triggered by something else. ### Screenshots _No response_ ### Environment - Platform: Debian GNU/Linux 11 (bullseye) - Architecture: x86_64 - Docker Version: 23.0.1 ### Your logs ```text N/A - one-time occurrence and I didn't have `--debug` enabled at the time. ``` ### Additional context I'm concerned that this might have been somebody accessing my server, but I cannot find any evidence of logins or fail2ban entries that might be relevant (not to say there aren't any, I'm not a security expert, but I did look).
priority
random update off schedule no logs describe the bug i have watchtower set up to send notifications to me via telegram when an update occurs i got a notification at utc today that one of my containers was updated to the latest tag rustdesk rustdesk server latest image which is correct that is the latest image at this point what makes me suspicious about this is that a my schedule for updates is set to and i do not have the http api enabled only http api metrics with a watchtower http api token set to a character string since updated to a new byte value and b there was nothing showing up in docker logs about this update happening last reboot of this server was days ago and the watchtower docker image had been running for days at this point i ve since realized that i had the metrics api exposed externally i ve now changed the port to be exposed only on steps to reproduce no idea expected behavior updates should have happened only at pm utc per my schedule setup or there should at least be an entry in the log if the update was triggered by something else screenshots no response environment platform debian gnu linux bullseye architecture docker version your logs text n a one time occurrence and i didn t have debug enabled at the time additional context i m concerned that this might have been somebody accessing my server but i cannot find any evidence of logins or entries that might be relevant not to say there aren t any i m not a security expert but i did look
1
67,437
3,273,629,697
IssuesEvent
2015-10-26 04:25:36
npgall/cqengine
https://api.github.com/repos/npgall/cqengine
closed
Null pointer exception indexed attribute has null value.
auto-migrated Priority-Medium Type-Enhancement
``` What steps will reproduce the problem? 1.Create IndexedCollection for a POJO type and add index on any attribute. 2.Add a object of that POJO with indexed attribute null. 3. Works with empty string. What is the expected output? What do you see instead? Should behave as with empty string even with complex type is null there. Otherwise user have to check and set empty string for null. What version of the product are you using? On what operating system? 0.9.1-all Please provide any additional information below. ``` Original issue reported on code.google.com by `SylentPr...@gmail.com` on 25 Oct 2012 at 2:47
1.0
Null pointer exception indexed attribute has null value. - ``` What steps will reproduce the problem? 1.Create IndexedCollection for a POJO type and add index on any attribute. 2.Add a object of that POJO with indexed attribute null. 3. Works with empty string. What is the expected output? What do you see instead? Should behave as with empty string even with complex type is null there. Otherwise user have to check and set empty string for null. What version of the product are you using? On what operating system? 0.9.1-all Please provide any additional information below. ``` Original issue reported on code.google.com by `SylentPr...@gmail.com` on 25 Oct 2012 at 2:47
priority
null pointer exception indexed attribute has null value what steps will reproduce the problem create indexedcollection for a pojo type and add index on any attribute add a object of that pojo with indexed attribute null works with empty string what is the expected output what do you see instead should behave as with empty string even with complex type is null there otherwise user have to check and set empty string for null what version of the product are you using on what operating system all please provide any additional information below original issue reported on code google com by sylentpr gmail com on oct at
1
251,110
8,000,227,153
IssuesEvent
2018-07-22 13:32:30
Amaroq7/SPMod
https://api.github.com/repos/Amaroq7/SPMod
closed
Cvar manager
Priority: Medium enhancement
## Description <!-- Describe the bug (when does it occur, was it present in the earlier versions, etc.) --> Create manager for cvar. We should know what plugin create a cvar. Cvar access from plugin should be faster than now, we don't have any cache system. <!-- What operating system the server is being run on --> - Operating system: <!-- Type sv_version in the server's console --> - ReHLDS version: <!-- Type meta version in the server's console --> - Metamod version: <!-- Type spmod version in the server's console --> - SPMod version: ## How do we replicate the issue? <!-- Please be specific as possible. Use dashes (-) or numbers (1.) to create a list of steps --> ## Expected behavior (i.e. solution) <!-- What should have happened? --> ## Other Comments Issue for projects list
1.0
Cvar manager - ## Description <!-- Describe the bug (when does it occur, was it present in the earlier versions, etc.) --> Create manager for cvar. We should know what plugin create a cvar. Cvar access from plugin should be faster than now, we don't have any cache system. <!-- What operating system the server is being run on --> - Operating system: <!-- Type sv_version in the server's console --> - ReHLDS version: <!-- Type meta version in the server's console --> - Metamod version: <!-- Type spmod version in the server's console --> - SPMod version: ## How do we replicate the issue? <!-- Please be specific as possible. Use dashes (-) or numbers (1.) to create a list of steps --> ## Expected behavior (i.e. solution) <!-- What should have happened? --> ## Other Comments Issue for projects list
priority
cvar manager description create manager for cvar we should know what plugin create a cvar cvar access from plugin should be faster than now we don t have any cache system operating system rehlds version metamod version spmod version how do we replicate the issue expected behavior i e solution other comments issue for projects list
1
89,375
3,793,308,812
IssuesEvent
2016-03-22 13:30:55
igabriel85/IeAT-DICE-Repository
https://api.github.com/repos/igabriel85/IeAT-DICE-Repository
closed
Create resource for stopping ES, LS and node aux components
bug Medium Priority needs verification
These resources will not generate any new configuration files. They will use the old ones. Create: /dmon/v1/overlord/aux/{auxComp}/start -> that have status "Stopped" /dmon/v1/overlord/aux/{auxComp}/stop -> that have status "Running" /dmon/v1/overlord/core/es/start -> every instance of es that has ESCoreStatus "Stopped" /dmon/v1/overlord/core/es/stop -> every instance of es that has ESCoreStatus "Running" /dmon/v1/overlord/core/ls/start -> every instance of ls that has LSCoreStatus "Stopped" /dmon/v1/overlord/core/ls/stop -> every instance of ls that has LSCoreStatus "Running" /dmon/v1/overlord/core/halt -> stop everything (optional)
1.0
Create resource for stopping ES, LS and node aux components - These resources will not generate any new configuration files. They will use the old ones. Create: /dmon/v1/overlord/aux/{auxComp}/start -> that have status "Stopped" /dmon/v1/overlord/aux/{auxComp}/stop -> that have status "Running" /dmon/v1/overlord/core/es/start -> every instance of es that has ESCoreStatus "Stopped" /dmon/v1/overlord/core/es/stop -> every instance of es that has ESCoreStatus "Running" /dmon/v1/overlord/core/ls/start -> every instance of ls that has LSCoreStatus "Stopped" /dmon/v1/overlord/core/ls/stop -> every instance of ls that has LSCoreStatus "Running" /dmon/v1/overlord/core/halt -> stop everything (optional)
priority
create resource for stopping es ls and node aux components these resources will not generate any new configuration files they will use the old ones create dmon overlord aux auxcomp start that have status stopped dmon overlord aux auxcomp stop that have status running dmon overlord core es start every instance of es that has escorestatus stopped dmon overlord core es stop every instance of es that has escorestatus running dmon overlord core ls start every instance of ls that has lscorestatus stopped dmon overlord core ls stop every instance of ls that has lscorestatus running dmon overlord core halt stop everything optional
1
553,279
16,361,773,049
IssuesEvent
2021-05-14 10:35:10
DIT112-V21/group-03
https://api.github.com/repos/DIT112-V21/group-03
closed
Switch Control Mode
Medium Priority UI sprint#3 sprint#4 user story
As a pet owner, I want to be able to switch control mode so that I can choose one that suits me Acceptance criteria - The user can choose between two options, manual and race mode
1.0
Switch Control Mode - As a pet owner, I want to be able to switch control mode so that I can choose one that suits me Acceptance criteria - The user can choose between two options, manual and race mode
priority
switch control mode as a pet owner i want to be able to switch control mode so that i can choose one that suits me acceptance criteria the user can choose between two options manual and race mode
1
78,609
3,511,587,794
IssuesEvent
2016-01-10 11:46:54
kendraio/kendra_home
https://api.github.com/repos/kendraio/kendra_home
opened
Users should receive newsletter after being validated and approved
Medium Priority
Users are added to the newsletter whilst still unvalidated and unapproved. Not sure if there is an easy way to avoid this but it would be nice if they didn't get added to the newsletter straight away. Especially since they may register with an invalid email and that will create a bounce in MailChimp.
1.0
Users should receive newsletter after being validated and approved - Users are added to the newsletter whilst still unvalidated and unapproved. Not sure if there is an easy way to avoid this but it would be nice if they didn't get added to the newsletter straight away. Especially since they may register with an invalid email and that will create a bounce in MailChimp.
priority
users should receive newsletter after being validated and approved users are added to the newsletter whilst still unvalidated and unapproved not sure if there is an easy way to avoid this but it would be nice if they didn t get added to the newsletter straight away especially since they may register with an invalid email and that will create a bounce in mailchimp
1
392,184
11,584,587,429
IssuesEvent
2020-02-22 18:11:49
JensenJ/AncientCityBuilder
https://api.github.com/repos/JensenJ/AncientCityBuilder
closed
[BUG] Tab System Glitching
bug medium priority
**Describe the bug** When an animation for tab switching is playing, if the user selects another tab, the page glitches out and does not display the animations correctly and also disables the page UI. This also happens if you select the same tab that you are already on, preventing the usage of the UI. **To Reproduce** Steps to reproduce the behavior: 1. Press a tab 2. Press the same tab again 3. Watch issue 1. Press a tab 2. While the animation is still playing for the first tab opening, select another tab 3. Watch issue **Expected behavior** The page shouldn't glitch when selecting the same tab, the input should be ignored or refresh the page. When selecting another tab while the animation is playing the animation should be queued up to prevent this glitch happening. This all could also be resolved by disabling input on the tab system until the animation is complete.
1.0
[BUG] Tab System Glitching - **Describe the bug** When an animation for tab switching is playing, if the user selects another tab, the page glitches out and does not display the animations correctly and also disables the page UI. This also happens if you select the same tab that you are already on, preventing the usage of the UI. **To Reproduce** Steps to reproduce the behavior: 1. Press a tab 2. Press the same tab again 3. Watch issue 1. Press a tab 2. While the animation is still playing for the first tab opening, select another tab 3. Watch issue **Expected behavior** The page shouldn't glitch when selecting the same tab, the input should be ignored or refresh the page. When selecting another tab while the animation is playing the animation should be queued up to prevent this glitch happening. This all could also be resolved by disabling input on the tab system until the animation is complete.
priority
tab system glitching describe the bug when an animation for tab switching is playing if the user selects another tab the page glitches out and does not display the animations correctly and also disables the page ui this also happens if you select the same tab that you are already on preventing the usage of the ui to reproduce steps to reproduce the behavior press a tab press the same tab again watch issue press a tab while the animation is still playing for the first tab opening select another tab watch issue expected behavior the page shouldn t glitch when selecting the same tab the input should be ignored or refresh the page when selecting another tab while the animation is playing the animation should be queued up to prevent this glitch happening this all could also be resolved by disabling input on the tab system until the animation is complete
1
830,513
32,010,996,629
IssuesEvent
2023-09-21 17:59:26
cds-snc/notification-planning
https://api.github.com/repos/cds-snc/notification-planning
closed
API key "last used" date is incorrect [bug-bogue]
Bug | Bogue Medium Priority | Priorité moyenne Dev
## Describe the bug In admin, the "Last used" date listed for API keys can be incorrect for keys that were last used a while ago. ## [Bug Severity](https://docs.google.com/document/d/1tcD32bjJRaREsMgaUEoXAk400y1dKzzaKR0G5Sr1w20/edit) SEV-3 Minor ## To Reproduce Steps to reproduce the behaviour: 1. Go to a service that has an API key that was last used 1 year ago (not sure how old it has to be exactly but 1 year should be plenty). For example: https://notification.canada.ca/services/01a0f347-3ecd-44a2-bf83-e1385166fbf5/api/keys 2. Note that the API keys all say: `Last used: Never` 3. Query for keys attached to this service in the DB and observe that they have been used before. They are attached to some notifications in the `notification_history` table ## Expected behaviour API keys that have been used should have a correct value for "Last used". ## Impact Impact on Notify users: Confusion Impact on Notify team: Confusion when dealing with support issues ## Additional context Here is the bug: https://github.com/cds-snc/notification-api/blob/main/app/dao/fact_notification_status_dao.py#L329-L342 That query only checks the `notifications` table, and not the `notification_history` table.
1.0
API key "last used" date is incorrect [bug-bogue] - ## Describe the bug In admin, the "Last used" date listed for API keys can be incorrect for keys that were last used a while ago. ## [Bug Severity](https://docs.google.com/document/d/1tcD32bjJRaREsMgaUEoXAk400y1dKzzaKR0G5Sr1w20/edit) SEV-3 Minor ## To Reproduce Steps to reproduce the behaviour: 1. Go to a service that has an API key that was last used 1 year ago (not sure how old it has to be exactly but 1 year should be plenty). For example: https://notification.canada.ca/services/01a0f347-3ecd-44a2-bf83-e1385166fbf5/api/keys 2. Note that the API keys all say: `Last used: Never` 3. Query for keys attached to this service in the DB and observe that they have been used before. They are attached to some notifications in the `notification_history` table ## Expected behaviour API keys that have been used should have a correct value for "Last used". ## Impact Impact on Notify users: Confusion Impact on Notify team: Confusion when dealing with support issues ## Additional context Here is the bug: https://github.com/cds-snc/notification-api/blob/main/app/dao/fact_notification_status_dao.py#L329-L342 That query only checks the `notifications` table, and not the `notification_history` table.
priority
api key last used date is incorrect describe the bug in admin the last used date listed for api keys can be incorrect for keys that were last used a while ago sev minor to reproduce steps to reproduce the behaviour go to a service that has an api key that was last used year ago not sure how old it has to be exactly but year should be plenty for example note that the api keys all say last used never query for keys attached to this service in the db and observe that they have been used before they are attached to some notifications in the notification history table expected behaviour api keys that have been used should have a correct value for last used impact impact on notify users confusion impact on notify team confusion when dealing with support issues additional context here is the bug that query only checks the notifications table and not the notification history table
1
457,255
13,153,883,819
IssuesEvent
2020-08-10 05:09:58
MyDataTaiwan/logboard
https://api.github.com/repos/MyDataTaiwan/logboard
closed
左下方calendar 原本設計會依區間框選目前只會框在當日日期上
QA fix verified priority-medium
**Results** * Expected: 會依據上方 "this month ,two weeks ,this week "區間按鈕 調整下方calendar 框選區間 * Actual: 目前僅顯示當日日期圓框 **Logs** ![image](https://user-images.githubusercontent.com/62582260/88519206-50ba2d00-d024-11ea-97d9-6513e6e1b42f.png) **Environment** * mylog14-dashboard: v 0.5.0 * Chrome 瀏覽器
1.0
左下方calendar 原本設計會依區間框選目前只會框在當日日期上 - **Results** * Expected: 會依據上方 "this month ,two weeks ,this week "區間按鈕 調整下方calendar 框選區間 * Actual: 目前僅顯示當日日期圓框 **Logs** ![image](https://user-images.githubusercontent.com/62582260/88519206-50ba2d00-d024-11ea-97d9-6513e6e1b42f.png) **Environment** * mylog14-dashboard: v 0.5.0 * Chrome 瀏覽器
priority
左下方calendar 原本設計會依區間框選目前只會框在當日日期上 results expected 會依據上方 this month two weeks this week 區間按鈕 調整下方calendar 框選區間 actual 目前僅顯示當日日期圓框 logs environment dashboard v chrome 瀏覽器
1
626,708
19,831,622,083
IssuesEvent
2022-01-20 12:37:10
NottCurious/TMIndiaBot
https://api.github.com/repos/NottCurious/TMIndiaBot
closed
[v2.0] - Display the player stalking better
enhancement priority: medium
Currently the player stalking looks like a big mess, do this before doing #34
1.0
[v2.0] - Display the player stalking better - Currently the player stalking looks like a big mess, do this before doing #34
priority
display the player stalking better currently the player stalking looks like a big mess do this before doing
1
692,886
23,752,524,075
IssuesEvent
2022-08-31 22:17:20
bcgov/cas-cif
https://api.github.com/repos/bcgov/cas-cif
closed
As an Ops team member, I want to have the contact email address as a hyperlink, so that it opens up an email for me directly
enhancement User Story Medium Priority Program Area QA
#### Description: The user would like to have the email ID in view mode be a clickable link that would open up a new email with the contact address auto-filled. Wireframe of the desired outcome: ![image.png](https://images.zenhubusercontent.com/6201b10c9827341d8d5cbe9c/1c303fc0-26f7-428b-9a56-a283c0701d40 ) #### Acceptance Criteria: Given I am a CIF project manager When I see the contact email address in project view mode Then that contact email address is hyperlinked Given I am a CIF project manager When I select the email address hyperlink Then a new email is created in my outlook email addressed to the contact #### Development Checklist: - [ ] email - when present - is a `mailto:...` link - [ ] Meets the DOD **Definition of Ready** (Note: If any of these points are not applicable, mark N/A) - [x] User story is included - [x] User role and type are identified - [x] Acceptance criteria are included - [x] Wireframes are included (if required) - [x] Design / Solution is accepted by Product Owner - [ ] Dependencies are identified (technical, business, regulatory/policy) - [x] Story has been estimated (under 13 pts) ·**Definition of Done** (Note: If any of these points are not applicable, mark N/A) - [ ] Acceptance criteria are tested by the CI pipeline - [ ] UI meets accessibility requirements - [ ] Configuration changes are documented, documentation and designs are updated - [ ] Passes code peer-review - [ ] Passes QA of Acceptance Criteria with verification in Dev and Test - [ ] Ticket is ready to be merged to main branch - [x] Can be demoed in Sprint Review - [ ] Bugs or future work cards are identified and created - [x] Reviewed and approved by Product Owner #### Notes: - Based on CIF team observation prior to soft launch - Derived from notes in #555
1.0
As an Ops team member, I want to have the contact email address as a hyperlink, so that it opens up an email for me directly - #### Description: The user would like to have the email ID in view mode be a clickable link that would open up a new email with the contact address auto-filled. Wireframe of the desired outcome: ![image.png](https://images.zenhubusercontent.com/6201b10c9827341d8d5cbe9c/1c303fc0-26f7-428b-9a56-a283c0701d40 ) #### Acceptance Criteria: Given I am a CIF project manager When I see the contact email address in project view mode Then that contact email address is hyperlinked Given I am a CIF project manager When I select the email address hyperlink Then a new email is created in my outlook email addressed to the contact #### Development Checklist: - [ ] email - when present - is a `mailto:...` link - [ ] Meets the DOD **Definition of Ready** (Note: If any of these points are not applicable, mark N/A) - [x] User story is included - [x] User role and type are identified - [x] Acceptance criteria are included - [x] Wireframes are included (if required) - [x] Design / Solution is accepted by Product Owner - [ ] Dependencies are identified (technical, business, regulatory/policy) - [x] Story has been estimated (under 13 pts) ·**Definition of Done** (Note: If any of these points are not applicable, mark N/A) - [ ] Acceptance criteria are tested by the CI pipeline - [ ] UI meets accessibility requirements - [ ] Configuration changes are documented, documentation and designs are updated - [ ] Passes code peer-review - [ ] Passes QA of Acceptance Criteria with verification in Dev and Test - [ ] Ticket is ready to be merged to main branch - [x] Can be demoed in Sprint Review - [ ] Bugs or future work cards are identified and created - [x] Reviewed and approved by Product Owner #### Notes: - Based on CIF team observation prior to soft launch - Derived from notes in #555
priority
as an ops team member i want to have the contact email address as a hyperlink so that it opens up an email for me directly description the user would like to have the email id in view mode be a clickable link that would open up a new email with the contact address auto filled wireframe of the desired outcome acceptance criteria given i am a cif project manager when i see the contact email address in project view mode then that contact email address is hyperlinked given i am a cif project manager when i select the email address hyperlink then a new email is created in my outlook email addressed to the contact development checklist email when present is a mailto link meets the dod definition of ready note if any of these points are not applicable mark n a user story is included user role and type are identified acceptance criteria are included wireframes are included if required design solution is accepted by product owner dependencies are identified technical business regulatory policy story has been estimated under pts · definition of done note if any of these points are not applicable mark n a acceptance criteria are tested by the ci pipeline ui meets accessibility requirements configuration changes are documented documentation and designs are updated passes code peer review passes qa of acceptance criteria with verification in dev and test ticket is ready to be merged to main branch can be demoed in sprint review bugs or future work cards are identified and created reviewed and approved by product owner notes based on cif team observation prior to soft launch derived from notes in
1
646,500
21,050,083,479
IssuesEvent
2022-03-31 19:45:14
ibissource/frank-flow
https://api.github.com/repos/ibissource/frank-flow
closed
Starting the Frank!Flow with the Explorer collapsed will cause errors in the console
bug priority:medium work:light
**Describe the bug** Starting the Frank!Flow with the Explorer collapsed will cause errors in the console **Reporter** @philipsens **Category** Use the following Tags to categorize your bug report - Explorer **To Reproduce** Steps to reproduce the behavior: 1. Go to Frank!Flow 2. Click on "collapse Explorer" 3. Refresh Frank!Flow 4. Open console and see error **Expected behavior** Ne error. **Additional context** ```console ERROR Error: Could not find icon with iconName=trash and prefix=fas in the icon library. faWarnIfIconDefinitionMissing http://localhost:8080/frank-flow/main.js:120846 findIconDefinition http://localhost:8080/frank-flow/main.js:121179 ngOnChanges http://localhost:8080/frank-flow/main.js:121145 ```
1.0
Starting the Frank!Flow with the Explorer collapsed will cause errors in the console - **Describe the bug** Starting the Frank!Flow with the Explorer collapsed will cause errors in the console **Reporter** @philipsens **Category** Use the following Tags to categorize your bug report - Explorer **To Reproduce** Steps to reproduce the behavior: 1. Go to Frank!Flow 2. Click on "collapse Explorer" 3. Refresh Frank!Flow 4. Open console and see error **Expected behavior** Ne error. **Additional context** ```console ERROR Error: Could not find icon with iconName=trash and prefix=fas in the icon library. faWarnIfIconDefinitionMissing http://localhost:8080/frank-flow/main.js:120846 findIconDefinition http://localhost:8080/frank-flow/main.js:121179 ngOnChanges http://localhost:8080/frank-flow/main.js:121145 ```
priority
starting the frank flow with the explorer collapsed will cause errors in the console describe the bug starting the frank flow with the explorer collapsed will cause errors in the console reporter philipsens category use the following tags to categorize your bug report explorer to reproduce steps to reproduce the behavior go to frank flow click on collapse explorer refresh frank flow open console and see error expected behavior ne error additional context console error error could not find icon with iconname trash and prefix fas in the icon library fawarnificondefinitionmissing findicondefinition ngonchanges
1
414,449
12,103,579,526
IssuesEvent
2020-04-20 18:39:03
airshipit/airshipctl
https://api.github.com/repos/airshipit/airshipctl
closed
Upload container (docker) logs as Zuul artifacts
devops enhancement good first issue priority/medium ready for review
Logs of all containers which have been running (or still are running) on Zuul nodes should be uploaded to the Zuul Artifacts section at the end of CI job execution. This should be applied for all jobs in the following repositories: - airship/images - airship/airshipctl Use the following Zuul role: [fetch-output](https://opendev.org/zuul/zuul-jobs/src/branch/master/roles/fetch-output) ([docs](https://zuul-ci.org/docs/zuul-jobs/log-roles.html#role-fetch-output)).
1.0
Upload container (docker) logs as Zuul artifacts - Logs of all containers which have been running (or still are running) on Zuul nodes should be uploaded to the Zuul Artifacts section at the end of CI job execution. This should be applied for all jobs in the following repositories: - airship/images - airship/airshipctl Use the following Zuul role: [fetch-output](https://opendev.org/zuul/zuul-jobs/src/branch/master/roles/fetch-output) ([docs](https://zuul-ci.org/docs/zuul-jobs/log-roles.html#role-fetch-output)).
priority
upload container docker logs as zuul artifacts logs of all containers which have been running or still are running on zuul nodes should be uploaded to the zuul artifacts section at the end of ci job execution this should be applied for all jobs in the following repositories airship images airship airshipctl use the following zuul role
1
19,249
2,618,938,985
IssuesEvent
2015-03-03 00:03:18
chrsmith/open-ig
https://api.github.com/repos/chrsmith/open-ig
opened
Spanish translation: repaint buttons
auto-migrated Component-UI Priority-Medium Type-Enhancement
``` This is the cover issue to repaint buttons with fixed text on them. ``` Original issue reported on code.google.com by `akarn...@gmail.com` on 24 Apr 2014 at 6:26
1.0
Spanish translation: repaint buttons - ``` This is the cover issue to repaint buttons with fixed text on them. ``` Original issue reported on code.google.com by `akarn...@gmail.com` on 24 Apr 2014 at 6:26
priority
spanish translation repaint buttons this is the cover issue to repaint buttons with fixed text on them original issue reported on code google com by akarn gmail com on apr at
1
771,101
27,069,259,466
IssuesEvent
2023-02-14 04:47:16
KDT3-miniproject-team1/backend
https://api.github.com/repos/KDT3-miniproject-team1/backend
opened
[Feat] 제품 리스트 구현
For : API Priority : Medium Status : In progress Type : Feature
## 🔨개발 할 기능 금융 상품 조회 기능 기본 셋팅 ## 🧩 세부 기능 - [ ] 제품 리스트 DTO 생성 - [ ] 제품 리스트 controller 생성 ## 📖 참고 사항
1.0
[Feat] 제품 리스트 구현 - ## 🔨개발 할 기능 금융 상품 조회 기능 기본 셋팅 ## 🧩 세부 기능 - [ ] 제품 리스트 DTO 생성 - [ ] 제품 리스트 controller 생성 ## 📖 참고 사항
priority
제품 리스트 구현 🔨개발 할 기능 금융 상품 조회 기능 기본 셋팅 🧩 세부 기능 제품 리스트 dto 생성 제품 리스트 controller 생성 📖 참고 사항
1
700,023
24,042,586,142
IssuesEvent
2022-09-16 04:21:48
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YSQL] Add runtime support for Pg gFlags
kind/enhancement area/ysql priority/medium
Jira Link: [DB-3108](https://yugabyte.atlassian.net/browse/DB-3108) ### Description Pg gFlags should be runtime updatable.
1.0
[YSQL] Add runtime support for Pg gFlags - Jira Link: [DB-3108](https://yugabyte.atlassian.net/browse/DB-3108) ### Description Pg gFlags should be runtime updatable.
priority
add runtime support for pg gflags jira link description pg gflags should be runtime updatable
1
451,033
13,023,298,201
IssuesEvent
2020-07-27 09:45:57
vvMv/rpgplus
https://api.github.com/repos/vvMv/rpgplus
opened
Experience boosts
Priority: Medium Status: Accepted Type: Feature Request
**Description of the feature** Add a command that gives experience boosts for a certain amount of time, either per player or global. Can also be specified by rank. e.g: member gets 1.0 base experience, vip gets 1.2, etc.
1.0
Experience boosts - **Description of the feature** Add a command that gives experience boosts for a certain amount of time, either per player or global. Can also be specified by rank. e.g: member gets 1.0 base experience, vip gets 1.2, etc.
priority
experience boosts description of the feature add a command that gives experience boosts for a certain amount of time either per player or global can also be specified by rank e g member gets base experience vip gets etc
1
779,118
27,340,236,759
IssuesEvent
2023-02-26 18:02:40
ita-social-projects/TeachUA
https://api.github.com/repos/ita-social-projects/TeachUA
closed
Fix image gallery in club info
bug User story Frontend Priority: Medium API
Fix image gallery in club information. Delete the hard code of the images and add the images included in the club
1.0
Fix image gallery in club info - Fix image gallery in club information. Delete the hard code of the images and add the images included in the club
priority
fix image gallery in club info fix image gallery in club information delete the hard code of the images and add the images included in the club
1
732,618
25,269,494,864
IssuesEvent
2022-11-16 08:15:27
DSD-DBS/capella-collab-manager
https://api.github.com/repos/DSD-DBS/capella-collab-manager
closed
Links should use an anchor tag instead of a button
enhancement priority:medium effort:low
In order for the links to have the link features provided by the browser and for an accessibility matter, the tags containing a routerLink attribute should be anchors (<a>) instead of button. It will allow for exemple to have the feature “Open in a new” when the link is ctrl-clicked. ```html <a mat-raised-button color="primary" routerLink="/projects"> Projects </a> ``` should be privilegied over ```html <button mat-raised-button color="primary" routerLink="/projects"> Projects </button> ``` For more informations : https://www.w3.org/WAI/WCAG21/Techniques/html/H91
1.0
Links should use an anchor tag instead of a button - In order for the links to have the link features provided by the browser and for an accessibility matter, the tags containing a routerLink attribute should be anchors (<a>) instead of button. It will allow for exemple to have the feature “Open in a new” when the link is ctrl-clicked. ```html <a mat-raised-button color="primary" routerLink="/projects"> Projects </a> ``` should be privilegied over ```html <button mat-raised-button color="primary" routerLink="/projects"> Projects </button> ``` For more informations : https://www.w3.org/WAI/WCAG21/Techniques/html/H91
priority
links should use an anchor tag instead of a button in order for the links to have the link features provided by the browser and for an accessibility matter the tags containing a routerlink attribute should be anchors instead of button it will allow for exemple to have the feature “open in a new” when the link is ctrl clicked html projects should be privilegied over html projects for more informations
1
92,706
3,872,974,432
IssuesEvent
2016-04-11 15:29:01
cs2103jan2016-w13-4j/main
https://api.github.com/repos/cs2103jan2016-w13-4j/main
closed
As a user, I can access the task manager using shortcuts on a keyboard
component.ui priority.medium type.story wontfix
so that I can activate the software quickly and conveniently.
1.0
As a user, I can access the task manager using shortcuts on a keyboard - so that I can activate the software quickly and conveniently.
priority
as a user i can access the task manager using shortcuts on a keyboard so that i can activate the software quickly and conveniently
1
590,689
17,784,605,266
IssuesEvent
2021-08-31 09:31:16
scality/metalk8s
https://api.github.com/repos/scality/metalk8s
closed
Bump Kubernetes to 1.22.X impossible with current python-kubernetes version
kind:bug state:question complexity:medium release:blocker priority:urgent
**Component**: 'build' **What happened**: Currently, our salt module to interact with APIServer use python-kubernetes but python-kubernetes is a bit late on nowadays Kubernetes version (still at Kubernetes 1.18 (in beta) when creating this ticket, Kubernetes 1.22.0 just came out). https://github.com/kubernetes-client/python#compatibility Due to this old python-kubernetes version some APIs/Models are not available, like `Ingress` as part of `networking.k8s.io/v1` API and since Kubernetes 1.22.0 `Ingress` Beta APIs get removed so with the current Python-kubernetes version we cannot manage `Ingress` objects when calling APIServer 1.22.0+. https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22 **What was expected**: Our salt module interacting with APIServer should be compatible with the Kubernetes version embedded as part of MetalK8s. **Resolution proposal** (optional): TBD Several solutions possible (non ordered and maybe not exhaustive): 1. Wait for a new python-kubernetes version compatible with 1.22.0 (and likely contribute to python-kubernetes upstream to help catch up on upstream Kubernetes versions) 2. Use "pure HTTP query" in our salt module (basically get rid of python-kubernetes and do the call directly to APIServer with the right header, body, ...) that will potentially need to be maintained for future Kubernetes versions 3. Use kubectl in our salt module so that we do not have anything to maintain except if kubectl interface changes (that should **NOT** happen a lot)
1.0
Bump Kubernetes to 1.22.X impossible with current python-kubernetes version - **Component**: 'build' **What happened**: Currently, our salt module to interact with APIServer use python-kubernetes but python-kubernetes is a bit late on nowadays Kubernetes version (still at Kubernetes 1.18 (in beta) when creating this ticket, Kubernetes 1.22.0 just came out). https://github.com/kubernetes-client/python#compatibility Due to this old python-kubernetes version some APIs/Models are not available, like `Ingress` as part of `networking.k8s.io/v1` API and since Kubernetes 1.22.0 `Ingress` Beta APIs get removed so with the current Python-kubernetes version we cannot manage `Ingress` objects when calling APIServer 1.22.0+. https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22 **What was expected**: Our salt module interacting with APIServer should be compatible with the Kubernetes version embedded as part of MetalK8s. **Resolution proposal** (optional): TBD Several solutions possible (non ordered and maybe not exhaustive): 1. Wait for a new python-kubernetes version compatible with 1.22.0 (and likely contribute to python-kubernetes upstream to help catch up on upstream Kubernetes versions) 2. Use "pure HTTP query" in our salt module (basically get rid of python-kubernetes and do the call directly to APIServer with the right header, body, ...) that will potentially need to be maintained for future Kubernetes versions 3. Use kubectl in our salt module so that we do not have anything to maintain except if kubectl interface changes (that should **NOT** happen a lot)
priority
bump kubernetes to x impossible with current python kubernetes version component build what happened currently our salt module to interact with apiserver use python kubernetes but python kubernetes is a bit late on nowadays kubernetes version still at kubernetes in beta when creating this ticket kubernetes just came out due to this old python kubernetes version some apis models are not available like ingress as part of networking io api and since kubernetes ingress beta apis get removed so with the current python kubernetes version we cannot manage ingress objects when calling apiserver what was expected our salt module interacting with apiserver should be compatible with the kubernetes version embedded as part of resolution proposal optional tbd several solutions possible non ordered and maybe not exhaustive wait for a new python kubernetes version compatible with and likely contribute to python kubernetes upstream to help catch up on upstream kubernetes versions use pure http query in our salt module basically get rid of python kubernetes and do the call directly to apiserver with the right header body that will potentially need to be maintained for future kubernetes versions use kubectl in our salt module so that we do not have anything to maintain except if kubectl interface changes that should not happen a lot
1
625,826
19,767,206,472
IssuesEvent
2022-01-17 05:02:11
morpheus65535/bazarr
https://api.github.com/repos/morpheus65535/bazarr
closed
New 1.0.2 version in master released yesterday wipes the config file...
bug priority:medium cannot reproduce
**Describe the bug** Received a 500 error when in the application today checking on the progress of the remaining subtitles that we being brought in. Was on the providers page under system. Hit refresh a few times, nothing. Told it to restart using the human icon at the top right, immediately prompted for a login and my cached login didnt work. Refreshed the page and everything was back to default with no login required. No settings anywhere nor a backup config file saved in the directory. Logs show file not found on start up. I looked at the log files deeper and found that it was showing file not found since earlier in the day. Thats when i checked the version and saw that it had updated yesterday/last night. **To Reproduce** Let system auto-update. **Expected behavior** File is not overwritten or deleted. **Screenshots** If applicable, add screenshots to help explain your problem. **Software (please complete the following information):** - Bazarr: 1.0.2 master branch - Radarr version: - Sonarr version: - OS: Windows 10 **Additional context** Wouldnt mind a backup function like radarr/lidarr/sonarr have. I have synctoy setup to automatically grab the files. I will configure it to grab the config file now as i have to setup bazarr again and scan everything :( Was still testing it so i hadnt setup a basic backup yet :( Just dont know if the config file is all thats needed or not. Also, i checked the folder to make sure the app had permissions to the config file. i changed a setting, restarted bazarr and checked to see if the setting held, it did. I also verified the config file had the setting change in it.
1.0
New 1.0.2 version in master released yesterday wipes the config file... - **Describe the bug** Received a 500 error when in the application today checking on the progress of the remaining subtitles that we being brought in. Was on the providers page under system. Hit refresh a few times, nothing. Told it to restart using the human icon at the top right, immediately prompted for a login and my cached login didnt work. Refreshed the page and everything was back to default with no login required. No settings anywhere nor a backup config file saved in the directory. Logs show file not found on start up. I looked at the log files deeper and found that it was showing file not found since earlier in the day. Thats when i checked the version and saw that it had updated yesterday/last night. **To Reproduce** Let system auto-update. **Expected behavior** File is not overwritten or deleted. **Screenshots** If applicable, add screenshots to help explain your problem. **Software (please complete the following information):** - Bazarr: 1.0.2 master branch - Radarr version: - Sonarr version: - OS: Windows 10 **Additional context** Wouldnt mind a backup function like radarr/lidarr/sonarr have. I have synctoy setup to automatically grab the files. I will configure it to grab the config file now as i have to setup bazarr again and scan everything :( Was still testing it so i hadnt setup a basic backup yet :( Just dont know if the config file is all thats needed or not. Also, i checked the folder to make sure the app had permissions to the config file. i changed a setting, restarted bazarr and checked to see if the setting held, it did. I also verified the config file had the setting change in it.
priority
new version in master released yesterday wipes the config file describe the bug received a error when in the application today checking on the progress of the remaining subtitles that we being brought in was on the providers page under system hit refresh a few times nothing told it to restart using the human icon at the top right immediately prompted for a login and my cached login didnt work refreshed the page and everything was back to default with no login required no settings anywhere nor a backup config file saved in the directory logs show file not found on start up i looked at the log files deeper and found that it was showing file not found since earlier in the day thats when i checked the version and saw that it had updated yesterday last night to reproduce let system auto update expected behavior file is not overwritten or deleted screenshots if applicable add screenshots to help explain your problem software please complete the following information bazarr master branch radarr version sonarr version os windows additional context wouldnt mind a backup function like radarr lidarr sonarr have i have synctoy setup to automatically grab the files i will configure it to grab the config file now as i have to setup bazarr again and scan everything was still testing it so i hadnt setup a basic backup yet just dont know if the config file is all thats needed or not also i checked the folder to make sure the app had permissions to the config file i changed a setting restarted bazarr and checked to see if the setting held it did i also verified the config file had the setting change in it
1
802,461
28,963,410,294
IssuesEvent
2023-05-10 05:48:57
masastack/MASA.DCC
https://api.github.com/repos/masastack/MASA.DCC
closed
When a configuration object modification is not published, the "modified" label disappears.
type/bug status/resolved severity/medium site/staging priority/p3
当配置对象修改未发布时,“有修改”标签消失。 ![image](https://user-images.githubusercontent.com/95004531/237040413-8d3f7e7b-a1c6-4685-ad7f-e348f3cfbe4e.png)
1.0
When a configuration object modification is not published, the "modified" label disappears. - 当配置对象修改未发布时,“有修改”标签消失。 ![image](https://user-images.githubusercontent.com/95004531/237040413-8d3f7e7b-a1c6-4685-ad7f-e348f3cfbe4e.png)
priority
when a configuration object modification is not published the modified label disappears 当配置对象修改未发布时,“有修改”标签消失。
1
337,338
10,216,191,241
IssuesEvent
2019-08-15 09:50:27
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
[zephyr 1.14] Host does not change the RPA
bug priority: medium
**Describe the bug** It happens (about 30%) that Zephyr host does not change the RPA. **To Reproduce** Steps to reproduce the behavior: To speed up RPA address rotation, set RPA timeout to 30 seconds ```CONFIG_BT_RPA_TIMEOUT=30``` 0. Test using Zephyr bluetooth/shell app for both devices. peripheral (a) - (b) central 1a. bt init 1b. bt init 2a. bt clear all 2b. bt clear all 3a. bt advertise on 3b. bt connect REMOTE_RPA_ADDR (random) 4b. bt security 2 5b. bt disconnect 6. Observe Zephyr peripheral (a) does not change the RPA address **Expected behavior** Zephyr changes it's RPA every CONFIG_BT_RPA_TIMEOUT **Screenshots or console output** Observe RPA rotation that in frames #263 - #289 ``` < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #287 109.140400 Advertising: Disabled (0x00) > HCI Event: Command Complete (0x0e) plen 4 #288 109.140500 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #289 109.140900 Address: 74:78:B8:C4:F8:AB (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) > HCI Event: Command Complete (0x0e) plen 4 #290 109.140900 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #291 109.141200 Advertising: Enabled (0x01) ``` After the connection, pairing, disconnection ``` < HCI Command: LE Add Device To Resolving List (0x08|0x0027) plen 39 #346 144.508200 Address type: Random (0x01) Address: FE:69:8F:77:2F:49 (Static) Peer identity resolving key: 0fc94333d8498d9ac666b564b3f46abe Local identity resolving key: ebe0fd9e7d7dc8adf3c0f358006bc903 > HCI Event: Command Complete (0x0e) plen 4 #347 144.508400 LE Add Device To Resolving List (0x08|0x0027) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Privacy Mode (0x08|0x004e) plen 8 #348 144.508700 01 49 2f 77 8f 69 fe 01 .I/w.i.. > HCI Event: Command Complete (0x0e) plen 4 #349 144.508800 LE Set Privacy Mode (0x08|0x004e) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Address Resolution Enable (0x08|0x002d) plen 1 #350 144.509100 Address resolution: Enabled (0x01) > HCI Event: Command Complete (0x0e) plen 4 #351 144.509100 LE Set Address Resolution Enable (0x08|0x002d) ncmd 1 Status: Success (0x00) > ACL Data RX: Handle 0 flags 0x02 dlen 21 #352 144.509400 SMP: Signing Information (0x0a) len 16 Signature key: ef07c2b4509b247828ef6754bf6f5806 > HCI Event: Disconnect Complete (0x05) plen 4 #353 149.849800 Status: Success (0x00) Handle: 0 Reason: Remote User Terminated Connection (0x13) < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #354 150.116400 Advertising: Enabled (0x01) > HCI Event: Command Complete (0x0e) plen 4 #355 150.116600 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 31 #356 717.366800 LE Enhanced Connection Complete (0x0a) Status: Success (0x00) Handle: 0 Role: Slave (0x01) Peer address type: Resolved Random (0x03) Peer address: FE:69:8F:77:2F:49 (Static) Local resolvable private address: 74:78:B8:C4:F8:AB (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) Peer resolvable private address: 6E:63:9E:67:6D:9B (Resolvable) Identity type: Random (0x01) Identity: FE:69:8F:77:2F:49 (Static) Connection interval: 50.00 msec (0x0028) Connection latency: 0.00 msec (0x0000) Supervision timeout: 4000 msec (0x0190) Master clock accuracy: 0x07 < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #357 717.367100 Address: 65:FE:FA:57:AC:5A (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) > HCI Event: Command Complete (0x0e) plen 4 #358 717.367200 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #359 717.367600 Advertising: Enabled (0x01) > HCI Event: Command Complete (0x0e) plen 4 #360 717.367700 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Connection Limit Exceeded (0x09) ``` Note the timestamps between LE Set Advertise Enable and LE Enhanced Connection Complete ``` > HCI Event: Command Complete (0x0e) plen 4 #355 150.116600 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 31 #356 717.366800 LE Enhanced Connection Complete (0x0a) Status: Success (0x00) Handle: 0 Role: Slave (0x01) Peer address type: Resolved Random (0x03) Peer address: FE:69:8F:77:2F:49 (Static) Local resolvable private address: 74:78:B8:C4:F8:AB (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) Peer resolvable private address: 6E:63:9E:67:6D:9B (Resolvable) Identity type: Random (0x01) Identity: FE:69:8F:77:2F:49 (Static) Connection interval: 50.00 msec (0x0028) Connection latency: 0.00 msec (0x0000) Supervision timeout: 4000 msec (0x0190) Master clock accuracy: 0x07 ``` it's almost 10 minutes and Zephyr does not changed it's RPA address [gap_priv_conn_bi_01_c.btsnoop.log](https://github.com/zephyrproject-rtos/zephyr/files/3485904/gap_priv_conn_bi_01_c.btsnoop.log) **Environment (please complete the following information):** - nrf52840
1.0
[zephyr 1.14] Host does not change the RPA - **Describe the bug** It happens (about 30%) that Zephyr host does not change the RPA. **To Reproduce** Steps to reproduce the behavior: To speed up RPA address rotation, set RPA timeout to 30 seconds ```CONFIG_BT_RPA_TIMEOUT=30``` 0. Test using Zephyr bluetooth/shell app for both devices. peripheral (a) - (b) central 1a. bt init 1b. bt init 2a. bt clear all 2b. bt clear all 3a. bt advertise on 3b. bt connect REMOTE_RPA_ADDR (random) 4b. bt security 2 5b. bt disconnect 6. Observe Zephyr peripheral (a) does not change the RPA address **Expected behavior** Zephyr changes it's RPA every CONFIG_BT_RPA_TIMEOUT **Screenshots or console output** Observe RPA rotation that in frames #263 - #289 ``` < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #287 109.140400 Advertising: Disabled (0x00) > HCI Event: Command Complete (0x0e) plen 4 #288 109.140500 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #289 109.140900 Address: 74:78:B8:C4:F8:AB (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) > HCI Event: Command Complete (0x0e) plen 4 #290 109.140900 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #291 109.141200 Advertising: Enabled (0x01) ``` After the connection, pairing, disconnection ``` < HCI Command: LE Add Device To Resolving List (0x08|0x0027) plen 39 #346 144.508200 Address type: Random (0x01) Address: FE:69:8F:77:2F:49 (Static) Peer identity resolving key: 0fc94333d8498d9ac666b564b3f46abe Local identity resolving key: ebe0fd9e7d7dc8adf3c0f358006bc903 > HCI Event: Command Complete (0x0e) plen 4 #347 144.508400 LE Add Device To Resolving List (0x08|0x0027) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Privacy Mode (0x08|0x004e) plen 8 #348 144.508700 01 49 2f 77 8f 69 fe 01 .I/w.i.. > HCI Event: Command Complete (0x0e) plen 4 #349 144.508800 LE Set Privacy Mode (0x08|0x004e) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Address Resolution Enable (0x08|0x002d) plen 1 #350 144.509100 Address resolution: Enabled (0x01) > HCI Event: Command Complete (0x0e) plen 4 #351 144.509100 LE Set Address Resolution Enable (0x08|0x002d) ncmd 1 Status: Success (0x00) > ACL Data RX: Handle 0 flags 0x02 dlen 21 #352 144.509400 SMP: Signing Information (0x0a) len 16 Signature key: ef07c2b4509b247828ef6754bf6f5806 > HCI Event: Disconnect Complete (0x05) plen 4 #353 149.849800 Status: Success (0x00) Handle: 0 Reason: Remote User Terminated Connection (0x13) < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #354 150.116400 Advertising: Enabled (0x01) > HCI Event: Command Complete (0x0e) plen 4 #355 150.116600 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 31 #356 717.366800 LE Enhanced Connection Complete (0x0a) Status: Success (0x00) Handle: 0 Role: Slave (0x01) Peer address type: Resolved Random (0x03) Peer address: FE:69:8F:77:2F:49 (Static) Local resolvable private address: 74:78:B8:C4:F8:AB (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) Peer resolvable private address: 6E:63:9E:67:6D:9B (Resolvable) Identity type: Random (0x01) Identity: FE:69:8F:77:2F:49 (Static) Connection interval: 50.00 msec (0x0028) Connection latency: 0.00 msec (0x0000) Supervision timeout: 4000 msec (0x0190) Master clock accuracy: 0x07 < HCI Command: LE Set Random Address (0x08|0x0005) plen 6 #357 717.367100 Address: 65:FE:FA:57:AC:5A (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) > HCI Event: Command Complete (0x0e) plen 4 #358 717.367200 LE Set Random Address (0x08|0x0005) ncmd 1 Status: Success (0x00) < HCI Command: LE Set Advertise Enable (0x08|0x000a) plen 1 #359 717.367600 Advertising: Enabled (0x01) > HCI Event: Command Complete (0x0e) plen 4 #360 717.367700 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Connection Limit Exceeded (0x09) ``` Note the timestamps between LE Set Advertise Enable and LE Enhanced Connection Complete ``` > HCI Event: Command Complete (0x0e) plen 4 #355 150.116600 LE Set Advertise Enable (0x08|0x000a) ncmd 1 Status: Success (0x00) > HCI Event: LE Meta Event (0x3e) plen 31 #356 717.366800 LE Enhanced Connection Complete (0x0a) Status: Success (0x00) Handle: 0 Role: Slave (0x01) Peer address type: Resolved Random (0x03) Peer address: FE:69:8F:77:2F:49 (Static) Local resolvable private address: 74:78:B8:C4:F8:AB (Resolvable) Identity type: Random (0x01) Identity: DD:AD:FB:8F:B7:AE (Static) Peer resolvable private address: 6E:63:9E:67:6D:9B (Resolvable) Identity type: Random (0x01) Identity: FE:69:8F:77:2F:49 (Static) Connection interval: 50.00 msec (0x0028) Connection latency: 0.00 msec (0x0000) Supervision timeout: 4000 msec (0x0190) Master clock accuracy: 0x07 ``` it's almost 10 minutes and Zephyr does not changed it's RPA address [gap_priv_conn_bi_01_c.btsnoop.log](https://github.com/zephyrproject-rtos/zephyr/files/3485904/gap_priv_conn_bi_01_c.btsnoop.log) **Environment (please complete the following information):** - nrf52840
priority
host does not change the rpa describe the bug it happens about that zephyr host does not change the rpa to reproduce steps to reproduce the behavior to speed up rpa address rotation set rpa timeout to seconds config bt rpa timeout test using zephyr bluetooth shell app for both devices peripheral a b central bt init bt init bt clear all bt clear all bt advertise on bt connect remote rpa addr random bt security bt disconnect observe zephyr peripheral a does not change the rpa address expected behavior zephyr changes it s rpa every config bt rpa timeout screenshots or console output observe rpa rotation that in frames hci command le set advertise enable plen advertising disabled hci event command complete plen le set advertise enable ncmd status success hci command le set random address plen address ab resolvable identity type random identity dd ad fb ae static hci event command complete plen le set random address ncmd status success hci command le set advertise enable plen advertising enabled after the connection pairing disconnection hci command le add device to resolving list plen address type random address fe static peer identity resolving key local identity resolving key hci event command complete plen le add device to resolving list ncmd status success hci command le set privacy mode plen fe i w i hci event command complete plen le set privacy mode ncmd status success hci command le set address resolution enable plen address resolution enabled hci event command complete plen le set address resolution enable ncmd status success acl data rx handle flags dlen smp signing information len signature key hci event disconnect complete plen status success handle reason remote user terminated connection hci command le set advertise enable plen advertising enabled hci event command complete plen le set advertise enable ncmd status success hci event le meta event plen le enhanced connection complete status success handle role slave peer address type resolved random peer address fe static local resolvable private address ab resolvable identity type random identity dd ad fb ae static peer resolvable private address resolvable identity type random identity fe static connection interval msec connection latency msec supervision timeout msec master clock accuracy hci command le set random address plen address fe fa ac resolvable identity type random identity dd ad fb ae static hci event command complete plen le set random address ncmd status success hci command le set advertise enable plen advertising enabled hci event command complete plen le set advertise enable ncmd status connection limit exceeded note the timestamps between le set advertise enable and le enhanced connection complete hci event command complete plen le set advertise enable ncmd status success hci event le meta event plen le enhanced connection complete status success handle role slave peer address type resolved random peer address fe static local resolvable private address ab resolvable identity type random identity dd ad fb ae static peer resolvable private address resolvable identity type random identity fe static connection interval msec connection latency msec supervision timeout msec master clock accuracy it s almost minutes and zephyr does not changed it s rpa address environment please complete the following information
1
689,304
23,615,990,419
IssuesEvent
2022-08-24 15:54:47
jcrozum/cubewalkers
https://api.github.com/repos/jcrozum/cubewalkers
closed
Forced update during rule override
Priority: Medium Type: Feature Improvement Type: Feature Addition
Currently, when a node update rule is overridden (via the "experiment" feature), the node is forced to update during every time step the override is active, regardless of update scheme. This is probably desirable in many instances, but not always. Therefore, we should add an option to allow overridden nodes to update according to the usual update scheme.
1.0
Forced update during rule override - Currently, when a node update rule is overridden (via the "experiment" feature), the node is forced to update during every time step the override is active, regardless of update scheme. This is probably desirable in many instances, but not always. Therefore, we should add an option to allow overridden nodes to update according to the usual update scheme.
priority
forced update during rule override currently when a node update rule is overridden via the experiment feature the node is forced to update during every time step the override is active regardless of update scheme this is probably desirable in many instances but not always therefore we should add an option to allow overridden nodes to update according to the usual update scheme
1
674,374
23,048,110,737
IssuesEvent
2022-07-24 07:54:33
space-wizards/RobustToolbox
https://api.github.com/repos/space-wizards/RobustToolbox
opened
SpriteView should consider sprite scale
Issue: Bug Priority: 2-Important Difficulty: 2-Medium
It's kind of a weird one because if you scale something down you'd prefer to use the smaller scale but if you scale something up you want to cap it at the original scale, though this would make the behaviour unintuitive so not sure.
1.0
SpriteView should consider sprite scale - It's kind of a weird one because if you scale something down you'd prefer to use the smaller scale but if you scale something up you want to cap it at the original scale, though this would make the behaviour unintuitive so not sure.
priority
spriteview should consider sprite scale it s kind of a weird one because if you scale something down you d prefer to use the smaller scale but if you scale something up you want to cap it at the original scale though this would make the behaviour unintuitive so not sure
1
78,156
3,509,490,224
IssuesEvent
2016-01-08 23:02:16
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
Gold loot problem when in group (BB #925)
Category: Entities migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** Dikkedeur **Original Date:** 28.05.2015 08:30:22 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/925 <hr> Revision: https://bitbucket.org/oregon/oregoncore/commits/3407fe129414c4cbf4b8c986c5b171b3f2946212 customcode: Some anticheat patch nothing related to looting. database: Oregondatabase. OS: Ubuntu server problem: When you are in a group and loot gold it sometimes doesnt add the gold to the player(s) how to reproduce: Go ingame with fresh chars, i made 2 human mages in human territory, then group up ( /invite ) then levelup a bit, at some point when some npc drops gold ( in this case copper since we start with fresh toons ) it might be random if the copper is added, most of the time its 30% to 50% fail. Ofcourse when the loot is 1 copper it can be divided, since the lowest amount to loot is 1 copper and it can be divided between 2 characters, but when you loog 4 copper, then 2 copper should go to player A and Player B also gets 2 copper. Well now its totally random and it might be taking a few strikes before you encounter this bug. how it should work: When you are in a party and loog gold or copper it should be divided equal between the players.
1.0
Gold loot problem when in group (BB #925) - This issue was migrated from bitbucket. **Original Reporter:** Dikkedeur **Original Date:** 28.05.2015 08:30:22 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/925 <hr> Revision: https://bitbucket.org/oregon/oregoncore/commits/3407fe129414c4cbf4b8c986c5b171b3f2946212 customcode: Some anticheat patch nothing related to looting. database: Oregondatabase. OS: Ubuntu server problem: When you are in a group and loot gold it sometimes doesnt add the gold to the player(s) how to reproduce: Go ingame with fresh chars, i made 2 human mages in human territory, then group up ( /invite ) then levelup a bit, at some point when some npc drops gold ( in this case copper since we start with fresh toons ) it might be random if the copper is added, most of the time its 30% to 50% fail. Ofcourse when the loot is 1 copper it can be divided, since the lowest amount to loot is 1 copper and it can be divided between 2 characters, but when you loog 4 copper, then 2 copper should go to player A and Player B also gets 2 copper. Well now its totally random and it might be taking a few strikes before you encounter this bug. how it should work: When you are in a party and loog gold or copper it should be divided equal between the players.
priority
gold loot problem when in group bb this issue was migrated from bitbucket original reporter dikkedeur original date gmt original priority major original type bug original state resolved direct link revision customcode some anticheat patch nothing related to looting database oregondatabase os ubuntu server problem when you are in a group and loot gold it sometimes doesnt add the gold to the player s how to reproduce go ingame with fresh chars i made human mages in human territory then group up invite then levelup a bit at some point when some npc drops gold in this case copper since we start with fresh toons it might be random if the copper is added most of the time its to fail ofcourse when the loot is copper it can be divided since the lowest amount to loot is copper and it can be divided between characters but when you loog copper then copper should go to player a and player b also gets copper well now its totally random and it might be taking a few strikes before you encounter this bug how it should work when you are in a party and loog gold or copper it should be divided equal between the players
1
209,881
7,180,727,690
IssuesEvent
2018-02-01 00:45:15
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Need maps with white blocks and custom ramps
Medium Priority
![image](https://user-images.githubusercontent.com/3536496/35537169-251e111e-04fe-11e8-8453-763f8fcd305c.png) For making these look nice, need a way to pass in a ramp and bool for 'terrain on or off' to the map renderer.
1.0
Need maps with white blocks and custom ramps - ![image](https://user-images.githubusercontent.com/3536496/35537169-251e111e-04fe-11e8-8453-763f8fcd305c.png) For making these look nice, need a way to pass in a ramp and bool for 'terrain on or off' to the map renderer.
priority
need maps with white blocks and custom ramps for making these look nice need a way to pass in a ramp and bool for terrain on or off to the map renderer
1
230,137
7,604,670,185
IssuesEvent
2018-04-30 03:33:57
CSC480-18S/Red-Team
https://api.github.com/repos/CSC480-18S/Red-Team
closed
Play a turn timer bug
Priority: Medium Status: Work in Progress Type: Bug review
The timer counts too fast and goes negative without skipping the user's turn.
1.0
Play a turn timer bug - The timer counts too fast and goes negative without skipping the user's turn.
priority
play a turn timer bug the timer counts too fast and goes negative without skipping the user s turn
1
432,603
12,495,625,810
IssuesEvent
2020-06-01 13:31:36
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
opened
Multi-tenancy: imported users don't have the tenant suffix
Priority: Medium Type: Bug
**Describe the bug** When importing users as a tenant in the admin, the imported users should have the domain name of the tenant as the suffix
1.0
Multi-tenancy: imported users don't have the tenant suffix - **Describe the bug** When importing users as a tenant in the admin, the imported users should have the domain name of the tenant as the suffix
priority
multi tenancy imported users don t have the tenant suffix describe the bug when importing users as a tenant in the admin the imported users should have the domain name of the tenant as the suffix
1
124,449
4,918,526,414
IssuesEvent
2016-11-24 09:14:56
MatchboxDorry/dorry-web
https://api.github.com/repos/MatchboxDorry/dorry-web
closed
stop service没有提示
effort: 2 (medium) feature: controller flag: fixed priority: 2 (required) type: enhancement
**Dorry UI Build Versin:** Version: 0.1.2-alpha **Operation System:** Name: Ubuntu Version: 16.04-LTS(64bit) **Browser:** Browser name: Chrome Browser version: 54.0.2840.59 **What I want to do** 想stop service **Where I am** service页面 **What I have done** stop 1个 service **What I expect:** stop service是危险操作,希望提示是哪一个service,并且可以取消这个操作。 确认stop以后,希望当前service显示stop中,而不是可以继续点击stop。 **What really happened**: 几秒内页面没有任何变化,之后弹出一个stop成功的提示,但是也没有说明是哪个service。
1.0
stop service没有提示 - **Dorry UI Build Versin:** Version: 0.1.2-alpha **Operation System:** Name: Ubuntu Version: 16.04-LTS(64bit) **Browser:** Browser name: Chrome Browser version: 54.0.2840.59 **What I want to do** 想stop service **Where I am** service页面 **What I have done** stop 1个 service **What I expect:** stop service是危险操作,希望提示是哪一个service,并且可以取消这个操作。 确认stop以后,希望当前service显示stop中,而不是可以继续点击stop。 **What really happened**: 几秒内页面没有任何变化,之后弹出一个stop成功的提示,但是也没有说明是哪个service。
priority
stop service没有提示 dorry ui build versin version alpha operation system name ubuntu version lts browser browser name chrome browser version what i want to do 想stop service where i am service页面 what i have done stop service what i expect stop service是危险操作,希望提示是哪一个service,并且可以取消这个操作。 确认stop以后,希望当前service显示stop中,而不是可以继续点击stop。 what really happened 几秒内页面没有任何变化,之后弹出一个stop成功的提示,但是也没有说明是哪个service。
1
25,194
2,677,887,823
IssuesEvent
2015-03-26 05:15:22
adobe/brackets
https://api.github.com/repos/adobe/brackets
closed
Hi DPI support function doesn't release DC
medium priority native shell Win only
The function below doesn't release the drawing context it uses to get the Device Capabilities which could lead to instability -- Windows will allocate memory for new ones (unless you change the CEF Window class to use a shared DC). Even though this is only called once per Window, each new Debugger Window, Popup window (PSDLens Cloud Login), or using `Debug > New Brackets Window` will create a new window and eventually Brackets will run out of handles. ```C UINT cef_window::GetDPIScalingX() const { HDC dc = GetDC(); float lpx = dc ? GetDeviceCaps(dc,LOGPIXELSX):DEFAULT_WINDOWS_DPI ; //scale factor as it would look in a default(96dpi) screen. the default will be always 96 logical DPI when scaling is applied in windows. //see. https://msdn.microsoft.com/en-us/library/ms701681(v=vs.85).aspx return (lpx/DEFAULT_WINDOWS_DPI)*100; } ```
1.0
Hi DPI support function doesn't release DC - The function below doesn't release the drawing context it uses to get the Device Capabilities which could lead to instability -- Windows will allocate memory for new ones (unless you change the CEF Window class to use a shared DC). Even though this is only called once per Window, each new Debugger Window, Popup window (PSDLens Cloud Login), or using `Debug > New Brackets Window` will create a new window and eventually Brackets will run out of handles. ```C UINT cef_window::GetDPIScalingX() const { HDC dc = GetDC(); float lpx = dc ? GetDeviceCaps(dc,LOGPIXELSX):DEFAULT_WINDOWS_DPI ; //scale factor as it would look in a default(96dpi) screen. the default will be always 96 logical DPI when scaling is applied in windows. //see. https://msdn.microsoft.com/en-us/library/ms701681(v=vs.85).aspx return (lpx/DEFAULT_WINDOWS_DPI)*100; } ```
priority
hi dpi support function doesn t release dc the function below doesn t release the drawing context it uses to get the device capabilities which could lead to instability windows will allocate memory for new ones unless you change the cef window class to use a shared dc even though this is only called once per window each new debugger window popup window psdlens cloud login or using debug new brackets window will create a new window and eventually brackets will run out of handles c uint cef window getdpiscalingx const hdc dc getdc float lpx dc getdevicecaps dc logpixelsx default windows dpi scale factor as it would look in a default screen the default will be always logical dpi when scaling is applied in windows see return lpx default windows dpi
1
249,116
7,953,834,538
IssuesEvent
2018-07-12 04:09:48
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
System.IO.IOException:
Medium Priority
--BEGIN DUMP-- Dump Time 03/24/2018 19:44:14 Exception System.IO.IOException: Der Vorgang ist bei einer Datei mit einem geöffneten Bereich, der einem Benutzer zugeordnet ist, nicht anwendbar. bei System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) bei System.IO.FileStream.SetLengthCore(Int64 value) bei Ionic.Zip.ZipEntry.Write(Stream s) bei Ionic.Zip.ZipFile.Save() bei Eco.Core.Serialization.DataStore.ProcessQueue() bei Eco.Core.Serialization.DataStore.<Run>b__29_0() bei System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) bei System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) bei System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) bei System.Threading.ThreadHelper.ThreadStart() --END DUMP--
1.0
System.IO.IOException: - --BEGIN DUMP-- Dump Time 03/24/2018 19:44:14 Exception System.IO.IOException: Der Vorgang ist bei einer Datei mit einem geöffneten Bereich, der einem Benutzer zugeordnet ist, nicht anwendbar. bei System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) bei System.IO.FileStream.SetLengthCore(Int64 value) bei Ionic.Zip.ZipEntry.Write(Stream s) bei Ionic.Zip.ZipFile.Save() bei Eco.Core.Serialization.DataStore.ProcessQueue() bei Eco.Core.Serialization.DataStore.<Run>b__29_0() bei System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) bei System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) bei System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) bei System.Threading.ThreadHelper.ThreadStart() --END DUMP--
priority
system io ioexception begin dump dump time exception system io ioexception der vorgang ist bei einer datei mit einem geöffneten bereich der einem benutzer zugeordnet ist nicht anwendbar bei system io error winioerror errorcode string maybefullpath bei system io filestream setlengthcore value bei ionic zip zipentry write stream s bei ionic zip zipfile save bei eco core serialization datastore processqueue bei eco core serialization datastore b bei system threading executioncontext runinternal executioncontext executioncontext contextcallback callback object state boolean preservesyncctx bei system threading executioncontext run executioncontext executioncontext contextcallback callback object state boolean preservesyncctx bei system threading executioncontext run executioncontext executioncontext contextcallback callback object state bei system threading threadhelper threadstart end dump
1
26,991
2,689,591,216
IssuesEvent
2015-03-31 11:23:26
remkos/rads4
https://api.github.com/repos/remkos/rads4
closed
Move to GitHub
auto-migrated Priority-Medium Type-Enhancement
``` Today I got information from Google that it is terminating Google Code (http://google-opensource.blogspot.de/2015/03/farewell-to-google-code.html). That means that RADS4 needs to look for a new home. Probably the best is GitHub, since Google Code provides an exporter tool to move it there. It looks like GitHub provides us with all we need: free account, open code, issue tracker, etc. If anybody has a different experience, please let me know in the issue tracker at issue #60. ``` Original issue reported on code.google.com by `re...@altimetrics.com` on 13 Mar 2015 at 10:14
1.0
Move to GitHub - ``` Today I got information from Google that it is terminating Google Code (http://google-opensource.blogspot.de/2015/03/farewell-to-google-code.html). That means that RADS4 needs to look for a new home. Probably the best is GitHub, since Google Code provides an exporter tool to move it there. It looks like GitHub provides us with all we need: free account, open code, issue tracker, etc. If anybody has a different experience, please let me know in the issue tracker at issue #60. ``` Original issue reported on code.google.com by `re...@altimetrics.com` on 13 Mar 2015 at 10:14
priority
move to github today i got information from google that it is terminating google code that means that needs to look for a new home probably the best is github since google code provides an exporter tool to move it there it looks like github provides us with all we need free account open code issue tracker etc if anybody has a different experience please let me know in the issue tracker at issue original issue reported on code google com by re altimetrics com on mar at
1
334,066
10,135,657,436
IssuesEvent
2019-08-02 10:44:31
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
Outbound Email Accounts, Password don't save
Medium Priority bug
<!--- Provide a general summary of the issue in the **Title** above --> <!--- Before you open an issue, please check if a similar issue already exists or has been closed before. ---> <!--- If you have discovered a security risk please report it by emailing security@suitecrm.com. This will be delivered to the product team who handle security issues. Please don't disclose security bugs publicly until they have been handled by the security team. ---> #### Issue <!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug --> I cant send eMails with an outbound Email Account, although I can send a test mail without any problems. #### Expected Behavior <!--- Tell us what should happen --> It should be posible to send eMails. #### Actual Behavior <!--- Tell us what happens instead --> <!--- Also please check relevant logs (suitecrm.log, php error.log etc.) --> I can't send an email. See also #4057 and #3841 or https://suitecrm.com/suitecrm/forum/bug-tracker/1266-smtp-not-working #### Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> #### Steps to Reproduce <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug include code to reproduce, if relevant --> 1. ADMIN->EMAIL->Create Outbound Email Account 2. I set a new Account. Send a Testmail and it works fine. 3. Save it and edit it again, now the testmail fails. (An email error occurred:SMTP Error: Could not authenticate.) 4. Also sending eMails from eMail module doesn't work #### Context <!--- How has this bug affected you? What were you trying to accomplish? --> <!--- If you feel this should be a low/medium/high priority then please state so --> #### Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * SuiteCRM Version used: 7.11.0 * Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): Opera, IE11 * Environment name and version (e.g. MySQL, PHP 7): * Operating System and version (e.g Ubuntu 16.04):
1.0
Outbound Email Accounts, Password don't save - <!--- Provide a general summary of the issue in the **Title** above --> <!--- Before you open an issue, please check if a similar issue already exists or has been closed before. ---> <!--- If you have discovered a security risk please report it by emailing security@suitecrm.com. This will be delivered to the product team who handle security issues. Please don't disclose security bugs publicly until they have been handled by the security team. ---> #### Issue <!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug --> I cant send eMails with an outbound Email Account, although I can send a test mail without any problems. #### Expected Behavior <!--- Tell us what should happen --> It should be posible to send eMails. #### Actual Behavior <!--- Tell us what happens instead --> <!--- Also please check relevant logs (suitecrm.log, php error.log etc.) --> I can't send an email. See also #4057 and #3841 or https://suitecrm.com/suitecrm/forum/bug-tracker/1266-smtp-not-working #### Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> #### Steps to Reproduce <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug include code to reproduce, if relevant --> 1. ADMIN->EMAIL->Create Outbound Email Account 2. I set a new Account. Send a Testmail and it works fine. 3. Save it and edit it again, now the testmail fails. (An email error occurred:SMTP Error: Could not authenticate.) 4. Also sending eMails from eMail module doesn't work #### Context <!--- How has this bug affected you? What were you trying to accomplish? --> <!--- If you feel this should be a low/medium/high priority then please state so --> #### Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * SuiteCRM Version used: 7.11.0 * Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): Opera, IE11 * Environment name and version (e.g. MySQL, PHP 7): * Operating System and version (e.g Ubuntu 16.04):
priority
outbound email accounts password don t save issue i cant send emails with an outbound email account although i can send a test mail without any problems expected behavior it should be posible to send emails actual behavior i can t send an email see also and or possible fix steps to reproduce admin email create outbound email account i set a new account send a testmail and it works fine save it and edit it again now the testmail fails an email error occurred smtp error could not authenticate also sending emails from email module doesn t work context your environment suitecrm version used browser name and version e g chrome version bit opera environment name and version e g mysql php operating system and version e g ubuntu
1
27,178
2,690,886,419
IssuesEvent
2015-03-31 18:27:40
cs2103jan2015-t13-4j/main
https://api.github.com/repos/cs2103jan2015-t13-4j/main
closed
Mark completed back to incomplete
priority.medium type.story
so it will be more user friendly when the task list becomes long
1.0
Mark completed back to incomplete - so it will be more user friendly when the task list becomes long
priority
mark completed back to incomplete so it will be more user friendly when the task list becomes long
1
40,210
2,867,429,760
IssuesEvent
2015-06-05 13:18:20
andresriancho/w3af
https://api.github.com/repos/andresriancho/w3af
closed
UnicodeEncodeError: 'charmap' codec can't encode characters in position 0-3 @ encode_decode.py
bug priority:medium
```pytb New URL found by web_spider plugin: "..." encoding error : input conversion failed due to input error, bytes 0x98 0xD0 0xA0 0xD0 encoding error : input conversion failed due to input error, bytes 0x98 0xD0 0xA0 0xD0 Exception in thread PoolResultHandler: Traceback (most recent call last): File "/usr/lib/python2.7/threading.py", line 551, in __bootstrap_inner self.run() File "/usr/lib/python2.7/threading.py", line 504, in run self.__target(*self.__args, **self.__kwargs) File "/home/skoval/w3af/w3af/core/controllers/threads/pool276.py", line 453, in _handle_results cache[job]._set(i, obj) File "/home/skoval/w3af/w3af/core/controllers/threads/pool276.py", line 624, in _set self._callback(self._value) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/base_consumer.py", line 55, in _wrapper result = method(self, function_id, *args, **kwds) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/crawl_infrastructure.py", line 174, in _plugin_finished_cb self._route_plugin_results(plugin) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/base_consumer.py", line 55, in _wrapper result = method(self, function_id, *args, **kwds) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/crawl_infrastructure.py", line 215, in _route_plugin_results elif self._is_new_fuzzable_request(plugin, fuzzable_request): File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/crawl_infrastructure.py", line 389, in _is_new_fuzzable_request if not self._variant_db.append(fuzzable_request): File "/home/skoval/w3af/w3af/core/data/db/variant_db.py", line 101, in append request_hash = fuzzable_request.get_request_hash(self.HASH_IGNORE_HEADERS) File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 54, in get_request_hash return hashlib.md5(self.dump(ignore_headers=ignore_headers)).hexdigest() File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 45, in dump request_head = self.dump_request_head(ignore_headers=ignore_headers) File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 68, in dump_request_head return u"%s%s" % (self.get_request_line(), File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 61, in get_request_line self.get_uri().url_encode(), File "/home/skoval/w3af/w3af/core/data/parsers/doc/url.py", line 725, in url_encode qs = '?' + str(self.querystring) File "/home/skoval/w3af/w3af/core/data/dc/urlencoded_form.py", line 98, in __str__ return urlencode(d, encoding=self.encoding, safe='') File "/home/skoval/w3af/w3af/core/data/parsers/utils/encode_decode.py", line 146, in urlencode ele = ele.encode(encoding) File "/home/skoval/.virtualenvs/w3af/lib/python2.7/encodings/cp1251.py", line 12, in encode return codecs.charmap_encode(input,errors,encoding_table) UnicodeEncodeError: 'charmap' codec can't encode characters in position 0-3: character maps to <undefined> ``` ## Original bug reporter @skoval00 ## Related with https://github.com/andresriancho/w3af/pull/7988
1.0
UnicodeEncodeError: 'charmap' codec can't encode characters in position 0-3 @ encode_decode.py - ```pytb New URL found by web_spider plugin: "..." encoding error : input conversion failed due to input error, bytes 0x98 0xD0 0xA0 0xD0 encoding error : input conversion failed due to input error, bytes 0x98 0xD0 0xA0 0xD0 Exception in thread PoolResultHandler: Traceback (most recent call last): File "/usr/lib/python2.7/threading.py", line 551, in __bootstrap_inner self.run() File "/usr/lib/python2.7/threading.py", line 504, in run self.__target(*self.__args, **self.__kwargs) File "/home/skoval/w3af/w3af/core/controllers/threads/pool276.py", line 453, in _handle_results cache[job]._set(i, obj) File "/home/skoval/w3af/w3af/core/controllers/threads/pool276.py", line 624, in _set self._callback(self._value) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/base_consumer.py", line 55, in _wrapper result = method(self, function_id, *args, **kwds) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/crawl_infrastructure.py", line 174, in _plugin_finished_cb self._route_plugin_results(plugin) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/base_consumer.py", line 55, in _wrapper result = method(self, function_id, *args, **kwds) File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/crawl_infrastructure.py", line 215, in _route_plugin_results elif self._is_new_fuzzable_request(plugin, fuzzable_request): File "/home/skoval/w3af/w3af/core/controllers/core_helpers/consumers/crawl_infrastructure.py", line 389, in _is_new_fuzzable_request if not self._variant_db.append(fuzzable_request): File "/home/skoval/w3af/w3af/core/data/db/variant_db.py", line 101, in append request_hash = fuzzable_request.get_request_hash(self.HASH_IGNORE_HEADERS) File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 54, in get_request_hash return hashlib.md5(self.dump(ignore_headers=ignore_headers)).hexdigest() File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 45, in dump request_head = self.dump_request_head(ignore_headers=ignore_headers) File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 68, in dump_request_head return u"%s%s" % (self.get_request_line(), File "/home/skoval/w3af/w3af/core/data/request/request_mixin.py", line 61, in get_request_line self.get_uri().url_encode(), File "/home/skoval/w3af/w3af/core/data/parsers/doc/url.py", line 725, in url_encode qs = '?' + str(self.querystring) File "/home/skoval/w3af/w3af/core/data/dc/urlencoded_form.py", line 98, in __str__ return urlencode(d, encoding=self.encoding, safe='') File "/home/skoval/w3af/w3af/core/data/parsers/utils/encode_decode.py", line 146, in urlencode ele = ele.encode(encoding) File "/home/skoval/.virtualenvs/w3af/lib/python2.7/encodings/cp1251.py", line 12, in encode return codecs.charmap_encode(input,errors,encoding_table) UnicodeEncodeError: 'charmap' codec can't encode characters in position 0-3: character maps to <undefined> ``` ## Original bug reporter @skoval00 ## Related with https://github.com/andresriancho/w3af/pull/7988
priority
unicodeencodeerror charmap codec can t encode characters in position encode decode py pytb new url found by web spider plugin encoding error input conversion failed due to input error bytes encoding error input conversion failed due to input error bytes exception in thread poolresulthandler traceback most recent call last file usr lib threading py line in bootstrap inner self run file usr lib threading py line in run self target self args self kwargs file home skoval core controllers threads py line in handle results cache set i obj file home skoval core controllers threads py line in set self callback self value file home skoval core controllers core helpers consumers base consumer py line in wrapper result method self function id args kwds file home skoval core controllers core helpers consumers crawl infrastructure py line in plugin finished cb self route plugin results plugin file home skoval core controllers core helpers consumers base consumer py line in wrapper result method self function id args kwds file home skoval core controllers core helpers consumers crawl infrastructure py line in route plugin results elif self is new fuzzable request plugin fuzzable request file home skoval core controllers core helpers consumers crawl infrastructure py line in is new fuzzable request if not self variant db append fuzzable request file home skoval core data db variant db py line in append request hash fuzzable request get request hash self hash ignore headers file home skoval core data request request mixin py line in get request hash return hashlib self dump ignore headers ignore headers hexdigest file home skoval core data request request mixin py line in dump request head self dump request head ignore headers ignore headers file home skoval core data request request mixin py line in dump request head return u s s self get request line file home skoval core data request request mixin py line in get request line self get uri url encode file home skoval core data parsers doc url py line in url encode qs str self querystring file home skoval core data dc urlencoded form py line in str return urlencode d encoding self encoding safe file home skoval core data parsers utils encode decode py line in urlencode ele ele encode encoding file home skoval virtualenvs lib encodings py line in encode return codecs charmap encode input errors encoding table unicodeencodeerror charmap codec can t encode characters in position character maps to original bug reporter related with
1
506,989
14,677,614,906
IssuesEvent
2020-12-31 00:02:06
gudrmsglgl/RxCleanNote
https://api.github.com/repos/gudrmsglgl/RxCleanNote
closed
What went wrong: Execution failed for task ':app:compileDebugJavaWithJavac'. > javax/xml/bind/JAXBException
Type: Bug ✔️ Status: Completed 🌝 Priority: Medium
./gradlew lint tes 시 지속적으로 fail
1.0
What went wrong: Execution failed for task ':app:compileDebugJavaWithJavac'. > javax/xml/bind/JAXBException - ./gradlew lint tes 시 지속적으로 fail
priority
what went wrong execution failed for task app compiledebugjavawithjavac javax xml bind jaxbexception gradlew lint tes 시 지속적으로 fail
1
169,459
6,402,278,164
IssuesEvent
2017-08-06 07:41:35
minio/minio
https://api.github.com/repos/minio/minio
closed
Create default buckets via environment variables in docker
priority: medium triage
I am using minio mainly has a throwaway cache for GitLab CI runners, the container is living as a docker service in a swarm cluster and may at any point be restarted on another machine, since it is used only as a cache setting up distributed storage for persistence seems overkill. The issue I'm running in is that on restart my bucket will be gone, preventing new CI jobs from creating cache entry, it would be nice to have a new environment variable like `MINIO_DEFAULT_BUCKETS` that would create the folders/buckets when the container start.
1.0
Create default buckets via environment variables in docker - I am using minio mainly has a throwaway cache for GitLab CI runners, the container is living as a docker service in a swarm cluster and may at any point be restarted on another machine, since it is used only as a cache setting up distributed storage for persistence seems overkill. The issue I'm running in is that on restart my bucket will be gone, preventing new CI jobs from creating cache entry, it would be nice to have a new environment variable like `MINIO_DEFAULT_BUCKETS` that would create the folders/buckets when the container start.
priority
create default buckets via environment variables in docker i am using minio mainly has a throwaway cache for gitlab ci runners the container is living as a docker service in a swarm cluster and may at any point be restarted on another machine since it is used only as a cache setting up distributed storage for persistence seems overkill the issue i m running in is that on restart my bucket will be gone preventing new ci jobs from creating cache entry it would be nice to have a new environment variable like minio default buckets that would create the folders buckets when the container start
1
55,134
3,072,157,530
IssuesEvent
2015-08-19 15:37:31
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
solo.enterText(0,var) fails when I pass in a string variable and works when I pass in a sting value
bug imported invalid Priority-Medium
_From [koneru.s...@gmail.com](https://code.google.com/u/102882070009993887813/) on September 13, 2011 16:06:31_ What steps will reproduce the problem? 1. Define a string variable public static final String BIN_ITEM_NUMBER = new String("260833881268"); 2. In the test code do the following solo.clearEditText(0); solo.enterText(0, BIN_ITEM_NUMBER); solo.sendKey(Solo.ENTER); 3. You will notice an NPE exception java.lang.NullPointerException java.lang.RuntimeException: java.lang.NullPointerException at com.jayway.android.robotium.solo.Searcher.searchFor(Searcher.java:107) at com.jayway.android.robotium.solo.Searcher.searchWithTimeoutFor(Searcher.java:67) at com.jayway.android.robotium.solo.Solo.searchText(Solo.java:427) at com.mobile.test.BAT.testvalidateItem(BAT.java:79) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:521) at android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:204) at android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:194) at android.test.ActivityInstrumentationTestCase2.runTest(ActivityInstrumentationTestCase2.java:186) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:169) at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:154) at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:520) at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1447) Caused by: java.lang.NullPointerException at java.util.regex.Pattern.compileImpl(Pattern.java:372) at java.util.regex.Pattern.<init>(Pattern.java:341) at java.util.regex.Pattern.compile(Pattern.java:358) at com.jayway.android.robotium.solo.Searcher.searchFor(Searcher.java:133) at com.jayway.android.robotium.solo.Searcher.searchFor(Searcher.java:105) What is the expected output? What do you see instead? There should be no exception displayed. Rather the variable(BIN_ITEM_NUMBER) should be replaced with the defined String value during the runtime for solo.enterText(); What version of the product are you using? On what operating system? robotium-solo-2.5 MAC OS Please provide any additional information below. Tests work when I replaced the variable with actual value solo.enterText(0,"123456") _Original issue: http://code.google.com/p/robotium/issues/detail?id=155_
1.0
solo.enterText(0,var) fails when I pass in a string variable and works when I pass in a sting value - _From [koneru.s...@gmail.com](https://code.google.com/u/102882070009993887813/) on September 13, 2011 16:06:31_ What steps will reproduce the problem? 1. Define a string variable public static final String BIN_ITEM_NUMBER = new String("260833881268"); 2. In the test code do the following solo.clearEditText(0); solo.enterText(0, BIN_ITEM_NUMBER); solo.sendKey(Solo.ENTER); 3. You will notice an NPE exception java.lang.NullPointerException java.lang.RuntimeException: java.lang.NullPointerException at com.jayway.android.robotium.solo.Searcher.searchFor(Searcher.java:107) at com.jayway.android.robotium.solo.Searcher.searchWithTimeoutFor(Searcher.java:67) at com.jayway.android.robotium.solo.Solo.searchText(Solo.java:427) at com.mobile.test.BAT.testvalidateItem(BAT.java:79) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:521) at android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:204) at android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:194) at android.test.ActivityInstrumentationTestCase2.runTest(ActivityInstrumentationTestCase2.java:186) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:169) at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:154) at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:520) at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1447) Caused by: java.lang.NullPointerException at java.util.regex.Pattern.compileImpl(Pattern.java:372) at java.util.regex.Pattern.<init>(Pattern.java:341) at java.util.regex.Pattern.compile(Pattern.java:358) at com.jayway.android.robotium.solo.Searcher.searchFor(Searcher.java:133) at com.jayway.android.robotium.solo.Searcher.searchFor(Searcher.java:105) What is the expected output? What do you see instead? There should be no exception displayed. Rather the variable(BIN_ITEM_NUMBER) should be replaced with the defined String value during the runtime for solo.enterText(); What version of the product are you using? On what operating system? robotium-solo-2.5 MAC OS Please provide any additional information below. Tests work when I replaced the variable with actual value solo.enterText(0,"123456") _Original issue: http://code.google.com/p/robotium/issues/detail?id=155_
priority
solo entertext var fails when i pass in a string variable and works when i pass in a sting value from on september what steps will reproduce the problem define a string variable public static final string bin item number new string in the test code do the following solo clearedittext solo entertext bin item number solo sendkey solo enter you will notice an npe exception java lang nullpointerexception java lang runtimeexception java lang nullpointerexception at com jayway android robotium solo searcher searchfor searcher java at com jayway android robotium solo searcher searchwithtimeoutfor searcher java at com jayway android robotium solo solo searchtext solo java at com mobile test bat testvalidateitem bat java at java lang reflect method invokenative native method at java lang reflect method invoke method java at android test instrumentationtestcase runmethod instrumentationtestcase java at android test instrumentationtestcase runtest instrumentationtestcase java at android test runtest java at junit framework testcase runbare testcase java at junit framework testresult protect testresult java at junit framework testresult runprotected testresult java at junit framework testresult run testresult java at junit framework testcase run testcase java at android test androidtestrunner runtest androidtestrunner java at android test androidtestrunner runtest androidtestrunner java at android test instrumentationtestrunner onstart instrumentationtestrunner java at android app instrumentation instrumentationthread run instrumentation java caused by java lang nullpointerexception at java util regex pattern compileimpl pattern java at java util regex pattern pattern java at java util regex pattern compile pattern java at com jayway android robotium solo searcher searchfor searcher java at com jayway android robotium solo searcher searchfor searcher java what is the expected output what do you see instead there should be no exception displayed rather the variable bin item number should be replaced with the defined string value during the runtime for solo entertext what version of the product are you using on what operating system robotium solo mac os please provide any additional information below tests work when i replaced the variable with actual value solo entertext original issue
1
61,014
3,136,534,900
IssuesEvent
2015-09-10 20:22:24
DmitryVSidorov/traineeship
https://api.github.com/repos/DmitryVSidorov/traineeship
closed
List of Points Point3D
medium priority task
Create a CLASS "Point3D", to represent a point in 3-D space, with coordinates X, Y and Z. It must contain the following methods: MoveTo, which will change the coordinates in which the point is. DistanceTo(Point3D p2), to calculate the distance to another point. ToString, which will return a string similar to "(2,-7,0)" And, of course, getters and setters. The test program must create an collection of 5 points, get data for them, and calculate (and display) the distance from the first point to the remaining four ones. Create a program with a menu, in which the user can choose to: - Add data for one point - Display all the entered points - Exit the program
1.0
List of Points Point3D - Create a CLASS "Point3D", to represent a point in 3-D space, with coordinates X, Y and Z. It must contain the following methods: MoveTo, which will change the coordinates in which the point is. DistanceTo(Point3D p2), to calculate the distance to another point. ToString, which will return a string similar to "(2,-7,0)" And, of course, getters and setters. The test program must create an collection of 5 points, get data for them, and calculate (and display) the distance from the first point to the remaining four ones. Create a program with a menu, in which the user can choose to: - Add data for one point - Display all the entered points - Exit the program
priority
list of points create a class to represent a point in d space with coordinates x y and z it must contain the following methods moveto which will change the coordinates in which the point is distanceto to calculate the distance to another point tostring which will return a string similar to and of course getters and setters the test program must create an collection of points get data for them and calculate and display the distance from the first point to the remaining four ones create a program with a menu in which the user can choose to add data for one point display all the entered points exit the program
1
178,551
6,611,914,012
IssuesEvent
2017-09-20 00:11:35
portworx/torpedo
https://api.github.com/repos/portworx/torpedo
opened
Add scheduler interface to gather support bundle
enhancement priority/medium
Add an scheduler interface and the k8s implementation that gathers all details about current state of the system and dumps it in a file. File name should be use torpedo instance ID.
1.0
Add scheduler interface to gather support bundle - Add an scheduler interface and the k8s implementation that gathers all details about current state of the system and dumps it in a file. File name should be use torpedo instance ID.
priority
add scheduler interface to gather support bundle add an scheduler interface and the implementation that gathers all details about current state of the system and dumps it in a file file name should be use torpedo instance id
1
46,922
2,966,781,768
IssuesEvent
2015-07-12 07:51:47
mabe02/lanterna
https://api.github.com/repos/mabe02/lanterna
closed
Make Lanterna work with Java 1.4.2
auto-migrated Priority-Medium Type-Enhancement
``` What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I can only use java 142. Can you please, post the jar file that has class files compiled with java142. I am restricted to use Java142 and I am trying out a different Operating system. I am trying to use this on IBM 4690. I found this useful, because it doesnt use any native DLLs. Please feel free advice. Also, I would be grateful if you can compile the source against 142. Thanks, Sunil. ``` Original issue reported on code.google.com by `sunildas...@gmail.com` on 18 Oct 2011 at 8:17
1.0
Make Lanterna work with Java 1.4.2 - ``` What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I can only use java 142. Can you please, post the jar file that has class files compiled with java142. I am restricted to use Java142 and I am trying out a different Operating system. I am trying to use this on IBM 4690. I found this useful, because it doesnt use any native DLLs. Please feel free advice. Also, I would be grateful if you can compile the source against 142. Thanks, Sunil. ``` Original issue reported on code.google.com by `sunildas...@gmail.com` on 18 Oct 2011 at 8:17
priority
make lanterna work with java what steps will reproduce the problem what is the expected output what do you see instead what version of the product are you using on what operating system please provide any additional information below i can only use java can you please post the jar file that has class files compiled with i am restricted to use and i am trying out a different operating system i am trying to use this on ibm i found this useful because it doesnt use any native dlls please feel free advice also i would be grateful if you can compile the source against thanks sunil original issue reported on code google com by sunildas gmail com on oct at
1
372,316
11,012,756,589
IssuesEvent
2019-12-04 18:58:31
USGS-Astrogeology/PyHAT_Point_Spectra_GUI
https://api.github.com/repos/USGS-Astrogeology/PyHAT_Point_Spectra_GUI
opened
Combining data sets improvements
Priority: Medium bug enhancement
- Don't create two copies of the combined data set. (bug) - Add a column containing the original data set names (this makes it easy to split the combined data set back to separate data sets)
1.0
Combining data sets improvements - - Don't create two copies of the combined data set. (bug) - Add a column containing the original data set names (this makes it easy to split the combined data set back to separate data sets)
priority
combining data sets improvements don t create two copies of the combined data set bug add a column containing the original data set names this makes it easy to split the combined data set back to separate data sets
1
55,727
3,074,284,082
IssuesEvent
2015-08-20 05:51:05
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
Test Cases Hang After Few Run
bug imported invalid Priority-Medium
_From [mony.roc...@gmail.com](https://code.google.com/u/114746643335284931442/) on October 23, 2013 23:28:35_ What steps will reproduce the problem? 1.You have Multiple Test class containing different test methods. 2. Run Individual test cases or run whole package, after few run the test Hangs and remains on the last viewed screen. 3. What is the expected output? What do you see instead? I expect my test to run cont. but instead of that, after few run my test hangs on to particular screen without poping any error message. What version of the product are you using? On what operating system? I am using a Hybrid App, Robotium 4.3 and OS Android 4.3 Please provide any additional information below. Tried everything tear down, finishOpenActivity as well as getActivity().finsih()... But Nothing WOrked. I think its an memory issue but dont have idea to clear memory. Please Help... _Original issue: http://code.google.com/p/robotium/issues/detail?id=541_
1.0
Test Cases Hang After Few Run - _From [mony.roc...@gmail.com](https://code.google.com/u/114746643335284931442/) on October 23, 2013 23:28:35_ What steps will reproduce the problem? 1.You have Multiple Test class containing different test methods. 2. Run Individual test cases or run whole package, after few run the test Hangs and remains on the last viewed screen. 3. What is the expected output? What do you see instead? I expect my test to run cont. but instead of that, after few run my test hangs on to particular screen without poping any error message. What version of the product are you using? On what operating system? I am using a Hybrid App, Robotium 4.3 and OS Android 4.3 Please provide any additional information below. Tried everything tear down, finishOpenActivity as well as getActivity().finsih()... But Nothing WOrked. I think its an memory issue but dont have idea to clear memory. Please Help... _Original issue: http://code.google.com/p/robotium/issues/detail?id=541_
priority
test cases hang after few run from on october what steps will reproduce the problem you have multiple test class containing different test methods run individual test cases or run whole package after few run the test hangs and remains on the last viewed screen what is the expected output what do you see instead i expect my test to run cont but instead of that after few run my test hangs on to particular screen without poping any error message what version of the product are you using on what operating system i am using a hybrid app robotium and os android please provide any additional information below tried everything tear down finishopenactivity as well as getactivity finsih but nothing worked i think its an memory issue but dont have idea to clear memory please help original issue
1
56,681
3,081,037,941
IssuesEvent
2015-08-22 09:19:10
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Слетают настройки игнорирования
bug imported Priority-Medium
_From [NightlyDay@gmail.com](https://code.google.com/u/NightlyDay@gmail.com/) on June 11, 2012 06:23:08_ Совершенно произвольно слетает игнор с одного или нескольких пользователей, независимо от каких-либо событий. FlylinkDC++ r501 x64 build 9474, Windows 7 SP1 x64 Ultimate _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=764_
1.0
Слетают настройки игнорирования - _From [NightlyDay@gmail.com](https://code.google.com/u/NightlyDay@gmail.com/) on June 11, 2012 06:23:08_ Совершенно произвольно слетает игнор с одного или нескольких пользователей, независимо от каких-либо событий. FlylinkDC++ r501 x64 build 9474, Windows 7 SP1 x64 Ultimate _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=764_
priority
слетают настройки игнорирования from on june совершенно произвольно слетает игнор с одного или нескольких пользователей независимо от каких либо событий flylinkdc build windows ultimate original issue
1
173,502
6,525,720,414
IssuesEvent
2017-08-29 16:53:45
ubc/compair
https://api.github.com/repos/ubc/compair
opened
UI Review
developer suggestion enhancement front end medium priority
Tab names (aka titles) – are they easily differentiated? Major buttons and Fitt's Law Are targets at a minimum size (1cm)? Clarify sorting of courses, assignments (if unclear this is by date, how can users shortcut to what they want?) Wording for confirmation buttons (better to repeat action in buttons than just yes/no) Action that is least destructive should be in focus Notifications in the system – are these minimally intrusive? How modals affect back button Progress indicators, wait animations Highlights for required form fields (e.g., yellow backgrounds)
1.0
UI Review - Tab names (aka titles) – are they easily differentiated? Major buttons and Fitt's Law Are targets at a minimum size (1cm)? Clarify sorting of courses, assignments (if unclear this is by date, how can users shortcut to what they want?) Wording for confirmation buttons (better to repeat action in buttons than just yes/no) Action that is least destructive should be in focus Notifications in the system – are these minimally intrusive? How modals affect back button Progress indicators, wait animations Highlights for required form fields (e.g., yellow backgrounds)
priority
ui review tab names aka titles – are they easily differentiated major buttons and fitt s law are targets at a minimum size clarify sorting of courses assignments if unclear this is by date how can users shortcut to what they want wording for confirmation buttons better to repeat action in buttons than just yes no action that is least destructive should be in focus notifications in the system – are these minimally intrusive how modals affect back button progress indicators wait animations highlights for required form fields e g yellow backgrounds
1
791,572
27,868,268,664
IssuesEvent
2023-03-21 11:48:59
jellywallet/extension
https://api.github.com/repos/jellywallet/extension
closed
Bitcoin "Add contact to address book" doesn't work
Bug Priority: Medium
Confirm button remains grey, no issues reported on console or network. <img width="439" alt="image" src="https://user-images.githubusercontent.com/74860408/222147288-df0031ae-b6bc-4af6-b5cf-fd494eadd770.png">
1.0
Bitcoin "Add contact to address book" doesn't work - Confirm button remains grey, no issues reported on console or network. <img width="439" alt="image" src="https://user-images.githubusercontent.com/74860408/222147288-df0031ae-b6bc-4af6-b5cf-fd494eadd770.png">
priority
bitcoin add contact to address book doesn t work confirm button remains grey no issues reported on console or network img width alt image src
1
824,131
31,141,671,493
IssuesEvent
2023-08-16 00:53:38
gamefreedomgit/Maelstrom
https://api.github.com/repos/gamefreedomgit/Maelstrom
closed
Disarm or knock stun mobs perma debuff
NPC Priority: Medium
**Description:** When you fight mobs that knock you or disarm has no dr and it perma leaves you with that disarm debuff or on the floor stunned **How to reproduce:** Fight any disarm or knock stun mob, disarm mob its lashtail raptors in stranglethorn valley or Highland Elk in Twilight Highlands **How it should work:** Not perma leaving you with the debuff, disarmed or stunned. Its like the mob can spam that ability **Database links:**
1.0
Disarm or knock stun mobs perma debuff - **Description:** When you fight mobs that knock you or disarm has no dr and it perma leaves you with that disarm debuff or on the floor stunned **How to reproduce:** Fight any disarm or knock stun mob, disarm mob its lashtail raptors in stranglethorn valley or Highland Elk in Twilight Highlands **How it should work:** Not perma leaving you with the debuff, disarmed or stunned. Its like the mob can spam that ability **Database links:**
priority
disarm or knock stun mobs perma debuff description when you fight mobs that knock you or disarm has no dr and it perma leaves you with that disarm debuff or on the floor stunned how to reproduce fight any disarm or knock stun mob disarm mob its lashtail raptors in stranglethorn valley or highland elk in twilight highlands how it should work not perma leaving you with the debuff disarmed or stunned its like the mob can spam that ability database links
1
655,447
21,691,017,798
IssuesEvent
2022-05-09 15:22:09
RobotLocomotion/drake
https://api.github.com/repos/RobotLocomotion/drake
opened
Tutorial on collisions / proximity
type: feature request priority: medium component: tutorials
The very basics of collision handling are explained in our MbP tutorials, but there is a lot more to learn beyond the basics. We should probably create a tutorial specifically on collisions and proximity topics. - Collision filtering concepts, APIs, parsing, etc. - How to make signed distance queries - Geometry ID vs Body ID etc. - Non-MbP geometries - Displaying collision geometries - Displaying collision results
1.0
Tutorial on collisions / proximity - The very basics of collision handling are explained in our MbP tutorials, but there is a lot more to learn beyond the basics. We should probably create a tutorial specifically on collisions and proximity topics. - Collision filtering concepts, APIs, parsing, etc. - How to make signed distance queries - Geometry ID vs Body ID etc. - Non-MbP geometries - Displaying collision geometries - Displaying collision results
priority
tutorial on collisions proximity the very basics of collision handling are explained in our mbp tutorials but there is a lot more to learn beyond the basics we should probably create a tutorial specifically on collisions and proximity topics collision filtering concepts apis parsing etc how to make signed distance queries geometry id vs body id etc non mbp geometries displaying collision geometries displaying collision results
1
723,707
24,906,153,096
IssuesEvent
2022-10-29 09:14:59
chaotic-aur/packages
https://api.github.com/repos/chaotic-aur/packages
closed
[Request] bluez-utils-compat
request:new-pkg priority:medium
### Link to the package(s) in the AUR https://aur.archlinux.org/packages/bluez-utils-compat ### Utility this package has for you An updated version of `bluez-utils` (Bluetooth drivers) ### Do you consider the package(s) to be useful for every Chaotic-AUR user? YES! ### 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? No clue. ### 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 Takes forever to update on my laptop 😭
1.0
[Request] bluez-utils-compat - ### Link to the package(s) in the AUR https://aur.archlinux.org/packages/bluez-utils-compat ### Utility this package has for you An updated version of `bluez-utils` (Bluetooth drivers) ### Do you consider the package(s) to be useful for every Chaotic-AUR user? YES! ### 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? No clue. ### 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 Takes forever to update on my laptop 😭
priority
bluez utils compat link to the package s in the aur utility this package has for you an updated version of bluez utils bluetooth drivers do you consider the package s to be useful for every chaotic aur user yes 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 no clue 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 takes forever to update on my laptop 😭
1
815,049
30,534,140,814
IssuesEvent
2023-07-19 16:04:45
recro/ats-issues
https://api.github.com/repos/recro/ats-issues
closed
Add Zip Code to candidate
area/candidate priority/medium complexity/high
### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe the problem. Add ZIP CODE Add lookup for zipcode ### Describe the solution you'd like Add ZIP CODE Add lookup for zipcode ### Additional context Add ZIP CODE Add lookup for zipcode
1.0
Add Zip Code to candidate - ### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe the problem. Add ZIP CODE Add lookup for zipcode ### Describe the solution you'd like Add ZIP CODE Add lookup for zipcode ### Additional context Add ZIP CODE Add lookup for zipcode
priority
add zip code to candidate is there an existing issue for this i have searched the existing issues is your feature request related to a problem please describe the problem add zip code add lookup for zipcode describe the solution you d like add zip code add lookup for zipcode additional context add zip code add lookup for zipcode
1