Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
855
labels
stringlengths
4
721
body
stringlengths
1
261k
index
stringclasses
13 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
240k
binary_label
int64
0
1
245,381
7,885,645,813
IssuesEvent
2018-06-27 13:06:37
hpi-swa-teaching/AcceptIt
https://api.github.com/repos/hpi-swa-teaching/AcceptIt
closed
More specific error priniting for syntax errors
Priority High User Story
### Story AS A developer writing acceptance tests I WANT TO receive clear error messages when a User story could not be created due to a syntax error IN ORDER TO find my mistakes fast and not get frustrated ### Description Syntax errors in user stories e.g. due to typos lead to an undescriptive error print. ![image](https://user-images.githubusercontent.com/29160369/41206477-dd138290-6d04-11e8-94f9-eec67af8c4c4.png) ##### Why: (What value does it have? For whom?) For someone just getting started with acceptance testing these errors can be very time-consuming. ##### What: (What should be implemented?) Better exception texts printing eg. "syntax error in line 3" ##### Done: (How can it be demonstrated?) Syntax errors can be deduced easily ### Acceptance Criteria
1.0
More specific error priniting for syntax errors - ### Story AS A developer writing acceptance tests I WANT TO receive clear error messages when a User story could not be created due to a syntax error IN ORDER TO find my mistakes fast and not get frustrated ### Description Syntax errors in user stories e.g. due to typos lead to an undescriptive error print. ![image](https://user-images.githubusercontent.com/29160369/41206477-dd138290-6d04-11e8-94f9-eec67af8c4c4.png) ##### Why: (What value does it have? For whom?) For someone just getting started with acceptance testing these errors can be very time-consuming. ##### What: (What should be implemented?) Better exception texts printing eg. "syntax error in line 3" ##### Done: (How can it be demonstrated?) Syntax errors can be deduced easily ### Acceptance Criteria
priority
more specific error priniting for syntax errors story as a developer writing acceptance tests i want to receive clear error messages when a user story could not be created due to a syntax error in order to find my mistakes fast and not get frustrated description syntax errors in user stories e g due to typos lead to an undescriptive error print why what value does it have for whom for someone just getting started with acceptance testing these errors can be very time consuming what what should be implemented better exception texts printing eg syntax error in line done how can it be demonstrated syntax errors can be deduced easily acceptance criteria
1
28,491
2,704,467,263
IssuesEvent
2015-04-07 00:49:56
kevinchandler/test
https://api.github.com/repos/kevinchandler/test
closed
halp
bug-report-cs Priority: High
Description: halp Priority: High Date Reported: 04-06-2015 User Email: dumbo@gmail.com Platform: Android Platform Version: OSX Mavericks Browser & Version: chrome 20 canary Able to Replicate: Yes Reported By: Kevin C. - kevin@onradpad.com
1.0
halp - Description: halp Priority: High Date Reported: 04-06-2015 User Email: dumbo@gmail.com Platform: Android Platform Version: OSX Mavericks Browser & Version: chrome 20 canary Able to Replicate: Yes Reported By: Kevin C. - kevin@onradpad.com
priority
halp description halp priority high date reported user email dumbo gmail com platform android platform version osx mavericks browser version chrome canary able to replicate yes reported by kevin c kevin onradpad com
1
324,055
9,883,258,138
IssuesEvent
2019-06-24 18:56:04
fgpv-vpgf/fgpv-vpgf
https://api.github.com/repos/fgpv-vpgf/fgpv-vpgf
opened
Help content requiring official translation
bug-type: content improvements: docs improvements: enhancement improvements: quality needs: docs update needs: estimate priority: high problem: standards
Our main language file has flag fields to mark which items have been officially translated, but our help markup docs don't. Will use this issue to keep track of new content that has not been officially translated (we generally use the [Language Comprehension Tool](https://portage-preprod.pwgsc.gc.ca/index-eng.php) to create the placeholder text). Please update whenever new content is added, or an official translation is obtained. - Data Table (v3 version) - Geosearch
1.0
Help content requiring official translation - Our main language file has flag fields to mark which items have been officially translated, but our help markup docs don't. Will use this issue to keep track of new content that has not been officially translated (we generally use the [Language Comprehension Tool](https://portage-preprod.pwgsc.gc.ca/index-eng.php) to create the placeholder text). Please update whenever new content is added, or an official translation is obtained. - Data Table (v3 version) - Geosearch
priority
help content requiring official translation our main language file has flag fields to mark which items have been officially translated but our help markup docs don t will use this issue to keep track of new content that has not been officially translated we generally use the to create the placeholder text please update whenever new content is added or an official translation is obtained data table version geosearch
1
672,770
22,840,586,959
IssuesEvent
2022-07-12 21:21:38
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
Weird warning using matrix exp for complex tensors
high priority triaged module: linear algebra
### 🐛 Describe the bug Warning appears if you run this snippet ```python torch.manual_seed(42) tens = 0.5 * torch.randn(10, 3, 3, dtype=torch.complex64) tens = (0.5 * (tens.transpose(-1, -2) + tens)) tens.imag = torch.matrix_exp(tens.imag) ``` The warning ``` /tmp/ipykernel_18699/1530108168.py:4: UserWarning: An output with one or more elements was resized since it had shape [4, 3, 3], which does not match the required output shape [1, 4, 3, 3]. This behavior is deprecated, and in a future PyTorch release outputs will not be resized unless they have zero elements. You can explicitly reuse an out tensor t by resizing it, inplace, to zero elements with t.resize_(0). (Triggered internally at ../aten/src/ATen/native/Resize.cpp:24.) tens.imag = torch.matrix_exp(tens.imag) ``` It did not happen prior to 1.12 version ### Versions Collecting environment information... PyTorch version: 1.12.0+cu102 Is debug build: False CUDA used to build PyTorch: 10.2 ROCM used to build PyTorch: N/A OS: Arch Linux (x86_64) GCC version: (GCC) 12.1.0 Clang version: 13.0.1 CMake version: version 3.23.1 Libc version: glibc-2.35 Python version: 3.9.10 | packaged by conda-forge | (main, Feb 1 2022, 21:24:37) [GCC 9.4.0] (64-bit runtime) Python platform: Linux-5.17.4-arch1-1-x86_64-with-glibc2.35 Is CUDA available: True CUDA runtime version: 11.6.112 GPU models and configuration: GPU 0: NVIDIA GeForce GTX 1070 GPU 1: NVIDIA GeForce RTX 3090 GPU 2: NVIDIA GeForce RTX 3090 Nvidia driver version: 510.60.02 cuDNN version: Probably one of the following: /usr/lib/libcudnn.so.8.3.3 /usr/lib/libcudnn_adv_infer.so.8.3.3 /usr/lib/libcudnn_adv_train.so.8.3.3 /usr/lib/libcudnn_cnn_infer.so.8.3.3 /usr/lib/libcudnn_cnn_train.so.8.3.3 /usr/lib/libcudnn_ops_infer.so.8.3.3 /usr/lib/libcudnn_ops_train.so.8.3.3 HIP runtime version: N/A MIOpen runtime version: N/A Is XNNPACK available: True Versions of relevant libraries: [pip3] mypy-extensions==0.4.3 [pip3] numpy==1.22.0 [pip3] torch==1.12.0 [conda] numpy 1.22.0 pypi_0 pypi [conda] torch 1.12.0 pypi_0 pypi cc @ezyang @gchanan @zou3519 @anjali411 @dylanbespalko @mruberry @Lezcano @nikitaved @jianyuh @pearu @walterddr @IvanYashchuk @xwang233
1.0
Weird warning using matrix exp for complex tensors - ### 🐛 Describe the bug Warning appears if you run this snippet ```python torch.manual_seed(42) tens = 0.5 * torch.randn(10, 3, 3, dtype=torch.complex64) tens = (0.5 * (tens.transpose(-1, -2) + tens)) tens.imag = torch.matrix_exp(tens.imag) ``` The warning ``` /tmp/ipykernel_18699/1530108168.py:4: UserWarning: An output with one or more elements was resized since it had shape [4, 3, 3], which does not match the required output shape [1, 4, 3, 3]. This behavior is deprecated, and in a future PyTorch release outputs will not be resized unless they have zero elements. You can explicitly reuse an out tensor t by resizing it, inplace, to zero elements with t.resize_(0). (Triggered internally at ../aten/src/ATen/native/Resize.cpp:24.) tens.imag = torch.matrix_exp(tens.imag) ``` It did not happen prior to 1.12 version ### Versions Collecting environment information... PyTorch version: 1.12.0+cu102 Is debug build: False CUDA used to build PyTorch: 10.2 ROCM used to build PyTorch: N/A OS: Arch Linux (x86_64) GCC version: (GCC) 12.1.0 Clang version: 13.0.1 CMake version: version 3.23.1 Libc version: glibc-2.35 Python version: 3.9.10 | packaged by conda-forge | (main, Feb 1 2022, 21:24:37) [GCC 9.4.0] (64-bit runtime) Python platform: Linux-5.17.4-arch1-1-x86_64-with-glibc2.35 Is CUDA available: True CUDA runtime version: 11.6.112 GPU models and configuration: GPU 0: NVIDIA GeForce GTX 1070 GPU 1: NVIDIA GeForce RTX 3090 GPU 2: NVIDIA GeForce RTX 3090 Nvidia driver version: 510.60.02 cuDNN version: Probably one of the following: /usr/lib/libcudnn.so.8.3.3 /usr/lib/libcudnn_adv_infer.so.8.3.3 /usr/lib/libcudnn_adv_train.so.8.3.3 /usr/lib/libcudnn_cnn_infer.so.8.3.3 /usr/lib/libcudnn_cnn_train.so.8.3.3 /usr/lib/libcudnn_ops_infer.so.8.3.3 /usr/lib/libcudnn_ops_train.so.8.3.3 HIP runtime version: N/A MIOpen runtime version: N/A Is XNNPACK available: True Versions of relevant libraries: [pip3] mypy-extensions==0.4.3 [pip3] numpy==1.22.0 [pip3] torch==1.12.0 [conda] numpy 1.22.0 pypi_0 pypi [conda] torch 1.12.0 pypi_0 pypi cc @ezyang @gchanan @zou3519 @anjali411 @dylanbespalko @mruberry @Lezcano @nikitaved @jianyuh @pearu @walterddr @IvanYashchuk @xwang233
priority
weird warning using matrix exp for complex tensors 🐛 describe the bug warning appears if you run this snippet python torch manual seed tens torch randn dtype torch tens tens transpose tens tens imag torch matrix exp tens imag the warning tmp ipykernel py userwarning an output with one or more elements was resized since it had shape which does not match the required output shape this behavior is deprecated and in a future pytorch release outputs will not be resized unless they have zero elements you can explicitly reuse an out tensor t by resizing it inplace to zero elements with t resize triggered internally at aten src aten native resize cpp tens imag torch matrix exp tens imag it did not happen prior to version versions collecting environment information pytorch version is debug build false cuda used to build pytorch rocm used to build pytorch n a os arch linux gcc version gcc clang version cmake version version libc version glibc python version packaged by conda forge main feb bit runtime python platform linux with is cuda available true cuda runtime version gpu models and configuration gpu nvidia geforce gtx gpu nvidia geforce rtx gpu nvidia geforce rtx nvidia driver version cudnn version probably one of the following usr lib libcudnn so usr lib libcudnn adv infer so usr lib libcudnn adv train so usr lib libcudnn cnn infer so usr lib libcudnn cnn train so usr lib libcudnn ops infer so usr lib libcudnn ops train so hip runtime version n a miopen runtime version n a is xnnpack available true versions of relevant libraries mypy extensions numpy torch numpy pypi pypi torch pypi pypi cc ezyang gchanan dylanbespalko mruberry lezcano nikitaved jianyuh pearu walterddr ivanyashchuk
1
168,962
6,392,668,688
IssuesEvent
2017-08-04 03:47:59
vigetlabs/GroundRules
https://api.github.com/repos/vigetlabs/GroundRules
closed
[QA] Device Problems are Displaying Incorrectly
fed high-priority
Browser: Chrome URL: GroundRules.co/devices _Current:_ * When text is the only thing being displayed for a device problem, it is not vertically centered * When an SVG is displayed for a device problem, it is not horizontally centered * When a device problem is opened, the underline for the device problem moves to below the device problem content _Expected:_ * When text is the only thing being displayed for a device problem, it should be vertically centered * When an SVG is displayed for a device problem, it should be horizontally centered * When a device problem is opened, the underline for the device problem should stay directly underneath the device problem
1.0
[QA] Device Problems are Displaying Incorrectly - Browser: Chrome URL: GroundRules.co/devices _Current:_ * When text is the only thing being displayed for a device problem, it is not vertically centered * When an SVG is displayed for a device problem, it is not horizontally centered * When a device problem is opened, the underline for the device problem moves to below the device problem content _Expected:_ * When text is the only thing being displayed for a device problem, it should be vertically centered * When an SVG is displayed for a device problem, it should be horizontally centered * When a device problem is opened, the underline for the device problem should stay directly underneath the device problem
priority
device problems are displaying incorrectly browser chrome url groundrules co devices current when text is the only thing being displayed for a device problem it is not vertically centered when an svg is displayed for a device problem it is not horizontally centered when a device problem is opened the underline for the device problem moves to below the device problem content expected when text is the only thing being displayed for a device problem it should be vertically centered when an svg is displayed for a device problem it should be horizontally centered when a device problem is opened the underline for the device problem should stay directly underneath the device problem
1
697,751
23,951,893,397
IssuesEvent
2022-09-12 12:14:26
younginnovations/iatipublisher
https://api.github.com/repos/younginnovations/iatipublisher
closed
Bug : status issue with location
type: bug priority: high Backend
Context - Desktop - Chrome 102.0.5005.61 Precondition - https://stage.iatipublisher.yipl.com.np/ - Username: Publisher 3 - Password: test1234 - for created activity **Issue 1 : Location reach (@code ) , administrative(@vocabulary and @code ) and exactness(@code) are not mandatory.** Actual Result ![Screenshot from 2022-08-09 13-36-53](https://user-images.githubusercontent.com/78422663/183595696-56eb8b8e-79cf-490d-9371-e3b5aa8afe21.png) Excepted Result - Location reach (@code ) , administrative(@vocabulary and @code ) and exactness(@code) should be mandatory.Please refer to IATI documentation https://iatistandard.org/en/iati-standard/203/activity-standard/iati-activities/iati-activity/location/location-reach/ https://iatistandard.org/en/iati-standard/203/activity-standard/iati-activities/iati-activity/location/administrative/ https://iatistandard.org/en/iati-standard/203/activity-standard/iati-activities/iati-activity/location/exactness/
1.0
Bug : status issue with location - Context - Desktop - Chrome 102.0.5005.61 Precondition - https://stage.iatipublisher.yipl.com.np/ - Username: Publisher 3 - Password: test1234 - for created activity **Issue 1 : Location reach (@code ) , administrative(@vocabulary and @code ) and exactness(@code) are not mandatory.** Actual Result ![Screenshot from 2022-08-09 13-36-53](https://user-images.githubusercontent.com/78422663/183595696-56eb8b8e-79cf-490d-9371-e3b5aa8afe21.png) Excepted Result - Location reach (@code ) , administrative(@vocabulary and @code ) and exactness(@code) should be mandatory.Please refer to IATI documentation https://iatistandard.org/en/iati-standard/203/activity-standard/iati-activities/iati-activity/location/location-reach/ https://iatistandard.org/en/iati-standard/203/activity-standard/iati-activities/iati-activity/location/administrative/ https://iatistandard.org/en/iati-standard/203/activity-standard/iati-activities/iati-activity/location/exactness/
priority
bug status issue with location context desktop chrome precondition username publisher password for created activity issue location reach code administrative vocabulary and code and exactness code are not mandatory actual result excepted result location reach code administrative vocabulary and code and exactness code should be mandatory please refer to iati documentation
1
397,639
11,730,825,873
IssuesEvent
2020-03-10 22:17:44
Ifi-makers/trall-e
https://api.github.com/repos/Ifi-makers/trall-e
closed
What parts are needed?
priority_high
* Hub wheels? How big? * Wood for prototype? * Motor-controller? We need to make a detailed list with parts. Note down some potential candidates as a start.
1.0
What parts are needed? - * Hub wheels? How big? * Wood for prototype? * Motor-controller? We need to make a detailed list with parts. Note down some potential candidates as a start.
priority
what parts are needed hub wheels how big wood for prototype motor controller we need to make a detailed list with parts note down some potential candidates as a start
1
91,751
3,862,557,948
IssuesEvent
2016-04-08 03:47:15
songlink/songlink
https://api.github.com/repos/songlink/songlink
closed
prettify link not found (404) page
chore priority high
We should have a better looking Link Not Found page. Maybe something like "Sorry, this songlink could not be found. Try making a new one [here](http://songl.ink), or contact us [here](songlinkapp@gmail.com).
1.0
prettify link not found (404) page - We should have a better looking Link Not Found page. Maybe something like "Sorry, this songlink could not be found. Try making a new one [here](http://songl.ink), or contact us [here](songlinkapp@gmail.com).
priority
prettify link not found page we should have a better looking link not found page maybe something like sorry this songlink could not be found try making a new one or contact us songlinkapp gmail com
1
268,878
8,415,422,928
IssuesEvent
2018-10-13 14:36:15
nhsconnect/gpconnect
https://api.github.com/repos/nhsconnect/gpconnect
closed
There is no link specified between Location and Organization resources
Appointments Foundations High priority
Organization and Location resources should be linked together using the Location.managingOrganization element. This allows you to determine, for example, that a branch surgery is part of a GP practice. We haven’t explicitly called this out and should do on Search For Free Slots and Read Location.
1.0
There is no link specified between Location and Organization resources - Organization and Location resources should be linked together using the Location.managingOrganization element. This allows you to determine, for example, that a branch surgery is part of a GP practice. We haven’t explicitly called this out and should do on Search For Free Slots and Read Location.
priority
there is no link specified between location and organization resources organization and location resources should be linked together using the location managingorganization element this allows you to determine for example that a branch surgery is part of a gp practice we haven’t explicitly called this out and should do on search for free slots and read location
1
781,403
27,436,360,106
IssuesEvent
2023-03-02 07:47:03
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YSQL] TPCC tests with restore failing with "Query error: schema version mismatch for table 000033e800003000800000000000401b: expected 1, got 0"
kind/bug area/ysql priority/high
Jira Link: [DB-2853](https://yugabyte.atlassian.net/browse/DB-2853) ### Description The TPCC perf regression for 1k WH on 2.15.1.0-b122 is failing in execute phase with : `"Query error: schema version mismatch for table 000033e800003000800000000000401b: expected 1, got 0"` Stack trace : ``` java.lang.RuntimeException: Unexpected fatal, error in 'Worker<9440>' when executing 'StockLevel/05' at com.oltpbenchmark.api.Worker.doWork(Worker.java:584) at com.oltpbenchmark.api.Worker.run(Worker.java:368) at java.lang.Thread.run(Thread.java:750) Caused by: org.postgresql.util.PSQLException: ERROR: Query error: schema version mismatch for table 000033e800003000800000000000401b: expected 1, got 0 at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2468) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2211) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:309) at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:446) at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:370) at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:149) at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:108) at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52) at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java) at com.oltpbenchmark.jdbc.InstrumentedPreparedStatement.executeQuery(InstrumentedPreparedStatement.java:35) at com.oltpbenchmark.benchmarks.tpcc.procedures.StockLevel.run(StockLevel.java:98) at com.oltpbenchmark.api.Worker.executeWork(Worker.java:609) at com.oltpbenchmark.api.Worker.doWork(Worker.java:506) ... 2 more ``` The data is loaded using restore from s3. The tests has started failing from 2.15.1.0-b122. The test is running successfully on 2.15.1.0-b121 The suspected check-in : https://phabricator.dev.yugabyte.com/rYBDB61985b6e0cf2ebbcab943c66ddda8138c0075dc1 phabricator diff : https://phabricator.dev.yugabyte.com/D17276
1.0
[YSQL] TPCC tests with restore failing with "Query error: schema version mismatch for table 000033e800003000800000000000401b: expected 1, got 0" - Jira Link: [DB-2853](https://yugabyte.atlassian.net/browse/DB-2853) ### Description The TPCC perf regression for 1k WH on 2.15.1.0-b122 is failing in execute phase with : `"Query error: schema version mismatch for table 000033e800003000800000000000401b: expected 1, got 0"` Stack trace : ``` java.lang.RuntimeException: Unexpected fatal, error in 'Worker<9440>' when executing 'StockLevel/05' at com.oltpbenchmark.api.Worker.doWork(Worker.java:584) at com.oltpbenchmark.api.Worker.run(Worker.java:368) at java.lang.Thread.run(Thread.java:750) Caused by: org.postgresql.util.PSQLException: ERROR: Query error: schema version mismatch for table 000033e800003000800000000000401b: expected 1, got 0 at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2468) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2211) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:309) at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:446) at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:370) at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:149) at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:108) at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52) at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java) at com.oltpbenchmark.jdbc.InstrumentedPreparedStatement.executeQuery(InstrumentedPreparedStatement.java:35) at com.oltpbenchmark.benchmarks.tpcc.procedures.StockLevel.run(StockLevel.java:98) at com.oltpbenchmark.api.Worker.executeWork(Worker.java:609) at com.oltpbenchmark.api.Worker.doWork(Worker.java:506) ... 2 more ``` The data is loaded using restore from s3. The tests has started failing from 2.15.1.0-b122. The test is running successfully on 2.15.1.0-b121 The suspected check-in : https://phabricator.dev.yugabyte.com/rYBDB61985b6e0cf2ebbcab943c66ddda8138c0075dc1 phabricator diff : https://phabricator.dev.yugabyte.com/D17276
priority
tpcc tests with restore failing with query error schema version mismatch for table expected got jira link description the tpcc perf regression for wh on is failing in execute phase with query error schema version mismatch for table expected got stack trace java lang runtimeexception unexpected fatal error in worker when executing stocklevel at com oltpbenchmark api worker dowork worker java at com oltpbenchmark api worker run worker java at java lang thread run thread java caused by org postgresql util psqlexception error query error schema version mismatch for table expected got at org postgresql core queryexecutorimpl receiveerrorresponse queryexecutorimpl java at org postgresql core queryexecutorimpl processresults queryexecutorimpl java at org postgresql core queryexecutorimpl execute queryexecutorimpl java at org postgresql jdbc pgstatement executeinternal pgstatement java at org postgresql jdbc pgstatement execute pgstatement java at org postgresql jdbc pgpreparedstatement executewithflags pgpreparedstatement java at org postgresql jdbc pgpreparedstatement executequery pgpreparedstatement java at com zaxxer hikari pool proxypreparedstatement executequery proxypreparedstatement java at com zaxxer hikari pool hikariproxypreparedstatement executequery hikariproxypreparedstatement java at com oltpbenchmark jdbc instrumentedpreparedstatement executequery instrumentedpreparedstatement java at com oltpbenchmark benchmarks tpcc procedures stocklevel run stocklevel java at com oltpbenchmark api worker executework worker java at com oltpbenchmark api worker dowork worker java more the data is loaded using restore from the tests has started failing from the test is running successfully on the suspected check in phabricator diff
1
300,941
9,214,070,177
IssuesEvent
2019-03-10 17:02:01
inexorgame/entity-system
https://api.github.com/repos/inexorgame/entity-system
opened
Use type erasure to clean up duplicate code
difficulty: advanced priority: high refactoring team: need help
Right now the `providers` and `factories` introduce a lot of boilerplate code that can be reduced by using type erasure. We agreed to use [boost te](https://github.com/boost-experimental/te) for this.
1.0
Use type erasure to clean up duplicate code - Right now the `providers` and `factories` introduce a lot of boilerplate code that can be reduced by using type erasure. We agreed to use [boost te](https://github.com/boost-experimental/te) for this.
priority
use type erasure to clean up duplicate code right now the providers and factories introduce a lot of boilerplate code that can be reduced by using type erasure we agreed to use for this
1
302,030
9,248,924,297
IssuesEvent
2019-03-15 07:59:35
commons-app/apps-android-commons
https://api.github.com/repos/commons-app/apps-android-commons
closed
List of issues that need hotfixes for 2.7
high priority lists nearby
Please rebase and submit PRs for these issues to the `2.7.x-release` branch, so that they can be included in the next hotfix (2.7.1). Essential: - [x] #1395 Directions symbol gets overlapped by recenter button. PR #1423 (wanderlustnyc) - [x] #1393 "My Recent Uploads" empty, spinning forever (@maskaravivek ) - [x] #1413 Security exception. Old PR #1421, new PR #1440 (misaochan) - [x] #1437 Button that opens Google Maps shows always only the coordinates of the first chosen mark (kamilya35231). PR #1446 , **needs to be cherry picked**. - [x] #1441 Compass button hidden by bottom sheet - [x] #1401 User is no longer prompted to send ACRA crash reports PR #1411 (tanvidadu) - [x] #1416 Illegal state exception. PR #1425 (neslihanturan) - [x] #1418 Blank category shown when submitting direct upload from a Nearby item without Commons category. PR #1426 (misaochan) - [x] #1420 Initial permission request during direct upload does not take user to gallery/camera. PR #1424 (misaochan) Nice to have: - [x] #1431 It would be nice to fix one leak too. PR #1432 - [x] #1427 Two NPEs that are new in version 2.7 - might not be needed once #1393 solved - [x] #1412 Crash (SQLiteReadOnlyDatabaseException) when opening another activity after notifications activity (neslihanturan) - [x] #1399 Place description getting overlapped with plus fab button Nearby Activity PR #1405 (Jatin 0312) - [x] #1398 Deletion Button getting disabled after clicking on cancel button PR #1403 - [x] #1419 Values in media details view are empty sometimes
1.0
List of issues that need hotfixes for 2.7 - Please rebase and submit PRs for these issues to the `2.7.x-release` branch, so that they can be included in the next hotfix (2.7.1). Essential: - [x] #1395 Directions symbol gets overlapped by recenter button. PR #1423 (wanderlustnyc) - [x] #1393 "My Recent Uploads" empty, spinning forever (@maskaravivek ) - [x] #1413 Security exception. Old PR #1421, new PR #1440 (misaochan) - [x] #1437 Button that opens Google Maps shows always only the coordinates of the first chosen mark (kamilya35231). PR #1446 , **needs to be cherry picked**. - [x] #1441 Compass button hidden by bottom sheet - [x] #1401 User is no longer prompted to send ACRA crash reports PR #1411 (tanvidadu) - [x] #1416 Illegal state exception. PR #1425 (neslihanturan) - [x] #1418 Blank category shown when submitting direct upload from a Nearby item without Commons category. PR #1426 (misaochan) - [x] #1420 Initial permission request during direct upload does not take user to gallery/camera. PR #1424 (misaochan) Nice to have: - [x] #1431 It would be nice to fix one leak too. PR #1432 - [x] #1427 Two NPEs that are new in version 2.7 - might not be needed once #1393 solved - [x] #1412 Crash (SQLiteReadOnlyDatabaseException) when opening another activity after notifications activity (neslihanturan) - [x] #1399 Place description getting overlapped with plus fab button Nearby Activity PR #1405 (Jatin 0312) - [x] #1398 Deletion Button getting disabled after clicking on cancel button PR #1403 - [x] #1419 Values in media details view are empty sometimes
priority
list of issues that need hotfixes for please rebase and submit prs for these issues to the x release branch so that they can be included in the next hotfix essential directions symbol gets overlapped by recenter button pr wanderlustnyc my recent uploads empty spinning forever maskaravivek security exception old pr new pr misaochan button that opens google maps shows always only the coordinates of the first chosen mark pr needs to be cherry picked compass button hidden by bottom sheet user is no longer prompted to send acra crash reports pr tanvidadu illegal state exception pr neslihanturan blank category shown when submitting direct upload from a nearby item without commons category pr misaochan initial permission request during direct upload does not take user to gallery camera pr misaochan nice to have it would be nice to fix one leak too pr two npes that are new in version might not be needed once solved crash sqlitereadonlydatabaseexception when opening another activity after notifications activity neslihanturan place description getting overlapped with plus fab button nearby activity pr jatin deletion button getting disabled after clicking on cancel button pr values in media details view are empty sometimes
1
370,719
10,948,109,528
IssuesEvent
2019-11-26 08:08:01
CalNourish/ucbfpa-mobile
https://api.github.com/repos/CalNourish/ucbfpa-mobile
closed
Apply for a fee waiver for Apple developer program
high priority prod
We should apply for Apple's fee waiver as we are a nonprofit. https://developer.apple.com/support/membership-fee-waiver/ We probably need to work with the Food Pantry with this.
1.0
Apply for a fee waiver for Apple developer program - We should apply for Apple's fee waiver as we are a nonprofit. https://developer.apple.com/support/membership-fee-waiver/ We probably need to work with the Food Pantry with this.
priority
apply for a fee waiver for apple developer program we should apply for apple s fee waiver as we are a nonprofit we probably need to work with the food pantry with this
1
339,513
10,255,692,597
IssuesEvent
2019-08-21 15:55:35
ansible/galaxy-dev
https://api.github.com/repos/ansible/galaxy-dev
closed
Importer: Implement ansible-test sanity as part of importer
area/backend priority/high
Part of #45 - [x] Allow galaxy-importer to have plugins, so things that depend on galaxy-importer (for example pulp_ansible) are not required to have the same validation checks https://github.com/ansible/galaxy-importer/pull/14 - [x] Make plugin to run `ansible-test sanity` https://github.com/ansible/hub-importer-plugin/pull/1
1.0
Importer: Implement ansible-test sanity as part of importer - Part of #45 - [x] Allow galaxy-importer to have plugins, so things that depend on galaxy-importer (for example pulp_ansible) are not required to have the same validation checks https://github.com/ansible/galaxy-importer/pull/14 - [x] Make plugin to run `ansible-test sanity` https://github.com/ansible/hub-importer-plugin/pull/1
priority
importer implement ansible test sanity as part of importer part of allow galaxy importer to have plugins so things that depend on galaxy importer for example pulp ansible are not required to have the same validation checks make plugin to run ansible test sanity
1
248,900
7,940,737,385
IssuesEvent
2018-07-10 00:07:50
tantivy-search/tantivy
https://api.github.com/repos/tantivy-search/tantivy
closed
Tantivy fails with `Failed purge deletes` error
bug high priority
I am getting a failure starting my application ``` Failed purge deletes: Error(PathDoesNotExist("/SOME_PATH/c475e13ef3ca45128b1f8d9ee42fe994.term") ``` This is on OS X. My computer crashed recently. What's a good way to move forward here? Happy to help writing some code if that helps :)
1.0
Tantivy fails with `Failed purge deletes` error - I am getting a failure starting my application ``` Failed purge deletes: Error(PathDoesNotExist("/SOME_PATH/c475e13ef3ca45128b1f8d9ee42fe994.term") ``` This is on OS X. My computer crashed recently. What's a good way to move forward here? Happy to help writing some code if that helps :)
priority
tantivy fails with failed purge deletes error i am getting a failure starting my application failed purge deletes error pathdoesnotexist some path term this is on os x my computer crashed recently what s a good way to move forward here happy to help writing some code if that helps
1
531,215
15,442,887,086
IssuesEvent
2021-03-08 08:24:30
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
opened
Change docs to imply changes related to revision deployment
Priority/High Type/Bug Type/Docs
### Description: Doc pages should be changed to imply changes related to revision deployment. At all the guides which includes a step of "Publishing" apis, needs to have an additional step to guide user deploy revisions. e.g. Prototype endpoint docs (https://apim.docs.wso2.com/en/next/design/prototype-api/deploy-and-test-mock-apis/ ### Steps to reproduce: ### Affected Product Version: Docs- API-M 4.0.0 ### Environment details (with versions): - OS: - Client: - Env (Docker/K8s): --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
1.0
Change docs to imply changes related to revision deployment - ### Description: Doc pages should be changed to imply changes related to revision deployment. At all the guides which includes a step of "Publishing" apis, needs to have an additional step to guide user deploy revisions. e.g. Prototype endpoint docs (https://apim.docs.wso2.com/en/next/design/prototype-api/deploy-and-test-mock-apis/ ### Steps to reproduce: ### Affected Product Version: Docs- API-M 4.0.0 ### Environment details (with versions): - OS: - Client: - Env (Docker/K8s): --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
priority
change docs to imply changes related to revision deployment description doc pages should be changed to imply changes related to revision deployment at all the guides which includes a step of publishing apis needs to have an additional step to guide user deploy revisions e g prototype endpoint docs steps to reproduce affected product version docs api m environment details with versions os client env docker optional fields related issues suggested labels suggested assignees
1
282,170
8,704,248,625
IssuesEvent
2018-12-05 18:52:21
AICrowd/AIcrowd
https://api.github.com/repos/AICrowd/AIcrowd
closed
Add essential meta tags to all the pages
high priority
_From @spMohanty on April 23, 2018 22:20_ When we share links to different pages right now, because of the lack of relevant meta tags, they dont render properly. For example : <img width="896" alt="screen shot 2018-04-24 at 00 17 02" src="https://user-images.githubusercontent.com/1581312/39156112-11c9e28e-4755-11e8-9925-1593519e6e42.png"> More details about relevant meta tags : https://css-tricks.com/essential-meta-tags-social-media/ Some rails gems seem to deal with most of the heavylifting : * https://github.com/kpumuk/meta-tags * https://github.com/lassebunk/metamagic _Copied from original issue: crowdAI/crowdai#714_
1.0
Add essential meta tags to all the pages - _From @spMohanty on April 23, 2018 22:20_ When we share links to different pages right now, because of the lack of relevant meta tags, they dont render properly. For example : <img width="896" alt="screen shot 2018-04-24 at 00 17 02" src="https://user-images.githubusercontent.com/1581312/39156112-11c9e28e-4755-11e8-9925-1593519e6e42.png"> More details about relevant meta tags : https://css-tricks.com/essential-meta-tags-social-media/ Some rails gems seem to deal with most of the heavylifting : * https://github.com/kpumuk/meta-tags * https://github.com/lassebunk/metamagic _Copied from original issue: crowdAI/crowdai#714_
priority
add essential meta tags to all the pages from spmohanty on april when we share links to different pages right now because of the lack of relevant meta tags they dont render properly for example img width alt screen shot at src more details about relevant meta tags some rails gems seem to deal with most of the heavylifting copied from original issue crowdai crowdai
1
106,782
4,283,807,324
IssuesEvent
2016-07-15 14:41:15
ubuntudesign/snapcraft.io
https://api.github.com/repos/ubuntudesign/snapcraft.io
closed
contextual footer - update
Priority: high
Under "Learn more" - Read the docs link should link to snacraft.io/docs (without external link icon) - add FAQ with external link icon and link to https://developer.ubuntu.com/en/snappy/support/faq/ Under "Contribute" - "Create a snap" should link to /create (without external link icon) - as a second link, add "Community" with link to /community
1.0
contextual footer - update - Under "Learn more" - Read the docs link should link to snacraft.io/docs (without external link icon) - add FAQ with external link icon and link to https://developer.ubuntu.com/en/snappy/support/faq/ Under "Contribute" - "Create a snap" should link to /create (without external link icon) - as a second link, add "Community" with link to /community
priority
contextual footer update under learn more read the docs link should link to snacraft io docs without external link icon add faq with external link icon and link to under contribute create a snap should link to create without external link icon as a second link add community with link to community
1
264,723
8,318,968,013
IssuesEvent
2018-09-25 15:55:10
biocore/qiita
https://api.github.com/repos/biocore/qiita
closed
jobs should be chained vs. jobs submitting new jobs
priority: high
Currently, when a job finishes it creates a new set of jobs to validate; we should chain all these jobs so they don't need to validate in different jobs.
1.0
jobs should be chained vs. jobs submitting new jobs - Currently, when a job finishes it creates a new set of jobs to validate; we should chain all these jobs so they don't need to validate in different jobs.
priority
jobs should be chained vs jobs submitting new jobs currently when a job finishes it creates a new set of jobs to validate we should chain all these jobs so they don t need to validate in different jobs
1
739,303
25,590,282,837
IssuesEvent
2022-12-01 12:29:27
BHoM/LadybugTools_Toolkit
https://api.github.com/repos/BHoM/LadybugTools_Toolkit
closed
Speed up post-processing of SpatialResults moisture matrix and UTCI
size:L type:feature priority:high
<!-- PLEASE ENSURE YOU REVIEW THE CONTENT OF EACH ISSUE CAREFULLY, INCLUDING SUBSEQUENT COMMENTS BY YOURSELF OR OTHERS. --> <!-- IN PARTICULAR PLEASE ENSURE THAT SENSITIVE OR INAPPROPRIATE INFORMATION IS NOT UPLOADED --> #### Description: <!-- Describe your idea. Including details of the intended functionality, expected behaviour and desired inputs and outputs --> Slowdown mainly due to large array maths being done in for-loops. Using Numpy properly (mapping processes across like-shaped arrays) should handle this faster, or even trying out something like Dask to better handle the processing of larger-than-memory datasets could work.
1.0
Speed up post-processing of SpatialResults moisture matrix and UTCI - <!-- PLEASE ENSURE YOU REVIEW THE CONTENT OF EACH ISSUE CAREFULLY, INCLUDING SUBSEQUENT COMMENTS BY YOURSELF OR OTHERS. --> <!-- IN PARTICULAR PLEASE ENSURE THAT SENSITIVE OR INAPPROPRIATE INFORMATION IS NOT UPLOADED --> #### Description: <!-- Describe your idea. Including details of the intended functionality, expected behaviour and desired inputs and outputs --> Slowdown mainly due to large array maths being done in for-loops. Using Numpy properly (mapping processes across like-shaped arrays) should handle this faster, or even trying out something like Dask to better handle the processing of larger-than-memory datasets could work.
priority
speed up post processing of spatialresults moisture matrix and utci description slowdown mainly due to large array maths being done in for loops using numpy properly mapping processes across like shaped arrays should handle this faster or even trying out something like dask to better handle the processing of larger than memory datasets could work
1
304,187
9,322,248,063
IssuesEvent
2019-03-27 07:33:51
wso2/product-is
https://api.github.com/repos/wso2/product-is
closed
Product copyrights notice needs to be updated to reflect 2019
Affected/5.8.0-Alpha2 Complexity/Low Component/Management Console Priority/Highest Severity/Blocker Status/In Progress Type/Task
Product copyrights notice needs to be updated to reflect 2019 It says: © 2005 - 2018 WSO2 Inc. All Rights Reserved.
1.0
Product copyrights notice needs to be updated to reflect 2019 - Product copyrights notice needs to be updated to reflect 2019 It says: © 2005 - 2018 WSO2 Inc. All Rights Reserved.
priority
product copyrights notice needs to be updated to reflect product copyrights notice needs to be updated to reflect it says © inc all rights reserved
1
72,872
3,392,172,529
IssuesEvent
2015-11-30 18:27:15
thesgc/chembiohub_helpdesk
https://api.github.com/repos/thesgc/chembiohub_helpdesk
closed
http://stackoverflow.com/questions/23244389/angularjs-abort-all-pending-http-req
app: ChemReg bug name: Andrew Stretton priority: High URL
http://stackoverflow.com/questions/23244389/angularjs-abort-all-pending-http-requests-on-route-change We currently do not stop the HTTP requests when the URL is changed this can lead to unexpected behaviour date recorded in spreadsheet: 21/04/2015 01:30:13
1.0
http://stackoverflow.com/questions/23244389/angularjs-abort-all-pending-http-req - http://stackoverflow.com/questions/23244389/angularjs-abort-all-pending-http-requests-on-route-change We currently do not stop the HTTP requests when the URL is changed this can lead to unexpected behaviour date recorded in spreadsheet: 21/04/2015 01:30:13
priority
we currently do not stop the http requests when the url is changed this can lead to unexpected behaviour date recorded in spreadsheet
1
357,537
10,608,258,940
IssuesEvent
2019-10-11 07:02:51
canonical-web-and-design/maas-ui
https://api.github.com/repos/canonical-web-and-design/maas-ui
closed
Client stuck on loading if issue parsing csrf token on server
Bug 🐛 Priority: High
If maas server has csrf authentication enabled, the client will sit in a "loading" state indefinitely without an error. The client should be raising a PROTOCOL_ERROR with the error "Invalid CSRF token", but this is not surfaced to the client.
1.0
Client stuck on loading if issue parsing csrf token on server - If maas server has csrf authentication enabled, the client will sit in a "loading" state indefinitely without an error. The client should be raising a PROTOCOL_ERROR with the error "Invalid CSRF token", but this is not surfaced to the client.
priority
client stuck on loading if issue parsing csrf token on server if maas server has csrf authentication enabled the client will sit in a loading state indefinitely without an error the client should be raising a protocol error with the error invalid csrf token but this is not surfaced to the client
1
314,758
9,602,519,802
IssuesEvent
2019-05-10 14:46:43
goharbor/harbor
https://api.github.com/repos/goharbor/harbor
closed
The cfg migrator thinks I'm using external DB when I'm not
area/upgrade priority/high target/1.8.0
Migration from v1.6.0 -> v1.8.0 I'm using local DB, but after migration the `external_database` and `external_redis` are enabled in `harbor.yml`
1.0
The cfg migrator thinks I'm using external DB when I'm not - Migration from v1.6.0 -> v1.8.0 I'm using local DB, but after migration the `external_database` and `external_redis` are enabled in `harbor.yml`
priority
the cfg migrator thinks i m using external db when i m not migration from i m using local db but after migration the external database and external redis are enabled in harbor yml
1
727,869
25,049,081,834
IssuesEvent
2022-11-05 16:53:02
zyzmoz/global-player
https://api.github.com/repos/zyzmoz/global-player
closed
feature: Create Player Review Page
enhancement hacktoberfest-accepted frontend css high-priority
# Overview Create the page using mock data following designs [here](https://www.figma.com/file/ziqdszqhMbmj61LDNFw2E6/Supernova%3A-Global-Player?node-id=1564%3A14346) and [here](https://www.figma.com/file/ziqdszqhMbmj61LDNFw2E6/Supernova%3A-Global-Player?node-id=1564%3A14438) # Acceptance Criteria The page should be similar to the designs # Out of Scope Backend integration
1.0
feature: Create Player Review Page - # Overview Create the page using mock data following designs [here](https://www.figma.com/file/ziqdszqhMbmj61LDNFw2E6/Supernova%3A-Global-Player?node-id=1564%3A14346) and [here](https://www.figma.com/file/ziqdszqhMbmj61LDNFw2E6/Supernova%3A-Global-Player?node-id=1564%3A14438) # Acceptance Criteria The page should be similar to the designs # Out of Scope Backend integration
priority
feature create player review page overview create the page using mock data following designs and acceptance criteria the page should be similar to the designs out of scope backend integration
1
177,580
6,585,283,496
IssuesEvent
2017-09-13 13:32:33
lesteenman/pcsa-drupal-theme
https://api.github.com/repos/lesteenman/pcsa-drupal-theme
reopened
Verplicht aanwezigheid aangeven
feature high priority
Na het inloggen, verplicht aanwezigheid aangeven voor nieuwe activiteiten
1.0
Verplicht aanwezigheid aangeven - Na het inloggen, verplicht aanwezigheid aangeven voor nieuwe activiteiten
priority
verplicht aanwezigheid aangeven na het inloggen verplicht aanwezigheid aangeven voor nieuwe activiteiten
1
516,337
14,979,886,028
IssuesEvent
2021-01-28 12:54:25
FAIRsharing/fairsharing.github.io
https://api.github.com/repos/FAIRsharing/fairsharing.github.io
closed
Refactoring search layout
High priority
As part of implementing search mockups (assuming they remain stable) the search interface could be refactored. See also: - [x] add Full-width Footer, - [x] simplifying right panel scroll, - [x] change JumpTopTop functionality, - [x] simplifyed records structure., - [x] simplifyed right panel scroll - [x] improve header behavior - [x] removed navigation utils - [x] different improvement in various place of codes - [x] improving sticky chips holder by reducing the tag and adding sticky behavior. - [x] sticky behavior for left panel (searchInput.vue) - [x] return back header in Record(bug) https://github.com/FAIRsharing/fairsharing.github.io/pull/553 (possible basis for this). https://github.com/FAIRsharing/fairsharing.github.io/issues/562 (can be done as part of it). Please keep pull requests small, with tests passing beforehand.
1.0
Refactoring search layout - As part of implementing search mockups (assuming they remain stable) the search interface could be refactored. See also: - [x] add Full-width Footer, - [x] simplifying right panel scroll, - [x] change JumpTopTop functionality, - [x] simplifyed records structure., - [x] simplifyed right panel scroll - [x] improve header behavior - [x] removed navigation utils - [x] different improvement in various place of codes - [x] improving sticky chips holder by reducing the tag and adding sticky behavior. - [x] sticky behavior for left panel (searchInput.vue) - [x] return back header in Record(bug) https://github.com/FAIRsharing/fairsharing.github.io/pull/553 (possible basis for this). https://github.com/FAIRsharing/fairsharing.github.io/issues/562 (can be done as part of it). Please keep pull requests small, with tests passing beforehand.
priority
refactoring search layout as part of implementing search mockups assuming they remain stable the search interface could be refactored see also add full width footer simplifying right panel scroll change jumptoptop functionality simplifyed records structure simplifyed right panel scroll improve header behavior removed navigation utils different improvement in various place of codes improving sticky chips holder by reducing the tag and adding sticky behavior sticky behavior for left panel searchinput vue return back header in record bug possible basis for this can be done as part of it please keep pull requests small with tests passing beforehand
1
559,897
16,580,383,710
IssuesEvent
2021-05-31 10:56:55
karaxnim/karax
https://api.github.com/repos/karaxnim/karax
closed
"carousels" example doesn't work
bug high priority regression
When clicking on any button: ![image](https://user-images.githubusercontent.com/22991711/63903632-6edf6d80-ca0e-11e9-89e5-676e3e0fdd91.png) I can't get VComponents to work with event handlers in general. Nim 0.20.2, Karax@#head.
1.0
"carousels" example doesn't work - When clicking on any button: ![image](https://user-images.githubusercontent.com/22991711/63903632-6edf6d80-ca0e-11e9-89e5-676e3e0fdd91.png) I can't get VComponents to work with event handlers in general. Nim 0.20.2, Karax@#head.
priority
carousels example doesn t work when clicking on any button i can t get vcomponents to work with event handlers in general nim karax head
1
652,533
21,555,438,571
IssuesEvent
2022-04-30 10:32:20
ISPP-AparkApp/aparkapp-frontend
https://api.github.com/repos/ISPP-AparkApp/aparkapp-frontend
closed
Notificaciones
enhancement high priority
Incluye mejora de notificaciones actuales y notificaciones de tiempo de espera. La parte de Pago depende de la tarea #33
1.0
Notificaciones - Incluye mejora de notificaciones actuales y notificaciones de tiempo de espera. La parte de Pago depende de la tarea #33
priority
notificaciones incluye mejora de notificaciones actuales y notificaciones de tiempo de espera la parte de pago depende de la tarea
1
234,475
7,721,553,130
IssuesEvent
2018-05-24 06:03:29
DashboardHub/PipelineDashboard
https://api.github.com/repos/DashboardHub/PipelineDashboard
closed
Deletes to have confirmation message (confirm/cancel)
priority: high size: 3 stack: ui
### Requirements All deletes to have confirmation message, so they can not get deleted by accident. **UI** - [x] Token delete - [x] Monitor delete - [ ] Environment delete
1.0
Deletes to have confirmation message (confirm/cancel) - ### Requirements All deletes to have confirmation message, so they can not get deleted by accident. **UI** - [x] Token delete - [x] Monitor delete - [ ] Environment delete
priority
deletes to have confirmation message confirm cancel requirements all deletes to have confirmation message so they can not get deleted by accident ui token delete monitor delete environment delete
1
314,771
9,602,783,327
IssuesEvent
2019-05-10 15:21:11
Wikidata/soweego
https://api.github.com/repos/Wikidata/soweego
closed
Too many SPARQL queries sent when gathering the occupation tree
bug high priority
The Wikidata SPARQL endpoint responded with a `429` HTTP error code when retrieving occupation subclasses for **IMDb director**. The following error message is emitted after `workflow.extract_features#135`: ``` 429 Too Many Requests - Query: SELECT DISTINCT ?item WHERE { ?item wdt:P279* wd:Q7042855 . } ``` The command that hit this is `python -m soweego linker classify imdb director`, launched in the `soweego-1` VPS instance.
1.0
Too many SPARQL queries sent when gathering the occupation tree - The Wikidata SPARQL endpoint responded with a `429` HTTP error code when retrieving occupation subclasses for **IMDb director**. The following error message is emitted after `workflow.extract_features#135`: ``` 429 Too Many Requests - Query: SELECT DISTINCT ?item WHERE { ?item wdt:P279* wd:Q7042855 . } ``` The command that hit this is `python -m soweego linker classify imdb director`, launched in the `soweego-1` VPS instance.
priority
too many sparql queries sent when gathering the occupation tree the wikidata sparql endpoint responded with a http error code when retrieving occupation subclasses for imdb director the following error message is emitted after workflow extract features too many requests query select distinct item where item wdt wd the command that hit this is python m soweego linker classify imdb director launched in the soweego vps instance
1
447,565
12,889,960,184
IssuesEvent
2020-07-13 15:16:30
enso-org/enso
https://api.github.com/repos/enso-org/enso
closed
The project with its old name still exists after it's renamed
Category: Backend Change: Non-Breaking Difficulty: Core Contributor Priority: Highest Type: Bug
### General Summary When renaming a project, another copy with the old project name still exists. ### Steps to Reproduce 1. Launch IDE without passing the `--project` argument, which will open a newly created `Untitled` project printing a "Hello, World" message. 2. Apply any change. 3. Rename the project to `NewProjectName`, for instance. 4. Save it (ctrl+s). 5. Close IDE. 6. Verify if the project was renamed to the new name by opening it by passing `--project NewProjectName` argument to IDE. 7. Close IDE agan. 7. Relaunch IDE without passing `--project` again, so it opens another newly created `Untitled` project printing a "Hell, World" message. 8. Here is the error: The `Untitled` project has the same content of the renamed project. ### Expected Result The old "Untitled" project should be removed once it's renamed so IDE can verify that it doesn't exist and create a new one. Please check the process defined in https://github.com/enso-org/ide/issues/584 for reference. ### Actual Result ![project-renaming](https://user-images.githubusercontent.com/1069140/86308062-ab5f9500-bbee-11ea-9bfa-ce20d482261c.gif) ### Enso Version ``` Enso Compiler and Runtime Version: 0.0.1 Built with: scala-2.13.3 for GraalVM 20.1.0 Built from: main* @ c3a0d249b120f1e7d3cd1a750fd3c66e645e3518 Running on: OpenJDK 64-Bit Server VM, GraalVM Community, JDK 11.0.7+10-jvmci-20.1-b02 Linux 5.4.0-39-generic (amd64) ```
1.0
The project with its old name still exists after it's renamed - ### General Summary When renaming a project, another copy with the old project name still exists. ### Steps to Reproduce 1. Launch IDE without passing the `--project` argument, which will open a newly created `Untitled` project printing a "Hello, World" message. 2. Apply any change. 3. Rename the project to `NewProjectName`, for instance. 4. Save it (ctrl+s). 5. Close IDE. 6. Verify if the project was renamed to the new name by opening it by passing `--project NewProjectName` argument to IDE. 7. Close IDE agan. 7. Relaunch IDE without passing `--project` again, so it opens another newly created `Untitled` project printing a "Hell, World" message. 8. Here is the error: The `Untitled` project has the same content of the renamed project. ### Expected Result The old "Untitled" project should be removed once it's renamed so IDE can verify that it doesn't exist and create a new one. Please check the process defined in https://github.com/enso-org/ide/issues/584 for reference. ### Actual Result ![project-renaming](https://user-images.githubusercontent.com/1069140/86308062-ab5f9500-bbee-11ea-9bfa-ce20d482261c.gif) ### Enso Version ``` Enso Compiler and Runtime Version: 0.0.1 Built with: scala-2.13.3 for GraalVM 20.1.0 Built from: main* @ c3a0d249b120f1e7d3cd1a750fd3c66e645e3518 Running on: OpenJDK 64-Bit Server VM, GraalVM Community, JDK 11.0.7+10-jvmci-20.1-b02 Linux 5.4.0-39-generic (amd64) ```
priority
the project with its old name still exists after it s renamed general summary when renaming a project another copy with the old project name still exists steps to reproduce launch ide without passing the project argument which will open a newly created untitled project printing a hello world message apply any change rename the project to newprojectname for instance save it ctrl s close ide verify if the project was renamed to the new name by opening it by passing project newprojectname argument to ide close ide agan relaunch ide without passing project again so it opens another newly created untitled project printing a hell world message here is the error the untitled project has the same content of the renamed project expected result the old untitled project should be removed once it s renamed so ide can verify that it doesn t exist and create a new one please check the process defined in for reference actual result enso version enso compiler and runtime version built with scala for graalvm built from main running on openjdk bit server vm graalvm community jdk jvmci linux generic
1
622,367
19,622,981,164
IssuesEvent
2022-01-07 09:31:46
fossasia/open-event-frontend
https://api.github.com/repos/fossasia/open-event-frontend
reopened
New session email to organizers uses CfS link and needs text improvements
bug enhancement Priority: High
The "new session" email to organizers uses the CfS link of the session which is used for speakers. When changing this email, please also enhance the email. So expected is: It should use the organizer session link. 1. Current email and link: Hi office@fossasia.org, The event FOSSASIA Summit 2021 has received a new session proposal. Visit this link to view the session: https://eventyay.com/e/fa96ae2c/cfs/session/6760 2. Correct link would be: https://eventyay.com/events/fa96ae2c/session/6760 3. Change email text as follows: Subject: New session proposal for the {event_name} titled "{session_title}". Hello, This is an automatic email from {app name} for organizers of the "{event_name}" [add link to public event page]. Your Call for Speakers [add link to CfS page] has received a new session proposal with the following details: Speaker: {speaker_name} Email: {speaker_email} Bio: {speaker_bio} Session: {session_title} Abstract: {session_abstract} You can view all speaker details on the speaker profile [add link to profile for organizers to "speaker profile"] page and the session proposal on the session page [add link to "session page"]. To change the status of sessions please go to the sessions overview page [add link to sessions overview page] and click on the status badge of the session. Thank you. {app name frontpage} 4. Ensure everything is translatable.
1.0
New session email to organizers uses CfS link and needs text improvements - The "new session" email to organizers uses the CfS link of the session which is used for speakers. When changing this email, please also enhance the email. So expected is: It should use the organizer session link. 1. Current email and link: Hi office@fossasia.org, The event FOSSASIA Summit 2021 has received a new session proposal. Visit this link to view the session: https://eventyay.com/e/fa96ae2c/cfs/session/6760 2. Correct link would be: https://eventyay.com/events/fa96ae2c/session/6760 3. Change email text as follows: Subject: New session proposal for the {event_name} titled "{session_title}". Hello, This is an automatic email from {app name} for organizers of the "{event_name}" [add link to public event page]. Your Call for Speakers [add link to CfS page] has received a new session proposal with the following details: Speaker: {speaker_name} Email: {speaker_email} Bio: {speaker_bio} Session: {session_title} Abstract: {session_abstract} You can view all speaker details on the speaker profile [add link to profile for organizers to "speaker profile"] page and the session proposal on the session page [add link to "session page"]. To change the status of sessions please go to the sessions overview page [add link to sessions overview page] and click on the status badge of the session. Thank you. {app name frontpage} 4. Ensure everything is translatable.
priority
new session email to organizers uses cfs link and needs text improvements the new session email to organizers uses the cfs link of the session which is used for speakers when changing this email please also enhance the email so expected is it should use the organizer session link current email and link hi office fossasia org the event fossasia summit has received a new session proposal visit this link to view the session correct link would be change email text as follows subject new session proposal for the event name titled session title hello this is an automatic email from app name for organizers of the event name your call for speakers has received a new session proposal with the following details speaker speaker name email speaker email bio speaker bio session session title abstract session abstract you can view all speaker details on the speaker profile page and the session proposal on the session page to change the status of sessions please go to the sessions overview page and click on the status badge of the session thank you app name frontpage ensure everything is translatable
1
630,885
20,119,898,962
IssuesEvent
2022-02-08 00:25:49
BlueCodeSystems/opensrp-client-ecap-chw
https://api.github.com/repos/BlueCodeSystems/opensrp-client-ecap-chw
opened
On caregiver vulnerability add message toasts if the option "No" is selected on the fields on "HIV Risk Assessment of Primary Caregiver"
High Priority
- [ ] Do you have any of the following symptoms? (A) Current cough, (B) Fever, (C) Weight loss, (D) Night sweats - Message toast (Test for HIV & TB). - [ ] Do you have any of the following on your private parts?(A) sores, (B) Blisters, (C) Unusual Discharge - Message toast (Test for HIV & Treat STI). - [ ] In the last 6 months, have you been exposed to HIV through a needle stick, an injection, or a piercing? - Message toast (Test for HIV). - [ ] In the last 12 months, have you had unprotected sex without using a condom with someone whose HIV status you did not know or who was HIV- positive? - Message toast (Test for HIV). - [ ] Are you pregnant or breastfeeding? - Message toast (Test for HIV).
1.0
On caregiver vulnerability add message toasts if the option "No" is selected on the fields on "HIV Risk Assessment of Primary Caregiver" - - [ ] Do you have any of the following symptoms? (A) Current cough, (B) Fever, (C) Weight loss, (D) Night sweats - Message toast (Test for HIV & TB). - [ ] Do you have any of the following on your private parts?(A) sores, (B) Blisters, (C) Unusual Discharge - Message toast (Test for HIV & Treat STI). - [ ] In the last 6 months, have you been exposed to HIV through a needle stick, an injection, or a piercing? - Message toast (Test for HIV). - [ ] In the last 12 months, have you had unprotected sex without using a condom with someone whose HIV status you did not know or who was HIV- positive? - Message toast (Test for HIV). - [ ] Are you pregnant or breastfeeding? - Message toast (Test for HIV).
priority
on caregiver vulnerability add message toasts if the option no is selected on the fields on hiv risk assessment of primary caregiver do you have any of the following symptoms a current cough b fever c weight loss d night sweats message toast test for hiv tb do you have any of the following on your private parts a sores b blisters c unusual discharge message toast test for hiv treat sti in the last months have you been exposed to hiv through a needle stick an injection or a piercing message toast test for hiv in the last months have you had unprotected sex without using a condom with someone whose hiv status you did not know or who was hiv positive message toast test for hiv are you pregnant or breastfeeding message toast test for hiv
1
87,122
3,737,139,535
IssuesEvent
2016-03-08 18:13:57
nunomazer/ongonline
https://api.github.com/repos/nunomazer/ongonline
opened
Criar usuários
help wanted Priority High
Utilizando as rotinas de gestão de usuários, criar: Marcel Lidiane Ana Carolina
1.0
Criar usuários - Utilizando as rotinas de gestão de usuários, criar: Marcel Lidiane Ana Carolina
priority
criar usuários utilizando as rotinas de gestão de usuários criar marcel lidiane ana carolina
1
64,681
3,214,147,003
IssuesEvent
2015-10-06 23:27:36
nochowderforyou/clams
https://api.github.com/repos/nochowderforyou/clams
closed
is there a working testnet chain?
4 - In Progress Priority High
A while ago I tried connecting to the CLAM testnet but couldn't find any peers. I don't know if there even is a testnet chain in existence, and if not how to go about starting one. I guess there's some proof of work that needs doing, and initial distribution. It would be useful to have a testnet to try new releases against before switching to the new releases on the mainnet.
1.0
is there a working testnet chain? - A while ago I tried connecting to the CLAM testnet but couldn't find any peers. I don't know if there even is a testnet chain in existence, and if not how to go about starting one. I guess there's some proof of work that needs doing, and initial distribution. It would be useful to have a testnet to try new releases against before switching to the new releases on the mainnet.
priority
is there a working testnet chain a while ago i tried connecting to the clam testnet but couldn t find any peers i don t know if there even is a testnet chain in existence and if not how to go about starting one i guess there s some proof of work that needs doing and initial distribution it would be useful to have a testnet to try new releases against before switching to the new releases on the mainnet
1
577,316
17,107,790,557
IssuesEvent
2021-07-09 21:00:20
iantaylor-NOAA/Lingcod_2021
https://api.github.com/repos/iantaylor-NOAA/Lingcod_2021
reopened
likelihood profiles
sensitivity w/ high priority
I am making a csv file with the parameter names, low, high, and step sizes for likelihood profiles and I am wondering how we profile over M when there is female and male M, is it standard to do a profile for each parameter or should they both be turned on at the same time?
1.0
likelihood profiles - I am making a csv file with the parameter names, low, high, and step sizes for likelihood profiles and I am wondering how we profile over M when there is female and male M, is it standard to do a profile for each parameter or should they both be turned on at the same time?
priority
likelihood profiles i am making a csv file with the parameter names low high and step sizes for likelihood profiles and i am wondering how we profile over m when there is female and male m is it standard to do a profile for each parameter or should they both be turned on at the same time
1
43,127
2,882,920,362
IssuesEvent
2015-06-11 08:57:57
neocities/neocities
https://api.github.com/repos/neocities/neocities
closed
Put limit on the number of uploaded files
bug high priority
Someone decided to dump 25,000 files on a single site for every outcome to his poll instead of learning how to use javascript to dynamically generate the result. :) It's gumming things up. We need to set a limit to the amount of uploadable files. Current idea is 1,000 files.
1.0
Put limit on the number of uploaded files - Someone decided to dump 25,000 files on a single site for every outcome to his poll instead of learning how to use javascript to dynamically generate the result. :) It's gumming things up. We need to set a limit to the amount of uploadable files. Current idea is 1,000 files.
priority
put limit on the number of uploaded files someone decided to dump files on a single site for every outcome to his poll instead of learning how to use javascript to dynamically generate the result it s gumming things up we need to set a limit to the amount of uploadable files current idea is files
1
221,766
7,395,966,539
IssuesEvent
2018-03-18 05:51:07
CS2103JAN2018-W11-B4/main
https://api.github.com/repos/CS2103JAN2018-W11-B4/main
opened
Update Developer Guide to include proposed features
priority.high status.ongoing
As mentioned by Joanne in the PR, "IMPORTANT I would want you to mention the following in your Developer guide For each team member what are the features (major and minor) you are proposing? 1. Within the scope of the project, how does it fit in (just a one or 2 line summary) 2. Please do this by end of day Monday 19 March." We would need to add our proposed feature and who would be doing them by **Monday 19 March**
1.0
Update Developer Guide to include proposed features - As mentioned by Joanne in the PR, "IMPORTANT I would want you to mention the following in your Developer guide For each team member what are the features (major and minor) you are proposing? 1. Within the scope of the project, how does it fit in (just a one or 2 line summary) 2. Please do this by end of day Monday 19 March." We would need to add our proposed feature and who would be doing them by **Monday 19 March**
priority
update developer guide to include proposed features as mentioned by joanne in the pr important i would want you to mention the following in your developer guide for each team member what are the features major and minor you are proposing within the scope of the project how does it fit in just a one or line summary please do this by end of day monday march we would need to add our proposed feature and who would be doing them by monday march
1
590,959
17,791,978,817
IssuesEvent
2021-08-31 17:15:51
woocommerce/woocommerce-gateway-stripe
https://api.github.com/repos/woocommerce/woocommerce-gateway-stripe
closed
Missing product subtotal in for Express Payment method in both block checkout flow and shortcode checkout flow.
priority: high type: bug component: payment request buttons
**Describe the bug** I first discovered this while testing the Express Payment method integration for the Cart and Checkout block but discovered it also happens for the express payment method integration in the shortcode checkout flows as well. This _also_ happens with WooCommerce Payments. The issue is that the payment request modal (Reproduced with Google Pay and Browser Payment Request button) is not showing the products subtotal (but is showing the correct grand total). However, when I test with the blocks integration with Stripe build into WooCommerce Blocks, the subtotal _is_ showing correctly. **Testing environment:** - Stripe or WooCommerce Payments `trunk` - production build. I was able to reproduce the same thing for both (but I was testing with only one of the payment methods active). - WooCommerce blocks `trunk`. - Test mode for payments. My taxes setup is this: <img width="723" alt="CleanShot 2021-06-15 at 14 52 05@2x" src="https://user-images.githubusercontent.com/1429108/122108166-dfc16680-cde9-11eb-8dc0-3a73fc8c31b0.png"> **To Reproduce** Testing involves adding a product to the cart and triggering Express payment method to checkout (I tested Google Pay via Chrome and Browser Payment Request via Edge). When the Express Payment modal loads, you'll see that there is a shipping subtotal and a taxes subtotal, but the product subtotal is not present. Grand Total _is_ correct though. Here's some screenshots of the broken behaviour: Browser PaymentRequest button on edge (Stripe and WooCommerce Payments): <img width="558" alt="CleanShot 2021-06-15 at 14 39 38@2x" src="https://user-images.githubusercontent.com/1429108/122107393-029f4b00-cde9-11eb-8b0d-1e7d8376a8e3.png"> Google Pay (Stripe and WooCommerce Payments): <img width="637" alt="CleanShot 2021-06-15 at 15 08 57@2x" src="https://user-images.githubusercontent.com/1429108/122109723-ae499a80-cdeb-11eb-96cb-c1c03ae13766.png"> However, if I test with the built-in blocks integration for Stripe, I get the expected behaviour. **To test built-in blocks integration:** Comment out [this line](https://github.com/woocommerce/woocommerce-gateway-stripe/blob/ae73978f0012a250f89c377f34b9b89358f1cca1/woocommerce-gateway-stripe.php#L421). Here's what it looks like when working as expected: Built In Blocks integration Google Pay: <img width="631" alt="CleanShot 2021-06-15 at 15 10 51@2x" src="https://user-images.githubusercontent.com/1429108/122109928-ea7cfb00-cdeb-11eb-9769-8b7ea1d8d08b.png"> Built in Blocks Integration Browser PaymentRequest button: <img width="539" alt="CleanShot 2021-06-15 at 14 44 17@2x" src="https://user-images.githubusercontent.com/1429108/122107580-38dcca80-cde9-11eb-8c6c-71c38101916f.png">
1.0
Missing product subtotal in for Express Payment method in both block checkout flow and shortcode checkout flow. - **Describe the bug** I first discovered this while testing the Express Payment method integration for the Cart and Checkout block but discovered it also happens for the express payment method integration in the shortcode checkout flows as well. This _also_ happens with WooCommerce Payments. The issue is that the payment request modal (Reproduced with Google Pay and Browser Payment Request button) is not showing the products subtotal (but is showing the correct grand total). However, when I test with the blocks integration with Stripe build into WooCommerce Blocks, the subtotal _is_ showing correctly. **Testing environment:** - Stripe or WooCommerce Payments `trunk` - production build. I was able to reproduce the same thing for both (but I was testing with only one of the payment methods active). - WooCommerce blocks `trunk`. - Test mode for payments. My taxes setup is this: <img width="723" alt="CleanShot 2021-06-15 at 14 52 05@2x" src="https://user-images.githubusercontent.com/1429108/122108166-dfc16680-cde9-11eb-8dc0-3a73fc8c31b0.png"> **To Reproduce** Testing involves adding a product to the cart and triggering Express payment method to checkout (I tested Google Pay via Chrome and Browser Payment Request via Edge). When the Express Payment modal loads, you'll see that there is a shipping subtotal and a taxes subtotal, but the product subtotal is not present. Grand Total _is_ correct though. Here's some screenshots of the broken behaviour: Browser PaymentRequest button on edge (Stripe and WooCommerce Payments): <img width="558" alt="CleanShot 2021-06-15 at 14 39 38@2x" src="https://user-images.githubusercontent.com/1429108/122107393-029f4b00-cde9-11eb-8b0d-1e7d8376a8e3.png"> Google Pay (Stripe and WooCommerce Payments): <img width="637" alt="CleanShot 2021-06-15 at 15 08 57@2x" src="https://user-images.githubusercontent.com/1429108/122109723-ae499a80-cdeb-11eb-96cb-c1c03ae13766.png"> However, if I test with the built-in blocks integration for Stripe, I get the expected behaviour. **To test built-in blocks integration:** Comment out [this line](https://github.com/woocommerce/woocommerce-gateway-stripe/blob/ae73978f0012a250f89c377f34b9b89358f1cca1/woocommerce-gateway-stripe.php#L421). Here's what it looks like when working as expected: Built In Blocks integration Google Pay: <img width="631" alt="CleanShot 2021-06-15 at 15 10 51@2x" src="https://user-images.githubusercontent.com/1429108/122109928-ea7cfb00-cdeb-11eb-9769-8b7ea1d8d08b.png"> Built in Blocks Integration Browser PaymentRequest button: <img width="539" alt="CleanShot 2021-06-15 at 14 44 17@2x" src="https://user-images.githubusercontent.com/1429108/122107580-38dcca80-cde9-11eb-8c6c-71c38101916f.png">
priority
missing product subtotal in for express payment method in both block checkout flow and shortcode checkout flow describe the bug i first discovered this while testing the express payment method integration for the cart and checkout block but discovered it also happens for the express payment method integration in the shortcode checkout flows as well this also happens with woocommerce payments the issue is that the payment request modal reproduced with google pay and browser payment request button is not showing the products subtotal but is showing the correct grand total however when i test with the blocks integration with stripe build into woocommerce blocks the subtotal is showing correctly testing environment stripe or woocommerce payments trunk production build i was able to reproduce the same thing for both but i was testing with only one of the payment methods active woocommerce blocks trunk test mode for payments my taxes setup is this img width alt cleanshot at src to reproduce testing involves adding a product to the cart and triggering express payment method to checkout i tested google pay via chrome and browser payment request via edge when the express payment modal loads you ll see that there is a shipping subtotal and a taxes subtotal but the product subtotal is not present grand total is correct though here s some screenshots of the broken behaviour browser paymentrequest button on edge stripe and woocommerce payments img width alt cleanshot at src google pay stripe and woocommerce payments img width alt cleanshot at src however if i test with the built in blocks integration for stripe i get the expected behaviour to test built in blocks integration comment out here s what it looks like when working as expected built in blocks integration google pay img width alt cleanshot at src built in blocks integration browser paymentrequest button img width alt cleanshot at src
1
221,347
7,382,228,908
IssuesEvent
2018-03-15 03:27:20
CS2103JAN2018-W13-B4/main
https://api.github.com/repos/CS2103JAN2018-W13-B4/main
closed
11. As a user I want to add a new task
priority.high type.story
Task parameters include: - Name - Priority - Deadline - Date added - Date completed - Description - Subtask - Tag
1.0
11. As a user I want to add a new task - Task parameters include: - Name - Priority - Deadline - Date added - Date completed - Description - Subtask - Tag
priority
as a user i want to add a new task task parameters include name priority deadline date added date completed description subtask tag
1
226,801
7,523,135,287
IssuesEvent
2018-04-12 23:13:12
eriq-augustine/psl
https://api.github.com/repos/eriq-augustine/psl
closed
Support for a Pre-Loaded GroundRuleStore in Weight Learning
Components - Grounding Components - Weight Learning Difficulty - Easy Priority - High
Right now, the weight learning base class (WeightLearningApplication) will check for latent variables and then run grounding. After that it will call into the learning code that children are to implement. However some special cases, specifically structure learning, we will need to run weight learning multiple times on similar models. In this case, we want to be able to pass a pre-grounded GroundRuleStore (GRS) into weight learning. This requires two main pieces: 1. Passing a GroundRuleStore into weight learning constructors. 2. Updating a GroundRuleStore with a new model. Number 1 is pretty simple. It would be nice if we could move out some older/less used WL applications out to PSL Experimental. Number 2 is not very hard. We will need to update the Grounding class to have some method like: update(Model, GroundRuleStore). We could then look for any rules that are in the model, but not the GRS and ground them out. Then look for rules not in the model, but in the GRS and remove them. This is also pretty interesting since we can leave the GroundAtom values at what they currently are after the last WL run as a hot start.
1.0
Support for a Pre-Loaded GroundRuleStore in Weight Learning - Right now, the weight learning base class (WeightLearningApplication) will check for latent variables and then run grounding. After that it will call into the learning code that children are to implement. However some special cases, specifically structure learning, we will need to run weight learning multiple times on similar models. In this case, we want to be able to pass a pre-grounded GroundRuleStore (GRS) into weight learning. This requires two main pieces: 1. Passing a GroundRuleStore into weight learning constructors. 2. Updating a GroundRuleStore with a new model. Number 1 is pretty simple. It would be nice if we could move out some older/less used WL applications out to PSL Experimental. Number 2 is not very hard. We will need to update the Grounding class to have some method like: update(Model, GroundRuleStore). We could then look for any rules that are in the model, but not the GRS and ground them out. Then look for rules not in the model, but in the GRS and remove them. This is also pretty interesting since we can leave the GroundAtom values at what they currently are after the last WL run as a hot start.
priority
support for a pre loaded groundrulestore in weight learning right now the weight learning base class weightlearningapplication will check for latent variables and then run grounding after that it will call into the learning code that children are to implement however some special cases specifically structure learning we will need to run weight learning multiple times on similar models in this case we want to be able to pass a pre grounded groundrulestore grs into weight learning this requires two main pieces passing a groundrulestore into weight learning constructors updating a groundrulestore with a new model number is pretty simple it would be nice if we could move out some older less used wl applications out to psl experimental number is not very hard we will need to update the grounding class to have some method like update model groundrulestore we could then look for any rules that are in the model but not the grs and ground them out then look for rules not in the model but in the grs and remove them this is also pretty interesting since we can leave the groundatom values at what they currently are after the last wl run as a hot start
1
443,188
12,760,913,256
IssuesEvent
2020-06-29 08:52:56
a2000-erp-team/WEBERP
https://api.github.com/repos/a2000-erp-team/WEBERP
opened
SAL-POS-POS-ADD-[Scroll bar not auto scroll down to last item and auto scroll to right to show total amount.]
ADRIAN High Priority
![image.png](https://images.zenhubusercontent.com/5e8e8265b7c1d9906c2bbc2c/2ca42f7d-d3d9-4532-b8e4-611fbfd09dc0) 78. Scroll bar not auto scroll down to last item and auto scroll to right to show total amount.
1.0
SAL-POS-POS-ADD-[Scroll bar not auto scroll down to last item and auto scroll to right to show total amount.] - ![image.png](https://images.zenhubusercontent.com/5e8e8265b7c1d9906c2bbc2c/2ca42f7d-d3d9-4532-b8e4-611fbfd09dc0) 78. Scroll bar not auto scroll down to last item and auto scroll to right to show total amount.
priority
sal pos pos add scroll bar not auto scroll down to last item and auto scroll to right to show total amount
1
129,630
5,100,319,162
IssuesEvent
2017-01-04 11:41:17
Teemill/UKTSP_sales
https://api.github.com/repos/Teemill/UKTSP_sales
closed
SEO - Need more traffic!
priority:high question
We've noticed a decrease in traffic to the UKTSP website, with few high value enquiries coming through. Consequently, we need to try and increase traffic, particularly of companies. **How could IT help to do this?** - Add 'where did you hear about us?' on external quote form e.g. drop-down menu - Increase the speed of the site - Increase UKTSP site usability - Wordpress for UKTSP to allow blogs - CPC campaign on Google when all is complete
1.0
SEO - Need more traffic! - We've noticed a decrease in traffic to the UKTSP website, with few high value enquiries coming through. Consequently, we need to try and increase traffic, particularly of companies. **How could IT help to do this?** - Add 'where did you hear about us?' on external quote form e.g. drop-down menu - Increase the speed of the site - Increase UKTSP site usability - Wordpress for UKTSP to allow blogs - CPC campaign on Google when all is complete
priority
seo need more traffic we ve noticed a decrease in traffic to the uktsp website with few high value enquiries coming through consequently we need to try and increase traffic particularly of companies how could it help to do this add where did you hear about us on external quote form e g drop down menu increase the speed of the site increase uktsp site usability wordpress for uktsp to allow blogs cpc campaign on google when all is complete
1
175,027
6,545,953,426
IssuesEvent
2017-09-04 08:15:54
EyeSeeTea/dhis2-android-trackercapture
https://api.github.com/repos/EyeSeeTea/dhis2-android-trackercapture
closed
Refactor sync app process
complexity - med (1-5hr) priority - high type - feature
All synchronizations are executed for this Enrollments sync can not be executed in batch mode and TEIS with related TEIS can be sync in batch mode. - [ ] All test cases for issues #157 #158 #159 should work successfully if app sync is executed
1.0
Refactor sync app process - All synchronizations are executed for this Enrollments sync can not be executed in batch mode and TEIS with related TEIS can be sync in batch mode. - [ ] All test cases for issues #157 #158 #159 should work successfully if app sync is executed
priority
refactor sync app process all synchronizations are executed for this enrollments sync can not be executed in batch mode and teis with related teis can be sync in batch mode all test cases for issues should work successfully if app sync is executed
1
148,972
5,704,470,038
IssuesEvent
2017-04-18 04:43:21
rdunlop/unicycling-registration
https://api.github.com/repos/rdunlop/unicycling-registration
closed
Allow specifying Registration Cost which are restricted by the age of the registrant
High Priority organizer-request
It would be really nice that we be able to allow RegistrationCost which are "per age" (so young people are given a cheaper registraiton). Note: this will have to be restricted to only for Competitor type, as non-competitors don't require a birthday entry. Note: this may not work correctly if the user chooses to change their birthday after creating the registration (do we care about this corner case?).
1.0
Allow specifying Registration Cost which are restricted by the age of the registrant - It would be really nice that we be able to allow RegistrationCost which are "per age" (so young people are given a cheaper registraiton). Note: this will have to be restricted to only for Competitor type, as non-competitors don't require a birthday entry. Note: this may not work correctly if the user chooses to change their birthday after creating the registration (do we care about this corner case?).
priority
allow specifying registration cost which are restricted by the age of the registrant it would be really nice that we be able to allow registrationcost which are per age so young people are given a cheaper registraiton note this will have to be restricted to only for competitor type as non competitors don t require a birthday entry note this may not work correctly if the user chooses to change their birthday after creating the registration do we care about this corner case
1
646,985
21,083,133,447
IssuesEvent
2022-04-03 07:44:38
AY2122S2-CS2103T-T09-3/tp
https://api.github.com/repos/AY2122S2-CS2103T-T09-3/tp
opened
[Bug] Limit tag to 20 characters to fix wrapping visual bug
type.Task priority.High severity.VeryLow
## Details When inputting a tag with extreme amount of letters, wrapping will not occur and the tag will be cut off. ## Solution Limit tag to be less than 20 characters. ## Screenshots First show shows the text of tag being cut off, while second show shows the tag having 20 characters of different alphabets. W is the longest character from this [post](https://stackoverflow.com/questions/3949422/which-letter-of-the-english-alphabet-takes-up-most-pixels). ![image](https://user-images.githubusercontent.com/28040511/161417027-10509db4-4257-4b71-989d-5887e25f80a1.png)
1.0
[Bug] Limit tag to 20 characters to fix wrapping visual bug - ## Details When inputting a tag with extreme amount of letters, wrapping will not occur and the tag will be cut off. ## Solution Limit tag to be less than 20 characters. ## Screenshots First show shows the text of tag being cut off, while second show shows the tag having 20 characters of different alphabets. W is the longest character from this [post](https://stackoverflow.com/questions/3949422/which-letter-of-the-english-alphabet-takes-up-most-pixels). ![image](https://user-images.githubusercontent.com/28040511/161417027-10509db4-4257-4b71-989d-5887e25f80a1.png)
priority
limit tag to characters to fix wrapping visual bug details when inputting a tag with extreme amount of letters wrapping will not occur and the tag will be cut off solution limit tag to be less than characters screenshots first show shows the text of tag being cut off while second show shows the tag having characters of different alphabets w is the longest character from this
1
563,062
16,675,537,719
IssuesEvent
2021-06-07 15:44:34
geosolutions-it/MapStore2-C040
https://api.github.com/repos/geosolutions-it/MapStore2-C040
closed
Review Turismo Map
C040-COMUNE_GE-2021-SUPPORT Priority: High
### Description The client will release a new **Turismo** map by the end of May. We have to review it: https://mappe.comune.genova.it/MapStore2/#/viewer/openlayers/1000007394 to check if it need to be further improved/optimized. ### Other useful information: We have also the following feedback from the client involving the layout: >Giusto qualche nota come layout, ma che non impatta sulle prestazioni: a. il widget segnalaci è rimasto 'nascosto' e non si riesce a eliminare. in generale i widget si muovono molto nella mappa e a volte non si rescono a risistemare nella posizione che si vorrebbe We will open a dedicated issue to prevent this situations. For the moment we will restore the correct position of the widget manually. >b. nella info scheda, non riusciamo a spostare giù la frase che inizia dopo il logo segnalaci Recently fixed in https://github.com/geosolutions-it/mapstore2/issues/6728 for 2021.02.00, missing in Genova. >c. etichette tagliate There is a dedicate task in the new tasklist for this. For now it is possible to hide the label maintaining the tooltip on mouseover. ### Other things to consider as part of this review: - [ ] Remove the tutorial tool from configuration - [ ] The sync map option for in Attribute Table should be active by default for Genova
1.0
Review Turismo Map - ### Description The client will release a new **Turismo** map by the end of May. We have to review it: https://mappe.comune.genova.it/MapStore2/#/viewer/openlayers/1000007394 to check if it need to be further improved/optimized. ### Other useful information: We have also the following feedback from the client involving the layout: >Giusto qualche nota come layout, ma che non impatta sulle prestazioni: a. il widget segnalaci è rimasto 'nascosto' e non si riesce a eliminare. in generale i widget si muovono molto nella mappa e a volte non si rescono a risistemare nella posizione che si vorrebbe We will open a dedicated issue to prevent this situations. For the moment we will restore the correct position of the widget manually. >b. nella info scheda, non riusciamo a spostare giù la frase che inizia dopo il logo segnalaci Recently fixed in https://github.com/geosolutions-it/mapstore2/issues/6728 for 2021.02.00, missing in Genova. >c. etichette tagliate There is a dedicate task in the new tasklist for this. For now it is possible to hide the label maintaining the tooltip on mouseover. ### Other things to consider as part of this review: - [ ] Remove the tutorial tool from configuration - [ ] The sync map option for in Attribute Table should be active by default for Genova
priority
review turismo map description the client will release a new turismo map by the end of may we have to review it to check if it need to be further improved optimized other useful information we have also the following feedback from the client involving the layout giusto qualche nota come layout ma che non impatta sulle prestazioni a il widget segnalaci è rimasto nascosto e non si riesce a eliminare in generale i widget si muovono molto nella mappa e a volte non si rescono a risistemare nella posizione che si vorrebbe we will open a dedicated issue to prevent this situations for the moment we will restore the correct position of the widget manually b nella info scheda non riusciamo a spostare giù la frase che inizia dopo il logo segnalaci recently fixed in for missing in genova c etichette tagliate there is a dedicate task in the new tasklist for this for now it is possible to hide the label maintaining the tooltip on mouseover other things to consider as part of this review remove the tutorial tool from configuration the sync map option for in attribute table should be active by default for genova
1
478,985
13,789,428,964
IssuesEvent
2020-10-09 08:52:00
onaio/reveal-frontend
https://api.github.com/repos/onaio/reveal-frontend
closed
Indicators on IRS Performance Reporting view are incorrect
Priority: High
- [x] On the IRS Performance Reporting dashboard, there appears to be a disconnect between the average structures per day worked and the duration in the field. See sample screenshot below: ![image](https://user-images.githubusercontent.com/5908630/94663757-b66fb180-0312-11eb-814d-6187a8ec11c4.png)
1.0
Indicators on IRS Performance Reporting view are incorrect - - [x] On the IRS Performance Reporting dashboard, there appears to be a disconnect between the average structures per day worked and the duration in the field. See sample screenshot below: ![image](https://user-images.githubusercontent.com/5908630/94663757-b66fb180-0312-11eb-814d-6187a8ec11c4.png)
priority
indicators on irs performance reporting view are incorrect on the irs performance reporting dashboard there appears to be a disconnect between the average structures per day worked and the duration in the field see sample screenshot below
1
447,989
12,908,685,778
IssuesEvent
2020-07-15 07:53:25
cloudfoundry-incubator/kubecf
https://api.github.com/repos/cloudfoundry-incubator/kubecf
closed
As an operator I required to constantly upgrade an existing KubeCF env
Priority: High Status: Validation Type: Bug
**Describe the bug** When using `helm`. I cannot upgrade my Kubecf because it complains that some resources already exist. **To Reproduce** ```sh $ helm upgrade kubecf -n kubecf kubecf/bazel-bin/deploy/helm/kubecf/kubecf.tgz -f cp-values.yaml --reuse-values Error: UPGRADE FAILED: rendered manifests contain a new resource that already exists. Unable to continue with update: existing resource conflict: kind: Service, namespace: kubecf, name: diego-api $ k -n kubecf delete svc diego-api service "diego-api" deleted $ helm upgrade kubecf -n kubecf kubecf/bazel-bin/deploy/helm/kubecf/kubecf.tgz -f cp-values.yaml --reuse-values Error: UPGRADE FAILED: rendered manifests contain a new resource that already exists. Unable to continue with update: existing resource conflict: kind: Service, namespace: kubecf, name: api ``` **Expected behavior** I would expect my `helm upgrade` to execute without any errors. **Environment** - Im running from this KubeCF commit https://github.com/cloudfoundry-incubator/kubecf/commit/14b15b617140394a9824e9314b5540808b28dfae - Im running a very latest quarks-operator https://github.com/cloudfoundry-incubator/quarks-operator/commit/ba7c3062e38c1f1f00efe35f09e9bab68b6fcc88 **Additional context** I want just to trigger an update because I added a new ops-files on the `values.yaml`
1.0
As an operator I required to constantly upgrade an existing KubeCF env - **Describe the bug** When using `helm`. I cannot upgrade my Kubecf because it complains that some resources already exist. **To Reproduce** ```sh $ helm upgrade kubecf -n kubecf kubecf/bazel-bin/deploy/helm/kubecf/kubecf.tgz -f cp-values.yaml --reuse-values Error: UPGRADE FAILED: rendered manifests contain a new resource that already exists. Unable to continue with update: existing resource conflict: kind: Service, namespace: kubecf, name: diego-api $ k -n kubecf delete svc diego-api service "diego-api" deleted $ helm upgrade kubecf -n kubecf kubecf/bazel-bin/deploy/helm/kubecf/kubecf.tgz -f cp-values.yaml --reuse-values Error: UPGRADE FAILED: rendered manifests contain a new resource that already exists. Unable to continue with update: existing resource conflict: kind: Service, namespace: kubecf, name: api ``` **Expected behavior** I would expect my `helm upgrade` to execute without any errors. **Environment** - Im running from this KubeCF commit https://github.com/cloudfoundry-incubator/kubecf/commit/14b15b617140394a9824e9314b5540808b28dfae - Im running a very latest quarks-operator https://github.com/cloudfoundry-incubator/quarks-operator/commit/ba7c3062e38c1f1f00efe35f09e9bab68b6fcc88 **Additional context** I want just to trigger an update because I added a new ops-files on the `values.yaml`
priority
as an operator i required to constantly upgrade an existing kubecf env describe the bug when using helm i cannot upgrade my kubecf because it complains that some resources already exist to reproduce sh helm upgrade kubecf n kubecf kubecf bazel bin deploy helm kubecf kubecf tgz f cp values yaml reuse values error upgrade failed rendered manifests contain a new resource that already exists unable to continue with update existing resource conflict kind service namespace kubecf name diego api k n kubecf delete svc diego api service diego api deleted helm upgrade kubecf n kubecf kubecf bazel bin deploy helm kubecf kubecf tgz f cp values yaml reuse values error upgrade failed rendered manifests contain a new resource that already exists unable to continue with update existing resource conflict kind service namespace kubecf name api expected behavior i would expect my helm upgrade to execute without any errors environment im running from this kubecf commit im running a very latest quarks operator additional context i want just to trigger an update because i added a new ops files on the values yaml
1
58,209
3,088,099,502
IssuesEvent
2015-08-25 15:05:41
GlenDC/trixel
https://api.github.com/repos/GlenDC/trixel
closed
Looking for a UX / UI / Web Designer
help wanted high priority
As a (for now) lonely programmer, I have too little experience on UX / UI / Web design to design the UI for the Trixel Editor. A good UI should: + Be minimisalist, yet give the trixel editor the style and charm it deserves + Be intuitive (extending that goal of the editor) + Is prepared for feature-growth. Tools & features will be added, and the UI should be designed and ready for those changes This won't be a relationship where I just tell you this and than expect you to deliver me an awesome design. I will help you completely with this. I would try it myself, but my poor choice of colors and lack of design skills make it quite hard. I would love to have you as my partner and make this editor truly intuitive. I do have some idea's already, and I will keep working on idea's. But The sooner I have someone on my side to collaborate with this, the better. You can find the current minor (really barebone) version of the Trixel editor [here](https://glendc.github.io/trixel/). It is the first step towards an MVP.
1.0
Looking for a UX / UI / Web Designer - As a (for now) lonely programmer, I have too little experience on UX / UI / Web design to design the UI for the Trixel Editor. A good UI should: + Be minimisalist, yet give the trixel editor the style and charm it deserves + Be intuitive (extending that goal of the editor) + Is prepared for feature-growth. Tools & features will be added, and the UI should be designed and ready for those changes This won't be a relationship where I just tell you this and than expect you to deliver me an awesome design. I will help you completely with this. I would try it myself, but my poor choice of colors and lack of design skills make it quite hard. I would love to have you as my partner and make this editor truly intuitive. I do have some idea's already, and I will keep working on idea's. But The sooner I have someone on my side to collaborate with this, the better. You can find the current minor (really barebone) version of the Trixel editor [here](https://glendc.github.io/trixel/). It is the first step towards an MVP.
priority
looking for a ux ui web designer as a for now lonely programmer i have too little experience on ux ui web design to design the ui for the trixel editor a good ui should be minimisalist yet give the trixel editor the style and charm it deserves be intuitive extending that goal of the editor is prepared for feature growth tools features will be added and the ui should be designed and ready for those changes this won t be a relationship where i just tell you this and than expect you to deliver me an awesome design i will help you completely with this i would try it myself but my poor choice of colors and lack of design skills make it quite hard i would love to have you as my partner and make this editor truly intuitive i do have some idea s already and i will keep working on idea s but the sooner i have someone on my side to collaborate with this the better you can find the current minor really barebone version of the trixel editor it is the first step towards an mvp
1
117,808
4,727,932,959
IssuesEvent
2016-10-18 14:45:28
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
opened
Implement style selection functionality as part of the TOC layers tools
Priority: High task user story
This needs to be discussed and broken into stories.
1.0
Implement style selection functionality as part of the TOC layers tools - This needs to be discussed and broken into stories.
priority
implement style selection functionality as part of the toc layers tools this needs to be discussed and broken into stories
1
333,259
10,119,594,045
IssuesEvent
2019-07-31 11:53:42
nlbdev/pipeline
https://api.github.com/repos/nlbdev/pipeline
opened
Numbered notes each chapter
Priority:3 - High enhancement
563313 have numbered notes for each chapter. Chapters are small and notes from chapter 1 and 2 end up in the same volume numbered 1-2-3-1-2. Confusing. It seems that only notes marked * is handled after the main rule in PIP (number the notes and put in end of volume). I therefore had to move all notes to end of book and rename them with * to get the automathed work to function (then they became number 1 ... 45 in braille) - using the tag: <section epub:type="backmatter footnotes" id="level1_60"> <ol class="list-style-type-none" style="list-style-type: none;"> <li class="notebody" epub:type="rearnote" id="c04001">* Under Reform 27 ble alle videregående skoler i landet.</li> Lots of work. Is there a way to override the counting in notes so that they always count from 1-2-3-4 ... through the entire book? Notes are also marked (1), 1) and otherwise, sometimes with a picture (I've been told). I want them to be counted 1-2-3-4 always.
1.0
Numbered notes each chapter - 563313 have numbered notes for each chapter. Chapters are small and notes from chapter 1 and 2 end up in the same volume numbered 1-2-3-1-2. Confusing. It seems that only notes marked * is handled after the main rule in PIP (number the notes and put in end of volume). I therefore had to move all notes to end of book and rename them with * to get the automathed work to function (then they became number 1 ... 45 in braille) - using the tag: <section epub:type="backmatter footnotes" id="level1_60"> <ol class="list-style-type-none" style="list-style-type: none;"> <li class="notebody" epub:type="rearnote" id="c04001">* Under Reform 27 ble alle videregående skoler i landet.</li> Lots of work. Is there a way to override the counting in notes so that they always count from 1-2-3-4 ... through the entire book? Notes are also marked (1), 1) and otherwise, sometimes with a picture (I've been told). I want them to be counted 1-2-3-4 always.
priority
numbered notes each chapter have numbered notes for each chapter chapters are small and notes from chapter and end up in the same volume numbered confusing it seems that only notes marked is handled after the main rule in pip number the notes and put in end of volume i therefore had to move all notes to end of book and rename them with to get the automathed work to function then they became number in braille using the tag under reform ble alle videregående skoler i landet lots of work is there a way to override the counting in notes so that they always count from through the entire book notes are also marked and otherwise sometimes with a picture i ve been told i want them to be counted always
1
533,464
15,591,529,341
IssuesEvent
2021-03-18 10:34:12
ethereum/sourcify
https://api.github.com/repos/ethereum/sourcify
opened
Log session through the entire flow
high priority
We need this to filter traces from the specific verification. Right now, it is impossible to debug verifications using logs from the container running on the server because there are usually multiple verifications running at the same time.
1.0
Log session through the entire flow - We need this to filter traces from the specific verification. Right now, it is impossible to debug verifications using logs from the container running on the server because there are usually multiple verifications running at the same time.
priority
log session through the entire flow we need this to filter traces from the specific verification right now it is impossible to debug verifications using logs from the container running on the server because there are usually multiple verifications running at the same time
1
794,866
28,052,612,431
IssuesEvent
2023-03-29 07:11:50
wso2/api-manager
https://api.github.com/repos/wso2/api-manager
opened
Custom API key header support
Type/New Feature Priority/High Component/APIM
### Problem This feature intends to implement support for using custom header names for api-key header. Currently `api-key` is the standard header name. ### Solution Will provide later ### Affected Component APIM ### Version 4.3.0 ### Implementation _No response_ ### Related Issues _No response_ ### Suggested Labels _No response_
1.0
Custom API key header support - ### Problem This feature intends to implement support for using custom header names for api-key header. Currently `api-key` is the standard header name. ### Solution Will provide later ### Affected Component APIM ### Version 4.3.0 ### Implementation _No response_ ### Related Issues _No response_ ### Suggested Labels _No response_
priority
custom api key header support problem this feature intends to implement support for using custom header names for api key header currently api key is the standard header name solution will provide later affected component apim version implementation no response related issues no response suggested labels no response
1
519,112
15,044,637,138
IssuesEvent
2021-02-03 03:27:48
SacredDuckwhale/Rarity
https://api.github.com/repos/SacredDuckwhale/Rarity
opened
Review CurseForge contributors and update the Reward Share setting
Complexity: TBD Info: Needs Feedback Meta: Project Site Meta: Repository Priority: High Status: Accepted Type: Task
For the past few years, all reward points were credited to Allara. Since I've been made the project owner recently, we can now change this. So far it seems like only a few contributors in the list are actually still active. On the other hand, there's been many contributions here on GitHub that don't map to CurseForge/WoWAce contributors (obviously). I don't see an easy way of synchronizing the two, nor of finding out who of the listed contributors actually did what in past versions (that were likely committed via SVN and by Allara). Finally, they only allow setting a fixed share of the rewards on a per-role basis. It would be much more fair to assign them based on the number of GitHub contributions or similar, so that's another issue to consider. For what it's worth, 100% of the reward points appear to grant between 75 and 150 points per day, based on the limited data I have, from January 2021 only. According to their rewards store that would amount to maybe 5 EUR (or $?) per day, before taxes and who knows what else will be subtracted if the rewards were to actually paid out. Does that even warrant the effort required to maintain the list of contributors over there? Hmm. I'd be curious to hear what any of the folks that contributed so far think! You know, if any of you happen to read this.
1.0
Review CurseForge contributors and update the Reward Share setting - For the past few years, all reward points were credited to Allara. Since I've been made the project owner recently, we can now change this. So far it seems like only a few contributors in the list are actually still active. On the other hand, there's been many contributions here on GitHub that don't map to CurseForge/WoWAce contributors (obviously). I don't see an easy way of synchronizing the two, nor of finding out who of the listed contributors actually did what in past versions (that were likely committed via SVN and by Allara). Finally, they only allow setting a fixed share of the rewards on a per-role basis. It would be much more fair to assign them based on the number of GitHub contributions or similar, so that's another issue to consider. For what it's worth, 100% of the reward points appear to grant between 75 and 150 points per day, based on the limited data I have, from January 2021 only. According to their rewards store that would amount to maybe 5 EUR (or $?) per day, before taxes and who knows what else will be subtracted if the rewards were to actually paid out. Does that even warrant the effort required to maintain the list of contributors over there? Hmm. I'd be curious to hear what any of the folks that contributed so far think! You know, if any of you happen to read this.
priority
review curseforge contributors and update the reward share setting for the past few years all reward points were credited to allara since i ve been made the project owner recently we can now change this so far it seems like only a few contributors in the list are actually still active on the other hand there s been many contributions here on github that don t map to curseforge wowace contributors obviously i don t see an easy way of synchronizing the two nor of finding out who of the listed contributors actually did what in past versions that were likely committed via svn and by allara finally they only allow setting a fixed share of the rewards on a per role basis it would be much more fair to assign them based on the number of github contributions or similar so that s another issue to consider for what it s worth of the reward points appear to grant between and points per day based on the limited data i have from january only according to their rewards store that would amount to maybe eur or per day before taxes and who knows what else will be subtracted if the rewards were to actually paid out does that even warrant the effort required to maintain the list of contributors over there hmm i d be curious to hear what any of the folks that contributed so far think you know if any of you happen to read this
1
113,786
4,568,949,525
IssuesEvent
2016-09-15 15:48:47
bedita/bedita
https://api.github.com/repos/bedita/bedita
closed
loadObj caching, bugged behaviour when request binding differs from cached obj binding
Priority - High Topic - Core Type - Bug
Bug in loading obj, when bindings differ from cached obj: loadObj returns cached obj even though binding array contains more elements than object cached binding array. Example: ``` $objId = 100; // sample Document id $this->objectCache = array(); // reset cache $this->modelBindings['Document'] = array( 'BEObject' => array( 'ObjectProperty' ) ); // this call save data to cache: OK $object = $this->loadObj($objId, true, array('explodeRelations' => true)); $this->modelBindings['Document'] = array( 'BEObject' => array( 'ObjectProperty', 'Category' ) ); // this call uses cache, but it should not: BUG! $object = $this->loadObj($objId, true, array('explodeRelations' => true)); ```
1.0
loadObj caching, bugged behaviour when request binding differs from cached obj binding - Bug in loading obj, when bindings differ from cached obj: loadObj returns cached obj even though binding array contains more elements than object cached binding array. Example: ``` $objId = 100; // sample Document id $this->objectCache = array(); // reset cache $this->modelBindings['Document'] = array( 'BEObject' => array( 'ObjectProperty' ) ); // this call save data to cache: OK $object = $this->loadObj($objId, true, array('explodeRelations' => true)); $this->modelBindings['Document'] = array( 'BEObject' => array( 'ObjectProperty', 'Category' ) ); // this call uses cache, but it should not: BUG! $object = $this->loadObj($objId, true, array('explodeRelations' => true)); ```
priority
loadobj caching bugged behaviour when request binding differs from cached obj binding bug in loading obj when bindings differ from cached obj loadobj returns cached obj even though binding array contains more elements than object cached binding array example objid sample document id this objectcache array reset cache this modelbindings array beobject array objectproperty this call save data to cache ok object this loadobj objid true array exploderelations true this modelbindings array beobject array objectproperty category this call uses cache but it should not bug object this loadobj objid true array exploderelations true
1
762,968
26,738,192,917
IssuesEvent
2023-01-30 11:00:18
wazuh/wazuh-documentation
https://api.github.com/repos/wazuh/wazuh-documentation
closed
Add new section: Configuring third-party SSL certificates
user manual priority: high
## Description This issue aims to add the new section `Configuring third-party SSL certificates` in [User manual](https://documentation.wazuh.com/current/user-manual/index.html) / [Wazuh dashboard](https://documentation.wazuh.com/current/user-manual/wazuh-dashboard/index.html) / according to the new Google doc. ## Tasks - [x] Work with the new Google doc: `Configuring third-party SSL certificates` - [x] Branch: `5890-configuring-third-party-ssl-certificates` - [x] PR: #5891 - [x] Add the new section `Configuring third-party SSL certificates` - [x] Make a complete review - [x] Ask for a review
1.0
Add new section: Configuring third-party SSL certificates - ## Description This issue aims to add the new section `Configuring third-party SSL certificates` in [User manual](https://documentation.wazuh.com/current/user-manual/index.html) / [Wazuh dashboard](https://documentation.wazuh.com/current/user-manual/wazuh-dashboard/index.html) / according to the new Google doc. ## Tasks - [x] Work with the new Google doc: `Configuring third-party SSL certificates` - [x] Branch: `5890-configuring-third-party-ssl-certificates` - [x] PR: #5891 - [x] Add the new section `Configuring third-party SSL certificates` - [x] Make a complete review - [x] Ask for a review
priority
add new section configuring third party ssl certificates description this issue aims to add the new section configuring third party ssl certificates in according to the new google doc tasks work with the new google doc configuring third party ssl certificates branch configuring third party ssl certificates pr add the new section configuring third party ssl certificates make a complete review ask for a review
1
592,083
17,870,142,528
IssuesEvent
2021-09-06 14:26:22
airqo-platform/AirQo-frontend
https://api.github.com/repos/airqo-platform/AirQo-frontend
closed
Installation failures for new Android Mobile App on some devices
bug mobile-app priority-high
**What were you trying to achieve?** Android Android App new installations/versions, some users are failing to install on some android devices, version 8 as an example. **What are the expected results?** Installations refusing for some device versions. Verion 8 to be particular. But they work on some. **What are the received results?** The app fails to install on some devices, Android version 8 to be particular. **What are the steps to reproduce the issue?** Try to install the application on a android phone accordingly. Here is the app: https://play.google.com/store/apps/details?id=com.airqo.app **In what environment did you encounter the issue?** Android version 8 **Additional context** Isn't the app backward compatible? What version is the app?
1.0
Installation failures for new Android Mobile App on some devices - **What were you trying to achieve?** Android Android App new installations/versions, some users are failing to install on some android devices, version 8 as an example. **What are the expected results?** Installations refusing for some device versions. Verion 8 to be particular. But they work on some. **What are the received results?** The app fails to install on some devices, Android version 8 to be particular. **What are the steps to reproduce the issue?** Try to install the application on a android phone accordingly. Here is the app: https://play.google.com/store/apps/details?id=com.airqo.app **In what environment did you encounter the issue?** Android version 8 **Additional context** Isn't the app backward compatible? What version is the app?
priority
installation failures for new android mobile app on some devices what were you trying to achieve android android app new installations versions some users are failing to install on some android devices version as an example what are the expected results installations refusing for some device versions verion to be particular but they work on some what are the received results the app fails to install on some devices android version to be particular what are the steps to reproduce the issue try to install the application on a android phone accordingly here is the app in what environment did you encounter the issue android version additional context isn t the app backward compatible what version is the app
1
157,836
6,016,763,801
IssuesEvent
2017-06-07 07:58:08
VALIDproject/DyNetFlowVis
https://api.github.com/repos/VALIDproject/DyNetFlowVis
closed
Implement Sankey refined
enhancement high priority
- [x] Implement the sankey with the stored data from localforage and storage - [x] Add the word wrap appropriately - [x] Implement modularity for further loading of new data - [x] Add placeholder node which shows that there is still more to view
1.0
Implement Sankey refined - - [x] Implement the sankey with the stored data from localforage and storage - [x] Add the word wrap appropriately - [x] Implement modularity for further loading of new data - [x] Add placeholder node which shows that there is still more to view
priority
implement sankey refined implement the sankey with the stored data from localforage and storage add the word wrap appropriately implement modularity for further loading of new data add placeholder node which shows that there is still more to view
1
569,024
16,992,906,274
IssuesEvent
2021-07-01 00:00:50
dacharya64/UCSCClimateGame
https://api.github.com/repos/dacharya64/UCSCClimateGame
opened
adjust world model based on changes in bills to emissions
high priority question
need to first figure out what emissions values will be
1.0
adjust world model based on changes in bills to emissions - need to first figure out what emissions values will be
priority
adjust world model based on changes in bills to emissions need to first figure out what emissions values will be
1
486,370
14,008,127,458
IssuesEvent
2020-10-28 22:57:17
argoproj/argo-cd
https://api.github.com/repos/argoproj/argo-cd
closed
UI crash on "big" applications (with many components) for Application Details page starting from v1.7.+
bug bug/priority:high cherry-pick/1.7 component:ui regression workaround
If you are trying to resolve an environment-specific issue or have a one-off question about the edge case that does not require a feature then please consider asking a question in argocd slack [channel](https://argoproj.github.io/community/join-slack). Checklist: * [X] I've searched in the docs and FAQ for my answer: https://bit.ly/argocd-faq. * [X] I've included steps to reproduce the bug. * [ ] I've pasted the output of `argocd version`. **Describe the bug** After upgrade to 1.7.x version, we’ve faced issues with UI for App Details page for more or less big applications. On small application all is working alright. Other parts of UI work well. We’ve reverted back to 1.6.2 where everything is fine. The problem is that I couldn’t find a way on how to describe this problem correctly to create an issue. For example in one case it throws React error: `Maximum call stack size exceeded`. On other App it won’t show even this little. **To Reproduce** 1. Install ArgoCD v1.7.+ 2. Add some big or huge Application. Clearly reproducible on Kubeflow - https://github.com/kubeflow/manifests 3. Sync the Application and wait for deployment. 4. Open Application Details page. **Expected behavior** No UI crash on Application Details page **Screenshots** ![image](https://user-images.githubusercontent.com/17779448/94895460-1f326780-0494-11eb-94dd-3676742e3b6b.png) <img width="867" alt="Screenshot 2020-10-01 at 16 14 05" src="https://user-images.githubusercontent.com/17779448/94895419-0fb31e80-0494-11eb-9b7b-b33bed5dc436.png"> **Version** Any v1.7.+ of `argocd-server`
1.0
UI crash on "big" applications (with many components) for Application Details page starting from v1.7.+ - If you are trying to resolve an environment-specific issue or have a one-off question about the edge case that does not require a feature then please consider asking a question in argocd slack [channel](https://argoproj.github.io/community/join-slack). Checklist: * [X] I've searched in the docs and FAQ for my answer: https://bit.ly/argocd-faq. * [X] I've included steps to reproduce the bug. * [ ] I've pasted the output of `argocd version`. **Describe the bug** After upgrade to 1.7.x version, we’ve faced issues with UI for App Details page for more or less big applications. On small application all is working alright. Other parts of UI work well. We’ve reverted back to 1.6.2 where everything is fine. The problem is that I couldn’t find a way on how to describe this problem correctly to create an issue. For example in one case it throws React error: `Maximum call stack size exceeded`. On other App it won’t show even this little. **To Reproduce** 1. Install ArgoCD v1.7.+ 2. Add some big or huge Application. Clearly reproducible on Kubeflow - https://github.com/kubeflow/manifests 3. Sync the Application and wait for deployment. 4. Open Application Details page. **Expected behavior** No UI crash on Application Details page **Screenshots** ![image](https://user-images.githubusercontent.com/17779448/94895460-1f326780-0494-11eb-94dd-3676742e3b6b.png) <img width="867" alt="Screenshot 2020-10-01 at 16 14 05" src="https://user-images.githubusercontent.com/17779448/94895419-0fb31e80-0494-11eb-9b7b-b33bed5dc436.png"> **Version** Any v1.7.+ of `argocd-server`
priority
ui crash on big applications with many components for application details page starting from if you are trying to resolve an environment specific issue or have a one off question about the edge case that does not require a feature then please consider asking a question in argocd slack checklist i ve searched in the docs and faq for my answer i ve included steps to reproduce the bug i ve pasted the output of argocd version describe the bug after upgrade to x version we’ve faced issues with ui for app details page for more or less big applications on small application all is working alright other parts of ui work well we’ve reverted back to where everything is fine the problem is that i couldn’t find a way on how to describe this problem correctly to create an issue for example in one case it throws react error maximum call stack size exceeded on other app it won’t show even this little to reproduce install argocd add some big or huge application clearly reproducible on kubeflow sync the application and wait for deployment open application details page expected behavior no ui crash on application details page screenshots img width alt screenshot at src version any of argocd server
1
772,482
27,123,539,111
IssuesEvent
2023-02-16 02:01:48
hacku-chamomilla/gamename-back-end
https://api.github.com/repos/hacku-chamomilla/gamename-back-end
closed
DB 設計
high priority
## ✨ 概要 - DB 設計 ## 🔥 ゴール <!-- 例) 〇〇ができる、xxなときに△△する --> - DB 設計が完了している ## 📄 参考資料 - xxx ## ✅ タスク - [ ] xxx
1.0
DB 設計 - ## ✨ 概要 - DB 設計 ## 🔥 ゴール <!-- 例) 〇〇ができる、xxなときに△△する --> - DB 設計が完了している ## 📄 参考資料 - xxx ## ✅ タスク - [ ] xxx
priority
db 設計 ✨ 概要 db 設計 🔥 ゴール db 設計が完了している 📄 参考資料 xxx ✅ タスク xxx
1
806,634
29,865,323,864
IssuesEvent
2023-06-20 02:57:10
davidfstr/Crystal-Web-Archiver
https://api.github.com/repos/davidfstr/Crystal-Web-Archiver
opened
Projects with 3.3 mil+ resources load much slower than smaller projects
priority-high type-bug topic-largeproject
Priority: High * I am actively downloading projects with more than 3.3 million resources and **I encounter this bug frequently**, every time I have to reopen such projects. * Additionally, the slowdown causes such large projects to easily take **20 min+ to open**, slowing down development work. When opening a large project Resources are loaded into memory at about the same rate until around 3.3 million resources. After that point, Resources start loading much slower than before, for unclear reasons. See video: * [CATHODE: 2023-06-19 - Later Resources loading slower than earlier ones? (with GC disabled).mov] Garbage collection activity has already been ruled out as an issue, since I'm already disabling GC while loading the resources of a project.
1.0
Projects with 3.3 mil+ resources load much slower than smaller projects - Priority: High * I am actively downloading projects with more than 3.3 million resources and **I encounter this bug frequently**, every time I have to reopen such projects. * Additionally, the slowdown causes such large projects to easily take **20 min+ to open**, slowing down development work. When opening a large project Resources are loaded into memory at about the same rate until around 3.3 million resources. After that point, Resources start loading much slower than before, for unclear reasons. See video: * [CATHODE: 2023-06-19 - Later Resources loading slower than earlier ones? (with GC disabled).mov] Garbage collection activity has already been ruled out as an issue, since I'm already disabling GC while loading the resources of a project.
priority
projects with mil resources load much slower than smaller projects priority high i am actively downloading projects with more than million resources and i encounter this bug frequently every time i have to reopen such projects additionally the slowdown causes such large projects to easily take min to open slowing down development work when opening a large project resources are loaded into memory at about the same rate until around million resources after that point resources start loading much slower than before for unclear reasons see video garbage collection activity has already been ruled out as an issue since i m already disabling gc while loading the resources of a project
1
78,966
3,519,870,717
IssuesEvent
2016-01-12 18:30:11
phetsims/energy-skate-park-basics
https://api.github.com/repos/phetsims/energy-skate-park-basics
closed
Assertion failure from automated testing
bug high-priority
``` Uncaught Error: Assertion failed: undefined Error: Assertion failed: undefined at window.assertions.assertFunction (http://192.168.0.2:8080/assert/js/assert.js:22:13) at Node.extend.removeInputListener (http://192.168.0.2:8080/scenery/js/nodes/Node.js?bust=1433967088140:1191:69) at ControlPointUI.inherit.detach (http://192.168.0.2:8080/energy-skate-park-basics/js/energy-skate-park-basics/view/ControlPointUI.js?bust=1433967088140:110:22) at Object.ControlPointUI.clickToDismissListener.down (http://192.168.0.2:8080/energy-skate-park-basics/js/energy-skate-park-basics/view/ControlPointUI.js?bust=1433967088140:43:26) at Input.inherit.dispatchToTargets (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:833:31) at Input.inherit.dispatchEvent (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:770:14) at Input.inherit.downEvent (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:649:14) at Input.inherit.mouseDown (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:302:14) at Display.extend.fuzzMouseEvents (http://192.168.0.2:8080/scenery/js/display/Display.js?bust=1433967088140:864:25) at animationLoop (http://192.168.0.2:8080/joist/js/Sim.js?bust=1433967088140:685:23) ```
1.0
Assertion failure from automated testing - ``` Uncaught Error: Assertion failed: undefined Error: Assertion failed: undefined at window.assertions.assertFunction (http://192.168.0.2:8080/assert/js/assert.js:22:13) at Node.extend.removeInputListener (http://192.168.0.2:8080/scenery/js/nodes/Node.js?bust=1433967088140:1191:69) at ControlPointUI.inherit.detach (http://192.168.0.2:8080/energy-skate-park-basics/js/energy-skate-park-basics/view/ControlPointUI.js?bust=1433967088140:110:22) at Object.ControlPointUI.clickToDismissListener.down (http://192.168.0.2:8080/energy-skate-park-basics/js/energy-skate-park-basics/view/ControlPointUI.js?bust=1433967088140:43:26) at Input.inherit.dispatchToTargets (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:833:31) at Input.inherit.dispatchEvent (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:770:14) at Input.inherit.downEvent (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:649:14) at Input.inherit.mouseDown (http://192.168.0.2:8080/scenery/js/input/Input.js?bust=1433967088140:302:14) at Display.extend.fuzzMouseEvents (http://192.168.0.2:8080/scenery/js/display/Display.js?bust=1433967088140:864:25) at animationLoop (http://192.168.0.2:8080/joist/js/Sim.js?bust=1433967088140:685:23) ```
priority
assertion failure from automated testing uncaught error assertion failed undefined error assertion failed undefined at window assertions assertfunction at node extend removeinputlistener at controlpointui inherit detach at object controlpointui clicktodismisslistener down at input inherit dispatchtotargets at input inherit dispatchevent at input inherit downevent at input inherit mousedown at display extend fuzzmouseevents at animationloop
1
403,394
11,840,267,429
IssuesEvent
2020-03-23 18:33:26
StudioTBA/CoronaIO
https://api.github.com/repos/StudioTBA/CoronaIO
opened
Display shooting
Priority: High UI
**Is your feature request related to a problem? Please describe.** Shooting for police officers was introduced in #27. While ray casts are effectively hitting zombies, the player does not notice any effect. **Describe the solution you would like** Shot effect coming out of the gun, bullet prefab, both or any other proposed solution would be valid as long as the player is able to notice the shot.
1.0
Display shooting - **Is your feature request related to a problem? Please describe.** Shooting for police officers was introduced in #27. While ray casts are effectively hitting zombies, the player does not notice any effect. **Describe the solution you would like** Shot effect coming out of the gun, bullet prefab, both or any other proposed solution would be valid as long as the player is able to notice the shot.
priority
display shooting is your feature request related to a problem please describe shooting for police officers was introduced in while ray casts are effectively hitting zombies the player does not notice any effect describe the solution you would like shot effect coming out of the gun bullet prefab both or any other proposed solution would be valid as long as the player is able to notice the shot
1
132,693
5,190,857,174
IssuesEvent
2017-01-21 14:21:19
vbmacher/emuStudio
https://api.github.com/repos/vbmacher/emuStudio
closed
Finish implementation of automatic emulation
feature high-priority
All supported virtual computers must support emulation automation. In the 0.39 version, the automation should be implemented individually per-project. In future versions, there might exist some automation API. I know that RAM machine does not support it well, and this must be tested also for other computers (e.g. brainduck).
1.0
Finish implementation of automatic emulation - All supported virtual computers must support emulation automation. In the 0.39 version, the automation should be implemented individually per-project. In future versions, there might exist some automation API. I know that RAM machine does not support it well, and this must be tested also for other computers (e.g. brainduck).
priority
finish implementation of automatic emulation all supported virtual computers must support emulation automation in the version the automation should be implemented individually per project in future versions there might exist some automation api i know that ram machine does not support it well and this must be tested also for other computers e g brainduck
1
359,039
10,653,337,478
IssuesEvent
2019-10-17 14:15:34
AY1920S1-CS2113T-F11-2/main
https://api.github.com/repos/AY1920S1-CS2113T-F11-2/main
closed
Feature: Owe
priority.High type.Task
Possible Implementation: A mix with Duke's 'checklist' feature and Dolla's expense and income.
1.0
Feature: Owe - Possible Implementation: A mix with Duke's 'checklist' feature and Dolla's expense and income.
priority
feature owe possible implementation a mix with duke s checklist feature and dolla s expense and income
1
409,935
11,980,683,282
IssuesEvent
2020-04-07 09:45:30
osmontrouge/caresteouvert
https://api.github.com/repos/osmontrouge/caresteouvert
closed
Expand "Ca reste ouvert" outside France
enhancement priority: high
Enable selected coverage - [x] load the planet on the server **in progress** - [x] Add the country code to each POI - [x] Update the update script to have a whitelist of countries - [x] Insert only POI from the whitelist - [ ] Adapt the frontend to load the categories depending of the country displayed - [x] Adapt geocoder results
1.0
Expand "Ca reste ouvert" outside France - Enable selected coverage - [x] load the planet on the server **in progress** - [x] Add the country code to each POI - [x] Update the update script to have a whitelist of countries - [x] Insert only POI from the whitelist - [ ] Adapt the frontend to load the categories depending of the country displayed - [x] Adapt geocoder results
priority
expand ca reste ouvert outside france enable selected coverage load the planet on the server in progress add the country code to each poi update the update script to have a whitelist of countries insert only poi from the whitelist adapt the frontend to load the categories depending of the country displayed adapt geocoder results
1
373,560
11,045,622,167
IssuesEvent
2019-12-09 15:25:49
incognitochain/incognito-wallet
https://api.github.com/repos/incognitochain/incognito-wallet
closed
Detail Node: miss show token symbol
Priority: High
Select an account don't follow private BTC go to Node Detail -> got this issue.
1.0
Detail Node: miss show token symbol - Select an account don't follow private BTC go to Node Detail -> got this issue.
priority
detail node miss show token symbol select an account don t follow private btc go to node detail got this issue
1
545,039
15,934,684,160
IssuesEvent
2021-04-14 08:58:05
kubesphere/kubesphere
https://api.github.com/repos/kubesphere/kubesphere
closed
Multiple default storage classes can be set in the cluster.
kind/bug priority/high
**Environment** http://139.198.121.240:30881/ `host 3.1 + member 3.0` **Expected behavior** Only one default storage class is allowed in a Kubernetes cluster. **Actual behavior** ![image](https://user-images.githubusercontent.com/68640256/114675604-03f5be00-9d3b-11eb-980a-c36aa2d24e3a.png) /priority high /assign @stoneshi-yunify /kind bug /milestone 3.1.0
1.0
Multiple default storage classes can be set in the cluster. - **Environment** http://139.198.121.240:30881/ `host 3.1 + member 3.0` **Expected behavior** Only one default storage class is allowed in a Kubernetes cluster. **Actual behavior** ![image](https://user-images.githubusercontent.com/68640256/114675604-03f5be00-9d3b-11eb-980a-c36aa2d24e3a.png) /priority high /assign @stoneshi-yunify /kind bug /milestone 3.1.0
priority
multiple default storage classes can be set in the cluster environment host member expected behavior only one default storage class is allowed in a kubernetes cluster actual behavior priority high assign stoneshi yunify kind bug milestone
1
725,028
24,949,373,643
IssuesEvent
2022-11-01 05:07:22
bounswe/bounswe2022group4
https://api.github.com/repos/bounswe/bounswe2022group4
closed
Create a new AWS account
Category - To Do Priority - High Status: In Progress Difficulty - Easy
A new AWS account is needed because services like AWS ECR and AWS EC2 are free with the AWS Free Tier. We want to take the advantage of these services to deploy our backend. AWS is one of the most popular cloud service platforms. There are a lot of sources on the internet that make AWS easier to use. Deadline: 01.10.2022
1.0
Create a new AWS account - A new AWS account is needed because services like AWS ECR and AWS EC2 are free with the AWS Free Tier. We want to take the advantage of these services to deploy our backend. AWS is one of the most popular cloud service platforms. There are a lot of sources on the internet that make AWS easier to use. Deadline: 01.10.2022
priority
create a new aws account a new aws account is needed because services like aws ecr and aws are free with the aws free tier we want to take the advantage of these services to deploy our backend aws is one of the most popular cloud service platforms there are a lot of sources on the internet that make aws easier to use deadline
1
772,789
27,135,347,913
IssuesEvent
2023-02-16 12:50:34
codersforcauses/poops
https://api.github.com/repos/codersforcauses/poops
closed
Add phone login
frontend difficulty::easy priority::high point::1
## Basic Information - [ ] Add phone login ## Other Information Potential scopes:
1.0
Add phone login - ## Basic Information - [ ] Add phone login ## Other Information Potential scopes:
priority
add phone login basic information add phone login other information potential scopes
1
288,807
8,851,792,282
IssuesEvent
2019-01-08 16:35:24
WeakAuras/WeakAuras2
https://api.github.com/repos/WeakAuras/WeakAuras2
closed
Add encounter IDs for Battle of Dazar'alor in load tooltip
✔️ Accepted ✨Housekeeping 🚨High Priority
List from Causese - Champion of the Light: 2265 - Grong (Alliance: 2284, Horde: 2263) - Jadefire Masters (Alliance: 2285, Horde: 2266) - Opulence: 2271 - Conclave: 2268 - Mekkatorque: 2276 - Rastakhan: 2272 - Stormwall Blockade: 2280 - Jaina: 2281
1.0
Add encounter IDs for Battle of Dazar'alor in load tooltip - List from Causese - Champion of the Light: 2265 - Grong (Alliance: 2284, Horde: 2263) - Jadefire Masters (Alliance: 2285, Horde: 2266) - Opulence: 2271 - Conclave: 2268 - Mekkatorque: 2276 - Rastakhan: 2272 - Stormwall Blockade: 2280 - Jaina: 2281
priority
add encounter ids for battle of dazar alor in load tooltip list from causese champion of the light grong alliance horde jadefire masters alliance horde opulence conclave mekkatorque rastakhan stormwall blockade jaina
1
193,161
6,882,050,510
IssuesEvent
2017-11-21 01:33:39
goby-lang/goby
https://api.github.com/repos/goby-lang/goby
closed
Bug: namespaced constants conflict with toplevel constants
bug in progress Priority High VM
When a namespaced constant (`Foo::VAL`) is defined first and then a toplevel constant with the same name (`VAL`), it works. But when a toplevel constant is defined first and then a namespaced constant with the same name (`Bar::VAL`) is defined, the constants are conflicted. ``` class Foo VAL="Foo's constant value" def foo VAL end end VAL="toplevel constant value" VAL #» toplevel constant value Foo::VAL #» Foo's constant value Foo.new.foo #» Foo's constant value class Bar VAL="Bar's constant value" def bar VAL end end #» ERROR: ConstantAlreadyInitializedError: Constant VAL already been initialized. Can't assign value to a constant twice.. At REPL:2 ``` This works on Ruby.
1.0
Bug: namespaced constants conflict with toplevel constants - When a namespaced constant (`Foo::VAL`) is defined first and then a toplevel constant with the same name (`VAL`), it works. But when a toplevel constant is defined first and then a namespaced constant with the same name (`Bar::VAL`) is defined, the constants are conflicted. ``` class Foo VAL="Foo's constant value" def foo VAL end end VAL="toplevel constant value" VAL #» toplevel constant value Foo::VAL #» Foo's constant value Foo.new.foo #» Foo's constant value class Bar VAL="Bar's constant value" def bar VAL end end #» ERROR: ConstantAlreadyInitializedError: Constant VAL already been initialized. Can't assign value to a constant twice.. At REPL:2 ``` This works on Ruby.
priority
bug namespaced constants conflict with toplevel constants when a namespaced constant foo val is defined first and then a toplevel constant with the same name val it works but when a toplevel constant is defined first and then a namespaced constant with the same name bar val is defined the constants are conflicted class foo val foo s constant value def foo val end end val toplevel constant value val » toplevel constant value foo val » foo s constant value foo new foo » foo s constant value class bar val bar s constant value def bar val end end » error constantalreadyinitializederror constant val already been initialized can t assign value to a constant twice at repl this works on ruby
1
568,062
16,946,094,630
IssuesEvent
2021-06-28 07:01:51
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.3.5] Self Improvement skill shouldn't go up based on your XP rate
Category: Gameplay Priority: High Squad: Redwood Type: Feature
So recently I noticed there was something weird going on with the Self Improvement skill. On White Tiger I had maxed out 6 professions and I was level 5 Self Improvement: ![image](https://user-images.githubusercontent.com/964559/123531565-6e6f9680-d6ba-11eb-99b9-2ada506525cf.png) I figured that was as high as I could go based on the weird progression that skill has - #19528 . However, I checked someone else and they had a level 6 Self Improvement while also having 6 max level professions: ![image](https://user-images.githubusercontent.com/964559/123531584-a4147f80-d6ba-11eb-8c32-8a9ac6a71efa.png) So I'm guessing the rate you earn the Self Improvement XP is multiplied by your XP rate, which mostly punishes you for levelling anything until you have some high XP rate available (if you grind your first skill without housing, you will have much less Self Improvement than if you wait to take any skill and then level once you do have a house). While this isn't much of a problem on normal servers, it's an issue on White Tiger since the XP rates are rather low. Ideally, we would have the skill give flat XP that isn't modified by the XP rate based on the skill levels you have, so anyone who reaches 6 Level 7 skills should have the same amount of XP in Self Improvement. Or as #19528 suggests - the skill in general needs triage so it's not something weird. Maybe just give people XP for using a hammer or a shovel, or some flat XP each food tick to make it entirely passive?
1.0
[0.9.3.5] Self Improvement skill shouldn't go up based on your XP rate - So recently I noticed there was something weird going on with the Self Improvement skill. On White Tiger I had maxed out 6 professions and I was level 5 Self Improvement: ![image](https://user-images.githubusercontent.com/964559/123531565-6e6f9680-d6ba-11eb-99b9-2ada506525cf.png) I figured that was as high as I could go based on the weird progression that skill has - #19528 . However, I checked someone else and they had a level 6 Self Improvement while also having 6 max level professions: ![image](https://user-images.githubusercontent.com/964559/123531584-a4147f80-d6ba-11eb-8c32-8a9ac6a71efa.png) So I'm guessing the rate you earn the Self Improvement XP is multiplied by your XP rate, which mostly punishes you for levelling anything until you have some high XP rate available (if you grind your first skill without housing, you will have much less Self Improvement than if you wait to take any skill and then level once you do have a house). While this isn't much of a problem on normal servers, it's an issue on White Tiger since the XP rates are rather low. Ideally, we would have the skill give flat XP that isn't modified by the XP rate based on the skill levels you have, so anyone who reaches 6 Level 7 skills should have the same amount of XP in Self Improvement. Or as #19528 suggests - the skill in general needs triage so it's not something weird. Maybe just give people XP for using a hammer or a shovel, or some flat XP each food tick to make it entirely passive?
priority
self improvement skill shouldn t go up based on your xp rate so recently i noticed there was something weird going on with the self improvement skill on white tiger i had maxed out professions and i was level self improvement i figured that was as high as i could go based on the weird progression that skill has however i checked someone else and they had a level self improvement while also having max level professions so i m guessing the rate you earn the self improvement xp is multiplied by your xp rate which mostly punishes you for levelling anything until you have some high xp rate available if you grind your first skill without housing you will have much less self improvement than if you wait to take any skill and then level once you do have a house while this isn t much of a problem on normal servers it s an issue on white tiger since the xp rates are rather low ideally we would have the skill give flat xp that isn t modified by the xp rate based on the skill levels you have so anyone who reaches level skills should have the same amount of xp in self improvement or as suggests the skill in general needs triage so it s not something weird maybe just give people xp for using a hammer or a shovel or some flat xp each food tick to make it entirely passive
1
749,728
26,177,125,666
IssuesEvent
2023-01-02 11:09:16
bounswe/bounswe2022group3
https://api.github.com/repos/bounswe/bounswe2022group3
closed
[Backend] Finalized Space Ratings
enhancement priority: high effort: moderate backend
### Issue The space ratings will be changed from randomized values to real values. ### Task(s) - [x] Modify the space model and update the necessary endpoints to enable users to rate the spaces. ### Deliverable(s) * #477 ### Acceptance Criteria * PR is reviewed and merged. ### Deadline of the issue 26.12.2022 @20.00 ### Reviewer None ### Deadline for Review 26.12.2022 @20.00
1.0
[Backend] Finalized Space Ratings - ### Issue The space ratings will be changed from randomized values to real values. ### Task(s) - [x] Modify the space model and update the necessary endpoints to enable users to rate the spaces. ### Deliverable(s) * #477 ### Acceptance Criteria * PR is reviewed and merged. ### Deadline of the issue 26.12.2022 @20.00 ### Reviewer None ### Deadline for Review 26.12.2022 @20.00
priority
finalized space ratings issue the space ratings will be changed from randomized values to real values task s modify the space model and update the necessary endpoints to enable users to rate the spaces deliverable s acceptance criteria pr is reviewed and merged deadline of the issue reviewer none deadline for review
1
346,281
10,410,307,550
IssuesEvent
2019-09-13 11:01:37
zowe/sample-spring-boot-api-service
https://api.github.com/repos/zowe/sample-spring-boot-api-service
closed
Migrate documentation from DocOps
Priority: High Status: In Progress
Migrate relevant documentation from https://docops.ca.com/display/IWM/Building+New+APIs to Markdown in the repository or to GitHub wiki (in case of general documentation that is not affected by code changes) - [x] https://docops.ca.com/display/IWM/Sample+REST+API+Service - [x] https://docops.ca.com/display/IWM/Using+the+Sample+Service - [x] https://docops.ca.com/display/IWM/Adding+Error+Messages - [x] https://docops.ca.com/display/IWM/Adding+Swagger+Annotations - [x] https://docops.ca.com/display/IWM/Integrating+with+the+API+Mediation+Layer - [x] https://docops.ca.com/display/IWM/Encrypting+With+HTTPS - [ ] Deprecate original documentation
1.0
Migrate documentation from DocOps - Migrate relevant documentation from https://docops.ca.com/display/IWM/Building+New+APIs to Markdown in the repository or to GitHub wiki (in case of general documentation that is not affected by code changes) - [x] https://docops.ca.com/display/IWM/Sample+REST+API+Service - [x] https://docops.ca.com/display/IWM/Using+the+Sample+Service - [x] https://docops.ca.com/display/IWM/Adding+Error+Messages - [x] https://docops.ca.com/display/IWM/Adding+Swagger+Annotations - [x] https://docops.ca.com/display/IWM/Integrating+with+the+API+Mediation+Layer - [x] https://docops.ca.com/display/IWM/Encrypting+With+HTTPS - [ ] Deprecate original documentation
priority
migrate documentation from docops migrate relevant documentation from to markdown in the repository or to github wiki in case of general documentation that is not affected by code changes deprecate original documentation
1
489,834
14,112,559,923
IssuesEvent
2020-11-07 06:07:44
AY2021S1-CS2113T-W12-2/tp
https://api.github.com/repos/AY2021S1-CS2113T-W12-2/tp
closed
Ui needs to print appropriately when there's no deadline
aspect.UIX priority.High
The default deadline is no deadline, and UI says "finish on No Deadline"
1.0
Ui needs to print appropriately when there's no deadline - The default deadline is no deadline, and UI says "finish on No Deadline"
priority
ui needs to print appropriately when there s no deadline the default deadline is no deadline and ui says finish on no deadline
1
175,726
6,553,349,486
IssuesEvent
2017-09-05 22:09:03
ucdavis/ipa-client-angular
https://api.github.com/repos/ucdavis/ipa-client-angular
closed
InstructorSupportCall: Potential bug in instructor preference display
bug high priority
From User: Additionally, I have not been able to find an indication of the instructor's submitted preference, even after deleting existing assignments.
1.0
InstructorSupportCall: Potential bug in instructor preference display - From User: Additionally, I have not been able to find an indication of the instructor's submitted preference, even after deleting existing assignments.
priority
instructorsupportcall potential bug in instructor preference display from user additionally i have not been able to find an indication of the instructor s submitted preference even after deleting existing assignments
1
236,859
7,753,187,507
IssuesEvent
2018-05-30 23:12:45
Gloirin/m2gTest
https://api.github.com/repos/Gloirin/m2gTest
closed
0005296: don't allow to forward mails to self contact mail per sieve
Feature Request Felamimail high priority
**Reported by cweiss on 4 Jan 2012 16:23** **Version:** Maischa (2011-05-5) don&#039;t allow to forward mails to self contact mail per sieve mails will turn in cycles and be bounced at last
1.0
0005296: don't allow to forward mails to self contact mail per sieve - **Reported by cweiss on 4 Jan 2012 16:23** **Version:** Maischa (2011-05-5) don&#039;t allow to forward mails to self contact mail per sieve mails will turn in cycles and be bounced at last
priority
don t allow to forward mails to self contact mail per sieve reported by cweiss on jan version maischa don t allow to forward mails to self contact mail per sieve mails will turn in cycles and be bounced at last
1
217,063
7,314,268,004
IssuesEvent
2018-03-01 06:14:11
wso2/product-is
https://api.github.com/repos/wso2/product-is
closed
Script errors can be seen when you source the mysql 5.7 scripts against DB.
Affected/5.5.0-Alpha2 Priority/Highest Type/Bug
Script errors can be seen when you source the mysql 5.7 scripts against DB. Server version: 5.7.17 **Note : I have renamed mysql-5.7.sql as mysql.sql** ``` mysql> source /home/ushani/WSO2_WORK/Products/IS/5.5.0/alpha2/wso2is-5.5.0-alpha2/dbscripts/mysql.sql Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.19 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.19 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.23 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected, 1 warning (0.06 sec) Records: 0 Duplicates: 0 Warnings: 1 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.19 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.17 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.20 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected, 1 warning (0.05 sec) Records: 0 Duplicates: 0 Warnings: 1 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.11 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.06 sec) mysql> source /home/ushani/WSO2_WORK/Products/IS/5.5.0/alpha2/wso2is-5.5.0-alpha2/dbscripts/identity/mysql.sql Query OK, 0 rows affected (0.07 sec) Query OK, 1 row affected (0.01 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.08 sec) ERROR 1067 (42000): Invalid default value for 'TIME_CREATED' ERROR 1146 (42S02): Table 'WSO2CarbonDB.IDN_OAUTH2_ACCESS_TOKEN' doesn't exist ERROR 1146 (42S02): Table 'WSO2CarbonDB.IDN_OAUTH2_ACCESS_TOKEN' doesn't exist ERROR 1146 (42S02): Table 'WSO2CarbonDB.IDN_OAUTH2_ACCESS_TOKEN' doesn't exist Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 ERROR 1215 (HY000): Cannot add foreign key constraint Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) ERROR 1067 (42000): Invalid default value for 'EXPIRE_DATE' Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.20 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.17 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.17 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.06 sec) ERROR 1067 (42000): Invalid default value for 'UPDATED_AT' Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) ERROR 1215 (HY000): Cannot add foreign key constraint ERROR 1215 (HY000): Cannot add foreign key constraint Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.07 sec) ERROR 1215 (HY000): Cannot add foreign key constraint ERROR 1215 (HY000): Cannot add foreign key constraint ERROR 1215 (HY000): Cannot add foreign key constraint Query OK, 0 rows affected (0.07 sec) mysql> mysql> mysql> show tables; +-------------------------------+ | Tables_in_WSO2CarbonDB | +-------------------------------+ | FIDO_DEVICE_STORE | | IDN_ASSOCIATED_ID | | IDN_AUTH_SESSION_STORE | | IDN_BASE_TABLE | | IDN_CERTIFICATE | | IDN_CLAIM | | IDN_CLAIM_DIALECT | | IDN_CLAIM_MAPPED_ATTRIBUTE | | IDN_CLAIM_MAPPING | | IDN_CLAIM_PROPERTY | | IDN_IDENTITY_META_DATA | | IDN_IDENTITY_USER_DATA | | IDN_OAUTH1A_ACCESS_TOKEN | | IDN_OAUTH1A_REQUEST_TOKEN | | IDN_OAUTH2_AUTHORIZATION_CODE | | IDN_OAUTH2_RESOURCE_SCOPE | | IDN_OAUTH2_SCOPE | | IDN_OAUTH2_SCOPE_BINDING | | IDN_OAUTH2_SCOPE_VALIDATORS | | IDN_OAUTH_CONSUMER_APPS | | IDN_OIDC_JTI | | IDN_OIDC_PROPERTY | | IDN_OPENID_ASSOCIATIONS | | IDN_OPENID_REMEMBER_ME | | IDN_OPENID_USER_RPS | | IDN_PASSWORD_HISTORY_DATA | | IDN_RECOVERY_DATA | | IDN_SAML2_ASSERTION_STORE | | IDN_SCIM_GROUP | | IDN_THRIFT_SESSION | | IDN_USER_ACCOUNT_ASSOCIATION | | IDP | | IDP_AUTHENTICATOR | | IDP_AUTHENTICATOR_PROPERTY | | IDP_CLAIM | | IDP_CLAIM_MAPPING | | IDP_LOCAL_CLAIM | | IDP_METADATA | | IDP_PROVISIONING_CONFIG | | IDP_PROVISIONING_ENTITY | | IDP_PROV_CONFIG_PROPERTY | | IDP_ROLE | | IDP_ROLE_MAPPING | | REG_ASSOCIATION | | REG_CLUSTER_LOCK | | REG_COMMENT | | REG_CONTENT | | REG_CONTENT_HISTORY | | REG_LOG | | REG_PATH | | REG_PROPERTY | | REG_RATING | | REG_RESOURCE | | REG_RESOURCE_COMMENT | | REG_RESOURCE_HISTORY | | REG_RESOURCE_PROPERTY | | REG_RESOURCE_RATING | | REG_RESOURCE_TAG | | REG_SNAPSHOT | | REG_TAG | | SP_APP | | SP_AUTH_SCRIPT | | SP_AUTH_STEP | | SP_CLAIM_MAPPING | | SP_FEDERATED_IDP | | SP_INBOUND_AUTH | | SP_METADATA | | SP_PROVISIONING_CONNECTOR | | SP_REQ_PATH_AUTHENTICATOR | | SP_ROLE_MAPPING | | UM_ACCOUNT_MAPPING | | UM_CLAIM | | UM_DIALECT | | UM_DOMAIN | | UM_HYBRID_REMEMBER_ME | | UM_HYBRID_ROLE | | UM_HYBRID_USER_ROLE | | UM_MODULE | | UM_MODULE_ACTIONS | | UM_PERMISSION | | UM_PROFILE_CONFIG | | UM_ROLE | | UM_ROLE_PERMISSION | | UM_SHARED_USER_ROLE | | UM_SYSTEM_ROLE | | UM_SYSTEM_USER | | UM_SYSTEM_USER_ROLE | | UM_TENANT | | UM_USER | | UM_USER_ATTRIBUTE | | UM_USER_PERMISSION | | UM_USER_ROLE | | WF_BPS_PROFILE | | WF_WORKFLOW | | WF_WORKFLOW_ASSOCIATION | | WF_WORKFLOW_CONFIG_PARAM | +-------------------------------+ 96 rows in set (0.00 sec) ```
1.0
Script errors can be seen when you source the mysql 5.7 scripts against DB. - Script errors can be seen when you source the mysql 5.7 scripts against DB. Server version: 5.7.17 **Note : I have renamed mysql-5.7.sql as mysql.sql** ``` mysql> source /home/ushani/WSO2_WORK/Products/IS/5.5.0/alpha2/wso2is-5.5.0-alpha2/dbscripts/mysql.sql Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.19 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.19 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.23 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected, 1 warning (0.06 sec) Records: 0 Duplicates: 0 Warnings: 1 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.19 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.17 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.20 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected, 1 warning (0.05 sec) Records: 0 Duplicates: 0 Warnings: 1 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.11 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.06 sec) mysql> source /home/ushani/WSO2_WORK/Products/IS/5.5.0/alpha2/wso2is-5.5.0-alpha2/dbscripts/identity/mysql.sql Query OK, 0 rows affected (0.07 sec) Query OK, 1 row affected (0.01 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.08 sec) ERROR 1067 (42000): Invalid default value for 'TIME_CREATED' ERROR 1146 (42S02): Table 'WSO2CarbonDB.IDN_OAUTH2_ACCESS_TOKEN' doesn't exist ERROR 1146 (42S02): Table 'WSO2CarbonDB.IDN_OAUTH2_ACCESS_TOKEN' doesn't exist ERROR 1146 (42S02): Table 'WSO2CarbonDB.IDN_OAUTH2_ACCESS_TOKEN' doesn't exist Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.05 sec) Records: 0 Duplicates: 0 Warnings: 0 ERROR 1215 (HY000): Cannot add foreign key constraint Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) ERROR 1067 (42000): Invalid default value for 'EXPIRE_DATE' Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.20 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.18 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.17 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.17 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.16 sec) Records: 0 Duplicates: 0 Warnings: 0 Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.06 sec) ERROR 1067 (42000): Invalid default value for 'UPDATED_AT' Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.06 sec) ERROR 1215 (HY000): Cannot add foreign key constraint ERROR 1215 (HY000): Cannot add foreign key constraint Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.09 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.07 sec) Query OK, 0 rows affected (0.06 sec) Query OK, 0 rows affected (0.08 sec) Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.05 sec) Query OK, 0 rows affected (0.07 sec) ERROR 1215 (HY000): Cannot add foreign key constraint ERROR 1215 (HY000): Cannot add foreign key constraint ERROR 1215 (HY000): Cannot add foreign key constraint Query OK, 0 rows affected (0.07 sec) mysql> mysql> mysql> show tables; +-------------------------------+ | Tables_in_WSO2CarbonDB | +-------------------------------+ | FIDO_DEVICE_STORE | | IDN_ASSOCIATED_ID | | IDN_AUTH_SESSION_STORE | | IDN_BASE_TABLE | | IDN_CERTIFICATE | | IDN_CLAIM | | IDN_CLAIM_DIALECT | | IDN_CLAIM_MAPPED_ATTRIBUTE | | IDN_CLAIM_MAPPING | | IDN_CLAIM_PROPERTY | | IDN_IDENTITY_META_DATA | | IDN_IDENTITY_USER_DATA | | IDN_OAUTH1A_ACCESS_TOKEN | | IDN_OAUTH1A_REQUEST_TOKEN | | IDN_OAUTH2_AUTHORIZATION_CODE | | IDN_OAUTH2_RESOURCE_SCOPE | | IDN_OAUTH2_SCOPE | | IDN_OAUTH2_SCOPE_BINDING | | IDN_OAUTH2_SCOPE_VALIDATORS | | IDN_OAUTH_CONSUMER_APPS | | IDN_OIDC_JTI | | IDN_OIDC_PROPERTY | | IDN_OPENID_ASSOCIATIONS | | IDN_OPENID_REMEMBER_ME | | IDN_OPENID_USER_RPS | | IDN_PASSWORD_HISTORY_DATA | | IDN_RECOVERY_DATA | | IDN_SAML2_ASSERTION_STORE | | IDN_SCIM_GROUP | | IDN_THRIFT_SESSION | | IDN_USER_ACCOUNT_ASSOCIATION | | IDP | | IDP_AUTHENTICATOR | | IDP_AUTHENTICATOR_PROPERTY | | IDP_CLAIM | | IDP_CLAIM_MAPPING | | IDP_LOCAL_CLAIM | | IDP_METADATA | | IDP_PROVISIONING_CONFIG | | IDP_PROVISIONING_ENTITY | | IDP_PROV_CONFIG_PROPERTY | | IDP_ROLE | | IDP_ROLE_MAPPING | | REG_ASSOCIATION | | REG_CLUSTER_LOCK | | REG_COMMENT | | REG_CONTENT | | REG_CONTENT_HISTORY | | REG_LOG | | REG_PATH | | REG_PROPERTY | | REG_RATING | | REG_RESOURCE | | REG_RESOURCE_COMMENT | | REG_RESOURCE_HISTORY | | REG_RESOURCE_PROPERTY | | REG_RESOURCE_RATING | | REG_RESOURCE_TAG | | REG_SNAPSHOT | | REG_TAG | | SP_APP | | SP_AUTH_SCRIPT | | SP_AUTH_STEP | | SP_CLAIM_MAPPING | | SP_FEDERATED_IDP | | SP_INBOUND_AUTH | | SP_METADATA | | SP_PROVISIONING_CONNECTOR | | SP_REQ_PATH_AUTHENTICATOR | | SP_ROLE_MAPPING | | UM_ACCOUNT_MAPPING | | UM_CLAIM | | UM_DIALECT | | UM_DOMAIN | | UM_HYBRID_REMEMBER_ME | | UM_HYBRID_ROLE | | UM_HYBRID_USER_ROLE | | UM_MODULE | | UM_MODULE_ACTIONS | | UM_PERMISSION | | UM_PROFILE_CONFIG | | UM_ROLE | | UM_ROLE_PERMISSION | | UM_SHARED_USER_ROLE | | UM_SYSTEM_ROLE | | UM_SYSTEM_USER | | UM_SYSTEM_USER_ROLE | | UM_TENANT | | UM_USER | | UM_USER_ATTRIBUTE | | UM_USER_PERMISSION | | UM_USER_ROLE | | WF_BPS_PROFILE | | WF_WORKFLOW | | WF_WORKFLOW_ASSOCIATION | | WF_WORKFLOW_CONFIG_PARAM | +-------------------------------+ 96 rows in set (0.00 sec) ```
priority
script errors can be seen when you source the mysql scripts against db script errors can be seen when you source the mysql scripts against db server version note i have renamed mysql sql as mysql sql mysql source home ushani work products is dbscripts mysql sql query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected warning sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected warning sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec mysql source home ushani work products is dbscripts identity mysql sql query ok rows affected sec query ok row affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec error invalid default value for time created error table idn access token doesn t exist error table idn access token doesn t exist error table idn access token doesn t exist query ok rows affected sec query ok rows affected sec records duplicates warnings error cannot add foreign key constraint query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec error invalid default value for expire date query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec records duplicates warnings query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec error invalid default value for updated at query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec error cannot add foreign key constraint error cannot add foreign key constraint query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec query ok rows affected sec error cannot add foreign key constraint error cannot add foreign key constraint error cannot add foreign key constraint query ok rows affected sec mysql mysql mysql show tables tables in fido device store idn associated id idn auth session store idn base table idn certificate idn claim idn claim dialect idn claim mapped attribute idn claim mapping idn claim property idn identity meta data idn identity user data idn access token idn request token idn authorization code idn resource scope idn scope idn scope binding idn scope validators idn oauth consumer apps idn oidc jti idn oidc property idn openid associations idn openid remember me idn openid user rps idn password history data idn recovery data idn assertion store idn scim group idn thrift session idn user account association idp idp authenticator idp authenticator property idp claim idp claim mapping idp local claim idp metadata idp provisioning config idp provisioning entity idp prov config property idp role idp role mapping reg association reg cluster lock reg comment reg content reg content history reg log reg path reg property reg rating reg resource reg resource comment reg resource history reg resource property reg resource rating reg resource tag reg snapshot reg tag sp app sp auth script sp auth step sp claim mapping sp federated idp sp inbound auth sp metadata sp provisioning connector sp req path authenticator sp role mapping um account mapping um claim um dialect um domain um hybrid remember me um hybrid role um hybrid user role um module um module actions um permission um profile config um role um role permission um shared user role um system role um system user um system user role um tenant um user um user attribute um user permission um user role wf bps profile wf workflow wf workflow association wf workflow config param rows in set sec
1
163,706
6,204,141,870
IssuesEvent
2017-07-06 13:37:21
vmware/vic
https://api.github.com/repos/vmware/vic
opened
hostd error on container that we created: error on file delete force
kind/bug priority/high
This is coming off of a container created here: docker %{VCH-PARAMS} create ${busybox} ls The test does not have any docker cleanup commands in it, so this must be coming from the vic-machine delete at the end of the test: ``` 2017-07-06T13:02:57.995Z info hostd[34080B70] [Originator@6876 sub=Vimsvc.TaskManager opID=c3cfea92 user=droneci] Task Created : haTask--vim.VirtualDiskManager.deleteVirtualDisk-26069 2017-07-06T13:02:57.996Z error hostd[332C1B70] [Originator@6876 sub=Nfcsvc opID=c3cfea92 user=droneci] file delete force (/vmfs/volumes/58af7eb5-d9fc5174-6127-0cc47a9be492/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228-delta.vmdk -> /vmfs/volumes/58af7eb5-d9fc5174-6127-0cc47a9be492/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228-delta.vmdk) by 'droneci' 2017-07-06T13:02:57.996Z info hostd[332C1B70] [Originator@6876 sub=Vimsvc.TaskManager opID=c3cfea92 user=droneci] Task Completed : haTask--vim.VirtualDiskManager.deleteVirtualDisk-26069 Status error ```
1.0
hostd error on container that we created: error on file delete force - This is coming off of a container created here: docker %{VCH-PARAMS} create ${busybox} ls The test does not have any docker cleanup commands in it, so this must be coming from the vic-machine delete at the end of the test: ``` 2017-07-06T13:02:57.995Z info hostd[34080B70] [Originator@6876 sub=Vimsvc.TaskManager opID=c3cfea92 user=droneci] Task Created : haTask--vim.VirtualDiskManager.deleteVirtualDisk-26069 2017-07-06T13:02:57.996Z error hostd[332C1B70] [Originator@6876 sub=Nfcsvc opID=c3cfea92 user=droneci] file delete force (/vmfs/volumes/58af7eb5-d9fc5174-6127-0cc47a9be492/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228-delta.vmdk -> /vmfs/volumes/58af7eb5-d9fc5174-6127-0cc47a9be492/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228/5dfa31f53d754f0996522c2c0e0a051c1ce2dc0d2924586d911e4dc998d2a228-delta.vmdk) by 'droneci' 2017-07-06T13:02:57.996Z info hostd[332C1B70] [Originator@6876 sub=Vimsvc.TaskManager opID=c3cfea92 user=droneci] Task Completed : haTask--vim.VirtualDiskManager.deleteVirtualDisk-26069 Status error ```
priority
hostd error on container that we created error on file delete force this is coming off of a container created here docker vch params create busybox ls the test does not have any docker cleanup commands in it so this must be coming from the vic machine delete at the end of the test info hostd task created hatask vim virtualdiskmanager deletevirtualdisk error hostd file delete force vmfs volumes delta vmdk vmfs volumes delta vmdk by droneci info hostd task completed hatask vim virtualdiskmanager deletevirtualdisk status error
1
479,525
13,798,329,360
IssuesEvent
2020-10-10 01:01:11
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[docdb] load balance the tablets at the global level also
area/docdb kind/enhancement priority/high
At the moment we load balance the tablets at the table level. If a table has uneven number of tablets that cannot be divided in a even way across all the available nodes, we load balance that table where some tservers may have 1 extra tablet for that table than the other tservers. But, if multiple tables have uneven tablet counts then it is possible for some tservers to have significantly higher tablet counts than others. In addition to load balancing at the table level, we should also load balance the total tablet counts on the tservers as much as possible without violating the table level rule.
1.0
[docdb] load balance the tablets at the global level also - At the moment we load balance the tablets at the table level. If a table has uneven number of tablets that cannot be divided in a even way across all the available nodes, we load balance that table where some tservers may have 1 extra tablet for that table than the other tservers. But, if multiple tables have uneven tablet counts then it is possible for some tservers to have significantly higher tablet counts than others. In addition to load balancing at the table level, we should also load balance the total tablet counts on the tservers as much as possible without violating the table level rule.
priority
load balance the tablets at the global level also at the moment we load balance the tablets at the table level if a table has uneven number of tablets that cannot be divided in a even way across all the available nodes we load balance that table where some tservers may have extra tablet for that table than the other tservers but if multiple tables have uneven tablet counts then it is possible for some tservers to have significantly higher tablet counts than others in addition to load balancing at the table level we should also load balance the total tablet counts on the tservers as much as possible without violating the table level rule
1
623,799
19,679,534,463
IssuesEvent
2022-01-11 15:31:56
paperclip-ui/paperclip
https://api.github.com/repos/paperclip-ui/paperclip
opened
[MTI] better static analysis for PC files
priority: high effort: easy impact: high
- [ ] warning when class is used in doc but not found as style rule - [ ] need to analyze interim module. Can use this an excuse to build interim in Rust. - [ ] error when files aren't found - [ ] inferencing engine 2.0
1.0
[MTI] better static analysis for PC files - - [ ] warning when class is used in doc but not found as style rule - [ ] need to analyze interim module. Can use this an excuse to build interim in Rust. - [ ] error when files aren't found - [ ] inferencing engine 2.0
priority
better static analysis for pc files warning when class is used in doc but not found as style rule need to analyze interim module can use this an excuse to build interim in rust error when files aren t found inferencing engine
1
108,266
4,330,240,713
IssuesEvent
2016-07-26 19:21:55
JaneliaSciComp/Wavesurfer
https://api.github.com/repos/JaneliaSciComp/Wavesurfer
closed
Sometimes get "The refiller was asked to prepare for a sweep while not in a run" when stop and re-start
bug high priority Svoboda
Mike Economo is seeing this in 0.92.
1.0
Sometimes get "The refiller was asked to prepare for a sweep while not in a run" when stop and re-start - Mike Economo is seeing this in 0.92.
priority
sometimes get the refiller was asked to prepare for a sweep while not in a run when stop and re start mike economo is seeing this in
1
239,681
7,799,923,012
IssuesEvent
2018-06-09 02:09:50
tine20/Tine-2.0-Open-Source-Groupware-and-CRM
https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM
closed
0006160: irritation notification messages for organizer change
Bug Calendar Mantis high priority
**Reported by cweiss on 28 Mar 2012 11:16** **Version:** Milan (2012-03-1) Änderungen: Organisator wurde von &quot;a14fa73d73394aad0777596484100516bb84106e&quot; auf &quot;Array ( [id] =&gt; a14fa73d73394aad0777596484100516bb84106e [adr_one_countryname] =&gt; [adr_one_locality] =&gt; ...
1.0
0006160: irritation notification messages for organizer change - **Reported by cweiss on 28 Mar 2012 11:16** **Version:** Milan (2012-03-1) Änderungen: Organisator wurde von &quot;a14fa73d73394aad0777596484100516bb84106e&quot; auf &quot;Array ( [id] =&gt; a14fa73d73394aad0777596484100516bb84106e [adr_one_countryname] =&gt; [adr_one_locality] =&gt; ...
priority
irritation notification messages for organizer change reported by cweiss on mar version milan änderungen organisator wurde von quot quot auf quot array gt gt gt
1
741,308
25,788,007,141
IssuesEvent
2022-12-09 22:56:35
WSWCWaterDataExchange/MappingStatesDataToWaDE2.0
https://api.github.com/repos/WSWCWaterDataExchange/MappingStatesDataToWaDE2.0
reopened
MT Streamgage locations and data
Data - SS Public Supply Water Use Priority: 1 - High
We provided a small grant to MT to help them share their stream gage data (i.e., discharge and stage variables). The product is here https://gis.dnrc.mt.gov/apps/StAGE/# I clicked around and found different ways to access the data. Here is the "gage reports page". I'm not sure if there is a programmatic way to get the data through. https://gis.dnrc.mt.gov/apps/stage/gage-report/ I was able to save the GIS layer to the WSWC account here. So hopefully now we have access to the shapefile and metadata. https://wswc.maps.arcgis.com/home/webmap/viewer.html?webmap=d406c7c4be304a90b93e65564e4897ba As a starter, let's get the metadata tables ready, especially the "sites" one. Then import data for a couple of sites. In the end, we need to come up with a list of questions to ask MT DNRC to help us fully import the data to WaDE. Although WaDE time series data focuses on monthly time steps as its most common in our states, we should import this daily data.
1.0
MT Streamgage locations and data - We provided a small grant to MT to help them share their stream gage data (i.e., discharge and stage variables). The product is here https://gis.dnrc.mt.gov/apps/StAGE/# I clicked around and found different ways to access the data. Here is the "gage reports page". I'm not sure if there is a programmatic way to get the data through. https://gis.dnrc.mt.gov/apps/stage/gage-report/ I was able to save the GIS layer to the WSWC account here. So hopefully now we have access to the shapefile and metadata. https://wswc.maps.arcgis.com/home/webmap/viewer.html?webmap=d406c7c4be304a90b93e65564e4897ba As a starter, let's get the metadata tables ready, especially the "sites" one. Then import data for a couple of sites. In the end, we need to come up with a list of questions to ask MT DNRC to help us fully import the data to WaDE. Although WaDE time series data focuses on monthly time steps as its most common in our states, we should import this daily data.
priority
mt streamgage locations and data we provided a small grant to mt to help them share their stream gage data i e discharge and stage variables the product is here i clicked around and found different ways to access the data here is the gage reports page i m not sure if there is a programmatic way to get the data through i was able to save the gis layer to the wswc account here so hopefully now we have access to the shapefile and metadata as a starter let s get the metadata tables ready especially the sites one then import data for a couple of sites in the end we need to come up with a list of questions to ask mt dnrc to help us fully import the data to wade although wade time series data focuses on monthly time steps as its most common in our states we should import this daily data
1
768,446
26,963,549,439
IssuesEvent
2023-02-08 20:13:05
tyler-technologies-oss/forge
https://api.github.com/repos/tyler-technologies-oss/forge
opened
[date-picker] standardize and improve input masking
bug priority: high complexity: high
**Describe the bug:** The current input masking functionality does not provide a friendly UX in the date-picker component. It works well for certain input formats/patterns, but there are bugs in editing the value as well as coercion to assist the user as they type. We can vastly improve the masking logic to make it easier to use and more familiar. **Expected behavior:** Input masking functionality should be familiar and easy to use: - Allow for editing any segments of the date value without changes to other segments - Automatically infer leading zeros - Coerce "short" date formats such as "1/1/23" to expected values "01/01/2023" **Additional context:** This relates to the time-picker as well, and should be consistent with the approach in that component. https://github.com/tyler-technologies-oss/forge/issues/228
1.0
[date-picker] standardize and improve input masking - **Describe the bug:** The current input masking functionality does not provide a friendly UX in the date-picker component. It works well for certain input formats/patterns, but there are bugs in editing the value as well as coercion to assist the user as they type. We can vastly improve the masking logic to make it easier to use and more familiar. **Expected behavior:** Input masking functionality should be familiar and easy to use: - Allow for editing any segments of the date value without changes to other segments - Automatically infer leading zeros - Coerce "short" date formats such as "1/1/23" to expected values "01/01/2023" **Additional context:** This relates to the time-picker as well, and should be consistent with the approach in that component. https://github.com/tyler-technologies-oss/forge/issues/228
priority
standardize and improve input masking describe the bug the current input masking functionality does not provide a friendly ux in the date picker component it works well for certain input formats patterns but there are bugs in editing the value as well as coercion to assist the user as they type we can vastly improve the masking logic to make it easier to use and more familiar expected behavior input masking functionality should be familiar and easy to use allow for editing any segments of the date value without changes to other segments automatically infer leading zeros coerce short date formats such as to expected values additional context this relates to the time picker as well and should be consistent with the approach in that component
1
207,117
7,124,759,609
IssuesEvent
2018-01-19 20:07:45
mit-cml/appinventor-sources
https://api.github.com/repos/mit-cml/appinventor-sources
closed
Map not initialized when child components attempt to update views
affects: master bug issue: accepted priority: high status: forum status: in progress
[From the forum](https://groups.google.com/d/msg/mitappinventortest/JmnKq9Zu-P0/_eShGheEAAAJ): A project using maps will not load in the production system. Pulling down the project into a local instance and pausing on the exception shows that the thrown error is due to the MockMarker attempting to update its appearance on the map, but the map hasn't been initialized yet.
1.0
Map not initialized when child components attempt to update views - [From the forum](https://groups.google.com/d/msg/mitappinventortest/JmnKq9Zu-P0/_eShGheEAAAJ): A project using maps will not load in the production system. Pulling down the project into a local instance and pausing on the exception shows that the thrown error is due to the MockMarker attempting to update its appearance on the map, but the map hasn't been initialized yet.
priority
map not initialized when child components attempt to update views a project using maps will not load in the production system pulling down the project into a local instance and pausing on the exception shows that the thrown error is due to the mockmarker attempting to update its appearance on the map but the map hasn t been initialized yet
1
195,235
6,905,688,342
IssuesEvent
2017-11-27 08:25:05
metasfresh/metasfresh
https://api.github.com/repos/metasfresh/metasfresh
closed
Linenet amount not updated in sales order after setting flatrate condition
branch:master branch:release branch:release-TODO priority:high type:bug
### Is this a bug or feature request? bug ### What is the current behavior? 1. add one order line 1. select flatrate condition that has a price system with a different product price 1. NOK: linenetamt is still on the old price here is a sample case: https://w101.metasfresh.com:8443/window/143/1000113 ### What is the expected or desired behavior? 1. should recalculate when selecting the flatrate condition 1. create automatic test for this particular case as it caused trouble before: #2838
1.0
Linenet amount not updated in sales order after setting flatrate condition - ### Is this a bug or feature request? bug ### What is the current behavior? 1. add one order line 1. select flatrate condition that has a price system with a different product price 1. NOK: linenetamt is still on the old price here is a sample case: https://w101.metasfresh.com:8443/window/143/1000113 ### What is the expected or desired behavior? 1. should recalculate when selecting the flatrate condition 1. create automatic test for this particular case as it caused trouble before: #2838
priority
linenet amount not updated in sales order after setting flatrate condition is this a bug or feature request bug what is the current behavior add one order line select flatrate condition that has a price system with a different product price nok linenetamt is still on the old price here is a sample case what is the expected or desired behavior should recalculate when selecting the flatrate condition create automatic test for this particular case as it caused trouble before
1
756,018
26,453,054,038
IssuesEvent
2023-01-16 12:40:26
SuadHus/D0020E-VR
https://api.github.com/repos/SuadHus/D0020E-VR
opened
Implement the words/sentences
High priority Low risk
Implement how the pharases are gonna appear and how they are gonna transform
1.0
Implement the words/sentences - Implement how the pharases are gonna appear and how they are gonna transform
priority
implement the words sentences implement how the pharases are gonna appear and how they are gonna transform
1
437,818
12,602,900,523
IssuesEvent
2020-06-11 12:35:22
Haivision/srt
https://api.github.com/repos/Haivision/srt
closed
[FR] Bonding API: Add a way to retrieve socket group member link status
Impact: Significant Priority: High Type: Enhancement [core]
**Note.** This is a draft description of what is needed. To be refined. Add link state field to SRT_GROUP_DATA, and retrieve the value via srt_group_data(..). Possible link states: active/unstable/Idle/broken. Maybe include SRT_GROUP_DATA into another structure. Another way was to pass additional array for link states to srt_group_data
1.0
[FR] Bonding API: Add a way to retrieve socket group member link status - **Note.** This is a draft description of what is needed. To be refined. Add link state field to SRT_GROUP_DATA, and retrieve the value via srt_group_data(..). Possible link states: active/unstable/Idle/broken. Maybe include SRT_GROUP_DATA into another structure. Another way was to pass additional array for link states to srt_group_data
priority
bonding api add a way to retrieve socket group member link status note this is a draft description of what is needed to be refined add link state field to srt group data and retrieve the value via srt group data possible link states active unstable idle broken maybe include srt group data into another structure another way was to pass additional array for link states to srt group data
1
174,196
6,537,639,917
IssuesEvent
2017-08-31 23:48:24
tgockel/zookeeper-cpp
https://api.github.com/repos/tgockel/zookeeper-cpp
closed
connection_zk_tests.watch_change: Erratically Fails
bug lib/main priority/high
Sometimes, the `connection_zk_tests.watch_change` unit test will emit this error: 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@726: Client environment:zookeeper.version=zookeeper C client 3.4.10 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@730: Client environment:host.name=kernel-sanders 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@737: Client environment:os.name=Linux 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@738: Client environment:os.arch=4.4.79-18.26-default 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@739: Client environment:os.version=#1 SMP Thu Aug 10 20:30:05 UTC 2017 (fa5a935) 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@747: Client environment:user.name=travis 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@755: Client environment:user.home=/home/travis 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@767: Client environment:user.dir=/home/travis/projects/opensource/zookeeper-cpp/build-debug 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@zookeeper_init@800: Initiating client connection, host=127.0.0.1:2181 sessionTimeout=10000 watcher=0x7fe1bf6f1f4e sessionId=0 sessionPasswd=<null> context=0x838b30 flags=0 2017-08-31 16:53:57,524:8047(0x7fe1bd784700):ZOO_INFO@check_events@1728: initiated connection to server [127.0.0.1:2181] 2017-08-31 16:53:57,525:8047(0x7fe1bd784700):ZOO_INFO@check_events@1775: session establishment complete on server [127.0.0.1:2181], sessionId=0x1002e01dd7a0007, negotiated timeout=10000 zkpp_tests: ../src/zk/connection_zk.cpp:893: static void zk::connection_zk::on_session_event_raw(zk::ptr<_zhandle>, int, int, zk::ptr<const char>, zk::ptr<void>): Assertion `self->_handle == handle' failed. /bin/sh: line 1: 8047 Aborted (core dumped) /home/travis/projects/opensource/zookeeper-cpp/build-debug/zkpp_tests --gtest_output=xml:test-results.xml --gtest_death_test_style=threadsafe ...and then hangs forever.
1.0
connection_zk_tests.watch_change: Erratically Fails - Sometimes, the `connection_zk_tests.watch_change` unit test will emit this error: 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@726: Client environment:zookeeper.version=zookeeper C client 3.4.10 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@730: Client environment:host.name=kernel-sanders 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@737: Client environment:os.name=Linux 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@738: Client environment:os.arch=4.4.79-18.26-default 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@739: Client environment:os.version=#1 SMP Thu Aug 10 20:30:05 UTC 2017 (fa5a935) 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@747: Client environment:user.name=travis 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@755: Client environment:user.home=/home/travis 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@log_env@767: Client environment:user.dir=/home/travis/projects/opensource/zookeeper-cpp/build-debug 2017-08-31 16:53:57,523:8047(0x7fe1c099d740):ZOO_INFO@zookeeper_init@800: Initiating client connection, host=127.0.0.1:2181 sessionTimeout=10000 watcher=0x7fe1bf6f1f4e sessionId=0 sessionPasswd=<null> context=0x838b30 flags=0 2017-08-31 16:53:57,524:8047(0x7fe1bd784700):ZOO_INFO@check_events@1728: initiated connection to server [127.0.0.1:2181] 2017-08-31 16:53:57,525:8047(0x7fe1bd784700):ZOO_INFO@check_events@1775: session establishment complete on server [127.0.0.1:2181], sessionId=0x1002e01dd7a0007, negotiated timeout=10000 zkpp_tests: ../src/zk/connection_zk.cpp:893: static void zk::connection_zk::on_session_event_raw(zk::ptr<_zhandle>, int, int, zk::ptr<const char>, zk::ptr<void>): Assertion `self->_handle == handle' failed. /bin/sh: line 1: 8047 Aborted (core dumped) /home/travis/projects/opensource/zookeeper-cpp/build-debug/zkpp_tests --gtest_output=xml:test-results.xml --gtest_death_test_style=threadsafe ...and then hangs forever.
priority
connection zk tests watch change erratically fails sometimes the connection zk tests watch change unit test will emit this error zoo info log env client environment zookeeper version zookeeper c client zoo info log env client environment host name kernel sanders zoo info log env client environment os name linux zoo info log env client environment os arch default zoo info log env client environment os version smp thu aug utc zoo info log env client environment user name travis zoo info log env client environment user home home travis zoo info log env client environment user dir home travis projects opensource zookeeper cpp build debug zoo info zookeeper init initiating client connection host sessiontimeout watcher sessionid sessionpasswd context flags zoo info check events initiated connection to server zoo info check events session establishment complete on server sessionid negotiated timeout zkpp tests src zk connection zk cpp static void zk connection zk on session event raw zk ptr int int zk ptr zk ptr assertion self handle handle failed bin sh line aborted core dumped home travis projects opensource zookeeper cpp build debug zkpp tests gtest output xml test results xml gtest death test style threadsafe and then hangs forever
1
485,858
14,000,507,222
IssuesEvent
2020-10-28 12:25:39
Scholar-6/brillder
https://api.github.com/repos/Scholar-6/brillder
closed
Mobile only: update Profile Page sizing (copy screenshot)
High Level Priority
<img width="374" alt="Screenshot 2020-10-26 at 16 43 25" src="https://user-images.githubusercontent.com/59654112/97194419-6d443d80-17aa-11eb-83e1-0501ab681ac1.png"> https://xd.adobe.com/view/30331e87-c1e7-4b03-9500-f91d835be8ee-6560/ - [x] fix sizing of picture circle (make bigger as above) - [x] fix subject panel - make font bigger as above
1.0
Mobile only: update Profile Page sizing (copy screenshot) - <img width="374" alt="Screenshot 2020-10-26 at 16 43 25" src="https://user-images.githubusercontent.com/59654112/97194419-6d443d80-17aa-11eb-83e1-0501ab681ac1.png"> https://xd.adobe.com/view/30331e87-c1e7-4b03-9500-f91d835be8ee-6560/ - [x] fix sizing of picture circle (make bigger as above) - [x] fix subject panel - make font bigger as above
priority
mobile only update profile page sizing copy screenshot img width alt screenshot at src fix sizing of picture circle make bigger as above fix subject panel make font bigger as above
1
747,159
26,075,223,613
IssuesEvent
2022-12-24 12:04:47
eclipse/dirigible
https://api.github.com/repos/eclipse/dirigible
closed
[IDE] Add 'Ctrl+S' work on all editors
enhancement web-ide usability priority-high efforts-medium
**Describe the bug** Currently, only the Schema, Entity, CSV, CSVIM and main editors respond to the 'Ctrl+S' shortcut. With all other editors, the user has to manually go and click the save button. **Expected behavior** 'Ctrl+S' (and 'Cmd+S on macOS') should work in all editors. **Desktop:** - OS: All - Browser: All - Version: Dirigible 6.3.31
1.0
[IDE] Add 'Ctrl+S' work on all editors - **Describe the bug** Currently, only the Schema, Entity, CSV, CSVIM and main editors respond to the 'Ctrl+S' shortcut. With all other editors, the user has to manually go and click the save button. **Expected behavior** 'Ctrl+S' (and 'Cmd+S on macOS') should work in all editors. **Desktop:** - OS: All - Browser: All - Version: Dirigible 6.3.31
priority
add ctrl s work on all editors describe the bug currently only the schema entity csv csvim and main editors respond to the ctrl s shortcut with all other editors the user has to manually go and click the save button expected behavior ctrl s and cmd s on macos should work in all editors desktop os all browser all version dirigible
1
641,870
20,842,428,604
IssuesEvent
2022-03-21 03:03:09
darealstyl/TeamJ-soen341project2022
https://api.github.com/repos/darealstyl/TeamJ-soen341project2022
closed
New Users can create an account
user story high-risk High-priority
"As a user, I want to be able to create a new account" _______________________________________________________________________________________________________________________________ ### > **Story Point** _______________________________________________________________________________________________________________________________ Story Points: 15 Explanation: The creation of an account is extremely important it gives the users a personal experience on the website. The user needs an account to be able to purchase products . The main goal of the website is selling and buying so the creation of an account to be able to buy items is extremely important. ______________________________________________________________________________________________________________________________ ### > **Tasks Breakdown** ____________________________________________________________________________________________________________________________________ - [x] When the user arrives at the signup page to create their account, they will be presented with 4 fields of a form they must fill out along with a create account button. - [x] The first form requires you to fill out your full name. - [x] The second form asks you to fill in the email you wish to use to log in to your account. The email must be a valid account that you can access in case of a forgotten password or other notification. - [x] The third form to be filled out is the password you would like to choose for your account. The password is recommended to have at least 1 uppercase letter, 1 number, and 1 special character. The password must also be at least 8 characters long, but not longer than 20 characters. - [x] The final form to be filled out is the confirm password, which is just a retype of the password in the third form in order to confirm that you have correctly entered your password before committing to creating your account. - [x] Once all the forms have been filled out, the user may submit the form by pressing the Create Account button. - [x] If the user has improperly filled out any of the fields, that field will turn red and indicate what the user must do in order to proceed, such as entering a valid email or password. - [x] If all the forms have been filled out properly then the form will submit and the user will be directed to a confirmation page that displays the confirmation of the creation of the account. The new user's account will be entered into the database. The user will then be able to proceed to the Sign In page where they can sign in to their new account with the username and password they just signed up with. _______________________________________________________________________________________________________________________________ ## **> Acceptance Test** ________________________________________________________________________________________________________________________________ **Success:** The user enters the website He browses some of the product He decides that he wants an account to buy products He goes on the Sign Up page He provides the required information such as : his first name,last name, email address, his password, and password confirmation. The information are saved and secured . The user has an account he can use . **Failure:** The user enters the website He wants to register as a new user. He writes all his information He chooses a password. The password is his first name The user's account is endangered without him knowing. A malicious server enters his account and has access to his information and purchases. In another case , There is a mismatch between the two password . The email is invalid . In another case, The user tries to log in after registering However the user is still unable to access his profile The information were not saved during the creation of the account The user has no account He was unable to register and use his account to have a personalized experience and buy products . ____________________________________________________________________________________________________________________________________ ### > **Risks, Priority & Countermeasures.** ______________________________________________________________________________________________________________________________ **High Risk & HIgh priority:**The creation of an account is of high priority. A user needs an account to purchase products which is the main goal of our website. Moreover, it is of high risk an account has important information about the users . All of the user's information should be secured and protected against malicious attacks. **Countermeasures:** 1.The system will prompt the user to write a password until he writes a strong password . The strong password will be composed of a capital letter , a special character , 1 number and should have a length of 8 . 2.The system prompt the user to rewrite his password in the case of a mismatch In between the passwords . 3.The system prompt with a message explaining the situation to the user until he enter an existing email .A confirmation number will be sent to the email .
1.0
New Users can create an account - "As a user, I want to be able to create a new account" _______________________________________________________________________________________________________________________________ ### > **Story Point** _______________________________________________________________________________________________________________________________ Story Points: 15 Explanation: The creation of an account is extremely important it gives the users a personal experience on the website. The user needs an account to be able to purchase products . The main goal of the website is selling and buying so the creation of an account to be able to buy items is extremely important. ______________________________________________________________________________________________________________________________ ### > **Tasks Breakdown** ____________________________________________________________________________________________________________________________________ - [x] When the user arrives at the signup page to create their account, they will be presented with 4 fields of a form they must fill out along with a create account button. - [x] The first form requires you to fill out your full name. - [x] The second form asks you to fill in the email you wish to use to log in to your account. The email must be a valid account that you can access in case of a forgotten password or other notification. - [x] The third form to be filled out is the password you would like to choose for your account. The password is recommended to have at least 1 uppercase letter, 1 number, and 1 special character. The password must also be at least 8 characters long, but not longer than 20 characters. - [x] The final form to be filled out is the confirm password, which is just a retype of the password in the third form in order to confirm that you have correctly entered your password before committing to creating your account. - [x] Once all the forms have been filled out, the user may submit the form by pressing the Create Account button. - [x] If the user has improperly filled out any of the fields, that field will turn red and indicate what the user must do in order to proceed, such as entering a valid email or password. - [x] If all the forms have been filled out properly then the form will submit and the user will be directed to a confirmation page that displays the confirmation of the creation of the account. The new user's account will be entered into the database. The user will then be able to proceed to the Sign In page where they can sign in to their new account with the username and password they just signed up with. _______________________________________________________________________________________________________________________________ ## **> Acceptance Test** ________________________________________________________________________________________________________________________________ **Success:** The user enters the website He browses some of the product He decides that he wants an account to buy products He goes on the Sign Up page He provides the required information such as : his first name,last name, email address, his password, and password confirmation. The information are saved and secured . The user has an account he can use . **Failure:** The user enters the website He wants to register as a new user. He writes all his information He chooses a password. The password is his first name The user's account is endangered without him knowing. A malicious server enters his account and has access to his information and purchases. In another case , There is a mismatch between the two password . The email is invalid . In another case, The user tries to log in after registering However the user is still unable to access his profile The information were not saved during the creation of the account The user has no account He was unable to register and use his account to have a personalized experience and buy products . ____________________________________________________________________________________________________________________________________ ### > **Risks, Priority & Countermeasures.** ______________________________________________________________________________________________________________________________ **High Risk & HIgh priority:**The creation of an account is of high priority. A user needs an account to purchase products which is the main goal of our website. Moreover, it is of high risk an account has important information about the users . All of the user's information should be secured and protected against malicious attacks. **Countermeasures:** 1.The system will prompt the user to write a password until he writes a strong password . The strong password will be composed of a capital letter , a special character , 1 number and should have a length of 8 . 2.The system prompt the user to rewrite his password in the case of a mismatch In between the passwords . 3.The system prompt with a message explaining the situation to the user until he enter an existing email .A confirmation number will be sent to the email .
priority
new users can create an account as a user i want to be able to create a new account story point story points explanation the creation of an account is extremely important it gives the users a personal experience on the website the user needs an account to be able to purchase products the main goal of the website is selling and buying so the creation of an account to be able to buy items is extremely important tasks breakdown when the user arrives at the signup page to create their account they will be presented with fields of a form they must fill out along with a create account button the first form requires you to fill out your full name the second form asks you to fill in the email you wish to use to log in to your account the email must be a valid account that you can access in case of a forgotten password or other notification the third form to be filled out is the password you would like to choose for your account the password is recommended to have at least uppercase letter number and special character the password must also be at least characters long but not longer than characters the final form to be filled out is the confirm password which is just a retype of the password in the third form in order to confirm that you have correctly entered your password before committing to creating your account once all the forms have been filled out the user may submit the form by pressing the create account button if the user has improperly filled out any of the fields that field will turn red and indicate what the user must do in order to proceed such as entering a valid email or password if all the forms have been filled out properly then the form will submit and the user will be directed to a confirmation page that displays the confirmation of the creation of the account the new user s account will be entered into the database the user will then be able to proceed to the sign in page where they can sign in to their new account with the username and password they just signed up with acceptance test success the user enters the website he browses some of the product he decides that he wants an account to buy products he goes on the sign up page he provides the required information such as his first name last name email address his password and password confirmation the information are saved and secured the user has an account he can use failure the user enters the website he wants to register as a new user he writes all his information he chooses a password the password is his first name the user s account is endangered without him knowing a malicious server enters his account and has access to his information and purchases in another case there is a mismatch between the two password the email is invalid in another case the user tries to log in after registering however the user is still unable to access his profile the information were not saved during the creation of the account the user has no account he was unable to register and use his account to have a personalized experience and buy products risks priority countermeasures high risk high priority the creation of an account is of high priority a user needs an account to purchase products which is the main goal of our website moreover it is of high risk an account has important information about the users all of the user s information should be secured and protected against malicious attacks countermeasures the system will prompt the user to write a password until he writes a strong password the strong password will be composed of a capital letter a special character number and should have a length of the system prompt the user to rewrite his password in the case of a mismatch in between the passwords the system prompt with a message explaining the situation to the user until he enter an existing email a confirmation number will be sent to the email
1
83,649
3,638,096,589
IssuesEvent
2016-02-12 14:15:34
ReneFGJr/CentroIntegradoPesquisa
https://api.github.com/repos/ReneFGJr/CentroIntegradoPesquisa
closed
declaração de orientação de prof. com nomes trocados com os nomes de alunos
High Priority
Ao gerar a declaração de orientação do professor para IC 2015 os nomes de alunos/professor aparecem trocados na declaração. ![image](https://cloud.githubusercontent.com/assets/10881293/13008983/00a6ce64-d181-11e5-8cb6-a2969ac48a8e.png)
1.0
declaração de orientação de prof. com nomes trocados com os nomes de alunos - Ao gerar a declaração de orientação do professor para IC 2015 os nomes de alunos/professor aparecem trocados na declaração. ![image](https://cloud.githubusercontent.com/assets/10881293/13008983/00a6ce64-d181-11e5-8cb6-a2969ac48a8e.png)
priority
declaração de orientação de prof com nomes trocados com os nomes de alunos ao gerar a declaração de orientação do professor para ic os nomes de alunos professor aparecem trocados na declaração
1
245,611
7,888,537,649
IssuesEvent
2018-06-27 22:32:36
ipfs/ipfs-cluster
https://api.github.com/repos/ipfs/ipfs-cluster
closed
failure to see other peers
bug in progress needs feedback from submitter priority:high
- my local cluster node (rivendell) can connect to bootstrap node (celebdil). - i get it to show up in the remote's `celebdil> ipfs-cluster-ctl peers ls`, but it shows as: `QmS3f5ei1fyZatgGNFViKzGeEhrJGkgbStv8PMs7KtTPng | rivendell | Sees 0 other peers` (odd, shouldn't it see one? and it does correctly show its addresses, so connection is going through) - in turn, `rivendell> ipfs-cluster-ctl peers ls` just shows itself: ``` QmS3f5ei1fyZatgGNFViKzGeEhrJGkgbStv8PMs7KtTPng | rivendell | Sees 0 other peers ``` - so there's some connectivity problem here. - pins dont work across them.
1.0
failure to see other peers - - my local cluster node (rivendell) can connect to bootstrap node (celebdil). - i get it to show up in the remote's `celebdil> ipfs-cluster-ctl peers ls`, but it shows as: `QmS3f5ei1fyZatgGNFViKzGeEhrJGkgbStv8PMs7KtTPng | rivendell | Sees 0 other peers` (odd, shouldn't it see one? and it does correctly show its addresses, so connection is going through) - in turn, `rivendell> ipfs-cluster-ctl peers ls` just shows itself: ``` QmS3f5ei1fyZatgGNFViKzGeEhrJGkgbStv8PMs7KtTPng | rivendell | Sees 0 other peers ``` - so there's some connectivity problem here. - pins dont work across them.
priority
failure to see other peers my local cluster node rivendell can connect to bootstrap node celebdil i get it to show up in the remote s celebdil ipfs cluster ctl peers ls but it shows as rivendell sees other peers odd shouldn t it see one and it does correctly show its addresses so connection is going through in turn rivendell ipfs cluster ctl peers ls just shows itself rivendell sees other peers so there s some connectivity problem here pins dont work across them
1
757,249
26,502,407,816
IssuesEvent
2023-01-18 11:17:24
gamefreedomgit/Maelstrom
https://api.github.com/repos/gamefreedomgit/Maelstrom
opened
[Quest][Cata][Npc] The Hammer of Twilight + Skullcrusher the Mountain
NPC Quest - Cataclysm (80+) Quest - Event Animation Priority: Critical Status: Confirmed Twilight Highlands
**How to reproduce:** 1. Quest simply is not doable, quest objective is missing and npc that offers the quest for horde side is at wrong location and for alliance side its missing 2. Quest Skullcrusher the Mountain simply is not scripted and not working at all, there is no event nothing is happening **How it should work:** more details in these videos. [The Hammer of Twilight](https://www.youtube.com/watch?v=DKN07lJ_D6Y) [Skullcrusher the Mountain](https://www.youtube.com/watch?v=jVlzM6s6n3Y) **Database links:** [The Hammer of Twilight](https://cata-twinhead.twinstar.cz/?search=The+Hammer+of+Twilight#quests) [Skullcrusher the Mountain](https://cata-twinhead.twinstar.cz/?search=Skullcrusher+the+Mountain#quests)
1.0
[Quest][Cata][Npc] The Hammer of Twilight + Skullcrusher the Mountain - **How to reproduce:** 1. Quest simply is not doable, quest objective is missing and npc that offers the quest for horde side is at wrong location and for alliance side its missing 2. Quest Skullcrusher the Mountain simply is not scripted and not working at all, there is no event nothing is happening **How it should work:** more details in these videos. [The Hammer of Twilight](https://www.youtube.com/watch?v=DKN07lJ_D6Y) [Skullcrusher the Mountain](https://www.youtube.com/watch?v=jVlzM6s6n3Y) **Database links:** [The Hammer of Twilight](https://cata-twinhead.twinstar.cz/?search=The+Hammer+of+Twilight#quests) [Skullcrusher the Mountain](https://cata-twinhead.twinstar.cz/?search=Skullcrusher+the+Mountain#quests)
priority
the hammer of twilight skullcrusher the mountain how to reproduce quest simply is not doable quest objective is missing and npc that offers the quest for horde side is at wrong location and for alliance side its missing quest skullcrusher the mountain simply is not scripted and not working at all there is no event nothing is happening how it should work more details in these videos database links
1