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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
607,582 | 18,786,277,528 | IssuesEvent | 2021-11-08 12:29:38 | jiy00nn/deu_car | https://api.github.com/repos/jiy00nn/deu_car | closed | SFR#401 ์ฌ๋ฌผ ์ธ์ ๊ธฐ๋ฅ ์ถ๊ฐ | enhancement Priority: High | ## SFR-400 ์ฌ๋ฌผ ์๋ณ ##
- ์๊ตฌ์ฌํญ ID : SFR-401
- ์ ๋ชฉ : ์ฐจ๋จ๋ฐ, ์ฅ์ ๋ฌผ, ์ ํธ๋ฑ์ ์ธ์ํ ์ ์๋ค.
- ์ค๋ช
: ์ฃผํ ๋ก๋ด์ผ๋ก์ ์ฐจ๋จ๋ฐ, ์ฅ์ ๋ฌผ, ์ ํธ๋ฑ๊ณผ ๊ฐ์ ์ค๋ธ์ ํธ ์ธ์ ๊ธฐ๋ฅ์ด ํ์ํ๋ค. ์๋ํ๋ฉด ์ค๋ธ์ ํธ ์ธ์์ ํ์ฌ ์ํฉ์ ๋ง๋ ํ๋์ ์ทจํ์ฌ์ผ ํ๊ธฐ ๋๋ฌธ์ด๋ค.
- ์ถ์ ์น (์์ ์์ ๊ธฐ๊ฐ) : 3์ผ | 1.0 | SFR#401 ์ฌ๋ฌผ ์ธ์ ๊ธฐ๋ฅ ์ถ๊ฐ - ## SFR-400 ์ฌ๋ฌผ ์๋ณ ##
- ์๊ตฌ์ฌํญ ID : SFR-401
- ์ ๋ชฉ : ์ฐจ๋จ๋ฐ, ์ฅ์ ๋ฌผ, ์ ํธ๋ฑ์ ์ธ์ํ ์ ์๋ค.
- ์ค๋ช
: ์ฃผํ ๋ก๋ด์ผ๋ก์ ์ฐจ๋จ๋ฐ, ์ฅ์ ๋ฌผ, ์ ํธ๋ฑ๊ณผ ๊ฐ์ ์ค๋ธ์ ํธ ์ธ์ ๊ธฐ๋ฅ์ด ํ์ํ๋ค. ์๋ํ๋ฉด ์ค๋ธ์ ํธ ์ธ์์ ํ์ฌ ์ํฉ์ ๋ง๋ ํ๋์ ์ทจํ์ฌ์ผ ํ๊ธฐ ๋๋ฌธ์ด๋ค.
- ์ถ์ ์น (์์ ์์ ๊ธฐ๊ฐ) : 3์ผ | priority | sfr ์ฌ๋ฌผ ์ธ์ ๊ธฐ๋ฅ ์ถ๊ฐ sfr ์ฌ๋ฌผ ์๋ณ ์๊ตฌ์ฌํญ id sfr ์ ๋ชฉ ์ฐจ๋จ๋ฐ ์ฅ์ ๋ฌผ ์ ํธ๋ฑ์ ์ธ์ํ ์ ์๋ค ์ค๋ช
์ฃผํ ๋ก๋ด์ผ๋ก์ ์ฐจ๋จ๋ฐ ์ฅ์ ๋ฌผ ์ ํธ๋ฑ๊ณผ ๊ฐ์ ์ค๋ธ์ ํธ ์ธ์ ๊ธฐ๋ฅ์ด ํ์ํ๋ค ์๋ํ๋ฉด ์ค๋ธ์ ํธ ์ธ์์ ํ์ฌ ์ํฉ์ ๋ง๋ ํ๋์ ์ทจํ์ฌ์ผ ํ๊ธฐ ๋๋ฌธ์ด๋ค ์ถ์ ์น ์์ ์์ ๊ธฐ๊ฐ | 1 |
388,457 | 11,487,931,987 | IssuesEvent | 2020-02-11 12:59:25 | DigitalCampus/django-oppia | https://api.github.com/repos/DigitalCampus/django-oppia | closed | Refactor way quiz JSON object handles languages | enhancement high priority refectoring/review | At the moment the quiz JSON looks like:
"description": {
"en": "Pre-test"
}
but a better approach might be:
"description": [{
"language": "en",
"i18n_description": "Pre-test"
},
{
"language": "es",
"i18n_description": "Pre-examen"
}
]
This will need to be carefully thought through since it will affect all 3 Oppia components (moodle block, server and app) and decision will need to be made if we want to try to make all these backwards compatible too (my thought is that backwards compatibility might be too complicated).
In refactoring this it will make validation of the quiz JSON easier and is much more inline with good practice/structure | 1.0 | Refactor way quiz JSON object handles languages - At the moment the quiz JSON looks like:
"description": {
"en": "Pre-test"
}
but a better approach might be:
"description": [{
"language": "en",
"i18n_description": "Pre-test"
},
{
"language": "es",
"i18n_description": "Pre-examen"
}
]
This will need to be carefully thought through since it will affect all 3 Oppia components (moodle block, server and app) and decision will need to be made if we want to try to make all these backwards compatible too (my thought is that backwards compatibility might be too complicated).
In refactoring this it will make validation of the quiz JSON easier and is much more inline with good practice/structure | priority | refactor way quiz json object handles languages at the moment the quiz json looks like description en pre test but a better approach might be description language en description pre test language es description pre examen this will need to be carefully thought through since it will affect all oppia components moodle block server and app and decision will need to be made if we want to try to make all these backwards compatible too my thought is that backwards compatibility might be too complicated in refactoring this it will make validation of the quiz json easier and is much more inline with good practice structure | 1 |
818,312 | 30,683,277,120 | IssuesEvent | 2023-07-26 10:33:46 | TEAM-cafe-in/cafe-in-be | https://api.github.com/repos/TEAM-cafe-in/cafe-in-be | closed | feat: ๋ฉ์ธ ํ์ด์ง๋ฅผ ์กฐํํ๋ api๋ฅผ ์์ฑํ๋ค | ๐ฅHigh priority | ### As-is
---
- ๋ฉ์ธ ํ์ด์ง ๊ด๋ จ api๊ฐ ์์ต๋๋ค
### To-be
---
- [x] ์นดํ ์์ ๋ฐ์ดํฐ๋ฅผ DB์ ์ ์ฅํ๊ธฐ
- [x] ์ง์ญ enum ์์ฑ
| 1.0 | feat: ๋ฉ์ธ ํ์ด์ง๋ฅผ ์กฐํํ๋ api๋ฅผ ์์ฑํ๋ค - ### As-is
---
- ๋ฉ์ธ ํ์ด์ง ๊ด๋ จ api๊ฐ ์์ต๋๋ค
### To-be
---
- [x] ์นดํ ์์ ๋ฐ์ดํฐ๋ฅผ DB์ ์ ์ฅํ๊ธฐ
- [x] ์ง์ญ enum ์์ฑ
| priority | feat ๋ฉ์ธ ํ์ด์ง๋ฅผ ์กฐํํ๋ api๋ฅผ ์์ฑํ๋ค as is ๋ฉ์ธ ํ์ด์ง ๊ด๋ จ api๊ฐ ์์ต๋๋ค to be ์นดํ ์์ ๋ฐ์ดํฐ๋ฅผ db์ ์ ์ฅํ๊ธฐ ์ง์ญ enum ์์ฑ | 1 |
98,074 | 4,016,482,627 | IssuesEvent | 2016-05-15 16:39:20 | raml-org/raml-js-parser-2 | https://api.github.com/repos/raml-org/raml-js-parser-2 | closed | parser does not complain when using string as a value for securedBy | bug priority:high raml-0.8 | According to the RAML 0.8 spec
> The value of the securedBy attribute MUST be a list of any of the security schemes defined in the securitySchemes declaration.
Using the following example:
```yaml
#%RAML 0.8
title: djkgdg
securitySchemes:
- test:
type: Basic Authentication
/protected:
securedBy: test
```
The parser does not complain! | 1.0 | parser does not complain when using string as a value for securedBy - According to the RAML 0.8 spec
> The value of the securedBy attribute MUST be a list of any of the security schemes defined in the securitySchemes declaration.
Using the following example:
```yaml
#%RAML 0.8
title: djkgdg
securitySchemes:
- test:
type: Basic Authentication
/protected:
securedBy: test
```
The parser does not complain! | priority | parser does not complain when using string as a value for securedby according to the raml spec the value of the securedby attribute must be a list of any of the security schemes defined in the securityschemes declaration using the following example yaml raml title djkgdg securityschemes test type basic authentication protected securedby test the parser does not complain | 1 |
81,661 | 3,593,270,221 | IssuesEvent | 2016-02-01 19:05:32 | juju/docs | https://api.github.com/repos/juju/docs | closed | Update needed: GCE provider | high priority in progress please backport | Copied from: https://github.com/CanonicalLtd/jujucharms.com/issues/185 per @loslosbaby
This page: https://jujucharms.com/docs/stable/config-gce
...is great, but there are issues:
- the screen captures are out of date
- the JSON for the OAuth has tags that have to be deleted before juju bootstrap will work
juju bootstrap fails with:
Bootstrap failed, cleaning up the environment.
ERROR there was an issue examining the environment: invalid config: key "auth_uri" not supported
The tags that have to be deleted are:
- auth_uri
- token_uri
- auth_provider_x509_cert_url
- client_x509_cert_url
Alternately, juju can be modified to ignore the tags. I'll let you decide if a bug needs to be filed. | 1.0 | Update needed: GCE provider - Copied from: https://github.com/CanonicalLtd/jujucharms.com/issues/185 per @loslosbaby
This page: https://jujucharms.com/docs/stable/config-gce
...is great, but there are issues:
- the screen captures are out of date
- the JSON for the OAuth has tags that have to be deleted before juju bootstrap will work
juju bootstrap fails with:
Bootstrap failed, cleaning up the environment.
ERROR there was an issue examining the environment: invalid config: key "auth_uri" not supported
The tags that have to be deleted are:
- auth_uri
- token_uri
- auth_provider_x509_cert_url
- client_x509_cert_url
Alternately, juju can be modified to ignore the tags. I'll let you decide if a bug needs to be filed. | priority | update needed gce provider copied from per loslosbaby this page is great but there are issues the screen captures are out of date the json for the oauth has tags that have to be deleted before juju bootstrap will work juju bootstrap fails with bootstrap failed cleaning up the environment error there was an issue examining the environment invalid config key auth uri not supported the tags that have to be deleted are auth uri token uri auth provider cert url client cert url alternately juju can be modified to ignore the tags i ll let you decide if a bug needs to be filed | 1 |
346,516 | 10,416,140,261 | IssuesEvent | 2019-09-14 10:48:37 | repobee/repobee | https://api.github.com/repos/repobee/repobee | closed | GitLab support | feature high priority plugin | From my initial probing, supporting GitLab Community Edition (which should translate to GitLab support in general, I think) without changing the core workflow of RepoBee seems totally viable. Here's a mapping of the relevant concepts.
Repository -> Project
Organization -> Group
Team (as in access control team) -> Subgroup
Issue -> Issue (look, same name!)
In theory, supporting GitLab should be as simple as replacing API calls. It may be relevant to implement the API as a plugin, and also pluginize the GitHub API. That would require a more or less complete re-write of the API-related tests, but that's something I've been meaning to do anyway. | 1.0 | GitLab support - From my initial probing, supporting GitLab Community Edition (which should translate to GitLab support in general, I think) without changing the core workflow of RepoBee seems totally viable. Here's a mapping of the relevant concepts.
Repository -> Project
Organization -> Group
Team (as in access control team) -> Subgroup
Issue -> Issue (look, same name!)
In theory, supporting GitLab should be as simple as replacing API calls. It may be relevant to implement the API as a plugin, and also pluginize the GitHub API. That would require a more or less complete re-write of the API-related tests, but that's something I've been meaning to do anyway. | priority | gitlab support from my initial probing supporting gitlab community edition which should translate to gitlab support in general i think without changing the core workflow of repobee seems totally viable here s a mapping of the relevant concepts repository project organization group team as in access control team subgroup issue issue look same name in theory supporting gitlab should be as simple as replacing api calls it may be relevant to implement the api as a plugin and also pluginize the github api that would require a more or less complete re write of the api related tests but that s something i ve been meaning to do anyway | 1 |
431,554 | 12,481,258,011 | IssuesEvent | 2020-05-29 22:06:21 | boy0001/FastAsyncWorldedit | https://api.github.com/repos/boy0001/FastAsyncWorldedit | closed | Cannot transfer an armor-stand from Minecraft 1.12 to Minecraft 1.13 | 1.13.X [โผ] high priority | # Bug report
<!--- Follow this template if reporting an issue. -->
<!--- Remove this template if making a suggestion or asking a question. -->
<!--- Please comment or react to an existing ticket if it exists -->
**Debug paste link**: https://hastebin.com/epogejikuj
<!--- Enter /fawe debugpaste in game or in your console and copy the output here -->
**Description of the problem:**
<!--- Include relevant info like errors or a picture of the problem -->
Schematics from Minecraft 1.12 (in .schematic not .nbt format) with a modified armor-stand can be loaded (//schem load armorstand) but not pasted (//paste) on Minecraft 1.13
I get this error:
```
[12:21:03 WARN]: net.minecraft.server.v1_13_R1.ReportedException: Loading entity NBT
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.Entity.f(Entity.java:1758)
[12:21:03 WARN]: at com.boydti.fawe.bukkit.adapter.Spigot_v1_13_R1.readTagIntoEntity(Spigot_v1_13_R1.java:184)
[12:21:03 WARN]: at com.boydti.fawe.bukkit.adapter.Spigot_v1_13_R1.createEntity(Spigot_v1_13_R1.java:305)
[12:21:03 WARN]: at com.boydti.fawe.bukkit.v0.BukkitChunk_All.call(BukkitChunk_All.java:147)
[12:21:03 WARN]: at com.boydti.fawe.example.DefaultFaweQueueMap.next(DefaultFaweQueueMap.java:138)
[12:21:03 WARN]: at com.boydti.fawe.example.MappedFaweQueue.next(MappedFaweQueue.java:213)
[12:21:03 WARN]: at com.boydti.fawe.util.SetQueue$1.run(SetQueue.java:165)
[12:21:03 WARN]: at org.bukkit.craftbukkit.v1_13_R1.scheduler.CraftTask.run(CraftTask.java:76)
[12:21:03 WARN]: at org.bukkit.craftbukkit.v1_13_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:361)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.MinecraftServer.w(MinecraftServer.java:877)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.DedicatedServer.w(DedicatedServer.java:411)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.MinecraftServer.v(MinecraftServer.java:819)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.MinecraftServer.run(MinecraftServer.java:717)
[12:21:03 WARN]: at java.lang.Thread.run(Thread.java:748)
[12:21:03 WARN]: Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $
[12:21:03 WARN]: at com.google.gson.internal.Streams.parse(Streams.java:60)
[12:21:03 WARN]: at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:65)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.ChatDeserializer.a(SourceFile:493)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.ChatDeserializer.a(SourceFile:518)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.IChatBaseComponent$ChatSerializer.a(SourceFile:286)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.Entity.f(Entity.java:1678)
[12:21:03 WARN]: ... 13 more
[12:21:03 WARN]: Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1559)
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1401)
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:593)
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.peek(JsonReader.java:425)
[12:21:03 WARN]: at com.google.gson.internal.Streams.parse(Streams.java:46)
[12:21:03 WARN]: ... 18 more
```
**How to replicate**:
<!--- If you can reproduce the issue please tell us as detailed as possible step by step how to do that -->
Create a schematic from Minecraft 1.12 with a special armor-stand or download this: http://www.mediafire.com/file/0z0hq8yc4h72t9x/armorstand.schematic/file
Load and paste the schematic to Minecraft 1.13 (//schem load <name/armorstand> //paste)
**Checklist**:
<!--- Make sure you've completed the following steps (put an "X" between of brackets): -->
- [x] I included a `/fawe debugpaste` link
- [x] I made sure there aren't duplicates of this report [(Use Search)](https://github.com/boy0001/FastAsyncWorldedit/issues?utf8=%E2%9C%93&q=is%3Aissue)
- [x] I made sure I am using an up-to-date version of FAWE
- [x] I Made sure the bug/error is not caused by any other plugin | 1.0 | Cannot transfer an armor-stand from Minecraft 1.12 to Minecraft 1.13 - # Bug report
<!--- Follow this template if reporting an issue. -->
<!--- Remove this template if making a suggestion or asking a question. -->
<!--- Please comment or react to an existing ticket if it exists -->
**Debug paste link**: https://hastebin.com/epogejikuj
<!--- Enter /fawe debugpaste in game or in your console and copy the output here -->
**Description of the problem:**
<!--- Include relevant info like errors or a picture of the problem -->
Schematics from Minecraft 1.12 (in .schematic not .nbt format) with a modified armor-stand can be loaded (//schem load armorstand) but not pasted (//paste) on Minecraft 1.13
I get this error:
```
[12:21:03 WARN]: net.minecraft.server.v1_13_R1.ReportedException: Loading entity NBT
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.Entity.f(Entity.java:1758)
[12:21:03 WARN]: at com.boydti.fawe.bukkit.adapter.Spigot_v1_13_R1.readTagIntoEntity(Spigot_v1_13_R1.java:184)
[12:21:03 WARN]: at com.boydti.fawe.bukkit.adapter.Spigot_v1_13_R1.createEntity(Spigot_v1_13_R1.java:305)
[12:21:03 WARN]: at com.boydti.fawe.bukkit.v0.BukkitChunk_All.call(BukkitChunk_All.java:147)
[12:21:03 WARN]: at com.boydti.fawe.example.DefaultFaweQueueMap.next(DefaultFaweQueueMap.java:138)
[12:21:03 WARN]: at com.boydti.fawe.example.MappedFaweQueue.next(MappedFaweQueue.java:213)
[12:21:03 WARN]: at com.boydti.fawe.util.SetQueue$1.run(SetQueue.java:165)
[12:21:03 WARN]: at org.bukkit.craftbukkit.v1_13_R1.scheduler.CraftTask.run(CraftTask.java:76)
[12:21:03 WARN]: at org.bukkit.craftbukkit.v1_13_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:361)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.MinecraftServer.w(MinecraftServer.java:877)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.DedicatedServer.w(DedicatedServer.java:411)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.MinecraftServer.v(MinecraftServer.java:819)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.MinecraftServer.run(MinecraftServer.java:717)
[12:21:03 WARN]: at java.lang.Thread.run(Thread.java:748)
[12:21:03 WARN]: Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $
[12:21:03 WARN]: at com.google.gson.internal.Streams.parse(Streams.java:60)
[12:21:03 WARN]: at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:65)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.ChatDeserializer.a(SourceFile:493)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.ChatDeserializer.a(SourceFile:518)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.IChatBaseComponent$ChatSerializer.a(SourceFile:286)
[12:21:03 WARN]: at net.minecraft.server.v1_13_R1.Entity.f(Entity.java:1678)
[12:21:03 WARN]: ... 13 more
[12:21:03 WARN]: Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1559)
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1401)
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:593)
[12:21:03 WARN]: at com.google.gson.stream.JsonReader.peek(JsonReader.java:425)
[12:21:03 WARN]: at com.google.gson.internal.Streams.parse(Streams.java:46)
[12:21:03 WARN]: ... 18 more
```
**How to replicate**:
<!--- If you can reproduce the issue please tell us as detailed as possible step by step how to do that -->
Create a schematic from Minecraft 1.12 with a special armor-stand or download this: http://www.mediafire.com/file/0z0hq8yc4h72t9x/armorstand.schematic/file
Load and paste the schematic to Minecraft 1.13 (//schem load <name/armorstand> //paste)
**Checklist**:
<!--- Make sure you've completed the following steps (put an "X" between of brackets): -->
- [x] I included a `/fawe debugpaste` link
- [x] I made sure there aren't duplicates of this report [(Use Search)](https://github.com/boy0001/FastAsyncWorldedit/issues?utf8=%E2%9C%93&q=is%3Aissue)
- [x] I made sure I am using an up-to-date version of FAWE
- [x] I Made sure the bug/error is not caused by any other plugin | priority | cannot transfer an armor stand from minecraft to minecraft bug report debug paste link description of the problem schematics from minecraft in schematic not nbt format with a modified armor stand can be loaded schem load armorstand but not pasted paste on minecraft i get this error net minecraft server reportedexception loading entity nbt at net minecraft server entity f entity java at com boydti fawe bukkit adapter spigot readtagintoentity spigot java at com boydti fawe bukkit adapter spigot createentity spigot java at com boydti fawe bukkit bukkitchunk all call bukkitchunk all java at com boydti fawe example defaultfawequeuemap next defaultfawequeuemap java at com boydti fawe example mappedfawequeue next mappedfawequeue java at com boydti fawe util setqueue run setqueue java at org bukkit craftbukkit scheduler crafttask run crafttask java at org bukkit craftbukkit scheduler craftscheduler mainthreadheartbeat craftscheduler java at net minecraft server minecraftserver w minecraftserver java at net minecraft server dedicatedserver w dedicatedserver java at net minecraft server minecraftserver v minecraftserver java at net minecraft server minecraftserver run minecraftserver java at java lang thread run thread java caused by com google gson jsonsyntaxexception com google gson stream malformedjsonexception use jsonreader setlenient true to accept malformed json at line column path at com google gson internal streams parse streams java at com google gson internal bind treetypeadapter read treetypeadapter java at net minecraft server chatdeserializer a sourcefile at net minecraft server chatdeserializer a sourcefile at net minecraft server ichatbasecomponent chatserializer a sourcefile at net minecraft server entity f entity java more caused by com google gson stream malformedjsonexception use jsonreader setlenient true to accept malformed json at line column path at com google gson stream jsonreader syntaxerror jsonreader java at com google gson stream jsonreader checklenient jsonreader java at com google gson stream jsonreader dopeek jsonreader java at com google gson stream jsonreader peek jsonreader java at com google gson internal streams parse streams java more how to replicate create a schematic from minecraft with a special armor stand or download this load and paste the schematic to minecraft schem load paste checklist i included a fawe debugpaste link i made sure there aren t duplicates of this report i made sure i am using an up to date version of fawe i made sure the bug error is not caused by any other plugin | 1 |
596,208 | 18,100,113,510 | IssuesEvent | 2021-09-22 13:25:45 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | closed | galera-autofix: Race condition kills cluster when autofix kicks in during a restore | Type: Bug Priority: High | **Describe the bug**
If galera-autofix kicks in while the cluster is performing an SST, it kills the current primary mysqld process to elect it in --force-new-cluster but the other nodes may not be killed to trash the state which results in the --force-new-cluster node to attempt to connect to the existing cluster that was created prior to it being restarted
**To Reproduce**
1. Stop cluster in order: 3, 2, 1
2. Start node 1 (minute:0)
4. Start node 2 and 3 at minute 8
5. Node 1, 2 and 3 are creating their cluster without the help of galera-autofix at minute 9
6. Galera autofix kicks in at minute 10
7. Galera autofix determines node 1 has the lastest data and kills mysqld and starts it in force-new-cluster
8. Nodes 2 and 3 haven't been killed yet because they didn't reach minute 10 so they stay alive and broadcast the old state of the cluster so the cluster becomes partitioned
9. Node 1 starts up but stays in NON-PRMARY which means the DB is started but is not healthy so its unable to sync its state to the rest of the cluster
10. On top of the DB being unhealthy the seqno reporting gets broken on node 1 because it doesn't read the live seqno which means the DB is stuck broken forever until a manual intervention is made
| 1.0 | galera-autofix: Race condition kills cluster when autofix kicks in during a restore - **Describe the bug**
If galera-autofix kicks in while the cluster is performing an SST, it kills the current primary mysqld process to elect it in --force-new-cluster but the other nodes may not be killed to trash the state which results in the --force-new-cluster node to attempt to connect to the existing cluster that was created prior to it being restarted
**To Reproduce**
1. Stop cluster in order: 3, 2, 1
2. Start node 1 (minute:0)
4. Start node 2 and 3 at minute 8
5. Node 1, 2 and 3 are creating their cluster without the help of galera-autofix at minute 9
6. Galera autofix kicks in at minute 10
7. Galera autofix determines node 1 has the lastest data and kills mysqld and starts it in force-new-cluster
8. Nodes 2 and 3 haven't been killed yet because they didn't reach minute 10 so they stay alive and broadcast the old state of the cluster so the cluster becomes partitioned
9. Node 1 starts up but stays in NON-PRMARY which means the DB is started but is not healthy so its unable to sync its state to the rest of the cluster
10. On top of the DB being unhealthy the seqno reporting gets broken on node 1 because it doesn't read the live seqno which means the DB is stuck broken forever until a manual intervention is made
| priority | galera autofix race condition kills cluster when autofix kicks in during a restore describe the bug if galera autofix kicks in while the cluster is performing an sst it kills the current primary mysqld process to elect it in force new cluster but the other nodes may not be killed to trash the state which results in the force new cluster node to attempt to connect to the existing cluster that was created prior to it being restarted to reproduce stop cluster in order start node minute start node and at minute node and are creating their cluster without the help of galera autofix at minute galera autofix kicks in at minute galera autofix determines node has the lastest data and kills mysqld and starts it in force new cluster nodes and haven t been killed yet because they didn t reach minute so they stay alive and broadcast the old state of the cluster so the cluster becomes partitioned node starts up but stays in non prmary which means the db is started but is not healthy so its unable to sync its state to the rest of the cluster on top of the db being unhealthy the seqno reporting gets broken on node because it doesn t read the live seqno which means the db is stuck broken forever until a manual intervention is made | 1 |
45,746 | 2,939,072,409 | IssuesEvent | 2015-07-01 14:33:23 | chrisblakley/Nebula | https://api.github.com/repos/chrisblakley/Nebula | opened | Initial automation is not working | Backend (Server) Bug High Priority | None of the settings or pages are being edited/created. Look into this asap! | 1.0 | Initial automation is not working - None of the settings or pages are being edited/created. Look into this asap! | priority | initial automation is not working none of the settings or pages are being edited created look into this asap | 1 |
469,617 | 13,522,091,488 | IssuesEvent | 2020-09-15 08:02:50 | AaronMorgado/COVID-Tracking | https://api.github.com/repos/AaronMorgado/COVID-Tracking | opened | Implement Information Security | Category: Must Have Priority: High | User Story:
As a developer, I want to implement information security measures to ensure that user's data is not at risk by using this app.
Demo Criteria:
The security of the app will be tested and must be found to have minimal risks of security vulnerabilities. | 1.0 | Implement Information Security - User Story:
As a developer, I want to implement information security measures to ensure that user's data is not at risk by using this app.
Demo Criteria:
The security of the app will be tested and must be found to have minimal risks of security vulnerabilities. | priority | implement information security user story as a developer i want to implement information security measures to ensure that user s data is not at risk by using this app demo criteria the security of the app will be tested and must be found to have minimal risks of security vulnerabilities | 1 |
286,189 | 8,784,907,601 | IssuesEvent | 2018-12-20 11:15:23 | kubeapps/kubeapps | https://api.github.com/repos/kubeapps/kubeapps | closed | Custom CA support for Tiller and AppRepository controller | component/dashboard component/helm kind/feature priority/high size/M | Hy,
I deploy a chartmuseum helm repository with https and self-signed certificate.
Does it be possible to add ca on kubeapps ?
best regards | 1.0 | Custom CA support for Tiller and AppRepository controller - Hy,
I deploy a chartmuseum helm repository with https and self-signed certificate.
Does it be possible to add ca on kubeapps ?
best regards | priority | custom ca support for tiller and apprepository controller hy i deploy a chartmuseum helm repository with https and self signed certificate does it be possible to add ca on kubeapps best regards | 1 |
827,525 | 31,777,508,293 | IssuesEvent | 2023-09-12 15:13:34 | lucia2007/bookwormkid | https://api.github.com/repos/lucia2007/bookwormkid | closed | User Story - Home Page | Must Have High Priority US Points 3 EPIC - VIEWING AND NAVIGATION USER STORY | As a **user** I can *access the application's home page** so that I can **understand the app's purpose and structure**.
### Acceptance Criteria
1. When the website loads, the user can see the home page.
2. Home page navigation, hero picture and footer are in the correct place.
### Tasks
- [x] Create base.html
- [x] Create index.html and connect it to base.html
- [x] Create header.html
- [x] Create footer.html
- [x] Create mobile navbar html
- [x] Create main page navbar html
- [x] Add favicon | 1.0 | User Story - Home Page - As a **user** I can *access the application's home page** so that I can **understand the app's purpose and structure**.
### Acceptance Criteria
1. When the website loads, the user can see the home page.
2. Home page navigation, hero picture and footer are in the correct place.
### Tasks
- [x] Create base.html
- [x] Create index.html and connect it to base.html
- [x] Create header.html
- [x] Create footer.html
- [x] Create mobile navbar html
- [x] Create main page navbar html
- [x] Add favicon | priority | user story home page as a user i can access the application s home page so that i can understand the app s purpose and structure acceptance criteria when the website loads the user can see the home page home page navigation hero picture and footer are in the correct place tasks create base html create index html and connect it to base html create header html create footer html create mobile navbar html create main page navbar html add favicon | 1 |
606,598 | 18,765,730,341 | IssuesEvent | 2021-11-05 23:39:48 | piotrkantorowicz/Budgetter | https://api.github.com/repos/piotrkantorowicz/Budgetter | closed | Finance operation must be in range of budget plan | bug priority:high status:to-do | System allows add new finance operation -expense/income with occurred date out of plan duration.
These object can not be add into targets, so it's not have sense to still allow this.
| 1.0 | Finance operation must be in range of budget plan - System allows add new finance operation -expense/income with occurred date out of plan duration.
These object can not be add into targets, so it's not have sense to still allow this.
| priority | finance operation must be in range of budget plan system allows add new finance operation expense income with occurred date out of plan duration these object can not be add into targets so it s not have sense to still allow this | 1 |
600,994 | 18,363,196,173 | IssuesEvent | 2021-10-09 15:41:35 | DanielKirkwood/pycode | https://api.github.com/repos/DanielKirkwood/pycode | opened | Component: code editor | Priority: High Type: Enhancement | Create a code editor component that allows users to write python code. The component must render the users input with syntax highlighting for python. | 1.0 | Component: code editor - Create a code editor component that allows users to write python code. The component must render the users input with syntax highlighting for python. | priority | component code editor create a code editor component that allows users to write python code the component must render the users input with syntax highlighting for python | 1 |
666,467 | 22,356,937,419 | IssuesEvent | 2022-06-15 16:27:43 | why-science/demo | https://api.github.com/repos/why-science/demo | opened | Update colors for module steps | high priority | Use the colors already on the system
1. Steps 1 - 8 (Red)
2. Steps 9 - 16 (Purple/Violet)
3. Steps 17 - 24 (Green)
4. Step 25: Red
| 1.0 | Update colors for module steps - Use the colors already on the system
1. Steps 1 - 8 (Red)
2. Steps 9 - 16 (Purple/Violet)
3. Steps 17 - 24 (Green)
4. Step 25: Red
| priority | update colors for module steps use the colors already on the system steps red steps purple violet steps green step red | 1 |
197,519 | 6,960,344,320 | IssuesEvent | 2017-12-08 02:51:33 | intel-analytics/BigDL | https://api.github.com/repos/intel-analytics/BigDL | closed | Support python3.6 | high priority python | Currently we only test against python2.5 and python3.5.
1. Refactor code to support python3.6
2. Add python3.6 into jenkins test.
| 1.0 | Support python3.6 - Currently we only test against python2.5 and python3.5.
1. Refactor code to support python3.6
2. Add python3.6 into jenkins test.
| priority | support currently we only test against and refactor code to support add into jenkins test | 1 |
209,643 | 7,178,132,458 | IssuesEvent | 2018-01-31 15:40:49 | KrzysztofSzewczyk/MEdit | https://api.github.com/repos/KrzysztofSzewczyk/MEdit | closed | Try to optimize memory usage | Complexity: High Enhancement Help wanted Priority: High | After code cleanup do refactor so you can safely use -Xmx param; your app uses about 900MB of RAM, it is a little bit too much comparing to bigger NetBeans which after some hours of work needs about 1.3GB of RAM. | 1.0 | Try to optimize memory usage - After code cleanup do refactor so you can safely use -Xmx param; your app uses about 900MB of RAM, it is a little bit too much comparing to bigger NetBeans which after some hours of work needs about 1.3GB of RAM. | priority | try to optimize memory usage after code cleanup do refactor so you can safely use xmx param your app uses about of ram it is a little bit too much comparing to bigger netbeans which after some hours of work needs about of ram | 1 |
395,644 | 11,694,292,494 | IssuesEvent | 2020-03-06 03:30:38 | ppy/osu-web | https://api.github.com/repos/ppy/osu-web | closed | BBCode [audio] sources aren't proxied | high priority | are they supposed to be? seems weird that img does this but audio doesn't | 1.0 | BBCode [audio] sources aren't proxied - are they supposed to be? seems weird that img does this but audio doesn't | priority | bbcode sources aren t proxied are they supposed to be seems weird that img does this but audio doesn t | 1 |
627,794 | 19,914,719,136 | IssuesEvent | 2022-01-25 21:08:19 | meanmedianmoge/zoia_lib | https://api.github.com/repos/meanmedianmoge/zoia_lib | opened | No "internet connection" at startup | bug high priority | hi, thanks for designing this app. I am running Mac 12.1 Monterey. I was running the Zoia Librarian app for the first time last night with no issues. this morning I tried to use it again, and ever since I have gotten the error message "failed to retrieve patches from Patchstorage. Please check your internet connection." my Internet connection is fine, so I'm not sure if I'm doing something wrong or not. I tried updating my Mac OS after it stopped working but that didn't help either. thanks for your help.
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. macOS]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
| 1.0 | No "internet connection" at startup - hi, thanks for designing this app. I am running Mac 12.1 Monterey. I was running the Zoia Librarian app for the first time last night with no issues. this morning I tried to use it again, and ever since I have gotten the error message "failed to retrieve patches from Patchstorage. Please check your internet connection." my Internet connection is fine, so I'm not sure if I'm doing something wrong or not. I tried updating my Mac OS after it stopped working but that didn't help either. thanks for your help.
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. macOS]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
| priority | no internet connection at startup hi thanks for designing this app i am running mac monterey i was running the zoia librarian app for the first time last night with no issues this morning i tried to use it again and ever since i have gotten the error message failed to retrieve patches from patchstorage please check your internet connection my internet connection is fine so i m not sure if i m doing something wrong or not i tried updating my mac os after it stopped working but that didn t help either thanks for your help describe the bug a clear and concise description of what the bug is to reproduce steps to reproduce the behavior go to click on scroll down to see error expected behavior a clear and concise description of what you expected to happen screenshots if applicable add screenshots to help explain your problem desktop please complete the following information os version additional context add any other context about the problem here | 1 |
536,934 | 15,716,843,867 | IssuesEvent | 2021-03-28 09:25:43 | sopra-fs21-group-03/Server | https://api.github.com/repos/sopra-fs21-group-03/Server | opened | If there are multiple winners, the money gets handed out according to Poker Texas Hold'em rules | high priority task | This is part of userstory #24
Time estimate: 2h | 1.0 | If there are multiple winners, the money gets handed out according to Poker Texas Hold'em rules - This is part of userstory #24
Time estimate: 2h | priority | if there are multiple winners the money gets handed out according to poker texas hold em rules this is part of userstory time estimate | 1 |
565,667 | 16,766,820,819 | IssuesEvent | 2021-06-14 09:52:00 | code-gambit/VT-WebClient | https://api.github.com/repos/code-gambit/VT-WebClient | closed | [BUG] Tooltip for footer component toggles. | Priority: High Type: Bug | **Describe the bug**
- Currently, the footer component toggles are not of button type.
- And there is no tooltip to make the user understand the purpose of the toggles.
Area Where Bug Occurred
- [X] UI/UX
- [ ] Business Logic
**How to reproduce the error/bug**
- Use `type="button"` on each toggle.
- Can use reactstrap tooltip.
**Before submitting an issue check the below**
- [X] I have synced all my node versions as mentioned in the project"
- [X] I am using the same version of npm as is the project
- [X] My current branch is in sync with the development branch
| 1.0 | [BUG] Tooltip for footer component toggles. - **Describe the bug**
- Currently, the footer component toggles are not of button type.
- And there is no tooltip to make the user understand the purpose of the toggles.
Area Where Bug Occurred
- [X] UI/UX
- [ ] Business Logic
**How to reproduce the error/bug**
- Use `type="button"` on each toggle.
- Can use reactstrap tooltip.
**Before submitting an issue check the below**
- [X] I have synced all my node versions as mentioned in the project"
- [X] I am using the same version of npm as is the project
- [X] My current branch is in sync with the development branch
| priority | tooltip for footer component toggles describe the bug currently the footer component toggles are not of button type and there is no tooltip to make the user understand the purpose of the toggles area where bug occurred ui ux business logic how to reproduce the error bug use type button on each toggle can use reactstrap tooltip before submitting an issue check the below i have synced all my node versions as mentioned in the project i am using the same version of npm as is the project my current branch is in sync with the development branch | 1 |
616,985 | 19,325,162,124 | IssuesEvent | 2021-12-14 10:30:34 | emdgroup-liquid/liquid | https://api.github.com/repos/emdgroup-liquid/liquid | reopened | Web components: `<ld-button>`, `<ld-checkbox> ` and `<ld-input>` not working since `v1.0.0-rc.10`. | bug confirmed priority: high released on @rc in progress | **Bug description**
Web components like `<ld-button>`, `<ld-checkbox> ` and `<ld-input>` not working since `v1.0.0-rc.10`.
**Steps to reproduce the behavior**
1. Create a file named `app.ts` with the following content
```ts
import { defineCustomElements } from '@emdgroup-liquid/liquid'
defineCustomElements()
```
2. Install [esbuild](https://esbuild.github.io/)
3. Generate the bundle: `npx esbuild app.ts --bundle --outfile=app.js`
4. Open an HTML that loads app.js and contains the web components.
**Expected behavior**
The web components should work.
**Actual behavior**
They are not even rendered, this error appears in the console when using `v1.0.0-rc.10`:
```
DOMException: Failed to execute 'setAttribute' on 'Element': '0' is not a valid attribute name.
```
And this one when using `v1.0.0-rc.20`:
```
DOMException: Failed to execute 'setAttribute' on 'Element': '-e-l-e-m-e-n-t_-n-o-d-e' is not a valid attribute name.
```
**Screenshots**

**Details about device, OS, browser (including versions)**
- Device: Macbook Pro M1 2020
- OS: macOS Big Sur v11.6
- Browser: Chrome v96
**Additional context**
All components work when using `v1.0.0-rc.9`, but I only manage to make `<ld-select>` work in the newer versions. | 1.0 | Web components: `<ld-button>`, `<ld-checkbox> ` and `<ld-input>` not working since `v1.0.0-rc.10`. - **Bug description**
Web components like `<ld-button>`, `<ld-checkbox> ` and `<ld-input>` not working since `v1.0.0-rc.10`.
**Steps to reproduce the behavior**
1. Create a file named `app.ts` with the following content
```ts
import { defineCustomElements } from '@emdgroup-liquid/liquid'
defineCustomElements()
```
2. Install [esbuild](https://esbuild.github.io/)
3. Generate the bundle: `npx esbuild app.ts --bundle --outfile=app.js`
4. Open an HTML that loads app.js and contains the web components.
**Expected behavior**
The web components should work.
**Actual behavior**
They are not even rendered, this error appears in the console when using `v1.0.0-rc.10`:
```
DOMException: Failed to execute 'setAttribute' on 'Element': '0' is not a valid attribute name.
```
And this one when using `v1.0.0-rc.20`:
```
DOMException: Failed to execute 'setAttribute' on 'Element': '-e-l-e-m-e-n-t_-n-o-d-e' is not a valid attribute name.
```
**Screenshots**

**Details about device, OS, browser (including versions)**
- Device: Macbook Pro M1 2020
- OS: macOS Big Sur v11.6
- Browser: Chrome v96
**Additional context**
All components work when using `v1.0.0-rc.9`, but I only manage to make `<ld-select>` work in the newer versions. | priority | web components and not working since rc bug description web components like and not working since rc steps to reproduce the behavior create a file named app ts with the following content ts import definecustomelements from emdgroup liquid liquid definecustomelements install generate the bundle npx esbuild app ts bundle outfile app js open an html that loads app js and contains the web components expected behavior the web components should work actual behavior they are not even rendered this error appears in the console when using rc domexception failed to execute setattribute on element is not a valid attribute name and this one when using rc domexception failed to execute setattribute on element e l e m e n t n o d e is not a valid attribute name screenshots details about device os browser including versions device macbook pro os macos big sur browser chrome additional context all components work when using rc but i only manage to make work in the newer versions | 1 |
99,589 | 4,057,158,308 | IssuesEvent | 2016-05-24 21:06:37 | GoogleCloudPlatform/gcloud-eclipse-tools | https://api.github.com/repos/GoogleCloudPlatform/gcloud-eclipse-tools | opened | maven wizard doesn't generate Java code | bug high priority | i.e. no src/main/java folder
May be a simple case of needing to select a different archetype by default. | 1.0 | maven wizard doesn't generate Java code - i.e. no src/main/java folder
May be a simple case of needing to select a different archetype by default. | priority | maven wizard doesn t generate java code i e no src main java folder may be a simple case of needing to select a different archetype by default | 1 |
792,712 | 27,972,197,509 | IssuesEvent | 2023-03-25 06:06:16 | fakhruddin-vsbizz/arabic-moallema-refactored-v2.0 | https://api.github.com/repos/fakhruddin-vsbizz/arabic-moallema-refactored-v2.0 | closed | Mark present and absent in teacher chapter detail | enhancement functional-backend priority:high | On the chapter details page, marking the student present and absent is not functional.
path -> http://localhost:3000/teacher/chapter-detail/Letter%20Learning%20Part%202/Batch%203 | 1.0 | Mark present and absent in teacher chapter detail - On the chapter details page, marking the student present and absent is not functional.
path -> http://localhost:3000/teacher/chapter-detail/Letter%20Learning%20Part%202/Batch%203 | priority | mark present and absent in teacher chapter detail on the chapter details page marking the student present and absent is not functional path | 1 |
139,962 | 5,395,785,751 | IssuesEvent | 2017-02-27 09:44:14 | HPI-SWA-Lab/BP2016H1 | https://api.github.com/repos/HPI-SWA-Lab/BP2016H1 | opened | New comments marked as such | high priority | As a designer I want to notice new comments.
(The comments in questions should be marked) | 1.0 | New comments marked as such - As a designer I want to notice new comments.
(The comments in questions should be marked) | priority | new comments marked as such as a designer i want to notice new comments the comments in questions should be marked | 1 |
631,813 | 20,160,894,030 | IssuesEvent | 2022-02-09 21:24:59 | ctm/mb2-doc | https://api.github.com/repos/ctm/mb2-doc | closed | leaving lobby during demo play asks if you're sure | chore high priority easy | Don't install the unload handler for demo accounts.
People playing the demo should be able to close the lobby window without being asked if they're sure. This is a one or two line change. | 1.0 | leaving lobby during demo play asks if you're sure - Don't install the unload handler for demo accounts.
People playing the demo should be able to close the lobby window without being asked if they're sure. This is a one or two line change. | priority | leaving lobby during demo play asks if you re sure don t install the unload handler for demo accounts people playing the demo should be able to close the lobby window without being asked if they re sure this is a one or two line change | 1 |
155,486 | 5,956,352,491 | IssuesEvent | 2017-05-28 16:00:48 | GRIS-UdeM/SpatGRIS | https://api.github.com/repos/GRIS-UdeM/SpatGRIS | reopened | Link de Azimuth et Elevation: รฉcriture multiple | enhancement High priority source unique | La fonction Link de Azimuth et Elevation permet de lier les sources entre elles, mais contrairement a la fonction Link Movements, les paramรจtres Azimuth et-ou Elevation s'รฉcrivent pour chacune des sources. Ce qui a pour effet que si on veut รฉditer l'automation enregistrรฉe, on doit รฉditer les deux courbes.
Est-il possible de n'รฉcrire l'automation que pour une seule source?
| 1.0 | Link de Azimuth et Elevation: รฉcriture multiple - La fonction Link de Azimuth et Elevation permet de lier les sources entre elles, mais contrairement a la fonction Link Movements, les paramรจtres Azimuth et-ou Elevation s'รฉcrivent pour chacune des sources. Ce qui a pour effet que si on veut รฉditer l'automation enregistrรฉe, on doit รฉditer les deux courbes.
Est-il possible de n'รฉcrire l'automation que pour une seule source?
| priority | link de azimuth et elevation รฉcriture multiple la fonction link de azimuth et elevation permet de lier les sources entre elles mais contrairement a la fonction link movements les paramรจtres azimuth et ou elevation s รฉcrivent pour chacune des sources ce qui a pour effet que si on veut รฉditer l automation enregistrรฉe on doit รฉditer les deux courbes est il possible de n รฉcrire l automation que pour une seule source | 1 |
688,315 | 23,577,456,081 | IssuesEvent | 2022-08-23 03:11:48 | TencentBlueKing/bk-iam-saas | https://api.github.com/repos/TencentBlueKing/bk-iam-saas | closed | ๅฎก่ฎก็ธๅ
ณ้ๆฑๆฑๆป | Type: Enhancement Priority: High Layer: Product Size: L | > ๅฐฝ้ไฝฟ็จ้็จ็ๆนๅผๆไพ, ไธๅๅฎๅถ, ๅ
ๆฌ็ฏๅข็ญ;(ไธๅ็ฌๆญๅปบ้็พค)
1. ็ญ็ฅๆฅ่ฏขๆฅๅฃ, ่ฟๅๅๅง่กจ่พพๅผ(ๅ
ๅซ็ฏๅขๅฑๆง-ๆถ้ดๅฑๆง) #1336
2. **้่ฆ** ่ฝๅฆๆๅ็กฎๅฎ็จๆทๆฏๅฆๆๆ้ #1337
- ็จๆทๆฏๅฆๅญๅจไบๆ้ไธญๅฟ
- ็จๆท-ๆ้ / ็จๆท-้จ้จ-ๆ้ / ็จๆท-็ป ็ธๅ
ณๆฐๆฎ
- ๆๆ: ๅฏนๅบ็ณป็ป่ฝ้่ฟๆฅๅฃ, ไฝฟ็จๆๅฐ้ๅๆฅ่ทๅ็ญ็ฅๆฐๆฎ; ่ไธๆฏ`็จๆท*ๆไฝ`ๆพๅคงๆฅๆฅ
3. ็ฌ็ซ API, ่ตฐ็ฝๅ
ณ, ๅๆตๆง
-----
้ฎ้ข:
1. ๆฅๅ
ฅbkbase? ่ฟๅๅฐฝ้็ฑ้ๆฑๆน่ชๅทฑๅค็
| 1.0 | ๅฎก่ฎก็ธๅ
ณ้ๆฑๆฑๆป - > ๅฐฝ้ไฝฟ็จ้็จ็ๆนๅผๆไพ, ไธๅๅฎๅถ, ๅ
ๆฌ็ฏๅข็ญ;(ไธๅ็ฌๆญๅปบ้็พค)
1. ็ญ็ฅๆฅ่ฏขๆฅๅฃ, ่ฟๅๅๅง่กจ่พพๅผ(ๅ
ๅซ็ฏๅขๅฑๆง-ๆถ้ดๅฑๆง) #1336
2. **้่ฆ** ่ฝๅฆๆๅ็กฎๅฎ็จๆทๆฏๅฆๆๆ้ #1337
- ็จๆทๆฏๅฆๅญๅจไบๆ้ไธญๅฟ
- ็จๆท-ๆ้ / ็จๆท-้จ้จ-ๆ้ / ็จๆท-็ป ็ธๅ
ณๆฐๆฎ
- ๆๆ: ๅฏนๅบ็ณป็ป่ฝ้่ฟๆฅๅฃ, ไฝฟ็จๆๅฐ้ๅๆฅ่ทๅ็ญ็ฅๆฐๆฎ; ่ไธๆฏ`็จๆท*ๆไฝ`ๆพๅคงๆฅๆฅ
3. ็ฌ็ซ API, ่ตฐ็ฝๅ
ณ, ๅๆตๆง
-----
้ฎ้ข:
1. ๆฅๅ
ฅbkbase? ่ฟๅๅฐฝ้็ฑ้ๆฑๆน่ชๅทฑๅค็
| priority | ๅฎก่ฎก็ธๅ
ณ้ๆฑๆฑๆป ๅฐฝ้ไฝฟ็จ้็จ็ๆนๅผๆไพ ไธๅๅฎๅถ ๅ
ๆฌ็ฏๅข็ญ ไธๅ็ฌๆญๅปบ้็พค ็ญ็ฅๆฅ่ฏขๆฅๅฃ ่ฟๅๅๅง่กจ่พพๅผ ๅ
ๅซ็ฏๅขๅฑๆง ๆถ้ดๅฑๆง ้่ฆ ่ฝๅฆๆๅ็กฎๅฎ็จๆทๆฏๅฆๆๆ้ ็จๆทๆฏๅฆๅญๅจไบๆ้ไธญๅฟ ็จๆท ๆ้ ็จๆท ้จ้จ ๆ้ ็จๆท ็ป ็ธๅ
ณๆฐๆฎ ๆๆ ๅฏนๅบ็ณป็ป่ฝ้่ฟๆฅๅฃ ไฝฟ็จๆๅฐ้ๅๆฅ่ทๅ็ญ็ฅๆฐๆฎ ่ไธๆฏ ็จๆท ๆไฝ ๆพๅคงๆฅๆฅ ็ฌ็ซ api ่ตฐ็ฝๅ
ณ ๅๆตๆง ้ฎ้ข ๆฅๅ
ฅbkbase ่ฟๅๅฐฝ้็ฑ้ๆฑๆน่ชๅทฑๅค็ | 1 |
679,633 | 23,240,603,114 | IssuesEvent | 2022-08-03 15:16:23 | DDMAL/cantus | https://api.github.com/repos/DDMAL/cantus | closed | folio numbers get "stuck" on big scrolls | High Priority | If you scroll from one page to another that has no folio number (e.g. the cover of Salzinnes), the field for folio number stays the same as where you started scrolling, and everything else is (correctly) empty. If you then scroll back down to 1r, the mapping resumes correctly from there.
BUT if you scroll to the end and back up page by page, it will keep saying the same thing!

honestly not that common a situation but a weird one. | 1.0 | folio numbers get "stuck" on big scrolls - If you scroll from one page to another that has no folio number (e.g. the cover of Salzinnes), the field for folio number stays the same as where you started scrolling, and everything else is (correctly) empty. If you then scroll back down to 1r, the mapping resumes correctly from there.
BUT if you scroll to the end and back up page by page, it will keep saying the same thing!

honestly not that common a situation but a weird one. | priority | folio numbers get stuck on big scrolls if you scroll from one page to another that has no folio number e g the cover of salzinnes the field for folio number stays the same as where you started scrolling and everything else is correctly empty if you then scroll back down to the mapping resumes correctly from there but if you scroll to the end and back up page by page it will keep saying the same thing honestly not that common a situation but a weird one | 1 |
28,035 | 2,698,774,358 | IssuesEvent | 2015-04-03 10:53:41 | minetest/minetest | https://api.github.com/repos/minetest/minetest | closed | Singleplayer World Crashes - Malformed Packet Read, Server Running Different Version of Minetest. | High priority | **Minetest Engine Commit:** 6cf7c89
**Minetest_Game Commit:** [9eb9502](https://github.com/minetest/minetest_game/commit/9eb9502209b33bed33a36fb3db2ab4a59716fe5b)
**Compiled from source on:*** Ubuntu 14.10
I updated my Minetest engine to 6cf7c89 to fix the red sun glitch but ran into a different problem in one of my singleplayer worlds. I haven't been able to consistently reproduce the problem to figure out what is the trigger. I'm hoping some part of the error message will provide a clue to those who can interpret what the error messages are reporting.
The error messages in the logs are the weirdest I've ever seen *(and quite long)*. Here are the last four lines of the error after the crash.
The last part of the error:
>04:13:00: ERROR[main]: "
>04:13:00: ERROR[main]: A serialization error occurred:
>04:13:00: ERROR[main]: Malformed packet read
>04:13:00: ERROR[main]: The server is probably running a different version of Minetest.
The server is probably running a different version of Minetest?... In a singleplayer world??
I'm using the "Singleplayer" tab, **not** the "Server" tab.
Below is the full error output. Most of it is gibberish; maybe someone has seen a similar pattern and remembers what sort of events trigger it, which may provide a clue.
```
Irrlicht log: Could not open file of texture: character.png
Irrlicht log: Loaded mesh: character.b3d
Irrlicht log: Loaded mesh: character.b3d
04:13:00: ERROR[main]: ClientEnvironment::addActiveObject(): id=36 type=e:
SerializationError in initialize(): deSerializeLongString: size not read:
init_data="\u0001\u0000\u0000\u0000\u0000$\u0000\u0000\u00ea`\u0000\u0003^\
u001c\u0000\u0000\u00d4\u001c\u0000\u0000\u0000\u0000\u0000\n\u0004\u0000\u0000
\u001d\u00a8\u0000\u0001\u0000\n\u0000\u0000\u0000\u0013\u0088\u0000\u0000\u0000
\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000
\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000eupright_sprite\u0000
\u0000\u0003 \u0000\u0000\u0001\u00f4\u0000\u0001\u001dK[combine:248x90:6,
0=slc_0.png:22,0=slc_0.png:38,0=slc_0.png:54,0=slc_0.png:70,0=slc_0.png:86,
0=slc_0.png:102,0=slc_0.png:118,0=slc_0.png:134,0=slc_0.png:150,0=slc_0.png:166,
0=slc_0.png:182,0=slc_0.png:198,0=slc_0.png:214,0=slc_0.png:225,0=slc_0.png:6,
0=hdf_46.png:15,0=hdf_6f.png:24,0=hdf_72.png:30,0=hdf_20.png:36,0=hdf_61.png:45,
0=hdf_20.png:51,0=hdf_67.png:60,0=hdf_72.png:66,0=hdf_65.png:\u0000\u0000\u0000
\u0000\u00ff\u00fe\u00a0q\u0001\u0000\u0000\u0000\u0000d\u00003\u0000\/\u0001
.. more of the same - clipped...
\u0000\r\u0000J\u0015\r\u0000J\u0015\r\u0000J\u0015\f\u0000J\u0015\f\u0000J
\u0015\f\u0000J\u0015\r\u0000\u00ef\u0000\u0000\u0000\u00e8\u0000\u0000\u0000
\u00e8\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00e8
\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00f3\u0000
\f\u0000\u00f3\u0000\r"
04:13:00: ERROR[main]: generateImage(): unbalanced parentheses(extranous
'(') while generating texture "[combine:248x90:6,0=slc_0.png:22,0=slc_0.png:38,
0=slc_0.png:54,0=slc_0.png:70,0=slc_0.png:86,0=slc_0.png:102,0=slc_0.png:118,
0=slc_0.png:134,0=slc_0.png:150,0=slc_0.png:166,0=slc_0.png:182,0=slc_0.png:198,
0=slc_0.png:214,0=slc_0.png:225,0=slc_0.png:6,0=hdf_46.png:15,0=hdf_6f.png:24,
0=hdf_72.png:30,0=hdf_20.png:36,0=hdf_61.png:45,0=hdf_20.png:51,0=hdf_67.png:60,
0=hdf_72.png:66,0=hdf_65.png:๏ฟฝ๏ฟฝ๏ฟฝqd3/๏ฟฝ\DL๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝqd4/๏ฟฝ\DL๏ฟฝ๏ฟฝ0๏ฟฝ๏ฟฝ๏ฟฝqd5/๏ฟฝ\k
\๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝqd6/๏ฟฝ\k\๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝqd7/๏ฟฝ\k\๏ฟฝ๏ฟฝ0๏ฟฝ๏ฟฝ๏ฟฝqd8/PDL๏ฟฝ๏ฟฝd9/
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ+@๏ฟฝ๏ฟฝ๏ฟฝqd:/ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝy`๏ฟฝ๏ฟฝ๏ฟฝqd;/ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ+@๏ฟฝ๏ฟฝ๏ฟฝqd</
๏ฟฝ๏ฟฝU๏ฟฝ๏ฟฝ๏ฟฝ0.png:340,0=slc_n.png:356,0=slc_n.png:372,0=slc_n.png:388,
0=slc_n.png:404,0=slc_n.png:420,0=slc_n.png:436,0=slc_n.png:452,0=slc_n.png:463,
0=slc_n.png:6,15=slc_n.png:22,15=slc_n.png:38,15=slc_n.png:54,15=slc_n.png:70,
15=slc_n.png:86,15=slc_n.png:102,15=slc_n.png:118,15=slc_n.png:134,
15=slc_n.png:150,15=slc_n.png:166,15=slc_n.png:182,15=slc_n.png:198,
15=slc_n.png:214,15=slc_n.png:225,15=slc_n.png:4,15=slc_0.png:20,
15=slc_0.png:36,15=slc_0.png:52,15=slc_0.png:68,15=slc_0.png:84,
15=slc_0.png:1008๏ฟฝ๏ฟฝQ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝxP๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝya๏ฟฝ?๏ฟฝP๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ#wDP๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ?@J96#๏ฟฝ๏ฟฝ๏ฟฝ@e๏ฟฝHe๏ฟฝHe๏ฟฝhG;๏ฟฝัv๏ฟฝ๏ฟฝ(๏ฟฝ๏ฟฝ๏ฟฝ(๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~Q๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ5๏ฟฝ
๏ฟฝ๏ฟฝ~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ~~~~๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ55๏ฟฝ๏ฟฝ$]~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~J~J5๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ
~~~~JJJJ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~JJJJ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ~~~~JJJJ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~J~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~~~~~~
!๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝP@๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: ๏ฟฝ
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: ๏ฟฝ
04:13:00: ERROR[main]: J
๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
J
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
๏ฟฝ
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
J
J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
J
FJ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
J
J
04:13:00: ERROR[main]: FJ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~
J
FFF๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
04:13:00: ERROR[main]: J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: 5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ
~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
FFJ
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: 5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5
~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: J
J
J
J
J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: ~
J
J
J
J
04:13:00: ERROR[main]: "
04:13:00: ERROR[main]: A serialization error occurred:
04:13:00: ERROR[main]: Malformed packet read
04:13:00: ERROR[main]: The server is probably running a different version of
Minetest.
```
| 1.0 | Singleplayer World Crashes - Malformed Packet Read, Server Running Different Version of Minetest. - **Minetest Engine Commit:** 6cf7c89
**Minetest_Game Commit:** [9eb9502](https://github.com/minetest/minetest_game/commit/9eb9502209b33bed33a36fb3db2ab4a59716fe5b)
**Compiled from source on:*** Ubuntu 14.10
I updated my Minetest engine to 6cf7c89 to fix the red sun glitch but ran into a different problem in one of my singleplayer worlds. I haven't been able to consistently reproduce the problem to figure out what is the trigger. I'm hoping some part of the error message will provide a clue to those who can interpret what the error messages are reporting.
The error messages in the logs are the weirdest I've ever seen *(and quite long)*. Here are the last four lines of the error after the crash.
The last part of the error:
>04:13:00: ERROR[main]: "
>04:13:00: ERROR[main]: A serialization error occurred:
>04:13:00: ERROR[main]: Malformed packet read
>04:13:00: ERROR[main]: The server is probably running a different version of Minetest.
The server is probably running a different version of Minetest?... In a singleplayer world??
I'm using the "Singleplayer" tab, **not** the "Server" tab.
Below is the full error output. Most of it is gibberish; maybe someone has seen a similar pattern and remembers what sort of events trigger it, which may provide a clue.
```
Irrlicht log: Could not open file of texture: character.png
Irrlicht log: Loaded mesh: character.b3d
Irrlicht log: Loaded mesh: character.b3d
04:13:00: ERROR[main]: ClientEnvironment::addActiveObject(): id=36 type=e:
SerializationError in initialize(): deSerializeLongString: size not read:
init_data="\u0001\u0000\u0000\u0000\u0000$\u0000\u0000\u00ea`\u0000\u0003^\
u001c\u0000\u0000\u00d4\u001c\u0000\u0000\u0000\u0000\u0000\n\u0004\u0000\u0000
\u001d\u00a8\u0000\u0001\u0000\n\u0000\u0000\u0000\u0013\u0088\u0000\u0000\u0000
\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000
\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000eupright_sprite\u0000
\u0000\u0003 \u0000\u0000\u0001\u00f4\u0000\u0001\u001dK[combine:248x90:6,
0=slc_0.png:22,0=slc_0.png:38,0=slc_0.png:54,0=slc_0.png:70,0=slc_0.png:86,
0=slc_0.png:102,0=slc_0.png:118,0=slc_0.png:134,0=slc_0.png:150,0=slc_0.png:166,
0=slc_0.png:182,0=slc_0.png:198,0=slc_0.png:214,0=slc_0.png:225,0=slc_0.png:6,
0=hdf_46.png:15,0=hdf_6f.png:24,0=hdf_72.png:30,0=hdf_20.png:36,0=hdf_61.png:45,
0=hdf_20.png:51,0=hdf_67.png:60,0=hdf_72.png:66,0=hdf_65.png:\u0000\u0000\u0000
\u0000\u00ff\u00fe\u00a0q\u0001\u0000\u0000\u0000\u0000d\u00003\u0000\/\u0001
.. more of the same - clipped...
\u0000\r\u0000J\u0015\r\u0000J\u0015\r\u0000J\u0015\f\u0000J\u0015\f\u0000J
\u0015\f\u0000J\u0015\r\u0000\u00ef\u0000\u0000\u0000\u00e8\u0000\u0000\u0000
\u00e8\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00e8
\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00e8\u0000\u0000\u0000\u00f3\u0000
\f\u0000\u00f3\u0000\r"
04:13:00: ERROR[main]: generateImage(): unbalanced parentheses(extranous
'(') while generating texture "[combine:248x90:6,0=slc_0.png:22,0=slc_0.png:38,
0=slc_0.png:54,0=slc_0.png:70,0=slc_0.png:86,0=slc_0.png:102,0=slc_0.png:118,
0=slc_0.png:134,0=slc_0.png:150,0=slc_0.png:166,0=slc_0.png:182,0=slc_0.png:198,
0=slc_0.png:214,0=slc_0.png:225,0=slc_0.png:6,0=hdf_46.png:15,0=hdf_6f.png:24,
0=hdf_72.png:30,0=hdf_20.png:36,0=hdf_61.png:45,0=hdf_20.png:51,0=hdf_67.png:60,
0=hdf_72.png:66,0=hdf_65.png:๏ฟฝ๏ฟฝ๏ฟฝqd3/๏ฟฝ\DL๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝqd4/๏ฟฝ\DL๏ฟฝ๏ฟฝ0๏ฟฝ๏ฟฝ๏ฟฝqd5/๏ฟฝ\k
\๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝqd6/๏ฟฝ\k\๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝqd7/๏ฟฝ\k\๏ฟฝ๏ฟฝ0๏ฟฝ๏ฟฝ๏ฟฝqd8/PDL๏ฟฝ๏ฟฝd9/
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ+@๏ฟฝ๏ฟฝ๏ฟฝqd:/ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝy`๏ฟฝ๏ฟฝ๏ฟฝqd;/ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ+@๏ฟฝ๏ฟฝ๏ฟฝqd</
๏ฟฝ๏ฟฝU๏ฟฝ๏ฟฝ๏ฟฝ0.png:340,0=slc_n.png:356,0=slc_n.png:372,0=slc_n.png:388,
0=slc_n.png:404,0=slc_n.png:420,0=slc_n.png:436,0=slc_n.png:452,0=slc_n.png:463,
0=slc_n.png:6,15=slc_n.png:22,15=slc_n.png:38,15=slc_n.png:54,15=slc_n.png:70,
15=slc_n.png:86,15=slc_n.png:102,15=slc_n.png:118,15=slc_n.png:134,
15=slc_n.png:150,15=slc_n.png:166,15=slc_n.png:182,15=slc_n.png:198,
15=slc_n.png:214,15=slc_n.png:225,15=slc_n.png:4,15=slc_0.png:20,
15=slc_0.png:36,15=slc_0.png:52,15=slc_0.png:68,15=slc_0.png:84,
15=slc_0.png:1008๏ฟฝ๏ฟฝQ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝxP๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝya๏ฟฝ?๏ฟฝP๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ#wDP๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ?@J96#๏ฟฝ๏ฟฝ๏ฟฝ@e๏ฟฝHe๏ฟฝHe๏ฟฝhG;๏ฟฝัv๏ฟฝ๏ฟฝ(๏ฟฝ๏ฟฝ๏ฟฝ(๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~Q๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ5๏ฟฝ
๏ฟฝ๏ฟฝ~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ~~~~๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ55๏ฟฝ๏ฟฝ$]~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~J~J5๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ๏ฟฝ๏ฟฝ
~~~~JJJJ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~JJJJ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ~~~~JJJJ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~J~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~~~~~~
!๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝP@๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: ๏ฟฝ
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: ๏ฟฝ
04:13:00: ERROR[main]: J
๏ฟฝ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
J
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
๏ฟฝ
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
J
J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
J
FJ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝJ
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
J
J
04:13:00: ERROR[main]: FJ
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~
J
FFF๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
04:13:00: ERROR[main]: J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: 5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ
~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
FFJ
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
J
J
J
J
๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝJ
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
04:13:00: ERROR[main]: 5~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ55~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ5
~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ~~~~~๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ
04:13:00: ERROR[main]: ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: J
J
J
J
J
04:13:00: ERROR[main]: ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ
๏ฟฝ
๏ฟฝ
04:13:00: ERROR[main]: ~
04:13:00: ERROR[main]: ~
J
J
J
J
04:13:00: ERROR[main]: "
04:13:00: ERROR[main]: A serialization error occurred:
04:13:00: ERROR[main]: Malformed packet read
04:13:00: ERROR[main]: The server is probably running a different version of
Minetest.
```
| priority | singleplayer world crashes malformed packet read server running different version of minetest minetest engine commit minetest game commit compiled from source on ubuntu i updated my minetest engine to to fix the red sun glitch but ran into a different problem in one of my singleplayer worlds i haven t been able to consistently reproduce the problem to figure out what is the trigger i m hoping some part of the error message will provide a clue to those who can interpret what the error messages are reporting the error messages in the logs are the weirdest i ve ever seen and quite long here are the last four lines of the error after the crash the last part of the error error error a serialization error occurred error malformed packet read error the server is probably running a different version of minetest the server is probably running a different version of minetest in a singleplayer world i m using the singleplayer tab not the server tab below is the full error output most of it is gibberish maybe someone has seen a similar pattern and remembers what sort of events trigger it which may provide a clue irrlicht log could not open file of texture character png irrlicht log loaded mesh character irrlicht log loaded mesh character error clientenvironment addactiveobject id type e serializationerror in initialize deserializelongstring size not read init data n n sprite combine slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png hdf png hdf png hdf png hdf png hdf png hdf png hdf png hdf png hdf png more of the same clipped r r r f f f r f r error generateimage unbalanced parentheses extranous while generating texture combine slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png slc png hdf png hdf png hdf png hdf png hdf png hdf png hdf png hdf png hdf png ๏ฟฝ๏ฟฝ๏ฟฝq ๏ฟฝ dl๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝq ๏ฟฝ dl๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝq ๏ฟฝ k ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝq ๏ฟฝ k ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝq ๏ฟฝ k ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝq pdl๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝqd ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝy ๏ฟฝ๏ฟฝ๏ฟฝqd ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝqd ๏ฟฝ๏ฟฝu๏ฟฝ๏ฟฝ๏ฟฝ png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc n png slc png slc png slc png slc png slc png slc png ๏ฟฝ๏ฟฝq๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝxp๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝya๏ฟฝ ๏ฟฝp๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ wdp๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ e๏ฟฝhe๏ฟฝhe๏ฟฝhg ๏ฟฝัv๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ q๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ j j ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ jjjj๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ jjjj๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ jjjj๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝp ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error error ๏ฟฝ j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝj error ๏ฟฝ error j ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error j error error j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝj error j error j error j error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ j error j j ๏ฟฝ error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ j error j ๏ฟฝ j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ j error j j j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ j error j error j error j error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝj error j j j error j error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝj error j j fj ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝj error j j j j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝj error j error j error j error j error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ error ๏ฟฝj j j error fj ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ error ๏ฟฝ j fff๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝj error j j j j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ j error j error j error j error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ ๏ฟฝ error ๏ฟฝj j j j j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ error ๏ฟฝj ffj j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ error ๏ฟฝj j j j j ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝj error j error j error j error j error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ error ๏ฟฝ ๏ฟฝ ๏ฟฝ error error j j j j j error ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ ๏ฟฝ ๏ฟฝ error error j j j j error error a serialization error occurred error malformed packet read error the server is probably running a different version of minetest | 1 |
491,338 | 14,149,387,393 | IssuesEvent | 2020-11-11 00:43:38 | broadinstitute/seqr | https://api.github.com/repos/broadinstitute/seqr | closed | New Sort By category | feature request high priority | **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
For RGP, our workflow states that we will perform reanalysis on unsolved cases every 12 months. When the first assigned analyst finishes analyzing a case, he/she should click on "Analyzed By" to add name and date stamp (see attached image) to the family page. Normally, a second analyst will be assigned the case as a second set of eyes (depending on the team bandwidth). That person must also do a full analysis and then click "Analyzed by" to add a new date stamp and reset the 12 month clock. The goal is for this time stamp to keep being updated every time a case has a full reanalysis, which sometimes happens even before the 12 month mark if new information is received. Currently, we have no way to sort or filter by this date to be able to prioritize the cases that haven't been analyzed in a long time and know when they are hitting the year reanalysis mark.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
On the RGP project page, it would be helpful to be able to sort by the most recent "Analyzed By" date similar to sorting by date loaded, etc. (see attached image)
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
I discussed with Sam to see if it would be possible to download this date along with the analyst names from the "Analyzed By" feature on the family page. However, currently when she tries to pull this data, only the names show up in the download, and the date is missing. So, if the dates could be added to the download, preferably in a separate column to allow sorting/filtering, that would also be helpful.
**Additional context**
Add any other context, links to relevant seqr pages, or screenshots about the feature request here.


| 1.0 | New Sort By category - **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
For RGP, our workflow states that we will perform reanalysis on unsolved cases every 12 months. When the first assigned analyst finishes analyzing a case, he/she should click on "Analyzed By" to add name and date stamp (see attached image) to the family page. Normally, a second analyst will be assigned the case as a second set of eyes (depending on the team bandwidth). That person must also do a full analysis and then click "Analyzed by" to add a new date stamp and reset the 12 month clock. The goal is for this time stamp to keep being updated every time a case has a full reanalysis, which sometimes happens even before the 12 month mark if new information is received. Currently, we have no way to sort or filter by this date to be able to prioritize the cases that haven't been analyzed in a long time and know when they are hitting the year reanalysis mark.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
On the RGP project page, it would be helpful to be able to sort by the most recent "Analyzed By" date similar to sorting by date loaded, etc. (see attached image)
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
I discussed with Sam to see if it would be possible to download this date along with the analyst names from the "Analyzed By" feature on the family page. However, currently when she tries to pull this data, only the names show up in the download, and the date is missing. So, if the dates could be added to the download, preferably in a separate column to allow sorting/filtering, that would also be helpful.
**Additional context**
Add any other context, links to relevant seqr pages, or screenshots about the feature request here.


| priority | new sort by category is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when for rgp our workflow states that we will perform reanalysis on unsolved cases every months when the first assigned analyst finishes analyzing a case he she should click on analyzed by to add name and date stamp see attached image to the family page normally a second analyst will be assigned the case as a second set of eyes depending on the team bandwidth that person must also do a full analysis and then click analyzed by to add a new date stamp and reset the month clock the goal is for this time stamp to keep being updated every time a case has a full reanalysis which sometimes happens even before the month mark if new information is received currently we have no way to sort or filter by this date to be able to prioritize the cases that haven t been analyzed in a long time and know when they are hitting the year reanalysis mark describe the solution you d like a clear and concise description of what you want to happen on the rgp project page it would be helpful to be able to sort by the most recent analyzed by date similar to sorting by date loaded etc see attached image describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered i discussed with sam to see if it would be possible to download this date along with the analyst names from the analyzed by feature on the family page however currently when she tries to pull this data only the names show up in the download and the date is missing so if the dates could be added to the download preferably in a separate column to allow sorting filtering that would also be helpful additional context add any other context links to relevant seqr pages or screenshots about the feature request here | 1 |
156,640 | 5,971,807,739 | IssuesEvent | 2017-05-31 04:22:57 | kabrabom/web | https://api.github.com/repos/kabrabom/web | closed | Erro pรณs cadastro usuรกrio | bug High Priority | Ocorrendo erro apรณs o cadastro do usuรกrio. Quando clicamos no botรฃo "Voltar para o Site" a pรกgina รฉ rederecionada para seguinte url: http://www.kabrabom.com.br/message/%3Ca. Alรฉm disso o botรฃo "Cadastrar meu Serviรงo" nรฃo estรก aparecendo.
1 - Sem o botรฃo "Cadastrar meu Serviรงo"

2 - Url Estranha

| 1.0 | Erro pรณs cadastro usuรกrio - Ocorrendo erro apรณs o cadastro do usuรกrio. Quando clicamos no botรฃo "Voltar para o Site" a pรกgina รฉ rederecionada para seguinte url: http://www.kabrabom.com.br/message/%3Ca. Alรฉm disso o botรฃo "Cadastrar meu Serviรงo" nรฃo estรก aparecendo.
1 - Sem o botรฃo "Cadastrar meu Serviรงo"

2 - Url Estranha

| priority | erro pรณs cadastro usuรกrio ocorrendo erro apรณs o cadastro do usuรกrio quando clicamos no botรฃo voltar para o site a pรกgina รฉ rederecionada para seguinte url alรฉm disso o botรฃo cadastrar meu serviรงo nรฃo estรก aparecendo sem o botรฃo cadastrar meu serviรงo url estranha | 1 |
276,294 | 8,596,928,094 | IssuesEvent | 2018-11-15 17:10:53 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Recipe UI is throwing Exceptions on Bleeding Edge | Fixed High Priority Not reproduced | From log in https://github.com/StrangeLoopGames/EcoIssues/issues/9925
(Filename: C:\buildslave\unity\build\Runtime/Export/Debug.bindings.h Line: 43)
Must call RecipeListUI.Init before use.
(Filename: C:\buildslave\unity\build\Runtime/Export/Debug.bindings.h Line: 43)
NullReferenceException: Object reference not set to an instance of an object
at UI.RecipeUI.get_OrderTime () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.UpdateCraftingTime () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.set_OrderQuantity (System.Int32 value) [0x0005d] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.Start () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.RecipeUI.UpdateQuantities () [0x00146] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.RecipeUI.UpdateQuantities () [0x00146] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0 | 1.0 | Recipe UI is throwing Exceptions on Bleeding Edge - From log in https://github.com/StrangeLoopGames/EcoIssues/issues/9925
(Filename: C:\buildslave\unity\build\Runtime/Export/Debug.bindings.h Line: 43)
Must call RecipeListUI.Init before use.
(Filename: C:\buildslave\unity\build\Runtime/Export/Debug.bindings.h Line: 43)
NullReferenceException: Object reference not set to an instance of an object
at UI.RecipeUI.get_OrderTime () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.UpdateCraftingTime () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.set_OrderQuantity (System.Int32 value) [0x0005d] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.Start () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.RecipeUI.UpdateQuantities () [0x00146] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.RecipeUI.UpdateQuantities () [0x00146] in <36490e6e15e44b19bee48b3adb194bad>:0
at UI.RecipeUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0
(Filename: <36490e6e15e44b19bee48b3adb194bad> Line: 0)
NullReferenceException: Object reference not set to an instance of an object
at UI.WorkOrderUI.Update () [0x00000] in <36490e6e15e44b19bee48b3adb194bad>:0 | priority | recipe ui is throwing exceptions on bleeding edge from log in filename c buildslave unity build runtime export debug bindings h line must call recipelistui init before use filename c buildslave unity build runtime export debug bindings h line nullreferenceexception object reference not set to an instance of an object at ui recipeui get ordertime in at ui recipeui updatecraftingtime in at ui recipeui set orderquantity system value in at ui recipeui start in filename line nullreferenceexception object reference not set to an instance of an object at ui recipeui updatequantities in at ui recipeui update in filename line nullreferenceexception object reference not set to an instance of an object at ui workorderui update in filename line nullreferenceexception object reference not set to an instance of an object at ui workorderui update in filename line nullreferenceexception object reference not set to an instance of an object at ui workorderui update in filename line nullreferenceexception object reference not set to an instance of an object at ui workorderui update in filename line nullreferenceexception object reference not set to an instance of an object at ui recipeui updatequantities in at ui recipeui update in filename line nullreferenceexception object reference not set to an instance of an object at ui workorderui update in | 1 |
376,313 | 11,141,064,196 | IssuesEvent | 2019-12-21 19:22:06 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | m.youtube.com - video or audio doesn't play | browser-firefox-mobile engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical | <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
**URL**: https://m.youtube.com/watch?v=fixMWe-O5u4
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android
**Tested Another Browser**: Yes
**Problem type**: Video or audio doesn't play
**Description**: maximize not landscape
**Steps to Reproduce**:
[](https://webcompat.com/uploads/2019/12/d89061ba-4420-4939-879c-cda43402966c.jpeg)
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191216165525</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2019/12/14f44492-4fbe-4c6d-92be-2af48a35fc79)
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | 1.0 | m.youtube.com - video or audio doesn't play - <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
**URL**: https://m.youtube.com/watch?v=fixMWe-O5u4
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android
**Tested Another Browser**: Yes
**Problem type**: Video or audio doesn't play
**Description**: maximize not landscape
**Steps to Reproduce**:
[](https://webcompat.com/uploads/2019/12/d89061ba-4420-4939-879c-cda43402966c.jpeg)
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191216165525</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2019/12/14f44492-4fbe-4c6d-92be-2af48a35fc79)
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | priority | m youtube com video or audio doesn t play url browser version firefox mobile operating system android tested another browser yes problem type video or audio doesn t play description maximize not landscape steps to reproduce browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with โค๏ธ | 1 |
619,817 | 19,535,670,443 | IssuesEvent | 2021-12-31 06:01:26 | architectury/architectury-api | https://api.github.com/repos/architectury/architectury-api | closed | [1.18.1] Architectury crashes on start | bug priority: high | **Installed mods:**
-----------------------
Fabric loader 0.12.12
Fabric API 0.45.0
Architectury 3.3.6
Crash report:
------------------------
[crash-2021-12-30_19.03.17-client.txt](https://github.com/architectury/architectury-api/files/7793887/crash-2021-12-30_19.03.17-client.txt) | 1.0 | [1.18.1] Architectury crashes on start - **Installed mods:**
-----------------------
Fabric loader 0.12.12
Fabric API 0.45.0
Architectury 3.3.6
Crash report:
------------------------
[crash-2021-12-30_19.03.17-client.txt](https://github.com/architectury/architectury-api/files/7793887/crash-2021-12-30_19.03.17-client.txt) | priority | architectury crashes on start installed mods fabric loader fabric api architectury crash report | 1 |
503,404 | 14,591,129,443 | IssuesEvent | 2020-12-19 11:25:58 | bounswe/bounswe2020group4 | https://api.github.com/repos/bounswe/bounswe2020group4 | opened | (BCKND) CI/CD Integration | Backend Coding Effort: Medium Priority: High Status: In-Progress | Deadline: 22.12.2020
We have to create a solid CI/CD system. It can pull and publish our code accordingly. | 1.0 | (BCKND) CI/CD Integration - Deadline: 22.12.2020
We have to create a solid CI/CD system. It can pull and publish our code accordingly. | priority | bcknd ci cd integration deadline we have to create a solid ci cd system it can pull and publish our code accordingly | 1 |
400,305 | 11,772,545,996 | IssuesEvent | 2020-03-16 04:16:39 | wso2/analytics-apim | https://api.github.com/repos/wso2/analytics-apim | closed | Need a script to generate dummy data for manual testing | APIM 3.1.0 Priority/Highest Severity/Critical | **Description:**
Running APIM, configuring, invoking, then wait for data is time-consuming for testing we need a script to generate dummy data.
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers canโt assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers canโt assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | 1.0 | Need a script to generate dummy data for manual testing - **Description:**
Running APIM, configuring, invoking, then wait for data is time-consuming for testing we need a script to generate dummy data.
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers canโt assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers canโt assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | priority | need a script to generate dummy data for manual testing description running apim configuring invoking then wait for data is time consuming for testing we need a script to generate dummy data suggested labels suggested assignees affected product version os db other environment details and versions steps to reproduce related issues | 1 |
231,866 | 7,644,151,249 | IssuesEvent | 2018-05-08 14:43:31 | openfaas/faas | https://api.github.com/repos/openfaas/faas | closed | Function Store - bubble up errors. | area/ux priority/high skill/beginner | <!--- Provide a general summary of the issue in the Title above -->
## Expected Behaviour
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->
If an error occurs while trying to deploy a function from the Function Store, the manual page should be focused upon detection/display of the error.
<img width="1121" alt="screen shot 2018-01-13 at 17 23 47" src="https://user-images.githubusercontent.com/6358735/34908382-af9b9f8e-f886-11e7-8c8e-cb99ca91f018.png">
## Current Behaviour
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
You get no feedback and have to work out to click on the "manual" tab
<img width="1122" alt="screen shot 2018-01-13 at 17 23 54" src="https://user-images.githubusercontent.com/6358735/34908383-b3e7fc90-f886-11e7-94b8-54c8b20bf7b6.png">
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
Possible solution is to ask @kenfdev or @LucasRoesler very nicely to help ๐ฅ
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1. Deploy a function from the store
2. Deploy the same function from the store after
## Your Environment
Tested on faas-swarm - same difference on other orchestrators. | 1.0 | Function Store - bubble up errors. - <!--- Provide a general summary of the issue in the Title above -->
## Expected Behaviour
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->
If an error occurs while trying to deploy a function from the Function Store, the manual page should be focused upon detection/display of the error.
<img width="1121" alt="screen shot 2018-01-13 at 17 23 47" src="https://user-images.githubusercontent.com/6358735/34908382-af9b9f8e-f886-11e7-8c8e-cb99ca91f018.png">
## Current Behaviour
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
You get no feedback and have to work out to click on the "manual" tab
<img width="1122" alt="screen shot 2018-01-13 at 17 23 54" src="https://user-images.githubusercontent.com/6358735/34908383-b3e7fc90-f886-11e7-94b8-54c8b20bf7b6.png">
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
Possible solution is to ask @kenfdev or @LucasRoesler very nicely to help ๐ฅ
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1. Deploy a function from the store
2. Deploy the same function from the store after
## Your Environment
Tested on faas-swarm - same difference on other orchestrators. | priority | function store bubble up errors expected behaviour if an error occurs while trying to deploy a function from the function store the manual page should be focused upon detection display of the error img width alt screen shot at src current behaviour you get no feedback and have to work out to click on the manual tab img width alt screen shot at src possible solution possible solution is to ask kenfdev or lucasroesler very nicely to help ๐ฅ steps to reproduce for bugs deploy a function from the store deploy the same function from the store after your environment tested on faas swarm same difference on other orchestrators | 1 |
259,151 | 8,188,587,496 | IssuesEvent | 2018-08-30 02:47:15 | HippieStation/HippieStation | https://api.github.com/repos/HippieStation/HippieStation | closed | drifting in space in crit counts as crawling and saps your health | Priority: High | In-Game report from cacogen:
Server info: 24544 (Hippie Station)
| 1.0 | drifting in space in crit counts as crawling and saps your health - In-Game report from cacogen:
Server info: 24544 (Hippie Station)
| priority | drifting in space in crit counts as crawling and saps your health in game report from cacogen server info hippie station | 1 |
192,569 | 6,874,792,474 | IssuesEvent | 2017-11-19 04:40:08 | HoneycuttInc/Thorncastle | https://api.github.com/repos/HoneycuttInc/Thorncastle | closed | Task 2.5: Group is labeled the Protection group | High Priority | Step states:
(3) On the Ribbon, in the Sensitivity group, select Protection, and then select Confidential > All Contoso Employees.
However, this is what I see:

| 1.0 | Task 2.5: Group is labeled the Protection group - Step states:
(3) On the Ribbon, in the Sensitivity group, select Protection, and then select Confidential > All Contoso Employees.
However, this is what I see:

| priority | task group is labeled the protection group step states on the ribbon in the sensitivity group select protection and then select confidential all contoso employees however this is what i see | 1 |
704,845 | 24,211,550,143 | IssuesEvent | 2022-09-25 23:33:05 | MSRevive/MSCScripts | https://api.github.com/repos/MSRevive/MSCScripts | closed | m2_quest: sylphiel can be lured out of the house and hidden | bug ๐ high priority | Talking to her redirects her, can she can be lured out of the house and put somewhere. | 1.0 | m2_quest: sylphiel can be lured out of the house and hidden - Talking to her redirects her, can she can be lured out of the house and put somewhere. | priority | quest sylphiel can be lured out of the house and hidden talking to her redirects her can she can be lured out of the house and put somewhere | 1 |
152,604 | 5,857,638,325 | IssuesEvent | 2017-05-12 00:06:26 | minio/minio | https://api.github.com/repos/minio/minio | opened | List bucket not listing gcs buckets on windows. | priority: high |
## Expected Behavior
mc ls gcs should show output but it does not
## Current Behavior
See Image

## Possible Solution
## Steps to Reproduce (for bugs)
Do this on windows server 2016 to see this error.
## Context
Unable to use gcs on windows platform.
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Version used (`minio version`):
```
minio.exe version
Version: DEVELOPMENT.GOGET
Release-Tag: DEVELOPMENT.GOGET
Commit-ID: DEVELOPMENT.GOGET
```
* Environment name and version (e.g. nginx 1.9.1):
* Server type and version: built from source
* Operating System and version (`uname -a`): This may not help for windows 2016 server platform but here's what i get on git bash MINGW64_NT-10.0 EC2AMAZ-OH9HN9F 2.8.0(0.310/5/3) 2017-04-02 13:38 x86_64 Msys
* Link to your project:
| 1.0 | List bucket not listing gcs buckets on windows. -
## Expected Behavior
mc ls gcs should show output but it does not
## Current Behavior
See Image

## Possible Solution
## Steps to Reproduce (for bugs)
Do this on windows server 2016 to see this error.
## Context
Unable to use gcs on windows platform.
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Version used (`minio version`):
```
minio.exe version
Version: DEVELOPMENT.GOGET
Release-Tag: DEVELOPMENT.GOGET
Commit-ID: DEVELOPMENT.GOGET
```
* Environment name and version (e.g. nginx 1.9.1):
* Server type and version: built from source
* Operating System and version (`uname -a`): This may not help for windows 2016 server platform but here's what i get on git bash MINGW64_NT-10.0 EC2AMAZ-OH9HN9F 2.8.0(0.310/5/3) 2017-04-02 13:38 x86_64 Msys
* Link to your project:
| priority | list bucket not listing gcs buckets on windows expected behavior mc ls gcs should show output but it does not current behavior see image possible solution steps to reproduce for bugs do this on windows server to see this error context unable to use gcs on windows platform your environment version used minio version minio exe version version development goget release tag development goget commit id development goget environment name and version e g nginx server type and version built from source operating system and version uname a this may not help for windows server platform but here s what i get on git bash nt msys link to your project | 1 |
340,751 | 10,277,877,057 | IssuesEvent | 2019-08-25 09:20:42 | qgis/QGIS | https://api.github.com/repos/qgis/QGIS | closed | QGIS Crashed | Bug Crash/Data Corruption Feedback High Priority | Author Name: **Phil K** (Phil K)
Original Redmine Issue: [22014](https://issues.qgis.org/issues/22014)
Affected QGIS version: 3.6.2
Redmine category:unknown
---
Crash on Exit, happens on all versions of 3.x that I have tried.
Same result each time.
## User Feedback
Crash on Exit, happens on all versions of 3.x that I have tried.
Same result each time.
## Report Details
*Crash ID*: 029f5c6666883dccbe82e27c6e58cc0b7b3cc412
*Stack Trace*
```
QgsMapToolExtent::~QgsMapToolExtent :
PyInit__gui :
QObjectPrivate::deleteChildren :
QWidget::~QWidget :
QgsVectorLayerProperties::`default constructor closure' :
QgisApp::~QgisApp :
CPLStringList::List :
main :
BaseThreadInitThunk :
RtlUserThreadStart :
```
*QGIS Info*
QGIS Version: 3.6.2-Noosa
QGIS code revision: 656500e0c4
Compiled against Qt: 5.11.2
Running against Qt: 5.11.2
Compiled against GDAL: 2.4.1
Running against GDAL: 2.4.1
*System Info*
CPU Type: x86_64
Kernel Type: winnt
Kernel Version: 6.1.7601
| 1.0 | QGIS Crashed - Author Name: **Phil K** (Phil K)
Original Redmine Issue: [22014](https://issues.qgis.org/issues/22014)
Affected QGIS version: 3.6.2
Redmine category:unknown
---
Crash on Exit, happens on all versions of 3.x that I have tried.
Same result each time.
## User Feedback
Crash on Exit, happens on all versions of 3.x that I have tried.
Same result each time.
## Report Details
*Crash ID*: 029f5c6666883dccbe82e27c6e58cc0b7b3cc412
*Stack Trace*
```
QgsMapToolExtent::~QgsMapToolExtent :
PyInit__gui :
QObjectPrivate::deleteChildren :
QWidget::~QWidget :
QgsVectorLayerProperties::`default constructor closure' :
QgisApp::~QgisApp :
CPLStringList::List :
main :
BaseThreadInitThunk :
RtlUserThreadStart :
```
*QGIS Info*
QGIS Version: 3.6.2-Noosa
QGIS code revision: 656500e0c4
Compiled against Qt: 5.11.2
Running against Qt: 5.11.2
Compiled against GDAL: 2.4.1
Running against GDAL: 2.4.1
*System Info*
CPU Type: x86_64
Kernel Type: winnt
Kernel Version: 6.1.7601
| priority | qgis crashed author name phil k phil k original redmine issue affected qgis version redmine category unknown crash on exit happens on all versions of x that i have tried same result each time user feedback crash on exit happens on all versions of x that i have tried same result each time report details crash id stack trace qgsmaptoolextent qgsmaptoolextent pyinit gui qobjectprivate deletechildren qwidget qwidget qgsvectorlayerproperties default constructor closure qgisapp qgisapp cplstringlist list main basethreadinitthunk rtluserthreadstart qgis info qgis version noosa qgis code revision compiled against qt running against qt compiled against gdal running against gdal system info cpu type kernel type winnt kernel version | 1 |
453,551 | 13,081,971,423 | IssuesEvent | 2020-08-01 12:56:35 | Zettlr/Zettlr | https://api.github.com/repos/Zettlr/Zettlr | closed | [BUG] Too many "file has been modified remotely" notifications | bug [critical] confirmed priority:high v1.7.x | ## Description
When I was testing syncing apps, I've seen many "remotely modified" notifications. After settling on one, I get like one a month, perfectly valid.
After upgrading to 1.7.0 beta, I see these notifications very often. It is completely unrelated to remote modifications, since I'm offline. There is something wrong in the saving code.
## Reproducing
* Edit a file.
* Switch to another app.
* Retry until you see the message.
## Expected behaviour
Not a single "file has been modified remotely" notification as long as I'm neither syncing with other machines, nor modifying files in different apps.
## Platform
- OS and version: macOS 10.14.5
- Zettlr Version: 1.7.0-beta1
## Additional information
I can debug this, but there's nothing useful in the console. | 1.0 | [BUG] Too many "file has been modified remotely" notifications - ## Description
When I was testing syncing apps, I've seen many "remotely modified" notifications. After settling on one, I get like one a month, perfectly valid.
After upgrading to 1.7.0 beta, I see these notifications very often. It is completely unrelated to remote modifications, since I'm offline. There is something wrong in the saving code.
## Reproducing
* Edit a file.
* Switch to another app.
* Retry until you see the message.
## Expected behaviour
Not a single "file has been modified remotely" notification as long as I'm neither syncing with other machines, nor modifying files in different apps.
## Platform
- OS and version: macOS 10.14.5
- Zettlr Version: 1.7.0-beta1
## Additional information
I can debug this, but there's nothing useful in the console. | priority | too many file has been modified remotely notifications description when i was testing syncing apps i ve seen many remotely modified notifications after settling on one i get like one a month perfectly valid after upgrading to beta i see these notifications very often it is completely unrelated to remote modifications since i m offline there is something wrong in the saving code reproducing edit a file switch to another app retry until you see the message expected behaviour not a single file has been modified remotely notification as long as i m neither syncing with other machines nor modifying files in different apps platform os and version macos zettlr version additional information i can debug this but there s nothing useful in the console | 1 |
663,072 | 22,160,996,929 | IssuesEvent | 2022-06-04 14:04:03 | ms-club-sliit/minihackathon-2022 | https://api.github.com/repos/ms-club-sliit/minihackathon-2022 | closed | GitHub CI/ CD pipeline | deployment configuration high priority | Need to implement CI/ CD pipeline for the following environments. Use GitHub pages for deployment
* Production (master)
* Staging (staging) | 1.0 | GitHub CI/ CD pipeline - Need to implement CI/ CD pipeline for the following environments. Use GitHub pages for deployment
* Production (master)
* Staging (staging) | priority | github ci cd pipeline need to implement ci cd pipeline for the following environments use github pages for deployment production master staging staging | 1 |
113,044 | 4,541,914,791 | IssuesEvent | 2016-09-09 19:24:09 | ClinGen/clincoded | https://api.github.com/repos/ClinGen/clincoded | opened | Only allow edits to BP6 and PP5 criteria for BRCA1 and BRCA2 gene variants | external curator priority: high R7 variant curation interface | "Reputable source" is an ambiguous term and so may lead to some confusion when applying the BP6 and PP5 rules. Until there is a ClinGen list of "reputable sources" then editing BP6 and PP5 criteria will be restricted to BRCA1 and BRCA2 variants. The message to explain this blocking will be:
โThis rule currently only applies to BRCA1 and BRCA2 variants using SCRP dataโ

| 1.0 | Only allow edits to BP6 and PP5 criteria for BRCA1 and BRCA2 gene variants - "Reputable source" is an ambiguous term and so may lead to some confusion when applying the BP6 and PP5 rules. Until there is a ClinGen list of "reputable sources" then editing BP6 and PP5 criteria will be restricted to BRCA1 and BRCA2 variants. The message to explain this blocking will be:
โThis rule currently only applies to BRCA1 and BRCA2 variants using SCRP dataโ

| priority | only allow edits to and criteria for and gene variants reputable source is an ambiguous term and so may lead to some confusion when applying the and rules until there is a clingen list of reputable sources then editing and criteria will be restricted to and variants the message to explain this blocking will be โthis rule currently only applies to and variants using scrp dataโ | 1 |
490,001 | 14,114,337,556 | IssuesEvent | 2020-11-07 15:33:30 | AY2021S1-CS2103T-W11-2/tp | https://api.github.com/repos/AY2021S1-CS2103T-W11-2/tp | closed | Add summary feature details to UserGuide | priority.High severity.High | Make it clear that the feature only displays upcoming(based on date) otherwise it will be perceived as a bug! | 1.0 | Add summary feature details to UserGuide - Make it clear that the feature only displays upcoming(based on date) otherwise it will be perceived as a bug! | priority | add summary feature details to userguide make it clear that the feature only displays upcoming based on date otherwise it will be perceived as a bug | 1 |
744,916 | 25,960,714,563 | IssuesEvent | 2022-12-18 21:26:35 | ITI/searcch | https://api.github.com/repos/ITI/searcch | closed | save search form inputs as well as results | bug priority: high | Right now, after searching for an artifact, clicking "Read More", and clicking "Back" saves your search results, but not your search form inputs. So, we need to save the inputs too, so that iterative refinement is possible and retyping is unnecessary. Of course, this will also necessitate a "clear form" widget, but that's easy. | 1.0 | save search form inputs as well as results - Right now, after searching for an artifact, clicking "Read More", and clicking "Back" saves your search results, but not your search form inputs. So, we need to save the inputs too, so that iterative refinement is possible and retyping is unnecessary. Of course, this will also necessitate a "clear form" widget, but that's easy. | priority | save search form inputs as well as results right now after searching for an artifact clicking read more and clicking back saves your search results but not your search form inputs so we need to save the inputs too so that iterative refinement is possible and retyping is unnecessary of course this will also necessitate a clear form widget but that s easy | 1 |
126,136 | 4,972,937,727 | IssuesEvent | 2016-12-05 23:04:14 | creativedisturbance/podcasts | https://api.github.com/repos/creativedisturbance/podcasts | closed | Libsyn password | High Priority | Libsyn password from ASL 1.1.3 on google drive is not working. Need to get access ASAP. | 1.0 | Libsyn password - Libsyn password from ASL 1.1.3 on google drive is not working. Need to get access ASAP. | priority | libsyn password libsyn password from asl on google drive is not working need to get access asap | 1 |
190,895 | 6,823,476,816 | IssuesEvent | 2017-11-08 00:10:22 | CS2103AUG2017-W14-B3/main | https://api.github.com/repos/CS2103AUG2017-W14-B3/main | closed | Change logic for 'find' command | enhancement highpriority | - Add the logic from the 'search' command to the 'find' command
- Remove the search command | 1.0 | Change logic for 'find' command - - Add the logic from the 'search' command to the 'find' command
- Remove the search command | priority | change logic for find command add the logic from the search command to the find command remove the search command | 1 |
242,143 | 7,838,649,872 | IssuesEvent | 2018-06-18 11:01:39 | canonical-websites/www.ubuntu.com | https://api.github.com/repos/canonical-websites/www.ubuntu.com | opened | Update livechat button styles (beta) | Priority: High | From @anasereijo in https://github.com/ubuntudesign/web-squad/issues/658:
> please make sure the font is Ubuntu with the size and style we use on buttons.
Also amend the border to be the same style as buttons:
border-radius: .125rem;
border-style: solid;
border-width: 1px;
It may not be possible to do all of the above as the button sits within an iframe. | 1.0 | Update livechat button styles (beta) - From @anasereijo in https://github.com/ubuntudesign/web-squad/issues/658:
> please make sure the font is Ubuntu with the size and style we use on buttons.
Also amend the border to be the same style as buttons:
border-radius: .125rem;
border-style: solid;
border-width: 1px;
It may not be possible to do all of the above as the button sits within an iframe. | priority | update livechat button styles beta from anasereijo in please make sure the font is ubuntu with the size and style we use on buttons also amend the border to be the same style as buttons border radius border style solid border width it may not be possible to do all of the above as the button sits within an iframe | 1 |
420,522 | 12,239,209,104 | IssuesEvent | 2020-05-04 21:13:57 | impresso/impresso-frontend | https://api.github.com/repos/impresso/impresso-frontend | closed | bootstrap checkbox broken style | high priority | There is a problem with rendering of the switch checkbox in Impresso.
According to the doco, this is how it should look like: https://bootstrap-vue.org/docs/components/form-checkbox#switch-style-checkboxes
But in Impresso it looks like this:
<img width="329" alt="Screen Shot 2020-04-24 at 11 01 03" src="https://user-images.githubusercontent.com/89853/80221552-bd98e200-8645-11ea-8cd9-d74ad00dc2c0.png">
I traced it down to some style manipulation in impresso-theme - bootpresso.css
As I understand changes to generic bootstrap label classes override specific changes to checkbox switch style labels. We are going to use this particular checkbox style so it would be good to have it fixed. | 1.0 | bootstrap checkbox broken style - There is a problem with rendering of the switch checkbox in Impresso.
According to the doco, this is how it should look like: https://bootstrap-vue.org/docs/components/form-checkbox#switch-style-checkboxes
But in Impresso it looks like this:
<img width="329" alt="Screen Shot 2020-04-24 at 11 01 03" src="https://user-images.githubusercontent.com/89853/80221552-bd98e200-8645-11ea-8cd9-d74ad00dc2c0.png">
I traced it down to some style manipulation in impresso-theme - bootpresso.css
As I understand changes to generic bootstrap label classes override specific changes to checkbox switch style labels. We are going to use this particular checkbox style so it would be good to have it fixed. | priority | bootstrap checkbox broken style there is a problem with rendering of the switch checkbox in impresso according to the doco this is how it should look like but in impresso it looks like this img width alt screen shot at src i traced it down to some style manipulation in impresso theme bootpresso css as i understand changes to generic bootstrap label classes override specific changes to checkbox switch style labels we are going to use this particular checkbox style so it would be good to have it fixed | 1 |
641,779 | 20,834,384,002 | IssuesEvent | 2022-03-20 00:23:47 | mradamcox/loc-insurancemaps | https://api.github.com/repos/mradamcox/loc-insurancemaps | closed | [Bug] Regression: updating the GCPs on a layer doesn't produce an altered layer | bug priority: high app: georeference | **Describe the problem**
Previously, editing the GCPs for a layer would properly re-run the georeferencing process and overwrite the existing layer. I noticed last night that at some point this stopped working: The new GCPs are saved, the georeferencing process runs entirely without error, but the layer in Geoserver still stays the same.
More specifically:
- the preview in the interface is correctly based on the new GCPs
- the tif that is created from the georeferencer is correct
- this tif is properly copied to the `uploads/layers/` directory
- this tif is NOT properly copied over to the Geoserver data directory.
**Expected behavior**
A clear and concise description of what you expected to happen.
**To Reproduce**
Steps to reproduce the behavior:
1. Find a layer that has already been georeferenced
2. Alter one of the GCPs in a way that drastically changes the appearance of the layer (for convenience)
3. Submit the GCPs
4. Navigate to the layer detail page or the volume summary: the layer will appear as before.
**Environment info:**
- Device: *
- Operating System: ubuntu | 1.0 | [Bug] Regression: updating the GCPs on a layer doesn't produce an altered layer - **Describe the problem**
Previously, editing the GCPs for a layer would properly re-run the georeferencing process and overwrite the existing layer. I noticed last night that at some point this stopped working: The new GCPs are saved, the georeferencing process runs entirely without error, but the layer in Geoserver still stays the same.
More specifically:
- the preview in the interface is correctly based on the new GCPs
- the tif that is created from the georeferencer is correct
- this tif is properly copied to the `uploads/layers/` directory
- this tif is NOT properly copied over to the Geoserver data directory.
**Expected behavior**
A clear and concise description of what you expected to happen.
**To Reproduce**
Steps to reproduce the behavior:
1. Find a layer that has already been georeferenced
2. Alter one of the GCPs in a way that drastically changes the appearance of the layer (for convenience)
3. Submit the GCPs
4. Navigate to the layer detail page or the volume summary: the layer will appear as before.
**Environment info:**
- Device: *
- Operating System: ubuntu | priority | regression updating the gcps on a layer doesn t produce an altered layer describe the problem previously editing the gcps for a layer would properly re run the georeferencing process and overwrite the existing layer i noticed last night that at some point this stopped working the new gcps are saved the georeferencing process runs entirely without error but the layer in geoserver still stays the same more specifically the preview in the interface is correctly based on the new gcps the tif that is created from the georeferencer is correct this tif is properly copied to the uploads layers directory this tif is not properly copied over to the geoserver data directory expected behavior a clear and concise description of what you expected to happen to reproduce steps to reproduce the behavior find a layer that has already been georeferenced alter one of the gcps in a way that drastically changes the appearance of the layer for convenience submit the gcps navigate to the layer detail page or the volume summary the layer will appear as before environment info device operating system ubuntu | 1 |
487,894 | 14,061,030,407 | IssuesEvent | 2020-11-03 07:21:12 | bryntum/support | https://api.github.com/repos/bryntum/support | closed | Missing $name for widget classes and localization | bug high-priority resolved | Some columns are not properly localized in production build

When building production app from sources, some locales are not properly applied.
To reproduce:
1. create new webpack app
2. import locale, locale manager, apply locale, instantiate gantt
3. run the demo, see some columns are localized and some not
Reason: `$name` is missing on some classes | 1.0 | Missing $name for widget classes and localization - Some columns are not properly localized in production build

When building production app from sources, some locales are not properly applied.
To reproduce:
1. create new webpack app
2. import locale, locale manager, apply locale, instantiate gantt
3. run the demo, see some columns are localized and some not
Reason: `$name` is missing on some classes | priority | missing name for widget classes and localization some columns are not properly localized in production build when building production app from sources some locales are not properly applied to reproduce create new webpack app import locale locale manager apply locale instantiate gantt run the demo see some columns are localized and some not reason name is missing on some classes | 1 |
379,171 | 11,216,978,589 | IssuesEvent | 2020-01-07 08:05:00 | brainkeeper/frontend | https://api.github.com/repos/brainkeeper/frontend | closed | Create persons component in angular | high priority | As the developer of the Session screen I want a โpersonโ component witch automatically scales to its available width and chooses its height accordingly to preserve consistent user experience | 1.0 | Create persons component in angular - As the developer of the Session screen I want a โpersonโ component witch automatically scales to its available width and chooses its height accordingly to preserve consistent user experience | priority | create persons component in angular as the developer of the session screen i want a โpersonโ component witch automatically scales to its available width and chooses its height accordingly to preserve consistent user experience | 1 |
5,225 | 2,573,091,701 | IssuesEvent | 2015-02-11 05:42:00 | okTurtles/dnschain | https://api.github.com/repos/okTurtles/dnschain | opened | Implement structure for conforming to Openname Resolver API | API high priority | PR [opened](https://github.com/openname/openname-specifications/pull/35).
See new (completely rewritten) RESTful API:
https://github.com/okTurtles/openname-specifications/blob/resolvers/resolvers.md
- [express](http://expressjs.com/) should be used to do this. It's already included as a dependency in the `admin` branch. | 1.0 | Implement structure for conforming to Openname Resolver API - PR [opened](https://github.com/openname/openname-specifications/pull/35).
See new (completely rewritten) RESTful API:
https://github.com/okTurtles/openname-specifications/blob/resolvers/resolvers.md
- [express](http://expressjs.com/) should be used to do this. It's already included as a dependency in the `admin` branch. | priority | implement structure for conforming to openname resolver api pr see new completely rewritten restful api should be used to do this it s already included as a dependency in the admin branch | 1 |
274,715 | 8,564,557,989 | IssuesEvent | 2018-11-09 17:03:58 | lbryio/lbry | https://api.github.com/repos/lbryio/lbry | closed | Error when calling `status` on app startup: "'Headers' object has no attribute 'io'" | priority: high type: bug | ```
{
"error": {
"code": -32500,
"data": [
" File \"twisted/internet/defer.py\", line 654, in _runCallbacks",
" ",
" File \"lbrynet/daemon/auth/server.py\", line 96, in trap",
" ",
" File \"twisted/python/failure.py\", line 439, in trap",
" ",
" File \"twisted/python/failure.py\", line 467, in raiseException",
" ",
" File \"lbrynet/daemon/Daemon.py\", line 800, in jsonrpc_status",
" ",
" File \"twisted/internet/defer.py\", line 151, in maybeDeferred",
" ",
" File \"lbrynet/daemon/Components.py\", line 339, in get_status",
" ",
" File \"lbrynet/wallet/manager.py\", line 40, in get_local_height",
" ",
" File \"torba/baseheader.py\", line 82, in height",
" ",
" File \"torba/baseheader.py\", line 65, in __len__",
" ",
"builtins.AttributeError: 'Headers' object has no attribute 'io'"
],
"message": "'Headers' object has no attribute 'io'"
},
"id": 1541611211350,
"jsonrpc": "2.0"
}
```
## The Issue
I've seen this a few times, it seems like its random on startup. When I see the error, I can just refresh the app, and the status call works.
| 1.0 | Error when calling `status` on app startup: "'Headers' object has no attribute 'io'" - ```
{
"error": {
"code": -32500,
"data": [
" File \"twisted/internet/defer.py\", line 654, in _runCallbacks",
" ",
" File \"lbrynet/daemon/auth/server.py\", line 96, in trap",
" ",
" File \"twisted/python/failure.py\", line 439, in trap",
" ",
" File \"twisted/python/failure.py\", line 467, in raiseException",
" ",
" File \"lbrynet/daemon/Daemon.py\", line 800, in jsonrpc_status",
" ",
" File \"twisted/internet/defer.py\", line 151, in maybeDeferred",
" ",
" File \"lbrynet/daemon/Components.py\", line 339, in get_status",
" ",
" File \"lbrynet/wallet/manager.py\", line 40, in get_local_height",
" ",
" File \"torba/baseheader.py\", line 82, in height",
" ",
" File \"torba/baseheader.py\", line 65, in __len__",
" ",
"builtins.AttributeError: 'Headers' object has no attribute 'io'"
],
"message": "'Headers' object has no attribute 'io'"
},
"id": 1541611211350,
"jsonrpc": "2.0"
}
```
## The Issue
I've seen this a few times, it seems like its random on startup. When I see the error, I can just refresh the app, and the status call works.
| priority | error when calling status on app startup headers object has no attribute io error code data file twisted internet defer py line in runcallbacks file lbrynet daemon auth server py line in trap file twisted python failure py line in trap file twisted python failure py line in raiseexception file lbrynet daemon daemon py line in jsonrpc status file twisted internet defer py line in maybedeferred file lbrynet daemon components py line in get status file lbrynet wallet manager py line in get local height file torba baseheader py line in height file torba baseheader py line in len builtins attributeerror headers object has no attribute io message headers object has no attribute io id jsonrpc the issue i ve seen this a few times it seems like its random on startup when i see the error i can just refresh the app and the status call works | 1 |
614,668 | 19,188,043,542 | IssuesEvent | 2021-12-05 14:41:33 | myConsciousness/duolingo4d | https://api.github.com/repos/myConsciousness/duolingo4d | closed | ใฆใผใถใผIDใฎๅใๆๅญๅใงๆจๆบๅ | Priority: high Type: improvement | <!--
Please describe the feature you'd like to see us implement along with a use
case.
-->
Duolingo APIใใ่ฟๅดใใใใฆใผใถใผIDใฏๆๅญๅใจๆฐๅคใงๅใๆททๅจใใฆใใใใ
Duolingo4DใงใฏใฆใผใถใผIDใๆๅญๅใจใใฆๆฑใใใใซๆจๆบๅใใใ | 1.0 | ใฆใผใถใผIDใฎๅใๆๅญๅใงๆจๆบๅ - <!--
Please describe the feature you'd like to see us implement along with a use
case.
-->
Duolingo APIใใ่ฟๅดใใใใฆใผใถใผIDใฏๆๅญๅใจๆฐๅคใงๅใๆททๅจใใฆใใใใ
Duolingo4DใงใฏใฆใผใถใผIDใๆๅญๅใจใใฆๆฑใใใใซๆจๆบๅใใใ | priority | ใฆใผใถใผidใฎๅใๆๅญๅใงๆจๆบๅ please describe the feature you d like to see us implement along with a use case duolingo apiใใ่ฟๅดใใใใฆใผใถใผidใฏๆๅญๅใจๆฐๅคใงๅใๆททๅจใใฆใใใใ ใ | 1 |
284,719 | 8,749,794,988 | IssuesEvent | 2018-12-13 17:17:59 | AugurProject/augur | https://api.github.com/repos/AugurProject/augur | closed | Server Error: error creating table | Bug Priority: High Unreproducible | 
wellspenttimeToday at 3:15 AM
reported this screen shot,
OS: Windows 10
version: 1.4
...
Huh.... That doesn't make much sense!!
-pgebheim
...
@tomhaile -- this was reported in #issues correct?
I haven't seen any else report this, but it would be an error during migration -- seems like we'd get this a lot if it was gonna happen at all.
-pgebheim
...
Yes, that was reported in #issues channel.
-bthaile
...
I only saw this reported once, no more instances of it have popped up. We might just need to keep an eye out.
-bthaile
...
Ok, I'll set it to Unreproducible Bugs so we can still track it.
-adrake33 | 1.0 | Server Error: error creating table - 
wellspenttimeToday at 3:15 AM
reported this screen shot,
OS: Windows 10
version: 1.4
...
Huh.... That doesn't make much sense!!
-pgebheim
...
@tomhaile -- this was reported in #issues correct?
I haven't seen any else report this, but it would be an error during migration -- seems like we'd get this a lot if it was gonna happen at all.
-pgebheim
...
Yes, that was reported in #issues channel.
-bthaile
...
I only saw this reported once, no more instances of it have popped up. We might just need to keep an eye out.
-bthaile
...
Ok, I'll set it to Unreproducible Bugs so we can still track it.
-adrake33 | priority | server error error creating table wellspenttimetoday at am reported this screen shot os windows version huh that doesn t make much sense pgebheim tomhaile this was reported in issues correct i haven t seen any else report this but it would be an error during migration seems like we d get this a lot if it was gonna happen at all pgebheim yes that was reported in issues channel bthaile i only saw this reported once no more instances of it have popped up we might just need to keep an eye out bthaile ok i ll set it to unreproducible bugs so we can still track it | 1 |
709,063 | 24,366,602,750 | IssuesEvent | 2022-10-03 15:37:32 | vscentrum/vsc-software-stack | https://api.github.com/repos/vscentrum/vsc-software-stack | opened | scib-pipeline | difficulty: medium new priority: high Python R | * link to support ticket: [#2022100360002454](https://otrsdict.ugent.be/otrs/index.pl?Action=AgentTicketZoom;TicketID=94981)
* website: https://github.com/theislab/scib-pipeline
* installation docs: https://github.com/theislab/scib-pipeline#installation
* toolchain: `foss/2021b`
* easyblock to use: `???`
* required dependencies:
* ???
* notes:
* ...
* effort: *(TBD)*
| 1.0 | scib-pipeline - * link to support ticket: [#2022100360002454](https://otrsdict.ugent.be/otrs/index.pl?Action=AgentTicketZoom;TicketID=94981)
* website: https://github.com/theislab/scib-pipeline
* installation docs: https://github.com/theislab/scib-pipeline#installation
* toolchain: `foss/2021b`
* easyblock to use: `???`
* required dependencies:
* ???
* notes:
* ...
* effort: *(TBD)*
| priority | scib pipeline link to support ticket website installation docs toolchain foss easyblock to use required dependencies notes effort tbd | 1 |
829,824 | 31,924,727,896 | IssuesEvent | 2023-09-19 00:14:47 | yt-dlp/yt-dlp | https://api.github.com/repos/yt-dlp/yt-dlp | opened | `DeprecationWarning` when using `-v` and having `sqlite3` on py >=3.12 | bug high-priority | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm reporting a bug unrelated to a specific site
- [X] I've verified that I'm running yt-dlp version **2023.07.06** ([update instructions](https://github.com/yt-dlp/yt-dlp#update)) or later (specify commit)
- [X] I've checked that all provided URLs are playable in a browser with the same IP and same login details
- [X] I've checked that all URLs and arguments with special characters are [properly quoted or escaped](https://github.com/yt-dlp/yt-dlp/wiki/FAQ#video-url-contains-an-ampersand--and-im-getting-some-strange-output-1-2839-or-v-is-not-recognized-as-an-internal-or-external-command)
- [X] I've searched [known issues](https://github.com/yt-dlp/yt-dlp/issues/3766) and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues?q=) for similar issues **including closed ones**. DO NOT post duplicates
- [X] I've read the [guidelines for opening an issue](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#opening-an-issue)
### Provide a description that is worded well enough to be understood
This only happens if `sqlite3` is available, so doesnt get triggered in regular tests (add `-r requirements.txt`?).
Not sure how to fix this since `compat_utils.get_package_info` should be generic.
### Provide verbose output that clearly demonstrates the problem
- [X] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`)
- [ ] If using API, add `'verbose': True` to `YoutubeDL` params instead
- [X] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below
### Complete Verbose Output
```shell
[debug] Command-line config: ['-v']
[debug] User config "C:\Users\grub4k\yt-dlp.conf": ['--alias', 'login', '--cookies-from-browser firefox', '--alias', 'plugins', '--plugin-dir E:\\Projekte\\yt-dlp-plugins', '--alias', 'plugin', '--plugin-dir E:\\Projekte\\yt-dlp-plugins\\{0}', '--alias', 'subs', '--write-subs --sub-langs all,-live_chat', '--alias', 'aliensrock', '--config-location "d:/Videos/Youtube/Aliensrock/Patreon/yt-dlp.conf"', '--alias', 'game-changer', '--config-location "d:/Videos/Youtube/CollegeHumor/Game Changer/yt-dlp.conf"']
[debug] Encodings: locale cp1252, fs utf-8, pref cp1252, out utf-8, error utf-8, screen utf-8
[debug] yt-dlp version stable@2023.07.06 [b532a3481] (source)
[debug] Lazy loading extractors is disabled
[debug] Git HEAD: 5cac6cea0
[debug] Python 3.12.0rc2 (CPython AMD64 64bit) - Windows-11-10.0.22000-SP0 (OpenSSL 3.0.10 1 Aug 2023)
[debug] exe versions: ffmpeg n6.0-34-g3d5edb89e7-20230819 (setts), ffprobe n6.0-34-g3d5edb89e7-20230819
Traceback (most recent call last):
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\__main__.py", line 17, in <module>
yt_dlp.main()
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\__init__.py", line 1008, in main
_exit(*variadic(_real_main(argv)))
^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\__init__.py", line 962, in _real_main
with YoutubeDL(ydl_opts) as ydl:
^^^^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\YoutubeDL.py", line 689, in __init__
self.print_debug_header()
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\YoutubeDL.py", line 3975, in print_debug_header
join_nonempty(*get_package_info(m)) for m in available_dependencies.values()
^^^^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\compat\compat_utils.py", line 16, in get_package_info
version=str(next(filter(None, (
^^^^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\compat\compat_utils.py", line 17, in <genexpr>
getattr(module, attr, None)
File "C:\Users\grub4k\AppData\Local\Programs\Python\Python312\Lib\sqlite3\__init__.py", line 67, in __getattr__
warn(f"{name} is deprecated and will be removed in Python 3.14",
DeprecationWarning: version is deprecated and will be removed in Python 3.14
```
| 1.0 | `DeprecationWarning` when using `-v` and having `sqlite3` on py >=3.12 - ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm reporting a bug unrelated to a specific site
- [X] I've verified that I'm running yt-dlp version **2023.07.06** ([update instructions](https://github.com/yt-dlp/yt-dlp#update)) or later (specify commit)
- [X] I've checked that all provided URLs are playable in a browser with the same IP and same login details
- [X] I've checked that all URLs and arguments with special characters are [properly quoted or escaped](https://github.com/yt-dlp/yt-dlp/wiki/FAQ#video-url-contains-an-ampersand--and-im-getting-some-strange-output-1-2839-or-v-is-not-recognized-as-an-internal-or-external-command)
- [X] I've searched [known issues](https://github.com/yt-dlp/yt-dlp/issues/3766) and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues?q=) for similar issues **including closed ones**. DO NOT post duplicates
- [X] I've read the [guidelines for opening an issue](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#opening-an-issue)
### Provide a description that is worded well enough to be understood
This only happens if `sqlite3` is available, so doesnt get triggered in regular tests (add `-r requirements.txt`?).
Not sure how to fix this since `compat_utils.get_package_info` should be generic.
### Provide verbose output that clearly demonstrates the problem
- [X] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`)
- [ ] If using API, add `'verbose': True` to `YoutubeDL` params instead
- [X] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below
### Complete Verbose Output
```shell
[debug] Command-line config: ['-v']
[debug] User config "C:\Users\grub4k\yt-dlp.conf": ['--alias', 'login', '--cookies-from-browser firefox', '--alias', 'plugins', '--plugin-dir E:\\Projekte\\yt-dlp-plugins', '--alias', 'plugin', '--plugin-dir E:\\Projekte\\yt-dlp-plugins\\{0}', '--alias', 'subs', '--write-subs --sub-langs all,-live_chat', '--alias', 'aliensrock', '--config-location "d:/Videos/Youtube/Aliensrock/Patreon/yt-dlp.conf"', '--alias', 'game-changer', '--config-location "d:/Videos/Youtube/CollegeHumor/Game Changer/yt-dlp.conf"']
[debug] Encodings: locale cp1252, fs utf-8, pref cp1252, out utf-8, error utf-8, screen utf-8
[debug] yt-dlp version stable@2023.07.06 [b532a3481] (source)
[debug] Lazy loading extractors is disabled
[debug] Git HEAD: 5cac6cea0
[debug] Python 3.12.0rc2 (CPython AMD64 64bit) - Windows-11-10.0.22000-SP0 (OpenSSL 3.0.10 1 Aug 2023)
[debug] exe versions: ffmpeg n6.0-34-g3d5edb89e7-20230819 (setts), ffprobe n6.0-34-g3d5edb89e7-20230819
Traceback (most recent call last):
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\__main__.py", line 17, in <module>
yt_dlp.main()
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\__init__.py", line 1008, in main
_exit(*variadic(_real_main(argv)))
^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\__init__.py", line 962, in _real_main
with YoutubeDL(ydl_opts) as ydl:
^^^^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\YoutubeDL.py", line 689, in __init__
self.print_debug_header()
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\YoutubeDL.py", line 3975, in print_debug_header
join_nonempty(*get_package_info(m)) for m in available_dependencies.values()
^^^^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\compat\compat_utils.py", line 16, in get_package_info
version=str(next(filter(None, (
^^^^^^^^^^^^^^^^^^^
File "D:\Documents\GitHub\Grub4K\yt-dlp\yt_dlp\compat\compat_utils.py", line 17, in <genexpr>
getattr(module, attr, None)
File "C:\Users\grub4k\AppData\Local\Programs\Python\Python312\Lib\sqlite3\__init__.py", line 67, in __getattr__
warn(f"{name} is deprecated and will be removed in Python 3.14",
DeprecationWarning: version is deprecated and will be removed in Python 3.14
```
| priority | deprecationwarning when using v and having on py do not remove or skip the issue template i understand that i will be blocked if i intentionally remove or skip any mandatory field checklist i m reporting a bug unrelated to a specific site i ve verified that i m running yt dlp version or later specify commit i ve checked that all provided urls are playable in a browser with the same ip and same login details i ve checked that all urls and arguments with special characters are i ve searched and the for similar issues including closed ones do not post duplicates i ve read the provide a description that is worded well enough to be understood this only happens if is available so doesnt get triggered in regular tests add r requirements txt not sure how to fix this since compat utils get package info should be generic provide verbose output that clearly demonstrates the problem run your yt dlp command with vu flag added yt dlp vu if using api add verbose true to youtubedl params instead copy the whole output starting with command line config and insert it below complete verbose output shell command line config user config c users yt dlp conf encodings locale fs utf pref out utf error utf screen utf yt dlp version stable source lazy loading extractors is disabled git head python cpython windows openssl aug exe versions ffmpeg setts ffprobe traceback most recent call last file d documents github yt dlp yt dlp main py line in yt dlp main file d documents github yt dlp yt dlp init py line in main exit variadic real main argv file d documents github yt dlp yt dlp init py line in real main with youtubedl ydl opts as ydl file d documents github yt dlp yt dlp youtubedl py line in init self print debug header file d documents github yt dlp yt dlp youtubedl py line in print debug header join nonempty get package info m for m in available dependencies values file d documents github yt dlp yt dlp compat compat utils py line in get package info version str next filter none file d documents github yt dlp yt dlp compat compat utils py line in getattr module attr none file c users appdata local programs python lib init py line in getattr warn f name is deprecated and will be removed in python deprecationwarning version is deprecated and will be removed in python | 1 |
499,968 | 14,483,387,231 | IssuesEvent | 2020-12-10 15:06:25 | nexB/scancode-toolkit | https://api.github.com/repos/nexB/scancode-toolkit | closed | Incorrect ScanCode version warning | Priority: high bug | ### Description
```(scancode-toolkit) [sesser@nexb ~/Code/scancode-toolkit] scancode -n 6 -clipeu --json-pp ~/Code/workbench-test-scans/sigar-1.6.4-clipeu.json ~/Downloads/sigar-sigar-1.6.4.tar.gz-extract/
Setup plugins...
Collect file inventory...
Scan files for: info, licenses, copyrights, packages, emails, urls with 6 process(es)...
[####################] 317
Scanning done.
Summary: info, licenses, copyrights, packages, emails, urls with 6 process(es)
Errors count: 0
Scan Speed: 11.51 files/sec. 106.40 KB/sec.
Initial counts: 369 resource(s): 317 file(s) and 52 directorie(s)
Final counts: 369 resource(s): 317 file(s) and 52 directorie(s) for 2.86 MB
Timings:
scan_start: 2019-09-11T125343.605919
scan_end: 2019-09-11T125439.560438
setup_scan:licenses: 27.94s
setup: 27.94s
scan: 27.54s
output:json-pp: 0.29s
output: 0.29s
total: 56.33s
Removing temporary files...done.
WARNING: You are using ScanCode Toolkit version 3.1.1.post12.d32880591, however the newer version 3.1.1 is available.
You should download and install the latest version of ScanCode with bug and security fixes and the latest license detection data for accurate scanning.
Visit https://github.com/nexB/scancode-toolkit/releases for details.
(scancode-toolkit) [sesser@nexb ~/Code/scancode-toolkit]
```
From the above output, scancode gives a warning that I am using an out-of-date version even though I am on develop branch version: `3.1.1.post12.d32880591`
### System configuration
For bug reports, it really helps us to know:
* What OS are you running on? **Linux**
* What version of scancode-toolkit was used to generate the scan file? **3.1.1.post12.d32880591**
* What installation method was used to install/run scancode? **git**
| 1.0 | Incorrect ScanCode version warning - ### Description
```(scancode-toolkit) [sesser@nexb ~/Code/scancode-toolkit] scancode -n 6 -clipeu --json-pp ~/Code/workbench-test-scans/sigar-1.6.4-clipeu.json ~/Downloads/sigar-sigar-1.6.4.tar.gz-extract/
Setup plugins...
Collect file inventory...
Scan files for: info, licenses, copyrights, packages, emails, urls with 6 process(es)...
[####################] 317
Scanning done.
Summary: info, licenses, copyrights, packages, emails, urls with 6 process(es)
Errors count: 0
Scan Speed: 11.51 files/sec. 106.40 KB/sec.
Initial counts: 369 resource(s): 317 file(s) and 52 directorie(s)
Final counts: 369 resource(s): 317 file(s) and 52 directorie(s) for 2.86 MB
Timings:
scan_start: 2019-09-11T125343.605919
scan_end: 2019-09-11T125439.560438
setup_scan:licenses: 27.94s
setup: 27.94s
scan: 27.54s
output:json-pp: 0.29s
output: 0.29s
total: 56.33s
Removing temporary files...done.
WARNING: You are using ScanCode Toolkit version 3.1.1.post12.d32880591, however the newer version 3.1.1 is available.
You should download and install the latest version of ScanCode with bug and security fixes and the latest license detection data for accurate scanning.
Visit https://github.com/nexB/scancode-toolkit/releases for details.
(scancode-toolkit) [sesser@nexb ~/Code/scancode-toolkit]
```
From the above output, scancode gives a warning that I am using an out-of-date version even though I am on develop branch version: `3.1.1.post12.d32880591`
### System configuration
For bug reports, it really helps us to know:
* What OS are you running on? **Linux**
* What version of scancode-toolkit was used to generate the scan file? **3.1.1.post12.d32880591**
* What installation method was used to install/run scancode? **git**
| priority | incorrect scancode version warning description scancode toolkit scancode n clipeu json pp code workbench test scans sigar clipeu json downloads sigar sigar tar gz extract setup plugins collect file inventory scan files for info licenses copyrights packages emails urls with process es scanning done summary info licenses copyrights packages emails urls with process es errors count scan speed files sec kb sec initial counts resource s file s and directorie s final counts resource s file s and directorie s for mb timings scan start scan end setup scan licenses setup scan output json pp output total removing temporary files done warning you are using scancode toolkit version however the newer version is available you should download and install the latest version of scancode with bug and security fixes and the latest license detection data for accurate scanning visit for details scancode toolkit from the above output scancode gives a warning that i am using an out of date version even though i am on develop branch version system configuration for bug reports it really helps us to know what os are you running on linux what version of scancode toolkit was used to generate the scan file what installation method was used to install run scancode git | 1 |
354,120 | 10,563,002,639 | IssuesEvent | 2019-10-04 19:47:43 | CredentialEngine/CredentialRegistry | https://api.github.com/repos/CredentialEngine/CredentialRegistry | closed | Timeout issues publishing a ConceptScheme with a large number of concepts | CER Team High Priority | @edgarf
I have been running into timeout issues when attempting to publish a concept scheme with 1452 concepts. The input file is under 2mb. I checked recently published documents and the next biggest file was under 1mb.
I then tried fewer concepts, and progressively more until I ran into the timeout error:
- 100 concepts took 29 sec;
- 200: 40 secs;
- 300: 38 sec;
- 500: 59 sec;
- 750: 93 sec;
- ~900 0r more result in a timeout error - after 100 seconds
Given that the payload is stored verbatim in an envelope and the latter is stored in the database, it is not clear why the publish step would so adversely be affected by a larger payload.
Is the issue related to the slicing and dicing of the document parts?
If so, then maybe that process should be done after the simple save of the payload.
I had been experimenting with parameters under my control to allow more time. I want to now check if the bottleneck occurs at the registry end somewhere. | 1.0 | Timeout issues publishing a ConceptScheme with a large number of concepts - @edgarf
I have been running into timeout issues when attempting to publish a concept scheme with 1452 concepts. The input file is under 2mb. I checked recently published documents and the next biggest file was under 1mb.
I then tried fewer concepts, and progressively more until I ran into the timeout error:
- 100 concepts took 29 sec;
- 200: 40 secs;
- 300: 38 sec;
- 500: 59 sec;
- 750: 93 sec;
- ~900 0r more result in a timeout error - after 100 seconds
Given that the payload is stored verbatim in an envelope and the latter is stored in the database, it is not clear why the publish step would so adversely be affected by a larger payload.
Is the issue related to the slicing and dicing of the document parts?
If so, then maybe that process should be done after the simple save of the payload.
I had been experimenting with parameters under my control to allow more time. I want to now check if the bottleneck occurs at the registry end somewhere. | priority | timeout issues publishing a conceptscheme with a large number of concepts edgarf i have been running into timeout issues when attempting to publish a concept scheme with concepts the input file is under i checked recently published documents and the next biggest file was under i then tried fewer concepts and progressively more until i ran into the timeout error concepts took sec secs sec sec sec more result in a timeout error after seconds given that the payload is stored verbatim in an envelope and the latter is stored in the database it is not clear why the publish step would so adversely be affected by a larger payload is the issue related to the slicing and dicing of the document parts if so then maybe that process should be done after the simple save of the payload i had been experimenting with parameters under my control to allow more time i want to now check if the bottleneck occurs at the registry end somewhere | 1 |
526,470 | 15,293,773,644 | IssuesEvent | 2021-02-24 00:59:58 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | 9.3.0 1928 Cotton plant's Branch near invisible after about 4metres | Category: Art Priority: High Squad: Saguaro Type: Bug | Cotton plants branch goes invisible (other plants do similar ie corn which can be seen in the pic) which from a distance makes it look rather......odd


| 1.0 | 9.3.0 1928 Cotton plant's Branch near invisible after about 4metres - Cotton plants branch goes invisible (other plants do similar ie corn which can be seen in the pic) which from a distance makes it look rather......odd


| priority | cotton plant s branch near invisible after about cotton plants branch goes invisible other plants do similar ie corn which can be seen in the pic which from a distance makes it look rather odd | 1 |
582,299 | 17,358,408,048 | IssuesEvent | 2021-07-29 17:02:57 | Journaly/journaly | https://api.github.com/repos/Journaly/journaly | closed | Complete new DB seeding mechanism | database devops docs high priority | #### Description
- Let's complete the new seeding mechanism with a script that we can run and seed the DB more thoroughly via SQL instead of a long sequence of Prisma calls
- Update the README
- Considerations on keeping this up-to-date as we have migrations (maybe simply adding a step to the migration section of the PR template) | 1.0 | Complete new DB seeding mechanism - #### Description
- Let's complete the new seeding mechanism with a script that we can run and seed the DB more thoroughly via SQL instead of a long sequence of Prisma calls
- Update the README
- Considerations on keeping this up-to-date as we have migrations (maybe simply adding a step to the migration section of the PR template) | priority | complete new db seeding mechanism description let s complete the new seeding mechanism with a script that we can run and seed the db more thoroughly via sql instead of a long sequence of prisma calls update the readme considerations on keeping this up to date as we have migrations maybe simply adding a step to the migration section of the pr template | 1 |
753,003 | 26,337,355,690 | IssuesEvent | 2023-01-10 15:14:44 | hyperledger/aries-cloudagent-python | https://api.github.com/repos/hyperledger/aries-cloudagent-python | closed | Help Wanted: Update CI/CD Pipeline to eliminate Circle/CI | help wanted High Priority | Circle/CI is becoming problematic and we need to move off of it for this repo and over to (I assume) a pure GHActions approach.
Looking for someone in the community that has some experience in this area to grab this issue. Suggested approach:
- Offer to take this task
- Evaluate what is done with Circle/CI now and design a replacement
- Post an approach for a quick review from others that have expertise in this area
- Assuming a thumbs up -- move forward with the switch.
Thanks! | 1.0 | Help Wanted: Update CI/CD Pipeline to eliminate Circle/CI - Circle/CI is becoming problematic and we need to move off of it for this repo and over to (I assume) a pure GHActions approach.
Looking for someone in the community that has some experience in this area to grab this issue. Suggested approach:
- Offer to take this task
- Evaluate what is done with Circle/CI now and design a replacement
- Post an approach for a quick review from others that have expertise in this area
- Assuming a thumbs up -- move forward with the switch.
Thanks! | priority | help wanted update ci cd pipeline to eliminate circle ci circle ci is becoming problematic and we need to move off of it for this repo and over to i assume a pure ghactions approach looking for someone in the community that has some experience in this area to grab this issue suggested approach offer to take this task evaluate what is done with circle ci now and design a replacement post an approach for a quick review from others that have expertise in this area assuming a thumbs up move forward with the switch thanks | 1 |
273,801 | 8,552,912,054 | IssuesEvent | 2018-11-07 22:35:42 | ampproject/amphtml | https://api.github.com/repos/ampproject/amphtml | closed | Allow deferring clicks on elements in amp-story-grid-layer | Category: AMP Story P1: High Priority Type: Feature Request | When an element is clicked in `amp-story-grid-layer`, we would want to defer its action until later (after the user has provided a confirmation that they would like to take the action). | 1.0 | Allow deferring clicks on elements in amp-story-grid-layer - When an element is clicked in `amp-story-grid-layer`, we would want to defer its action until later (after the user has provided a confirmation that they would like to take the action). | priority | allow deferring clicks on elements in amp story grid layer when an element is clicked in amp story grid layer we would want to defer its action until later after the user has provided a confirmation that they would like to take the action | 1 |
152,306 | 5,844,096,918 | IssuesEvent | 2017-05-10 10:54:58 | AnSyn/ansyn | https://api.github.com/repos/AnSyn/ansyn | closed | Add Imagery Module skeleton to app | Epic: Imagery View HighPriority Task |
**Desription:**
<!-- Describe as mutch as you can -->
Build a plug-able skeleton module that will handle the Imagery view logic and will be imported to the main app
| 1.0 | Add Imagery Module skeleton to app -
**Desription:**
<!-- Describe as mutch as you can -->
Build a plug-able skeleton module that will handle the Imagery view logic and will be imported to the main app
| priority | add imagery module skeleton to app desription build a plug able skeleton module that will handle the imagery view logic and will be imported to the main app | 1 |
442,007 | 12,736,254,012 | IssuesEvent | 2020-06-25 16:35:41 | juntofoundation/junto-mobile | https://api.github.com/repos/juntofoundation/junto-mobile | closed | [Cognito] missing points and bugs | Auth High Priority | - [x] delete account not working
- [x] wrong password or username while sign in not handled properly
- [x] crash when resetting the password on iOS
- [x] Created at date should be returned as part of the user object
- [ ] While creating an account, there was a moment where the app hanged and showed a blank screen at stage four
- [x] null reference on Android
- [x] putting in the verification code it tells me its wrong but then continued with the registration no problem
- [x] Let's change email from no-reply@verificationemail to hi@junto.foundation (@jdeepee)
- [x] issue when verification code is not sent #859 | 1.0 | [Cognito] missing points and bugs - - [x] delete account not working
- [x] wrong password or username while sign in not handled properly
- [x] crash when resetting the password on iOS
- [x] Created at date should be returned as part of the user object
- [ ] While creating an account, there was a moment where the app hanged and showed a blank screen at stage four
- [x] null reference on Android
- [x] putting in the verification code it tells me its wrong but then continued with the registration no problem
- [x] Let's change email from no-reply@verificationemail to hi@junto.foundation (@jdeepee)
- [x] issue when verification code is not sent #859 | priority | missing points and bugs delete account not working wrong password or username while sign in not handled properly crash when resetting the password on ios created at date should be returned as part of the user object while creating an account there was a moment where the app hanged and showed a blank screen at stage four null reference on android putting in the verification code it tells me its wrong but then continued with the registration no problem let s change email from no reply verificationemail to hi junto foundation jdeepee issue when verification code is not sent | 1 |
497,562 | 14,380,268,472 | IssuesEvent | 2020-12-02 02:23:31 | monarch-initiative/mondo | https://api.github.com/repos/monarch-initiative/mondo | closed | Question about MONDO_0011649 | high priority | In this case, we think AVSD OMIM 606215 is equivalent to the Orphanet 98722.
What should be the next step ? Should we delete the AVSD MONDO:0011649
class in protege or merge with Atriventricular Septal defect MONDO_0020290 ?
<img width="1186" alt="screen shot 2017-12-05 at 2 10 27 pm" src="https://user-images.githubusercontent.com/16328677/33633543-18313480-d9c6-11e7-8fe7-3d210f2a350a.png">
| 1.0 | Question about MONDO_0011649 - In this case, we think AVSD OMIM 606215 is equivalent to the Orphanet 98722.
What should be the next step ? Should we delete the AVSD MONDO:0011649
class in protege or merge with Atriventricular Septal defect MONDO_0020290 ?
<img width="1186" alt="screen shot 2017-12-05 at 2 10 27 pm" src="https://user-images.githubusercontent.com/16328677/33633543-18313480-d9c6-11e7-8fe7-3d210f2a350a.png">
| priority | question about mondo in this case we think avsd omim is equivalent to the orphanet what should be the next step should we delete the avsd mondo class in protege or merge with atriventricular septal defect mondo img width alt screen shot at pm src | 1 |
818,515 | 30,693,260,948 | IssuesEvent | 2023-07-26 16:35:14 | ArctosDB/arctos | https://api.github.com/repos/ArctosDB/arctos | closed | Error on Save with New Data Entry | Priority-High (Needed for work) Function-DataEntry/Bulkloading Error Messages | Please see error below. Trying to enter first record using new data entry form.

| 1.0 | Error on Save with New Data Entry - Please see error below. Trying to enter first record using new data entry form.

| priority | error on save with new data entry please see error below trying to enter first record using new data entry form | 1 |
303,535 | 9,308,126,164 | IssuesEvent | 2019-03-25 13:56:16 | conan-io/conan | https://api.github.com/repos/conan-io/conan | closed | Upload to bintray in ci fails with `AttributeError: 'NoneType' object has no attribute 'file_sums'` | complex: medium component: server priority: high stage: in-progress | Uploading packages to bintray on travis-ci fails with an `AttributeError`.
https://travis-ci.org/madebr/conan-tcl/jobs/503306695#L2017
The package is a standard conan recipe: https://github.com/madebr/conan-tcl/tree/testing/8.6.9
```
Traceback (most recent call last):
File "/opt/pyenv/versions/3.7.1/bin/run_create_in_docker", line 11, in <module>
load_entry_point('conan-package-tools==0.24.0', 'console_scripts', 'run_create_in_docker')()
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/cpt/run_in_docker.py", line 45, in run
runner.run()
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/cpt/runner.py", line 111, in run
self._upload, package_id)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/cpt/uploader.py", line 43, in upload_packages
retry=int(self._upload_retry))
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/conan_api.py", line 93, in wrapper
return f(*args, **kwargs)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/conan_api.py", line 855, in upload
retry_wait, integrity_check, policy, remote_name, query=query)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 87, in upload
integrity_check, policy, remote, upload_recorder)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 189, in _upload_ref
self._upload_recipe(ref, conanfile, retry, retry_wait, policy, recipe_remote)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 229, in _upload_recipe
remote, remote_manifest)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 342, in _recipe_files_to_upload
if remote_manifest == local_manifest:
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/model/manifest.py", line 127, in __eq__
return self.file_sums == other.file_sums
AttributeError: 'NoneType' object has no attribute 'file_sums'
Traceback (most recent call last):
File "build.py", line 10, in <module>
builder.run()
File "/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/cpt/packager.py", line 449, in run
self.run_builds(base_profile_name=base_profile_name)
File "/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/cpt/packager.py", line 554, in run_builds
docker_entry_script=self.docker_entry_script)
File "/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/cpt/runner.py", line 237, in run
raise Exception("Error building: %s" % command)
```
| 1.0 | Upload to bintray in ci fails with `AttributeError: 'NoneType' object has no attribute 'file_sums'` - Uploading packages to bintray on travis-ci fails with an `AttributeError`.
https://travis-ci.org/madebr/conan-tcl/jobs/503306695#L2017
The package is a standard conan recipe: https://github.com/madebr/conan-tcl/tree/testing/8.6.9
```
Traceback (most recent call last):
File "/opt/pyenv/versions/3.7.1/bin/run_create_in_docker", line 11, in <module>
load_entry_point('conan-package-tools==0.24.0', 'console_scripts', 'run_create_in_docker')()
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/cpt/run_in_docker.py", line 45, in run
runner.run()
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/cpt/runner.py", line 111, in run
self._upload, package_id)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/cpt/uploader.py", line 43, in upload_packages
retry=int(self._upload_retry))
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/conan_api.py", line 93, in wrapper
return f(*args, **kwargs)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/conan_api.py", line 855, in upload
retry_wait, integrity_check, policy, remote_name, query=query)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 87, in upload
integrity_check, policy, remote, upload_recorder)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 189, in _upload_ref
self._upload_recipe(ref, conanfile, retry, retry_wait, policy, recipe_remote)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 229, in _upload_recipe
remote, remote_manifest)
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/client/cmd/uploader.py", line 342, in _recipe_files_to_upload
if remote_manifest == local_manifest:
File "/opt/pyenv/versions/3.7.1/lib/python3.7/site-packages/conans/model/manifest.py", line 127, in __eq__
return self.file_sums == other.file_sums
AttributeError: 'NoneType' object has no attribute 'file_sums'
Traceback (most recent call last):
File "build.py", line 10, in <module>
builder.run()
File "/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/cpt/packager.py", line 449, in run
self.run_builds(base_profile_name=base_profile_name)
File "/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/cpt/packager.py", line 554, in run_builds
docker_entry_script=self.docker_entry_script)
File "/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/cpt/runner.py", line 237, in run
raise Exception("Error building: %s" % command)
```
| priority | upload to bintray in ci fails with attributeerror nonetype object has no attribute file sums uploading packages to bintray on travis ci fails with an attributeerror the package is a standard conan recipe traceback most recent call last file opt pyenv versions bin run create in docker line in load entry point conan package tools console scripts run create in docker file opt pyenv versions lib site packages cpt run in docker py line in run runner run file opt pyenv versions lib site packages cpt runner py line in run self upload package id file opt pyenv versions lib site packages cpt uploader py line in upload packages retry int self upload retry file opt pyenv versions lib site packages conans client conan api py line in wrapper return f args kwargs file opt pyenv versions lib site packages conans client conan api py line in upload retry wait integrity check policy remote name query query file opt pyenv versions lib site packages conans client cmd uploader py line in upload integrity check policy remote upload recorder file opt pyenv versions lib site packages conans client cmd uploader py line in upload ref self upload recipe ref conanfile retry retry wait policy recipe remote file opt pyenv versions lib site packages conans client cmd uploader py line in upload recipe remote remote manifest file opt pyenv versions lib site packages conans client cmd uploader py line in recipe files to upload if remote manifest local manifest file opt pyenv versions lib site packages conans model manifest py line in eq return self file sums other file sums attributeerror nonetype object has no attribute file sums traceback most recent call last file build py line in builder run file home travis virtualenv lib site packages cpt packager py line in run self run builds base profile name base profile name file home travis virtualenv lib site packages cpt packager py line in run builds docker entry script self docker entry script file home travis virtualenv lib site packages cpt runner py line in run raise exception error building s command | 1 |
187,182 | 6,748,405,348 | IssuesEvent | 2017-10-22 06:16:40 | ppy/osu | https://api.github.com/repos/ppy/osu | opened | Targetting .NET Standard 2.0 | help wanted high priority wip | For cross-platformness, we need to target .NET Standard 2.0. This allows us to compile/run using .NET Core on Linux/OSX, Xamarin on Android/iOS, and .NET Core/Framework on Windows.
Related: https://github.com/ppy/osu-framework/issues/1098
The following items are required to be fulfilled before the transition to .NET Standard 2.0 is complete:
- [ ] Retarget all projects in osu!.
- [ ] Determine if we want to keep the registry lookup for the osu!stable installation. | 1.0 | Targetting .NET Standard 2.0 - For cross-platformness, we need to target .NET Standard 2.0. This allows us to compile/run using .NET Core on Linux/OSX, Xamarin on Android/iOS, and .NET Core/Framework on Windows.
Related: https://github.com/ppy/osu-framework/issues/1098
The following items are required to be fulfilled before the transition to .NET Standard 2.0 is complete:
- [ ] Retarget all projects in osu!.
- [ ] Determine if we want to keep the registry lookup for the osu!stable installation. | priority | targetting net standard for cross platformness we need to target net standard this allows us to compile run using net core on linux osx xamarin on android ios and net core framework on windows related the following items are required to be fulfilled before the transition to net standard is complete retarget all projects in osu determine if we want to keep the registry lookup for the osu stable installation | 1 |
558,766 | 16,542,043,076 | IssuesEvent | 2021-05-27 18:07:35 | hackforla/expunge-assist | https://api.github.com/repos/hackforla/expunge-assist | closed | Create research collaboration agenda/expectation plan for UFCW meeting | Outreach Research high priority | ### Overview
We are meeting with Andrew Hausermann from UFCW about a potential partnership on Wednesday, May 26.
### Action Items
- [x] Create a couple of slides to explain our research collaboration and expectations.
### Resources/Instructions
[https://docs.google.com/presentation/d/1b6RyZ8Ys0ixT3h88QCIskuerAfzx1OeduI4Z2Zru8oU/edit#slide=id.gd14bfbbf18_2_95](mini-pitch deck) | 1.0 | Create research collaboration agenda/expectation plan for UFCW meeting - ### Overview
We are meeting with Andrew Hausermann from UFCW about a potential partnership on Wednesday, May 26.
### Action Items
- [x] Create a couple of slides to explain our research collaboration and expectations.
### Resources/Instructions
[https://docs.google.com/presentation/d/1b6RyZ8Ys0ixT3h88QCIskuerAfzx1OeduI4Z2Zru8oU/edit#slide=id.gd14bfbbf18_2_95](mini-pitch deck) | priority | create research collaboration agenda expectation plan for ufcw meeting overview we are meeting with andrew hausermann from ufcw about a potential partnership on wednesday may action items create a couple of slides to explain our research collaboration and expectations resources instructions mini pitch deck | 1 |
383,512 | 11,357,002,908 | IssuesEvent | 2020-01-25 01:14:20 | jazkarta/jazkarta.com | https://api.github.com/repos/jazkarta/jazkarta.com | closed | Fix SSL cert | high priority | ERROR: type should be string, got " https://jazkarta.com/ is giving \"Warning security risk\" - expired cert?\r\n\r\nCarlos says \"The certbot says the certificate is valid for www.jazkarta.com, but says nothing about the jazkarta.com cert, so @alecpm will have to take a look\"" | 1.0 | Fix SSL cert - https://jazkarta.com/ is giving "Warning security risk" - expired cert?
Carlos says "The certbot says the certificate is valid for www.jazkarta.com, but says nothing about the jazkarta.com cert, so @alecpm will have to take a look" | priority | fix ssl cert is giving warning security risk expired cert carlos says the certbot says the certificate is valid for but says nothing about the jazkarta com cert so alecpm will have to take a look | 1 |
212,944 | 7,244,274,992 | IssuesEvent | 2018-02-14 14:40:08 | librespot-org/librespot | https://api.github.com/repos/librespot-org/librespot | closed | librespot crashes - main thread panic | bug help wanted high priority imported | <a href="https://github.com/pwitka2"><img src="https://avatars0.githubusercontent.com/u/10363750?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [pwitka2](https://github.com/pwitka2)**
_Monday Jan 22, 2018 at 20:10 GMT_
_Originally opened as https://github.com/plietar/librespot/issues/273_
----
librespot crashes with such error message:
**INFO:librespot::player: Track "Sweet Pea" loaded
thread 'main' panicked at 'Box<Any>', core/src/session.rs:83:42
note: Run with `RUST_BACKTRACE=1` for a backtrace.**
It happened after long idle (paused) time.
I have raspbian wheezy
raspotify 0.9.1~librespot.20171005T125424Z.8971d3a
| 1.0 | librespot crashes - main thread panic - <a href="https://github.com/pwitka2"><img src="https://avatars0.githubusercontent.com/u/10363750?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [pwitka2](https://github.com/pwitka2)**
_Monday Jan 22, 2018 at 20:10 GMT_
_Originally opened as https://github.com/plietar/librespot/issues/273_
----
librespot crashes with such error message:
**INFO:librespot::player: Track "Sweet Pea" loaded
thread 'main' panicked at 'Box<Any>', core/src/session.rs:83:42
note: Run with `RUST_BACKTRACE=1` for a backtrace.**
It happened after long idle (paused) time.
I have raspbian wheezy
raspotify 0.9.1~librespot.20171005T125424Z.8971d3a
| priority | librespot crashes main thread panic issue by monday jan at gmt originally opened as librespot crashes with such error message info librespot player track sweet pea loaded thread main panicked at box core src session rs note run with rust backtrace for a backtrace it happened after long idle paused time i have raspbian wheezy raspotify librespot | 1 |
187,298 | 6,755,610,240 | IssuesEvent | 2017-10-24 01:40:23 | Kademi/kademi-dev | https://api.github.com/repos/Kademi/kademi-dev | opened | KPI component for Moblix | enhancement High priority | Login as this guy: http://moblix.admin.kademi-ci.co/manageUsers/698106/#summary-tab
Update KPI component:
1) Toggle to show/hide the title and box (when no box the doughnut should fill the container)
2) Show/hide the KPI title
3) Show/hide the KPI level
4) Must be transparent so it can sit inside a container with a BG color
5) The doughnut should show progress towards the level
6) Be able to choose brand color for the KPI
7) Text should invert if the container is
Nice to have: Be able to change title and level font i.e. H1, H2, H3

PSD: [Uploading KPIs employee.zipโฆ]()
| 1.0 | KPI component for Moblix - Login as this guy: http://moblix.admin.kademi-ci.co/manageUsers/698106/#summary-tab
Update KPI component:
1) Toggle to show/hide the title and box (when no box the doughnut should fill the container)
2) Show/hide the KPI title
3) Show/hide the KPI level
4) Must be transparent so it can sit inside a container with a BG color
5) The doughnut should show progress towards the level
6) Be able to choose brand color for the KPI
7) Text should invert if the container is
Nice to have: Be able to change title and level font i.e. H1, H2, H3

PSD: [Uploading KPIs employee.zipโฆ]()
| priority | kpi component for moblix login as this guy update kpi component toggle to show hide the title and box when no box the doughnut should fill the container show hide the kpi title show hide the kpi level must be transparent so it can sit inside a container with a bg color the doughnut should show progress towards the level be able to choose brand color for the kpi text should invert if the container is nice to have be able to change title and level font i e psd | 1 |
339,264 | 10,245,326,450 | IssuesEvent | 2019-08-20 12:37:30 | vkettools/VitDeck | https://api.github.com/repos/vkettools/VitDeck | closed | ใใณใใฌใผใใฎGUIDๆธใๆใๆใฎๆๅๆนๅ | TemplateLoader priority:high | ็พ็ถSystem.IO็ณปใฎIDisposableใชใชใใธใงใฏใใๆ็คบ็ใซ็ ดๆฃใงใใฆใใชใ็ฎๆใใใใใใๅ ดๅใซใใฃใฆ็ ดๆฃใใใชใๅฏ่ฝๆงใใใใ
usingใไฝฟ็จใใฆๆ็คบ็ใซ็ ดๆฃใใใใใซๆนๅใใใใ
e.g. GuidReferenceModifierใฎStreamReader
https://docs.microsoft.com/ja-jp/dotnet/api/system.io.streamreader?view=netframework-4.8 | 1.0 | ใใณใใฌใผใใฎGUIDๆธใๆใๆใฎๆๅๆนๅ - ็พ็ถSystem.IO็ณปใฎIDisposableใชใชใใธใงใฏใใๆ็คบ็ใซ็ ดๆฃใงใใฆใใชใ็ฎๆใใใใใใๅ ดๅใซใใฃใฆ็ ดๆฃใใใชใๅฏ่ฝๆงใใใใ
usingใไฝฟ็จใใฆๆ็คบ็ใซ็ ดๆฃใใใใใซๆนๅใใใใ
e.g. GuidReferenceModifierใฎStreamReader
https://docs.microsoft.com/ja-jp/dotnet/api/system.io.streamreader?view=netframework-4.8 | priority | ใใณใใฌใผใใฎguidๆธใๆใๆใฎๆๅๆนๅ ็พ็ถsystem io็ณปใฎidisposableใชใชใใธใงใฏใใๆ็คบ็ใซ็ ดๆฃใงใใฆใใชใ็ฎๆใใใใใใๅ ดๅใซใใฃใฆ็ ดๆฃใใใชใๅฏ่ฝๆงใใใใ usingใไฝฟ็จใใฆๆ็คบ็ใซ็ ดๆฃใใใใใซๆนๅใใใใ e g guidreferencemodifierใฎstreamreader | 1 |
539,437 | 15,788,633,806 | IssuesEvent | 2021-04-01 21:07:06 | freeorion/freeorion | https://api.github.com/repos/freeorion/freeorion | opened | Unexplored systems shows star type insread of unknown | category:bug component:UI priority:high | Bug Report
==========
<!--
Please fill in a a meaningful and concise title in the field above.
It helps us to classify the issue even before reading the body and handling the
issue a bit better.
Examples:
* Great: "Unable to select fleet in galaxy map"
* Good: "Unable to click fleet"
* Not really okay: "Issue with fleets"
* Horrible: "HELP!!!"
-->
Environment
-----------
<!--
You don't need to provide the information in section when they are not useful in
the context of this issue. For example a crashing hosted server may not need
information about the graphic card, but maybe depend on the operating system you
use. When in doubt provide all information you have available.
You can find the FreeOrion version number in the lower right corner of the game
main screen.
When stating the operating system also note the version of the operating system
so, `Windows 8 Pro` instead of `Windows` or `Mac OSX Mountain Lion` instead of
`OSX`.
-->
* **FreeOrion Version**: 02bef43037347a9c4624616be4a122231dc83db6
* **Operating System**: Gentoo Linux AMD64
* **Graphic card used**: NVIDIA
* **Fetched as** <!-- delete lines below that don't apply -->
* Compiled from source
Description
-----------
<!--
Add a meaningful description of the bug you encountered.
If a screenshot or image helps to describe the issue content feel free to create
one.
Also attach the log files the game creates. The log files The log files can be
found on
* Windows: %APPDATA%\FreeOrion
* MacOSX: ~/Library/"Application Support"/FreeOrion
* Linux: ${XDG_DATA_HOME:-~/.local/share}/freeorion
-->
Currently unexplored systems shows star type and it becames harder to differentiate them from known but out of vision fields systems.
Expected Result
---------------
<!--
When you enter an issue please add a description of what behaviour you would
expect from the game instead of the issue.
-->
Server hides info of unexplored systems and they shows without known star type.
Steps to reproduce
------------------
<!--
If the error only manifests itself after doing a certain number of actions
please add a list of steps to reproduce the bug. If the error only occurs in
a certain game state please be sure to add a save game to the issue.
To upload save games please pack them into a Zip archive (*.zip) first.
-->
* Start the game.
| 1.0 | Unexplored systems shows star type insread of unknown - Bug Report
==========
<!--
Please fill in a a meaningful and concise title in the field above.
It helps us to classify the issue even before reading the body and handling the
issue a bit better.
Examples:
* Great: "Unable to select fleet in galaxy map"
* Good: "Unable to click fleet"
* Not really okay: "Issue with fleets"
* Horrible: "HELP!!!"
-->
Environment
-----------
<!--
You don't need to provide the information in section when they are not useful in
the context of this issue. For example a crashing hosted server may not need
information about the graphic card, but maybe depend on the operating system you
use. When in doubt provide all information you have available.
You can find the FreeOrion version number in the lower right corner of the game
main screen.
When stating the operating system also note the version of the operating system
so, `Windows 8 Pro` instead of `Windows` or `Mac OSX Mountain Lion` instead of
`OSX`.
-->
* **FreeOrion Version**: 02bef43037347a9c4624616be4a122231dc83db6
* **Operating System**: Gentoo Linux AMD64
* **Graphic card used**: NVIDIA
* **Fetched as** <!-- delete lines below that don't apply -->
* Compiled from source
Description
-----------
<!--
Add a meaningful description of the bug you encountered.
If a screenshot or image helps to describe the issue content feel free to create
one.
Also attach the log files the game creates. The log files The log files can be
found on
* Windows: %APPDATA%\FreeOrion
* MacOSX: ~/Library/"Application Support"/FreeOrion
* Linux: ${XDG_DATA_HOME:-~/.local/share}/freeorion
-->
Currently unexplored systems shows star type and it becames harder to differentiate them from known but out of vision fields systems.
Expected Result
---------------
<!--
When you enter an issue please add a description of what behaviour you would
expect from the game instead of the issue.
-->
Server hides info of unexplored systems and they shows without known star type.
Steps to reproduce
------------------
<!--
If the error only manifests itself after doing a certain number of actions
please add a list of steps to reproduce the bug. If the error only occurs in
a certain game state please be sure to add a save game to the issue.
To upload save games please pack them into a Zip archive (*.zip) first.
-->
* Start the game.
| priority | unexplored systems shows star type insread of unknown bug report please fill in a a meaningful and concise title in the field above it helps us to classify the issue even before reading the body and handling the issue a bit better examples great unable to select fleet in galaxy map good unable to click fleet not really okay issue with fleets horrible help environment you don t need to provide the information in section when they are not useful in the context of this issue for example a crashing hosted server may not need information about the graphic card but maybe depend on the operating system you use when in doubt provide all information you have available you can find the freeorion version number in the lower right corner of the game main screen when stating the operating system also note the version of the operating system so windows pro instead of windows or mac osx mountain lion instead of osx freeorion version operating system gentoo linux graphic card used nvidia fetched as compiled from source description add a meaningful description of the bug you encountered if a screenshot or image helps to describe the issue content feel free to create one also attach the log files the game creates the log files the log files can be found on windows appdata freeorion macosx library application support freeorion linux xdg data home local share freeorion currently unexplored systems shows star type and it becames harder to differentiate them from known but out of vision fields systems expected result when you enter an issue please add a description of what behaviour you would expect from the game instead of the issue server hides info of unexplored systems and they shows without known star type steps to reproduce if the error only manifests itself after doing a certain number of actions please add a list of steps to reproduce the bug if the error only occurs in a certain game state please be sure to add a save game to the issue to upload save games please pack them into a zip archive zip first start the game | 1 |
593,125 | 17,948,157,044 | IssuesEvent | 2021-09-12 07:39:07 | lucyy-mc/Squirtgun | https://api.github.com/repos/lucyy-mc/Squirtgun | closed | Circular dependency between `squirtgun-api` and `squirtgun-commands` | priority: high | Platform (in `squirtgun-api`) should have a method `void registerCommand(CommandNode<?>)`, but `squirtgun-commands` depends on `squirtgun-api`. either parts need to be broken down further or combined together. | 1.0 | Circular dependency between `squirtgun-api` and `squirtgun-commands` - Platform (in `squirtgun-api`) should have a method `void registerCommand(CommandNode<?>)`, but `squirtgun-commands` depends on `squirtgun-api`. either parts need to be broken down further or combined together. | priority | circular dependency between squirtgun api and squirtgun commands platform in squirtgun api should have a method void registercommand commandnode but squirtgun commands depends on squirtgun api either parts need to be broken down further or combined together | 1 |
455,391 | 13,125,842,848 | IssuesEvent | 2020-08-06 07:31:02 | georchestra/mapstore2-georchestra | https://api.github.com/repos/georchestra/mapstore2-georchestra | closed | National WMTS with EPSG:2154 error | Priority: High User feedback investigation | Some problems have already been resolved for https://github.com/georchestra/mapstore2-georchestra/issues/213
But WMTS still not work with EPSG:2154 projected map :
"Le systรจme de coordonnรฉes gรฉographiques de la carte n'est pas supportรฉ par ce service"
Moreover, default backgrounds (OSM & OTM) are disabled in background selector with EPSG:2154.
We have a disabled cursor when hover them.
Tried with OSM as default starting background work well, but if I change, can't reselect it after. | 1.0 | National WMTS with EPSG:2154 error - Some problems have already been resolved for https://github.com/georchestra/mapstore2-georchestra/issues/213
But WMTS still not work with EPSG:2154 projected map :
"Le systรจme de coordonnรฉes gรฉographiques de la carte n'est pas supportรฉ par ce service"
Moreover, default backgrounds (OSM & OTM) are disabled in background selector with EPSG:2154.
We have a disabled cursor when hover them.
Tried with OSM as default starting background work well, but if I change, can't reselect it after. | priority | national wmts with epsg error some problems have already been resolved for but wmts still not work with epsg projected map le systรจme de coordonnรฉes gรฉographiques de la carte n est pas supportรฉ par ce service moreover default backgrounds osm otm are disabled in background selector with epsg we have a disabled cursor when hover them tried with osm as default starting background work well but if i change can t reselect it after | 1 |
90,794 | 3,830,743,444 | IssuesEvent | 2016-03-31 15:31:10 | cs2103jan2016-t11-3j/main | https://api.github.com/repos/cs2103jan2016-t11-3j/main | closed | Logic - Improve simple search | priority.high type.enhancement | Search should handle cases where the order of the words are reversed.
When searching for a single letter, don't simply print out all the titles which contain that letter - filter it to only display titles which contains a word that starts with that specific letter. | 1.0 | Logic - Improve simple search - Search should handle cases where the order of the words are reversed.
When searching for a single letter, don't simply print out all the titles which contain that letter - filter it to only display titles which contains a word that starts with that specific letter. | priority | logic improve simple search search should handle cases where the order of the words are reversed when searching for a single letter don t simply print out all the titles which contain that letter filter it to only display titles which contains a word that starts with that specific letter | 1 |
29,735 | 2,717,058,655 | IssuesEvent | 2015-04-10 23:49:02 | nickpaventi/culligan-diy | https://api.github.com/repos/nickpaventi/culligan-diy | closed | Footer: (From QA) New telephone link issues | High Priority | In both IE and Chrome, clicking the phone number in the footer causes an error to occur:
a. In IE, clicking the phone number takes the user to a Page cannot be displayed error with tel://1-800-721-9243/ in the URL window.
b. In Chrome, clicking the phone number just refreshes the page and does nothing.
| 1.0 | Footer: (From QA) New telephone link issues - In both IE and Chrome, clicking the phone number in the footer causes an error to occur:
a. In IE, clicking the phone number takes the user to a Page cannot be displayed error with tel://1-800-721-9243/ in the URL window.
b. In Chrome, clicking the phone number just refreshes the page and does nothing.
| priority | footer from qa new telephone link issues in both ie and chrome clicking the phone number in the footer causes an error to occur a in ie clicking the phone number takes the user to a page cannot be displayed error with tel in the url window b in chrome clicking the phone number just refreshes the page and does nothing | 1 |
93,002 | 3,880,829,753 | IssuesEvent | 2016-04-13 00:08:43 | phetsims/joist | https://api.github.com/repos/phetsims/joist | reopened | Dialog windows shown by PhetMenu leak memory | priority:2-high | If I run a test where start up a sim and then use the button in the lower right to pop up the PhET menu, then select "About..." and then "Check for Updates..." several times each, and then capture a heap snapshot, the count for each of these dialog windows matches the number of times that it was brought up. This would seem to imply that these dialogs are not getting garbage collected and are causing memory leaks.
This was found in the process of pursuing and testing https://github.com/phetsims/tasks/issues/546 and https://github.com/phetsims/joist/issues/327, and may help explain some of the leaking that we are observing. | 1.0 | Dialog windows shown by PhetMenu leak memory - If I run a test where start up a sim and then use the button in the lower right to pop up the PhET menu, then select "About..." and then "Check for Updates..." several times each, and then capture a heap snapshot, the count for each of these dialog windows matches the number of times that it was brought up. This would seem to imply that these dialogs are not getting garbage collected and are causing memory leaks.
This was found in the process of pursuing and testing https://github.com/phetsims/tasks/issues/546 and https://github.com/phetsims/joist/issues/327, and may help explain some of the leaking that we are observing. | priority | dialog windows shown by phetmenu leak memory if i run a test where start up a sim and then use the button in the lower right to pop up the phet menu then select about and then check for updates several times each and then capture a heap snapshot the count for each of these dialog windows matches the number of times that it was brought up this would seem to imply that these dialogs are not getting garbage collected and are causing memory leaks this was found in the process of pursuing and testing and and may help explain some of the leaking that we are observing | 1 |
400,780 | 11,780,595,163 | IssuesEvent | 2020-03-16 20:25:58 | seung-lab/neuroglancer | https://api.github.com/repos/seung-lab/neuroglancer | opened | Cannot get shareable raw link without VPN | Priority: High Realm: SeungLab Type: Bug | When I am using Neuroglancer outside of the lab and without the use of the VPN, I cannot get the legacy style link. After hitting share I get a message "Posting state to dynamicannotationserver...". I shouldn't need to have access to the link shortening server to get the raw link. | 1.0 | Cannot get shareable raw link without VPN - When I am using Neuroglancer outside of the lab and without the use of the VPN, I cannot get the legacy style link. After hitting share I get a message "Posting state to dynamicannotationserver...". I shouldn't need to have access to the link shortening server to get the raw link. | priority | cannot get shareable raw link without vpn when i am using neuroglancer outside of the lab and without the use of the vpn i cannot get the legacy style link after hitting share i get a message posting state to dynamicannotationserver i shouldn t need to have access to the link shortening server to get the raw link | 1 |
286,523 | 8,789,396,914 | IssuesEvent | 2018-12-21 03:20:38 | redcross/arcdata | https://api.github.com/repos/redcross/arcdata | closed | Make changes to the section titles and checkbox items in the incident reports' Assistance Provided window | affects-dispatch enhancement high-priority | Change _Client Financial Assistance_ to **Direct Client Assistance**
Under **Direct Client Assistance**, rename _Emergency Housing_ to **Lodging**.
Under **Direct Client Assistance**, remove:
- _Food_
- _Clothing_
- _Medication_
Under **Direct Client Assistance**, add: **Immediate**
Under **Direct Client Assistance**, move **None** under _Immediate_
Under **Other Assistance**, add: **Health Services** (list above Mental Health)
Under **Other Assistance**, change _Mental Health Support_ to **Mental Health**
Under **Other Assistance**, remove: Snacks for Clients
Under **Other Assistance**, move **Translation** under _Spiritual Care_
<img width="629" alt="screen shot 2018-11-30 at 2 25 13 pm" src="https://user-images.githubusercontent.com/4147733/49314690-cddc7a00-f4b0-11e8-9aac-af3e0e38e6a3.png">
| 1.0 | Make changes to the section titles and checkbox items in the incident reports' Assistance Provided window - Change _Client Financial Assistance_ to **Direct Client Assistance**
Under **Direct Client Assistance**, rename _Emergency Housing_ to **Lodging**.
Under **Direct Client Assistance**, remove:
- _Food_
- _Clothing_
- _Medication_
Under **Direct Client Assistance**, add: **Immediate**
Under **Direct Client Assistance**, move **None** under _Immediate_
Under **Other Assistance**, add: **Health Services** (list above Mental Health)
Under **Other Assistance**, change _Mental Health Support_ to **Mental Health**
Under **Other Assistance**, remove: Snacks for Clients
Under **Other Assistance**, move **Translation** under _Spiritual Care_
<img width="629" alt="screen shot 2018-11-30 at 2 25 13 pm" src="https://user-images.githubusercontent.com/4147733/49314690-cddc7a00-f4b0-11e8-9aac-af3e0e38e6a3.png">
| priority | make changes to the section titles and checkbox items in the incident reports assistance provided window change client financial assistance to direct client assistance under direct client assistance rename emergency housing to lodging under direct client assistance remove food clothing medication under direct client assistance add immediate under direct client assistance move none under immediate under other assistance add health services list above mental health under other assistance change mental health support to mental health under other assistance remove snacks for clients under other assistance move translation under spiritual care img width alt screen shot at pm src | 1 |
430,170 | 12,440,852,149 | IssuesEvent | 2020-05-26 12:44:40 | BgeeDB/bgee_apps | https://api.github.com/repos/BgeeDB/bgee_apps | opened | Create a page "adopters" | priority: high | In GitLab by @fbastian on Jul 10, 2016, 15:11
Still we start to have several resources using Bgee as a source of data, we should add an "adopter" page on the website. Something simple harcoded. | 1.0 | Create a page "adopters" - In GitLab by @fbastian on Jul 10, 2016, 15:11
Still we start to have several resources using Bgee as a source of data, we should add an "adopter" page on the website. Something simple harcoded. | priority | create a page adopters in gitlab by fbastian on jul still we start to have several resources using bgee as a source of data we should add an adopter page on the website something simple harcoded | 1 |
757,568 | 26,518,358,001 | IssuesEvent | 2023-01-18 23:05:47 | okTurtles/group-income | https://api.github.com/repos/okTurtles/group-income | closed | Bug: LinkToCopy.vue needs to check for mobile, not isMacSafari | Kind:Bug App:Frontend Level:Starter Priority:High | ### Problem
On a call with @corrideat we noticed that we couldn't copy links that used `LinkToCopy.vue` component (e.g. invite links), because Microsoft Edge blocked some type of popup that was triggered by the usage of `navigator.share`.
`navigator.share` shouldn't be used on any desktop browser anyway (I think).
The problematic code is the way `copyToClipboard` function in `LinkToCopy.vue` checks whether it should use `navigator.share` or copy to clipboard (and display a tooltip that the link was copied).
### Solution
Instead of `isMacSafari`, we need a `isMobile` function that checks if we're on mobile. Find the best solution for this (e.g. search Stackoverflow).
Then if we're on mobile, [and `navigator.share` is defined](https://github.com/okTurtles/group-income/issues/1021#issuecomment-1106801450), then use `navigator.share`. Otherwise use the other existing code path that's there to copy the link.
Desktop browsers should always use the copy-to-clipboard code path. | 1.0 | Bug: LinkToCopy.vue needs to check for mobile, not isMacSafari - ### Problem
On a call with @corrideat we noticed that we couldn't copy links that used `LinkToCopy.vue` component (e.g. invite links), because Microsoft Edge blocked some type of popup that was triggered by the usage of `navigator.share`.
`navigator.share` shouldn't be used on any desktop browser anyway (I think).
The problematic code is the way `copyToClipboard` function in `LinkToCopy.vue` checks whether it should use `navigator.share` or copy to clipboard (and display a tooltip that the link was copied).
### Solution
Instead of `isMacSafari`, we need a `isMobile` function that checks if we're on mobile. Find the best solution for this (e.g. search Stackoverflow).
Then if we're on mobile, [and `navigator.share` is defined](https://github.com/okTurtles/group-income/issues/1021#issuecomment-1106801450), then use `navigator.share`. Otherwise use the other existing code path that's there to copy the link.
Desktop browsers should always use the copy-to-clipboard code path. | priority | bug linktocopy vue needs to check for mobile not ismacsafari problem on a call with corrideat we noticed that we couldn t copy links that used linktocopy vue component e g invite links because microsoft edge blocked some type of popup that was triggered by the usage of navigator share navigator share shouldn t be used on any desktop browser anyway i think the problematic code is the way copytoclipboard function in linktocopy vue checks whether it should use navigator share or copy to clipboard and display a tooltip that the link was copied solution instead of ismacsafari we need a ismobile function that checks if we re on mobile find the best solution for this e g search stackoverflow then if we re on mobile then use navigator share otherwise use the other existing code path that s there to copy the link desktop browsers should always use the copy to clipboard code path | 1 |
80,082 | 3,550,542,491 | IssuesEvent | 2016-01-20 22:23:46 | ably/ably-js | https://api.github.com/repos/ably/ably-js | closed | clientId from token auth is ignored for presence | bug high priority | Here is some code to demonstrate the bug:
```javascript
ably = new Ably.Realtime({ authUrl: '/realtime-token', log: { level: 5 } });
channel = this.ably.channels.get('backlog-1');
ably.connection.once('connected', function() {
that.backlogChannel.presence.enter({ name: 'Joe' });
});
```
The URL `/realtime-token` returns the following token request:
```json
{"keyName":"T4FCEQ.gk_T5w","clientId":"1","ttl":3600000,"timestamp":1452719054195,"capability":"{\"*\":[\"*\"]}","nonce":"32258c73c4d68b6db539ef6808b5438f","mac":"M791zWcn16vWqmixn/3bmmeBn99LSQARnjTQ8zBRrC4="}
```
The error in the logs is:
```
ably.min.js:formatted:1863Ably: EventEmitter.emit(): Unexpected listener exception: Error: clientId must be specified to enter a presence channel; stack = Error: clientId must be specified to enter a presence channel
at Error (native)
at g.enter (http://cdn.ably.io/lib/ably.min.js:221:424)
at Object.<anonymous> (http://localhost:3000/assets/views/backlog_presence_view.js?body=1:29:40)
at g (http://cdn.ably.io/lib/ably.min.js:76:12)
at e.emit (http://cdn.ably.io/lib/ably.min.js:78:373)
at http://cdn.ably.io/lib/ably.min.js:198:43
```
It seems the Ably client library is not picking up the `clientId` from the `ConnectionDetails` correctly, although this may simply be caused by #195 so this can be ignored if that is the case. Feel free to close if it is definitely caused by that issue, which I expect it is.
Full log from console:
```
Ably: Rest(): started
2016-01-13 22:04:12.874 ably.min.js:formatted:1863Ably: Auth(): using token auth with authUrl
2016-01-13 22:04:12.875 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): started
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): requested transports = [web_socket,xhr,iframe,jsonp]
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): available http transports = [xhr,iframe,jsonp]
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): available transports = [web_socket,xhr,iframe,jsonp]
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): http hosts = [rest.ably.io,A.ably-realtime.com,B.ably-realtime.com,C.ably-realtime.com]
2016-01-13 22:04:12.877 ably.min.js:formatted:1863Ably: Realtime.connect():
2016-01-13 22:04:12.877 ably.min.js:formatted:1863Ably: Connection.connect():
2016-01-13 22:04:12.878 ably.min.js:formatted:1863Ably: ConnectionManager.requestState(): requested state: connecting
2016-01-13 22:04:12.878 ably.min.js:formatted:1863Ably: ConnectionManager.cancelTransitionTimer():
2016-01-13 22:04:12.879 ably.min.js:formatted:1863Ably: ConnectionManager.enactStateChange: setting new state: connecting; reason = undefined
2016-01-13 22:04:12.880 ably.min.js:formatted:1863Ably: RealtimeChannel(): started; name = backlog-7344
2016-01-13 22:04:12.880 ably.min.js:formatted:1863Ably: Channel(): started; name = backlog-7344
2016-01-13 22:04:13.689 jquery.js?body=1:8383 Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.
2016-01-13 22:04:14.158 ably.min.js:formatted:1863Ably: ConnectionManager.connectImpl(): starting connection
2016-01-13 22:04:14.158 ably.min.js:formatted:1863Ably: ConnectionManager.startTransitionTimer(): transitionState: connecting
2016-01-13 22:04:14.159 ably.min.js:formatted:1863Ably: Auth.requestToken(): using token auth with auth_url
2016-01-13 22:04:14.160 ably.min.js:formatted:1863Ably: Auth.requestToken().tokenRequestCallback: Sending; /realtime-token; Params: {}
2016-01-13 22:04:14.451 ably.min.js:formatted:1863Ably: Auth.requestToken().tokenRequestCallback: Received; body: {"keyName":"T4FCEQ.gk_T5w","clientId":"1","ttl":3600000,"timestamp":1452719054195,"capability":"{\"*\":[\"*\"]}","nonce":"32258c73c4d68b6db539ef6808b5438f","mac":"M791zWcn16vWqmixn/3bmmeBn99LSQARnjTQ8zBRrC4="}
2016-01-13 22:04:14.452 ably.min.js:formatted:1863Ably: Auth.requestToken().requestToken: Sending POST; function (a){return u.baseUri(a)+"/keys/"+g+"/requestToken"}; Token params: {"keyName":"T4FCEQ.gk_T5w","clientId":"1","ttl":3600000,"timestamp":1452719054195,"capability":"{\"*\":[\"*\"]}","nonce":"32258c73c4d68b6db539ef6808b5438f","mac":"M791zWcn16vWqmixn/3bmmeBn99LSQARnjTQ8zBRrC4="}
2016-01-13 22:04:15.040 ably.min.js:formatted:1863Ably: Auth.getToken(): token received
2016-01-13 22:04:15.040 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport():
2016-01-13 22:04:15.041 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport(): Transport recovery mode = clean
2016-01-13 22:04:15.041 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): trying xhr
2016-01-13 22:04:15.042 ably.min.js:formatted:1863Ably: CometTransport.connect(): starting
2016-01-13 22:04:15.042 ably.min.js:formatted:1863Ably: CometTransport.connect(): uri: https://rest.ably.io:443/comet/connect
2016-01-13 22:04:15.043 ably.min.js:formatted:1863Ably: Auth.getToken(): using cached token; expires = 1452722655310
2016-01-13 22:04:15.044 ably.min.js:formatted:1863Ably: CometTransport.connect(): connectParams:?v=0.8&access_token=T4FCEQ.D49WsfppCWd886YsDlAdZbyVv10acjIHvpuS9I_RSHnbxJB8qhkWWYdhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:15.271 ably.min.js:formatted:1863Ably: XHRTransport.tryConnect(): viable transport XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false
2016-01-13 22:04:15.272 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): transport xhr connecting
2016-01-13 22:04:15.272 ably.min.js:formatted:1863Ably: ConnectionManager.setTransportPending(): transport = XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false; mode = clean
2016-01-13 22:04:15.273 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport(): Establishing http transport: XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false
2016-01-13 22:04:15.274 ably.min.js:formatted:1863Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=CONNECTED; connectionId=TuMU90Vy5F; connectionKey=ac036!TuMU90Vy5FguJWel-5863ac036; connectionSerial=-1]
2016-01-13 22:04:15.274 ably.min.js:formatted:1863Ably: CometTransport.onConnect(): baseUri = https://rest.ably.io:443/comet/ac036!TuMU90Vy5FguJWel-5863ac036; connectionKey = TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:15.275 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): transport = XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=true
2016-01-13 22:04:15.275 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:15.276 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionSerial = -1
2016-01-13 22:04:15.276 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionId = TuMU90Vy5F
2016-01-13 22:04:15.276 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): clientId = 1
2016-01-13 22:04:15.277 ably.min.js:formatted:1863Ably: ConnectionManager.notifyState(): new state: connected
2016-01-13 22:04:15.277 ably.min.js:formatted:1863Ably: ConnectionManager.cancelTransitionTimer():
2016-01-13 22:04:15.278 ably.min.js:formatted:1863Ably: ConnectionManager.enactStateChange: setting new state: connected; reason = undefined
2016-01-13 22:04:15.278 ably.min.js:formatted:1863Ably: ConnectionManager.sendQueuedMessages(): sending 0 queued messages
2016-01-13 22:04:15.279 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport(): upgrading ... connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:15.279 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): trying web_socket
2016-01-13 22:04:15.279 ably.min.js:formatted:1863Ably: WebSocketTransport.startConnectTimeout(): undefined
2016-01-13 22:04:15.280 ably.min.js:formatted:1863Ably: WebSocketTransport.connect(): starting
2016-01-13 22:04:15.280 ably.min.js:formatted:1863Ably: WebSocketTransport.connect(): uri: wss://realtime.ably.io:443/
2016-01-13 22:04:15.281 ably.min.js:formatted:1863Ably: Auth.getToken(): using cached token; expires = 1452722655310
2016-01-13 22:04:15.281 ably.min.js:formatted:1863Ably: WebSocketTransport.connect(): authParams: access_token: T4FCEQ.D49WsfppCWd886YsDlAdZbyVv10acjIHvpuS9I_RSHnbxJB8qhkWWYdhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn;
2016-01-13 22:04:15.283 ably.min.js:formatted:1863Ably: EventEmitter.emit(): Unexpected listener exception: Error: clientId must be specified to enter a presence channel; stack = Error: clientId must be specified to enter a presence channel
at Error (native)
at g.enter (http://cdn.ably.io/lib/ably.min.js:221:424)
at Object.<anonymous> (http://localhost:3000/assets/views/backlog_presence_view.js?body=1:29:40)
at g (http://cdn.ably.io/lib/ably.min.js:76:12)
at e.emit (http://cdn.ably.io/lib/ably.min.js:78:373)
at http://cdn.ably.io/lib/ably.min.js:198:43
2016-01-13 22:04:16.693 ably.min.js:formatted:1863Ably: WebSocketTransport.onWsOpen(): opened WebSocket
2016-01-13 22:04:16.693 ably.min.js:formatted:1863Ably: WebSocketTransport.tryConnect(): viable transport WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.694 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): transport web_socket connecting
2016-01-13 22:04:16.694 ably.min.js:formatted:1863Ably: ConnectionManager.setTransportPending(): transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn; mode = upgrade
2016-01-13 22:04:16.695 ably.min.js:formatted:1863Ably: WebSocketTransport.onWsData(): data received; length = 307; type = string
2016-01-13 22:04:16.696 ably.min.js:formatted:1863Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=CONNECTED; connectionId=TuMU90Vy5F; connectionKey=TuMU90Vy5FguJWel-599e6d72c; connectionSerial=-1]
2016-01-13 22:04:16.696 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Scheduling transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Activating transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionSerial = -1
2016-01-13 22:04:16.698 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionId = TuMU90Vy5F
2016-01-13 22:04:16.698 ably.min.js:formatted:1863Ably: ConnectionManager.notifyState(): new state: connected
2016-01-13 22:04:16.698 ably.min.js:formatted:1863Ably: CometTransport.disconnect():
2016-01-13 22:04:16.699 ably.min.js:formatted:1863Ably: CometTransport.requestClose(): closing = false
2016-01-13 22:04:16.700 ably.min.js:formatted:1863Ably: ConnectionManager.deactivateTransport(): transport = XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false
2016-01-13 22:04:16.701 ably.min.js:formatted:1863Ably: ConnectionManager.deactivateTransport(): state = disconnected
2016-01-13 22:04:16.701 ably.min.js:formatted:1863Ably: ConnectionManager.deactivateTransport(): reason = Connection to server temporarily unavailable
2016-01-13 22:04:16.702 ably.min.js:formatted:1863Ably: CometTransport.dispose():
2016-01-13 22:04:16.702 ably.min.js:formatted:1863Ably: CometTransport.dispose(): aborting recv request
2016-01-13 22:04:16.703 ably.min.js:formatted:1863Ably: Transport.onDisconnect(): err = undefined
2016-01-13 22:04:16.704 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Syncing transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.793 ably.min.js:formatted:1863Ably: WebSocketTransport.onWsData(): data received; length = 63; type = string
2016-01-13 22:04:16.793 ably.min.js:formatted:1863Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=SYNC; connectionId=TuMU90Vy5F; connectionSerial=-1]
2016-01-13 22:04:16.793 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): sync successful upgraded transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn; connectionSerial = -1; connectionId = TuMU90Vy5F
2016-01-13 22:04:16.794 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Sending queued messages on upgraded transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.794 ably.min.js:formatted:1863Ably: ConnectionManager.sendQueuedMessages(): sending 0 queued messages
2016-01-13 22:04:31.690 ably.min.js:formatted:1863 Ably: WebSocketTransport.onWsData(): data received; length = 12; type = string
2016-01-13 22:04:31.691 ably.min.js:formatted:1863 Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=HEARTBEAT]
2016-01-13 22:04:31.691 ably.min.js:formatted:1863 Ably: Transport.onProtocolMessage(): heartbeat; connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
``` | 1.0 | clientId from token auth is ignored for presence - Here is some code to demonstrate the bug:
```javascript
ably = new Ably.Realtime({ authUrl: '/realtime-token', log: { level: 5 } });
channel = this.ably.channels.get('backlog-1');
ably.connection.once('connected', function() {
that.backlogChannel.presence.enter({ name: 'Joe' });
});
```
The URL `/realtime-token` returns the following token request:
```json
{"keyName":"T4FCEQ.gk_T5w","clientId":"1","ttl":3600000,"timestamp":1452719054195,"capability":"{\"*\":[\"*\"]}","nonce":"32258c73c4d68b6db539ef6808b5438f","mac":"M791zWcn16vWqmixn/3bmmeBn99LSQARnjTQ8zBRrC4="}
```
The error in the logs is:
```
ably.min.js:formatted:1863Ably: EventEmitter.emit(): Unexpected listener exception: Error: clientId must be specified to enter a presence channel; stack = Error: clientId must be specified to enter a presence channel
at Error (native)
at g.enter (http://cdn.ably.io/lib/ably.min.js:221:424)
at Object.<anonymous> (http://localhost:3000/assets/views/backlog_presence_view.js?body=1:29:40)
at g (http://cdn.ably.io/lib/ably.min.js:76:12)
at e.emit (http://cdn.ably.io/lib/ably.min.js:78:373)
at http://cdn.ably.io/lib/ably.min.js:198:43
```
It seems the Ably client library is not picking up the `clientId` from the `ConnectionDetails` correctly, although this may simply be caused by #195 so this can be ignored if that is the case. Feel free to close if it is definitely caused by that issue, which I expect it is.
Full log from console:
```
Ably: Rest(): started
2016-01-13 22:04:12.874 ably.min.js:formatted:1863Ably: Auth(): using token auth with authUrl
2016-01-13 22:04:12.875 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): started
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): requested transports = [web_socket,xhr,iframe,jsonp]
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): available http transports = [xhr,iframe,jsonp]
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): available transports = [web_socket,xhr,iframe,jsonp]
2016-01-13 22:04:12.876 ably.min.js:formatted:1863Ably: Realtime.ConnectionManager(): http hosts = [rest.ably.io,A.ably-realtime.com,B.ably-realtime.com,C.ably-realtime.com]
2016-01-13 22:04:12.877 ably.min.js:formatted:1863Ably: Realtime.connect():
2016-01-13 22:04:12.877 ably.min.js:formatted:1863Ably: Connection.connect():
2016-01-13 22:04:12.878 ably.min.js:formatted:1863Ably: ConnectionManager.requestState(): requested state: connecting
2016-01-13 22:04:12.878 ably.min.js:formatted:1863Ably: ConnectionManager.cancelTransitionTimer():
2016-01-13 22:04:12.879 ably.min.js:formatted:1863Ably: ConnectionManager.enactStateChange: setting new state: connecting; reason = undefined
2016-01-13 22:04:12.880 ably.min.js:formatted:1863Ably: RealtimeChannel(): started; name = backlog-7344
2016-01-13 22:04:12.880 ably.min.js:formatted:1863Ably: Channel(): started; name = backlog-7344
2016-01-13 22:04:13.689 jquery.js?body=1:8383 Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.
2016-01-13 22:04:14.158 ably.min.js:formatted:1863Ably: ConnectionManager.connectImpl(): starting connection
2016-01-13 22:04:14.158 ably.min.js:formatted:1863Ably: ConnectionManager.startTransitionTimer(): transitionState: connecting
2016-01-13 22:04:14.159 ably.min.js:formatted:1863Ably: Auth.requestToken(): using token auth with auth_url
2016-01-13 22:04:14.160 ably.min.js:formatted:1863Ably: Auth.requestToken().tokenRequestCallback: Sending; /realtime-token; Params: {}
2016-01-13 22:04:14.451 ably.min.js:formatted:1863Ably: Auth.requestToken().tokenRequestCallback: Received; body: {"keyName":"T4FCEQ.gk_T5w","clientId":"1","ttl":3600000,"timestamp":1452719054195,"capability":"{\"*\":[\"*\"]}","nonce":"32258c73c4d68b6db539ef6808b5438f","mac":"M791zWcn16vWqmixn/3bmmeBn99LSQARnjTQ8zBRrC4="}
2016-01-13 22:04:14.452 ably.min.js:formatted:1863Ably: Auth.requestToken().requestToken: Sending POST; function (a){return u.baseUri(a)+"/keys/"+g+"/requestToken"}; Token params: {"keyName":"T4FCEQ.gk_T5w","clientId":"1","ttl":3600000,"timestamp":1452719054195,"capability":"{\"*\":[\"*\"]}","nonce":"32258c73c4d68b6db539ef6808b5438f","mac":"M791zWcn16vWqmixn/3bmmeBn99LSQARnjTQ8zBRrC4="}
2016-01-13 22:04:15.040 ably.min.js:formatted:1863Ably: Auth.getToken(): token received
2016-01-13 22:04:15.040 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport():
2016-01-13 22:04:15.041 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport(): Transport recovery mode = clean
2016-01-13 22:04:15.041 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): trying xhr
2016-01-13 22:04:15.042 ably.min.js:formatted:1863Ably: CometTransport.connect(): starting
2016-01-13 22:04:15.042 ably.min.js:formatted:1863Ably: CometTransport.connect(): uri: https://rest.ably.io:443/comet/connect
2016-01-13 22:04:15.043 ably.min.js:formatted:1863Ably: Auth.getToken(): using cached token; expires = 1452722655310
2016-01-13 22:04:15.044 ably.min.js:formatted:1863Ably: CometTransport.connect(): connectParams:?v=0.8&access_token=T4FCEQ.D49WsfppCWd886YsDlAdZbyVv10acjIHvpuS9I_RSHnbxJB8qhkWWYdhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:15.271 ably.min.js:formatted:1863Ably: XHRTransport.tryConnect(): viable transport XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false
2016-01-13 22:04:15.272 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): transport xhr connecting
2016-01-13 22:04:15.272 ably.min.js:formatted:1863Ably: ConnectionManager.setTransportPending(): transport = XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false; mode = clean
2016-01-13 22:04:15.273 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport(): Establishing http transport: XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false
2016-01-13 22:04:15.274 ably.min.js:formatted:1863Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=CONNECTED; connectionId=TuMU90Vy5F; connectionKey=ac036!TuMU90Vy5FguJWel-5863ac036; connectionSerial=-1]
2016-01-13 22:04:15.274 ably.min.js:formatted:1863Ably: CometTransport.onConnect(): baseUri = https://rest.ably.io:443/comet/ac036!TuMU90Vy5FguJWel-5863ac036; connectionKey = TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:15.275 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): transport = XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=true
2016-01-13 22:04:15.275 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:15.276 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionSerial = -1
2016-01-13 22:04:15.276 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionId = TuMU90Vy5F
2016-01-13 22:04:15.276 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): clientId = 1
2016-01-13 22:04:15.277 ably.min.js:formatted:1863Ably: ConnectionManager.notifyState(): new state: connected
2016-01-13 22:04:15.277 ably.min.js:formatted:1863Ably: ConnectionManager.cancelTransitionTimer():
2016-01-13 22:04:15.278 ably.min.js:formatted:1863Ably: ConnectionManager.enactStateChange: setting new state: connected; reason = undefined
2016-01-13 22:04:15.278 ably.min.js:formatted:1863Ably: ConnectionManager.sendQueuedMessages(): sending 0 queued messages
2016-01-13 22:04:15.279 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransport(): upgrading ... connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:15.279 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): trying web_socket
2016-01-13 22:04:15.279 ably.min.js:formatted:1863Ably: WebSocketTransport.startConnectTimeout(): undefined
2016-01-13 22:04:15.280 ably.min.js:formatted:1863Ably: WebSocketTransport.connect(): starting
2016-01-13 22:04:15.280 ably.min.js:formatted:1863Ably: WebSocketTransport.connect(): uri: wss://realtime.ably.io:443/
2016-01-13 22:04:15.281 ably.min.js:formatted:1863Ably: Auth.getToken(): using cached token; expires = 1452722655310
2016-01-13 22:04:15.281 ably.min.js:formatted:1863Ably: WebSocketTransport.connect(): authParams: access_token: T4FCEQ.D49WsfppCWd886YsDlAdZbyVv10acjIHvpuS9I_RSHnbxJB8qhkWWYdhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn;
2016-01-13 22:04:15.283 ably.min.js:formatted:1863Ably: EventEmitter.emit(): Unexpected listener exception: Error: clientId must be specified to enter a presence channel; stack = Error: clientId must be specified to enter a presence channel
at Error (native)
at g.enter (http://cdn.ably.io/lib/ably.min.js:221:424)
at Object.<anonymous> (http://localhost:3000/assets/views/backlog_presence_view.js?body=1:29:40)
at g (http://cdn.ably.io/lib/ably.min.js:76:12)
at e.emit (http://cdn.ably.io/lib/ably.min.js:78:373)
at http://cdn.ably.io/lib/ably.min.js:198:43
2016-01-13 22:04:16.693 ably.min.js:formatted:1863Ably: WebSocketTransport.onWsOpen(): opened WebSocket
2016-01-13 22:04:16.693 ably.min.js:formatted:1863Ably: WebSocketTransport.tryConnect(): viable transport WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.694 ably.min.js:formatted:1863Ably: ConnectionManager.chooseTransportForHost(): transport web_socket connecting
2016-01-13 22:04:16.694 ably.min.js:formatted:1863Ably: ConnectionManager.setTransportPending(): transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn; mode = upgrade
2016-01-13 22:04:16.695 ably.min.js:formatted:1863Ably: WebSocketTransport.onWsData(): data received; length = 307; type = string
2016-01-13 22:04:16.696 ably.min.js:formatted:1863Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=CONNECTED; connectionId=TuMU90Vy5F; connectionKey=TuMU90Vy5FguJWel-599e6d72c; connectionSerial=-1]
2016-01-13 22:04:16.696 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Scheduling transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Activating transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
2016-01-13 22:04:16.697 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionSerial = -1
2016-01-13 22:04:16.698 ably.min.js:formatted:1863Ably: ConnectionManager.activateTransport(): connectionId = TuMU90Vy5F
2016-01-13 22:04:16.698 ably.min.js:formatted:1863Ably: ConnectionManager.notifyState(): new state: connected
2016-01-13 22:04:16.698 ably.min.js:formatted:1863Ably: CometTransport.disconnect():
2016-01-13 22:04:16.699 ably.min.js:formatted:1863Ably: CometTransport.requestClose(): closing = false
2016-01-13 22:04:16.700 ably.min.js:formatted:1863Ably: ConnectionManager.deactivateTransport(): transport = XHRTransport; uri=https://rest.ably.io:443/comet/; isConnected=false
2016-01-13 22:04:16.701 ably.min.js:formatted:1863Ably: ConnectionManager.deactivateTransport(): state = disconnected
2016-01-13 22:04:16.701 ably.min.js:formatted:1863Ably: ConnectionManager.deactivateTransport(): reason = Connection to server temporarily unavailable
2016-01-13 22:04:16.702 ably.min.js:formatted:1863Ably: CometTransport.dispose():
2016-01-13 22:04:16.702 ably.min.js:formatted:1863Ably: CometTransport.dispose(): aborting recv request
2016-01-13 22:04:16.703 ably.min.js:formatted:1863Ably: Transport.onDisconnect(): err = undefined
2016-01-13 22:04:16.704 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Syncing transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.793 ably.min.js:formatted:1863Ably: WebSocketTransport.onWsData(): data received; length = 63; type = string
2016-01-13 22:04:16.793 ably.min.js:formatted:1863Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=SYNC; connectionId=TuMU90Vy5F; connectionSerial=-1]
2016-01-13 22:04:16.793 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): sync successful upgraded transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn; connectionSerial = -1; connectionId = TuMU90Vy5F
2016-01-13 22:04:16.794 ably.min.js:formatted:1863Ably: ConnectionManager.scheduleTransportActivation(): Sending queued messages on upgraded transport; transport = WebSocketTransport; uri=wss://realtime.ably.io:443/?upgrade=ac036!TuMU90Vy5FguJWel-5863ac036&formatโฆhxkkdRbrw2cuz2pS5WUtrtRLsQ2K9ghBvaE9Ww1CZd1YIvcxY7jpa1EuOv9rELZJjF85URpchn
2016-01-13 22:04:16.794 ably.min.js:formatted:1863Ably: ConnectionManager.sendQueuedMessages(): sending 0 queued messages
2016-01-13 22:04:31.690 ably.min.js:formatted:1863 Ably: WebSocketTransport.onWsData(): data received; length = 12; type = string
2016-01-13 22:04:31.691 ably.min.js:formatted:1863 Ably: Transport.onProtocolMessage(): received; [ProtocolMessage; action=HEARTBEAT]
2016-01-13 22:04:31.691 ably.min.js:formatted:1863 Ably: Transport.onProtocolMessage(): heartbeat; connectionKey = ac036!TuMU90Vy5FguJWel-5863ac036
``` | priority | clientid from token auth is ignored for presence here is some code to demonstrate the bug javascript ably new ably realtime authurl realtime token log level channel this ably channels get backlog ably connection once connected function that backlogchannel presence enter name joe the url realtime token returns the following token request json keyname gk clientid ttl timestamp capability nonce mac the error in the logs is ably min js formatted eventemitter emit unexpected listener exception error clientid must be specified to enter a presence channel stack error clientid must be specified to enter a presence channel at error native at g enter at object at g at e emit at it seems the ably client library is not picking up the clientid from the connectiondetails correctly although this may simply be caused by so this can be ignored if that is the case feel free to close if it is definitely caused by that issue which i expect it is full log from console ably rest started ably min js formatted auth using token auth with authurl ably min js formatted realtime connectionmanager started ably min js formatted realtime connectionmanager requested transports ably min js formatted realtime connectionmanager available http transports ably min js formatted realtime connectionmanager available transports ably min js formatted realtime connectionmanager http hosts ably min js formatted realtime connect ably min js formatted connection connect ably min js formatted connectionmanager requeststate requested state connecting ably min js formatted connectionmanager canceltransitiontimer ably min js formatted connectionmanager enactstatechange setting new state connecting reason undefined ably min js formatted realtimechannel started name backlog ably min js formatted channel started name backlog jquery js body synchronous xmlhttprequest on the main thread is deprecated because of its detrimental effects to the end user s experience for more help check ably min js formatted connectionmanager connectimpl starting connection ably min js formatted connectionmanager starttransitiontimer transitionstate connecting ably min js formatted auth requesttoken using token auth with auth url ably min js formatted auth requesttoken tokenrequestcallback sending realtime token params ably min js formatted auth requesttoken tokenrequestcallback received body keyname gk clientid ttl timestamp capability nonce mac ably min js formatted auth requesttoken requesttoken sending post function a return u baseuri a keys g requesttoken token params keyname gk clientid ttl timestamp capability nonce mac ably min js formatted auth gettoken token received ably min js formatted connectionmanager choosetransport ably min js formatted connectionmanager choosetransport transport recovery mode clean ably min js formatted connectionmanager choosetransportforhost trying xhr ably min js formatted comettransport connect starting ably min js formatted comettransport connect uri ably min js formatted auth gettoken using cached token expires ably min js formatted comettransport connect connectparams v access token ably min js formatted xhrtransport tryconnect viable transport xhrtransport uri isconnected false ably min js formatted connectionmanager choosetransportforhost transport xhr connecting ably min js formatted connectionmanager settransportpending transport xhrtransport uri isconnected false mode clean ably min js formatted connectionmanager choosetransport establishing http transport xhrtransport uri isconnected false ably min js formatted transport onprotocolmessage received ably min js formatted comettransport onconnect baseuri connectionkey ably min js formatted connectionmanager activatetransport transport xhrtransport uri isconnected true ably min js formatted connectionmanager activatetransport connectionkey ably min js formatted connectionmanager activatetransport connectionserial ably min js formatted connectionmanager activatetransport connectionid ably min js formatted connectionmanager activatetransport clientid ably min js formatted connectionmanager notifystate new state connected ably min js formatted connectionmanager canceltransitiontimer ably min js formatted connectionmanager enactstatechange setting new state connected reason undefined ably min js formatted connectionmanager sendqueuedmessages sending queued messages ably min js formatted connectionmanager choosetransport upgrading connectionkey ably min js formatted connectionmanager choosetransportforhost trying web socket ably min js formatted websockettransport startconnecttimeout undefined ably min js formatted websockettransport connect starting ably min js formatted websockettransport connect uri wss realtime ably io ably min js formatted auth gettoken using cached token expires ably min js formatted websockettransport connect authparams access token ably min js formatted eventemitter emit unexpected listener exception error clientid must be specified to enter a presence channel stack error clientid must be specified to enter a presence channel at error native at g enter at object at g at e emit at ably min js formatted websockettransport onwsopen opened websocket ably min js formatted websockettransport tryconnect viable transport websockettransport uri wss realtime ably io upgrade formatโฆ ably min js formatted connectionmanager choosetransportforhost transport web socket connecting ably min js formatted connectionmanager settransportpending transport websockettransport uri wss realtime ably io upgrade formatโฆ mode upgrade ably min js formatted websockettransport onwsdata data received length type string ably min js formatted transport onprotocolmessage received ably min js formatted connectionmanager scheduletransportactivation scheduling transport transport websockettransport uri wss realtime ably io upgrade formatโฆ ably min js formatted connectionmanager scheduletransportactivation activating transport transport websockettransport uri wss realtime ably io upgrade formatโฆ ably min js formatted connectionmanager activatetransport transport websockettransport uri wss realtime ably io upgrade formatโฆ ably min js formatted connectionmanager activatetransport connectionkey ably min js formatted connectionmanager activatetransport connectionserial ably min js formatted connectionmanager activatetransport connectionid ably min js formatted connectionmanager notifystate new state connected ably min js formatted comettransport disconnect ably min js formatted comettransport requestclose closing false ably min js formatted connectionmanager deactivatetransport transport xhrtransport uri isconnected false ably min js formatted connectionmanager deactivatetransport state disconnected ably min js formatted connectionmanager deactivatetransport reason connection to server temporarily unavailable ably min js formatted comettransport dispose ably min js formatted comettransport dispose aborting recv request ably min js formatted transport ondisconnect err undefined ably min js formatted connectionmanager scheduletransportactivation syncing transport transport websockettransport uri wss realtime ably io upgrade formatโฆ ably min js formatted websockettransport onwsdata data received length type string ably min js formatted transport onprotocolmessage received ably min js formatted connectionmanager scheduletransportactivation sync successful upgraded transport transport websockettransport uri wss realtime ably io upgrade formatโฆ connectionserial connectionid ably min js formatted connectionmanager scheduletransportactivation sending queued messages on upgraded transport transport websockettransport uri wss realtime ably io upgrade formatโฆ ably min js formatted connectionmanager sendqueuedmessages sending queued messages ably min js formatted ably websockettransport onwsdata data received length type string ably min js formatted ably transport onprotocolmessage received ably min js formatted ably transport onprotocolmessage heartbeat connectionkey | 1 |
313,448 | 9,561,767,986 | IssuesEvent | 2019-05-04 01:53:34 | ul/kak-lsp | https://api.github.com/repos/ul/kak-lsp | closed | non-latin symbols cause junk and improper highlighting | bug high priority | Here's an example with improper highlighting (with underline):

Here's an example of junk (`M-oM-?M-=`):

Possibly related to https://github.com/ul/kak-lsp/issues/170#issuecomment-476136199 | 1.0 | non-latin symbols cause junk and improper highlighting - Here's an example with improper highlighting (with underline):

Here's an example of junk (`M-oM-?M-=`):

Possibly related to https://github.com/ul/kak-lsp/issues/170#issuecomment-476136199 | priority | non latin symbols cause junk and improper highlighting here s an example with improper highlighting with underline here s an example of junk m om m possibly related to | 1 |
223,719 | 7,460,149,900 | IssuesEvent | 2018-03-30 18:22:39 | cilium/cilium | https://api.github.com/repos/cilium/cilium | closed | CNP: egress default deny not working(intra-cluster communication) | area/policy priority/1.0-best-effort priority/high | Setup:
```
root@minikube:~# cilium endpoint list
ENDPOINT POLICY (ingress) POLICY (egress) IDENTITY LABELS (source:key[=value]) IPv6 IPv4 STATUS
ENFORCEMENT ENFORCEMENT
3365 Disabled Disabled 37299 k8s:id=app3 f00d::a0f:0:0:d25 10.15.191.0 ready
k8s:io.kubernetes.pod.namespace=default
11004 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:2afc 10.15.54.125 ready
k8s:io.kubernetes.pod.namespace=default
29898 Disabled Disabled 39640 reserved:health f00d::a0f:0:0:74ca 10.15.242.54 ready
42910 Disabled Disabled 55717 k8s:id=app2 f00d::a0f:0:0:a79e 10.15.236.254 ready
k8s:io.kubernetes.pod.namespace=default
49508 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:c164 10.15.114.197 ready
k8s:io.kubernetes.pod.namespace=default
root@minikube:~#
```
Trying sending HTTP traffic from app2 to app1
```
Manalis-MBP:cilium manalibhutiyani$ kubectl exec app2 -- curl -s app1-service.default.svc.cluster.local/public
{ 'val': 'this is public' }
```
Works
Apply egress deny all to app2:
```
apiVersion: "cilium.io/v2"
kind: CiliumNetworkPolicy
metadata:
name: "deny-all-egress"
spec:
endpointSelector:
matchLabels:
id: app2
egress:
- {}
```
Cilium policy get:
```
root@minikube:~# cilium policy get
[
{
"endpointSelector": {
"matchLabels": {
"any:id": "app2",
"k8s:io.kubernetes.pod.namespace": "default"
}
},
"egress": [
{}
],
"labels": [
{
"key": "io.cilium.k8s.policy.name",
"value": "deny-all-egress",
"source": "unspec"
},
{
"key": "io.cilium.k8s.policy.namespace",
"value": "default",
"source": "unspec"
}
]
}
]
Revision: 33
```
Check that policy applied correctly:
```
root@minikube:~# cilium endpoint list
ENDPOINT POLICY (ingress) POLICY (egress) IDENTITY LABELS (source:key[=value]) IPv6 IPv4 STATUS
ENFORCEMENT ENFORCEMENT
3365 Disabled Disabled 37299 k8s:id=app3 f00d::a0f:0:0:d25 10.15.191.0 ready
k8s:io.kubernetes.pod.namespace=default
11004 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:2afc 10.15.54.125 ready
k8s:io.kubernetes.pod.namespace=default
29898 Disabled Disabled 39640 reserved:health f00d::a0f:0:0:74ca 10.15.242.54 ready
42910 Disabled Enabled 55717 k8s:id=app2 f00d::a0f:0:0:a79e 10.15.236.254 ready
k8s:io.kubernetes.pod.namespace=default
49508 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:c164 10.15.114.197 ready
k8s:io.kubernetes.pod.namespace=default
```
Trying sending egress traffic from app2:
```
Manalis-MBP:cilium manalibhutiyani$ kubectl exec app2 -- curl -s app1-service.default.svc.cluster.local/public
{ 'val': 'this is public' }
```
This should have been denied by policy.
@ianvernon Was this work in progress? Feel free to close if this is not supported yet.
Also tried it with
```
apiVersion: "cilium.io/v2"
kind: CiliumNetworkPolicy
metadata:
name: "deny-all-egress"
spec:
endpointSelector:
egress:
- {}
```
Does not work as expected
| 2.0 | CNP: egress default deny not working(intra-cluster communication) - Setup:
```
root@minikube:~# cilium endpoint list
ENDPOINT POLICY (ingress) POLICY (egress) IDENTITY LABELS (source:key[=value]) IPv6 IPv4 STATUS
ENFORCEMENT ENFORCEMENT
3365 Disabled Disabled 37299 k8s:id=app3 f00d::a0f:0:0:d25 10.15.191.0 ready
k8s:io.kubernetes.pod.namespace=default
11004 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:2afc 10.15.54.125 ready
k8s:io.kubernetes.pod.namespace=default
29898 Disabled Disabled 39640 reserved:health f00d::a0f:0:0:74ca 10.15.242.54 ready
42910 Disabled Disabled 55717 k8s:id=app2 f00d::a0f:0:0:a79e 10.15.236.254 ready
k8s:io.kubernetes.pod.namespace=default
49508 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:c164 10.15.114.197 ready
k8s:io.kubernetes.pod.namespace=default
root@minikube:~#
```
Trying sending HTTP traffic from app2 to app1
```
Manalis-MBP:cilium manalibhutiyani$ kubectl exec app2 -- curl -s app1-service.default.svc.cluster.local/public
{ 'val': 'this is public' }
```
Works
Apply egress deny all to app2:
```
apiVersion: "cilium.io/v2"
kind: CiliumNetworkPolicy
metadata:
name: "deny-all-egress"
spec:
endpointSelector:
matchLabels:
id: app2
egress:
- {}
```
Cilium policy get:
```
root@minikube:~# cilium policy get
[
{
"endpointSelector": {
"matchLabels": {
"any:id": "app2",
"k8s:io.kubernetes.pod.namespace": "default"
}
},
"egress": [
{}
],
"labels": [
{
"key": "io.cilium.k8s.policy.name",
"value": "deny-all-egress",
"source": "unspec"
},
{
"key": "io.cilium.k8s.policy.namespace",
"value": "default",
"source": "unspec"
}
]
}
]
Revision: 33
```
Check that policy applied correctly:
```
root@minikube:~# cilium endpoint list
ENDPOINT POLICY (ingress) POLICY (egress) IDENTITY LABELS (source:key[=value]) IPv6 IPv4 STATUS
ENFORCEMENT ENFORCEMENT
3365 Disabled Disabled 37299 k8s:id=app3 f00d::a0f:0:0:d25 10.15.191.0 ready
k8s:io.kubernetes.pod.namespace=default
11004 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:2afc 10.15.54.125 ready
k8s:io.kubernetes.pod.namespace=default
29898 Disabled Disabled 39640 reserved:health f00d::a0f:0:0:74ca 10.15.242.54 ready
42910 Disabled Enabled 55717 k8s:id=app2 f00d::a0f:0:0:a79e 10.15.236.254 ready
k8s:io.kubernetes.pod.namespace=default
49508 Disabled Disabled 60284 k8s:id=app1 f00d::a0f:0:0:c164 10.15.114.197 ready
k8s:io.kubernetes.pod.namespace=default
```
Trying sending egress traffic from app2:
```
Manalis-MBP:cilium manalibhutiyani$ kubectl exec app2 -- curl -s app1-service.default.svc.cluster.local/public
{ 'val': 'this is public' }
```
This should have been denied by policy.
@ianvernon Was this work in progress? Feel free to close if this is not supported yet.
Also tried it with
```
apiVersion: "cilium.io/v2"
kind: CiliumNetworkPolicy
metadata:
name: "deny-all-egress"
spec:
endpointSelector:
egress:
- {}
```
Does not work as expected
| priority | cnp egress default deny not working intra cluster communication setup root minikube cilium endpoint list endpoint policy ingress policy egress identity labels source key status enforcement enforcement disabled disabled id ready io kubernetes pod namespace default disabled disabled id ready io kubernetes pod namespace default disabled disabled reserved health ready disabled disabled id ready io kubernetes pod namespace default disabled disabled id ready io kubernetes pod namespace default root minikube trying sending http traffic from to manalis mbp cilium manalibhutiyani kubectl exec curl s service default svc cluster local public val this is public works apply egress deny all to apiversion cilium io kind ciliumnetworkpolicy metadata name deny all egress spec endpointselector matchlabels id egress cilium policy get root minikube cilium policy get endpointselector matchlabels any id io kubernetes pod namespace default egress labels key io cilium policy name value deny all egress source unspec key io cilium policy namespace value default source unspec revision check that policy applied correctly root minikube cilium endpoint list endpoint policy ingress policy egress identity labels source key status enforcement enforcement disabled disabled id ready io kubernetes pod namespace default disabled disabled id ready io kubernetes pod namespace default disabled disabled reserved health ready disabled enabled id ready io kubernetes pod namespace default disabled disabled id ready io kubernetes pod namespace default trying sending egress traffic from manalis mbp cilium manalibhutiyani kubectl exec curl s service default svc cluster local public val this is public this should have been denied by policy ianvernon was this work in progress feel free to close if this is not supported yet also tried it with apiversion cilium io kind ciliumnetworkpolicy metadata name deny all egress spec endpointselector egress does not work as expected | 1 |
70,350 | 3,322,583,826 | IssuesEvent | 2015-11-09 15:08:22 | cs2103aug2015-w09-4j/main | https://api.github.com/repos/cs2103aug2015-w09-4j/main | reopened | A user can set reminders to his task | priority.high type.story | so that the user will be reminded to complete his task if he forgets to check his to-do list | 1.0 | A user can set reminders to his task - so that the user will be reminded to complete his task if he forgets to check his to-do list | priority | a user can set reminders to his task so that the user will be reminded to complete his task if he forgets to check his to do list | 1 |
1,986 | 2,522,548,282 | IssuesEvent | 2015-01-19 23:06:22 | BitShares/web_wallet | https://api.github.com/repos/BitShares/web_wallet | closed | Short sell orders display collateral as Total instead of actual total sell price | bug high priority | Note that the total BTS for the short order (first one in list) is showing the total collateral for the short, instead of the price for the sell order for the short.
Orders PRICE (BTS/BITGOLD) QUANTITY (BITGOLD) TOTAL (BTS)
123,827.9549 0.635863 157,475.18706
125,651.0610 0.124038 15,585.50630
I think TOTAL should be 128,827.9549*0.635863=78737.61 | 1.0 | Short sell orders display collateral as Total instead of actual total sell price - Note that the total BTS for the short order (first one in list) is showing the total collateral for the short, instead of the price for the sell order for the short.
Orders PRICE (BTS/BITGOLD) QUANTITY (BITGOLD) TOTAL (BTS)
123,827.9549 0.635863 157,475.18706
125,651.0610 0.124038 15,585.50630
I think TOTAL should be 128,827.9549*0.635863=78737.61 | priority | short sell orders display collateral as total instead of actual total sell price note that the total bts for the short order first one in list is showing the total collateral for the short instead of the price for the sell order for the short orders price bts bitgold quantity bitgold total bts i think total should be | 1 |
22,169 | 2,645,700,724 | IssuesEvent | 2015-03-13 01:15:40 | andresriancho/w3af | https://api.github.com/repos/andresriancho/w3af | opened | Scan of ./w3af_gui -p test_delay_moth hangs | bug priority:high | ./w3af_gui -p test_delay_moth
```ini
[profile]
description = nan
name = test_delay_moth
[crawl.web_spider]
only_forward = True
follow_regex = .*
ignore_regex =
[audit.file_upload]
extensions = gif,html,bmp,jpg,png,txt
[audit.eval]
use_time_delay = True
use_echo = True
[audit.un_ssl]
[audit.os_commanding]
[audit.lfi]
[audit.sqli]
[audit.preg_replace]
[audit.mx_injection]
[audit.generic]
diff_ratio = 0.3
[audit.format_string]
[audit.shell_shock]
[audit.memcachei]
[audit.ldapi]
[audit.buffer_overflow]
[audit.redos]
[audit.global_redirect]
[audit.xpath]
[audit.cors_origin]
origin_header_value = http://w3af.org/
[audit.htaccess_methods]
[audit.dav]
[audit.ssi]
[audit.csrf]
[audit.xss]
persistent_xss = True
[audit.ssl_certificate]
minExpireDays = 30
caFileName = %ROOT_PATH%/plugins/audit/ssl_certificate/ca.pem
[audit.xst]
[audit.blind_sqli]
eq_limit = 0.9
[audit.phishing_vector]
[audit.response_splitting]
[audit.rfd]
[audit.rfi]
listen_address = 10.5.6.13
listen_port = 44449
use_w3af_site = True
[audit.frontpage]
[output.html_file]
output_file = ~/w3af_output_html_utf8_error.html
verbose = True
[output.text_file]
verbose = True
output_file = /tmp/output.txt
http_output_file = /tmp/output-http.txt
[output.console]
verbose = True
[target]
target = http://127.0.0.1:8000/core/
[misc-settings]
fuzz_cookies = False
fuzz_form_files = True
fuzz_url_filenames = False
fuzz_url_parts = False
fuzzed_files_extension = gif
fuzzable_headers =
form_fuzzing_mode = tmb
stop_on_first_exception = False
max_discovery_time = 120
interface = ppp0
local_ip_address = 10.5.6.13
non_targets =
msf_location = /opt/metasploit3/bin/
[http-settings]
timeout = 0
headers_file =
basic_auth_user =
basic_auth_passwd =
basic_auth_domain =
ntlm_auth_domain =
ntlm_auth_user =
ntlm_auth_passwd =
ntlm_auth_url =
cookie_jar_file =
ignore_session_cookies = False
proxy_port = 8080
proxy_address =
user_agent = w3af.org
rand_user_agent = False
max_file_size = 400000
max_http_retries = 2
max_requests_per_second = 0
always_404 =
never_404 =
string_match_404 =
url_parameter =
``` | 1.0 | Scan of ./w3af_gui -p test_delay_moth hangs - ./w3af_gui -p test_delay_moth
```ini
[profile]
description = nan
name = test_delay_moth
[crawl.web_spider]
only_forward = True
follow_regex = .*
ignore_regex =
[audit.file_upload]
extensions = gif,html,bmp,jpg,png,txt
[audit.eval]
use_time_delay = True
use_echo = True
[audit.un_ssl]
[audit.os_commanding]
[audit.lfi]
[audit.sqli]
[audit.preg_replace]
[audit.mx_injection]
[audit.generic]
diff_ratio = 0.3
[audit.format_string]
[audit.shell_shock]
[audit.memcachei]
[audit.ldapi]
[audit.buffer_overflow]
[audit.redos]
[audit.global_redirect]
[audit.xpath]
[audit.cors_origin]
origin_header_value = http://w3af.org/
[audit.htaccess_methods]
[audit.dav]
[audit.ssi]
[audit.csrf]
[audit.xss]
persistent_xss = True
[audit.ssl_certificate]
minExpireDays = 30
caFileName = %ROOT_PATH%/plugins/audit/ssl_certificate/ca.pem
[audit.xst]
[audit.blind_sqli]
eq_limit = 0.9
[audit.phishing_vector]
[audit.response_splitting]
[audit.rfd]
[audit.rfi]
listen_address = 10.5.6.13
listen_port = 44449
use_w3af_site = True
[audit.frontpage]
[output.html_file]
output_file = ~/w3af_output_html_utf8_error.html
verbose = True
[output.text_file]
verbose = True
output_file = /tmp/output.txt
http_output_file = /tmp/output-http.txt
[output.console]
verbose = True
[target]
target = http://127.0.0.1:8000/core/
[misc-settings]
fuzz_cookies = False
fuzz_form_files = True
fuzz_url_filenames = False
fuzz_url_parts = False
fuzzed_files_extension = gif
fuzzable_headers =
form_fuzzing_mode = tmb
stop_on_first_exception = False
max_discovery_time = 120
interface = ppp0
local_ip_address = 10.5.6.13
non_targets =
msf_location = /opt/metasploit3/bin/
[http-settings]
timeout = 0
headers_file =
basic_auth_user =
basic_auth_passwd =
basic_auth_domain =
ntlm_auth_domain =
ntlm_auth_user =
ntlm_auth_passwd =
ntlm_auth_url =
cookie_jar_file =
ignore_session_cookies = False
proxy_port = 8080
proxy_address =
user_agent = w3af.org
rand_user_agent = False
max_file_size = 400000
max_http_retries = 2
max_requests_per_second = 0
always_404 =
never_404 =
string_match_404 =
url_parameter =
``` | priority | scan of gui p test delay moth hangs gui p test delay moth ini description nan name test delay moth only forward true follow regex ignore regex extensions gif html bmp jpg png txt use time delay true use echo true diff ratio origin header value persistent xss true minexpiredays cafilename root path plugins audit ssl certificate ca pem eq limit listen address listen port use site true output file output html error html verbose true verbose true output file tmp output txt http output file tmp output http txt verbose true target fuzz cookies false fuzz form files true fuzz url filenames false fuzz url parts false fuzzed files extension gif fuzzable headers form fuzzing mode tmb stop on first exception false max discovery time interface local ip address non targets msf location opt bin timeout headers file basic auth user basic auth passwd basic auth domain ntlm auth domain ntlm auth user ntlm auth passwd ntlm auth url cookie jar file ignore session cookies false proxy port proxy address user agent org rand user agent false max file size max http retries max requests per second always never string match url parameter | 1 |
352,305 | 10,534,876,811 | IssuesEvent | 2019-10-01 15:35:17 | commerceblock/ocean | https://api.github.com/repos/commerceblock/ocean | closed | rpc: remove warnings in rpcwallet.cpp | Priority: High :fire: Type: Maintenance :construction: | This especially might be messing with the expected behaviour:
```
wallet/rpcwallet.cpp:729:59: warning: | has lower precedence than >; > will be evaluated first
[-Wparentheses]
if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth |! out.fSpendable)
~~~~~~~~~~~~~~~~~~~~~~~^
wallet/rpcwallet.cpp:729:59: note: place parentheses around the '>' expression to silence this warning
if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth |! out.fSpendable)
^
( )
wallet/rpcwallet.cpp:729:59: note: place parentheses around the | expression to evaluate it first
if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth |! out.fSpendable)
``` | 1.0 | rpc: remove warnings in rpcwallet.cpp - This especially might be messing with the expected behaviour:
```
wallet/rpcwallet.cpp:729:59: warning: | has lower precedence than >; > will be evaluated first
[-Wparentheses]
if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth |! out.fSpendable)
~~~~~~~~~~~~~~~~~~~~~~~^
wallet/rpcwallet.cpp:729:59: note: place parentheses around the '>' expression to silence this warning
if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth |! out.fSpendable)
^
( )
wallet/rpcwallet.cpp:729:59: note: place parentheses around the | expression to evaluate it first
if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth |! out.fSpendable)
``` | priority | rpc remove warnings in rpcwallet cpp this especially might be messing with the expected behaviour wallet rpcwallet cpp warning has lower precedence than will be evaluated first if out ndepth nmaxdepth out fspendable wallet rpcwallet cpp note place parentheses around the expression to silence this warning if out ndepth nmaxdepth out fspendable wallet rpcwallet cpp note place parentheses around the expression to evaluate it first if out ndepth nmaxdepth out fspendable | 1 |
61,715 | 3,152,048,183 | IssuesEvent | 2015-09-16 11:50:08 | matz-e/lobster | https://api.github.com/repos/matz-e/lobster | closed | Make the fs module more verbose | bug high-priority | This would really help debugging issues for regular users, as per recent private email conversation. | 1.0 | Make the fs module more verbose - This would really help debugging issues for regular users, as per recent private email conversation. | priority | make the fs module more verbose this would really help debugging issues for regular users as per recent private email conversation | 1 |
39,584 | 2,857,072,592 | IssuesEvent | 2015-06-02 17:55:58 | IQSS/dataverse | https://api.github.com/repos/IQSS/dataverse | closed | Facets: Hide Affiliation Facet | Component: Search/Browse Priority: High Status: QA | The top results in the affiliation facet are from Harvested datasets so it isn't providing the user with a great amount of things to browse on. For a quick fix, we want to hide the Affiliation facet. Ticket #2039 covers a more in depth look at facets for later on. | 1.0 | Facets: Hide Affiliation Facet - The top results in the affiliation facet are from Harvested datasets so it isn't providing the user with a great amount of things to browse on. For a quick fix, we want to hide the Affiliation facet. Ticket #2039 covers a more in depth look at facets for later on. | priority | facets hide affiliation facet the top results in the affiliation facet are from harvested datasets so it isn t providing the user with a great amount of things to browse on for a quick fix we want to hide the affiliation facet ticket covers a more in depth look at facets for later on | 1 |
556,159 | 16,476,442,526 | IssuesEvent | 2021-05-24 06:13:17 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | lms.autozone.com - video or audio doesn't play | browser-firefox bugbug-probability-high engine-gecko ml-needsdiagnosis-false ml-probability-high priority-normal | <!-- @browser: Firefox 68.0 -->
<!-- @ua_header: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/74817 -->
**URL**: https://lms.autozone.com/Kview/CustomCodeBehind/base/courseware/scorm/scorm12courseframe.aspx
**Browser / Version**: Firefox 68.0
**Operating System**: Linux
**Tested Another Browser**: Yes Other
**Problem type**: Video or audio doesn't play
**Description**: There is no video
**Steps to Reproduce**:
This page will not load. I backed out and tried it again and still nothing
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/e735ab50-144d-47e8-9552-f47dc03873b0.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200409090751</li><li>channel: default</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/5/5e83afef-7788-4d2b-854b-39bcc9fce085)
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | 1.0 | lms.autozone.com - video or audio doesn't play - <!-- @browser: Firefox 68.0 -->
<!-- @ua_header: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/74817 -->
**URL**: https://lms.autozone.com/Kview/CustomCodeBehind/base/courseware/scorm/scorm12courseframe.aspx
**Browser / Version**: Firefox 68.0
**Operating System**: Linux
**Tested Another Browser**: Yes Other
**Problem type**: Video or audio doesn't play
**Description**: There is no video
**Steps to Reproduce**:
This page will not load. I backed out and tried it again and still nothing
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/e735ab50-144d-47e8-9552-f47dc03873b0.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200409090751</li><li>channel: default</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/5/5e83afef-7788-4d2b-854b-39bcc9fce085)
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | priority | lms autozone com video or audio doesn t play url browser version firefox operating system linux tested another browser yes other problem type video or audio doesn t play description there is no video steps to reproduce this page will not load i backed out and tried it again and still nothing view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel default hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with โค๏ธ | 1 |
129,057 | 5,087,919,106 | IssuesEvent | 2016-12-31 11:54:34 | GluuFederation/oxTrust | https://api.github.com/repos/GluuFederation/oxTrust | closed | Updates for new OpenID Connect Front Channel Logout Spec | enhancement High Priority | `frontchannel_logout_session_supported` --> true | false ... default = true
This param should be managed as a JSON property for oxAuth. Check community edition setup to make sure it gets provisioned correctly.
| 1.0 | Updates for new OpenID Connect Front Channel Logout Spec - `frontchannel_logout_session_supported` --> true | false ... default = true
This param should be managed as a JSON property for oxAuth. Check community edition setup to make sure it gets provisioned correctly.
| priority | updates for new openid connect front channel logout spec frontchannel logout session supported true false default true this param should be managed as a json property for oxauth check community edition setup to make sure it gets provisioned correctly | 1 |
200,546 | 7,009,048,708 | IssuesEvent | 2017-12-19 17:40:07 | redhat-nfvpe/kube-centos-ansible | https://api.github.com/repos/redhat-nfvpe/kube-centos-ansible | closed | Builder virtual machine needs to use Docker CE | priority:high state:needs_review type:bug | With the latest version of Planter, the Docker version shipping with CentOS 7.x is no longer new enough (version 1.12). Planter is now using the `--mount` flag in Docker, which is only available as of Docker 17.06.
Fix is to add the `docker_repo_type: ce` to the `install-docker` role for the `builder.yml` play. | 1.0 | Builder virtual machine needs to use Docker CE - With the latest version of Planter, the Docker version shipping with CentOS 7.x is no longer new enough (version 1.12). Planter is now using the `--mount` flag in Docker, which is only available as of Docker 17.06.
Fix is to add the `docker_repo_type: ce` to the `install-docker` role for the `builder.yml` play. | priority | builder virtual machine needs to use docker ce with the latest version of planter the docker version shipping with centos x is no longer new enough version planter is now using the mount flag in docker which is only available as of docker fix is to add the docker repo type ce to the install docker role for the builder yml play | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.