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
844
labels
stringlengths
4
721
body
stringlengths
1
261k
index
stringclasses
12 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
248k
binary_label
int64
0
1
2,428
3,453,764,947
IssuesEvent
2015-12-17 13:03:12
NatLibFi/Skosmos
https://api.github.com/repos/NatLibFi/Skosmos
closed
REST globalSearch is slow
bug critical performance REST
## At which URL did you encounter the problem? http://dev.finto.fi/rest/v1/search?query=musiikki* ## What steps will reproduce the problem? 1. Perform REST global search for `"musiikki*"` ## What is the expected output? What do you see instead? The request takes more than 6 seconds. With api.finto.fi (v1.3-maintenance) the response time is about 750 ms.
True
REST globalSearch is slow - ## At which URL did you encounter the problem? http://dev.finto.fi/rest/v1/search?query=musiikki* ## What steps will reproduce the problem? 1. Perform REST global search for `"musiikki*"` ## What is the expected output? What do you see instead? The request takes more than 6 seconds. With api.finto.fi (v1.3-maintenance) the response time is about 750 ms.
non_priority
rest globalsearch is slow at which url did you encounter the problem what steps will reproduce the problem perform rest global search for musiikki what is the expected output what do you see instead the request takes more than seconds with api finto fi maintenance the response time is about ms
0
22,080
10,726,231,247
IssuesEvent
2019-10-28 08:55:46
whatwg/html
https://api.github.com/repos/whatwg/html
closed
Add `unsafe-inherit` as a value for the Cross-Origin Opener Policy
addition/proposal security/privacy topic: cross-origin-opener-policy
**The problem** While working on a COOP deployment strategy across our apps we came across a potential issue which might be common enough to warrant supporting at the spec level. The situation is as follows: 1. An origin deploys `Cross-Origin-Opener-Policy: same-origin` for all of its responses. 2. The developer notices breakage because one of the documents in the origin was being used in an auxiliary context by a cross-origin document and COOP prevents the interaction. This poses a problem because: - The developer cannot keep setting COOP for the affected document because it will prevent legitimate cross-origin interactions. - The developer cannot remove COOP from the affected document because it will put it in a different browsing context group from the rest of its own origin, preventing same-origin interactions; the rest of the origin will have COOP and will be in a different browsing context group. 3. As a result, the rollout of COOP would likely have to be rolled back until the developer can make sure that no document in the origin is being used cross-site. It seems useful for developers to be able to exempt parts of their site from COOP enforcement to enable incremental rollouts. **A possible solution** I believe we could solve this by adding a new value of `unsafe-inherit` to COOP. When a document sets `Cross-Origin-Opener-Policy: unsafe-inherit` it would elect to be put into the browsing context group of the opening document, assuming the opening document's own COOP doesn't prevent this. That is: - If a document without COOP opens a popup which sets `COOP: unsafe-inherit` then the popup would end up in its browsing context group and the documents can communicate. - If a document with COOP opens a popup which sets `COOP: unsafe-inherit`, then: - If the popup is same-origin / same-site with the opener and the COOP of the opener is `same-origin` / `same-site`, the documents would be in the same browsing context group. - If the popup is cross-origin then it will be in the same browsing context group if and only if the opener specifies `unsafe-allow-outgoing`. This would allow sites like OAuth providers set `COOP: unsafe-inherit` on documents which need to be accessible by cross-origin windows while using a stricter COOP elsewhere in the same origin/site. Similarly to CORP this could also provide a path to setting COOP restrictions by default sometime in the future by allowing developers with resources which need to be accessed cross-origin with a way to opt out of the restrictions. *Note*: The original text of this issue referred to this mode as `cross-origin` instead of `unsafe-inherit` and references to `cross-origin` still remain in some of the discussion below. @mikewest @annevk @empijei @csreis @lweichselbaum
True
Add `unsafe-inherit` as a value for the Cross-Origin Opener Policy - **The problem** While working on a COOP deployment strategy across our apps we came across a potential issue which might be common enough to warrant supporting at the spec level. The situation is as follows: 1. An origin deploys `Cross-Origin-Opener-Policy: same-origin` for all of its responses. 2. The developer notices breakage because one of the documents in the origin was being used in an auxiliary context by a cross-origin document and COOP prevents the interaction. This poses a problem because: - The developer cannot keep setting COOP for the affected document because it will prevent legitimate cross-origin interactions. - The developer cannot remove COOP from the affected document because it will put it in a different browsing context group from the rest of its own origin, preventing same-origin interactions; the rest of the origin will have COOP and will be in a different browsing context group. 3. As a result, the rollout of COOP would likely have to be rolled back until the developer can make sure that no document in the origin is being used cross-site. It seems useful for developers to be able to exempt parts of their site from COOP enforcement to enable incremental rollouts. **A possible solution** I believe we could solve this by adding a new value of `unsafe-inherit` to COOP. When a document sets `Cross-Origin-Opener-Policy: unsafe-inherit` it would elect to be put into the browsing context group of the opening document, assuming the opening document's own COOP doesn't prevent this. That is: - If a document without COOP opens a popup which sets `COOP: unsafe-inherit` then the popup would end up in its browsing context group and the documents can communicate. - If a document with COOP opens a popup which sets `COOP: unsafe-inherit`, then: - If the popup is same-origin / same-site with the opener and the COOP of the opener is `same-origin` / `same-site`, the documents would be in the same browsing context group. - If the popup is cross-origin then it will be in the same browsing context group if and only if the opener specifies `unsafe-allow-outgoing`. This would allow sites like OAuth providers set `COOP: unsafe-inherit` on documents which need to be accessible by cross-origin windows while using a stricter COOP elsewhere in the same origin/site. Similarly to CORP this could also provide a path to setting COOP restrictions by default sometime in the future by allowing developers with resources which need to be accessed cross-origin with a way to opt out of the restrictions. *Note*: The original text of this issue referred to this mode as `cross-origin` instead of `unsafe-inherit` and references to `cross-origin` still remain in some of the discussion below. @mikewest @annevk @empijei @csreis @lweichselbaum
non_priority
add unsafe inherit as a value for the cross origin opener policy the problem while working on a coop deployment strategy across our apps we came across a potential issue which might be common enough to warrant supporting at the spec level the situation is as follows an origin deploys cross origin opener policy same origin for all of its responses the developer notices breakage because one of the documents in the origin was being used in an auxiliary context by a cross origin document and coop prevents the interaction this poses a problem because the developer cannot keep setting coop for the affected document because it will prevent legitimate cross origin interactions the developer cannot remove coop from the affected document because it will put it in a different browsing context group from the rest of its own origin preventing same origin interactions the rest of the origin will have coop and will be in a different browsing context group as a result the rollout of coop would likely have to be rolled back until the developer can make sure that no document in the origin is being used cross site it seems useful for developers to be able to exempt parts of their site from coop enforcement to enable incremental rollouts a possible solution i believe we could solve this by adding a new value of unsafe inherit to coop when a document sets cross origin opener policy unsafe inherit it would elect to be put into the browsing context group of the opening document assuming the opening document s own coop doesn t prevent this that is if a document without coop opens a popup which sets coop unsafe inherit then the popup would end up in its browsing context group and the documents can communicate if a document with coop opens a popup which sets coop unsafe inherit then if the popup is same origin same site with the opener and the coop of the opener is same origin same site the documents would be in the same browsing context group if the popup is cross origin then it will be in the same browsing context group if and only if the opener specifies unsafe allow outgoing this would allow sites like oauth providers set coop unsafe inherit on documents which need to be accessible by cross origin windows while using a stricter coop elsewhere in the same origin site similarly to corp this could also provide a path to setting coop restrictions by default sometime in the future by allowing developers with resources which need to be accessed cross origin with a way to opt out of the restrictions note the original text of this issue referred to this mode as cross origin instead of unsafe inherit and references to cross origin still remain in some of the discussion below mikewest annevk empijei csreis lweichselbaum
0
11,308
14,108,740,545
IssuesEvent
2020-11-06 18:20:01
timberio/vector
https://api.github.com/repos/timberio/vector
closed
Add `log_schema.kubernetes_key` global option
domain: processing needs: approval platform: kubernetes source: kubernetes_logs type: enhancement
Similar to https://github.com/timberio/vector/issues/1823 we need to: - [x] Add a `log_schema.kubernetes_key` option. This should - [ ] Use this key in the `kubernetes` source - [x] Use this key in the `kubernetes_metadata` transform - [ ] Use this key when mapping in the `loki` and `datadog` sinks. Any others? Should we open these as separate issues?
1.0
Add `log_schema.kubernetes_key` global option - Similar to https://github.com/timberio/vector/issues/1823 we need to: - [x] Add a `log_schema.kubernetes_key` option. This should - [ ] Use this key in the `kubernetes` source - [x] Use this key in the `kubernetes_metadata` transform - [ ] Use this key when mapping in the `loki` and `datadog` sinks. Any others? Should we open these as separate issues?
non_priority
add log schema kubernetes key global option similar to we need to add a log schema kubernetes key option this should use this key in the kubernetes source use this key in the kubernetes metadata transform use this key when mapping in the loki and datadog sinks any others should we open these as separate issues
0
3,056
2,732,884,721
IssuesEvent
2015-04-17 09:58:49
Textalk/angular-schema-form
https://api.github.com/repos/Textalk/angular-schema-form
closed
Disabling submit (or any other button of choice) when form is not valid
Documentation question
Hello there, I am trying to have buttons disable automatically while the form is in invalid state. A trivial thing in unfiltered angular, seemingly non-trivial in schema-form. Looking over the templates, I cannot see how one would go about disabling a button, be it submit or any other kind, while the form state is invalid (myForm.$invalid === true). I am probably thinking too complicated, as usual. Could you please hit me with a cluebat? ;) Cheers, Reven
1.0
Disabling submit (or any other button of choice) when form is not valid - Hello there, I am trying to have buttons disable automatically while the form is in invalid state. A trivial thing in unfiltered angular, seemingly non-trivial in schema-form. Looking over the templates, I cannot see how one would go about disabling a button, be it submit or any other kind, while the form state is invalid (myForm.$invalid === true). I am probably thinking too complicated, as usual. Could you please hit me with a cluebat? ;) Cheers, Reven
non_priority
disabling submit or any other button of choice when form is not valid hello there i am trying to have buttons disable automatically while the form is in invalid state a trivial thing in unfiltered angular seemingly non trivial in schema form looking over the templates i cannot see how one would go about disabling a button be it submit or any other kind while the form state is invalid myform invalid true i am probably thinking too complicated as usual could you please hit me with a cluebat cheers reven
0
182,990
31,073,473,477
IssuesEvent
2023-08-12 07:20:38
softeerbootcamp-2nd/H5-MyCarMaster
https://api.github.com/repos/softeerbootcamp-2nd/H5-MyCarMaster
opened
[Refactor] 컴포넌트 Style 재정리
🙇🏿‍♂️ fe ♻️ refactor 🎨 design sprint[三]
## ⚙️ 리팩토링 내용 - [ ] OptionBox 컴포넌트 Style 재정리 - [ ] Button 컴포넌트 Style 재정리 - [ ] Layout Style 재정리 - [ ] 기타 컴포넌트 Style 재정리
1.0
[Refactor] 컴포넌트 Style 재정리 - ## ⚙️ 리팩토링 내용 - [ ] OptionBox 컴포넌트 Style 재정리 - [ ] Button 컴포넌트 Style 재정리 - [ ] Layout Style 재정리 - [ ] 기타 컴포넌트 Style 재정리
non_priority
컴포넌트 style 재정리 ⚙️ 리팩토링 내용 optionbox 컴포넌트 style 재정리 button 컴포넌트 style 재정리 layout style 재정리 기타 컴포넌트 style 재정리
0
296,212
22,292,597,783
IssuesEvent
2022-06-12 15:32:42
Bentheburrito/sacastats
https://api.github.com/repos/Bentheburrito/sacastats
opened
Codebase cleanup
documentation improvement
There are some areas where we should clean up and refactor. - [ ] There are 2 `maybe_to_int` fns, one in the normal `Utils` module, and another in `Utils.StaticData` Feel free to add to this if you see areas of improvement in the codebase :)
1.0
Codebase cleanup - There are some areas where we should clean up and refactor. - [ ] There are 2 `maybe_to_int` fns, one in the normal `Utils` module, and another in `Utils.StaticData` Feel free to add to this if you see areas of improvement in the codebase :)
non_priority
codebase cleanup there are some areas where we should clean up and refactor there are maybe to int fns one in the normal utils module and another in utils staticdata feel free to add to this if you see areas of improvement in the codebase
0
322,782
23,922,623,818
IssuesEvent
2022-09-09 18:32:12
JohanFalt/Foundry_WoD20
https://api.github.com/repos/JohanFalt/Foundry_WoD20
closed
[C20] Changeling the Dreaming Character Sheet
Documentation/discussion Done CtD
### Top Name Player Chronicle Court Legacies House Seeming Kith Motley ### Attributes (as usual) ### Talents Alertness Athletics Brawl Empathy Expression Intimidation **Kenning** Leadership Streetwise Subterfuge ### Skills Animal Ken Crafts Drive Etiquette Firearms Larceny Melee Performance Stealth Survival ### Knowledges Academics Computer Enigmas **Gremayre** Investigation Law Medicine Politics Science Technology ### Advantages Backgrounds Arts ### Realms Actor Fae Nature Prop Scene Time Birthright Frailty Antithesis Ravaging Threshold Musing Threshold Glamour Willpower Nightmare Banality [C20_2-Page_Official_Interactive.pdf](https://github.com/JohanFalt/Foundry_WoD20/files/8933600/C20_2-Page_Official_Interactive.pdf)
1.0
[C20] Changeling the Dreaming Character Sheet - ### Top Name Player Chronicle Court Legacies House Seeming Kith Motley ### Attributes (as usual) ### Talents Alertness Athletics Brawl Empathy Expression Intimidation **Kenning** Leadership Streetwise Subterfuge ### Skills Animal Ken Crafts Drive Etiquette Firearms Larceny Melee Performance Stealth Survival ### Knowledges Academics Computer Enigmas **Gremayre** Investigation Law Medicine Politics Science Technology ### Advantages Backgrounds Arts ### Realms Actor Fae Nature Prop Scene Time Birthright Frailty Antithesis Ravaging Threshold Musing Threshold Glamour Willpower Nightmare Banality [C20_2-Page_Official_Interactive.pdf](https://github.com/JohanFalt/Foundry_WoD20/files/8933600/C20_2-Page_Official_Interactive.pdf)
non_priority
changeling the dreaming character sheet top name player chronicle court legacies house seeming kith motley attributes as usual talents alertness athletics brawl empathy expression intimidation kenning leadership streetwise subterfuge skills animal ken crafts drive etiquette firearms larceny melee performance stealth survival knowledges academics computer enigmas gremayre investigation law medicine politics science technology advantages backgrounds arts realms actor fae nature prop scene time birthright frailty antithesis ravaging threshold musing threshold glamour willpower nightmare banality
0
7,896
6,288,868,284
IssuesEvent
2017-07-19 17:56:51
phetsims/molecule-polarity
https://api.github.com/repos/phetsims/molecule-polarity
closed
RealMoleculesScreenView is doing unnecessary work
type:performance
We're releasing Molecule Polarity 1.0.0 without an implementation of the Real Molecules screen, see #27. But in the meantime, it is still doing a lot of unnecessary work, which will impact startup time. RealMoleculesScreenView constructor currently looks like this: ```js function RealMoleculesScreenView( ... ) { ScreenView.call( ... ); // create a whole bunch of Nodes and add them to rootNode if ( MPQueryParameters.realMolecules ) { this.addChild( rootNode ); } else { this.addChild( new UnderDevelopmentPlane( this.layoutBounds ) ); } } ``` Better would be: ```js function RealMoleculesScreenView( ... ) { ScreenView.call( ... ); if ( !MPQueryParameters.realMolecules ) { this.addChild( new UnderDevelopmentPlane( this.layoutBounds ) ); } else { // create a whole bunch of Nodes and add them to rootNode this.addChild( rootNode ); } } ```
True
RealMoleculesScreenView is doing unnecessary work - We're releasing Molecule Polarity 1.0.0 without an implementation of the Real Molecules screen, see #27. But in the meantime, it is still doing a lot of unnecessary work, which will impact startup time. RealMoleculesScreenView constructor currently looks like this: ```js function RealMoleculesScreenView( ... ) { ScreenView.call( ... ); // create a whole bunch of Nodes and add them to rootNode if ( MPQueryParameters.realMolecules ) { this.addChild( rootNode ); } else { this.addChild( new UnderDevelopmentPlane( this.layoutBounds ) ); } } ``` Better would be: ```js function RealMoleculesScreenView( ... ) { ScreenView.call( ... ); if ( !MPQueryParameters.realMolecules ) { this.addChild( new UnderDevelopmentPlane( this.layoutBounds ) ); } else { // create a whole bunch of Nodes and add them to rootNode this.addChild( rootNode ); } } ```
non_priority
realmoleculesscreenview is doing unnecessary work we re releasing molecule polarity without an implementation of the real molecules screen see but in the meantime it is still doing a lot of unnecessary work which will impact startup time realmoleculesscreenview constructor currently looks like this js function realmoleculesscreenview screenview call create a whole bunch of nodes and add them to rootnode if mpqueryparameters realmolecules this addchild rootnode else this addchild new underdevelopmentplane this layoutbounds better would be js function realmoleculesscreenview screenview call if mpqueryparameters realmolecules this addchild new underdevelopmentplane this layoutbounds else create a whole bunch of nodes and add them to rootnode this addchild rootnode
0
152,944
13,489,154,998
IssuesEvent
2020-09-11 13:30:49
continental/ecal
https://api.github.com/repos/continental/ecal
closed
Add github action to automate documentation build
documentation
The new documentation is based on sphinx and needs to be build to reflect changes on the rst files on gihub-pages. This step should be automated by a github action rebuilding the documentation on a master pull request.
1.0
Add github action to automate documentation build - The new documentation is based on sphinx and needs to be build to reflect changes on the rst files on gihub-pages. This step should be automated by a github action rebuilding the documentation on a master pull request.
non_priority
add github action to automate documentation build the new documentation is based on sphinx and needs to be build to reflect changes on the rst files on gihub pages this step should be automated by a github action rebuilding the documentation on a master pull request
0
75,433
20,814,486,847
IssuesEvent
2022-03-18 08:43:25
SiWECAL-TestBeam/SiWECAL-TB-analysis
https://api.github.com/repos/SiWECAL-TestBeam/SiWECAL-TB-analysis
opened
BCID overflow correction
eventbuilding cosmic after testbeam
Placeholder issue. Will fill this after pushing the corresponding commit.
1.0
BCID overflow correction - Placeholder issue. Will fill this after pushing the corresponding commit.
non_priority
bcid overflow correction placeholder issue will fill this after pushing the corresponding commit
0
190,977
15,265,442,015
IssuesEvent
2021-02-22 07:19:21
misomazf88/git_flow_practice
https://api.github.com/repos/misomazf88/git_flow_practice
closed
Un commit que no sigue la convención de código o arreglo a realizar
documentation
L El último commit tiene el siguiente mensaje: `Update #titulo1, #imagen1, of file recetas/Colombia/ajiaco.html` Este issue es solo un recordatorio de la convención de comentarios en los commits y puede ser cerrado.
1.0
Un commit que no sigue la convención de código o arreglo a realizar - L El último commit tiene el siguiente mensaje: `Update #titulo1, #imagen1, of file recetas/Colombia/ajiaco.html` Este issue es solo un recordatorio de la convención de comentarios en los commits y puede ser cerrado.
non_priority
un commit que no sigue la convención de código o arreglo a realizar l el último commit tiene el siguiente mensaje update of file recetas colombia ajiaco html este issue es solo un recordatorio de la convención de comentarios en los commits y puede ser cerrado
0
39,223
5,223,431,699
IssuesEvent
2017-01-27 12:12:22
TerraME/terrame
https://api.github.com/repos/TerraME/terrame
closed
Review skipped lines from terralib
Data Test
Review skipped lines from terralib, including those added after updating to TerraLib 5.2.
1.0
Review skipped lines from terralib - Review skipped lines from terralib, including those added after updating to TerraLib 5.2.
non_priority
review skipped lines from terralib review skipped lines from terralib including those added after updating to terralib
0
140,830
12,949,351,596
IssuesEvent
2020-07-19 08:45:52
KuChainNetwork/Project-Decalogue
https://api.github.com/repos/KuChainNetwork/Project-Decalogue
opened
[DOC] Predict market Requirements document
documentation
# [DOC] Predict market Requirements document *Type of Proposal** - [x] Feature Request (e.g. functionality) - [] Economic Model - [ ] Underlying Technology (e.g. performance) - [x] Application Development - [ ] Others **Background** The previous [Issues](https://github.com/KuChainNetwork/Project-Decalogue/issues/4) talk about the AMM, in order to use AMM as a price feed oracle for KuChain. As a price feed of assets, AMM is good enough, But for the chain and other developer the off-chain event result is important too. So I suggest KuChain can support the on-chain predict market, that make the chain have ability to recognize the event result of the real world -- a Oracle solution for off-chain event. **Describe The Proposal (No more than 50 words)** Predict market allow everyone to create a free bilateral or multilateral market on kuchain, and erveryone can trade the different result of the event during a period of time, before the event have been revealed, each result have a shares market (similar to AMM) for trader. And the price of each share in market, have positive correlation with current probability of option. Before the off-chain event reveal result in real world ,the trader can buy the shares of the options or sell the shares they have had. For instance: Bob deposite 1000 KCS and create a Predict market about off-chain event -- "its will be raining before the end of tomorrow in BeijIng" this event has two options, one is `raining` and another is `not raining`, and this market wil close before 12 o'clock tomorrow. So Bob's predict event have two share market for each result . The user who believe that tomorrow will be rain in Beijing, will buy the `raining` market's shares, the other who think tomorrow not gonna raining will buy the `not raining`market's shares. ![](https://mermaid.ink/img/eyJjb2RlIjoiZ3JhcGggVERcbiAgICBCW1wiZXZlbnRcIl1cbiAgICBCLS0-Q1tcIm9wdGlvbjE6IFJhaW5pbmcgc2hhcmUgbWFya2V0XCJdXG4gICAgQi0tPkVbXCJvcHRpb24yOiBOb3QgcmFpbmluZyBzaGFyZSBtYXJrZXRcIl0iLCJtZXJtYWlkIjp7InRoZW1lIjoiZGVmYXVsdCJ9LCJ1cGRhdGVFZGl0b3IiOmZhbHNlfQ) Use the [LMSR](https://www.cultivatelabs.com/prediction-markets-guide/how-does-logarithmic-market-scoring-rule-lmsr-work)(logarithmic Market scoring rule)algorithm,the share market is a AMM market that allow traders make deal with the on-chain algorithm,the more user buy the shares, the price of per share will get higher, the more user sell their shares ,the price get lower, and the algorithm can adjust the share price about the other option‘s share market. When the raining share price rise, the not raining shares price down. As time goes on ,traders can get more information of the event ,and the options of the off-chain event has change their probability. Trader will reappraisal the probability of the result, they will make new decision about sell and buy the shares. The shares price of different options will get high volatility cause the trader make order . When the market close, which share market is highest share price that means the options is represent the real world event result. ![](https://mermaid.ink/svg/eyJjb2RlIjoiZ3JhcGggTFJcbiAgICBCW1wiTWFya2V0IGNyZWF0ZWlvblwiXVxuICAgIEItLT5DW1wiVHJhZGluZ1wiXVxuICAgIEMtLT5FKFwiTWFya2V0IGV2ZW50IGhhcHBlbnNcIilcbiAgICBFLS0-RltcIlJlcG9ydGluZ1wiXVxuICAgIEYtLT5HW1wiU2V0dGxlbWVudFwiXSIsIm1lcm1haWQiOnsidGhlbWUiOiJkZWZhdWx0In0sInVwZGF0ZUVkaXRvciI6ZmFsc2V9) **Business Model (Optional for underlying technology)** The on-chain predict market can contribute huge amount of gas fees just like a Dex on Kuchain. At the same time ,kuchain have get the ability to provide off-chain result about every event. The predict market is a base service can packaging as insurance product,bet market or hedge products and social prediction market by developer. Validator and the developer will make more profit , the trader will get interest arbitrage profit. **Implementation Steps (Optional for economic model)** Refer the [Augur projrct](https://github.com/AugurProject/whitepaper/blob/master/v2/english/augur-whitepaper-v2.pdf) and integrate with current on-chain governance module,the market and trade module is relatively independent and markets use KCS as standard currency. - Implement the LMSR market on-chain. - CreateNew market module for market creation. - Integration the Reporting and Settlement with current governance module. - Multiple coins adaption for settlement. **Timetable (Optional)** | Implementation Steps | Time Consuming | | -------------------- | ----------------------------------------- | | step 1 | Implement the LMSR market on-chain | | step 2 | Market module for market creation | | step 3 | Integrate with current governance module. | | step 4 | testing | | Total duration | two month | **Contact Information** iadpay@outlook.com
1.0
[DOC] Predict market Requirements document - # [DOC] Predict market Requirements document *Type of Proposal** - [x] Feature Request (e.g. functionality) - [] Economic Model - [ ] Underlying Technology (e.g. performance) - [x] Application Development - [ ] Others **Background** The previous [Issues](https://github.com/KuChainNetwork/Project-Decalogue/issues/4) talk about the AMM, in order to use AMM as a price feed oracle for KuChain. As a price feed of assets, AMM is good enough, But for the chain and other developer the off-chain event result is important too. So I suggest KuChain can support the on-chain predict market, that make the chain have ability to recognize the event result of the real world -- a Oracle solution for off-chain event. **Describe The Proposal (No more than 50 words)** Predict market allow everyone to create a free bilateral or multilateral market on kuchain, and erveryone can trade the different result of the event during a period of time, before the event have been revealed, each result have a shares market (similar to AMM) for trader. And the price of each share in market, have positive correlation with current probability of option. Before the off-chain event reveal result in real world ,the trader can buy the shares of the options or sell the shares they have had. For instance: Bob deposite 1000 KCS and create a Predict market about off-chain event -- "its will be raining before the end of tomorrow in BeijIng" this event has two options, one is `raining` and another is `not raining`, and this market wil close before 12 o'clock tomorrow. So Bob's predict event have two share market for each result . The user who believe that tomorrow will be rain in Beijing, will buy the `raining` market's shares, the other who think tomorrow not gonna raining will buy the `not raining`market's shares. ![](https://mermaid.ink/img/eyJjb2RlIjoiZ3JhcGggVERcbiAgICBCW1wiZXZlbnRcIl1cbiAgICBCLS0-Q1tcIm9wdGlvbjE6IFJhaW5pbmcgc2hhcmUgbWFya2V0XCJdXG4gICAgQi0tPkVbXCJvcHRpb24yOiBOb3QgcmFpbmluZyBzaGFyZSBtYXJrZXRcIl0iLCJtZXJtYWlkIjp7InRoZW1lIjoiZGVmYXVsdCJ9LCJ1cGRhdGVFZGl0b3IiOmZhbHNlfQ) Use the [LMSR](https://www.cultivatelabs.com/prediction-markets-guide/how-does-logarithmic-market-scoring-rule-lmsr-work)(logarithmic Market scoring rule)algorithm,the share market is a AMM market that allow traders make deal with the on-chain algorithm,the more user buy the shares, the price of per share will get higher, the more user sell their shares ,the price get lower, and the algorithm can adjust the share price about the other option‘s share market. When the raining share price rise, the not raining shares price down. As time goes on ,traders can get more information of the event ,and the options of the off-chain event has change their probability. Trader will reappraisal the probability of the result, they will make new decision about sell and buy the shares. The shares price of different options will get high volatility cause the trader make order . When the market close, which share market is highest share price that means the options is represent the real world event result. ![](https://mermaid.ink/svg/eyJjb2RlIjoiZ3JhcGggTFJcbiAgICBCW1wiTWFya2V0IGNyZWF0ZWlvblwiXVxuICAgIEItLT5DW1wiVHJhZGluZ1wiXVxuICAgIEMtLT5FKFwiTWFya2V0IGV2ZW50IGhhcHBlbnNcIilcbiAgICBFLS0-RltcIlJlcG9ydGluZ1wiXVxuICAgIEYtLT5HW1wiU2V0dGxlbWVudFwiXSIsIm1lcm1haWQiOnsidGhlbWUiOiJkZWZhdWx0In0sInVwZGF0ZUVkaXRvciI6ZmFsc2V9) **Business Model (Optional for underlying technology)** The on-chain predict market can contribute huge amount of gas fees just like a Dex on Kuchain. At the same time ,kuchain have get the ability to provide off-chain result about every event. The predict market is a base service can packaging as insurance product,bet market or hedge products and social prediction market by developer. Validator and the developer will make more profit , the trader will get interest arbitrage profit. **Implementation Steps (Optional for economic model)** Refer the [Augur projrct](https://github.com/AugurProject/whitepaper/blob/master/v2/english/augur-whitepaper-v2.pdf) and integrate with current on-chain governance module,the market and trade module is relatively independent and markets use KCS as standard currency. - Implement the LMSR market on-chain. - CreateNew market module for market creation. - Integration the Reporting and Settlement with current governance module. - Multiple coins adaption for settlement. **Timetable (Optional)** | Implementation Steps | Time Consuming | | -------------------- | ----------------------------------------- | | step 1 | Implement the LMSR market on-chain | | step 2 | Market module for market creation | | step 3 | Integrate with current governance module. | | step 4 | testing | | Total duration | two month | **Contact Information** iadpay@outlook.com
non_priority
predict market requirements document predict market requirements document type of proposal feature request e g functionality economic model underlying technology e g performance application development others background the previous talk about the amm in order to use amm as a price feed oracle for kuchain as a price feed of assets amm is good enough but for the chain and other developer the off chain event result is important too so i suggest kuchain can support the on chain predict market that make the chain have ability to recognize the event result of the real world a oracle solution for off chain event describe the proposal no more than words predict market allow everyone to create a free bilateral or multilateral market on kuchain and erveryone can trade the different result of the event during a period of time before the event have been revealed each result have a shares market similar to amm for trader and the price of each share in market have positive correlation with current probability of option before the off chain event reveal result in real world the trader can buy the shares of the options or sell the shares they have had for instance bob deposite kcs and create a predict market about off chain event its will be raining before the end of tomorrow in beijing this event has two options one is raining and another is not raining and this market wil close before o clock tomorrow so bob s predict event have two share market for each result the user who believe that tomorrow will be rain in beijing will buy the raining market s shares the other who think tomorrow not gonna raining will buy the not raining market s shares use the market scoring rule)algorithm the share market is a amm market that allow traders make deal with the on chain algorithm,the more user buy the shares the price of per share will get higher the more user sell their shares the price get lower and the algorithm can adjust the share price about the other option‘s share market when the raining share price rise the not raining shares price down as time goes on traders can get more information of the event and the options of the off chain event has change their probability trader will reappraisal the probability of the result they will make new decision about sell and buy the shares the shares price of different options will get high volatility cause the trader make order when the market close which share market is highest share price that means the options is represent the real world event result business model optional for underlying technology the on chain predict market can contribute huge amount of gas fees just like a dex on kuchain at the same time kuchain have get the ability to provide off chain result about every event the predict market is a base service can packaging as insurance product bet market or hedge products and social prediction market by developer validator and the developer will make more profit the trader will get interest arbitrage profit implementation steps optional for economic model refer the and integrate with current on chain governance module,the market and trade module is relatively independent and markets use kcs as standard currency implement the lmsr market on chain createnew market module for market creation integration the reporting and settlement with current governance module multiple coins adaption for settlement timetable optional implementation steps time consuming step implement the lmsr market on chain step market module for market creation step integrate with current governance module step testing total duration two month contact information iadpay outlook com
0
6,324
8,679,094,495
IssuesEvent
2018-11-30 22:16:29
rigetti/grove
https://api.github.com/repos/rigetti/grove
closed
Make grove modules pyQuil 2.0 compatible
compatibility
- [x] alpha - [x] amplification - [x] bernstein_vazirani - [x] circuit_primitives - [x] deutsch_jozsa ~~ising~~ - [x] meas ~~pyqaoa~~ ~~pyvqe~~ - [x] qft - [x] simon The Ising, QAOA, and VQE modules have been moved to issue #191 because they're heavily interdependent and merit a review process of their own.
True
Make grove modules pyQuil 2.0 compatible - - [x] alpha - [x] amplification - [x] bernstein_vazirani - [x] circuit_primitives - [x] deutsch_jozsa ~~ising~~ - [x] meas ~~pyqaoa~~ ~~pyvqe~~ - [x] qft - [x] simon The Ising, QAOA, and VQE modules have been moved to issue #191 because they're heavily interdependent and merit a review process of their own.
non_priority
make grove modules pyquil compatible alpha amplification bernstein vazirani circuit primitives deutsch jozsa ising meas pyqaoa pyvqe qft simon the ising qaoa and vqe modules have been moved to issue because they re heavily interdependent and merit a review process of their own
0
79,797
29,171,343,195
IssuesEvent
2023-05-19 02:16:20
openzfs/zfs
https://api.github.com/repos/openzfs/zfs
closed
Kernel panic at zpool import time
Type: Defect Status: Stale
<!-- Please fill out the following template, which will help other contributors address your issue. --> ### System information <!-- add version after "|" character --> Type | Version/Name --- | --- Distribution Name | Proxmox Distribution Version | 7 Kernel Version | 5.3.19-3-pve Architecture | amd64 OpenZFS Version | 2.1.2-pve1 ### Describe the problem you're observing Hello all, I am running a proxmox server on a HP Proliant Microserver Gen8 with the latest kernel 5.13.19-3-pve. Since two days, I am unable to import my `discworld` pool without crashing the server! It is a simple two-disks mirrored configuration. I was able to import the pool readonly (`zfs import -o readonly=on -d /dev/sdxx`) and make a copy of all the data, I don't have however snapshots available. When trying to import the pool with write access, it hangs all zfs-related commands (`zpool status`, for example). I also tried `zpool import -F -X -a -d /dev/disk/by-id`, without much success either. The zpool import command is irresponsive and doesn't terminate to a SIGTERM or a SIGKILL. Looking at the disk activity with iostat doesn't show tremendous activity on the pool disks (but they are not dead as I have full read-only access). I'll join below the trace seen with dmesg. Any help understanding why I cannot import this pool will be much appreciated. Don't hesitate to ask me for more detailed information as I don't know what command outputs to send and help. Thanks in advance ### Describe how to reproduce the problem Not sure it is reproducible on another environment than mine. On this server, trying to import the pool with write access is enough to reproduce the issue. ### Include any warning/errors/backtraces from the system logs ``` Jan 24 15:00:55 atuin kernel: [ 3505.259654] INFO: task zfs:33284 blocked for more than 120 seconds. Jan 24 15:00:55 atuin kernel: [ 3505.259711] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:00:55 atuin kernel: [ 3505.259745] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:00:55 atuin kernel: [ 3505.259788] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:00:55 atuin kernel: [ 3505.259838] Call Trace: Jan 24 15:00:55 atuin kernel: [ 3505.259855] <TASK> Jan 24 15:00:55 atuin kernel: [ 3505.259871] __schedule+0x2fa/0x910 Jan 24 15:00:55 atuin kernel: [ 3505.259904] schedule+0x4f/0xc0 Jan 24 15:00:55 atuin kernel: [ 3505.259927] schedule_preempt_disabled+0xe/0x10 Jan 24 15:00:55 atuin kernel: [ 3505.259957] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:00:55 atuin kernel: [ 3505.259989] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:00:55 atuin kernel: [ 3505.260018] mutex_lock+0x34/0x40 Jan 24 15:00:55 atuin kernel: [ 3505.260042] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260243] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260436] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260629] ? __kmalloc_node+0x276/0x300 Jan 24 15:00:55 atuin kernel: [ 3505.260658] ? _copy_from_user+0x2e/0x60 Jan 24 15:00:55 atuin kernel: [ 3505.260685] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260868] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:00:55 atuin kernel: [ 3505.260895] do_syscall_64+0x61/0xb0 Jan 24 15:00:55 atuin kernel: [ 3505.260921] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:00:55 atuin kernel: [ 3505.260951] ? irqentry_exit+0x19/0x30 Jan 24 15:00:55 atuin kernel: [ 3505.260974] ? exc_page_fault+0x8f/0x170 Jan 24 15:00:55 atuin kernel: [ 3505.260999] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:00:55 atuin kernel: [ 3505.261026] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:00:55 atuin kernel: [ 3505.261057] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:00:55 atuin kernel: [ 3505.261080] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:00:55 atuin kernel: [ 3505.261124] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:00:55 atuin kernel: [ 3505.261165] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:00:55 atuin kernel: [ 3505.262491] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:00:55 atuin kernel: [ 3505.263613] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:00:55 atuin kernel: [ 3505.264700] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:00:55 atuin kernel: [ 3505.265769] </TASK> Jan 24 15:02:55 atuin kernel: [ 3626.091977] INFO: task zfs:33284 blocked for more than 241 seconds. Jan 24 15:02:55 atuin kernel: [ 3626.093064] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:02:55 atuin kernel: [ 3626.094134] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:02:55 atuin kernel: [ 3626.095231] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:02:55 atuin kernel: [ 3626.096391] Call Trace: Jan 24 15:02:56 atuin kernel: [ 3626.097483] <TASK> Jan 24 15:02:56 atuin kernel: [ 3626.098547] __schedule+0x2fa/0x910 Jan 24 15:02:56 atuin kernel: [ 3626.099587] schedule+0x4f/0xc0 Jan 24 15:02:56 atuin kernel: [ 3626.100591] schedule_preempt_disabled+0xe/0x10 Jan 24 15:02:56 atuin kernel: [ 3626.101580] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:02:56 atuin kernel: [ 3626.102647] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:02:56 atuin kernel: [ 3626.103765] mutex_lock+0x34/0x40 Jan 24 15:02:56 atuin kernel: [ 3626.104892] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.106127] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.107227] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.108325] ? __kmalloc_node+0x276/0x300 Jan 24 15:02:56 atuin kernel: [ 3626.109236] ? _copy_from_user+0x2e/0x60 Jan 24 15:02:56 atuin kernel: [ 3626.110124] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.111244] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:02:56 atuin kernel: [ 3626.112267] do_syscall_64+0x61/0xb0 Jan 24 15:02:56 atuin kernel: [ 3626.113277] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:02:56 atuin kernel: [ 3626.114216] ? irqentry_exit+0x19/0x30 Jan 24 15:02:56 atuin kernel: [ 3626.115082] ? exc_page_fault+0x8f/0x170 Jan 24 15:02:56 atuin kernel: [ 3626.115961] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:02:56 atuin kernel: [ 3626.116828] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:02:56 atuin kernel: [ 3626.117706] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:02:56 atuin kernel: [ 3626.118579] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:02:56 atuin kernel: [ 3626.119487] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:02:56 atuin kernel: [ 3626.120416] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:02:56 atuin kernel: [ 3626.121344] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:02:56 atuin kernel: [ 3626.122266] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:02:56 atuin kernel: [ 3626.123198] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:02:56 atuin kernel: [ 3626.124146] </TASK> Jan 24 15:04:50 atuin kernel: [ 3740.917885] VERIFY3(range_tree_space(smla->smla_rt) + sme->sme_run <= smla->smla_sm->sm_size) failed (17179877376 <= 17179869184) Jan 24 15:04:50 atuin kernel: [ 3740.919910] PANIC at space_map.c:405:space_map_load_callback() Jan 24 15:04:50 atuin kernel: [ 3740.920975] Showing stack for process 41661 Jan 24 15:04:50 atuin kernel: [ 3740.922153] CPU: 4 PID: 41661 Comm: z_wr_iss Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:04:50 atuin kernel: [ 3740.923243] Hardware name: HP ProLiant MicroServer Gen8, BIOS J06 04/04/2019 Jan 24 15:04:50 atuin kernel: [ 3740.924412] Call Trace: Jan 24 15:04:50 atuin kernel: [ 3740.925566] <TASK> Jan 24 15:04:50 atuin kernel: [ 3740.926628] dump_stack+0x7d/0x9c Jan 24 15:04:50 atuin kernel: [ 3740.927676] spl_dumpstack+0x29/0x2b [spl] Jan 24 15:04:50 atuin kernel: [ 3740.928731] spl_panic+0xd4/0xfc [spl] Jan 24 15:04:50 atuin kernel: [ 3740.929778] space_map_load_callback+0x7f/0x90 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.930992] space_map_iterate+0x1c0/0x3f0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.932184] ? spa_stats_destroy+0x190/0x190 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.933372] space_map_load_length+0x61/0xe0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.934539] metaslab_load+0x151/0x8a0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.935685] ? __cond_resched+0x1a/0x50 Jan 24 15:04:50 atuin kernel: [ 3740.936674] ? slab_pre_alloc_hook.constprop.0+0x96/0xe0 Jan 24 15:04:50 atuin kernel: [ 3740.937650] ? __raw_callee_save___native_queued_spin_unlock+0x15/0x23 Jan 24 15:04:50 atuin kernel: [ 3740.938629] metaslab_activate+0x4f/0x2c0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.939761] metaslab_alloc_dva+0x2cd/0x1480 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.940903] metaslab_alloc+0xbe/0x270 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.942038] zio_dva_allocate+0xe6/0x930 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.943195] ? tsd_hash_search.isra.0+0x71/0xa0 [spl] Jan 24 15:04:50 atuin kernel: [ 3740.944201] zio_execute+0x89/0x130 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.945368] taskq_thread+0x2b7/0x500 [spl] Jan 24 15:04:50 atuin kernel: [ 3740.946375] ? wake_up_q+0xa0/0xa0 Jan 24 15:04:50 atuin kernel: [ 3740.947372] ? zio_gang_tree_free+0x70/0x70 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.948544] ? taskq_thread_spawn+0x60/0x60 [spl] Jan 24 15:04:50 atuin kernel: [ 3740.949554] kthread+0x12b/0x150 Jan 24 15:04:50 atuin kernel: [ 3740.950546] ? set_kthread_struct+0x50/0x50 Jan 24 15:04:50 atuin kernel: [ 3740.951546] ret_from_fork+0x22/0x30 Jan 24 15:04:50 atuin kernel: [ 3740.952550] </TASK> Jan 24 15:04:56 atuin kernel: [ 3746.924292] INFO: task zfs:33284 blocked for more than 362 seconds. Jan 24 15:04:56 atuin kernel: [ 3746.925332] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:04:56 atuin kernel: [ 3746.926356] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:04:56 atuin kernel: [ 3746.927408] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:04:56 atuin kernel: [ 3746.928510] Call Trace: Jan 24 15:04:56 atuin kernel: [ 3746.929575] <TASK> Jan 24 15:04:56 atuin kernel: [ 3746.930626] __schedule+0x2fa/0x910 Jan 24 15:04:56 atuin kernel: [ 3746.931687] schedule+0x4f/0xc0 Jan 24 15:04:56 atuin kernel: [ 3746.932750] schedule_preempt_disabled+0xe/0x10 Jan 24 15:04:56 atuin kernel: [ 3746.933776] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:04:56 atuin kernel: [ 3746.934797] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:04:56 atuin kernel: [ 3746.935813] mutex_lock+0x34/0x40 Jan 24 15:04:56 atuin kernel: [ 3746.936831] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.938015] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.939177] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.940329] ? __kmalloc_node+0x276/0x300 Jan 24 15:04:56 atuin kernel: [ 3746.941255] ? _copy_from_user+0x2e/0x60 Jan 24 15:04:56 atuin kernel: [ 3746.942163] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.943219] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:04:56 atuin kernel: [ 3746.944101] do_syscall_64+0x61/0xb0 Jan 24 15:04:56 atuin kernel: [ 3746.944973] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:04:56 atuin kernel: [ 3746.945828] ? irqentry_exit+0x19/0x30 Jan 24 15:04:56 atuin kernel: [ 3746.946680] ? exc_page_fault+0x8f/0x170 Jan 24 15:04:56 atuin kernel: [ 3746.947534] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:04:56 atuin kernel: [ 3746.948414] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:04:56 atuin kernel: [ 3746.949283] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:04:56 atuin kernel: [ 3746.950143] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:04:56 atuin kernel: [ 3746.951039] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:04:56 atuin kernel: [ 3746.951943] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:04:56 atuin kernel: [ 3746.952864] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:04:56 atuin kernel: [ 3746.953771] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:04:56 atuin kernel: [ 3746.954683] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:04:56 atuin kernel: [ 3746.955593] </TASK> Jan 24 15:05:01 atuin CRON[41710]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) Jan 24 15:06:57 atuin kernel: [ 3867.756633] INFO: task zpool:32594 blocked for more than 120 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.757573] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.758495] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.759444] task:zpool state:D stack: 0 pid:32594 ppid: 1889 flags:0x00004002 Jan 24 15:06:57 atuin kernel: [ 3867.760419] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.761391] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.762333] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.763284] schedule+0x4f/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.764464] io_schedule+0x46/0x70 Jan 24 15:06:57 atuin kernel: [ 3867.765417] cv_wait_common+0xae/0x130 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.766388] ? wait_woken+0x80/0x80 Jan 24 15:06:57 atuin kernel: [ 3867.767327] __cv_wait_io+0x18/0x20 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.768271] txg_wait_synced_impl+0xd6/0x120 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.769405] txg_wait_synced+0x10/0x40 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.770505] spa_load+0x1512/0x1840 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.771588] spa_load_best+0x57/0x2d0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.772666] spa_import+0x1eb/0x830 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.773715] ? spl_kmem_free_impl+0x25/0x30 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.774607] zfs_ioc_pool_import+0x138/0x150 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.775640] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.776689] ? __kmalloc_node+0x276/0x300 Jan 24 15:06:57 atuin kernel: [ 3867.777568] ? _copy_from_user+0x2e/0x60 Jan 24 15:06:57 atuin kernel: [ 3867.778446] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.779482] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.780355] do_syscall_64+0x61/0xb0 Jan 24 15:06:57 atuin kernel: [ 3867.781239] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:06:57 atuin kernel: [ 3867.782121] ? irqentry_exit+0x19/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.782992] ? exc_page_fault+0x8f/0x170 Jan 24 15:06:57 atuin kernel: [ 3867.783861] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.784741] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:06:57 atuin kernel: [ 3867.785618] RIP: 0033:0x7f5e62736cc7 Jan 24 15:06:57 atuin kernel: [ 3867.786492] RSP: 002b:00007ffe81c0f7b8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:06:57 atuin kernel: [ 3867.787402] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f5e62736cc7 Jan 24 15:06:57 atuin kernel: [ 3867.788320] RDX: 00007ffe81c0f830 RSI: 0000000000005a02 RDI: 0000000000000003 Jan 24 15:06:57 atuin kernel: [ 3867.789255] RBP: 00007ffe81c13720 R08: 0000000000000000 R09: 00007f5e62800be0 Jan 24 15:06:57 atuin kernel: [ 3867.790178] R10: 0000000010000000 R11: 0000000000000246 R12: 0000560d09185570 Jan 24 15:06:57 atuin kernel: [ 3867.791104] R13: 00007ffe81c0f830 R14: 00007f5e34001aa8 R15: 0000000000000000 Jan 24 15:06:57 atuin kernel: [ 3867.792037] </TASK> Jan 24 15:06:57 atuin kernel: [ 3867.792975] INFO: task zfs:33284 blocked for more than 483 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.793926] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.794878] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.795843] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:06:57 atuin kernel: [ 3867.796842] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.797793] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.798735] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.799680] schedule+0x4f/0xc Jan 24 15:06:57 atuin kernel: [ 3867.800628] schedule_preempt_disabled+0xe/0x10 Jan 24 15:06:57 atuin kernel: [ 3867.801558] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:06:57 atuin kernel: [ 3867.802480] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:06:57 atuin kernel: [ 3867.803385] mutex_lock+0x34/0x40 Jan 24 15:06:57 atuin kernel: [ 3867.804267] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.805301] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.806319] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.807346] ? __kmalloc_node+0x276/0x300 Jan 24 15:06:57 atuin kernel: [ 3867.808211] ? _copy_from_user+0x2e/0x60 Jan 24 15:06:57 atuin kernel: [ 3867.809085] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.810113] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.810979] do_syscall_64+0x61/0xb0 Jan 24 15:06:57 atuin kernel: [ 3867.811842] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:06:57 atuin kernel: [ 3867.812725] ? irqentry_exit+0x19/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.813587] ? exc_page_fault+0x8f/0x170 Jan 24 15:06:57 atuin kernel: [ 3867.814451] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.815316] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:06:57 atuin kernel: [ 3867.816194] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:06:57 atuin kernel: [ 3867.817084] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:06:57 atuin kernel: [ 3867.817992] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:06:57 atuin kernel: [ 3867.818908] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:06:57 atuin kernel: [ 3867.819834] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:06:57 atuin kernel: [ 3867.820766] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:06:57 atuin kernel: [ 3867.821699] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:06:57 atuin kernel: [ 3867.822635] </TASK> Jan 24 15:06:57 atuin kernel: [ 3867.823560] INFO: task txg_sync:41655 blocked for more than 120 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.824522] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.825497] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.826494] task:txg_sync state:D stack: 0 pid:41655 ppid: 2 flags:0x00004000 Jan 24 15:06:57 atuin kernel: [ 3867.827517] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.828523] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.829527] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.830525] schedule+0x4f/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.831502] schedule_timeout+0x8a/0x140 Jan 24 15:06:57 atuin kernel: [ 3867.832464] ? __bpf_trace_tick_stop+0x10/0x10 Jan 24 15:06:57 atuin kernel: [ 3867.833438] io_schedule_timeout+0x51/0x80 Jan 24 15:06:57 atuin kernel: [ 3867.834405] __cv_timedwait_common+0x131/0x170 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.835381] ? wait_woken+0x80/0x80 Jan 24 15:06:57 atuin kernel: [ 3867.836342] __cv_timedwait_io+0x19/0x20 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.837311] zio_wait+0x133/0x2c0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.838418] dsl_pool_sync+0x435/0x4f0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.839491] spa_sync+0x55a/0xff0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.840557] ? spa_txg_history_init_io+0x106/0x110 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.841643] txg_sync_thread+0x2d3/0x460 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.842695] ? txg_init+0x260/0x260 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.843753] thread_generic_wrapper+0x79/0x90 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.844687] ? __thread_exit+0x20/0x20 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.845614] kthread+0x12b/0x150 Jan 24 15:06:57 atuin kernel: [ 3867.846528] ? set_kthread_struct+0x50/0x50 Jan 24 15:06:57 atuin kernel: [ 3867.847444] ret_from_fork+0x22/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.848362] </TASK> Jan 24 15:06:57 atuin kernel: [ 3867.849273] INFO: task z_wr_iss:41661 blocked for more than 120 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.850211] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.851153] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.852122] task:z_wr_iss state:D stack: 0 pid:41661 ppid: 2 flags:0x00004000 Jan 24 15:06:57 atuin kernel: [ 3867.853125] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.854104] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.855074] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.856053] schedule+0x4f/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.857036] spl_panic+0xfa/0xfc [spl] Jan 24 15:06:57 atuin kernel: [ 3867.858021] space_map_load_callback+0x7f/0x90 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.859162] space_map_iterate+0x1c0/0x3f0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.860300] ? spa_stats_destroy+0x190/0x190 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.861455] space_map_load_length+0x61/0xe0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.862596] metaslab_load+0x151/0x8a0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.863718] ? __cond_resched+0x1a/0x50 Jan 24 15:06:57 atuin kernel: [ 3867.864693] ? slab_pre_alloc_hook.constprop.0+0x96/0xe0 Jan 24 15:06:57 atuin kernel: [ 3867.865656] ? __raw_callee_save___native_queued_spin_unlock+0x15/0x23 Jan 24 15:06:57 atuin kernel: [ 3867.866628] metaslab_activate+0x4f/0x2c0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.867746] metaslab_alloc_dva+0x2cd/0x1480 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.868869] metaslab_alloc+0xbe/0x270 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.869974] zio_dva_allocate+0xe6/0x930 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.871085] ? tsd_hash_search.isra.0+0x71/0xa0 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.872038] zio_execute+0x89/0x130 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.873142] taskq_thread+0x2b7/0x500 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.874067] ? wake_up_q+0xa0/0xa0 Jan 24 15:06:57 atuin kernel: [ 3867.874958] ? zio_gang_tree_free+0x70/0x70 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.876006] ? taskq_thread_spawn+0x60/0x60 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.876918] kthread+0x12b/0x150 Jan 24 15:06:57 atuin kernel: [ 3867.877808] ? set_kthread_struct+0x50/0x50 Jan 24 15:06:57 atuin kernel: [ 3867.878704] ret_from_fork+0x22/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.879602] </TASK> Jan 24 15:08:58 atuin kernel: [ 3988.588947] INFO: task zpool:32594 blocked for more than 241 seconds. Jan 24 15:08:58 atuin kernel: [ 3988.589916] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:08:58 atuin kernel: [ 3988.590840] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:08:58 atuin kernel: [ 3988.591783] task:zpool state:D stack: 0 pid:32594 ppid: 1889 flags:0x00004002 Jan 24 15:08:58 atuin kernel: [ 3988.592754] Call Trace: Jan 24 15:08:58 atuin kernel: [ 3988.593724] <TASK> Jan 24 15:08:58 atuin kernel: [ 3988.594669] __schedule+0x2fa/0x910 Jan 24 15:08:58 atuin kernel: [ 3988.595622] schedule+0x4f/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.596560] io_schedule+0x46/0x70 Jan 24 15:08:58 atuin kernel: [ 3988.597503] cv_wait_common+0xae/0x130 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.598445] ? wait_woken+0x80/0x80 Jan 24 15:08:58 atuin kernel: [ 3988.599371] __cv_wait_io+0x18/0x20 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.600300] txg_wait_synced_impl+0xd6/0x120 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.601416] txg_wait_synced+0x10/0x40 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.602498] spa_load+0x1512/0x1840 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.603573] spa_load_best+0x57/0x2d0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.604648] spa_import+0x1eb/0x830 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.605716] ? spl_kmem_free_impl+0x25/0x30 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.606628] zfs_ioc_pool_import+0x138/0x150 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.607675] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.608699] ? __kmalloc_node+0x276/0x300 Jan 24 15:08:58 atuin kernel: [ 3988.609557] ? _copy_from_user+0x2e/0x60 Jan 24 15:08:58 atuin kernel: [ 3988.610410] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.611423] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.612278] do_syscall_64+0x61/0xb0 Jan 24 15:08:58 atuin kernel: [ 3988.613149] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:08:58 atuin kernel: [ 3988.614010] ? irqentry_exit+0x19/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.614863] ? exc_page_fault+0x8f/0x170 Jan 24 15:08:58 atuin kernel: [ 3988.615710] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.616558] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:08:58 atuin kernel: [ 3988.617423] RIP: 0033:0x7f5e62736cc7 Jan 24 15:08:58 atuin kernel: [ 3988.618274] RSP: 002b:00007ffe81c0f7b8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:08:58 atuin kernel: [ 3988.619154] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f5e62736cc7 Jan 24 15:08:58 atuin kernel: [ 3988.620032] RDX: 00007ffe81c0f830 RSI: 0000000000005a02 RDI: 0000000000000003 Jan 24 15:08:58 atuin kernel: [ 3988.620914] RBP: 00007ffe81c13720 R08: 0000000000000000 R09: 00007f5e62800be0 Jan 24 15:08:58 atuin kernel: [ 3988.621786] R10: 0000000010000000 R11: 0000000000000246 R12: 0000560d09185570 Jan 24 15:08:58 atuin kernel: [ 3988.622662] R13: 00007ffe81c0f830 R14: 00007f5e34001aa8 R15: 0000000000000000 Jan 24 15:08:58 atuin kernel: [ 3988.623541] </TASK> Jan 24 15:08:58 atuin kernel: [ 3988.624410] INFO: task zfs:33284 blocked for more than 604 seconds. Jan 24 15:08:58 atuin kernel: [ 3988.625311] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:08:58 atuin kernel: [ 3988.626210] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:08:58 atuin kernel: [ 3988.627133] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:08:58 atuin kernel: [ 3988.628082] Call Trace: Jan 24 15:08:58 atuin kernel: [ 3988.629024] <TASK> Jan 24 15:08:58 atuin kernel: [ 3988.629945] __schedule+0x2fa/0x910 Jan 24 15:08:58 atuin kernel: [ 3988.630875] schedule+0x4f/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.631799] schedule_preempt_disabled+0xe/0x10 Jan 24 15:08:58 atuin kernel: [ 3988.632730] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:08:58 atuin kernel: [ 3988.633664] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:08:58 atuin kernel: [ 3988.634572] mutex_lock+0x34/0x40 Jan 24 15:08:58 atuin kernel: [ 3988.635456] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.636481] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.637511] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.638541] ? __kmalloc_node+0x276/0x300 Jan 24 15:08:58 atuin kernel: [ 3988.639408] ? _copy_from_user+0x2e/0x60 Jan 24 15:08:58 atuin kernel: [ 3988.640512] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.641554] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.642423] do_syscall_64+0x61/0xb0 Jan 24 15:08:58 atuin kernel: [ 3988.643287] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:08:58 atuin kernel: [ 3988.644161] ? irqentry_exit+0x19/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.645034] ? exc_page_fault+0x8f/0x170 Jan 24 15:08:58 atuin kernel: [ 3988.645900] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.646766] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:08:58 atuin kernel: [ 3988.647643] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:08:58 atuin kernel: [ 3988.648518] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:08:58 atuin kernel: [ 3988.649440] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:08:58 atuin kernel: [ 3988.650358] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:08:58 atuin kernel: [ 3988.651285] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:08:58 atuin kernel: [ 3988.652208] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:08:58 atuin kernel: [ 3988.653150] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:08:58 atuin kernel: [ 3988.654087] </TASK> Jan 24 15:08:58 atuin kernel: [ 3988.655013] INFO: task txg_sync:41655 blocked for more than 241 seconds. Jan 24 15:08:58 atuin kernel: [ 3988.655975] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:08:58 atuin kernel: [ 3988.656951] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:08:58 atuin kernel: [ 3988.657948] task:txg_sync state:D stack: 0 pid:41655 ppid: 2 flags:0x00004000 Jan 24 15:08:58 atuin kernel: [ 3988.658971] Call Trace: Jan 24 15:08:58 atuin kernel: [ 3988.659978] <TASK> Jan 24 15:08:58 atuin kernel: [ 3988.660981] __schedule+0x2fa/0x910 Jan 24 15:08:58 atuin kernel: [ 3988.661979] schedule+0x4f/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.662957] schedule_timeout+0x8a/0x140 Jan 24 15:08:58 atuin kernel: [ 3988.663919] ? __bpf_trace_tick_stop+0x10/0x10 Jan 24 15:08:58 atuin kernel: [ 3988.664883] io_schedule_timeout+0x51/0x80 Jan 24 15:08:58 atuin kernel: [ 3988.665872] __cv_timedwait_common+0x131/0x170 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.666850] ? wait_woken+0x80/0x80 Jan 24 15:08:58 atuin kernel: [ 3988.667811] __cv_timedwait_io+0x19/0x20 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.668771] zio_wait+0x133/0x2c0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.669892] dsl_pool_sync+0x435/0x4f0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.670966] spa_sync+0x55a/0xff0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.672032] ? spa_txg_history_init_io+0x106/0x110 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.673106] txg_sync_thread+0x2d3/0x460 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.674159] ? txg_init+0x260/0x260 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.675217] thread_generic_wrapper+0x79/0x90 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.676140] ? __thread_exit+0x20/0x20 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.677075] kthread+0x12b/0x150 Jan 24 15:08:58 atuin kernel: [ 3988.677990] ? set_kthread_struct+0x50/0x50 Jan 24 15:08:58 atuin kernel: [ 3988.678906] ret_from_fork+0x22/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.679823] </TASK> ```
1.0
Kernel panic at zpool import time - <!-- Please fill out the following template, which will help other contributors address your issue. --> ### System information <!-- add version after "|" character --> Type | Version/Name --- | --- Distribution Name | Proxmox Distribution Version | 7 Kernel Version | 5.3.19-3-pve Architecture | amd64 OpenZFS Version | 2.1.2-pve1 ### Describe the problem you're observing Hello all, I am running a proxmox server on a HP Proliant Microserver Gen8 with the latest kernel 5.13.19-3-pve. Since two days, I am unable to import my `discworld` pool without crashing the server! It is a simple two-disks mirrored configuration. I was able to import the pool readonly (`zfs import -o readonly=on -d /dev/sdxx`) and make a copy of all the data, I don't have however snapshots available. When trying to import the pool with write access, it hangs all zfs-related commands (`zpool status`, for example). I also tried `zpool import -F -X -a -d /dev/disk/by-id`, without much success either. The zpool import command is irresponsive and doesn't terminate to a SIGTERM or a SIGKILL. Looking at the disk activity with iostat doesn't show tremendous activity on the pool disks (but they are not dead as I have full read-only access). I'll join below the trace seen with dmesg. Any help understanding why I cannot import this pool will be much appreciated. Don't hesitate to ask me for more detailed information as I don't know what command outputs to send and help. Thanks in advance ### Describe how to reproduce the problem Not sure it is reproducible on another environment than mine. On this server, trying to import the pool with write access is enough to reproduce the issue. ### Include any warning/errors/backtraces from the system logs ``` Jan 24 15:00:55 atuin kernel: [ 3505.259654] INFO: task zfs:33284 blocked for more than 120 seconds. Jan 24 15:00:55 atuin kernel: [ 3505.259711] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:00:55 atuin kernel: [ 3505.259745] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:00:55 atuin kernel: [ 3505.259788] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:00:55 atuin kernel: [ 3505.259838] Call Trace: Jan 24 15:00:55 atuin kernel: [ 3505.259855] <TASK> Jan 24 15:00:55 atuin kernel: [ 3505.259871] __schedule+0x2fa/0x910 Jan 24 15:00:55 atuin kernel: [ 3505.259904] schedule+0x4f/0xc0 Jan 24 15:00:55 atuin kernel: [ 3505.259927] schedule_preempt_disabled+0xe/0x10 Jan 24 15:00:55 atuin kernel: [ 3505.259957] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:00:55 atuin kernel: [ 3505.259989] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:00:55 atuin kernel: [ 3505.260018] mutex_lock+0x34/0x40 Jan 24 15:00:55 atuin kernel: [ 3505.260042] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260243] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260436] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260629] ? __kmalloc_node+0x276/0x300 Jan 24 15:00:55 atuin kernel: [ 3505.260658] ? _copy_from_user+0x2e/0x60 Jan 24 15:00:55 atuin kernel: [ 3505.260685] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:00:55 atuin kernel: [ 3505.260868] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:00:55 atuin kernel: [ 3505.260895] do_syscall_64+0x61/0xb0 Jan 24 15:00:55 atuin kernel: [ 3505.260921] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:00:55 atuin kernel: [ 3505.260951] ? irqentry_exit+0x19/0x30 Jan 24 15:00:55 atuin kernel: [ 3505.260974] ? exc_page_fault+0x8f/0x170 Jan 24 15:00:55 atuin kernel: [ 3505.260999] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:00:55 atuin kernel: [ 3505.261026] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:00:55 atuin kernel: [ 3505.261057] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:00:55 atuin kernel: [ 3505.261080] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:00:55 atuin kernel: [ 3505.261124] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:00:55 atuin kernel: [ 3505.261165] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:00:55 atuin kernel: [ 3505.262491] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:00:55 atuin kernel: [ 3505.263613] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:00:55 atuin kernel: [ 3505.264700] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:00:55 atuin kernel: [ 3505.265769] </TASK> Jan 24 15:02:55 atuin kernel: [ 3626.091977] INFO: task zfs:33284 blocked for more than 241 seconds. Jan 24 15:02:55 atuin kernel: [ 3626.093064] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:02:55 atuin kernel: [ 3626.094134] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:02:55 atuin kernel: [ 3626.095231] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:02:55 atuin kernel: [ 3626.096391] Call Trace: Jan 24 15:02:56 atuin kernel: [ 3626.097483] <TASK> Jan 24 15:02:56 atuin kernel: [ 3626.098547] __schedule+0x2fa/0x910 Jan 24 15:02:56 atuin kernel: [ 3626.099587] schedule+0x4f/0xc0 Jan 24 15:02:56 atuin kernel: [ 3626.100591] schedule_preempt_disabled+0xe/0x10 Jan 24 15:02:56 atuin kernel: [ 3626.101580] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:02:56 atuin kernel: [ 3626.102647] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:02:56 atuin kernel: [ 3626.103765] mutex_lock+0x34/0x40 Jan 24 15:02:56 atuin kernel: [ 3626.104892] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.106127] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.107227] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.108325] ? __kmalloc_node+0x276/0x300 Jan 24 15:02:56 atuin kernel: [ 3626.109236] ? _copy_from_user+0x2e/0x60 Jan 24 15:02:56 atuin kernel: [ 3626.110124] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:02:56 atuin kernel: [ 3626.111244] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:02:56 atuin kernel: [ 3626.112267] do_syscall_64+0x61/0xb0 Jan 24 15:02:56 atuin kernel: [ 3626.113277] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:02:56 atuin kernel: [ 3626.114216] ? irqentry_exit+0x19/0x30 Jan 24 15:02:56 atuin kernel: [ 3626.115082] ? exc_page_fault+0x8f/0x170 Jan 24 15:02:56 atuin kernel: [ 3626.115961] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:02:56 atuin kernel: [ 3626.116828] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:02:56 atuin kernel: [ 3626.117706] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:02:56 atuin kernel: [ 3626.118579] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:02:56 atuin kernel: [ 3626.119487] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:02:56 atuin kernel: [ 3626.120416] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:02:56 atuin kernel: [ 3626.121344] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:02:56 atuin kernel: [ 3626.122266] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:02:56 atuin kernel: [ 3626.123198] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:02:56 atuin kernel: [ 3626.124146] </TASK> Jan 24 15:04:50 atuin kernel: [ 3740.917885] VERIFY3(range_tree_space(smla->smla_rt) + sme->sme_run <= smla->smla_sm->sm_size) failed (17179877376 <= 17179869184) Jan 24 15:04:50 atuin kernel: [ 3740.919910] PANIC at space_map.c:405:space_map_load_callback() Jan 24 15:04:50 atuin kernel: [ 3740.920975] Showing stack for process 41661 Jan 24 15:04:50 atuin kernel: [ 3740.922153] CPU: 4 PID: 41661 Comm: z_wr_iss Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:04:50 atuin kernel: [ 3740.923243] Hardware name: HP ProLiant MicroServer Gen8, BIOS J06 04/04/2019 Jan 24 15:04:50 atuin kernel: [ 3740.924412] Call Trace: Jan 24 15:04:50 atuin kernel: [ 3740.925566] <TASK> Jan 24 15:04:50 atuin kernel: [ 3740.926628] dump_stack+0x7d/0x9c Jan 24 15:04:50 atuin kernel: [ 3740.927676] spl_dumpstack+0x29/0x2b [spl] Jan 24 15:04:50 atuin kernel: [ 3740.928731] spl_panic+0xd4/0xfc [spl] Jan 24 15:04:50 atuin kernel: [ 3740.929778] space_map_load_callback+0x7f/0x90 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.930992] space_map_iterate+0x1c0/0x3f0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.932184] ? spa_stats_destroy+0x190/0x190 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.933372] space_map_load_length+0x61/0xe0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.934539] metaslab_load+0x151/0x8a0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.935685] ? __cond_resched+0x1a/0x50 Jan 24 15:04:50 atuin kernel: [ 3740.936674] ? slab_pre_alloc_hook.constprop.0+0x96/0xe0 Jan 24 15:04:50 atuin kernel: [ 3740.937650] ? __raw_callee_save___native_queued_spin_unlock+0x15/0x23 Jan 24 15:04:50 atuin kernel: [ 3740.938629] metaslab_activate+0x4f/0x2c0 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.939761] metaslab_alloc_dva+0x2cd/0x1480 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.940903] metaslab_alloc+0xbe/0x270 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.942038] zio_dva_allocate+0xe6/0x930 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.943195] ? tsd_hash_search.isra.0+0x71/0xa0 [spl] Jan 24 15:04:50 atuin kernel: [ 3740.944201] zio_execute+0x89/0x130 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.945368] taskq_thread+0x2b7/0x500 [spl] Jan 24 15:04:50 atuin kernel: [ 3740.946375] ? wake_up_q+0xa0/0xa0 Jan 24 15:04:50 atuin kernel: [ 3740.947372] ? zio_gang_tree_free+0x70/0x70 [zfs] Jan 24 15:04:50 atuin kernel: [ 3740.948544] ? taskq_thread_spawn+0x60/0x60 [spl] Jan 24 15:04:50 atuin kernel: [ 3740.949554] kthread+0x12b/0x150 Jan 24 15:04:50 atuin kernel: [ 3740.950546] ? set_kthread_struct+0x50/0x50 Jan 24 15:04:50 atuin kernel: [ 3740.951546] ret_from_fork+0x22/0x30 Jan 24 15:04:50 atuin kernel: [ 3740.952550] </TASK> Jan 24 15:04:56 atuin kernel: [ 3746.924292] INFO: task zfs:33284 blocked for more than 362 seconds. Jan 24 15:04:56 atuin kernel: [ 3746.925332] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:04:56 atuin kernel: [ 3746.926356] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:04:56 atuin kernel: [ 3746.927408] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:04:56 atuin kernel: [ 3746.928510] Call Trace: Jan 24 15:04:56 atuin kernel: [ 3746.929575] <TASK> Jan 24 15:04:56 atuin kernel: [ 3746.930626] __schedule+0x2fa/0x910 Jan 24 15:04:56 atuin kernel: [ 3746.931687] schedule+0x4f/0xc0 Jan 24 15:04:56 atuin kernel: [ 3746.932750] schedule_preempt_disabled+0xe/0x10 Jan 24 15:04:56 atuin kernel: [ 3746.933776] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:04:56 atuin kernel: [ 3746.934797] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:04:56 atuin kernel: [ 3746.935813] mutex_lock+0x34/0x40 Jan 24 15:04:56 atuin kernel: [ 3746.936831] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.938015] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.939177] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.940329] ? __kmalloc_node+0x276/0x300 Jan 24 15:04:56 atuin kernel: [ 3746.941255] ? _copy_from_user+0x2e/0x60 Jan 24 15:04:56 atuin kernel: [ 3746.942163] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:04:56 atuin kernel: [ 3746.943219] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:04:56 atuin kernel: [ 3746.944101] do_syscall_64+0x61/0xb0 Jan 24 15:04:56 atuin kernel: [ 3746.944973] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:04:56 atuin kernel: [ 3746.945828] ? irqentry_exit+0x19/0x30 Jan 24 15:04:56 atuin kernel: [ 3746.946680] ? exc_page_fault+0x8f/0x170 Jan 24 15:04:56 atuin kernel: [ 3746.947534] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:04:56 atuin kernel: [ 3746.948414] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:04:56 atuin kernel: [ 3746.949283] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:04:56 atuin kernel: [ 3746.950143] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:04:56 atuin kernel: [ 3746.951039] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:04:56 atuin kernel: [ 3746.951943] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:04:56 atuin kernel: [ 3746.952864] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:04:56 atuin kernel: [ 3746.953771] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:04:56 atuin kernel: [ 3746.954683] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:04:56 atuin kernel: [ 3746.955593] </TASK> Jan 24 15:05:01 atuin CRON[41710]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) Jan 24 15:06:57 atuin kernel: [ 3867.756633] INFO: task zpool:32594 blocked for more than 120 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.757573] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.758495] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.759444] task:zpool state:D stack: 0 pid:32594 ppid: 1889 flags:0x00004002 Jan 24 15:06:57 atuin kernel: [ 3867.760419] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.761391] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.762333] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.763284] schedule+0x4f/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.764464] io_schedule+0x46/0x70 Jan 24 15:06:57 atuin kernel: [ 3867.765417] cv_wait_common+0xae/0x130 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.766388] ? wait_woken+0x80/0x80 Jan 24 15:06:57 atuin kernel: [ 3867.767327] __cv_wait_io+0x18/0x20 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.768271] txg_wait_synced_impl+0xd6/0x120 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.769405] txg_wait_synced+0x10/0x40 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.770505] spa_load+0x1512/0x1840 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.771588] spa_load_best+0x57/0x2d0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.772666] spa_import+0x1eb/0x830 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.773715] ? spl_kmem_free_impl+0x25/0x30 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.774607] zfs_ioc_pool_import+0x138/0x150 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.775640] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.776689] ? __kmalloc_node+0x276/0x300 Jan 24 15:06:57 atuin kernel: [ 3867.777568] ? _copy_from_user+0x2e/0x60 Jan 24 15:06:57 atuin kernel: [ 3867.778446] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.779482] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.780355] do_syscall_64+0x61/0xb0 Jan 24 15:06:57 atuin kernel: [ 3867.781239] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:06:57 atuin kernel: [ 3867.782121] ? irqentry_exit+0x19/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.782992] ? exc_page_fault+0x8f/0x170 Jan 24 15:06:57 atuin kernel: [ 3867.783861] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.784741] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:06:57 atuin kernel: [ 3867.785618] RIP: 0033:0x7f5e62736cc7 Jan 24 15:06:57 atuin kernel: [ 3867.786492] RSP: 002b:00007ffe81c0f7b8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:06:57 atuin kernel: [ 3867.787402] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f5e62736cc7 Jan 24 15:06:57 atuin kernel: [ 3867.788320] RDX: 00007ffe81c0f830 RSI: 0000000000005a02 RDI: 0000000000000003 Jan 24 15:06:57 atuin kernel: [ 3867.789255] RBP: 00007ffe81c13720 R08: 0000000000000000 R09: 00007f5e62800be0 Jan 24 15:06:57 atuin kernel: [ 3867.790178] R10: 0000000010000000 R11: 0000000000000246 R12: 0000560d09185570 Jan 24 15:06:57 atuin kernel: [ 3867.791104] R13: 00007ffe81c0f830 R14: 00007f5e34001aa8 R15: 0000000000000000 Jan 24 15:06:57 atuin kernel: [ 3867.792037] </TASK> Jan 24 15:06:57 atuin kernel: [ 3867.792975] INFO: task zfs:33284 blocked for more than 483 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.793926] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.794878] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.795843] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:06:57 atuin kernel: [ 3867.796842] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.797793] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.798735] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.799680] schedule+0x4f/0xc Jan 24 15:06:57 atuin kernel: [ 3867.800628] schedule_preempt_disabled+0xe/0x10 Jan 24 15:06:57 atuin kernel: [ 3867.801558] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:06:57 atuin kernel: [ 3867.802480] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:06:57 atuin kernel: [ 3867.803385] mutex_lock+0x34/0x40 Jan 24 15:06:57 atuin kernel: [ 3867.804267] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.805301] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.806319] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.807346] ? __kmalloc_node+0x276/0x300 Jan 24 15:06:57 atuin kernel: [ 3867.808211] ? _copy_from_user+0x2e/0x60 Jan 24 15:06:57 atuin kernel: [ 3867.809085] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.810113] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.810979] do_syscall_64+0x61/0xb0 Jan 24 15:06:57 atuin kernel: [ 3867.811842] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:06:57 atuin kernel: [ 3867.812725] ? irqentry_exit+0x19/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.813587] ? exc_page_fault+0x8f/0x170 Jan 24 15:06:57 atuin kernel: [ 3867.814451] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.815316] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:06:57 atuin kernel: [ 3867.816194] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:06:57 atuin kernel: [ 3867.817084] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:06:57 atuin kernel: [ 3867.817992] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:06:57 atuin kernel: [ 3867.818908] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:06:57 atuin kernel: [ 3867.819834] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:06:57 atuin kernel: [ 3867.820766] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:06:57 atuin kernel: [ 3867.821699] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:06:57 atuin kernel: [ 3867.822635] </TASK> Jan 24 15:06:57 atuin kernel: [ 3867.823560] INFO: task txg_sync:41655 blocked for more than 120 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.824522] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.825497] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.826494] task:txg_sync state:D stack: 0 pid:41655 ppid: 2 flags:0x00004000 Jan 24 15:06:57 atuin kernel: [ 3867.827517] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.828523] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.829527] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.830525] schedule+0x4f/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.831502] schedule_timeout+0x8a/0x140 Jan 24 15:06:57 atuin kernel: [ 3867.832464] ? __bpf_trace_tick_stop+0x10/0x10 Jan 24 15:06:57 atuin kernel: [ 3867.833438] io_schedule_timeout+0x51/0x80 Jan 24 15:06:57 atuin kernel: [ 3867.834405] __cv_timedwait_common+0x131/0x170 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.835381] ? wait_woken+0x80/0x80 Jan 24 15:06:57 atuin kernel: [ 3867.836342] __cv_timedwait_io+0x19/0x20 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.837311] zio_wait+0x133/0x2c0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.838418] dsl_pool_sync+0x435/0x4f0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.839491] spa_sync+0x55a/0xff0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.840557] ? spa_txg_history_init_io+0x106/0x110 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.841643] txg_sync_thread+0x2d3/0x460 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.842695] ? txg_init+0x260/0x260 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.843753] thread_generic_wrapper+0x79/0x90 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.844687] ? __thread_exit+0x20/0x20 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.845614] kthread+0x12b/0x150 Jan 24 15:06:57 atuin kernel: [ 3867.846528] ? set_kthread_struct+0x50/0x50 Jan 24 15:06:57 atuin kernel: [ 3867.847444] ret_from_fork+0x22/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.848362] </TASK> Jan 24 15:06:57 atuin kernel: [ 3867.849273] INFO: task z_wr_iss:41661 blocked for more than 120 seconds. Jan 24 15:06:57 atuin kernel: [ 3867.850211] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:06:57 atuin kernel: [ 3867.851153] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:06:57 atuin kernel: [ 3867.852122] task:z_wr_iss state:D stack: 0 pid:41661 ppid: 2 flags:0x00004000 Jan 24 15:06:57 atuin kernel: [ 3867.853125] Call Trace: Jan 24 15:06:57 atuin kernel: [ 3867.854104] <TASK> Jan 24 15:06:57 atuin kernel: [ 3867.855074] __schedule+0x2fa/0x910 Jan 24 15:06:57 atuin kernel: [ 3867.856053] schedule+0x4f/0xc0 Jan 24 15:06:57 atuin kernel: [ 3867.857036] spl_panic+0xfa/0xfc [spl] Jan 24 15:06:57 atuin kernel: [ 3867.858021] space_map_load_callback+0x7f/0x90 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.859162] space_map_iterate+0x1c0/0x3f0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.860300] ? spa_stats_destroy+0x190/0x190 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.861455] space_map_load_length+0x61/0xe0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.862596] metaslab_load+0x151/0x8a0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.863718] ? __cond_resched+0x1a/0x50 Jan 24 15:06:57 atuin kernel: [ 3867.864693] ? slab_pre_alloc_hook.constprop.0+0x96/0xe0 Jan 24 15:06:57 atuin kernel: [ 3867.865656] ? __raw_callee_save___native_queued_spin_unlock+0x15/0x23 Jan 24 15:06:57 atuin kernel: [ 3867.866628] metaslab_activate+0x4f/0x2c0 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.867746] metaslab_alloc_dva+0x2cd/0x1480 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.868869] metaslab_alloc+0xbe/0x270 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.869974] zio_dva_allocate+0xe6/0x930 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.871085] ? tsd_hash_search.isra.0+0x71/0xa0 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.872038] zio_execute+0x89/0x130 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.873142] taskq_thread+0x2b7/0x500 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.874067] ? wake_up_q+0xa0/0xa0 Jan 24 15:06:57 atuin kernel: [ 3867.874958] ? zio_gang_tree_free+0x70/0x70 [zfs] Jan 24 15:06:57 atuin kernel: [ 3867.876006] ? taskq_thread_spawn+0x60/0x60 [spl] Jan 24 15:06:57 atuin kernel: [ 3867.876918] kthread+0x12b/0x150 Jan 24 15:06:57 atuin kernel: [ 3867.877808] ? set_kthread_struct+0x50/0x50 Jan 24 15:06:57 atuin kernel: [ 3867.878704] ret_from_fork+0x22/0x30 Jan 24 15:06:57 atuin kernel: [ 3867.879602] </TASK> Jan 24 15:08:58 atuin kernel: [ 3988.588947] INFO: task zpool:32594 blocked for more than 241 seconds. Jan 24 15:08:58 atuin kernel: [ 3988.589916] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:08:58 atuin kernel: [ 3988.590840] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:08:58 atuin kernel: [ 3988.591783] task:zpool state:D stack: 0 pid:32594 ppid: 1889 flags:0x00004002 Jan 24 15:08:58 atuin kernel: [ 3988.592754] Call Trace: Jan 24 15:08:58 atuin kernel: [ 3988.593724] <TASK> Jan 24 15:08:58 atuin kernel: [ 3988.594669] __schedule+0x2fa/0x910 Jan 24 15:08:58 atuin kernel: [ 3988.595622] schedule+0x4f/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.596560] io_schedule+0x46/0x70 Jan 24 15:08:58 atuin kernel: [ 3988.597503] cv_wait_common+0xae/0x130 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.598445] ? wait_woken+0x80/0x80 Jan 24 15:08:58 atuin kernel: [ 3988.599371] __cv_wait_io+0x18/0x20 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.600300] txg_wait_synced_impl+0xd6/0x120 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.601416] txg_wait_synced+0x10/0x40 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.602498] spa_load+0x1512/0x1840 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.603573] spa_load_best+0x57/0x2d0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.604648] spa_import+0x1eb/0x830 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.605716] ? spl_kmem_free_impl+0x25/0x30 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.606628] zfs_ioc_pool_import+0x138/0x150 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.607675] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.608699] ? __kmalloc_node+0x276/0x300 Jan 24 15:08:58 atuin kernel: [ 3988.609557] ? _copy_from_user+0x2e/0x60 Jan 24 15:08:58 atuin kernel: [ 3988.610410] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.611423] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.612278] do_syscall_64+0x61/0xb0 Jan 24 15:08:58 atuin kernel: [ 3988.613149] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:08:58 atuin kernel: [ 3988.614010] ? irqentry_exit+0x19/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.614863] ? exc_page_fault+0x8f/0x170 Jan 24 15:08:58 atuin kernel: [ 3988.615710] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.616558] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:08:58 atuin kernel: [ 3988.617423] RIP: 0033:0x7f5e62736cc7 Jan 24 15:08:58 atuin kernel: [ 3988.618274] RSP: 002b:00007ffe81c0f7b8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:08:58 atuin kernel: [ 3988.619154] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f5e62736cc7 Jan 24 15:08:58 atuin kernel: [ 3988.620032] RDX: 00007ffe81c0f830 RSI: 0000000000005a02 RDI: 0000000000000003 Jan 24 15:08:58 atuin kernel: [ 3988.620914] RBP: 00007ffe81c13720 R08: 0000000000000000 R09: 00007f5e62800be0 Jan 24 15:08:58 atuin kernel: [ 3988.621786] R10: 0000000010000000 R11: 0000000000000246 R12: 0000560d09185570 Jan 24 15:08:58 atuin kernel: [ 3988.622662] R13: 00007ffe81c0f830 R14: 00007f5e34001aa8 R15: 0000000000000000 Jan 24 15:08:58 atuin kernel: [ 3988.623541] </TASK> Jan 24 15:08:58 atuin kernel: [ 3988.624410] INFO: task zfs:33284 blocked for more than 604 seconds. Jan 24 15:08:58 atuin kernel: [ 3988.625311] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:08:58 atuin kernel: [ 3988.626210] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:08:58 atuin kernel: [ 3988.627133] task:zfs state:D stack: 0 pid:33284 ppid: 1 flags:0x00000004 Jan 24 15:08:58 atuin kernel: [ 3988.628082] Call Trace: Jan 24 15:08:58 atuin kernel: [ 3988.629024] <TASK> Jan 24 15:08:58 atuin kernel: [ 3988.629945] __schedule+0x2fa/0x910 Jan 24 15:08:58 atuin kernel: [ 3988.630875] schedule+0x4f/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.631799] schedule_preempt_disabled+0xe/0x10 Jan 24 15:08:58 atuin kernel: [ 3988.632730] __mutex_lock.constprop.0+0x305/0x4d0 Jan 24 15:08:58 atuin kernel: [ 3988.633664] __mutex_lock_slowpath+0x13/0x20 Jan 24 15:08:58 atuin kernel: [ 3988.634572] mutex_lock+0x34/0x40 Jan 24 15:08:58 atuin kernel: [ 3988.635456] spa_all_configs+0x4a/0x120 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.636481] zfs_ioc_pool_configs+0x1c/0x70 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.637511] zfsdev_ioctl_common+0x752/0x9b0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.638541] ? __kmalloc_node+0x276/0x300 Jan 24 15:08:58 atuin kernel: [ 3988.639408] ? _copy_from_user+0x2e/0x60 Jan 24 15:08:58 atuin kernel: [ 3988.640512] zfsdev_ioctl+0x57/0xe0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.641554] __x64_sys_ioctl+0x91/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.642423] do_syscall_64+0x61/0xb0 Jan 24 15:08:58 atuin kernel: [ 3988.643287] ? irqentry_exit_to_user_mode+0x9/0x20 Jan 24 15:08:58 atuin kernel: [ 3988.644161] ? irqentry_exit+0x19/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.645034] ? exc_page_fault+0x8f/0x170 Jan 24 15:08:58 atuin kernel: [ 3988.645900] ? asm_exc_page_fault+0x8/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.646766] entry_SYSCALL_64_after_hwframe+0x44/0xae Jan 24 15:08:58 atuin kernel: [ 3988.647643] RIP: 0033:0x7fc6fbe9dcc7 Jan 24 15:08:58 atuin kernel: [ 3988.648518] RSP: 002b:00007ffd9c1835e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 Jan 24 15:08:58 atuin kernel: [ 3988.649440] RAX: ffffffffffffffda RBX: 000055d292dae570 RCX: 00007fc6fbe9dcc7 Jan 24 15:08:58 atuin kernel: [ 3988.650358] RDX: 00007ffd9c183610 RSI: 0000000000005a04 RDI: 0000000000000003 Jan 24 15:08:58 atuin kernel: [ 3988.651285] RBP: 00007ffd9c186c00 R08: 00007fc6fb58e010 R09: 0000000000000000 Jan 24 15:08:58 atuin kernel: [ 3988.652208] R10: 0000000000000022 R11: 0000000000000246 R12: 000055d292dae570 Jan 24 15:08:58 atuin kernel: [ 3988.653150] R13: 0000000000000000 R14: 00007ffd9c183610 R15: 0000000000000006 Jan 24 15:08:58 atuin kernel: [ 3988.654087] </TASK> Jan 24 15:08:58 atuin kernel: [ 3988.655013] INFO: task txg_sync:41655 blocked for more than 241 seconds. Jan 24 15:08:58 atuin kernel: [ 3988.655975] Tainted: P IO 5.13.19-3-pve #1 Jan 24 15:08:58 atuin kernel: [ 3988.656951] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Jan 24 15:08:58 atuin kernel: [ 3988.657948] task:txg_sync state:D stack: 0 pid:41655 ppid: 2 flags:0x00004000 Jan 24 15:08:58 atuin kernel: [ 3988.658971] Call Trace: Jan 24 15:08:58 atuin kernel: [ 3988.659978] <TASK> Jan 24 15:08:58 atuin kernel: [ 3988.660981] __schedule+0x2fa/0x910 Jan 24 15:08:58 atuin kernel: [ 3988.661979] schedule+0x4f/0xc0 Jan 24 15:08:58 atuin kernel: [ 3988.662957] schedule_timeout+0x8a/0x140 Jan 24 15:08:58 atuin kernel: [ 3988.663919] ? __bpf_trace_tick_stop+0x10/0x10 Jan 24 15:08:58 atuin kernel: [ 3988.664883] io_schedule_timeout+0x51/0x80 Jan 24 15:08:58 atuin kernel: [ 3988.665872] __cv_timedwait_common+0x131/0x170 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.666850] ? wait_woken+0x80/0x80 Jan 24 15:08:58 atuin kernel: [ 3988.667811] __cv_timedwait_io+0x19/0x20 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.668771] zio_wait+0x133/0x2c0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.669892] dsl_pool_sync+0x435/0x4f0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.670966] spa_sync+0x55a/0xff0 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.672032] ? spa_txg_history_init_io+0x106/0x110 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.673106] txg_sync_thread+0x2d3/0x460 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.674159] ? txg_init+0x260/0x260 [zfs] Jan 24 15:08:58 atuin kernel: [ 3988.675217] thread_generic_wrapper+0x79/0x90 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.676140] ? __thread_exit+0x20/0x20 [spl] Jan 24 15:08:58 atuin kernel: [ 3988.677075] kthread+0x12b/0x150 Jan 24 15:08:58 atuin kernel: [ 3988.677990] ? set_kthread_struct+0x50/0x50 Jan 24 15:08:58 atuin kernel: [ 3988.678906] ret_from_fork+0x22/0x30 Jan 24 15:08:58 atuin kernel: [ 3988.679823] </TASK> ```
non_priority
kernel panic at zpool import time system information type version name distribution name proxmox distribution version kernel version pve architecture openzfs version describe the problem you re observing hello all i am running a proxmox server on a hp proliant microserver with the latest kernel pve since two days i am unable to import my discworld pool without crashing the server it is a simple two disks mirrored configuration i was able to import the pool readonly zfs import o readonly on d dev sdxx and make a copy of all the data i don t have however snapshots available when trying to import the pool with write access it hangs all zfs related commands zpool status for example i also tried zpool import f x a d dev disk by id without much success either the zpool import command is irresponsive and doesn t terminate to a sigterm or a sigkill looking at the disk activity with iostat doesn t show tremendous activity on the pool disks but they are not dead as i have full read only access i ll join below the trace seen with dmesg any help understanding why i cannot import this pool will be much appreciated don t hesitate to ask me for more detailed information as i don t know what command outputs to send and help thanks in advance describe how to reproduce the problem not sure it is reproducible on another environment than mine on this server trying to import the pool with write access is enough to reproduce the issue include any warning errors backtraces from the system logs jan atuin kernel info task zfs blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task zfs state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel schedule preempt disabled jan atuin kernel mutex lock constprop jan atuin kernel mutex lock slowpath jan atuin kernel mutex lock jan atuin kernel spa all configs jan atuin kernel zfs ioc pool configs jan atuin kernel zfsdev ioctl common jan atuin kernel kmalloc node jan atuin kernel copy from user jan atuin kernel zfsdev ioctl jan atuin kernel sys ioctl jan atuin kernel do syscall jan atuin kernel irqentry exit to user mode jan atuin kernel irqentry exit jan atuin kernel exc page fault jan atuin kernel asm exc page fault jan atuin kernel entry syscall after hwframe jan atuin kernel rip jan atuin kernel rsp eflags orig rax jan atuin kernel rax ffffffffffffffda rbx rcx jan atuin kernel rdx rsi rdi jan atuin kernel rbp jan atuin kernel jan atuin kernel jan atuin kernel jan atuin kernel info task zfs blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task zfs state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel schedule preempt disabled jan atuin kernel mutex lock constprop jan atuin kernel mutex lock slowpath jan atuin kernel mutex lock jan atuin kernel spa all configs jan atuin kernel zfs ioc pool configs jan atuin kernel zfsdev ioctl common jan atuin kernel kmalloc node jan atuin kernel copy from user jan atuin kernel zfsdev ioctl jan atuin kernel sys ioctl jan atuin kernel do syscall jan atuin kernel irqentry exit to user mode jan atuin kernel irqentry exit jan atuin kernel exc page fault jan atuin kernel asm exc page fault jan atuin kernel entry syscall after hwframe jan atuin kernel rip jan atuin kernel rsp eflags orig rax jan atuin kernel rax ffffffffffffffda rbx rcx jan atuin kernel rdx rsi rdi jan atuin kernel rbp jan atuin kernel jan atuin kernel jan atuin kernel jan atuin kernel range tree space smla smla rt sme sme run smla sm sm size failed jan atuin kernel panic at space map c space map load callback jan atuin kernel showing stack for process jan atuin kernel cpu pid comm z wr iss tainted p io pve jan atuin kernel hardware name hp proliant microserver bios jan atuin kernel call trace jan atuin kernel jan atuin kernel dump stack jan atuin kernel spl dumpstack jan atuin kernel spl panic jan atuin kernel space map load callback jan atuin kernel space map iterate jan atuin kernel spa stats destroy jan atuin kernel space map load length jan atuin kernel metaslab load jan atuin kernel cond resched jan atuin kernel slab pre alloc hook constprop jan atuin kernel raw callee save native queued spin unlock jan atuin kernel metaslab activate jan atuin kernel metaslab alloc dva jan atuin kernel metaslab alloc jan atuin kernel zio dva allocate jan atuin kernel tsd hash search isra jan atuin kernel zio execute jan atuin kernel taskq thread jan atuin kernel wake up q jan atuin kernel zio gang tree free jan atuin kernel taskq thread spawn jan atuin kernel kthread jan atuin kernel set kthread struct jan atuin kernel ret from fork jan atuin kernel jan atuin kernel info task zfs blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task zfs state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel schedule preempt disabled jan atuin kernel mutex lock constprop jan atuin kernel mutex lock slowpath jan atuin kernel mutex lock jan atuin kernel spa all configs jan atuin kernel zfs ioc pool configs jan atuin kernel zfsdev ioctl common jan atuin kernel kmalloc node jan atuin kernel copy from user jan atuin kernel zfsdev ioctl jan atuin kernel sys ioctl jan atuin kernel do syscall jan atuin kernel irqentry exit to user mode jan atuin kernel irqentry exit jan atuin kernel exc page fault jan atuin kernel asm exc page fault jan atuin kernel entry syscall after hwframe jan atuin kernel rip jan atuin kernel rsp eflags orig rax jan atuin kernel rax ffffffffffffffda rbx rcx jan atuin kernel rdx rsi rdi jan atuin kernel rbp jan atuin kernel jan atuin kernel jan atuin kernel jan atuin cron root cmd command v debian dev null debian jan atuin kernel info task zpool blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task zpool state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel io schedule jan atuin kernel cv wait common jan atuin kernel wait woken jan atuin kernel cv wait io jan atuin kernel txg wait synced impl jan atuin kernel txg wait synced jan atuin kernel spa load jan atuin kernel spa load best jan atuin kernel spa import jan atuin kernel spl kmem free impl jan atuin kernel zfs ioc pool import jan atuin kernel zfsdev ioctl common jan atuin kernel kmalloc node jan atuin kernel copy from user jan atuin kernel zfsdev ioctl jan atuin kernel sys ioctl jan atuin kernel do syscall jan atuin kernel irqentry exit to user mode jan atuin kernel irqentry exit jan atuin kernel exc page fault jan atuin kernel asm exc page fault jan atuin kernel entry syscall after hwframe jan atuin kernel rip jan atuin kernel rsp eflags orig rax jan atuin kernel rax ffffffffffffffda rbx rcx jan atuin kernel rdx rsi rdi jan atuin kernel rbp jan atuin kernel jan atuin kernel jan atuin kernel jan atuin kernel info task zfs blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task zfs state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel schedule preempt disabled jan atuin kernel mutex lock constprop jan atuin kernel mutex lock slowpath jan atuin kernel mutex lock jan atuin kernel spa all configs jan atuin kernel zfs ioc pool configs jan atuin kernel zfsdev ioctl common jan atuin kernel kmalloc node jan atuin kernel copy from user jan atuin kernel zfsdev ioctl jan atuin kernel sys ioctl jan atuin kernel do syscall jan atuin kernel irqentry exit to user mode jan atuin kernel irqentry exit jan atuin kernel exc page fault jan atuin kernel asm exc page fault jan atuin kernel entry syscall after hwframe jan atuin kernel rip jan atuin kernel rsp eflags orig rax jan atuin kernel rax ffffffffffffffda rbx rcx jan atuin kernel rdx rsi rdi jan atuin kernel rbp jan atuin kernel jan atuin kernel jan atuin kernel jan atuin kernel info task txg sync blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task txg sync state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel schedule timeout jan atuin kernel bpf trace tick stop jan atuin kernel io schedule timeout jan atuin kernel cv timedwait common jan atuin kernel wait woken jan atuin kernel cv timedwait io jan atuin kernel zio wait jan atuin kernel dsl pool sync jan atuin kernel spa sync jan atuin kernel spa txg history init io jan atuin kernel txg sync thread jan atuin kernel txg init jan atuin kernel thread generic wrapper jan atuin kernel thread exit jan atuin kernel kthread jan atuin kernel set kthread struct jan atuin kernel ret from fork jan atuin kernel jan atuin kernel info task z wr iss blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task z wr iss state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel spl panic jan atuin kernel space map load callback jan atuin kernel space map iterate jan atuin kernel spa stats destroy jan atuin kernel space map load length jan atuin kernel metaslab load jan atuin kernel cond resched jan atuin kernel slab pre alloc hook constprop jan atuin kernel raw callee save native queued spin unlock jan atuin kernel metaslab activate jan atuin kernel metaslab alloc dva jan atuin kernel metaslab alloc jan atuin kernel zio dva allocate jan atuin kernel tsd hash search isra jan atuin kernel zio execute jan atuin kernel taskq thread jan atuin kernel wake up q jan atuin kernel zio gang tree free jan atuin kernel taskq thread spawn jan atuin kernel kthread jan atuin kernel set kthread struct jan atuin kernel ret from fork jan atuin kernel jan atuin kernel info task zpool blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task zpool state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel io schedule jan atuin kernel cv wait common jan atuin kernel wait woken jan atuin kernel cv wait io jan atuin kernel txg wait synced impl jan atuin kernel txg wait synced jan atuin kernel spa load jan atuin kernel spa load best jan atuin kernel spa import jan atuin kernel spl kmem free impl jan atuin kernel zfs ioc pool import jan atuin kernel zfsdev ioctl common jan atuin kernel kmalloc node jan atuin kernel copy from user jan atuin kernel zfsdev ioctl jan atuin kernel sys ioctl jan atuin kernel do syscall jan atuin kernel irqentry exit to user mode jan atuin kernel irqentry exit jan atuin kernel exc page fault jan atuin kernel asm exc page fault jan atuin kernel entry syscall after hwframe jan atuin kernel rip jan atuin kernel rsp eflags orig rax jan atuin kernel rax ffffffffffffffda rbx rcx jan atuin kernel rdx rsi rdi jan atuin kernel rbp jan atuin kernel jan atuin kernel jan atuin kernel jan atuin kernel info task zfs blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task zfs state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel schedule preempt disabled jan atuin kernel mutex lock constprop jan atuin kernel mutex lock slowpath jan atuin kernel mutex lock jan atuin kernel spa all configs jan atuin kernel zfs ioc pool configs jan atuin kernel zfsdev ioctl common jan atuin kernel kmalloc node jan atuin kernel copy from user jan atuin kernel zfsdev ioctl jan atuin kernel sys ioctl jan atuin kernel do syscall jan atuin kernel irqentry exit to user mode jan atuin kernel irqentry exit jan atuin kernel exc page fault jan atuin kernel asm exc page fault jan atuin kernel entry syscall after hwframe jan atuin kernel rip jan atuin kernel rsp eflags orig rax jan atuin kernel rax ffffffffffffffda rbx rcx jan atuin kernel rdx rsi rdi jan atuin kernel rbp jan atuin kernel jan atuin kernel jan atuin kernel jan atuin kernel info task txg sync blocked for more than seconds jan atuin kernel tainted p io pve jan atuin kernel echo proc sys kernel hung task timeout secs disables this message jan atuin kernel task txg sync state d stack pid ppid flags jan atuin kernel call trace jan atuin kernel jan atuin kernel schedule jan atuin kernel schedule jan atuin kernel schedule timeout jan atuin kernel bpf trace tick stop jan atuin kernel io schedule timeout jan atuin kernel cv timedwait common jan atuin kernel wait woken jan atuin kernel cv timedwait io jan atuin kernel zio wait jan atuin kernel dsl pool sync jan atuin kernel spa sync jan atuin kernel spa txg history init io jan atuin kernel txg sync thread jan atuin kernel txg init jan atuin kernel thread generic wrapper jan atuin kernel thread exit jan atuin kernel kthread jan atuin kernel set kthread struct jan atuin kernel ret from fork jan atuin kernel
0
162,386
12,663,858,534
IssuesEvent
2020-06-18 02:44:11
astropy/astroquery
https://api.github.com/repos/astropy/astroquery
opened
cds tests should not fail without mocpy
bug cds testing
mocpy is an optional dependency, so the cds tests should not fail when it's not available, but should be skipped.
1.0
cds tests should not fail without mocpy - mocpy is an optional dependency, so the cds tests should not fail when it's not available, but should be skipped.
non_priority
cds tests should not fail without mocpy mocpy is an optional dependency so the cds tests should not fail when it s not available but should be skipped
0
84,940
10,422,053,301
IssuesEvent
2019-09-16 08:04:59
CartoDB/cartoframes
https://api.github.com/repos/CartoDB/cartoframes
closed
Docs: ReadTheDocs vs Developer Center
documentation
Proposal: - Ideally, developer center for written documentation: guides, workflows, etc. - ReadTheDocs: Only for API docs (docstrings) (They are also shown in the Notebook, where they are more useful) IMO ReadTheDocs was useful when we (and other projects) didn't have an infrastructure for documentation. We used it when there was no Developer Center and we didn't have a clear workflow to write tech docs. Currently we do have a developer center which is aimed to be the place where to have all our tech docs. @giuliacarella @andy-esch @djfan @malgar @josemazo @alejandrohall @arredond Thoughts? Do you find more useful having docs in read the docs rather in developer center for any reason?
1.0
Docs: ReadTheDocs vs Developer Center - Proposal: - Ideally, developer center for written documentation: guides, workflows, etc. - ReadTheDocs: Only for API docs (docstrings) (They are also shown in the Notebook, where they are more useful) IMO ReadTheDocs was useful when we (and other projects) didn't have an infrastructure for documentation. We used it when there was no Developer Center and we didn't have a clear workflow to write tech docs. Currently we do have a developer center which is aimed to be the place where to have all our tech docs. @giuliacarella @andy-esch @djfan @malgar @josemazo @alejandrohall @arredond Thoughts? Do you find more useful having docs in read the docs rather in developer center for any reason?
non_priority
docs readthedocs vs developer center proposal ideally developer center for written documentation guides workflows etc readthedocs only for api docs docstrings they are also shown in the notebook where they are more useful imo readthedocs was useful when we and other projects didn t have an infrastructure for documentation we used it when there was no developer center and we didn t have a clear workflow to write tech docs currently we do have a developer center which is aimed to be the place where to have all our tech docs giuliacarella andy esch djfan malgar josemazo alejandrohall arredond thoughts do you find more useful having docs in read the docs rather in developer center for any reason
0
394,786
27,039,807,456
IssuesEvent
2023-02-13 03:37:31
ZiYi0414/handsome-css3-lib
https://api.github.com/repos/ZiYi0414/handsome-css3-lib
opened
「组件模板」
documentation
--- title: title made_by: name theme?: dark or light --- ```css ``` ```html ```
1.0
「组件模板」 - --- title: title made_by: name theme?: dark or light --- ```css ``` ```html ```
non_priority
「组件模板」 title title made by name theme dark or light css html
0
707
3,133,947,735
IssuesEvent
2015-09-10 06:55:59
superckl/BiomeTweaker
https://api.github.com/repos/superckl/BiomeTweaker
closed
[1.2.128]"CAVE_CREATURE" spawn type overly trigger happy.
compatibility wontfix
it may be specifically an interaction with Grimoire of Gaia, but using cave creature mob spawn type results in ridiculously high spawn rates, up to about 500 of that type of mob, with it filling back up to that point in less than a minute if culled using commands or peaceful mode. http://imgur.com/a/hwzNb This is the config file: forest = forBiomesOfTypes("FOREST") cold = forBiomesOfTypes("COLD") coniferous1 = forBiomesOfTypes("CONIFEROUS") beach1 = forBiomesOfTypes("BEACH") all = forAllBiomes() nether = forBiomes(8) end = forBiomes(9) twilightForest = forBiomes(98-116) erebus = forBiomes(72-79, 200-207) mushroomIsle = forBiomes(14, 15) taint = forBiomes(96) outerLands = forBiomes(94) overworld = subtractFrom(all, nether, end, erebus, mushroomIsle, taint, outerLands) ocean = forBiomesOfTypes("OCEAN") beach = subtractFrom(beach1, mushroomIsle) river = forBiomesOfTypes("RIVER") plains = forBiomesOfTypes("PLAINS") desert = forBiomesOfTypes("SANDY", "MESA") mountain = forBiomesOfTypes("MOUNTAIN") temperateForest = subtractFrom(forest, cold, coniferous1) coniferous = forBiomes(coniferous1, 158, 160, 161) swamp = forBiomesOfTypes("SWAMP") snowy = forBiomesOfTypes("SNOWY") jungle = forBiomesOfTypes("JUNGLE") wasteland = forBiomesOfTypes("WASTELAND") magical = forBiomesOfTypes("MAGICAL") nonTaintedMagical = subtractFrom(magical, taint) spooky = forBiomesOfType("SPOOKY") overworld.removeAllSpawns("CREATURE") overworld.removeAllSpawns("MONSTER") overworld.removeAllSpawns("WATER_CREATURE") overworld.removeAllSpawns("CAVE_CREATURE") overworld.addSpawn("net.minecraft.entity.monster.EntityZombie", "MONSTER", 20, 1, 6) overworld.addSpawn("thaumcraft.common.entities.monster.EntityBrainyZombie", "MONSTER", 8, 1, 3) overworld.addSpawn("net.minecraft.entity.monster.EntitySkeleton", "MONSTER", 20, 1, 4) overworld.addSpawn("mekanism.common.entity.EntityBabySkeleton", "MONSTER", 6, 1, 2) overworld.addSpawn("net.minecraft.entity.monster.EntityCreeper", "MONSTER", 15, 1, 3) overworld.addSpawn("net.minecraft.entity.monster.EntitySpider", "MONSTER", 15, 2, 4) overworld.addSpawn("net.minecraft.entity.monster.EntityEnderman", "MONSTER", 8, 1, 3) overworld.addSpawn("net.mcft.copy.betterstorage.entity.EntityFrienderman", "MONSTER", 1, 1, 1) overworld.addSpawn("net.minecraft.entity.monster.EntityWitch", "MONSTER", 6, 1, 2) overworld.addSpawn("clickme.animals.entity.ambient.EntityMoth", "MONSTER", 8, 2, 5) overworld.addSpawn("clickme.animals.entity.water.EntityFish", "WATER_CREATURE", 15, 3, 8) overworld.addSpawn("net.minecraft.entity.monster.EntitySlime", "CAVE_CREATURE", 6, 1, 3) overworld.addSpawn("net.minecraft.entity.monster.EntityBat", "CAVE_CREATURE", 12, 1, 3) overworld.addSpawn("gaia.entity.EntityGaiaMimic", "CAVE_CREATURE", 5, 1, 1) overworld.addSpawn("gaia.entity.EntityGaiaFleshLich", "CAVE_CREATURE", 3, 1, 3) overworld.addSpawn("gaia.entity.EntityGaiaEnderEye", "CAVE_CREATURE", 5, 1, 2) overworld.addSpawn("gaia.entity.EntityGaiaCreep", "CAVE_CREATURE", 5, 1, 3) overworld.addSpawn("gaia.entity.EntityGaiaJorogumo", "CAVE_CREATURE", 5, 1, 2) overworld.addSpawn("gaia.entity.EntityGaiaBoneKnight", 'CAVE_CREATURE", 3, 1, 3) plains.addSpawn("gaia.entity.EntityGaiaMinotaurus", "MONSTER", 3, 1, 3) plains.addSpawn("gaia.entity.EntityGaiaMinotaur", "MONSTER", 1, 1, 1) plains.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 16, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 8, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 12, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntityChicken", "CREATURE", 12, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntityHorse", "CREATURE", 15, 2, 5) plains.addSpawn("com.emoniph.witchery.entity.EntityGoblin", "CREATURE", 8, 1, 3) plains.addSpawn("clickme.animals.entity.passive.EntityMouse", "CREATURE", 16, 1, 5) plains.addSpawn("clickme.animals.entity.passive.EntityLizard", "CREATURE", 12, 1, 3) plains.addSpawn("clickme.animals.entity.ambient.EntityButterfly", "CREATURE", 10, 1, 3) plains.addSpawn("clickme.animals.entity.passive.EntitySnake", "CREATURE", 6, 1, 2) plains.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) plains.addSpawn("gaia.entity.EntityGaiaSatyr", "CREATURE", 5, 2, 5) plains.addSpawn("gaia.entity.EntityGaiaCentaur", "CREATURE", 5, 2, 5) plains.addSpawn("gaia.entity.EntityGaiaHunter", "CREATURE", 8, 1, 3) temperateForest.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 8, 2, 5) temperateForest.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 16, 2, 5) temperateForest.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 12, 2, 5) temperateForest.addSpawn("net.minecraft.entity.passive.EntityChicken", "CREATURE", 10, 2, 5) temperateForest.addSpawn("com.emoniph.witchery.entity.EntityOwl", "CREATURE", 3, 1, 2) temperateForest.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 16, 2, 4) temperateForest.addSpawn("clickme.animals.entity.ambient.EntityCentipede", "CREATURE", 12, 1, 6) temperateForest.addSpawn("clickme.animals.entity.passive.EntityMouse", "CREATURE", 16, 1, 5) temperateForest.addSpawn("clickme.animals.entity.ambient.EntityButterfly", "CREATURE", 10, 1, 3) temperateForest.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) temperateForest.addSpawn("gaia.entity.EntityGaiaPropFlowerCyan", "CREATURE", 5, 2, 5) forest.addSpawn("gaia.entity.EntityGaiaWerecat", "MONSTER", 5, 1, 3) forest.addSpawn("gaia.entity.EntityGaiaSpriggan", "MONSTER", 3, 1, 2) forest.addSpawn("net.minecraft.entity.passive.EntityWolf", "CREATURE", 12, 1, 4) forest.addSpawn("gaia.entity.EntityGaiaHunter", "CREATURE", 8, 1, 3) forest.addSpawn("gaia.entity.EntityGaiaDryad", "CREATURE", 8, 1, 3) coniferous.addSpawn("gaia.entity.EntityGaiaNineTails", "MONSTER", 3, 1, 2) coniferous.addSpawn("gaia.entity.EntityGaiaFutakuchiOnna", "MONSTER", 5, 1, 3) coniferous.addSpawn("gaia.entity.EntityGaiaCyclops", "CREATURE", 1, 1, 3) coniferous.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 12, 2, 5) coniferous.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 12, 2, 5) coniferous.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 10, 2, 5) coniferous.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 16, 2, 4) mountain.addSpawn("gaia.entity.EntityGaiaBanshee", "MONSTER", 3, 1, 2) mountain.addSpawn("gaia.entity.EntityGaiaDullahan", "MONSTER", 5, 1, 3) mountain.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 10, 2, 5) mountain.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 10, 2, 5) mountain.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 20, 2, 5) mountain.addSpawn("net.minecraft.entity.passive.EntityChicken", "CREATURE", 10, 2, 5) mountain.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) mountain.addSpawn("gaia.entity.EntityGaiaValkyrie", "CREATURE", 1, 1, 2) mountain.addSpawn("gaia.entity.EntityGaiaGryphon", "CREATURE", 5, 1, 2) desert.addSpawn("gaia.entity.EntityGaiaAnubis", "MONSTER", 3, 1, 3) desert.addSpawn("gaia.entity.EntityGaiaSphinx", "MONSTER", 1, 1, 2) desert.addSpawn("gaia.entity.EntityGaiaCockatrice", "CREATURE", 5, 1, 3) desert.addSpawn("gaia.entity.EntityGaiaHarpy", "CREATURE", 5, 1, 3) desert.addSpawn("clickme.animals.entity.passive.EntityLizard", "CREATURE", 13, 1, 3) desert.addSpawn("clickme.animals.entity.passive.EntitySnake", "CREATURE", 8, 1, 2) swamp.addSpawn("net.minecraft.entity.monster.EntityWitch", "MONSTER", 12, 1, 2) swamp.addSpawn("net.minecraft.entity.monster.EntitySlime", "MONSTER", 16, 1, 3) swamp.addSpawn("gaia.entity.EntityGaiaWitch", "MONSTER", 3, 1, 1) swamp.addSpawn("gaia.entity.EntityGaiaSwamper", "MONSTER", 3, 1, 2) swamp.addSpawn("gaia.entity.EntityGaiaSludgeGirl", "MONSTER", 5, 1, 2) swamp.addSpawn("com.emoniph.witchery.entity.EntityToad", "CREATURE", 8, 1, 4) swamp.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 12, 2, 4) swamp.addSpawn("clickme.animals.entity.ambient.EntityCentipede", "CREATURE", 12, 1, 3) swamp.addSpawn("clickme.animals.entity.passive.EntityDuck", "CREATURE", 10, 2, 5) swamp.addSpawn("clickme.animals.entity.passive.EntitySnake", "CREATURE", 8, 1, 2) swamp.addSpawn("gaia.entity.EntityGaiaNaga", "CREATURE", 3, 1, 2) swamp.addSpawn("gaia.entity.EntityGaiaSiren", "CREATURE", 5, 1, 2) swamp.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 8, 1, 10) swamp.addSpawn("net.minecraft.entity.passive.EntitySquid", "WATER_CREATURE", 5, 1, 3) swamp.addSpawn("clickme.animals.entity.water.EntityMantaRay", "WATER_CREATURE", 4, 1, 3) swamp.addSpawn("clickme.animals.entity.water.EntityPiranha", "WATER_CREATURE", 6, 2, 5) ocean.addSpawn("net.minecraft.entity.passive.EntitySquid", "WATER_CREATURE", 10, 1, 6) ocean.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 12, 1, 8) ocean.addSpawn("clickme.animals.entity.water.EntityMantaRay", "WATER_CREATURE", 8, 1, 3) ocean.addSpawn("clickme.animals.entity.water.EntityWhale", "WATER_CREATURE", 3, 1, 1) ocean.addSpawn("clickme.animals.entity.water.EntityShark", "WATER_CREATURE", 4, 1, 2) ocean.addSpawn("clickme.animals.entity.water.EntityAngler", "WATER_CREATURE", 2, 1, 2) ocean.addSpawn("gaia.entity.EntityGaiaMermaid", "CAVE_CREATURE", 3, 1, 3) ocean.addSpawn("gaia.entity.EntityGaiaSahuagin", "CAVE_CREATURE", 5, 1, 3) ocean.addSpawn("gaia.entity.EntityGaiaSharko", "CAVE_CREATURE", 3, 1, 2) beach.addSpawn("clickme.animals.entity.passive.EntityPenguin", "CREATURE", 15, 1, 5) beach.addSpawn("clickme.animals.entity.passive.EntityDuck", "CREATURE", 10, 2, 5) beach.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 12, 1, 10) beach.addSpawn("net.minecraft.entity.passive.EntitySquid", "WATER_CREATURE", 5, 1, 3) beach.addSpawn("clickme.animals.entity.water.EntityMantaRay", "WATER_CREATURE", 8, 1, 3) river.addSpawn("clickme.animals.entity.passive.EntityDuck", "CREATURE", 15, 2, 5) river.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 12, 1, 10) river.addSpawn("clickme.animals.entity.water.EntityShark", "WATER_CREATURE", 2, 1, 1) river.addSpawn("clickme.animals.entity.water.EntityPiranha", "WATER_CREATURE", 6, 2, 5) jungle.addSpawn("gaia.entity.EntityGaiaCobblestoneGolem", "MONSTER", 3, 1, 2) jungle.addSpawn("gaia.entity.EntityGaiaShaman", "MONSTER", 3, 1, 2) jungle.addSpawn("net.minecraft.entity.passive.EntityOcelot", "CREATURE", 30, 2, 5) jungle.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 16, 2, 4) jungle.addSpawn("clickme.animals.entity.ambient.EntityCentipede", "CREATURE", 12, 1, 3) jungle.addSpawn("clickme.animals.entity.passive.EntityLizard", "CREATURE", 13, 1, 3) jungle.addSpawn("clickme.animals.entity.ambient.EntityButterfly", "CREATURE", 10, 1, 3) jungle.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) jungle.addSpawn("gaia.entity.EntityGaiaHunter", "CREATURE", 8, 1, 3) jungle.addSpawn("gaia.entity.EntityGaiaCobbleGolem", "CREATURE", 5, 1, 2) jungle.addSpawn("clickme.animals.entity.water.EntityPiranha", "WATER_CREATURE", 6, 2, 5) snowy.addSpawn("cofh.thermalfoundation.entity.monster.EntityBlizz", "MONSTER", 8, 1, 3) snowy.addSpawn("gaia.entity.EntityGaiaSelkie", "MONSTER", 3, 1, 2) snowy.addSpawn("gaia.entity.EntityGaiaVampire", "MONSTER", 1, 1, 1) snowy.addSpawn("gaia.entity.EntityGaiaDhampir", "MONSTER", 3, 1, 2) snowy.addSpawn("clickme.animals.entity.passive.EntityPenguin", "CREATURE", 15, 1, 5) snowy.addSpawn("gaia.entity.EntityGaiaYeti", "CREATURE", 5, 1, 1) snowy.addSpawn("gaia.entity.EntityGaiaYukiOnna", "CREATURE", 3, 1, 3) magical.addSpawn("thaumcraft.common.entities.monster.EntityPech", "MONSTER", 10, 1, 3) magical.addSpawn("thaumcraft.common.entities.monster.EntityWisp", "MONSTER", 8, 1, 2) magical.addSpawn("com.emoniph.witchery.entity.EntityGoblin", "CREATURE", 8, 1, 3) magical.addSpawn("com.emoniph.witchery.entity.EntityCovenWitch", "CREATURE", 4, 1, 1) nether.removeSpawn("gaia.entity.EntityGaiaWitherCow", "MONSTER") nether.addSpawn("gaia.entity.EntityGaiaWitherCow", "MONSTER", 5, 1, 3) nether.removeSpawn("gaia.entity.EntityGaiaSuccubus", "MONSTER") nether.addSpawn("gaia.entity.EntityGaiaSuccubus", "MONSTER", 5, 1, 2) nether.removeSpawn("gaia.entity.EntityGaiaBaphomet", "MONSTER") nether.addSpawn("gaia.entity.EntityGaiaBaphomet", "MONSTER", 3, 1, 2)
True
[1.2.128]"CAVE_CREATURE" spawn type overly trigger happy. - it may be specifically an interaction with Grimoire of Gaia, but using cave creature mob spawn type results in ridiculously high spawn rates, up to about 500 of that type of mob, with it filling back up to that point in less than a minute if culled using commands or peaceful mode. http://imgur.com/a/hwzNb This is the config file: forest = forBiomesOfTypes("FOREST") cold = forBiomesOfTypes("COLD") coniferous1 = forBiomesOfTypes("CONIFEROUS") beach1 = forBiomesOfTypes("BEACH") all = forAllBiomes() nether = forBiomes(8) end = forBiomes(9) twilightForest = forBiomes(98-116) erebus = forBiomes(72-79, 200-207) mushroomIsle = forBiomes(14, 15) taint = forBiomes(96) outerLands = forBiomes(94) overworld = subtractFrom(all, nether, end, erebus, mushroomIsle, taint, outerLands) ocean = forBiomesOfTypes("OCEAN") beach = subtractFrom(beach1, mushroomIsle) river = forBiomesOfTypes("RIVER") plains = forBiomesOfTypes("PLAINS") desert = forBiomesOfTypes("SANDY", "MESA") mountain = forBiomesOfTypes("MOUNTAIN") temperateForest = subtractFrom(forest, cold, coniferous1) coniferous = forBiomes(coniferous1, 158, 160, 161) swamp = forBiomesOfTypes("SWAMP") snowy = forBiomesOfTypes("SNOWY") jungle = forBiomesOfTypes("JUNGLE") wasteland = forBiomesOfTypes("WASTELAND") magical = forBiomesOfTypes("MAGICAL") nonTaintedMagical = subtractFrom(magical, taint) spooky = forBiomesOfType("SPOOKY") overworld.removeAllSpawns("CREATURE") overworld.removeAllSpawns("MONSTER") overworld.removeAllSpawns("WATER_CREATURE") overworld.removeAllSpawns("CAVE_CREATURE") overworld.addSpawn("net.minecraft.entity.monster.EntityZombie", "MONSTER", 20, 1, 6) overworld.addSpawn("thaumcraft.common.entities.monster.EntityBrainyZombie", "MONSTER", 8, 1, 3) overworld.addSpawn("net.minecraft.entity.monster.EntitySkeleton", "MONSTER", 20, 1, 4) overworld.addSpawn("mekanism.common.entity.EntityBabySkeleton", "MONSTER", 6, 1, 2) overworld.addSpawn("net.minecraft.entity.monster.EntityCreeper", "MONSTER", 15, 1, 3) overworld.addSpawn("net.minecraft.entity.monster.EntitySpider", "MONSTER", 15, 2, 4) overworld.addSpawn("net.minecraft.entity.monster.EntityEnderman", "MONSTER", 8, 1, 3) overworld.addSpawn("net.mcft.copy.betterstorage.entity.EntityFrienderman", "MONSTER", 1, 1, 1) overworld.addSpawn("net.minecraft.entity.monster.EntityWitch", "MONSTER", 6, 1, 2) overworld.addSpawn("clickme.animals.entity.ambient.EntityMoth", "MONSTER", 8, 2, 5) overworld.addSpawn("clickme.animals.entity.water.EntityFish", "WATER_CREATURE", 15, 3, 8) overworld.addSpawn("net.minecraft.entity.monster.EntitySlime", "CAVE_CREATURE", 6, 1, 3) overworld.addSpawn("net.minecraft.entity.monster.EntityBat", "CAVE_CREATURE", 12, 1, 3) overworld.addSpawn("gaia.entity.EntityGaiaMimic", "CAVE_CREATURE", 5, 1, 1) overworld.addSpawn("gaia.entity.EntityGaiaFleshLich", "CAVE_CREATURE", 3, 1, 3) overworld.addSpawn("gaia.entity.EntityGaiaEnderEye", "CAVE_CREATURE", 5, 1, 2) overworld.addSpawn("gaia.entity.EntityGaiaCreep", "CAVE_CREATURE", 5, 1, 3) overworld.addSpawn("gaia.entity.EntityGaiaJorogumo", "CAVE_CREATURE", 5, 1, 2) overworld.addSpawn("gaia.entity.EntityGaiaBoneKnight", 'CAVE_CREATURE", 3, 1, 3) plains.addSpawn("gaia.entity.EntityGaiaMinotaurus", "MONSTER", 3, 1, 3) plains.addSpawn("gaia.entity.EntityGaiaMinotaur", "MONSTER", 1, 1, 1) plains.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 16, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 8, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 12, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntityChicken", "CREATURE", 12, 2, 5) plains.addSpawn("net.minecraft.entity.passive.EntityHorse", "CREATURE", 15, 2, 5) plains.addSpawn("com.emoniph.witchery.entity.EntityGoblin", "CREATURE", 8, 1, 3) plains.addSpawn("clickme.animals.entity.passive.EntityMouse", "CREATURE", 16, 1, 5) plains.addSpawn("clickme.animals.entity.passive.EntityLizard", "CREATURE", 12, 1, 3) plains.addSpawn("clickme.animals.entity.ambient.EntityButterfly", "CREATURE", 10, 1, 3) plains.addSpawn("clickme.animals.entity.passive.EntitySnake", "CREATURE", 6, 1, 2) plains.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) plains.addSpawn("gaia.entity.EntityGaiaSatyr", "CREATURE", 5, 2, 5) plains.addSpawn("gaia.entity.EntityGaiaCentaur", "CREATURE", 5, 2, 5) plains.addSpawn("gaia.entity.EntityGaiaHunter", "CREATURE", 8, 1, 3) temperateForest.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 8, 2, 5) temperateForest.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 16, 2, 5) temperateForest.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 12, 2, 5) temperateForest.addSpawn("net.minecraft.entity.passive.EntityChicken", "CREATURE", 10, 2, 5) temperateForest.addSpawn("com.emoniph.witchery.entity.EntityOwl", "CREATURE", 3, 1, 2) temperateForest.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 16, 2, 4) temperateForest.addSpawn("clickme.animals.entity.ambient.EntityCentipede", "CREATURE", 12, 1, 6) temperateForest.addSpawn("clickme.animals.entity.passive.EntityMouse", "CREATURE", 16, 1, 5) temperateForest.addSpawn("clickme.animals.entity.ambient.EntityButterfly", "CREATURE", 10, 1, 3) temperateForest.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) temperateForest.addSpawn("gaia.entity.EntityGaiaPropFlowerCyan", "CREATURE", 5, 2, 5) forest.addSpawn("gaia.entity.EntityGaiaWerecat", "MONSTER", 5, 1, 3) forest.addSpawn("gaia.entity.EntityGaiaSpriggan", "MONSTER", 3, 1, 2) forest.addSpawn("net.minecraft.entity.passive.EntityWolf", "CREATURE", 12, 1, 4) forest.addSpawn("gaia.entity.EntityGaiaHunter", "CREATURE", 8, 1, 3) forest.addSpawn("gaia.entity.EntityGaiaDryad", "CREATURE", 8, 1, 3) coniferous.addSpawn("gaia.entity.EntityGaiaNineTails", "MONSTER", 3, 1, 2) coniferous.addSpawn("gaia.entity.EntityGaiaFutakuchiOnna", "MONSTER", 5, 1, 3) coniferous.addSpawn("gaia.entity.EntityGaiaCyclops", "CREATURE", 1, 1, 3) coniferous.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 12, 2, 5) coniferous.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 12, 2, 5) coniferous.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 10, 2, 5) coniferous.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 16, 2, 4) mountain.addSpawn("gaia.entity.EntityGaiaBanshee", "MONSTER", 3, 1, 2) mountain.addSpawn("gaia.entity.EntityGaiaDullahan", "MONSTER", 5, 1, 3) mountain.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 10, 2, 5) mountain.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 10, 2, 5) mountain.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 20, 2, 5) mountain.addSpawn("net.minecraft.entity.passive.EntityChicken", "CREATURE", 10, 2, 5) mountain.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) mountain.addSpawn("gaia.entity.EntityGaiaValkyrie", "CREATURE", 1, 1, 2) mountain.addSpawn("gaia.entity.EntityGaiaGryphon", "CREATURE", 5, 1, 2) desert.addSpawn("gaia.entity.EntityGaiaAnubis", "MONSTER", 3, 1, 3) desert.addSpawn("gaia.entity.EntityGaiaSphinx", "MONSTER", 1, 1, 2) desert.addSpawn("gaia.entity.EntityGaiaCockatrice", "CREATURE", 5, 1, 3) desert.addSpawn("gaia.entity.EntityGaiaHarpy", "CREATURE", 5, 1, 3) desert.addSpawn("clickme.animals.entity.passive.EntityLizard", "CREATURE", 13, 1, 3) desert.addSpawn("clickme.animals.entity.passive.EntitySnake", "CREATURE", 8, 1, 2) swamp.addSpawn("net.minecraft.entity.monster.EntityWitch", "MONSTER", 12, 1, 2) swamp.addSpawn("net.minecraft.entity.monster.EntitySlime", "MONSTER", 16, 1, 3) swamp.addSpawn("gaia.entity.EntityGaiaWitch", "MONSTER", 3, 1, 1) swamp.addSpawn("gaia.entity.EntityGaiaSwamper", "MONSTER", 3, 1, 2) swamp.addSpawn("gaia.entity.EntityGaiaSludgeGirl", "MONSTER", 5, 1, 2) swamp.addSpawn("com.emoniph.witchery.entity.EntityToad", "CREATURE", 8, 1, 4) swamp.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 12, 2, 4) swamp.addSpawn("clickme.animals.entity.ambient.EntityCentipede", "CREATURE", 12, 1, 3) swamp.addSpawn("clickme.animals.entity.passive.EntityDuck", "CREATURE", 10, 2, 5) swamp.addSpawn("clickme.animals.entity.passive.EntitySnake", "CREATURE", 8, 1, 2) swamp.addSpawn("gaia.entity.EntityGaiaNaga", "CREATURE", 3, 1, 2) swamp.addSpawn("gaia.entity.EntityGaiaSiren", "CREATURE", 5, 1, 2) swamp.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 8, 1, 10) swamp.addSpawn("net.minecraft.entity.passive.EntitySquid", "WATER_CREATURE", 5, 1, 3) swamp.addSpawn("clickme.animals.entity.water.EntityMantaRay", "WATER_CREATURE", 4, 1, 3) swamp.addSpawn("clickme.animals.entity.water.EntityPiranha", "WATER_CREATURE", 6, 2, 5) ocean.addSpawn("net.minecraft.entity.passive.EntitySquid", "WATER_CREATURE", 10, 1, 6) ocean.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 12, 1, 8) ocean.addSpawn("clickme.animals.entity.water.EntityMantaRay", "WATER_CREATURE", 8, 1, 3) ocean.addSpawn("clickme.animals.entity.water.EntityWhale", "WATER_CREATURE", 3, 1, 1) ocean.addSpawn("clickme.animals.entity.water.EntityShark", "WATER_CREATURE", 4, 1, 2) ocean.addSpawn("clickme.animals.entity.water.EntityAngler", "WATER_CREATURE", 2, 1, 2) ocean.addSpawn("gaia.entity.EntityGaiaMermaid", "CAVE_CREATURE", 3, 1, 3) ocean.addSpawn("gaia.entity.EntityGaiaSahuagin", "CAVE_CREATURE", 5, 1, 3) ocean.addSpawn("gaia.entity.EntityGaiaSharko", "CAVE_CREATURE", 3, 1, 2) beach.addSpawn("clickme.animals.entity.passive.EntityPenguin", "CREATURE", 15, 1, 5) beach.addSpawn("clickme.animals.entity.passive.EntityDuck", "CREATURE", 10, 2, 5) beach.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 12, 1, 10) beach.addSpawn("net.minecraft.entity.passive.EntitySquid", "WATER_CREATURE", 5, 1, 3) beach.addSpawn("clickme.animals.entity.water.EntityMantaRay", "WATER_CREATURE", 8, 1, 3) river.addSpawn("clickme.animals.entity.passive.EntityDuck", "CREATURE", 15, 2, 5) river.addSpawn("clickme.animals.entity.water.EntityTropiFish", "WATER_CREATURE", 12, 1, 10) river.addSpawn("clickme.animals.entity.water.EntityShark", "WATER_CREATURE", 2, 1, 1) river.addSpawn("clickme.animals.entity.water.EntityPiranha", "WATER_CREATURE", 6, 2, 5) jungle.addSpawn("gaia.entity.EntityGaiaCobblestoneGolem", "MONSTER", 3, 1, 2) jungle.addSpawn("gaia.entity.EntityGaiaShaman", "MONSTER", 3, 1, 2) jungle.addSpawn("net.minecraft.entity.passive.EntityOcelot", "CREATURE", 30, 2, 5) jungle.addSpawn("clickme.animals.entity.passive.EntityBird", "CREATURE", 16, 2, 4) jungle.addSpawn("clickme.animals.entity.ambient.EntityCentipede", "CREATURE", 12, 1, 3) jungle.addSpawn("clickme.animals.entity.passive.EntityLizard", "CREATURE", 13, 1, 3) jungle.addSpawn("clickme.animals.entity.ambient.EntityButterfly", "CREATURE", 10, 1, 3) jungle.addSpawn("clickme.animals.entity.ambient.EntityCricket", "CREATURE", 10, 1, 3) jungle.addSpawn("gaia.entity.EntityGaiaHunter", "CREATURE", 8, 1, 3) jungle.addSpawn("gaia.entity.EntityGaiaCobbleGolem", "CREATURE", 5, 1, 2) jungle.addSpawn("clickme.animals.entity.water.EntityPiranha", "WATER_CREATURE", 6, 2, 5) snowy.addSpawn("cofh.thermalfoundation.entity.monster.EntityBlizz", "MONSTER", 8, 1, 3) snowy.addSpawn("gaia.entity.EntityGaiaSelkie", "MONSTER", 3, 1, 2) snowy.addSpawn("gaia.entity.EntityGaiaVampire", "MONSTER", 1, 1, 1) snowy.addSpawn("gaia.entity.EntityGaiaDhampir", "MONSTER", 3, 1, 2) snowy.addSpawn("clickme.animals.entity.passive.EntityPenguin", "CREATURE", 15, 1, 5) snowy.addSpawn("gaia.entity.EntityGaiaYeti", "CREATURE", 5, 1, 1) snowy.addSpawn("gaia.entity.EntityGaiaYukiOnna", "CREATURE", 3, 1, 3) magical.addSpawn("thaumcraft.common.entities.monster.EntityPech", "MONSTER", 10, 1, 3) magical.addSpawn("thaumcraft.common.entities.monster.EntityWisp", "MONSTER", 8, 1, 2) magical.addSpawn("com.emoniph.witchery.entity.EntityGoblin", "CREATURE", 8, 1, 3) magical.addSpawn("com.emoniph.witchery.entity.EntityCovenWitch", "CREATURE", 4, 1, 1) nether.removeSpawn("gaia.entity.EntityGaiaWitherCow", "MONSTER") nether.addSpawn("gaia.entity.EntityGaiaWitherCow", "MONSTER", 5, 1, 3) nether.removeSpawn("gaia.entity.EntityGaiaSuccubus", "MONSTER") nether.addSpawn("gaia.entity.EntityGaiaSuccubus", "MONSTER", 5, 1, 2) nether.removeSpawn("gaia.entity.EntityGaiaBaphomet", "MONSTER") nether.addSpawn("gaia.entity.EntityGaiaBaphomet", "MONSTER", 3, 1, 2)
non_priority
cave creature spawn type overly trigger happy it may be specifically an interaction with grimoire of gaia but using cave creature mob spawn type results in ridiculously high spawn rates up to about of that type of mob with it filling back up to that point in less than a minute if culled using commands or peaceful mode this is the config file forest forbiomesoftypes forest cold forbiomesoftypes cold forbiomesoftypes coniferous forbiomesoftypes beach all forallbiomes nether forbiomes end forbiomes twilightforest forbiomes erebus forbiomes mushroomisle forbiomes taint forbiomes outerlands forbiomes overworld subtractfrom all nether end erebus mushroomisle taint outerlands ocean forbiomesoftypes ocean beach subtractfrom mushroomisle river forbiomesoftypes river plains forbiomesoftypes plains desert forbiomesoftypes sandy mesa mountain forbiomesoftypes mountain temperateforest subtractfrom forest cold coniferous forbiomes swamp forbiomesoftypes swamp snowy forbiomesoftypes snowy jungle forbiomesoftypes jungle wasteland forbiomesoftypes wasteland magical forbiomesoftypes magical nontaintedmagical subtractfrom magical taint spooky forbiomesoftype spooky overworld removeallspawns creature overworld removeallspawns monster overworld removeallspawns water creature overworld removeallspawns cave creature overworld addspawn net minecraft entity monster entityzombie monster overworld addspawn thaumcraft common entities monster entitybrainyzombie monster overworld addspawn net minecraft entity monster entityskeleton monster overworld addspawn mekanism common entity entitybabyskeleton monster overworld addspawn net minecraft entity monster entitycreeper monster overworld addspawn net minecraft entity monster entityspider monster overworld addspawn net minecraft entity monster entityenderman monster overworld addspawn net mcft copy betterstorage entity entityfrienderman monster overworld addspawn net minecraft entity monster entitywitch monster overworld addspawn clickme animals entity ambient entitymoth monster overworld addspawn clickme animals entity water entityfish water creature overworld addspawn net minecraft entity monster entityslime cave creature overworld addspawn net minecraft entity monster entitybat cave creature overworld addspawn gaia entity entitygaiamimic cave creature overworld addspawn gaia entity entitygaiafleshlich cave creature overworld addspawn gaia entity entitygaiaendereye cave creature overworld addspawn gaia entity entitygaiacreep cave creature overworld addspawn gaia entity entitygaiajorogumo cave creature overworld addspawn gaia entity entitygaiaboneknight cave creature plains addspawn gaia entity entitygaiaminotaurus monster plains addspawn gaia entity entitygaiaminotaur monster plains addspawn net minecraft entity passive entitycow creature plains addspawn net minecraft entity passive entitypig creature plains addspawn net minecraft entity passive entitysheep creature plains addspawn net minecraft entity passive entitychicken creature plains addspawn net minecraft entity passive entityhorse creature plains addspawn com emoniph witchery entity entitygoblin creature plains addspawn clickme animals entity passive entitymouse creature plains addspawn clickme animals entity passive entitylizard creature plains addspawn clickme animals entity ambient entitybutterfly creature plains addspawn clickme animals entity passive entitysnake creature plains addspawn clickme animals entity ambient entitycricket creature plains addspawn gaia entity entitygaiasatyr creature plains addspawn gaia entity entitygaiacentaur creature plains addspawn gaia entity entitygaiahunter creature temperateforest addspawn net minecraft entity passive entitycow creature temperateforest addspawn net minecraft entity passive entitypig creature temperateforest addspawn net minecraft entity passive entitysheep creature temperateforest addspawn net minecraft entity passive entitychicken creature temperateforest addspawn com emoniph witchery entity entityowl creature temperateforest addspawn clickme animals entity passive entitybird creature temperateforest addspawn clickme animals entity ambient entitycentipede creature temperateforest addspawn clickme animals entity passive entitymouse creature temperateforest addspawn clickme animals entity ambient entitybutterfly creature temperateforest addspawn clickme animals entity ambient entitycricket creature temperateforest addspawn gaia entity entitygaiapropflowercyan creature forest addspawn gaia entity entitygaiawerecat monster forest addspawn gaia entity entitygaiaspriggan monster forest addspawn net minecraft entity passive entitywolf creature forest addspawn gaia entity entitygaiahunter creature forest addspawn gaia entity entitygaiadryad creature coniferous addspawn gaia entity entitygaianinetails monster coniferous addspawn gaia entity entitygaiafutakuchionna monster coniferous addspawn gaia entity entitygaiacyclops creature coniferous addspawn net minecraft entity passive entitycow creature coniferous addspawn net minecraft entity passive entitypig creature coniferous addspawn net minecraft entity passive entitysheep creature coniferous addspawn clickme animals entity passive entitybird creature mountain addspawn gaia entity entitygaiabanshee monster mountain addspawn gaia entity entitygaiadullahan monster mountain addspawn net minecraft entity passive entitycow creature mountain addspawn net minecraft entity passive entitypig creature mountain addspawn net minecraft entity passive entitysheep creature mountain addspawn net minecraft entity passive entitychicken creature mountain addspawn clickme animals entity ambient entitycricket creature mountain addspawn gaia entity entitygaiavalkyrie creature mountain addspawn gaia entity entitygaiagryphon creature desert addspawn gaia entity entitygaiaanubis monster desert addspawn gaia entity entitygaiasphinx monster desert addspawn gaia entity entitygaiacockatrice creature desert addspawn gaia entity entitygaiaharpy creature desert addspawn clickme animals entity passive entitylizard creature desert addspawn clickme animals entity passive entitysnake creature swamp addspawn net minecraft entity monster entitywitch monster swamp addspawn net minecraft entity monster entityslime monster swamp addspawn gaia entity entitygaiawitch monster swamp addspawn gaia entity entitygaiaswamper monster swamp addspawn gaia entity entitygaiasludgegirl monster swamp addspawn com emoniph witchery entity entitytoad creature swamp addspawn clickme animals entity passive entitybird creature swamp addspawn clickme animals entity ambient entitycentipede creature swamp addspawn clickme animals entity passive entityduck creature swamp addspawn clickme animals entity passive entitysnake creature swamp addspawn gaia entity entitygaianaga creature swamp addspawn gaia entity entitygaiasiren creature swamp addspawn clickme animals entity water entitytropifish water creature swamp addspawn net minecraft entity passive entitysquid water creature swamp addspawn clickme animals entity water entitymantaray water creature swamp addspawn clickme animals entity water entitypiranha water creature ocean addspawn net minecraft entity passive entitysquid water creature ocean addspawn clickme animals entity water entitytropifish water creature ocean addspawn clickme animals entity water entitymantaray water creature ocean addspawn clickme animals entity water entitywhale water creature ocean addspawn clickme animals entity water entityshark water creature ocean addspawn clickme animals entity water entityangler water creature ocean addspawn gaia entity entitygaiamermaid cave creature ocean addspawn gaia entity entitygaiasahuagin cave creature ocean addspawn gaia entity entitygaiasharko cave creature beach addspawn clickme animals entity passive entitypenguin creature beach addspawn clickme animals entity passive entityduck creature beach addspawn clickme animals entity water entitytropifish water creature beach addspawn net minecraft entity passive entitysquid water creature beach addspawn clickme animals entity water entitymantaray water creature river addspawn clickme animals entity passive entityduck creature river addspawn clickme animals entity water entitytropifish water creature river addspawn clickme animals entity water entityshark water creature river addspawn clickme animals entity water entitypiranha water creature jungle addspawn gaia entity entitygaiacobblestonegolem monster jungle addspawn gaia entity entitygaiashaman monster jungle addspawn net minecraft entity passive entityocelot creature jungle addspawn clickme animals entity passive entitybird creature jungle addspawn clickme animals entity ambient entitycentipede creature jungle addspawn clickme animals entity passive entitylizard creature jungle addspawn clickme animals entity ambient entitybutterfly creature jungle addspawn clickme animals entity ambient entitycricket creature jungle addspawn gaia entity entitygaiahunter creature jungle addspawn gaia entity entitygaiacobblegolem creature jungle addspawn clickme animals entity water entitypiranha water creature snowy addspawn cofh thermalfoundation entity monster entityblizz monster snowy addspawn gaia entity entitygaiaselkie monster snowy addspawn gaia entity entitygaiavampire monster snowy addspawn gaia entity entitygaiadhampir monster snowy addspawn clickme animals entity passive entitypenguin creature snowy addspawn gaia entity entitygaiayeti creature snowy addspawn gaia entity entitygaiayukionna creature magical addspawn thaumcraft common entities monster entitypech monster magical addspawn thaumcraft common entities monster entitywisp monster magical addspawn com emoniph witchery entity entitygoblin creature magical addspawn com emoniph witchery entity entitycovenwitch creature nether removespawn gaia entity entitygaiawithercow monster nether addspawn gaia entity entitygaiawithercow monster nether removespawn gaia entity entitygaiasuccubus monster nether addspawn gaia entity entitygaiasuccubus monster nether removespawn gaia entity entitygaiabaphomet monster nether addspawn gaia entity entitygaiabaphomet monster
0
73,357
19,666,903,326
IssuesEvent
2022-01-11 00:02:34
ClangBuiltLinux/linux
https://api.github.com/repos/ClangBuiltLinux/linux
closed
-Wbitwise-instead-of-logical in drivers/gpu/drm/i915/intel_pm.c
[BUG] linux [ARCH] x86_64 [PATCH] Accepted [CONFIG] allmodconfig CONFIG_WERROR Clean build -Wbitwise-instead-of-logical
mainline x86 defconfig plus CONFIG_FORTIFY_SOURCE=y ``` drivers/gpu/drm/i915/intel_pm.c:3054:12: warning: use of bitwise '|' with boolean operands [-Wbitwise-instead-of-logical] changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ drivers/gpu/drm/i915/intel_pm.c:3054:12: note: cast one or both operands to int to silence this warning drivers/gpu/drm/i915/intel_pm.c:3054:12: warning: use of bitwise '|' with boolean operands [-Wbitwise-instead-of-logical] changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ || drivers/gpu/drm/i915/intel_pm.c:3054:12: note: cast one or both operands to int to silence this warning ```
1.0
-Wbitwise-instead-of-logical in drivers/gpu/drm/i915/intel_pm.c - mainline x86 defconfig plus CONFIG_FORTIFY_SOURCE=y ``` drivers/gpu/drm/i915/intel_pm.c:3054:12: warning: use of bitwise '|' with boolean operands [-Wbitwise-instead-of-logical] changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ drivers/gpu/drm/i915/intel_pm.c:3054:12: note: cast one or both operands to int to silence this warning drivers/gpu/drm/i915/intel_pm.c:3054:12: warning: use of bitwise '|' with boolean operands [-Wbitwise-instead-of-logical] changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ || drivers/gpu/drm/i915/intel_pm.c:3054:12: note: cast one or both operands to int to silence this warning ```
non_priority
wbitwise instead of logical in drivers gpu drm intel pm c mainline defconfig plus config fortify source y drivers gpu drm intel pm c warning use of bitwise with boolean operands changed ilk increase wm latency dev priv dev priv wm pri latency drivers gpu drm intel pm c note cast one or both operands to int to silence this warning drivers gpu drm intel pm c warning use of bitwise with boolean operands changed ilk increase wm latency dev priv dev priv wm pri latency drivers gpu drm intel pm c note cast one or both operands to int to silence this warning
0
70,909
18,293,987,338
IssuesEvent
2021-10-05 18:23:02
fjvallarino/monomer
https://api.github.com/repos/fjvallarino/monomer
closed
Install on Windows does not work
build issues platform issue
In the installation on Windows procedure (as descibed in 00-setup.md), `stack exec -- pacman -S mingw-w64-x86_64-pkg-config` will report the following errors: error: mingw32: key "FA11531AA0AA7F57" is unknown error: key "FA11531AA0AA7F57" could not be looked up remotely error: mingw64: key "FA11531AA0AA7F57" is unknown error: key "FA11531AA0AA7F57" could not be looked up remotely error: msys: key "FA11531AA0AA7F57" is unknown error: key "FA11531AA0AA7F57" could not be looked up remotely error: database 'mingw32' is not valid (invalid or corrupted database (PGP signature)) error: database 'mingw64' is not valid (invalid or corrupted database (PGP signature)) error: database 'msys' is not valid (invalid or corrupted database (PGP signature)) I have no idea what is going on, even after googling a lot. "pacman -Syu" fails with similar errors. Is it possible to update 00-setup.md to describe what has to be done? Thanks Robert
1.0
Install on Windows does not work - In the installation on Windows procedure (as descibed in 00-setup.md), `stack exec -- pacman -S mingw-w64-x86_64-pkg-config` will report the following errors: error: mingw32: key "FA11531AA0AA7F57" is unknown error: key "FA11531AA0AA7F57" could not be looked up remotely error: mingw64: key "FA11531AA0AA7F57" is unknown error: key "FA11531AA0AA7F57" could not be looked up remotely error: msys: key "FA11531AA0AA7F57" is unknown error: key "FA11531AA0AA7F57" could not be looked up remotely error: database 'mingw32' is not valid (invalid or corrupted database (PGP signature)) error: database 'mingw64' is not valid (invalid or corrupted database (PGP signature)) error: database 'msys' is not valid (invalid or corrupted database (PGP signature)) I have no idea what is going on, even after googling a lot. "pacman -Syu" fails with similar errors. Is it possible to update 00-setup.md to describe what has to be done? Thanks Robert
non_priority
install on windows does not work in the installation on windows procedure as descibed in setup md stack exec pacman s mingw pkg config will report the following errors error key is unknown error key could not be looked up remotely error key is unknown error key could not be looked up remotely error msys key is unknown error key could not be looked up remotely error database is not valid invalid or corrupted database pgp signature error database is not valid invalid or corrupted database pgp signature error database msys is not valid invalid or corrupted database pgp signature i have no idea what is going on even after googling a lot pacman syu fails with similar errors is it possible to update setup md to describe what has to be done thanks robert
0
7,227
5,923,591,965
IssuesEvent
2017-05-23 08:21:31
duplicati/duplicati
https://api.github.com/repos/duplicati/duplicati
closed
Duplicati 2.0 high memory usage after backups finish - Windows 10
pending user feedback performance issue
<!-- This is a bug report template. By following the instructions below and filling out the sections with your information, you will help the developers to get all the necessary data to fix your issue. You can also preview your report before submitting it. You may remove sections that aren't relevant to your particular case. Let's begin with a checklist: replace the empty checkbox [ ] below with a checked one [x] if you already searched for duplicate bugs --> I have: - [ ] searched open and closed issues for duplicates ---------------------------------------- ### Version info <!-- please replace the examples with your info --> **Duplicati Version:** Duplicati - 2.0.1.53_experimental_2017-03-13 **Operating System:** Windows 10 **Backend:** Don't know what this means ### Bug description RAM usage after a backup is high. I ran three backups 12 hours ago, of around 50GB of data. RAM usage is 2GB. ### Steps to reproduce - Run a variety of backups (I did 7 runs of 4 sets) to local disks and Amazon S3 **Actual result:** 2.6GB of RAM used once backup finished **Expected result:** RAM is freed after backup is finished, or some time later ### Screenshots ![dup-memory](https://cloud.githubusercontent.com/assets/8381145/26260291/c6dd6a00-3d20-11e7-9537-9507733efbba.jpg) ### debug log Can supply if required, I don't know where to find it.
True
Duplicati 2.0 high memory usage after backups finish - Windows 10 - <!-- This is a bug report template. By following the instructions below and filling out the sections with your information, you will help the developers to get all the necessary data to fix your issue. You can also preview your report before submitting it. You may remove sections that aren't relevant to your particular case. Let's begin with a checklist: replace the empty checkbox [ ] below with a checked one [x] if you already searched for duplicate bugs --> I have: - [ ] searched open and closed issues for duplicates ---------------------------------------- ### Version info <!-- please replace the examples with your info --> **Duplicati Version:** Duplicati - 2.0.1.53_experimental_2017-03-13 **Operating System:** Windows 10 **Backend:** Don't know what this means ### Bug description RAM usage after a backup is high. I ran three backups 12 hours ago, of around 50GB of data. RAM usage is 2GB. ### Steps to reproduce - Run a variety of backups (I did 7 runs of 4 sets) to local disks and Amazon S3 **Actual result:** 2.6GB of RAM used once backup finished **Expected result:** RAM is freed after backup is finished, or some time later ### Screenshots ![dup-memory](https://cloud.githubusercontent.com/assets/8381145/26260291/c6dd6a00-3d20-11e7-9537-9507733efbba.jpg) ### debug log Can supply if required, I don't know where to find it.
non_priority
duplicati high memory usage after backups finish windows this is a bug report template by following the instructions below and filling out the sections with your information you will help the developers to get all the necessary data to fix your issue you can also preview your report before submitting it you may remove sections that aren t relevant to your particular case let s begin with a checklist replace the empty checkbox below with a checked one if you already searched for duplicate bugs i have searched open and closed issues for duplicates version info duplicati version duplicati experimental operating system windows backend don t know what this means bug description ram usage after a backup is high i ran three backups hours ago of around of data ram usage is steps to reproduce run a variety of backups i did runs of sets to local disks and amazon actual result of ram used once backup finished expected result ram is freed after backup is finished or some time later screenshots debug log can supply if required i don t know where to find it
0
136,637
18,750,946,731
IssuesEvent
2021-11-05 01:47:51
joaonetoo/libeasy
https://api.github.com/repos/joaonetoo/libeasy
opened
CVE-2021-32803 (High) detected in tar-4.4.1.tgz
security vulnerability
## CVE-2021-32803 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-4.4.1.tgz</b></p></summary> <p>tar for node</p> <p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.1.tgz">https://registry.npmjs.org/tar/-/tar-4.4.1.tgz</a></p> <p> Dependency Hierarchy: - nodemon-1.17.3.tgz (Root Library) - chokidar-2.0.2.tgz - fsevents-1.2.4.tgz - node-pre-gyp-0.10.0.tgz - :x: **tar-4.4.1.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The npm package "tar" (aka node-tar) before versions 6.1.2, 5.0.7, 4.4.15, and 3.2.3 has an arbitrary File Creation/Overwrite vulnerability via insufficient symlink protection. `node-tar` aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary `stat` calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory. This order of operations resulted in the directory being created and added to the `node-tar` directory cache. When a directory is present in the directory cache, subsequent calls to mkdir for that directory are skipped. However, this is also where `node-tar` checks for symlinks occur. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass `node-tar` symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. This issue was addressed in releases 3.2.3, 4.4.15, 5.0.7 and 6.1.2. <p>Publish Date: 2021-08-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32803>CVE-2021-32803</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/npm/node-tar/security/advisories/GHSA-r628-mhmh-qjhw">https://github.com/npm/node-tar/security/advisories/GHSA-r628-mhmh-qjhw</a></p> <p>Release Date: 2021-08-03</p> <p>Fix Resolution: tar - 3.2.3, 4.4.15, 5.0.7, 6.1.2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-32803 (High) detected in tar-4.4.1.tgz - ## CVE-2021-32803 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-4.4.1.tgz</b></p></summary> <p>tar for node</p> <p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.1.tgz">https://registry.npmjs.org/tar/-/tar-4.4.1.tgz</a></p> <p> Dependency Hierarchy: - nodemon-1.17.3.tgz (Root Library) - chokidar-2.0.2.tgz - fsevents-1.2.4.tgz - node-pre-gyp-0.10.0.tgz - :x: **tar-4.4.1.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The npm package "tar" (aka node-tar) before versions 6.1.2, 5.0.7, 4.4.15, and 3.2.3 has an arbitrary File Creation/Overwrite vulnerability via insufficient symlink protection. `node-tar` aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary `stat` calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory. This order of operations resulted in the directory being created and added to the `node-tar` directory cache. When a directory is present in the directory cache, subsequent calls to mkdir for that directory are skipped. However, this is also where `node-tar` checks for symlinks occur. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass `node-tar` symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. This issue was addressed in releases 3.2.3, 4.4.15, 5.0.7 and 6.1.2. <p>Publish Date: 2021-08-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32803>CVE-2021-32803</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/npm/node-tar/security/advisories/GHSA-r628-mhmh-qjhw">https://github.com/npm/node-tar/security/advisories/GHSA-r628-mhmh-qjhw</a></p> <p>Release Date: 2021-08-03</p> <p>Fix Resolution: tar - 3.2.3, 4.4.15, 5.0.7, 6.1.2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve high detected in tar tgz cve high severity vulnerability vulnerable library tar tgz tar for node library home page a href dependency hierarchy nodemon tgz root library chokidar tgz fsevents tgz node pre gyp tgz x tar tgz vulnerable library vulnerability details the npm package tar aka node tar before versions and has an arbitrary file creation overwrite vulnerability via insufficient symlink protection node tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted this is in part achieved by ensuring that extracted directories are not symlinks additionally in order to prevent unnecessary stat calls to determine whether a given path is a directory paths are cached when directories are created this logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory this order of operations resulted in the directory being created and added to the node tar directory cache when a directory is present in the directory cache subsequent calls to mkdir for that directory are skipped however this is also where node tar checks for symlinks occur by first creating a directory and then replacing that directory with a symlink it was thus possible to bypass node tar symlink checks on directories essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location thus allowing arbitrary file creation and overwrite this issue was addressed in releases and publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tar step up your open source security game with whitesource
0
34,575
30,189,307,297
IssuesEvent
2023-07-04 14:14:01
centerofci/mathesar
https://api.github.com/repos/centerofci/mathesar
closed
Setup PgBouncer on the demo server to timeout and pool connections
type: enhancement work: backend work: infrastructure status: ready
There are two related issues that aim to: - time out Postgres connections - https://github.com/centerofci/mathesar/issues/2546 - and reduce the number of connections we spawn - https://github.com/centerofci/mathesar/issues/2545 I suggest that it's worth trying to do that with [PgBouncer](https://www.pgbouncer.org/) (a Postgres connection pooler) instead, for the following reasons: - We can't seem to configure connection timeouts in our Postgres version (see [this comment](https://github.com/centerofci/mathesar/issues/2546#issuecomment-1441471183)), which is what [#2546](#2546) was trying to do; - Diving around Mathesar codebase looking for ways to optimize connections is laboursome, which is what [#2545](#2545) is about. The way I see PgBouncer working is that we configure it to: - Use `pool_mode` set to `transaction` to release Postgres-PgBouncer (in contrast to PgBouncer-Mathesar connections) connections back to pool after each transaction; - Restrict the number of Postgres-PgBouncer connections per database to 1; I hope that this together with above `pool_mode` setting with result in Mathesar using at most a single Postgres-PgBouncer connection per database (without crashing); - Aggressively timeout Postgres-PgBouncer connections. Above should work if Mathesar does not try to query the same database asynchroniously (via multiple PgBouncer-Mathesar connections) and/or if PgBouncer can transparently block PgBouncer-Mathesar connections until a Postgres-PgBouncer connection is released.
1.0
Setup PgBouncer on the demo server to timeout and pool connections - There are two related issues that aim to: - time out Postgres connections - https://github.com/centerofci/mathesar/issues/2546 - and reduce the number of connections we spawn - https://github.com/centerofci/mathesar/issues/2545 I suggest that it's worth trying to do that with [PgBouncer](https://www.pgbouncer.org/) (a Postgres connection pooler) instead, for the following reasons: - We can't seem to configure connection timeouts in our Postgres version (see [this comment](https://github.com/centerofci/mathesar/issues/2546#issuecomment-1441471183)), which is what [#2546](#2546) was trying to do; - Diving around Mathesar codebase looking for ways to optimize connections is laboursome, which is what [#2545](#2545) is about. The way I see PgBouncer working is that we configure it to: - Use `pool_mode` set to `transaction` to release Postgres-PgBouncer (in contrast to PgBouncer-Mathesar connections) connections back to pool after each transaction; - Restrict the number of Postgres-PgBouncer connections per database to 1; I hope that this together with above `pool_mode` setting with result in Mathesar using at most a single Postgres-PgBouncer connection per database (without crashing); - Aggressively timeout Postgres-PgBouncer connections. Above should work if Mathesar does not try to query the same database asynchroniously (via multiple PgBouncer-Mathesar connections) and/or if PgBouncer can transparently block PgBouncer-Mathesar connections until a Postgres-PgBouncer connection is released.
non_priority
setup pgbouncer on the demo server to timeout and pool connections there are two related issues that aim to time out postgres connections and reduce the number of connections we spawn i suggest that it s worth trying to do that with a postgres connection pooler instead for the following reasons we can t seem to configure connection timeouts in our postgres version see which is what was trying to do diving around mathesar codebase looking for ways to optimize connections is laboursome which is what is about the way i see pgbouncer working is that we configure it to use pool mode set to transaction to release postgres pgbouncer in contrast to pgbouncer mathesar connections connections back to pool after each transaction restrict the number of postgres pgbouncer connections per database to i hope that this together with above pool mode setting with result in mathesar using at most a single postgres pgbouncer connection per database without crashing aggressively timeout postgres pgbouncer connections above should work if mathesar does not try to query the same database asynchroniously via multiple pgbouncer mathesar connections and or if pgbouncer can transparently block pgbouncer mathesar connections until a postgres pgbouncer connection is released
0
5,805
3,669,816,822
IssuesEvent
2016-02-21 13:35:47
jeff1evesque/drupal-demonstration
https://api.github.com/repos/jeff1evesque/drupal-demonstration
closed
Implement 'augeas' in 'configure_httpd.pp'
build enhancement
We will replace as many `sed`, and `awk` implementation within `configure_httpd.pp`, with augeas. **IRC #puppet (02/10/16 ~ 4:15pm EST):** >jeffreylevesque: is augeas the bst way to configure files jeffreylevesque: i'm looking at http://xmodulo.com/manage-configurations-linux-puppet-augeas.html >raphink: jeffreylevesque, if you want to edit a file instead of managing it entirely, then yes raphink: jeffreylevesque, I've summed up the various approaches here https://gist.github.com/raphink/d441e1cc686b542fcdf5 raphink: in your case, you want a partial configuration management (second part) raphink: there is no puppet type for login.defs, no .d/ directory is possible, it's not an inifile raphink: but there is an Augeas lens raphink: so there you go >jeffreylevesque: raphink: thank you! >raphink: note that if you use puppet 4 (with AIO packages), you don't need to install augeas raphink: and augtool is provided at /opt/puppetlabs/puppet/bin/augtool **Note:** additional documentation can be referred within [puppet_augeas](https://projects.puppetlabs.com/projects/1/wiki/puppet_augeas).
1.0
Implement 'augeas' in 'configure_httpd.pp' - We will replace as many `sed`, and `awk` implementation within `configure_httpd.pp`, with augeas. **IRC #puppet (02/10/16 ~ 4:15pm EST):** >jeffreylevesque: is augeas the bst way to configure files jeffreylevesque: i'm looking at http://xmodulo.com/manage-configurations-linux-puppet-augeas.html >raphink: jeffreylevesque, if you want to edit a file instead of managing it entirely, then yes raphink: jeffreylevesque, I've summed up the various approaches here https://gist.github.com/raphink/d441e1cc686b542fcdf5 raphink: in your case, you want a partial configuration management (second part) raphink: there is no puppet type for login.defs, no .d/ directory is possible, it's not an inifile raphink: but there is an Augeas lens raphink: so there you go >jeffreylevesque: raphink: thank you! >raphink: note that if you use puppet 4 (with AIO packages), you don't need to install augeas raphink: and augtool is provided at /opt/puppetlabs/puppet/bin/augtool **Note:** additional documentation can be referred within [puppet_augeas](https://projects.puppetlabs.com/projects/1/wiki/puppet_augeas).
non_priority
implement augeas in configure httpd pp we will replace as many sed and awk implementation within configure httpd pp with augeas irc puppet est jeffreylevesque is augeas the bst way to configure files jeffreylevesque i m looking at raphink jeffreylevesque if you want to edit a file instead of managing it entirely then yes raphink jeffreylevesque i ve summed up the various approaches here raphink in your case you want a partial configuration management second part raphink there is no puppet type for login defs no d directory is possible it s not an inifile raphink but there is an augeas lens raphink so there you go jeffreylevesque raphink thank you raphink note that if you use puppet with aio packages you don t need to install augeas raphink and augtool is provided at opt puppetlabs puppet bin augtool note additional documentation can be referred within
0
60,380
12,101,172,447
IssuesEvent
2020-04-20 14:51:08
rust-lang/rust
https://api.github.com/repos/rust-lang/rust
closed
codegen-units=1 not honored
A-codegen A-diagnostics A-incr-comp C-enhancement T-compiler
````bash cargo new foo cd foo RUSTFLAGS="-Ztime-passes -Ccodegen-units=1" cargo build -j 1 ```` When checking the output, it looks like there are several codegen units used when calling llvm, or is this something else? ```` time: 0.010; rss: 116MB monomorphization collection time: 0.000; rss: 116MB codegen unit partitioning time: 0.000; rss: 118MB write allocator module time: 0.000; rss: 119MB llvm function passes [1p3g4pb8qsux2ebh] time: 0.000; rss: 119MB llvm module passes [1p3g4pb8qsux2ebh] time: 0.002; rss: 121MB codegen passes [1p3g4pb8qsux2ebh] time: 0.000; rss: 122MB llvm function passes [2h4slianzkuyn4qa] time: 0.000; rss: 122MB llvm module passes [2h4slianzkuyn4qa] time: 0.002; rss: 123MB codegen passes [2h4slianzkuyn4qa] time: 0.000; rss: 123MB llvm function passes [1uwbbgiy3kdescgz] time: 0.000; rss: 123MB llvm module passes [1uwbbgiy3kdescgz] time: 0.001; rss: 123MB codegen passes [1uwbbgiy3kdescgz] time: 0.000; rss: 123MB llvm function passes [5e3yhkplw0iikeko] time: 0.000; rss: 123MB llvm module passes [5e3yhkplw0iikeko] time: 0.002; rss: 123MB codegen passes [5e3yhkplw0iikeko] time: 0.005; rss: 125MB codegen to LLVM IR time: 0.000; rss: 125MB assert dep graph time: 0.000; rss: 125MB llvm function passes [3wor41lao02720f1] time: 0.000; rss: 125MB llvm module passes [3wor41lao02720f1] ```` `rustc 1.40.0-nightly (4a8c5b20c 2019-10-23)`
1.0
codegen-units=1 not honored - ````bash cargo new foo cd foo RUSTFLAGS="-Ztime-passes -Ccodegen-units=1" cargo build -j 1 ```` When checking the output, it looks like there are several codegen units used when calling llvm, or is this something else? ```` time: 0.010; rss: 116MB monomorphization collection time: 0.000; rss: 116MB codegen unit partitioning time: 0.000; rss: 118MB write allocator module time: 0.000; rss: 119MB llvm function passes [1p3g4pb8qsux2ebh] time: 0.000; rss: 119MB llvm module passes [1p3g4pb8qsux2ebh] time: 0.002; rss: 121MB codegen passes [1p3g4pb8qsux2ebh] time: 0.000; rss: 122MB llvm function passes [2h4slianzkuyn4qa] time: 0.000; rss: 122MB llvm module passes [2h4slianzkuyn4qa] time: 0.002; rss: 123MB codegen passes [2h4slianzkuyn4qa] time: 0.000; rss: 123MB llvm function passes [1uwbbgiy3kdescgz] time: 0.000; rss: 123MB llvm module passes [1uwbbgiy3kdescgz] time: 0.001; rss: 123MB codegen passes [1uwbbgiy3kdescgz] time: 0.000; rss: 123MB llvm function passes [5e3yhkplw0iikeko] time: 0.000; rss: 123MB llvm module passes [5e3yhkplw0iikeko] time: 0.002; rss: 123MB codegen passes [5e3yhkplw0iikeko] time: 0.005; rss: 125MB codegen to LLVM IR time: 0.000; rss: 125MB assert dep graph time: 0.000; rss: 125MB llvm function passes [3wor41lao02720f1] time: 0.000; rss: 125MB llvm module passes [3wor41lao02720f1] ```` `rustc 1.40.0-nightly (4a8c5b20c 2019-10-23)`
non_priority
codegen units not honored bash cargo new foo cd foo rustflags ztime passes ccodegen units cargo build j when checking the output it looks like there are several codegen units used when calling llvm or is this something else time rss monomorphization collection time rss codegen unit partitioning time rss write allocator module time rss llvm function passes time rss llvm module passes time rss codegen passes time rss llvm function passes time rss llvm module passes time rss codegen passes time rss llvm function passes time rss llvm module passes time rss codegen passes time rss llvm function passes time rss llvm module passes time rss codegen passes time rss codegen to llvm ir time rss assert dep graph time rss llvm function passes time rss llvm module passes rustc nightly
0
433,567
30,336,046,976
IssuesEvent
2023-07-11 09:38:04
MetOffice/CSET
https://api.github.com/repos/MetOffice/CSET
closed
Do a readability pass of the documentation
documentation
Currently I fear it is too jargon heavy, and not the most readable.
1.0
Do a readability pass of the documentation - Currently I fear it is too jargon heavy, and not the most readable.
non_priority
do a readability pass of the documentation currently i fear it is too jargon heavy and not the most readable
0
13,859
10,057,966,386
IssuesEvent
2019-07-22 12:56:46
meateam/file-service
https://api.github.com/repos/meateam/file-service
closed
undefined is already in use on file upload
bug file service
![image](https://user-images.githubusercontent.com/11276898/60796249-bae00580-a175-11e9-9df0-284be3fed918.png) This error appears sometimes randomly when uploading a file (bigger or smaller than 5MB) to the application and its returned from the file-service.
1.0
undefined is already in use on file upload - ![image](https://user-images.githubusercontent.com/11276898/60796249-bae00580-a175-11e9-9df0-284be3fed918.png) This error appears sometimes randomly when uploading a file (bigger or smaller than 5MB) to the application and its returned from the file-service.
non_priority
undefined is already in use on file upload this error appears sometimes randomly when uploading a file bigger or smaller than to the application and its returned from the file service
0
10,093
26,257,509,326
IssuesEvent
2023-01-06 03:00:53
tlc-pack/relax
https://api.github.com/repos/tlc-pack/relax
closed
[UX][IR] Cleanup global_symbol attachment and linkage
architecture
We already had several discussions around this. This post summarizes the action items: Background: we want to make sure most function remains "private", so they can be cleaned up (through dead code elim etc). - Every function that comes with global_symbol is an external linkage - By default (during emit_te) we do not generate functions with global_symbol - We have a pass assign global_symbol near the end of codegen, when we need to specify the names of the generated external packed_func. Action items: - introduce the global symbol assignment pass near codegen(so global symbol is optional) - Remove global symbol attachment in internal passes(e.g. fusion, and emit_te) - Consider add syntax sugar to TVMScript to highlight external or private functions e.g. `R.function(private=True)`
1.0
[UX][IR] Cleanup global_symbol attachment and linkage - We already had several discussions around this. This post summarizes the action items: Background: we want to make sure most function remains "private", so they can be cleaned up (through dead code elim etc). - Every function that comes with global_symbol is an external linkage - By default (during emit_te) we do not generate functions with global_symbol - We have a pass assign global_symbol near the end of codegen, when we need to specify the names of the generated external packed_func. Action items: - introduce the global symbol assignment pass near codegen(so global symbol is optional) - Remove global symbol attachment in internal passes(e.g. fusion, and emit_te) - Consider add syntax sugar to TVMScript to highlight external or private functions e.g. `R.function(private=True)`
non_priority
cleanup global symbol attachment and linkage we already had several discussions around this this post summarizes the action items background we want to make sure most function remains private so they can be cleaned up through dead code elim etc every function that comes with global symbol is an external linkage by default during emit te we do not generate functions with global symbol we have a pass assign global symbol near the end of codegen when we need to specify the names of the generated external packed func action items introduce the global symbol assignment pass near codegen so global symbol is optional remove global symbol attachment in internal passes e g fusion and emit te consider add syntax sugar to tvmscript to highlight external or private functions e g r function private true
0
79,459
10,128,882,712
IssuesEvent
2019-08-01 13:43:35
rrousselGit/provider
https://api.github.com/repos/rrousselGit/provider
closed
Only the first instance returned by builder of ProxyProvider (ChangeNotifierProxyProvider) is propagated down the tree
bug documentation
Expected behaviour: 1. Every time the floating action button is pushed, `DecCounter`'s decimal value is incremented. 2. `DecCounter` extends `ValueNotifier`, so the change of value causes the builder of `ListenableProxyProvider<DecCounter, HexCounter>()` to be called. 3. In the builder, `HexCounter`, which also extends `ValueNotifier`, is newly instantiated with the decimal value passed in. 4. The value is converted to a hexadecimal number in `HexCounter`. 5. The change is notified and an update of Text should be triggered. ```dart class DecCounter extends ValueNotifier<int> { DecCounter() : super(0); void increment() => value++; } class HexCounter extends ValueNotifier<String> { HexCounter(int decimal) : super(decimal.toRadixString(16)); } ``` ```dart import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: MultiProvider( providers: [ ListenableProvider<DecCounter>( builder: (_) => DecCounter(), dispose: (_, decCounter) => decCounter.dispose(), ), ListenableProxyProvider<DecCounter, HexCounter>( builder: (_, decCounter, __) => HexCounter(decCounter.value), dispose: (_, hexCounter) => hexCounter.dispose(), ), ], child: Scaffold( body: _CounterView(), floatingActionButton: Consumer<DecCounter>( builder: (_, counter, __) { return FloatingActionButton( onPressed: counter.increment, child: const Icon(Icons.add), ); }, ), ), ), ); } } class _CounterView extends StatelessWidget { @override Widget build(BuildContext context) { final counter = Provider.of<HexCounter>(context); return Center( child: Text(counter.value.toString()), ); } } ``` This code does not work as I expected. The number on the screen is not incremented. I tried many changes in my code and managed to get it to work finally by using and returning the existing instance of `HexCounter` that is obtained from the last parameter of the builder. ```diff class HexCounter extends ValueNotifier<String> { - HexCounter(int decimal) : super(decimal.toRadixString(16)); + HexCounter() : super('0'); + + void setValue(int decimal) { + value = decimal.toRadixString(16); + } } ``` ```diff ListenableProxyProvider<DecCounter, HexCounter>( - builder: (_, decCounter, __) => HexCounter(decCounter.value), + initialBuilder: (_) => HexCounter(), + builder: (_, decCounter, prevHexCounter) { + return prevHexCounter..setValue(decCounter.value); + }, dispose: (_, hexCounter) => hexCounter.dispose(), ), ``` It looks like returning different `HexCounter` instances by the builder stops propagation. Am I right in thinking so? Does the builder of `ProxyProvider` / `ChangeNotifierProxyProvider` / `ListenableProxyProvider` have to return the same instance on every rebuild? If so, it seems the documentation of `ProxyProvider`'s constructor may need a little more detail to prevent misuse. > As opposed to the builder parameter of Provider, builder may be called more than once. This misled me to think the builder was allowed to return a new instance every time.
1.0
Only the first instance returned by builder of ProxyProvider (ChangeNotifierProxyProvider) is propagated down the tree - Expected behaviour: 1. Every time the floating action button is pushed, `DecCounter`'s decimal value is incremented. 2. `DecCounter` extends `ValueNotifier`, so the change of value causes the builder of `ListenableProxyProvider<DecCounter, HexCounter>()` to be called. 3. In the builder, `HexCounter`, which also extends `ValueNotifier`, is newly instantiated with the decimal value passed in. 4. The value is converted to a hexadecimal number in `HexCounter`. 5. The change is notified and an update of Text should be triggered. ```dart class DecCounter extends ValueNotifier<int> { DecCounter() : super(0); void increment() => value++; } class HexCounter extends ValueNotifier<String> { HexCounter(int decimal) : super(decimal.toRadixString(16)); } ``` ```dart import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: MultiProvider( providers: [ ListenableProvider<DecCounter>( builder: (_) => DecCounter(), dispose: (_, decCounter) => decCounter.dispose(), ), ListenableProxyProvider<DecCounter, HexCounter>( builder: (_, decCounter, __) => HexCounter(decCounter.value), dispose: (_, hexCounter) => hexCounter.dispose(), ), ], child: Scaffold( body: _CounterView(), floatingActionButton: Consumer<DecCounter>( builder: (_, counter, __) { return FloatingActionButton( onPressed: counter.increment, child: const Icon(Icons.add), ); }, ), ), ), ); } } class _CounterView extends StatelessWidget { @override Widget build(BuildContext context) { final counter = Provider.of<HexCounter>(context); return Center( child: Text(counter.value.toString()), ); } } ``` This code does not work as I expected. The number on the screen is not incremented. I tried many changes in my code and managed to get it to work finally by using and returning the existing instance of `HexCounter` that is obtained from the last parameter of the builder. ```diff class HexCounter extends ValueNotifier<String> { - HexCounter(int decimal) : super(decimal.toRadixString(16)); + HexCounter() : super('0'); + + void setValue(int decimal) { + value = decimal.toRadixString(16); + } } ``` ```diff ListenableProxyProvider<DecCounter, HexCounter>( - builder: (_, decCounter, __) => HexCounter(decCounter.value), + initialBuilder: (_) => HexCounter(), + builder: (_, decCounter, prevHexCounter) { + return prevHexCounter..setValue(decCounter.value); + }, dispose: (_, hexCounter) => hexCounter.dispose(), ), ``` It looks like returning different `HexCounter` instances by the builder stops propagation. Am I right in thinking so? Does the builder of `ProxyProvider` / `ChangeNotifierProxyProvider` / `ListenableProxyProvider` have to return the same instance on every rebuild? If so, it seems the documentation of `ProxyProvider`'s constructor may need a little more detail to prevent misuse. > As opposed to the builder parameter of Provider, builder may be called more than once. This misled me to think the builder was allowed to return a new instance every time.
non_priority
only the first instance returned by builder of proxyprovider changenotifierproxyprovider is propagated down the tree expected behaviour every time the floating action button is pushed deccounter s decimal value is incremented deccounter extends valuenotifier so the change of value causes the builder of listenableproxyprovider to be called in the builder hexcounter which also extends valuenotifier is newly instantiated with the decimal value passed in the value is converted to a hexadecimal number in hexcounter the change is notified and an update of text should be triggered dart class deccounter extends valuenotifier deccounter super void increment value class hexcounter extends valuenotifier hexcounter int decimal super decimal toradixstring dart import package flutter material dart import package provider provider dart void main runapp myapp class myapp extends statelesswidget override widget build buildcontext context return materialapp home multiprovider providers listenableprovider builder deccounter dispose deccounter deccounter dispose listenableproxyprovider builder deccounter hexcounter deccounter value dispose hexcounter hexcounter dispose child scaffold body counterview floatingactionbutton consumer builder counter return floatingactionbutton onpressed counter increment child const icon icons add class counterview extends statelesswidget override widget build buildcontext context final counter provider of context return center child text counter value tostring this code does not work as i expected the number on the screen is not incremented i tried many changes in my code and managed to get it to work finally by using and returning the existing instance of hexcounter that is obtained from the last parameter of the builder diff class hexcounter extends valuenotifier hexcounter int decimal super decimal toradixstring hexcounter super void setvalue int decimal value decimal toradixstring diff listenableproxyprovider builder deccounter hexcounter deccounter value initialbuilder hexcounter builder deccounter prevhexcounter return prevhexcounter setvalue deccounter value dispose hexcounter hexcounter dispose it looks like returning different hexcounter instances by the builder stops propagation am i right in thinking so does the builder of proxyprovider changenotifierproxyprovider listenableproxyprovider have to return the same instance on every rebuild if so it seems the documentation of proxyprovider s constructor may need a little more detail to prevent misuse as opposed to the builder parameter of provider builder may be called more than once this misled me to think the builder was allowed to return a new instance every time
0
17,214
5,352,838,404
IssuesEvent
2017-02-20 01:52:09
elmsln/elmsln
https://api.github.com/repos/elmsln/elmsln
closed
Add default configuration to mathjax
courses / mooc easy enhancement non-coder Subject: Math / Science
We should add the default configuration settings to MathJax so users can scale the font sizing appropriately. #458
1.0
Add default configuration to mathjax - We should add the default configuration settings to MathJax so users can scale the font sizing appropriately. #458
non_priority
add default configuration to mathjax we should add the default configuration settings to mathjax so users can scale the font sizing appropriately
0
179,763
14,711,718,023
IssuesEvent
2021-01-05 07:53:00
howToCodeWell/course-notes
https://api.github.com/repos/howToCodeWell/course-notes
closed
Missing Course Notes: 03 Dropping Databases
Course: MySQL Console Missing Course Notes documentation good first issue
Issue tracker is **ONLY** used for reporting bugs. New features and suggestions should be discussed on [Discord](https://howtocodewell.net/discord). <!--- Provide a general summary of the issue in the Title above --> ## Which Tutorial or Course is it? <!--- Tell us what should happen --> https://github.com/howToCodeWell/course-notes/blob/main/mysql-console/notes/03-dropping-databases.md ## What is the issue?
1.0
Missing Course Notes: 03 Dropping Databases - Issue tracker is **ONLY** used for reporting bugs. New features and suggestions should be discussed on [Discord](https://howtocodewell.net/discord). <!--- Provide a general summary of the issue in the Title above --> ## Which Tutorial or Course is it? <!--- Tell us what should happen --> https://github.com/howToCodeWell/course-notes/blob/main/mysql-console/notes/03-dropping-databases.md ## What is the issue?
non_priority
missing course notes dropping databases issue tracker is only used for reporting bugs new features and suggestions should be discussed on which tutorial or course is it what is the issue
0
299,038
25,875,547,436
IssuesEvent
2022-12-14 07:33:46
zephyrproject-rtos/test_results
https://api.github.com/repos/zephyrproject-rtos/test_results
closed
tests-ci : net: socket: register.tls test No Console Output(Timeout)
bug area: Tests
**Describe the bug** register.tls test is No Console Output(Timeout) on zephyr-v3.2.0-2490-ga1b4896efe46 on mimxrt1170_evk_cm7 see logs for details **To Reproduce** 1. ``` scripts/twister --device-testing --device-serial /dev/ttyACM0 -p mimxrt1170_evk_cm7 --sub-test net.socket ``` 2. See error **Expected behavior** test pass **Impact** **Logs and console output** ``` E: ***** USAGE FAULT ***** E: Illegal use of the EPSR E: r0/a1: 0xba79ba76 r1/a2: 0xe000ed00 r2/a3: 0xffffffe8 E: r3/a4: 0x80014f6c r12/ip: 0x40460000 r14/lr: 0x3000ec71 E: xpsr: 0x60000000 E: Faulting instruction address (r15/pc): 0x00000000 E: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0 E: Current thread: 0x80002f70 (main) E: Halting system ``` **Environment (please complete the following information):** - OS: (e.g. Linux ) - Toolchain (e.g Zephyr SDK) - Commit SHA or Version used: zephyr-v3.2.0-2490-ga1b4896efe46
1.0
tests-ci : net: socket: register.tls test No Console Output(Timeout) - **Describe the bug** register.tls test is No Console Output(Timeout) on zephyr-v3.2.0-2490-ga1b4896efe46 on mimxrt1170_evk_cm7 see logs for details **To Reproduce** 1. ``` scripts/twister --device-testing --device-serial /dev/ttyACM0 -p mimxrt1170_evk_cm7 --sub-test net.socket ``` 2. See error **Expected behavior** test pass **Impact** **Logs and console output** ``` E: ***** USAGE FAULT ***** E: Illegal use of the EPSR E: r0/a1: 0xba79ba76 r1/a2: 0xe000ed00 r2/a3: 0xffffffe8 E: r3/a4: 0x80014f6c r12/ip: 0x40460000 r14/lr: 0x3000ec71 E: xpsr: 0x60000000 E: Faulting instruction address (r15/pc): 0x00000000 E: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0 E: Current thread: 0x80002f70 (main) E: Halting system ``` **Environment (please complete the following information):** - OS: (e.g. Linux ) - Toolchain (e.g Zephyr SDK) - Commit SHA or Version used: zephyr-v3.2.0-2490-ga1b4896efe46
non_priority
tests ci net socket register tls test no console output timeout describe the bug register tls test is no console output timeout on zephyr on evk see logs for details to reproduce scripts twister device testing device serial dev p evk sub test net socket see error expected behavior test pass impact logs and console output e usage fault e illegal use of the epsr e e ip lr e xpsr e faulting instruction address pc e zephyr fatal error cpu exception on cpu e current thread main e halting system environment please complete the following information os e g linux toolchain e g zephyr sdk commit sha or version used zephyr
0
92,712
10,762,091,878
IssuesEvent
2019-10-31 22:29:56
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
Can I use touch input with virtual keyboard for a flutter web app?
documentation severe: new feature ☸ platform-web
I tried to force open the virtual keyboard with this: ``` @override void initState() { SystemChannels.textInput.invokeMethod('TextInput.show'); super.initState(); } ``` and this works in a tablet phone app to force open the on screen keyboard, but for the same app running in chrome I couldn't bring open the virtual keyboard to type. I want to use flutter with a touch screen.
1.0
Can I use touch input with virtual keyboard for a flutter web app? - I tried to force open the virtual keyboard with this: ``` @override void initState() { SystemChannels.textInput.invokeMethod('TextInput.show'); super.initState(); } ``` and this works in a tablet phone app to force open the on screen keyboard, but for the same app running in chrome I couldn't bring open the virtual keyboard to type. I want to use flutter with a touch screen.
non_priority
can i use touch input with virtual keyboard for a flutter web app i tried to force open the virtual keyboard with this override void initstate systemchannels textinput invokemethod textinput show super initstate and this works in a tablet phone app to force open the on screen keyboard but for the same app running in chrome i couldn t bring open the virtual keyboard to type i want to use flutter with a touch screen
0
281,592
24,406,375,305
IssuesEvent
2022-10-05 08:22:32
woocommerce/woocommerce-android
https://api.github.com/repos/woocommerce/woocommerce-android
closed
[Screenshot Test] Get rid of in-app theme switch step.
type: task category: ui tests
Since the app theme is now implicitly defined in Fastfile [here](https://github.com/woocommerce/woocommerce-android/blob/a46b9984c1c502e029ec5f082d7fc6c3e1d3e779/fastlane/Fastfile#L637), additionally [selecting the theme via app UI](https://github.com/woocommerce/woocommerce-android/blob/a46b9984c1c502e029ec5f082d7fc6c3e1d3e779/WooCommerce/src/androidTest/kotlin/com/woocommerce/android/screenshots/ScreenshotTest.kt#L72) is a waste of runtime, so it should be removed.
1.0
[Screenshot Test] Get rid of in-app theme switch step. - Since the app theme is now implicitly defined in Fastfile [here](https://github.com/woocommerce/woocommerce-android/blob/a46b9984c1c502e029ec5f082d7fc6c3e1d3e779/fastlane/Fastfile#L637), additionally [selecting the theme via app UI](https://github.com/woocommerce/woocommerce-android/blob/a46b9984c1c502e029ec5f082d7fc6c3e1d3e779/WooCommerce/src/androidTest/kotlin/com/woocommerce/android/screenshots/ScreenshotTest.kt#L72) is a waste of runtime, so it should be removed.
non_priority
get rid of in app theme switch step since the app theme is now implicitly defined in fastfile additionally is a waste of runtime so it should be removed
0
65,621
19,596,906,067
IssuesEvent
2022-01-05 19:01:35
mautrix/telegram
https://api.github.com/repos/mautrix/telegram
closed
TGS to WebM conversion fails when specifying > 33 FPS
bug: defect
The TGS to WebM conversion method expects lottieconverter to generate a file ending in `00.png`: https://github.com/mautrix/telegram/blob/338a4d9761be565337e19739a953f4be25cccb63/mautrix_telegram/util/tgs_converter.py#L96 However, lottieconverter may generate files with more digits if the total amount of frames would exceed 99. If I get the Telegram docs right, a Sticker may have up to 3 seconds of animation, so to always stay below the "100 frame limit" one can at most specify 33 FPS for the conversion rate. I don't know how desirable it actually is to convert stickers with 60FPS, but anyone trying that is currently confronted with a somewhat confusing `FileNotFoundError`.
1.0
TGS to WebM conversion fails when specifying > 33 FPS - The TGS to WebM conversion method expects lottieconverter to generate a file ending in `00.png`: https://github.com/mautrix/telegram/blob/338a4d9761be565337e19739a953f4be25cccb63/mautrix_telegram/util/tgs_converter.py#L96 However, lottieconverter may generate files with more digits if the total amount of frames would exceed 99. If I get the Telegram docs right, a Sticker may have up to 3 seconds of animation, so to always stay below the "100 frame limit" one can at most specify 33 FPS for the conversion rate. I don't know how desirable it actually is to convert stickers with 60FPS, but anyone trying that is currently confronted with a somewhat confusing `FileNotFoundError`.
non_priority
tgs to webm conversion fails when specifying fps the tgs to webm conversion method expects lottieconverter to generate a file ending in png however lottieconverter may generate files with more digits if the total amount of frames would exceed if i get the telegram docs right a sticker may have up to seconds of animation so to always stay below the frame limit one can at most specify fps for the conversion rate i don t know how desirable it actually is to convert stickers with but anyone trying that is currently confronted with a somewhat confusing filenotfounderror
0
376,804
26,218,100,476
IssuesEvent
2023-01-04 12:44:41
opentap/opentap
https://api.github.com/repos/opentap/opentap
opened
Document how to make a bundle-class package
documentation
Forum post: https://forum.opentap.io/t/how-to-bundle-packages/984 How to create a bundle package? Here is an example package xml file. ```xml <?xml version="1.0" encoding="UTF-8"?> <Package Name="TestPackageBundle" xmlns="http://opentap.io/schemas/package" InfoLink="" Version="0.1.0-alpha" Class="bundle" FileType="tappackage" OS="Windows,Linux"> <Dependencies> <PackageDependency Package="Package1" Version="^0.1.0-alpha" /> <PackageDependency Package="Package2" Version="^0.1.0-alpha" /> <PackageDependency Package="Package3" Version="^0.1.0-alpha" /> </Dependencies> </Package> ``` Add: - How to build it - How should version numbers be managed?
1.0
Document how to make a bundle-class package - Forum post: https://forum.opentap.io/t/how-to-bundle-packages/984 How to create a bundle package? Here is an example package xml file. ```xml <?xml version="1.0" encoding="UTF-8"?> <Package Name="TestPackageBundle" xmlns="http://opentap.io/schemas/package" InfoLink="" Version="0.1.0-alpha" Class="bundle" FileType="tappackage" OS="Windows,Linux"> <Dependencies> <PackageDependency Package="Package1" Version="^0.1.0-alpha" /> <PackageDependency Package="Package2" Version="^0.1.0-alpha" /> <PackageDependency Package="Package3" Version="^0.1.0-alpha" /> </Dependencies> </Package> ``` Add: - How to build it - How should version numbers be managed?
non_priority
document how to make a bundle class package forum post how to create a bundle package here is an example package xml file xml add how to build it how should version numbers be managed
0
153,218
13,497,171,046
IssuesEvent
2020-09-12 06:29:14
SoMind/dtlab-scala-alligator
https://api.github.com/repos/SoMind/dtlab-scala-alligator
closed
API Docs
documentation
The API dev landscape looks worse than it did... no decent integrated swagger clients + docs. Will probably create a PDF doc with cURL examples only just to be spiteful.
1.0
API Docs - The API dev landscape looks worse than it did... no decent integrated swagger clients + docs. Will probably create a PDF doc with cURL examples only just to be spiteful.
non_priority
api docs the api dev landscape looks worse than it did no decent integrated swagger clients docs will probably create a pdf doc with curl examples only just to be spiteful
0
178,959
14,686,040,265
IssuesEvent
2021-01-01 12:50:06
m-tosch/mu
https://api.github.com/repos/m-tosch/mu
closed
include free functions in mu namespace in doc
documentation
Vector, Vector2D, Vector3D and Matrix the classes show up in doxygen, the free functions inside the header currently do not. find out how to add them
1.0
include free functions in mu namespace in doc - Vector, Vector2D, Vector3D and Matrix the classes show up in doxygen, the free functions inside the header currently do not. find out how to add them
non_priority
include free functions in mu namespace in doc vector and matrix the classes show up in doxygen the free functions inside the header currently do not find out how to add them
0
317,076
23,663,346,730
IssuesEvent
2022-08-26 17:55:15
ioBroker/ioBroker.js-controller
https://api.github.com/repos/ioBroker/ioBroker.js-controller
closed
Keep /doc in Repository up to date
documentation :memo:
Or is this still in use anywhere? Last change 13 months ago. https://github.com/ioBroker/ioBroker.js-controller/tree/master/doc
1.0
Keep /doc in Repository up to date - Or is this still in use anywhere? Last change 13 months ago. https://github.com/ioBroker/ioBroker.js-controller/tree/master/doc
non_priority
keep doc in repository up to date or is this still in use anywhere last change months ago
0
32,264
13,784,731,008
IssuesEvent
2020-10-08 21:23:22
microsoft/vscode-cpptools
https://api.github.com/repos/microsoft/vscode-cpptools
closed
Configuration issue
Feature: Configuration Language Service more info needed
Hi, I'm having a problem, would you please help to check my log? Thanks! ``` -------- Diagnostics - 2/27/2020, 6:56:25 PM Version: 0.26.3 Current Configuration: { "name": "Mac", "includePath": [ "${workspaceFolder}/**" ], "defines": [], "macFrameworkPath": [ "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" ], "compilerPath": "/usr/bin/clang", "cStandard": "c11", "cppStandard": "c++17", "intelliSenseMode": "", "configurationProvider": "vector-of-bool.cmake-tools", "compilerArgs": [], "browse": { "path": [ "${workspaceFolder}/**" ], "limitSymbolsToIncludedHeaders": true } } Translation Unit Mappings: [ /Users/ModelMeshComputer.cpp ]: Translation Unit Configurations: [ /Users/ModelMeshComputer.cpp ]: Process ID: 92664 Memory Usage: 556 MB Includes: /Users/GfxCore/GL /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1 /usr/local/include /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include Frameworks: /System/Library/Frameworks /Library/Frameworks Defines: BOOST_NO_AUTO_PTR BOOST_NO_CXX14_DECLTYPE_AUTO NDEBUG NDEBUG Standard Version: c++14 IntelliSense Mode: clang-x64 Other Flags: --clang --clang_version=50000 Total Memory Usage: 556 MB ``` _Originally posted by @flysumo in https://github.com/microsoft/vscode-cpptools/issues/4859#issuecomment-592288622_
1.0
Configuration issue - Hi, I'm having a problem, would you please help to check my log? Thanks! ``` -------- Diagnostics - 2/27/2020, 6:56:25 PM Version: 0.26.3 Current Configuration: { "name": "Mac", "includePath": [ "${workspaceFolder}/**" ], "defines": [], "macFrameworkPath": [ "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" ], "compilerPath": "/usr/bin/clang", "cStandard": "c11", "cppStandard": "c++17", "intelliSenseMode": "", "configurationProvider": "vector-of-bool.cmake-tools", "compilerArgs": [], "browse": { "path": [ "${workspaceFolder}/**" ], "limitSymbolsToIncludedHeaders": true } } Translation Unit Mappings: [ /Users/ModelMeshComputer.cpp ]: Translation Unit Configurations: [ /Users/ModelMeshComputer.cpp ]: Process ID: 92664 Memory Usage: 556 MB Includes: /Users/GfxCore/GL /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1 /usr/local/include /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include Frameworks: /System/Library/Frameworks /Library/Frameworks Defines: BOOST_NO_AUTO_PTR BOOST_NO_CXX14_DECLTYPE_AUTO NDEBUG NDEBUG Standard Version: c++14 IntelliSense Mode: clang-x64 Other Flags: --clang --clang_version=50000 Total Memory Usage: 556 MB ``` _Originally posted by @flysumo in https://github.com/microsoft/vscode-cpptools/issues/4859#issuecomment-592288622_
non_priority
configuration issue hi i m having a problem would you please help to check my log thanks diagnostics pm version current configuration name mac includepath workspacefolder defines macframeworkpath applications xcode app contents developer platforms macosx platform developer sdks macosx sdk system library frameworks compilerpath usr bin clang cstandard cppstandard c intellisensemode configurationprovider vector of bool cmake tools compilerargs browse path workspacefolder limitsymbolstoincludedheaders true translation unit mappings translation unit configurations process id memory usage mb includes users gfxcore gl applications xcode app contents developer toolchains xcodedefault xctoolchain usr include c usr local include applications xcode app contents developer toolchains xcodedefault xctoolchain usr lib clang include applications xcode app contents developer toolchains xcodedefault xctoolchain usr include frameworks system library frameworks library frameworks defines boost no auto ptr boost no decltype auto ndebug ndebug standard version c intellisense mode clang other flags clang clang version total memory usage mb originally posted by flysumo in
0
344,847
24,830,691,630
IssuesEvent
2022-10-26 02:59:53
ispc-programador2022/UYVV4
https://api.github.com/repos/ispc-programador2022/UYVV4
closed
US#1TK#5 Definir la pagina web del scrapping de datos
documentation US#1
**Definir las paginas para el scrapping en paginas sobre desastres naturales** - [x] buscar paginas en español - [x] bucar paginas en ingles
1.0
US#1TK#5 Definir la pagina web del scrapping de datos - **Definir las paginas para el scrapping en paginas sobre desastres naturales** - [x] buscar paginas en español - [x] bucar paginas en ingles
non_priority
us definir la pagina web del scrapping de datos definir las paginas para el scrapping en paginas sobre desastres naturales buscar paginas en español bucar paginas en ingles
0
195,543
22,341,192,381
IssuesEvent
2022-06-15 01:05:16
Alanwang2015/XBot
https://api.github.com/repos/Alanwang2015/XBot
closed
CVE-2019-20330 (High) detected in jackson-databind-2.9.10.jar - autoclosed
security vulnerability
## CVE-2019-20330 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.10.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.10/jackson-databind-2.9.10.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.9.10.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/Alanwang2015/XBot/commit/be8cf856bee2127c2220506a5347ebe0c3221d4f">be8cf856bee2127c2220506a5347ebe0c3221d4f</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> FasterXML jackson-databind 2.x before 2.9.10.2 lacks certain net.sf.ehcache blocking. <p>Publish Date: 2020-01-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-20330>CVE-2019-20330</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/FasterXML/jackson-databind/issues/2526">https://github.com/FasterXML/jackson-databind/issues/2526</a></p> <p>Release Date: 2020-01-03</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.7.9.7,2.8.11.5,2.9.10.2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-20330 (High) detected in jackson-databind-2.9.10.jar - autoclosed - ## CVE-2019-20330 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.10.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.10/jackson-databind-2.9.10.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.9.10.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/Alanwang2015/XBot/commit/be8cf856bee2127c2220506a5347ebe0c3221d4f">be8cf856bee2127c2220506a5347ebe0c3221d4f</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> FasterXML jackson-databind 2.x before 2.9.10.2 lacks certain net.sf.ehcache blocking. <p>Publish Date: 2020-01-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-20330>CVE-2019-20330</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/FasterXML/jackson-databind/issues/2526">https://github.com/FasterXML/jackson-databind/issues/2526</a></p> <p>Release Date: 2020-01-03</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.7.9.7,2.8.11.5,2.9.10.2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve high detected in jackson databind jar autoclosed cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file pom xml path to vulnerable library canner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy x jackson databind jar vulnerable library found in head commit a href found in base branch master vulnerability details fasterxml jackson databind x before lacks certain net sf ehcache blocking publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com fasterxml jackson core jackson databind step up your open source security game with whitesource
0
2,106
23,488,762,145
IssuesEvent
2022-08-17 16:32:23
wklumpen/equity-pulse-web
https://api.github.com/repos/wklumpen/equity-pulse-web
closed
Add DC reliability data to download page [1h]
data general reliability
We added DC reliability data to the story page, but the download page still says that there isn't reliability data avail for DC
True
Add DC reliability data to download page [1h] - We added DC reliability data to the story page, but the download page still says that there isn't reliability data avail for DC
non_priority
add dc reliability data to download page we added dc reliability data to the story page but the download page still says that there isn t reliability data avail for dc
0
260,386
19,666,731,572
IssuesEvent
2022-01-10 23:44:02
imAsparky/django-cookiecutter
https://api.github.com/repos/imAsparky/django-cookiecutter
closed
[BUG]:Tutorial Create Django Project docs errors
bug documentation
**Describe the bug** The follow documentation errors were identified: - In the readthedocs menu bar, in the Tutorials drop down, the Create Django Project tutorial is called Pre-requisites. The lead Title is missing from the document. - In the Before Initial Migration section, the link to the How-to Custom User is resulting in a 404 error. - In the README, the link to the How-to Custom User is resulting in a 404 error. - Improve troubleshooting section.
1.0
[BUG]:Tutorial Create Django Project docs errors - **Describe the bug** The follow documentation errors were identified: - In the readthedocs menu bar, in the Tutorials drop down, the Create Django Project tutorial is called Pre-requisites. The lead Title is missing from the document. - In the Before Initial Migration section, the link to the How-to Custom User is resulting in a 404 error. - In the README, the link to the How-to Custom User is resulting in a 404 error. - Improve troubleshooting section.
non_priority
tutorial create django project docs errors describe the bug the follow documentation errors were identified in the readthedocs menu bar in the tutorials drop down the create django project tutorial is called pre requisites the lead title is missing from the document in the before initial migration section the link to the how to custom user is resulting in a error in the readme the link to the how to custom user is resulting in a error improve troubleshooting section
0
426,701
29,580,656,195
IssuesEvent
2023-06-07 05:21:51
Chiragh-itpath/keeper
https://api.github.com/repos/Chiragh-itpath/keeper
closed
Keeper Backend Project-Structure
documentation enhancement
Will Create N-tier architecture create different class library for common, repos and service Move enums into keeper.common and repo into Keeper.repos and services into Keeper.services
1.0
Keeper Backend Project-Structure - Will Create N-tier architecture create different class library for common, repos and service Move enums into keeper.common and repo into Keeper.repos and services into Keeper.services
non_priority
keeper backend project structure will create n tier architecture create different class library for common repos and service move enums into keeper common and repo into keeper repos and services into keeper services
0
66,380
27,433,045,557
IssuesEvent
2023-03-02 04:02:44
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
Higher frequency / fidelity of viseme events.
cognitive-services/svc triaged cxp product-question speech-service/subsvc Pri2 awaiting-customer-response
The text-to-visemes functionality is quite accurate for the first 1-2 seconds and then decreases significantly in quality. Viseme events then only occur 2-3 times per second. This results in very low quality blendshapes animation on a 3D character for example. Is there any way to increase the quality of viseme data? [VisemeDataExample.pdf](https://github.com/MicrosoftDocs/azure-docs/files/10833780/VisemeDataExample.pdf) --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.* * ID: 8a828b42-9517-1ff8-c98c-1c245a07d340 * Version Independent ID: d4962c85-a80c-eaab-90c4-8c8a6a1fb8e7 * Content: [Get facial position with viseme - Azure Cognitive Services](https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-speech-synthesis-viseme?tabs=visemeid) * Content Source: [articles/cognitive-services/Speech-Service/how-to-speech-synthesis-viseme.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/cognitive-services/Speech-Service/how-to-speech-synthesis-viseme.md) * Service: **cognitive-services** * Sub-service: **speech-service** * GitHub Login: @yulin-li * Microsoft Alias: **yulili**
2.0
Higher frequency / fidelity of viseme events. - The text-to-visemes functionality is quite accurate for the first 1-2 seconds and then decreases significantly in quality. Viseme events then only occur 2-3 times per second. This results in very low quality blendshapes animation on a 3D character for example. Is there any way to increase the quality of viseme data? [VisemeDataExample.pdf](https://github.com/MicrosoftDocs/azure-docs/files/10833780/VisemeDataExample.pdf) --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.* * ID: 8a828b42-9517-1ff8-c98c-1c245a07d340 * Version Independent ID: d4962c85-a80c-eaab-90c4-8c8a6a1fb8e7 * Content: [Get facial position with viseme - Azure Cognitive Services](https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-speech-synthesis-viseme?tabs=visemeid) * Content Source: [articles/cognitive-services/Speech-Service/how-to-speech-synthesis-viseme.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/cognitive-services/Speech-Service/how-to-speech-synthesis-viseme.md) * Service: **cognitive-services** * Sub-service: **speech-service** * GitHub Login: @yulin-li * Microsoft Alias: **yulili**
non_priority
higher frequency fidelity of viseme events the text to visemes functionality is quite accurate for the first seconds and then decreases significantly in quality viseme events then only occur times per second this results in very low quality blendshapes animation on a character for example is there any way to increase the quality of viseme data document details ⚠ do not edit this section it is required for learn microsoft com ➟ github issue linking id version independent id eaab content content source service cognitive services sub service speech service github login yulin li microsoft alias yulili
0
70,202
15,055,958,698
IssuesEvent
2021-02-03 19:30:26
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
[Security Solution] Event/Alert Details JSON View shows arrays as [object Object]
Team: SecuritySolution Team:Threat Hunting bug
The Event/Alert Details flyout show arrays as `[object Object]` within the JSON View. Also, keys are not alphabetized which makes hunting down a particular key a little difficult. Affects Kibana 7.11+ <p align="center"> <img width="300" src="https://user-images.githubusercontent.com/2946766/106781059-ddfac180-6605-11eb-9176-7703079daca1.png" /><img width="500" src="https://user-images.githubusercontent.com/2946766/106798497-4a33f000-661b-11eb-952a-f14eb0d91d0f.png" /> </p>
True
[Security Solution] Event/Alert Details JSON View shows arrays as [object Object] - The Event/Alert Details flyout show arrays as `[object Object]` within the JSON View. Also, keys are not alphabetized which makes hunting down a particular key a little difficult. Affects Kibana 7.11+ <p align="center"> <img width="300" src="https://user-images.githubusercontent.com/2946766/106781059-ddfac180-6605-11eb-9176-7703079daca1.png" /><img width="500" src="https://user-images.githubusercontent.com/2946766/106798497-4a33f000-661b-11eb-952a-f14eb0d91d0f.png" /> </p>
non_priority
event alert details json view shows arrays as the event alert details flyout show arrays as within the json view also keys are not alphabetized which makes hunting down a particular key a little difficult affects kibana
0
93,370
15,886,006,528
IssuesEvent
2021-04-09 21:39:09
garymsegal-ws-org/AltoroJ
https://api.github.com/repos/garymsegal-ws-org/AltoroJ
opened
CVE-2020-7656 (Medium) detected in jquery-1.8.0.min.js
security vulnerability
## CVE-2020-7656 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.8.0.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.0/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.0/jquery.min.js</a></p> <p>Path to dependency file: AltoroJ/AltoroJ 3.1.1/WebContent/swagger/index.html</p> <p>Path to vulnerable library: AltoroJ/AltoroJ 3.1.1/WebContent/swagger/lib/jquery-1.8.0.min.js,AltoroJ/AltoroJ 3.1.1/WebContent/swagger/lib/jquery-1.8.0.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-1.8.0.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/garymsegal-ws-org/AltoroJ/commit/5698d393657db2142bcad054a2ac59fee7ae079b">5698d393657db2142bcad054a2ac59fee7ae079b</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove "<script>" HTML tags that contain a whitespace character, i.e: "</script >", which results in the enclosed script logic to be executed. <p>Publish Date: 2020-05-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656>CVE-2020-7656</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-q4m3-2j7h-f7xw">https://github.com/advisories/GHSA-q4m3-2j7h-f7xw</a></p> <p>Release Date: 2020-05-28</p> <p>Fix Resolution: jquery - 1.9.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.8.0","packageFilePaths":["/AltoroJ 3.1.1/WebContent/swagger/index.html"],"isTransitiveDependency":false,"dependencyTree":"jquery:1.8.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"jquery - 1.9.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-7656","vulnerabilityDetails":"jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove \"\u003cscript\u003e\" HTML tags that contain a whitespace character, i.e: \"\u003c/script \u003e\", which results in the enclosed script logic to be executed.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
True
CVE-2020-7656 (Medium) detected in jquery-1.8.0.min.js - ## CVE-2020-7656 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.8.0.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.0/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.0/jquery.min.js</a></p> <p>Path to dependency file: AltoroJ/AltoroJ 3.1.1/WebContent/swagger/index.html</p> <p>Path to vulnerable library: AltoroJ/AltoroJ 3.1.1/WebContent/swagger/lib/jquery-1.8.0.min.js,AltoroJ/AltoroJ 3.1.1/WebContent/swagger/lib/jquery-1.8.0.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-1.8.0.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/garymsegal-ws-org/AltoroJ/commit/5698d393657db2142bcad054a2ac59fee7ae079b">5698d393657db2142bcad054a2ac59fee7ae079b</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove "<script>" HTML tags that contain a whitespace character, i.e: "</script >", which results in the enclosed script logic to be executed. <p>Publish Date: 2020-05-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656>CVE-2020-7656</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-q4m3-2j7h-f7xw">https://github.com/advisories/GHSA-q4m3-2j7h-f7xw</a></p> <p>Release Date: 2020-05-28</p> <p>Fix Resolution: jquery - 1.9.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.8.0","packageFilePaths":["/AltoroJ 3.1.1/WebContent/swagger/index.html"],"isTransitiveDependency":false,"dependencyTree":"jquery:1.8.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"jquery - 1.9.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-7656","vulnerabilityDetails":"jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove \"\u003cscript\u003e\" HTML tags that contain a whitespace character, i.e: \"\u003c/script \u003e\", which results in the enclosed script logic to be executed.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
non_priority
cve medium detected in jquery min js cve medium severity vulnerability vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file altoroj altoroj webcontent swagger index html path to vulnerable library altoroj altoroj webcontent swagger lib jquery min js altoroj altoroj webcontent swagger lib jquery min js dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch master vulnerability details jquery prior to allows cross site scripting attacks via the load method the load method fails to recognize and remove html tags that contain a whitespace character i e which results in the enclosed script logic to be executed publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree jquery isminimumfixversionavailable true minimumfixversion jquery basebranches vulnerabilityidentifier cve vulnerabilitydetails jquery prior to allows cross site scripting attacks via the load method the load method fails to recognize and remove html tags that contain a whitespace character i e script which results in the enclosed script logic to be executed vulnerabilityurl
0
16,083
5,206,921,703
IssuesEvent
2017-01-24 21:58:17
mozilla/web-ext
https://api.github.com/repos/mozilla/web-ext
closed
Don't fail the build when a commit message is too long
code quality
### Is this a bug or feature request? bug ### What is the current behavior? If the commit message is too long, the changelog linter will fail the build ### What is the expected or desired behavior? I know that the changelog generator truncates commit messages but that's okay, it shouldn't cause a build failure. We hand edit the changelog after auto-generation anyway. This is a problem mainly in greenkeeper pull requests because commit messages can get pretty long and it's out of our control. See https://github.com/mozilla/web-ext/pull/763
1.0
Don't fail the build when a commit message is too long - ### Is this a bug or feature request? bug ### What is the current behavior? If the commit message is too long, the changelog linter will fail the build ### What is the expected or desired behavior? I know that the changelog generator truncates commit messages but that's okay, it shouldn't cause a build failure. We hand edit the changelog after auto-generation anyway. This is a problem mainly in greenkeeper pull requests because commit messages can get pretty long and it's out of our control. See https://github.com/mozilla/web-ext/pull/763
non_priority
don t fail the build when a commit message is too long is this a bug or feature request bug what is the current behavior if the commit message is too long the changelog linter will fail the build what is the expected or desired behavior i know that the changelog generator truncates commit messages but that s okay it shouldn t cause a build failure we hand edit the changelog after auto generation anyway this is a problem mainly in greenkeeper pull requests because commit messages can get pretty long and it s out of our control see
0
86,840
10,519,212,588
IssuesEvent
2019-09-29 16:22:44
amethyst/amethyst
https://api.github.com/repos/amethyst/amethyst
closed
[MAINTENANCE] Wiki page on "Configuration Design" out of date
pri: normal stale status: discussing team: documentation type: maintenance
## Description Configuration is, broadly speaking, no longer done with YAML, but with RON. This page must either be deleted or changed to reflect that. [https://github.com/amethyst/amethyst/wiki/Configuration-Design]()
1.0
[MAINTENANCE] Wiki page on "Configuration Design" out of date - ## Description Configuration is, broadly speaking, no longer done with YAML, but with RON. This page must either be deleted or changed to reflect that. [https://github.com/amethyst/amethyst/wiki/Configuration-Design]()
non_priority
wiki page on configuration design out of date description configuration is broadly speaking no longer done with yaml but with ron this page must either be deleted or changed to reflect that
0
75,294
20,752,713,546
IssuesEvent
2022-03-15 09:17:21
homuler/MediaPipeUnityPlugin
https://api.github.com/repos/homuler/MediaPipeUnityPlugin
closed
compling error when building on windows10
type:build/install
### Plugin Version or Commit ID v0.8.3 ### Unity Version 2020.3.30f1 ### Your Host OS windows 10 ### Target Platform UnityEditor ### [Windows Only] Visual Studio C++ and Windows SDK Version VC++:14.29.30133 WinSDK:10.0.19041.0 ### [Linux Only] GCC/G++ and GLIBC Version _No response_ ### [Android Only] Android Build Tools and NDK Version _No response_ ### [iOS Only] XCode Version _No response_ ### Command Sequences set path bazel:4.2.1 set env about bazel_vc bazel_vs modify build.py and workspace about opencv path and _bazel run cmd in build.py folder ### Log ERROR: D:/bazel/_bzl/gfczg2k6/external/com_google_mediapipe/mediapipe/modules/pose_landmark/BUILD:81:26: Compiling external/com_google_mediapipe/mediapipe/modules/pose_landmark/pose_landmarks_and_segmentation_inverse_projection_linked.cc failed: (Exit 2): cl.exe failed: error executing command cd D:/bazel/_bzl/gfczg2k6/execroot/mediapipe_api SET INCLUDE=D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt SET PATH=D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;;C:\Windows\system32 SET PROCESSOR_ARCHITECTURE=AMD64 SET PROCESSOR_IDENTIFIER=AMD64 Family 23 Model 113 Stepping 0, AuthenticAMD SET PROCESSOR_LEVEL=23 SET PROCESSOR_REVISION=7100 SET PWD=/proc/self/cwd SET PYTHON_BIN_PATH=C://Users//pq//AppData//Local//Programs//Python//Python39//python.exe SET ProgramData=C:\ProgramData SET RUNFILES_MANIFEST_ONLY=1 SET TEMP=C:\Users\pq\AppData\Local\Temp SET TMP=C:\Users\pq\AppData\Local\Temp D:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/HostX64/x64/cl.exe @bazel-out/x64_windows-opt/bin/external/com_google_mediapipe/mediapipe/modules/pose_landmark/_objs/pose_landmarks_and_segmentation_inverse_projection/pose_landmarks_and_segmentation_inverse_projection_linked.obj.params Execution platform: @local_execution_config_platform//:platform ### Additional Context _No response_
1.0
compling error when building on windows10 - ### Plugin Version or Commit ID v0.8.3 ### Unity Version 2020.3.30f1 ### Your Host OS windows 10 ### Target Platform UnityEditor ### [Windows Only] Visual Studio C++ and Windows SDK Version VC++:14.29.30133 WinSDK:10.0.19041.0 ### [Linux Only] GCC/G++ and GLIBC Version _No response_ ### [Android Only] Android Build Tools and NDK Version _No response_ ### [iOS Only] XCode Version _No response_ ### Command Sequences set path bazel:4.2.1 set env about bazel_vc bazel_vs modify build.py and workspace about opencv path and _bazel run cmd in build.py folder ### Log ERROR: D:/bazel/_bzl/gfczg2k6/external/com_google_mediapipe/mediapipe/modules/pose_landmark/BUILD:81:26: Compiling external/com_google_mediapipe/mediapipe/modules/pose_landmark/pose_landmarks_and_segmentation_inverse_projection_linked.cc failed: (Exit 2): cl.exe failed: error executing command cd D:/bazel/_bzl/gfczg2k6/execroot/mediapipe_api SET INCLUDE=D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt SET PATH=D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;D:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;;C:\Windows\system32 SET PROCESSOR_ARCHITECTURE=AMD64 SET PROCESSOR_IDENTIFIER=AMD64 Family 23 Model 113 Stepping 0, AuthenticAMD SET PROCESSOR_LEVEL=23 SET PROCESSOR_REVISION=7100 SET PWD=/proc/self/cwd SET PYTHON_BIN_PATH=C://Users//pq//AppData//Local//Programs//Python//Python39//python.exe SET ProgramData=C:\ProgramData SET RUNFILES_MANIFEST_ONLY=1 SET TEMP=C:\Users\pq\AppData\Local\Temp SET TMP=C:\Users\pq\AppData\Local\Temp D:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/HostX64/x64/cl.exe @bazel-out/x64_windows-opt/bin/external/com_google_mediapipe/mediapipe/modules/pose_landmark/_objs/pose_landmarks_and_segmentation_inverse_projection/pose_landmarks_and_segmentation_inverse_projection_linked.obj.params Execution platform: @local_execution_config_platform//:platform ### Additional Context _No response_
non_priority
compling error when building on plugin version or commit id unity version your host os windows target platform unityeditor visual studio c and windows sdk version vc winsdk gcc g and glibc version no response android build tools and ndk version no response xcode version no response command sequences set path bazel set env about bazel vc bazel vs modify build py and workspace about opencv path and bazel run cmd in build py folder log error d bazel bzl external com google mediapipe mediapipe modules pose landmark build compiling external com google mediapipe mediapipe modules pose landmark pose landmarks and segmentation inverse projection linked cc failed exit cl exe failed error executing command cd d bazel bzl execroot mediapipe api set include d program files microsoft visual studio buildtools vc tools msvc include c program files windows kits netfxsdk include um c program files windows kits include ucrt c program files windows kits include shared c program files windows kits include um c program files windows kits include winrt c program files windows kits include cppwinrt set path d program files microsoft visual studio buildtools vc tools msvc bin d program files microsoft visual studio buildtools msbuild current bin roslyn c program files microsoft sdks windows bin netfx tools c program files windows kits bin c program files windows kits bin d program files microsoft visual studio buildtools msbuild current bin c windows microsoft net d program files microsoft visual studio buildtools ide d program files microsoft visual studio buildtools tools c windows set processor architecture set processor identifier family model stepping authenticamd set processor level set processor revision set pwd proc self cwd set python bin path c users pq appdata local programs python python exe set programdata c programdata set runfiles manifest only set temp c users pq appdata local temp set tmp c users pq appdata local temp d program files microsoft visual studio buildtools vc tools msvc bin cl exe bazel out windows opt bin external com google mediapipe mediapipe modules pose landmark objs pose landmarks and segmentation inverse projection pose landmarks and segmentation inverse projection linked obj params execution platform local execution config platform platform additional context no response
0
102,780
16,583,878,391
IssuesEvent
2021-05-31 15:29:47
ilan-WS/m3
https://api.github.com/repos/ilan-WS/m3
opened
CVE-2021-23362 (Medium) detected in hosted-git-info-2.7.1.tgz
security vulnerability
## CVE-2021-23362 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>hosted-git-info-2.7.1.tgz</b></p></summary> <p>Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab</p> <p>Library home page: <a href="https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz">https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz</a></p> <p>Path to dependency file: m3/src/ctl/ui/package.json</p> <p>Path to vulnerable library: m3/src/ctl/ui/node_modules/hosted-git-info</p> <p> Dependency Hierarchy: - react-scripts-1.0.10.tgz (Root Library) - sw-precache-webpack-plugin-0.11.3.tgz - sw-precache-5.2.1.tgz - meow-3.7.0.tgz - normalize-package-data-2.5.0.tgz - :x: **hosted-git-info-2.7.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/ilan-WS/m3/commit/a62d2ead44380e2c1668bbbf026d5385b98d56ec">a62d2ead44380e2c1668bbbf026d5385b98d56ec</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package hosted-git-info before 3.0.8 are vulnerable to Regular Expression Denial of Service (ReDoS) via regular expression shortcutMatch in the fromUrl function in index.js. The affected regular expression exhibits polynomial worst-case time complexity. <p>Publish Date: 2021-03-23 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23362>CVE-2021-23362</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-43f8-2h32-f4cj">https://github.com/advisories/GHSA-43f8-2h32-f4cj</a></p> <p>Release Date: 2021-03-23</p> <p>Fix Resolution: hosted-git-info - 2.8.9,3.0.8</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"hosted-git-info","packageVersion":"2.7.1","packageFilePaths":["/src/ctl/ui/package.json"],"isTransitiveDependency":true,"dependencyTree":"react-scripts:1.0.10;sw-precache-webpack-plugin:0.11.3;sw-precache:5.2.1;meow:3.7.0;normalize-package-data:2.5.0;hosted-git-info:2.7.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"hosted-git-info - 2.8.9,3.0.8"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23362","vulnerabilityDetails":"The package hosted-git-info before 3.0.8 are vulnerable to Regular Expression Denial of Service (ReDoS) via regular expression shortcutMatch in the fromUrl function in index.js. The affected regular expression exhibits polynomial worst-case time complexity.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23362","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2021-23362 (Medium) detected in hosted-git-info-2.7.1.tgz - ## CVE-2021-23362 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>hosted-git-info-2.7.1.tgz</b></p></summary> <p>Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab</p> <p>Library home page: <a href="https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz">https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz</a></p> <p>Path to dependency file: m3/src/ctl/ui/package.json</p> <p>Path to vulnerable library: m3/src/ctl/ui/node_modules/hosted-git-info</p> <p> Dependency Hierarchy: - react-scripts-1.0.10.tgz (Root Library) - sw-precache-webpack-plugin-0.11.3.tgz - sw-precache-5.2.1.tgz - meow-3.7.0.tgz - normalize-package-data-2.5.0.tgz - :x: **hosted-git-info-2.7.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/ilan-WS/m3/commit/a62d2ead44380e2c1668bbbf026d5385b98d56ec">a62d2ead44380e2c1668bbbf026d5385b98d56ec</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package hosted-git-info before 3.0.8 are vulnerable to Regular Expression Denial of Service (ReDoS) via regular expression shortcutMatch in the fromUrl function in index.js. The affected regular expression exhibits polynomial worst-case time complexity. <p>Publish Date: 2021-03-23 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23362>CVE-2021-23362</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-43f8-2h32-f4cj">https://github.com/advisories/GHSA-43f8-2h32-f4cj</a></p> <p>Release Date: 2021-03-23</p> <p>Fix Resolution: hosted-git-info - 2.8.9,3.0.8</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"hosted-git-info","packageVersion":"2.7.1","packageFilePaths":["/src/ctl/ui/package.json"],"isTransitiveDependency":true,"dependencyTree":"react-scripts:1.0.10;sw-precache-webpack-plugin:0.11.3;sw-precache:5.2.1;meow:3.7.0;normalize-package-data:2.5.0;hosted-git-info:2.7.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"hosted-git-info - 2.8.9,3.0.8"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23362","vulnerabilityDetails":"The package hosted-git-info before 3.0.8 are vulnerable to Regular Expression Denial of Service (ReDoS) via regular expression shortcutMatch in the fromUrl function in index.js. The affected regular expression exhibits polynomial worst-case time complexity.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23362","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_priority
cve medium detected in hosted git info tgz cve medium severity vulnerability vulnerable library hosted git info tgz provides metadata and conversions from repository urls for github bitbucket and gitlab library home page a href path to dependency file src ctl ui package json path to vulnerable library src ctl ui node modules hosted git info dependency hierarchy react scripts tgz root library sw precache webpack plugin tgz sw precache tgz meow tgz normalize package data tgz x hosted git info tgz vulnerable library found in head commit a href found in base branch master vulnerability details the package hosted git info before are vulnerable to regular expression denial of service redos via regular expression shortcutmatch in the fromurl function in index js the affected regular expression exhibits polynomial worst case time complexity publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution hosted git info isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree react scripts sw precache webpack plugin sw precache meow normalize package data hosted git info isminimumfixversionavailable true minimumfixversion hosted git info basebranches vulnerabilityidentifier cve vulnerabilitydetails the package hosted git info before are vulnerable to regular expression denial of service redos via regular expression shortcutmatch in the fromurl function in index js the affected regular expression exhibits polynomial worst case time complexity vulnerabilityurl
0
231,445
18,767,802,485
IssuesEvent
2021-11-06 08:31:23
pingcap/ticdc
https://api.github.com/repos/pingcap/ticdc
closed
tar: tikv3.log: file changed as we read it
component/test area/ticdc
### Which jobs are flaking? cdc_ghpr_kafka_integration_test ### Which test(s) are flaking? changefeed_reconstruct ### Jenkins logs or GitHub Actions link ```log [2021-11-05T08:15:08.169Z] + for log in '`ls /tmp/tidb_cdc_test/*/*.log`' [2021-11-05T08:15:08.169Z] ++ dirname /tmp/tidb_cdc_test/changefeed_reconstruct/tikv3.log [2021-11-05T08:15:08.169Z] + dirname=/tmp/tidb_cdc_test/changefeed_reconstruct [2021-11-05T08:15:08.169Z] ++ basename /tmp/tidb_cdc_test/changefeed_reconstruct/tikv3.log [2021-11-05T08:15:08.169Z] + basename=tikv3.log [2021-11-05T08:15:08.169Z] + mkdir -p log/tmp/tidb_cdc_test/changefeed_reconstruct [2021-11-05T08:15:08.169Z] + tar zcvf log/tmp/tidb_cdc_test/changefeed_reconstruct/tikv3.log.tgz -C /tmp/tidb_cdc_test/changefeed_reconstruct tikv3.log [2021-11-05T08:15:08.169Z] tikv3.log [2021-11-05T08:15:08.169Z] tar: tikv3.log: file changed as we read it ``` https://ci2.pingcap.net/blue/organizations/jenkins/cdc_ghpr_kafka_integration_test/detail/cdc_ghpr_kafka_integration_test/5098/pipeline ### Anything else we need to know - Does this test exist for other branches as well? - Has there been a high frequency of failure lately?
1.0
tar: tikv3.log: file changed as we read it - ### Which jobs are flaking? cdc_ghpr_kafka_integration_test ### Which test(s) are flaking? changefeed_reconstruct ### Jenkins logs or GitHub Actions link ```log [2021-11-05T08:15:08.169Z] + for log in '`ls /tmp/tidb_cdc_test/*/*.log`' [2021-11-05T08:15:08.169Z] ++ dirname /tmp/tidb_cdc_test/changefeed_reconstruct/tikv3.log [2021-11-05T08:15:08.169Z] + dirname=/tmp/tidb_cdc_test/changefeed_reconstruct [2021-11-05T08:15:08.169Z] ++ basename /tmp/tidb_cdc_test/changefeed_reconstruct/tikv3.log [2021-11-05T08:15:08.169Z] + basename=tikv3.log [2021-11-05T08:15:08.169Z] + mkdir -p log/tmp/tidb_cdc_test/changefeed_reconstruct [2021-11-05T08:15:08.169Z] + tar zcvf log/tmp/tidb_cdc_test/changefeed_reconstruct/tikv3.log.tgz -C /tmp/tidb_cdc_test/changefeed_reconstruct tikv3.log [2021-11-05T08:15:08.169Z] tikv3.log [2021-11-05T08:15:08.169Z] tar: tikv3.log: file changed as we read it ``` https://ci2.pingcap.net/blue/organizations/jenkins/cdc_ghpr_kafka_integration_test/detail/cdc_ghpr_kafka_integration_test/5098/pipeline ### Anything else we need to know - Does this test exist for other branches as well? - Has there been a high frequency of failure lately?
non_priority
tar log file changed as we read it which jobs are flaking cdc ghpr kafka integration test which test s are flaking changefeed reconstruct jenkins logs or github actions link log for log in ls tmp tidb cdc test log dirname tmp tidb cdc test changefeed reconstruct log dirname tmp tidb cdc test changefeed reconstruct basename tmp tidb cdc test changefeed reconstruct log basename log mkdir p log tmp tidb cdc test changefeed reconstruct tar zcvf log tmp tidb cdc test changefeed reconstruct log tgz c tmp tidb cdc test changefeed reconstruct log log tar log file changed as we read it anything else we need to know does this test exist for other branches as well has there been a high frequency of failure lately
0
94,062
8,468,408,938
IssuesEvent
2018-10-23 19:39:45
palafix/Flash
https://api.github.com/repos/palafix/Flash
closed
DirectImageActivity.kt line 310
for testing
#### in nl.arnhem.flash.activities.DirectImageActivityKt.finishWebOverlayActivitySharerActivity * Number of crashes: 1 * Impacted devices: 1 There's a lot more information about this crash on crashlytics.com: [https://fabric.io/phase/android/apps/nl.arnhem.flash/issues/5bcf50f0f8b88c2963e5571f?utm_medium=service_hooks-github&utm_source=issue_impact](https://fabric.io/phase/android/apps/nl.arnhem.flash/issues/5bcf50f0f8b88c2963e5571f?utm_medium=service_hooks-github&utm_source=issue_impact)
1.0
DirectImageActivity.kt line 310 - #### in nl.arnhem.flash.activities.DirectImageActivityKt.finishWebOverlayActivitySharerActivity * Number of crashes: 1 * Impacted devices: 1 There's a lot more information about this crash on crashlytics.com: [https://fabric.io/phase/android/apps/nl.arnhem.flash/issues/5bcf50f0f8b88c2963e5571f?utm_medium=service_hooks-github&utm_source=issue_impact](https://fabric.io/phase/android/apps/nl.arnhem.flash/issues/5bcf50f0f8b88c2963e5571f?utm_medium=service_hooks-github&utm_source=issue_impact)
non_priority
directimageactivity kt line in nl arnhem flash activities directimageactivitykt finishweboverlayactivityshareractivity number of crashes impacted devices there s a lot more information about this crash on crashlytics com
0
67,790
28,047,179,758
IssuesEvent
2023-03-29 00:35:34
dockstore/dockstore
https://api.github.com/repos/dockstore/dockstore
closed
Implement language version parsing for CWL
enhancement web-service review
**Is your feature request related to a problem? Please describe.** View the description of https://github.com/dockstore/dockstore/issues/4320 **Describe the solution you'd like** Parse CWL descriptor files for the language version and set it for CWL `SourceFile`'s and CWL entry `Version`'s. Note that CWL workflows can have tools of mixed versions. **Describe alternatives you've considered** n/a **Additional context** Follow up work for https://github.com/dockstore/dockstore/issues/4320 ┆Issue is synchronized with this [Jira Story](https://ucsc-cgl.atlassian.net/browse/DOCK-2293) ┆Fix Versions: Dockstore 1.14 ┆Issue Number: DOCK-2293 ┆Sprint: 103 - Arroyo Seco ┆Issue Type: Story
1.0
Implement language version parsing for CWL - **Is your feature request related to a problem? Please describe.** View the description of https://github.com/dockstore/dockstore/issues/4320 **Describe the solution you'd like** Parse CWL descriptor files for the language version and set it for CWL `SourceFile`'s and CWL entry `Version`'s. Note that CWL workflows can have tools of mixed versions. **Describe alternatives you've considered** n/a **Additional context** Follow up work for https://github.com/dockstore/dockstore/issues/4320 ┆Issue is synchronized with this [Jira Story](https://ucsc-cgl.atlassian.net/browse/DOCK-2293) ┆Fix Versions: Dockstore 1.14 ┆Issue Number: DOCK-2293 ┆Sprint: 103 - Arroyo Seco ┆Issue Type: Story
non_priority
implement language version parsing for cwl is your feature request related to a problem please describe view the description of describe the solution you d like parse cwl descriptor files for the language version and set it for cwl sourcefile s and cwl entry version s note that cwl workflows can have tools of mixed versions describe alternatives you ve considered n a additional context follow up work for ┆issue is synchronized with this ┆fix versions dockstore ┆issue number dock ┆sprint arroyo seco ┆issue type story
0
155,799
24,521,615,844
IssuesEvent
2022-10-11 09:56:03
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
[Proposal] Integrate barrierColor into Theme widget
new feature framework f: material design proposal
## Use case Being able to change the barrierColor argument according to the theme. ## Proposal Add `showModalBottomSheet.barrierColor` and equivalents to the Theme. Currently, this defaults to `Colors.black54`.
1.0
[Proposal] Integrate barrierColor into Theme widget - ## Use case Being able to change the barrierColor argument according to the theme. ## Proposal Add `showModalBottomSheet.barrierColor` and equivalents to the Theme. Currently, this defaults to `Colors.black54`.
non_priority
integrate barriercolor into theme widget use case being able to change the barriercolor argument according to the theme proposal add showmodalbottomsheet barriercolor and equivalents to the theme currently this defaults to colors
0
150,188
11,951,027,069
IssuesEvent
2020-04-03 16:09:27
mattbearman/lime
https://api.github.com/repos/mattbearman/lime
opened
test
test
## [View in Saber Control Panel](https://app.saberfeedback.com/websites/a53d1139bceee3b3730c237aff8217d824ad1ccc/feedback/b2d2f3e5d158b086b65108ef434592caa0c548b5) ## ## Details ## **Message:** Registerd **Category:** Other **Email:** goswaminanda349@gmail.com **Submitted:** April 03, 2020 16:08 **Website:** Saber Website **URL:** https://www.saberfeedback.com/?utm_source=ecf517ced2e3f55e7089&utm_medium=powered-by&utm_campaign=widget **Operating System:** Android **Browser:** Chrome 67.0.3396.87 **Browser Size:** 360 x 592 **User Agent:** Mozilla/5.0 (Linux; Android 8.1.0; 1821 Build/OPM2.171019.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36 ## Screenshot ## [View Screenshot](https://app.saberfeedback.com/websites/a53d1139bceee3b3730c237aff8217d824ad1ccc/feedback/b2d2f3e5d158b086b65108ef434592caa0c548b5)
1.0
test - ## [View in Saber Control Panel](https://app.saberfeedback.com/websites/a53d1139bceee3b3730c237aff8217d824ad1ccc/feedback/b2d2f3e5d158b086b65108ef434592caa0c548b5) ## ## Details ## **Message:** Registerd **Category:** Other **Email:** goswaminanda349@gmail.com **Submitted:** April 03, 2020 16:08 **Website:** Saber Website **URL:** https://www.saberfeedback.com/?utm_source=ecf517ced2e3f55e7089&utm_medium=powered-by&utm_campaign=widget **Operating System:** Android **Browser:** Chrome 67.0.3396.87 **Browser Size:** 360 x 592 **User Agent:** Mozilla/5.0 (Linux; Android 8.1.0; 1821 Build/OPM2.171019.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36 ## Screenshot ## [View Screenshot](https://app.saberfeedback.com/websites/a53d1139bceee3b3730c237aff8217d824ad1ccc/feedback/b2d2f3e5d158b086b65108ef434592caa0c548b5)
non_priority
test details message registerd category other email gmail com submitted april website saber website url operating system android browser chrome browser size x user agent mozilla linux android build applewebkit khtml like gecko chrome mobile safari screenshot
0
92,854
15,872,894,951
IssuesEvent
2021-04-09 01:01:39
KaterinaOrg/keycloak
https://api.github.com/repos/KaterinaOrg/keycloak
opened
WS-2017-0124 (Medium) detected in angular-v1.2.32
security vulnerability
## WS-2017-0124 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>angular-v1.2.32</b></p></summary> <p></p> <p>Path to dependency file: keycloak/themes/src/main/resources/theme/keycloak/common/resources/node_modules/autofill-event/bower.json</p> <p>Path to vulnerable library: keycloak/themes/src/main/resources/theme/keycloak/common/resources/node_modules/autofill-event/bower_components/angular/.bower.json</p> <p> Dependency Hierarchy: - :x: **angular-v1.2.32** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Affected versions of the package are vulnerable to Cross-site Scripting (XSS). <p>Publish Date: 2014-09-08 <p>URL: <a href=https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af>WS-2017-0124</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af">https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af</a></p> <p>Release Date: 2014-09-08</p> <p>Fix Resolution: angular - 1.3.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Bower","packageName":"angular","packageVersion":"v1.2.32","packageFilePaths":["/themes/src/main/resources/theme/keycloak/common/resources/node_modules/autofill-event/bower.json"],"isTransitiveDependency":false,"dependencyTree":"angular:v1.2.32","isMinimumFixVersionAvailable":true,"minimumFixVersion":"angular - 1.3.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2017-0124","vulnerabilityDetails":"Affected versions of the package are vulnerable to Cross-site Scripting (XSS).","vulnerabilityUrl":"https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
WS-2017-0124 (Medium) detected in angular-v1.2.32 - ## WS-2017-0124 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>angular-v1.2.32</b></p></summary> <p></p> <p>Path to dependency file: keycloak/themes/src/main/resources/theme/keycloak/common/resources/node_modules/autofill-event/bower.json</p> <p>Path to vulnerable library: keycloak/themes/src/main/resources/theme/keycloak/common/resources/node_modules/autofill-event/bower_components/angular/.bower.json</p> <p> Dependency Hierarchy: - :x: **angular-v1.2.32** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Affected versions of the package are vulnerable to Cross-site Scripting (XSS). <p>Publish Date: 2014-09-08 <p>URL: <a href=https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af>WS-2017-0124</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af">https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af</a></p> <p>Release Date: 2014-09-08</p> <p>Fix Resolution: angular - 1.3.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Bower","packageName":"angular","packageVersion":"v1.2.32","packageFilePaths":["/themes/src/main/resources/theme/keycloak/common/resources/node_modules/autofill-event/bower.json"],"isTransitiveDependency":false,"dependencyTree":"angular:v1.2.32","isMinimumFixVersionAvailable":true,"minimumFixVersion":"angular - 1.3.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2017-0124","vulnerabilityDetails":"Affected versions of the package are vulnerable to Cross-site Scripting (XSS).","vulnerabilityUrl":"https://github.com/angular/angular.js/commit/ab80cd90661396dbb1c94c5f4dd2d11ee8f6b6af","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_priority
ws medium detected in angular ws medium severity vulnerability vulnerable library angular path to dependency file keycloak themes src main resources theme keycloak common resources node modules autofill event bower json path to vulnerable library keycloak themes src main resources theme keycloak common resources node modules autofill event bower components angular bower json dependency hierarchy x angular vulnerable library found in base branch master vulnerability details affected versions of the package are vulnerable to cross site scripting xss publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution angular isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree angular isminimumfixversionavailable true minimumfixversion angular basebranches vulnerabilityidentifier ws vulnerabilitydetails affected versions of the package are vulnerable to cross site scripting xss vulnerabilityurl
0
123,408
17,772,227,403
IssuesEvent
2021-08-30 14:52:30
kapseliboi/ac-web
https://api.github.com/repos/kapseliboi/ac-web
opened
CVE-2020-13822 (High) detected in elliptic-6.5.1.tgz
security vulnerability
## CVE-2020-13822 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>elliptic-6.5.1.tgz</b></p></summary> <p>EC cryptography</p> <p>Library home page: <a href="https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz">https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz</a></p> <p>Path to dependency file: ac-web/package.json</p> <p>Path to vulnerable library: ac-web/node_modules/elliptic/package.json</p> <p> Dependency Hierarchy: - webpack-4.41.2.tgz (Root Library) - node-libs-browser-2.2.1.tgz - crypto-browserify-3.12.0.tgz - browserify-sign-4.0.4.tgz - :x: **elliptic-6.5.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kapseliboi/ac-web/commit/dfced36be0641d32ba1dbfcdd9969dd354b300c5">dfced36be0641d32ba1dbfcdd9969dd354b300c5</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The Elliptic package 6.5.2 for Node.js allows ECDSA signature malleability via variations in encoding, leading '\0' bytes, or integer overflows. This could conceivably have a security-relevant impact if an application relied on a single canonical signature. <p>Publish Date: 2020-06-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-13822>CVE-2020-13822</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/indutny/elliptic/tree/v6.5.3">https://github.com/indutny/elliptic/tree/v6.5.3</a></p> <p>Release Date: 2020-06-04</p> <p>Fix Resolution: v6.5.3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-13822 (High) detected in elliptic-6.5.1.tgz - ## CVE-2020-13822 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>elliptic-6.5.1.tgz</b></p></summary> <p>EC cryptography</p> <p>Library home page: <a href="https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz">https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz</a></p> <p>Path to dependency file: ac-web/package.json</p> <p>Path to vulnerable library: ac-web/node_modules/elliptic/package.json</p> <p> Dependency Hierarchy: - webpack-4.41.2.tgz (Root Library) - node-libs-browser-2.2.1.tgz - crypto-browserify-3.12.0.tgz - browserify-sign-4.0.4.tgz - :x: **elliptic-6.5.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kapseliboi/ac-web/commit/dfced36be0641d32ba1dbfcdd9969dd354b300c5">dfced36be0641d32ba1dbfcdd9969dd354b300c5</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The Elliptic package 6.5.2 for Node.js allows ECDSA signature malleability via variations in encoding, leading '\0' bytes, or integer overflows. This could conceivably have a security-relevant impact if an application relied on a single canonical signature. <p>Publish Date: 2020-06-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-13822>CVE-2020-13822</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/indutny/elliptic/tree/v6.5.3">https://github.com/indutny/elliptic/tree/v6.5.3</a></p> <p>Release Date: 2020-06-04</p> <p>Fix Resolution: v6.5.3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve high detected in elliptic tgz cve high severity vulnerability vulnerable library elliptic tgz ec cryptography library home page a href path to dependency file ac web package json path to vulnerable library ac web node modules elliptic package json dependency hierarchy webpack tgz root library node libs browser tgz crypto browserify tgz browserify sign tgz x elliptic tgz vulnerable library found in head commit a href found in base branch master vulnerability details the elliptic package for node js allows ecdsa signature malleability via variations in encoding leading bytes or integer overflows this could conceivably have a security relevant impact if an application relied on a single canonical signature publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
230,065
17,601,049,520
IssuesEvent
2021-08-17 11:55:02
applibgroup/HarmonyOS-Knowledgebase
https://api.github.com/repos/applibgroup/HarmonyOS-Knowledgebase
closed
How to inflate a layout in HarmonyOS with given context and layout resource id?
documentation Query
### Query description I am working on a HarmonyOS library where I have to inflate a layout with a given layout resource id: int layoutRes and context: Context context. In android, the same thing is done using ```LayoutInflater.from(context).inflate(layoutRes, this, true);``` What is the alternative for HarmonyOS? ![image](https://user-images.githubusercontent.com/48115293/127617799-f48b3f19-514e-4ed7-bfbd-aa34e1e50835.png) ### Stackoverflow link : https://stackoverflow.com/questions/68575080/how-to-inflate-a-layout-in-harmonyos-with-given-context-and-layout-resource-id ### Additional information Developer Platform: Windows DevEco Studio version: 2.1.0.303 SDK API version: 5 SDK version: 2.1.1.21 Device: Not required Device OS version: Not required Regards, Chirag
1.0
How to inflate a layout in HarmonyOS with given context and layout resource id? - ### Query description I am working on a HarmonyOS library where I have to inflate a layout with a given layout resource id: int layoutRes and context: Context context. In android, the same thing is done using ```LayoutInflater.from(context).inflate(layoutRes, this, true);``` What is the alternative for HarmonyOS? ![image](https://user-images.githubusercontent.com/48115293/127617799-f48b3f19-514e-4ed7-bfbd-aa34e1e50835.png) ### Stackoverflow link : https://stackoverflow.com/questions/68575080/how-to-inflate-a-layout-in-harmonyos-with-given-context-and-layout-resource-id ### Additional information Developer Platform: Windows DevEco Studio version: 2.1.0.303 SDK API version: 5 SDK version: 2.1.1.21 Device: Not required Device OS version: Not required Regards, Chirag
non_priority
how to inflate a layout in harmonyos with given context and layout resource id query description i am working on a harmonyos library where i have to inflate a layout with a given layout resource id int layoutres and context context context in android the same thing is done using layoutinflater from context inflate layoutres this true what is the alternative for harmonyos stackoverflow link additional information developer platform windows deveco studio version sdk api version sdk version device not required device os version not required regards chirag
0
285,587
21,525,301,309
IssuesEvent
2022-04-28 17:48:14
irods/irods
https://api.github.com/repos/irods/irods
closed
imeta syntax for IN queries is not listed in documentation
documentation consortium-member
- [x] main - [x] 4-2-stable --------- imeta's support for the IN query syntax is not listed at http://docs.irods.org/4.1.7/icommands/metadata/#imeta
1.0
imeta syntax for IN queries is not listed in documentation - - [x] main - [x] 4-2-stable --------- imeta's support for the IN query syntax is not listed at http://docs.irods.org/4.1.7/icommands/metadata/#imeta
non_priority
imeta syntax for in queries is not listed in documentation main stable imeta s support for the in query syntax is not listed at
0
23,379
21,768,087,545
IssuesEvent
2022-05-13 05:54:14
Bridgeconn/VachanAppReact
https://api.github.com/repos/Bridgeconn/VachanAppReact
closed
The Reading plan is not displayed on navigating to the months January or December
bug Usability High pri VachanGo1.3.0-alpha.2
On scrolling downwards to the months January or December (2021) , the dates and the reading plan is not available. Expected : The user should be able to access the reading plan for the entire year
True
The Reading plan is not displayed on navigating to the months January or December - On scrolling downwards to the months January or December (2021) , the dates and the reading plan is not available. Expected : The user should be able to access the reading plan for the entire year
non_priority
the reading plan is not displayed on navigating to the months january or december on scrolling downwards to the months january or december the dates and the reading plan is not available expected the user should be able to access the reading plan for the entire year
0
23,893
11,983,513,671
IssuesEvent
2020-04-07 14:32:58
elastic/kibana
https://api.github.com/repos/elastic/kibana
closed
Missing service map icon for services with 'rum-js' agent.name
Feature:Service Maps Team:apm [zube]: Done bug v7.7.0
We're checking for 'js-base' as the `agent.name` for RUM apps, but it can also show up as 'rum-js'. Both should use the RUM icon. ![image](https://user-images.githubusercontent.com/9912/78292051-0bf60d80-74ec-11ea-88c0-207ac2e55e0a.png)
1.0
Missing service map icon for services with 'rum-js' agent.name - We're checking for 'js-base' as the `agent.name` for RUM apps, but it can also show up as 'rum-js'. Both should use the RUM icon. ![image](https://user-images.githubusercontent.com/9912/78292051-0bf60d80-74ec-11ea-88c0-207ac2e55e0a.png)
non_priority
missing service map icon for services with rum js agent name we re checking for js base as the agent name for rum apps but it can also show up as rum js both should use the rum icon
0
191,139
14,593,334,267
IssuesEvent
2020-12-19 22:13:31
github-vet/rangeloop-pointer-findings
https://api.github.com/repos/github-vet/rangeloop-pointer-findings
closed
xiaoxubeii/qcloud-controller-manager: vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go; 6 LoC
fresh test tiny vendored
Found a possible issue in [xiaoxubeii/qcloud-controller-manager](https://www.github.com/xiaoxubeii/qcloud-controller-manager) at [vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go](https://github.com/xiaoxubeii/qcloud-controller-manager/blob/06b3c3cb74cbfe1cf5576fd06ec3edc66e6cb7f2/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go#L90-L95) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to listedSecurityService at line 94 may start a goroutine [Click here to see the code in its original context.](https://github.com/xiaoxubeii/qcloud-controller-manager/blob/06b3c3cb74cbfe1cf5576fd06ec3edc66e6cb7f2/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go#L90-L95) <details> <summary>Click here to show the 6 line(s) of Go which triggered the analyzer.</summary> ```go for _, listedSecurityService := range allSecurityServices { if listedSecurityService.Name != securityService.Name { t.Fatalf("The name of the security service was expected to be %s", securityService.Name) } PrintSecurityService(t, &listedSecurityService) } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 06b3c3cb74cbfe1cf5576fd06ec3edc66e6cb7f2
1.0
xiaoxubeii/qcloud-controller-manager: vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go; 6 LoC - Found a possible issue in [xiaoxubeii/qcloud-controller-manager](https://www.github.com/xiaoxubeii/qcloud-controller-manager) at [vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go](https://github.com/xiaoxubeii/qcloud-controller-manager/blob/06b3c3cb74cbfe1cf5576fd06ec3edc66e6cb7f2/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go#L90-L95) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to listedSecurityService at line 94 may start a goroutine [Click here to see the code in its original context.](https://github.com/xiaoxubeii/qcloud-controller-manager/blob/06b3c3cb74cbfe1cf5576fd06ec3edc66e6cb7f2/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/sharedfilesystems/v2/securityservices_test.go#L90-L95) <details> <summary>Click here to show the 6 line(s) of Go which triggered the analyzer.</summary> ```go for _, listedSecurityService := range allSecurityServices { if listedSecurityService.Name != securityService.Name { t.Fatalf("The name of the security service was expected to be %s", securityService.Name) } PrintSecurityService(t, &listedSecurityService) } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 06b3c3cb74cbfe1cf5576fd06ec3edc66e6cb7f2
non_priority
xiaoxubeii qcloud controller manager vendor github com gophercloud gophercloud acceptance openstack sharedfilesystems securityservices test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call which takes a reference to listedsecurityservice at line may start a goroutine click here to show the line s of go which triggered the analyzer go for listedsecurityservice range allsecurityservices if listedsecurityservice name securityservice name t fatalf the name of the security service was expected to be s securityservice name printsecurityservice t listedsecurityservice leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
0
396,860
27,138,908,092
IssuesEvent
2023-02-16 15:04:21
appsmithorg/appsmith-docs
https://api.github.com/repos/appsmithorg/appsmith-docs
closed
[Docs]: Add for clearstore and removeValue
Documentation Ready for Doc Team User Education Pod
### Is there an existing issue for this? - [X] I have searched the existing issues ### Engineering Ticket Link NA ### Release Date NA ### First Draft _No response_ ### Loom video _No response_ ### Discord/slack/intercom Link if needed _No response_ ### PRD _No response_ ### Test plan/cases _No response_ ### Use cases or user requests Add docs to `clearStore()` and `removeValue()` functions.
1.0
[Docs]: Add for clearstore and removeValue - ### Is there an existing issue for this? - [X] I have searched the existing issues ### Engineering Ticket Link NA ### Release Date NA ### First Draft _No response_ ### Loom video _No response_ ### Discord/slack/intercom Link if needed _No response_ ### PRD _No response_ ### Test plan/cases _No response_ ### Use cases or user requests Add docs to `clearStore()` and `removeValue()` functions.
non_priority
add for clearstore and removevalue is there an existing issue for this i have searched the existing issues engineering ticket link na release date na first draft no response loom video no response discord slack intercom link if needed no response prd no response test plan cases no response use cases or user requests add docs to clearstore and removevalue functions
0
9,741
25,137,197,123
IssuesEvent
2022-11-09 19:38:19
elastic/beats
https://api.github.com/repos/elastic/beats
closed
Merge feature-arch-v2 into main
Team:Elastic-Agent-Data-Plane V2-Architecture v8.6.0
Having v2 control protocol progress merged into main branch. First step will be to merge main into feature-arch-v2 to ensure that the current delta won't break anything. Tasks: - [x] Merge main branch into feature-arch-v2 - [x] Testing to validate that everything is still working - [ ] Merge feature-arch-v2 branch into main after @blakerouse merged his branch October 26 at 9am PDT
1.0
Merge feature-arch-v2 into main - Having v2 control protocol progress merged into main branch. First step will be to merge main into feature-arch-v2 to ensure that the current delta won't break anything. Tasks: - [x] Merge main branch into feature-arch-v2 - [x] Testing to validate that everything is still working - [ ] Merge feature-arch-v2 branch into main after @blakerouse merged his branch October 26 at 9am PDT
non_priority
merge feature arch into main having control protocol progress merged into main branch first step will be to merge main into feature arch to ensure that the current delta won t break anything tasks merge main branch into feature arch testing to validate that everything is still working merge feature arch branch into main after blakerouse merged his branch october at pdt
0
97,936
12,269,893,832
IssuesEvent
2020-05-07 14:43:30
AugurProject/augur
https://api.github.com/repos/AugurProject/augur
opened
update social media icons and headers/banners to all Augur pages with new brand
area/design
Designs are complete for these but need to review. https://www.figma.com/file/31ISKCwagskMIE8pHM1FNH/Social-Media-Icons?node-id=1%3A210
1.0
update social media icons and headers/banners to all Augur pages with new brand - Designs are complete for these but need to review. https://www.figma.com/file/31ISKCwagskMIE8pHM1FNH/Social-Media-Icons?node-id=1%3A210
non_priority
update social media icons and headers banners to all augur pages with new brand designs are complete for these but need to review
0
341,373
24,696,189,159
IssuesEvent
2022-10-19 12:18:38
MatrixByte/plexus-djs
https://api.github.com/repos/MatrixByte/plexus-djs
closed
Discord.js v14
documentation enhancement good first issue help wanted
Plexus-djs gives support for discord.js 13, while plexus-djs14 gives support for 14. But Plexus-djs14 doesn't have docs, source code, and sometimes doesn't even work properly. pls fix these...
1.0
Discord.js v14 - Plexus-djs gives support for discord.js 13, while plexus-djs14 gives support for 14. But Plexus-djs14 doesn't have docs, source code, and sometimes doesn't even work properly. pls fix these...
non_priority
discord js plexus djs gives support for discord js while plexus gives support for but plexus doesn t have docs source code and sometimes doesn t even work properly pls fix these
0
49,841
13,466,445,218
IssuesEvent
2020-09-09 22:58:00
wrbejar/JavaVulnerableLab
https://api.github.com/repos/wrbejar/JavaVulnerableLab
opened
CVE-2015-4852 (High) detected in commons-collections-3.2.1.jar
security vulnerability
## CVE-2015-4852 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>commons-collections-3.2.1.jar</b></p></summary> <p>Types that extend and augment the Java Collections Framework.</p> <p>Path to vulnerable library: _depth_0/JavaVulnerableLab/target/JavaVulnerableLab/META-INF/maven/org.cysecurity/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/JavaVulnerableLab/bin/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/home/wss-scanner/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar,_depth_0/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/home/wss-scanner/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar,/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/home/wss-scanner/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar,_depth_0/JavaVulnerableLab/bin/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,_depth_0/JavaVulnerableLab/bin/target/JavaVulnerableLab/META-INF/maven/org.cysecurity/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar</p> <p> Dependency Hierarchy: - hibernate-core-4.0.1.Final.jar (Root Library) - :x: **commons-collections-3.2.1.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/wrbejar/JavaVulnerableLab/commit/7528d88e077d524634c9af72f9978da7da2682e2">7528d88e077d524634c9af72f9978da7da2682e2</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The WLS Security component in Oracle WebLogic Server 10.3.6.0, 12.1.2.0, 12.1.3.0, and 12.2.1.0 allows remote attackers to execute arbitrary commands via a crafted serialized Java object in T3 protocol traffic to TCP port 7001, related to oracle_common/modules/com.bea.core.apache.commons.collections.jar. NOTE: the scope of this CVE is limited to the WebLogic Server product. <p>Publish Date: 2015-11-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2015-4852>CVE-2015-4852</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics not available</p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.openwall.com/lists/oss-security/2015/11/17/19">https://www.openwall.com/lists/oss-security/2015/11/17/19</a></p> <p>Release Date: 2015-11-18</p> <p>Fix Resolution: commons-collections:commons-collections:3.2.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"commons-collections","packageName":"commons-collections","packageVersion":"3.2.1","isTransitiveDependency":true,"dependencyTree":"org.hibernate:hibernate-core:4.0.1.Final;commons-collections:commons-collections:3.2.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"commons-collections:commons-collections:3.2.2"}],"vulnerabilityIdentifier":"CVE-2015-4852","vulnerabilityDetails":"The WLS Security component in Oracle WebLogic Server 10.3.6.0, 12.1.2.0, 12.1.3.0, and 12.2.1.0 allows remote attackers to execute arbitrary commands via a crafted serialized Java object in T3 protocol traffic to TCP port 7001, related to oracle_common/modules/com.bea.core.apache.commons.collections.jar. NOTE: the scope of this CVE is limited to the WebLogic Server product.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2015-4852","cvss2Severity":"high","cvss2Score":"7.5","extraData":{}}</REMEDIATE> -->
True
CVE-2015-4852 (High) detected in commons-collections-3.2.1.jar - ## CVE-2015-4852 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>commons-collections-3.2.1.jar</b></p></summary> <p>Types that extend and augment the Java Collections Framework.</p> <p>Path to vulnerable library: _depth_0/JavaVulnerableLab/target/JavaVulnerableLab/META-INF/maven/org.cysecurity/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/JavaVulnerableLab/bin/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/home/wss-scanner/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar,_depth_0/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/home/wss-scanner/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar,/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,/home/wss-scanner/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar,_depth_0/JavaVulnerableLab/bin/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar,_depth_0/JavaVulnerableLab/bin/target/JavaVulnerableLab/META-INF/maven/org.cysecurity/JavaVulnerableLab/target/JavaVulnerableLab/WEB-INF/lib/commons-collections-3.2.1.jar</p> <p> Dependency Hierarchy: - hibernate-core-4.0.1.Final.jar (Root Library) - :x: **commons-collections-3.2.1.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/wrbejar/JavaVulnerableLab/commit/7528d88e077d524634c9af72f9978da7da2682e2">7528d88e077d524634c9af72f9978da7da2682e2</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The WLS Security component in Oracle WebLogic Server 10.3.6.0, 12.1.2.0, 12.1.3.0, and 12.2.1.0 allows remote attackers to execute arbitrary commands via a crafted serialized Java object in T3 protocol traffic to TCP port 7001, related to oracle_common/modules/com.bea.core.apache.commons.collections.jar. NOTE: the scope of this CVE is limited to the WebLogic Server product. <p>Publish Date: 2015-11-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2015-4852>CVE-2015-4852</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics not available</p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.openwall.com/lists/oss-security/2015/11/17/19">https://www.openwall.com/lists/oss-security/2015/11/17/19</a></p> <p>Release Date: 2015-11-18</p> <p>Fix Resolution: commons-collections:commons-collections:3.2.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"commons-collections","packageName":"commons-collections","packageVersion":"3.2.1","isTransitiveDependency":true,"dependencyTree":"org.hibernate:hibernate-core:4.0.1.Final;commons-collections:commons-collections:3.2.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"commons-collections:commons-collections:3.2.2"}],"vulnerabilityIdentifier":"CVE-2015-4852","vulnerabilityDetails":"The WLS Security component in Oracle WebLogic Server 10.3.6.0, 12.1.2.0, 12.1.3.0, and 12.2.1.0 allows remote attackers to execute arbitrary commands via a crafted serialized Java object in T3 protocol traffic to TCP port 7001, related to oracle_common/modules/com.bea.core.apache.commons.collections.jar. NOTE: the scope of this CVE is limited to the WebLogic Server product.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2015-4852","cvss2Severity":"high","cvss2Score":"7.5","extraData":{}}</REMEDIATE> -->
non_priority
cve high detected in commons collections jar cve high severity vulnerability vulnerable library commons collections jar types that extend and augment the java collections framework path to vulnerable library depth javavulnerablelab target javavulnerablelab meta inf maven org cysecurity javavulnerablelab target javavulnerablelab web inf lib commons collections jar javavulnerablelab bin target javavulnerablelab web inf lib commons collections jar home wss scanner repository commons collections commons collections commons collections jar depth javavulnerablelab target javavulnerablelab web inf lib commons collections jar home wss scanner repository commons collections commons collections commons collections jar javavulnerablelab target javavulnerablelab web inf lib commons collections jar home wss scanner repository commons collections commons collections commons collections jar depth javavulnerablelab bin target javavulnerablelab web inf lib commons collections jar depth javavulnerablelab bin target javavulnerablelab meta inf maven org cysecurity javavulnerablelab target javavulnerablelab web inf lib commons collections jar dependency hierarchy hibernate core final jar root library x commons collections jar vulnerable library found in head commit a href vulnerability details the wls security component in oracle weblogic server and allows remote attackers to execute arbitrary commands via a crafted serialized java object in protocol traffic to tcp port related to oracle common modules com bea core apache commons collections jar note the scope of this cve is limited to the weblogic server product publish date url a href cvss score details base score metrics not available suggested fix type upgrade version origin a href release date fix resolution commons collections commons collections isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails the wls security component in oracle weblogic server and allows remote attackers to execute arbitrary commands via a crafted serialized java object in protocol traffic to tcp port related to oracle common modules com bea core apache commons collections jar note the scope of this cve is limited to the weblogic server product vulnerabilityurl
0
99,151
20,906,907,457
IssuesEvent
2022-03-24 03:55:27
Bartesto/REB_OxyClean
https://api.github.com/repos/Bartesto/REB_OxyClean
opened
Rule 4
Code Module
Check all times for each site within 5-minute time block. If time > 5 minute, compare GPS with previous and if > 5 metres away mark as “Incorrectly named”
1.0
Rule 4 - Check all times for each site within 5-minute time block. If time > 5 minute, compare GPS with previous and if > 5 metres away mark as “Incorrectly named”
non_priority
rule check all times for each site within minute time block if time minute compare gps with previous and if metres away mark as “incorrectly named”
0
109,512
11,644,825,813
IssuesEvent
2020-02-29 20:55:32
CS3398-Borg-Engineerz/CS-Borg-Engineerz-S2020
https://api.github.com/repos/CS3398-Borg-Engineerz/CS-Borg-Engineerz-S2020
closed
Update README - Decide on what functions are the core aspects of the application
documentation
Make sure the decided on features are all agreed upon and established in a README.
1.0
Update README - Decide on what functions are the core aspects of the application - Make sure the decided on features are all agreed upon and established in a README.
non_priority
update readme decide on what functions are the core aspects of the application make sure the decided on features are all agreed upon and established in a readme
0
218,379
16,987,800,681
IssuesEvent
2021-06-30 16:15:45
opensearch-project/OpenSearch-Dashboards
https://api.github.com/repos/opensearch-project/OpenSearch-Dashboards
closed
[BUG] Google Chrome version in the Dockerfile does not match chromedriver version
bug test:functional
**Describe the bug** Our Dockerfile downloads the latest stable version of Google Chrome: https://github.com/opensearch-project/OpenSearch-Dashboards/blob/1.0.0-rc1/Dockerfile#L14 This can cause problems with tests in a Jenkins environment if the version of Chrome that is downloaded doesn't match the version of `chromedriver` that is defined in our dependencies. For example, the current stable version of Chrome is 91, but we define chromedriver@87.0.0 in our [package.json](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/1.0.0-rc1/package.json#L361). **Expected behavior** We should reference a specific version of Google Chrome in the Dockerfile that matches the version of `chromedriver`.
1.0
[BUG] Google Chrome version in the Dockerfile does not match chromedriver version - **Describe the bug** Our Dockerfile downloads the latest stable version of Google Chrome: https://github.com/opensearch-project/OpenSearch-Dashboards/blob/1.0.0-rc1/Dockerfile#L14 This can cause problems with tests in a Jenkins environment if the version of Chrome that is downloaded doesn't match the version of `chromedriver` that is defined in our dependencies. For example, the current stable version of Chrome is 91, but we define chromedriver@87.0.0 in our [package.json](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/1.0.0-rc1/package.json#L361). **Expected behavior** We should reference a specific version of Google Chrome in the Dockerfile that matches the version of `chromedriver`.
non_priority
google chrome version in the dockerfile does not match chromedriver version describe the bug our dockerfile downloads the latest stable version of google chrome this can cause problems with tests in a jenkins environment if the version of chrome that is downloaded doesn t match the version of chromedriver that is defined in our dependencies for example the current stable version of chrome is but we define chromedriver in our expected behavior we should reference a specific version of google chrome in the dockerfile that matches the version of chromedriver
0
42,460
5,438,260,510
IssuesEvent
2017-03-06 09:57:18
kontena/kontena
https://api.github.com/repos/kontena/kontena
opened
e2e test teardown leaves weave and kontena-etcd running
test
Specs might leak things like LB registrations, and the initial agent setup will behave differently as it launches weave and initializes `kontena-ipam`. ``` core@localhost /kontena/test $ docker-compose run --rm test rake compose:teardown docker-compose stop agent Stopping kontena-agent ... done ')ntena node rm --force $(docker-compose run --rm agent hostname | tr -d $' [done] Removing localhost node from e2e grid docker-compose rm --force agent Going to remove kontena-agent Removing kontena-agent ... done kontena grid rm --force e2e [done] removing e2e grid docker-compose stop api mongodb Stopping test_api_1 ... done Stopping test_mongodb_1 ... done docker-compose rm --force api mongodb Going to remove test_api_1, test_mongodb_1 Removing test_api_1 ... done Removing test_mongodb_1 ... done kontena master remove --force compose-e2e Current master was removed, to select a new current master use: kontena master use <master_name> Or log into another master by using: kontena master login <master_url> core@localhost /kontena/test $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 0ec2df3c3370 google/cadvisor:v0.24.1 "/usr/bin/cadvisor -l" 17 minutes ago Up 17 minutes kontena-cadvisor c5d737b54430 kontena/etcd:2.3.7 "/usr/bin/etcd --name" 7 days ago Up 14 minutes kontena-etcd 23eb5cc41cdf kontena/ipam-plugin:0.2.1 "bundle exec thin -a " 7 days ago Up 14 minutes kontena-ipam-plugin d2afc7c5c1a8 weaveworks/weave:1.8.2 "/home/weave/weaver -" 12 days ago Up 25 minutes weave core@localhost /kontena/test $ docker exec kontena-etcd etcdctl ls --recursive / /kontena /kontena/log_worker /kontena/log_worker/containers /kontena/haproxy /kontena/haproxy/simple-lb /kontena/haproxy/simple-lb/certs /kontena/haproxy/simple-lb/services /kontena/haproxy/simple-lb/tcp-services /kontena/ipam /kontena/ipam/addresses /kontena/ipam/addresses/kontena /kontena/ipam/addresses/kontena/10.81.0.1 /kontena/ipam/pool-nodes /kontena/ipam/pool-nodes/kontena /kontena/ipam/pool-nodes/kontena/1 /kontena/ipam/pools /kontena/ipam/pools/kontena /kontena/ipam/subnets /kontena/ipam/subnets/10.81.0.0 ```
1.0
e2e test teardown leaves weave and kontena-etcd running - Specs might leak things like LB registrations, and the initial agent setup will behave differently as it launches weave and initializes `kontena-ipam`. ``` core@localhost /kontena/test $ docker-compose run --rm test rake compose:teardown docker-compose stop agent Stopping kontena-agent ... done ')ntena node rm --force $(docker-compose run --rm agent hostname | tr -d $' [done] Removing localhost node from e2e grid docker-compose rm --force agent Going to remove kontena-agent Removing kontena-agent ... done kontena grid rm --force e2e [done] removing e2e grid docker-compose stop api mongodb Stopping test_api_1 ... done Stopping test_mongodb_1 ... done docker-compose rm --force api mongodb Going to remove test_api_1, test_mongodb_1 Removing test_api_1 ... done Removing test_mongodb_1 ... done kontena master remove --force compose-e2e Current master was removed, to select a new current master use: kontena master use <master_name> Or log into another master by using: kontena master login <master_url> core@localhost /kontena/test $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 0ec2df3c3370 google/cadvisor:v0.24.1 "/usr/bin/cadvisor -l" 17 minutes ago Up 17 minutes kontena-cadvisor c5d737b54430 kontena/etcd:2.3.7 "/usr/bin/etcd --name" 7 days ago Up 14 minutes kontena-etcd 23eb5cc41cdf kontena/ipam-plugin:0.2.1 "bundle exec thin -a " 7 days ago Up 14 minutes kontena-ipam-plugin d2afc7c5c1a8 weaveworks/weave:1.8.2 "/home/weave/weaver -" 12 days ago Up 25 minutes weave core@localhost /kontena/test $ docker exec kontena-etcd etcdctl ls --recursive / /kontena /kontena/log_worker /kontena/log_worker/containers /kontena/haproxy /kontena/haproxy/simple-lb /kontena/haproxy/simple-lb/certs /kontena/haproxy/simple-lb/services /kontena/haproxy/simple-lb/tcp-services /kontena/ipam /kontena/ipam/addresses /kontena/ipam/addresses/kontena /kontena/ipam/addresses/kontena/10.81.0.1 /kontena/ipam/pool-nodes /kontena/ipam/pool-nodes/kontena /kontena/ipam/pool-nodes/kontena/1 /kontena/ipam/pools /kontena/ipam/pools/kontena /kontena/ipam/subnets /kontena/ipam/subnets/10.81.0.0 ```
non_priority
test teardown leaves weave and kontena etcd running specs might leak things like lb registrations and the initial agent setup will behave differently as it launches weave and initializes kontena ipam core localhost kontena test docker compose run rm test rake compose teardown docker compose stop agent stopping kontena agent done ntena node rm force docker compose run rm agent hostname tr d removing localhost node from grid docker compose rm force agent going to remove kontena agent removing kontena agent done kontena grid rm force removing grid docker compose stop api mongodb stopping test api done stopping test mongodb done docker compose rm force api mongodb going to remove test api test mongodb removing test api done removing test mongodb done kontena master remove force compose current master was removed to select a new current master use kontena master use or log into another master by using kontena master login core localhost kontena test docker ps container id image command created status ports names google cadvisor usr bin cadvisor l minutes ago up minutes kontena cadvisor kontena etcd usr bin etcd name days ago up minutes kontena etcd kontena ipam plugin bundle exec thin a days ago up minutes kontena ipam plugin weaveworks weave home weave weaver days ago up minutes weave core localhost kontena test docker exec kontena etcd etcdctl ls recursive kontena kontena log worker kontena log worker containers kontena haproxy kontena haproxy simple lb kontena haproxy simple lb certs kontena haproxy simple lb services kontena haproxy simple lb tcp services kontena ipam kontena ipam addresses kontena ipam addresses kontena kontena ipam addresses kontena kontena ipam pool nodes kontena ipam pool nodes kontena kontena ipam pool nodes kontena kontena ipam pools kontena ipam pools kontena kontena ipam subnets kontena ipam subnets
0
140,278
21,053,811,990
IssuesEvent
2022-03-31 23:35:36
WatershedXiaolan/Xiaolan-s-Gitbook
https://api.github.com/repos/WatershedXiaolan/Xiaolan-s-Gitbook
opened
What is the main difference between key-value and wide column nosql databases?
system design
A wide-column store is like a 2-dimensional key-value store, where the first key is used as a row identifier and the second is used as a column identifier.
1.0
What is the main difference between key-value and wide column nosql databases? - A wide-column store is like a 2-dimensional key-value store, where the first key is used as a row identifier and the second is used as a column identifier.
non_priority
what is the main difference between key value and wide column nosql databases a wide column store is like a dimensional key value store where the first key is used as a row identifier and the second is used as a column identifier
0
25,958
6,726,726,146
IssuesEvent
2017-10-17 10:57:30
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
Avoid generating code with a redundant (Object) cast
C: Code Generation P: Medium T: Defect
We build our code with `-Werror`. Unfortunately the generated code contains one section that triggers a warning: ```java /** * @deprecated Unknown data type. Please define an explicit {@link org.jooq.Binding} to specify how this type should be handled. */ @java.lang.Deprecated public Object getWay() { return (Object) get(68); } ``` For the code, `javac` emits the following warning: ``` redundant cast to java.lang.Object ``` It'd be nice if the generated code does not perform this cast. Will open a PR with a proposed fix shortly. (Test against jOOQ 3.9.3 as well as the code currently on `master`. Java 8, PostgreSQL.)
1.0
Avoid generating code with a redundant (Object) cast - We build our code with `-Werror`. Unfortunately the generated code contains one section that triggers a warning: ```java /** * @deprecated Unknown data type. Please define an explicit {@link org.jooq.Binding} to specify how this type should be handled. */ @java.lang.Deprecated public Object getWay() { return (Object) get(68); } ``` For the code, `javac` emits the following warning: ``` redundant cast to java.lang.Object ``` It'd be nice if the generated code does not perform this cast. Will open a PR with a proposed fix shortly. (Test against jOOQ 3.9.3 as well as the code currently on `master`. Java 8, PostgreSQL.)
non_priority
avoid generating code with a redundant object cast we build our code with werror unfortunately the generated code contains one section that triggers a warning java deprecated unknown data type please define an explicit link org jooq binding to specify how this type should be handled java lang deprecated public object getway return object get for the code javac emits the following warning redundant cast to java lang object it d be nice if the generated code does not perform this cast will open a pr with a proposed fix shortly test against jooq as well as the code currently on master java postgresql
0
14,410
9,304,081,878
IssuesEvent
2019-03-24 22:19:01
quarkusio/quarkus
https://api.github.com/repos/quarkusio/quarkus
closed
smallrye-jwt not working in native mode
bug security smallrye
Testing the using-jwt-rbac under native mode produces no errors, but neither authentication or authorization are working.
True
smallrye-jwt not working in native mode - Testing the using-jwt-rbac under native mode produces no errors, but neither authentication or authorization are working.
non_priority
smallrye jwt not working in native mode testing the using jwt rbac under native mode produces no errors but neither authentication or authorization are working
0
1,095
3,574,165,354
IssuesEvent
2016-01-27 10:32:46
Yoast/wordpress-seo
https://api.github.com/repos/Yoast/wordpress-seo
closed
YOAST and qtranslate BUG
compatibility wait for feedback
Hello. I'm struggeling since 2 weeks to make yoast plugin work with qtranslatex. I managed to make allin one seo work with qtranslatex but I like yoast more and I can't make it work. I installed Yoast SEO & qTranslate-X, I;ve enabled Compatibility Functions, changed the editor mode to Single Language Mode and also insalled Fix for Yoast SEO and qTranslate. I searched 100 forums and still couldn't make it work. The problem is that when I type a text in english and I switch to the german page to type in the cerman content it already contains the english one. If I delete it and type he german content end switch back to english I only have the german content there. I also tried using [:en][:de] and it still doesn't work. Please help asap! Thanks, Alex
True
YOAST and qtranslate BUG - Hello. I'm struggeling since 2 weeks to make yoast plugin work with qtranslatex. I managed to make allin one seo work with qtranslatex but I like yoast more and I can't make it work. I installed Yoast SEO & qTranslate-X, I;ve enabled Compatibility Functions, changed the editor mode to Single Language Mode and also insalled Fix for Yoast SEO and qTranslate. I searched 100 forums and still couldn't make it work. The problem is that when I type a text in english and I switch to the german page to type in the cerman content it already contains the english one. If I delete it and type he german content end switch back to english I only have the german content there. I also tried using [:en][:de] and it still doesn't work. Please help asap! Thanks, Alex
non_priority
yoast and qtranslate bug hello i m struggeling since weeks to make yoast plugin work with qtranslatex i managed to make allin one seo work with qtranslatex but i like yoast more and i can t make it work i installed yoast seo qtranslate x i ve enabled compatibility functions changed the editor mode to single language mode and also insalled fix for yoast seo and qtranslate i searched forums and still couldn t make it work the problem is that when i type a text in english and i switch to the german page to type in the cerman content it already contains the english one if i delete it and type he german content end switch back to english i only have the german content there i also tried using and it still doesn t work please help asap thanks alex
0
16,449
22,284,836,678
IssuesEvent
2022-06-11 13:00:30
jstedfast/MailKit
https://api.github.com/repos/jstedfast/MailKit
closed
Syntax error in BODYSTRUCTURE. Unexpected token: '('
compatibility server-bug
Hello, I am getting one more issue with BODYSTRUCTURE parsing. See similar errors: - https://github.com/jstedfast/MailKit/issues/777 - https://github.com/jstedfast/MailKit/issues/371 Here is the server log which I am receiving (its pretty big, so I think I too the one which is actually causing the issue (also tried to deanonymize it without breaking it) ``` C: Z00000053 UID FETCH 11889 (UID FLAGS ENVELOPE BODYSTRUCTURE BODY.PEEK[HEADER]) S: * 6285 FETCH (UID 11889 FLAGS (\Seen) ENVELOPE (\"Mon, 17 Nov 2014 13:29:22 +0100\" \"[undeliverable] Re: Adresy\" ((NIL NIL \"Mail Delivery System\" \"\")) ((NIL NIL \"Mail Delivery System\" \"\")) ((NIL NIL \"Mail Delivery System\" \"\")) ((NIL NIL \"e.username\" \"example.com\")) NIL NIL \"<D6173425-9D71-4D78-8C3C-1CEB03BCB4D0@example.com>\" \"<c0f0a134e5d7f943@one.example.com>\") BODYSTRUCTURE ((\"text\" \"plain\" (\"charset\" \"utf-8\") NIL NIL \"7bit\" 727 16 NIL NIL NIL NIL)(\"message\" \"delivery-status\" (\"name\" \"Delivery status\") NIL NIL \"7bit\" 416 NIL NIL NIL NIL)(\"message\" \"rfc822\" (\"name\" \"Message headers\") NIL NIL \"7bit\" 903 (\"Mon, 17 Nov 2014 13:29:21 +0100\" \"Re: Adresy\" ((\"username\" NIL \"e.username\" \"example.com\")) ((\"username\" NIL \"e.username\" \"example.com\")) ((\"username\" NIL \"e.username\" \"example.com\")) ((\"=?utf-8?Q?Justyna?=\" NIL \"salesde\" \"some-company.eu\")) ((NIL NIL \"saleseu\" \"some-company.eu\")(\"Bogdan\" NIL \"bogdan\" \"some-company.eu\")) NIL \"<004901d00260$35405970$9fc10c50$@some-company.eu>\" \"<D6173425-9D71-4D78-8C3C-1CEB03BCB4D0@example.com>\") (NIL \"alternative\" (\"boundary\" \"Apple-Mail=_352FCEEC-EB15-428F-9D8B-D3B4259DD646\") NIL NIL NIL) 17 NIL NIL NIL NIL) \"report\" (\"report-type\" \"delivery-status\" \"boundary\" \"_e0d7475d888f9882b71de053e5efb221_idea\") NIL NIL NIL) BODY[HEADER] {620} S: Return-Path: <> S: Received: from zero.example.com [11.11.11.111] (HELO zero.example.com) S: by one.example.com [79.96.20.237] with SMTP (IdeaSmtpServer v0.80) S: id d4236af797c2313f; Mon, 17 Nov 2014 13:29:22 +0100 S: From: Mail Delivery System S: To: <user@example.com> S: Subject: [undeliverable] Re: Adresy S: Date: Mon, 17 Nov 2014 13:29:22 +0100 S: Message-ID: <c0f0a134e5d7f943@one.example.com> S: In-Reply-To: <D6173425-9D71-4D78-8C3C-1CEB03BCB4D0@example.com> S: MIME-Version: 1.0 S: Content-Type: multipart/report; report-type=delivery-status; S: boundary=\"_e0d7475d888f9882b71de053e5efb221_idea\"; S: S: ) S: Z00000053 OK Completed ``` I am not expert in IMAP protocol, but seems to me that some brackets indeed are missing: ![image](https://user-images.githubusercontent.com/1263609/173175508-6f1981e0-e256-485b-ac7c-9082ac9478a2.png) Any ideas, if this can be fixed, or maybe even message could be ignored somehow? Maybe some rules can be loosened in some settings? Using Dot Net Core 6. Mailkit library: v3.2.0
True
Syntax error in BODYSTRUCTURE. Unexpected token: '(' - Hello, I am getting one more issue with BODYSTRUCTURE parsing. See similar errors: - https://github.com/jstedfast/MailKit/issues/777 - https://github.com/jstedfast/MailKit/issues/371 Here is the server log which I am receiving (its pretty big, so I think I too the one which is actually causing the issue (also tried to deanonymize it without breaking it) ``` C: Z00000053 UID FETCH 11889 (UID FLAGS ENVELOPE BODYSTRUCTURE BODY.PEEK[HEADER]) S: * 6285 FETCH (UID 11889 FLAGS (\Seen) ENVELOPE (\"Mon, 17 Nov 2014 13:29:22 +0100\" \"[undeliverable] Re: Adresy\" ((NIL NIL \"Mail Delivery System\" \"\")) ((NIL NIL \"Mail Delivery System\" \"\")) ((NIL NIL \"Mail Delivery System\" \"\")) ((NIL NIL \"e.username\" \"example.com\")) NIL NIL \"<D6173425-9D71-4D78-8C3C-1CEB03BCB4D0@example.com>\" \"<c0f0a134e5d7f943@one.example.com>\") BODYSTRUCTURE ((\"text\" \"plain\" (\"charset\" \"utf-8\") NIL NIL \"7bit\" 727 16 NIL NIL NIL NIL)(\"message\" \"delivery-status\" (\"name\" \"Delivery status\") NIL NIL \"7bit\" 416 NIL NIL NIL NIL)(\"message\" \"rfc822\" (\"name\" \"Message headers\") NIL NIL \"7bit\" 903 (\"Mon, 17 Nov 2014 13:29:21 +0100\" \"Re: Adresy\" ((\"username\" NIL \"e.username\" \"example.com\")) ((\"username\" NIL \"e.username\" \"example.com\")) ((\"username\" NIL \"e.username\" \"example.com\")) ((\"=?utf-8?Q?Justyna?=\" NIL \"salesde\" \"some-company.eu\")) ((NIL NIL \"saleseu\" \"some-company.eu\")(\"Bogdan\" NIL \"bogdan\" \"some-company.eu\")) NIL \"<004901d00260$35405970$9fc10c50$@some-company.eu>\" \"<D6173425-9D71-4D78-8C3C-1CEB03BCB4D0@example.com>\") (NIL \"alternative\" (\"boundary\" \"Apple-Mail=_352FCEEC-EB15-428F-9D8B-D3B4259DD646\") NIL NIL NIL) 17 NIL NIL NIL NIL) \"report\" (\"report-type\" \"delivery-status\" \"boundary\" \"_e0d7475d888f9882b71de053e5efb221_idea\") NIL NIL NIL) BODY[HEADER] {620} S: Return-Path: <> S: Received: from zero.example.com [11.11.11.111] (HELO zero.example.com) S: by one.example.com [79.96.20.237] with SMTP (IdeaSmtpServer v0.80) S: id d4236af797c2313f; Mon, 17 Nov 2014 13:29:22 +0100 S: From: Mail Delivery System S: To: <user@example.com> S: Subject: [undeliverable] Re: Adresy S: Date: Mon, 17 Nov 2014 13:29:22 +0100 S: Message-ID: <c0f0a134e5d7f943@one.example.com> S: In-Reply-To: <D6173425-9D71-4D78-8C3C-1CEB03BCB4D0@example.com> S: MIME-Version: 1.0 S: Content-Type: multipart/report; report-type=delivery-status; S: boundary=\"_e0d7475d888f9882b71de053e5efb221_idea\"; S: S: ) S: Z00000053 OK Completed ``` I am not expert in IMAP protocol, but seems to me that some brackets indeed are missing: ![image](https://user-images.githubusercontent.com/1263609/173175508-6f1981e0-e256-485b-ac7c-9082ac9478a2.png) Any ideas, if this can be fixed, or maybe even message could be ignored somehow? Maybe some rules can be loosened in some settings? Using Dot Net Core 6. Mailkit library: v3.2.0
non_priority
syntax error in bodystructure unexpected token hello i am getting one more issue with bodystructure parsing see similar errors here is the server log which i am receiving its pretty big so i think i too the one which is actually causing the issue also tried to deanonymize it without breaking it c uid fetch uid flags envelope bodystructure body peek s fetch uid flags seen envelope mon nov re adresy nil nil mail delivery system nil nil mail delivery system nil nil mail delivery system nil nil e username example com nil nil bodystructure text plain charset utf nil nil nil nil nil nil message delivery status name delivery status nil nil nil nil nil nil message name message headers nil nil mon nov re adresy username nil e username example com username nil e username example com username nil e username example com utf q justyna nil salesde some company eu nil nil saleseu some company eu bogdan nil bogdan some company eu nil nil alternative boundary apple mail nil nil nil nil nil nil nil report report type delivery status boundary idea nil nil nil body s return path s received from zero example com helo zero example com s by one example com with smtp ideasmtpserver s id mon nov s from mail delivery system s to s subject re adresy s date mon nov s message id s in reply to s mime version s content type multipart report report type delivery status s boundary idea s s s ok completed i am not expert in imap protocol but seems to me that some brackets indeed are missing any ideas if this can be fixed or maybe even message could be ignored somehow maybe some rules can be loosened in some settings using dot net core mailkit library
0
46,406
11,839,311,869
IssuesEvent
2020-03-23 16:57:39
spack/spack
https://api.github.com/repos/spack/spack
opened
Installation issue: llvm (master and 9.0.1)
build-error
### Spack version 0.14.1-328-a3e341385 ### Steps to reproduce the issue spack -v install llvm@master or llvm@9.0.1 ### Platform and user environment $ uname -a ubuntu 5.3.0-42-generic $ lsb_release -d Description: Ubuntu 19.10 The build process finishes fine but when it wants to install it fails due permission failure when it wants to copy some files to my system's /usr/lib. Let me know if I have failed to provide more information. 2 errors found in build log: 63822 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMTextAPI.a 63823 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMDlltoolDriver.a 63824 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMLibDriver.a 63825 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMXRay.a 63826 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMWindowsManifest.a 63827 -- Installing: /usr/lib/ocaml/llvm/llvm.mli >> 63828 CMake Error at bindings/ocaml/llvm/cmake_install.cmake:49 (file): 63829 file INSTALL cannot copy file 63830 "/tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build/bindings/ocaml/llvm/llvm.mli" >> 63831 to "/usr/lib/ocaml/llvm/llvm.mli": Permission denied. 63832 Call Stack (most recent call first): 63833 bindings/ocaml/cmake_install.cmake:42 (include) 63834 cmake_install.cmake:71 (include) 63835 63836 63837 make: *** [Makefile:143: install] Error 1 See build log for details: /tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build-out.txt ==> Error: Failed to install llvm due to ChildError: ProcessError: Command exited with status 2: 'make' '-j8' 'install' 2 errors found in build log: 63822 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMTextAPI.a 63823 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMDlltoolDriver.a 63824 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMLibDriver.a 63825 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMXRay.a 63826 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMWindowsManifest.a 63827 -- Installing: /usr/lib/ocaml/llvm/llvm.mli >> 63828 CMake Error at bindings/ocaml/llvm/cmake_install.cmake:49 (file): 63829 file INSTALL cannot copy file 63830 "/tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build/bindings/ocaml/llvm/llvm.mli" >> 63831 to "/usr/lib/ocaml/llvm/llvm.mli": Permission denied. 63832 Call Stack (most recent call first): 63833 bindings/ocaml/cmake_install.cmake:42 (include) 63834 cmake_install.cmake:71 (include) 63835 63836 63837 make: *** [Makefile:143: install] Error 1 See build log for details: /tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build-out.txt Traceback (most recent call last): File "/home/mrez/.local/src/spack/lib/spack/spack/build_environment.py", line 801, in child_process return_value = function() File "/home/mrez/.local/src/spack/lib/spack/spack/installer.py", line 1114, in build_process phase(pkg.spec, pkg.prefix) File "/home/mrez/.local/src/spack/lib/spack/spack/package.py", line 108, in phase_wrapper phase(spec, prefix) File "/home/mrez/.local/src/spack/lib/spack/spack/build_systems/cmake.py", line 353, in install inspect.getmodule(self).make(*self.install_targets) File "/home/mrez/.local/src/spack/lib/spack/spack/build_environment.py", line 131, in __call__ return super(MakeExecutable, self).__call__(*args, **kwargs) File "/home/mrez/.local/src/spack/lib/spack/spack/util/executable.py", line 189, in __call__ proc.returncode, long_msg) spack.util.executable.ProcessError: Command exited with status 2: 'make' '-j8' 'install'
1.0
Installation issue: llvm (master and 9.0.1) - ### Spack version 0.14.1-328-a3e341385 ### Steps to reproduce the issue spack -v install llvm@master or llvm@9.0.1 ### Platform and user environment $ uname -a ubuntu 5.3.0-42-generic $ lsb_release -d Description: Ubuntu 19.10 The build process finishes fine but when it wants to install it fails due permission failure when it wants to copy some files to my system's /usr/lib. Let me know if I have failed to provide more information. 2 errors found in build log: 63822 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMTextAPI.a 63823 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMDlltoolDriver.a 63824 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMLibDriver.a 63825 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMXRay.a 63826 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMWindowsManifest.a 63827 -- Installing: /usr/lib/ocaml/llvm/llvm.mli >> 63828 CMake Error at bindings/ocaml/llvm/cmake_install.cmake:49 (file): 63829 file INSTALL cannot copy file 63830 "/tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build/bindings/ocaml/llvm/llvm.mli" >> 63831 to "/usr/lib/ocaml/llvm/llvm.mli": Permission denied. 63832 Call Stack (most recent call first): 63833 bindings/ocaml/cmake_install.cmake:42 (include) 63834 cmake_install.cmake:71 (include) 63835 63836 63837 make: *** [Makefile:143: install] Error 1 See build log for details: /tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build-out.txt ==> Error: Failed to install llvm due to ChildError: ProcessError: Command exited with status 2: 'make' '-j8' 'install' 2 errors found in build log: 63822 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMTextAPI.a 63823 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMDlltoolDriver.a 63824 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMLibDriver.a 63825 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMXRay.a 63826 -- Installing: /home/mrez/.local/src/spack/opt/spack/linux-ubuntu19.10-haswell/gcc-9.2.1/llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/lib/libLLVMWindowsManifest.a 63827 -- Installing: /usr/lib/ocaml/llvm/llvm.mli >> 63828 CMake Error at bindings/ocaml/llvm/cmake_install.cmake:49 (file): 63829 file INSTALL cannot copy file 63830 "/tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build/bindings/ocaml/llvm/llvm.mli" >> 63831 to "/usr/lib/ocaml/llvm/llvm.mli": Permission denied. 63832 Call Stack (most recent call first): 63833 bindings/ocaml/cmake_install.cmake:42 (include) 63834 cmake_install.cmake:71 (include) 63835 63836 63837 make: *** [Makefile:143: install] Error 1 See build log for details: /tmp/mrez/spack-stage/spack-stage-llvm-master-3fkwhjsr4xfqqpv73rl7evztzvtk2rqr/spack-build-out.txt Traceback (most recent call last): File "/home/mrez/.local/src/spack/lib/spack/spack/build_environment.py", line 801, in child_process return_value = function() File "/home/mrez/.local/src/spack/lib/spack/spack/installer.py", line 1114, in build_process phase(pkg.spec, pkg.prefix) File "/home/mrez/.local/src/spack/lib/spack/spack/package.py", line 108, in phase_wrapper phase(spec, prefix) File "/home/mrez/.local/src/spack/lib/spack/spack/build_systems/cmake.py", line 353, in install inspect.getmodule(self).make(*self.install_targets) File "/home/mrez/.local/src/spack/lib/spack/spack/build_environment.py", line 131, in __call__ return super(MakeExecutable, self).__call__(*args, **kwargs) File "/home/mrez/.local/src/spack/lib/spack/spack/util/executable.py", line 189, in __call__ proc.returncode, long_msg) spack.util.executable.ProcessError: Command exited with status 2: 'make' '-j8' 'install'
non_priority
installation issue llvm master and spack version steps to reproduce the issue spack v install llvm master or llvm platform and user environment uname a ubuntu generic lsb release d description ubuntu the build process finishes fine but when it wants to install it fails due permission failure when it wants to copy some files to my system s usr lib let me know if i have failed to provide more information errors found in build log installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmtextapi a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmdlltooldriver a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmlibdriver a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmxray a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmwindowsmanifest a installing usr lib ocaml llvm llvm mli cmake error at bindings ocaml llvm cmake install cmake file file install cannot copy file tmp mrez spack stage spack stage llvm master spack build bindings ocaml llvm llvm mli to usr lib ocaml llvm llvm mli permission denied call stack most recent call first bindings ocaml cmake install cmake include cmake install cmake include make error see build log for details tmp mrez spack stage spack stage llvm master spack build out txt error failed to install llvm due to childerror processerror command exited with status make install errors found in build log installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmtextapi a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmdlltooldriver a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmlibdriver a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmxray a installing home mrez local src spack opt spack linux haswell gcc llvm master lib libllvmwindowsmanifest a installing usr lib ocaml llvm llvm mli cmake error at bindings ocaml llvm cmake install cmake file file install cannot copy file tmp mrez spack stage spack stage llvm master spack build bindings ocaml llvm llvm mli to usr lib ocaml llvm llvm mli permission denied call stack most recent call first bindings ocaml cmake install cmake include cmake install cmake include make error see build log for details tmp mrez spack stage spack stage llvm master spack build out txt traceback most recent call last file home mrez local src spack lib spack spack build environment py line in child process return value function file home mrez local src spack lib spack spack installer py line in build process phase pkg spec pkg prefix file home mrez local src spack lib spack spack package py line in phase wrapper phase spec prefix file home mrez local src spack lib spack spack build systems cmake py line in install inspect getmodule self make self install targets file home mrez local src spack lib spack spack build environment py line in call return super makeexecutable self call args kwargs file home mrez local src spack lib spack spack util executable py line in call proc returncode long msg spack util executable processerror command exited with status make install
0
66,540
8,951,581,659
IssuesEvent
2019-01-25 14:22:20
getsaf/shallow-render
https://api.github.com/repos/getsaf/shallow-render
closed
Example of using a Mat Dialog?
documentation
I looked in the stackblitz example and didn't see any nice example of dealing with dialogs. Think we could get a good example in the stackblitz when you get some time?
1.0
Example of using a Mat Dialog? - I looked in the stackblitz example and didn't see any nice example of dealing with dialogs. Think we could get a good example in the stackblitz when you get some time?
non_priority
example of using a mat dialog i looked in the stackblitz example and didn t see any nice example of dealing with dialogs think we could get a good example in the stackblitz when you get some time
0
26,925
12,498,249,929
IssuesEvent
2020-06-01 17:56:41
Azure/azure-rest-api-specs
https://api.github.com/repos/Azure/azure-rest-api-specs
closed
PostgreSQL Server create fails when infrastructureEncryption enabled
PostgreSQL Service Attention question
It seems that `infrastructureEncryption` is no longer supported. 1. create a postgresql server in `default` mode with `"infrastructureEncryption": "Enabled"` : Request: PUT /subscriptions/85b3dbca-5974-4067-9669-67a141095a76/resourceGroups/rg-wlynx/providers/Microsoft.DBforPostgreSQL/servers/psql-wlynx?api-version=2017-12-01 HTTP/1.1 ``` { "location": "eastus", "properties": { "administratorLogin": "psqladmin", "administratorLoginPassword": "LNg1gDLB4pUIUhO7", "createMode": "Default", "infrastructureEncryption": "Enabled", "minimalTlsVersion": "TLS1_2", "publicNetworkAccess": "Enabled", "sslEnforcement": "Enabled", "storageProfile": { "backupRetentionDays": 30, "geoRedundantBackup": "Enabled", "storageMB": 640000, "storageAutogrow": "Enabled" }, "version": "11" }, "sku": { "name": "GP_Gen5_2", "tier": "GeneralPurpose", "capacity": 2, "family": "Gen5" }, "tags": {} } ``` Response: 202 Accepted get the async operation link: https://management.azure.com/subscriptions/85b3dbca-5974-4067-9669-67a141095a76/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a0b9c97f-8183-4319-9ec9-a7aa93af0959?api-version=2017-12-01 { "name": "9a02c714-6cfb-4673-b0a0-7ce54f2c976e", "status": "Failed", "startTime": "2020-05-25T06:40:03.113Z", "error": { "code": "OperationTimedOut", "message": "The operation timed out and automatically rolled back. Please retry the operation." } } 2. create a postgresql server in `default` mode with `"infrastructureEncryption": "Disabled"` , success
1.0
PostgreSQL Server create fails when infrastructureEncryption enabled - It seems that `infrastructureEncryption` is no longer supported. 1. create a postgresql server in `default` mode with `"infrastructureEncryption": "Enabled"` : Request: PUT /subscriptions/85b3dbca-5974-4067-9669-67a141095a76/resourceGroups/rg-wlynx/providers/Microsoft.DBforPostgreSQL/servers/psql-wlynx?api-version=2017-12-01 HTTP/1.1 ``` { "location": "eastus", "properties": { "administratorLogin": "psqladmin", "administratorLoginPassword": "LNg1gDLB4pUIUhO7", "createMode": "Default", "infrastructureEncryption": "Enabled", "minimalTlsVersion": "TLS1_2", "publicNetworkAccess": "Enabled", "sslEnforcement": "Enabled", "storageProfile": { "backupRetentionDays": 30, "geoRedundantBackup": "Enabled", "storageMB": 640000, "storageAutogrow": "Enabled" }, "version": "11" }, "sku": { "name": "GP_Gen5_2", "tier": "GeneralPurpose", "capacity": 2, "family": "Gen5" }, "tags": {} } ``` Response: 202 Accepted get the async operation link: https://management.azure.com/subscriptions/85b3dbca-5974-4067-9669-67a141095a76/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a0b9c97f-8183-4319-9ec9-a7aa93af0959?api-version=2017-12-01 { "name": "9a02c714-6cfb-4673-b0a0-7ce54f2c976e", "status": "Failed", "startTime": "2020-05-25T06:40:03.113Z", "error": { "code": "OperationTimedOut", "message": "The operation timed out and automatically rolled back. Please retry the operation." } } 2. create a postgresql server in `default` mode with `"infrastructureEncryption": "Disabled"` , success
non_priority
postgresql server create fails when infrastructureencryption enabled it seems that infrastructureencryption is no longer supported create a postgresql server in default mode with infrastructureencryption enabled request put subscriptions resourcegroups rg wlynx providers microsoft dbforpostgresql servers psql wlynx api version http location eastus properties administratorlogin psqladmin administratorloginpassword createmode default infrastructureencryption enabled minimaltlsversion publicnetworkaccess enabled sslenforcement enabled storageprofile backupretentiondays georedundantbackup enabled storagemb storageautogrow enabled version sku name gp tier generalpurpose capacity family tags response accepted get the async operation link name status failed starttime error code operationtimedout message the operation timed out and automatically rolled back please retry the operation create a postgresql server in default mode with infrastructureencryption disabled success
0
43,885
9,524,015,458
IssuesEvent
2019-04-27 22:29:41
openbmc/openbmc
https://api.github.com/repos/openbmc/openbmc
closed
Upstream the OCCFIFO device driver
code-review linux driver stale
Ensure the OCCFIFO device driver makes it into upstream Linux.
1.0
Upstream the OCCFIFO device driver - Ensure the OCCFIFO device driver makes it into upstream Linux.
non_priority
upstream the occfifo device driver ensure the occfifo device driver makes it into upstream linux
0
306,932
23,176,165,704
IssuesEvent
2022-07-31 12:57:59
John15321/rust-pip
https://api.github.com/repos/John15321/rust-pip
opened
Investigate Python packaging
documentation Investigation
Investigate Python packaging: * Investigate how packages are built/created * Investigate how packages are downloaded and then used/put into the right place * Investigate how to communicate and work with PyPi (and later other packages registered for Python)
1.0
Investigate Python packaging - Investigate Python packaging: * Investigate how packages are built/created * Investigate how packages are downloaded and then used/put into the right place * Investigate how to communicate and work with PyPi (and later other packages registered for Python)
non_priority
investigate python packaging investigate python packaging investigate how packages are built created investigate how packages are downloaded and then used put into the right place investigate how to communicate and work with pypi and later other packages registered for python
0
154,013
12,180,686,541
IssuesEvent
2020-04-28 12:53:16
scalikejdbc/scalikejdbc
https://api.github.com/repos/scalikejdbc/scalikejdbc
closed
Issue migrating scalatest 3.0.8 => 3.1.1 with scalikejdbc 3.4.1
question test
I am currently migrating `scalatest` from 3.0.8 to 3.1.1 with `scalikejdbc` 3.4.1. For autorollbacking, I import the trait `AutoRollback` ```scala import scalikejdbc.scalatest._ import org.scalatest.flatspec.FixtureAnyFlatSpec import org.scalatest.matchers.should.Matchers class FooTest extends FixtureAnyFlatSpec with AutoRollback with Matchers {} ``` This currently gives the following error: > package.FooTest *** ABORTED *** (1 second, 308 milliseconds) java.lang.NoSuchMethodError: scalikejdbc.scalatest.AutoRollback.withFixture$(Lscalikejdbc/scalatest/AutoRollback;Lorg/scalatest/FixtureTestSuite$OneArgTest;)Lorg/scalatest/Outcome; Which seems weird because `scalikejdbc` 3.4.1 seems compatible with `scalatest` 3.1.1 Any hint for where the error might come from ?
1.0
Issue migrating scalatest 3.0.8 => 3.1.1 with scalikejdbc 3.4.1 - I am currently migrating `scalatest` from 3.0.8 to 3.1.1 with `scalikejdbc` 3.4.1. For autorollbacking, I import the trait `AutoRollback` ```scala import scalikejdbc.scalatest._ import org.scalatest.flatspec.FixtureAnyFlatSpec import org.scalatest.matchers.should.Matchers class FooTest extends FixtureAnyFlatSpec with AutoRollback with Matchers {} ``` This currently gives the following error: > package.FooTest *** ABORTED *** (1 second, 308 milliseconds) java.lang.NoSuchMethodError: scalikejdbc.scalatest.AutoRollback.withFixture$(Lscalikejdbc/scalatest/AutoRollback;Lorg/scalatest/FixtureTestSuite$OneArgTest;)Lorg/scalatest/Outcome; Which seems weird because `scalikejdbc` 3.4.1 seems compatible with `scalatest` 3.1.1 Any hint for where the error might come from ?
non_priority
issue migrating scalatest with scalikejdbc i am currently migrating scalatest from to with scalikejdbc for autorollbacking i import the trait autorollback scala import scalikejdbc scalatest import org scalatest flatspec fixtureanyflatspec import org scalatest matchers should matchers class footest extends fixtureanyflatspec with autorollback with matchers this currently gives the following error package footest aborted second milliseconds java lang nosuchmethoderror scalikejdbc scalatest autorollback withfixture lscalikejdbc scalatest autorollback lorg scalatest fixturetestsuite oneargtest lorg scalatest outcome which seems weird because scalikejdbc seems compatible with scalatest any hint for where the error might come from
0
88,310
8,138,100,483
IssuesEvent
2018-08-20 13:52:23
LLK/scratch-gui
https://api.github.com/repos/LLK/scratch-gui
closed
Issues from Smoke Test 8/3/18
smoke-testing
* [ ] “You totally can Drag Kiran” text is cut off in the “all the blocks” project on Chromebook Chrome | Andrew, Bryce, Connor ![image7](https://user-images.githubusercontent.com/1088291/43662304-707739ca-9733-11e8-8cf5-f91e8b4fd273.png) * [ ] Color Picker Sliders in paint editor (bitmap) can select the entire stage + sprite pane and surrounding area | Karishma ![image9](https://user-images.githubusercontent.com/1088291/43662363-a3e513c2-9733-11e8-857b-b3752793fb7b.png) * [ ] Setting brightness to 0 in color picker (paint editor) discards hue and saturation values, which makes me sad :( | Connor * [ ] Story-C-2 costume renders on the stage as a triangle on load. It renders correctly after being affected by the paint editor in any way (e.g. size, position, rotation) | Ray * [ ] Edge+touch: story-C-2 costume does not show up on stage at all | Connor * [ ] Dragging sprite clips to roughly stage-sized mask, even if sprite was not clipped before dragging | Ben ![image6](https://user-images.githubusercontent.com/1088291/43662567-5771e2f8-9734-11e8-9d78-8e3e8e557d5c.png) Device | Browser | Name -- | -- | -- Windows* | Chrome | Connor Mac | Chrome | Bryce iPad** | Safari | Eric R Chromebook | Chrome | Andrew Windows* | Firefox | Carl Android Tablet | Chrome | Ray Windows* | Edge |   Mac | Safari | Karishma
1.0
Issues from Smoke Test 8/3/18 - * [ ] “You totally can Drag Kiran” text is cut off in the “all the blocks” project on Chromebook Chrome | Andrew, Bryce, Connor ![image7](https://user-images.githubusercontent.com/1088291/43662304-707739ca-9733-11e8-8cf5-f91e8b4fd273.png) * [ ] Color Picker Sliders in paint editor (bitmap) can select the entire stage + sprite pane and surrounding area | Karishma ![image9](https://user-images.githubusercontent.com/1088291/43662363-a3e513c2-9733-11e8-857b-b3752793fb7b.png) * [ ] Setting brightness to 0 in color picker (paint editor) discards hue and saturation values, which makes me sad :( | Connor * [ ] Story-C-2 costume renders on the stage as a triangle on load. It renders correctly after being affected by the paint editor in any way (e.g. size, position, rotation) | Ray * [ ] Edge+touch: story-C-2 costume does not show up on stage at all | Connor * [ ] Dragging sprite clips to roughly stage-sized mask, even if sprite was not clipped before dragging | Ben ![image6](https://user-images.githubusercontent.com/1088291/43662567-5771e2f8-9734-11e8-9d78-8e3e8e557d5c.png) Device | Browser | Name -- | -- | -- Windows* | Chrome | Connor Mac | Chrome | Bryce iPad** | Safari | Eric R Chromebook | Chrome | Andrew Windows* | Firefox | Carl Android Tablet | Chrome | Ray Windows* | Edge |   Mac | Safari | Karishma
non_priority
issues from smoke test “you totally can drag kiran” text is cut off in the “all the blocks” project on chromebook chrome andrew bryce connor color picker sliders in paint editor bitmap can select the entire stage sprite pane and surrounding area karishma setting brightness to in color picker paint editor discards hue and saturation values which makes me sad connor story c costume renders on the stage as a triangle on load it renders correctly after being affected by the paint editor in any way e g size position rotation ray edge touch story c costume does not show up on stage at all connor dragging sprite clips to roughly stage sized mask even if sprite was not clipped before dragging ben device browser name windows chrome connor mac chrome bryce ipad safari eric r chromebook chrome andrew windows firefox carl android tablet chrome ray windows edge   mac safari karishma
0
224,179
17,669,528,372
IssuesEvent
2021-08-23 02:40:15
dapr/dapr
https://api.github.com/repos/dapr/dapr
closed
Project includes a dependancy that has a license that forbids its use
good first issue P1 size/XS triaged/resolved kind/compliance area/test/unit kind/devExperience
Dapr depends on [bouk/monkey](https://github.com/bouk/monkey), which has a [license that forbids anybody to use it](https://github.com/bouk/monkey/blob/master/LICENSE.md). The license is as follows: ``` Copyright Bouke van der Bijl I do not give anyone permissions to use this tool for any purpose. Don't use it. I’m not interested in changing this license. Please don’t ask. ``` The package seems to be used in pkg/components/standalone_loader_test.go.
1.0
Project includes a dependancy that has a license that forbids its use - Dapr depends on [bouk/monkey](https://github.com/bouk/monkey), which has a [license that forbids anybody to use it](https://github.com/bouk/monkey/blob/master/LICENSE.md). The license is as follows: ``` Copyright Bouke van der Bijl I do not give anyone permissions to use this tool for any purpose. Don't use it. I’m not interested in changing this license. Please don’t ask. ``` The package seems to be used in pkg/components/standalone_loader_test.go.
non_priority
project includes a dependancy that has a license that forbids its use dapr depends on which has a the license is as follows copyright bouke van der bijl i do not give anyone permissions to use this tool for any purpose don t use it i’m not interested in changing this license please don’t ask the package seems to be used in pkg components standalone loader test go
0
59,069
8,320,895,660
IssuesEvent
2018-09-25 21:40:29
lentendu/DeltaMP
https://api.github.com/repos/lentendu/DeltaMP
closed
Choice between pre-clustering algorithm
configuration file documentation steps
In GitLab by @lentendu on Feb 15, 2018, 14:20 Allow selection between MOTHUR pre.cluster or cd-hit-454 for preclustering step
1.0
Choice between pre-clustering algorithm - In GitLab by @lentendu on Feb 15, 2018, 14:20 Allow selection between MOTHUR pre.cluster or cd-hit-454 for preclustering step
non_priority
choice between pre clustering algorithm in gitlab by lentendu on feb allow selection between mothur pre cluster or cd hit for preclustering step
0
5,772
21,041,095,083
IssuesEvent
2022-03-31 12:24:46
gchq/gaffer-docker
https://api.github.com/repos/gchq/gaffer-docker
closed
CI tests might run against old container images
bug automation
If a developer releases a new version of a container, but forgets to update the version referenced in Helm Charts that deploy it, then the tests will be run using the previous version of the container. e.g. update `HADOOP_VERSION` in the [HDFS Dockerfile](https://github.com/gchq/gaffer-docker/blob/9d9b59ffdeac8a65bf93ea6ad0e0b49718ea35fa/docker/hdfs/Dockerfile#L21), but forget to change it in the [HDFS Helm Chart](https://github.com/gchq/gaffer-docker/blob/9d9b59ffdeac8a65bf93ea6ad0e0b49718ea35fa/kubernetes/hdfs/values.yaml#L22). The CI/CD scripts should force an update of the tags to ensure the new versions of the containers are tested.
1.0
CI tests might run against old container images - If a developer releases a new version of a container, but forgets to update the version referenced in Helm Charts that deploy it, then the tests will be run using the previous version of the container. e.g. update `HADOOP_VERSION` in the [HDFS Dockerfile](https://github.com/gchq/gaffer-docker/blob/9d9b59ffdeac8a65bf93ea6ad0e0b49718ea35fa/docker/hdfs/Dockerfile#L21), but forget to change it in the [HDFS Helm Chart](https://github.com/gchq/gaffer-docker/blob/9d9b59ffdeac8a65bf93ea6ad0e0b49718ea35fa/kubernetes/hdfs/values.yaml#L22). The CI/CD scripts should force an update of the tags to ensure the new versions of the containers are tested.
non_priority
ci tests might run against old container images if a developer releases a new version of a container but forgets to update the version referenced in helm charts that deploy it then the tests will be run using the previous version of the container e g update hadoop version in the but forget to change it in the the ci cd scripts should force an update of the tags to ensure the new versions of the containers are tested
0
315,237
27,057,958,374
IssuesEvent
2023-02-13 17:26:41
pyscript/pyscript
https://api.github.com/repos/pyscript/pyscript
closed
[Discussion] Examples and their use for pyscript.net, locally, and for testing
tag: tooling tag: tests waiting on feedback backlog
### Checklist - [X] I added a descriptive title - [X] I searched for other issues and couldn't find a duplication - [X] I already searched in Google and didn't find any good information or help ### What is the issue/comment/problem? The way we've handled examples thus far has been a bit messy. **Current state of examples** is that they exist in the root directory and point to `pyscript.net/latest`. There are two issues to separate out here: ## Where should the examples directory live? The is the question that needs answering. Originally it was in `pyscriptjs/` or `pyscriptjs/build/` - I don't recall now - and was moved to the root directory to be more obvious to users who wouldn't necessarily expect to find it nested further down. It also made for cleaner CI. Once this move was made however `make examples` was created in the [Makefile](https://github.com/pyscript/pyscript/blob/1c0be16f30961c234f0529b189e8ae685ece1474/pyscriptjs/Makefile#L61) to essentially create a local copy to run tests against, among other things. `make examples` is complex and prone to breaking though because it uses a `sed` command to accomplish all this. Later came `run examples`. In my opinion this has all led to more confusion than anything. I also have a question: - Do examples have to live in `pyscriptjs/` or be in the `build/` directory? Why can't we use relative pathing to point the local build of pyscript to examples in directories above like `../../examples/`? Particularly if those examples are similarly pointing back to that same local build (see below)? Or am I missing something? ## Should example point to a local build or to pyscript.net? This question has been resolved but is here for context. There are 3 use cases for examples at the moment: 1. Show off pyscript on pyscript.net/examples 2. Run examples against a branch locally from a cloned repo 3. Run tests against examples in a CI environment Currently they point to pyscript.net/latest/ but this only makes sense for the examples published on pyscript.net via [this workflow.](https://github.com/pyscript/pyscript/blob/main/.github/workflows/sync-examples.yml). This is purely so that the website can function. But case # 2 and 3 require the example to point to a locally built file, typically built from the `main` branch or a feature branch. That's why I had create this [PR](https://github.com/pyscript/pyscript/pull/696) which would make local builds the "default" path to find `pyscript.js` and `pyscript.css`. I hoped by that doing this we would **be able to remove `make examples`** and simplify the `Makefile`. To [publish](https://github.com/pyscript/pyscript/blob/main/.github/workflows/sync-examples.yml) examples to the website I would then change the local path to `pyscript.net/latest/pyscript.js` via CI automation, which is an easier and more predictable piece of automation than trying to control what local users or tests are doing.
1.0
[Discussion] Examples and their use for pyscript.net, locally, and for testing - ### Checklist - [X] I added a descriptive title - [X] I searched for other issues and couldn't find a duplication - [X] I already searched in Google and didn't find any good information or help ### What is the issue/comment/problem? The way we've handled examples thus far has been a bit messy. **Current state of examples** is that they exist in the root directory and point to `pyscript.net/latest`. There are two issues to separate out here: ## Where should the examples directory live? The is the question that needs answering. Originally it was in `pyscriptjs/` or `pyscriptjs/build/` - I don't recall now - and was moved to the root directory to be more obvious to users who wouldn't necessarily expect to find it nested further down. It also made for cleaner CI. Once this move was made however `make examples` was created in the [Makefile](https://github.com/pyscript/pyscript/blob/1c0be16f30961c234f0529b189e8ae685ece1474/pyscriptjs/Makefile#L61) to essentially create a local copy to run tests against, among other things. `make examples` is complex and prone to breaking though because it uses a `sed` command to accomplish all this. Later came `run examples`. In my opinion this has all led to more confusion than anything. I also have a question: - Do examples have to live in `pyscriptjs/` or be in the `build/` directory? Why can't we use relative pathing to point the local build of pyscript to examples in directories above like `../../examples/`? Particularly if those examples are similarly pointing back to that same local build (see below)? Or am I missing something? ## Should example point to a local build or to pyscript.net? This question has been resolved but is here for context. There are 3 use cases for examples at the moment: 1. Show off pyscript on pyscript.net/examples 2. Run examples against a branch locally from a cloned repo 3. Run tests against examples in a CI environment Currently they point to pyscript.net/latest/ but this only makes sense for the examples published on pyscript.net via [this workflow.](https://github.com/pyscript/pyscript/blob/main/.github/workflows/sync-examples.yml). This is purely so that the website can function. But case # 2 and 3 require the example to point to a locally built file, typically built from the `main` branch or a feature branch. That's why I had create this [PR](https://github.com/pyscript/pyscript/pull/696) which would make local builds the "default" path to find `pyscript.js` and `pyscript.css`. I hoped by that doing this we would **be able to remove `make examples`** and simplify the `Makefile`. To [publish](https://github.com/pyscript/pyscript/blob/main/.github/workflows/sync-examples.yml) examples to the website I would then change the local path to `pyscript.net/latest/pyscript.js` via CI automation, which is an easier and more predictable piece of automation than trying to control what local users or tests are doing.
non_priority
examples and their use for pyscript net locally and for testing checklist i added a descriptive title i searched for other issues and couldn t find a duplication i already searched in google and didn t find any good information or help what is the issue comment problem the way we ve handled examples thus far has been a bit messy current state of examples is that they exist in the root directory and point to pyscript net latest there are two issues to separate out here where should the examples directory live the is the question that needs answering originally it was in pyscriptjs or pyscriptjs build i don t recall now and was moved to the root directory to be more obvious to users who wouldn t necessarily expect to find it nested further down it also made for cleaner ci once this move was made however make examples was created in the to essentially create a local copy to run tests against among other things make examples is complex and prone to breaking though because it uses a sed command to accomplish all this later came run examples in my opinion this has all led to more confusion than anything i also have a question do examples have to live in pyscriptjs or be in the build directory why can t we use relative pathing to point the local build of pyscript to examples in directories above like examples particularly if those examples are similarly pointing back to that same local build see below or am i missing something should example point to a local build or to pyscript net this question has been resolved but is here for context there are use cases for examples at the moment show off pyscript on pyscript net examples run examples against a branch locally from a cloned repo run tests against examples in a ci environment currently they point to pyscript net latest but this only makes sense for the examples published on pyscript net via this is purely so that the website can function but case and require the example to point to a locally built file typically built from the main branch or a feature branch that s why i had create this which would make local builds the default path to find pyscript js and pyscript css i hoped by that doing this we would be able to remove make examples and simplify the makefile to examples to the website i would then change the local path to pyscript net latest pyscript js via ci automation which is an easier and more predictable piece of automation than trying to control what local users or tests are doing
0
157,554
12,378,385,193
IssuesEvent
2020-05-19 10:35:48
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
opened
(warning) Member variable 'VelocityProfile_TrapHalf
bug cppcheck static analysis testing triage
```yaml { "id": 1, "title": "(warning) Member variable 'VelocityProfile_TrapHalf", "type": "bug", "description": "[src/orocos_kinematics_dynamics/orocos_kdl/src/velocityprofile_traphalf.cpp:50]: (warning) Member variable 'VelocityProfile_TrapHalf::startpos' is not initialized in the constructor.", "cwe": "None", "cve": "None", "keywords": [ "cppcheck", "static analysis", "testing", "triage", "bug" ], "system": "src/orocos_kinematics_dynamics/orocos_kdl/src/velocityprofile_traphalf.cpp", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "N/A", "architectural-location": "N/A", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-19 (10:35)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-19 (10:35)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
1.0
(warning) Member variable 'VelocityProfile_TrapHalf - ```yaml { "id": 1, "title": "(warning) Member variable 'VelocityProfile_TrapHalf", "type": "bug", "description": "[src/orocos_kinematics_dynamics/orocos_kdl/src/velocityprofile_traphalf.cpp:50]: (warning) Member variable 'VelocityProfile_TrapHalf::startpos' is not initialized in the constructor.", "cwe": "None", "cve": "None", "keywords": [ "cppcheck", "static analysis", "testing", "triage", "bug" ], "system": "src/orocos_kinematics_dynamics/orocos_kdl/src/velocityprofile_traphalf.cpp", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "N/A", "architectural-location": "N/A", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-19 (10:35)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-19 (10:35)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
non_priority
warning member variable velocityprofile traphalf yaml id title warning member variable velocityprofile traphalf type bug description warning member variable velocityprofile traphalf startpos is not initialized in the constructor cwe none cve none keywords cppcheck static analysis testing triage bug system src orocos kinematics dynamics orocos kdl src velocityprofile traphalf cpp vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity n a architectural location n a application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace reproduction see artifacts below if available reproduction image exploitation description exploitation image exploitation vector mitigation description pull request date mitigation
0
417,723
28,110,850,188
IssuesEvent
2023-03-31 07:02:56
Beebeeoii/ped
https://api.github.com/repos/Beebeeoii/ped
opened
Inaccurate logs upon `exit`
severity.VeryLow type.DocumentationBug
A very minor nit that caught my eye when I tried exiting the app: it prints `Stopping Address Book` which I believe should be `Stopping MedInfo` instead ``` INFO: ----------------[USER COMMAND][exit] Mar 31, 2023 3:00:28 PM seedu.medinfo.ui.MainWindow executeCommand INFO: Result: Exiting MedInfo as requested ... Mar 31, 2023 3:00:28 PM seedu.medinfo.MainApp stop INFO: ============================ [ Stopping Address Book ] ============================= ``` <!--session: 1680242400187-ff32ffd7-815d-4e9e-9984-e72f8863902c--> <!--Version: Web v3.4.7-->
1.0
Inaccurate logs upon `exit` - A very minor nit that caught my eye when I tried exiting the app: it prints `Stopping Address Book` which I believe should be `Stopping MedInfo` instead ``` INFO: ----------------[USER COMMAND][exit] Mar 31, 2023 3:00:28 PM seedu.medinfo.ui.MainWindow executeCommand INFO: Result: Exiting MedInfo as requested ... Mar 31, 2023 3:00:28 PM seedu.medinfo.MainApp stop INFO: ============================ [ Stopping Address Book ] ============================= ``` <!--session: 1680242400187-ff32ffd7-815d-4e9e-9984-e72f8863902c--> <!--Version: Web v3.4.7-->
non_priority
inaccurate logs upon exit a very minor nit that caught my eye when i tried exiting the app it prints stopping address book which i believe should be stopping medinfo instead info mar pm seedu medinfo ui mainwindow executecommand info result exiting medinfo as requested mar pm seedu medinfo mainapp stop info
0
224,582
17,760,192,811
IssuesEvent
2021-08-29 14:50:07
Wolfst0rm/ArmorStandEditor-Issues
https://api.github.com/repos/Wolfst0rm/ArmorStandEditor-Issues
opened
Armorstand flint conflict
P1: To Be Tested
### Expected behavior Flint should not go into the armorstand without maybe using the equipment setting itself. Annoying when working on the armorstand. ### Observed/Actual behavior If armorstands have an item in either of the hand slots, selecting the armorstand with offhand key will place the flint in a slot of the armorstand. ### Steps/models to reproduce - ### Plugin list - ### Plugin Version 1.17.1-29.1 ### Server Version This server is running Purpur version git-Purpur-1351 (MC: 1.17.1) (Implementing API version 1.17.1-R0.1-SNAPSHOT) (Git: 8fc7931 on ver/1.17.1) You are 3 version(s) behind Previous version: git-Purpur-1341 (MC: 1.17.1) ### Other _No response_
1.0
Armorstand flint conflict - ### Expected behavior Flint should not go into the armorstand without maybe using the equipment setting itself. Annoying when working on the armorstand. ### Observed/Actual behavior If armorstands have an item in either of the hand slots, selecting the armorstand with offhand key will place the flint in a slot of the armorstand. ### Steps/models to reproduce - ### Plugin list - ### Plugin Version 1.17.1-29.1 ### Server Version This server is running Purpur version git-Purpur-1351 (MC: 1.17.1) (Implementing API version 1.17.1-R0.1-SNAPSHOT) (Git: 8fc7931 on ver/1.17.1) You are 3 version(s) behind Previous version: git-Purpur-1341 (MC: 1.17.1) ### Other _No response_
non_priority
armorstand flint conflict expected behavior flint should not go into the armorstand without maybe using the equipment setting itself annoying when working on the armorstand observed actual behavior if armorstands have an item in either of the hand slots selecting the armorstand with offhand key will place the flint in a slot of the armorstand steps models to reproduce plugin list plugin version server version this server is running purpur version git purpur mc implementing api version snapshot git on ver you are version s behind previous version git purpur mc other no response
0
12,159
5,156,861,206
IssuesEvent
2017-01-16 02:36:42
tensorflow/models
https://api.github.com/repos/tensorflow/models
closed
Missing dependency declaration issues when building Syntaxnet: undeclared inclusion(s) in rule '@protobuf//:internal/_api_implementation.so'
awaiting response type:build/install
#models/syntaxnet The error msg: this rule is missing dependency declarations for the following files included by 'external/protobuf/python/google/protobuf/internal/api_implementation.cc': his rule is missing dependency declarations for the following files included by 'external/protobuf/python/google/protobuf/internal/api_implementation.cc': '/export/apps/python/2.7.11/include/python2.7/Python.h' '/export/apps/python/2.7.11/include/python2.7/patchlevel.h' '/export/apps/python/2.7.11/include/python2.7/pyconfig.h' '/export/apps/python/2.7.11/include/python2.7/pymacconfig.h' '/export/apps/python/2.7.11/include/python2.7/pyport.h' '/export/apps/python/2.7.11/include/python2.7/pymath.h' '/export/apps/python/2.7.11/include/python2.7/pymem.h' '/export/apps/python/2.7.11/include/python2.7/object.h' '/export/apps/python/2.7.11/include/python2.7/objimpl.h' '/export/apps/python/2.7.11/include/python2.7/pydebug.h' '/export/apps/python/2.7.11/include/python2.7/unicodeobject.h' '/export/apps/python/2.7.11/include/python2.7/intobject.h' '/export/apps/python/2.7.11/include/python2.7/boolobject.h' '/export/apps/python/2.7.11/include/python2.7/longobject.h' '/export/apps/python/2.7.11/include/python2.7/floatobject.h' '/export/apps/python/2.7.11/include/python2.7/complexobject.h' '/export/apps/python/2.7.11/include/python2.7/rangeobject.h' '/export/apps/python/2.7.11/include/python2.7/stringobject.h' '/export/apps/python/2.7.11/include/python2.7/memoryobject.h' '/export/apps/python/2.7.11/include/python2.7/bufferobject.h' '/export/apps/python/2.7.11/include/python2.7/bytesobject.h' '/export/apps/python/2.7.11/include/python2.7/bytearrayobject.h' '/export/apps/python/2.7.11/include/python2.7/tupleobject.h' '/export/apps/python/2.7.11/include/python2.7/listobject.h' '/export/apps/python/2.7.11/include/python2.7/dictobject.h' '/export/apps/python/2.7.11/include/python2.7/enumobject.h' '/export/apps/python/2.7.11/include/python2.7/setobject.h' '/export/apps/python/2.7.11/include/python2.7/methodobject.h' '/export/apps/python/2.7.11/include/python2.7/moduleobject.h' '/export/apps/python/2.7.11/include/python2.7/funcobject.h' '/export/apps/python/2.7.11/include/python2.7/classobject.h' pip list: asciitree (0.3.3) enum34 (1.1.6) funcsigs (1.0.2) futures (3.0.5) grpcio (1.0.1) grpcio-tools (1.0.1) mock (2.0.0) nose (1.3.7) numpy (1.11.2) pbr (1.10.0) pip (9.0.1) protobuf (3.1.0) setuptools (29.0.1) six (1.10.0) tensorflow (0.11.0) wheel (0.29.0) bazel version Build label: 0.4.0-2016-12-02 (@30ae806) Build target: bazel-out/local-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Fri Dec 2 23:44:21 2016 (1480722261) Build timestamp: 1480722261 Build timestamp as int: 1480722261 Not sure which dependency or lib is missing? Any insights?
1.0
Missing dependency declaration issues when building Syntaxnet: undeclared inclusion(s) in rule '@protobuf//:internal/_api_implementation.so' - #models/syntaxnet The error msg: this rule is missing dependency declarations for the following files included by 'external/protobuf/python/google/protobuf/internal/api_implementation.cc': his rule is missing dependency declarations for the following files included by 'external/protobuf/python/google/protobuf/internal/api_implementation.cc': '/export/apps/python/2.7.11/include/python2.7/Python.h' '/export/apps/python/2.7.11/include/python2.7/patchlevel.h' '/export/apps/python/2.7.11/include/python2.7/pyconfig.h' '/export/apps/python/2.7.11/include/python2.7/pymacconfig.h' '/export/apps/python/2.7.11/include/python2.7/pyport.h' '/export/apps/python/2.7.11/include/python2.7/pymath.h' '/export/apps/python/2.7.11/include/python2.7/pymem.h' '/export/apps/python/2.7.11/include/python2.7/object.h' '/export/apps/python/2.7.11/include/python2.7/objimpl.h' '/export/apps/python/2.7.11/include/python2.7/pydebug.h' '/export/apps/python/2.7.11/include/python2.7/unicodeobject.h' '/export/apps/python/2.7.11/include/python2.7/intobject.h' '/export/apps/python/2.7.11/include/python2.7/boolobject.h' '/export/apps/python/2.7.11/include/python2.7/longobject.h' '/export/apps/python/2.7.11/include/python2.7/floatobject.h' '/export/apps/python/2.7.11/include/python2.7/complexobject.h' '/export/apps/python/2.7.11/include/python2.7/rangeobject.h' '/export/apps/python/2.7.11/include/python2.7/stringobject.h' '/export/apps/python/2.7.11/include/python2.7/memoryobject.h' '/export/apps/python/2.7.11/include/python2.7/bufferobject.h' '/export/apps/python/2.7.11/include/python2.7/bytesobject.h' '/export/apps/python/2.7.11/include/python2.7/bytearrayobject.h' '/export/apps/python/2.7.11/include/python2.7/tupleobject.h' '/export/apps/python/2.7.11/include/python2.7/listobject.h' '/export/apps/python/2.7.11/include/python2.7/dictobject.h' '/export/apps/python/2.7.11/include/python2.7/enumobject.h' '/export/apps/python/2.7.11/include/python2.7/setobject.h' '/export/apps/python/2.7.11/include/python2.7/methodobject.h' '/export/apps/python/2.7.11/include/python2.7/moduleobject.h' '/export/apps/python/2.7.11/include/python2.7/funcobject.h' '/export/apps/python/2.7.11/include/python2.7/classobject.h' pip list: asciitree (0.3.3) enum34 (1.1.6) funcsigs (1.0.2) futures (3.0.5) grpcio (1.0.1) grpcio-tools (1.0.1) mock (2.0.0) nose (1.3.7) numpy (1.11.2) pbr (1.10.0) pip (9.0.1) protobuf (3.1.0) setuptools (29.0.1) six (1.10.0) tensorflow (0.11.0) wheel (0.29.0) bazel version Build label: 0.4.0-2016-12-02 (@30ae806) Build target: bazel-out/local-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Fri Dec 2 23:44:21 2016 (1480722261) Build timestamp: 1480722261 Build timestamp as int: 1480722261 Not sure which dependency or lib is missing? Any insights?
non_priority
missing dependency declaration issues when building syntaxnet undeclared inclusion s in rule protobuf internal api implementation so models syntaxnet the error msg this rule is missing dependency declarations for the following files included by external protobuf python google protobuf internal api implementation cc his rule is missing dependency declarations for the following files included by external protobuf python google protobuf internal api implementation cc export apps python include python h export apps python include patchlevel h export apps python include pyconfig h export apps python include pymacconfig h export apps python include pyport h export apps python include pymath h export apps python include pymem h export apps python include object h export apps python include objimpl h export apps python include pydebug h export apps python include unicodeobject h export apps python include intobject h export apps python include boolobject h export apps python include longobject h export apps python include floatobject h export apps python include complexobject h export apps python include rangeobject h export apps python include stringobject h export apps python include memoryobject h export apps python include bufferobject h export apps python include bytesobject h export apps python include bytearrayobject h export apps python include tupleobject h export apps python include listobject h export apps python include dictobject h export apps python include enumobject h export apps python include setobject h export apps python include methodobject h export apps python include moduleobject h export apps python include funcobject h export apps python include classobject h pip list asciitree funcsigs futures grpcio grpcio tools mock nose numpy pbr pip protobuf setuptools six tensorflow wheel bazel version build label build target bazel out local opt bin src main java com google devtools build lib bazel bazelserver deploy jar build time fri dec build timestamp build timestamp as int not sure which dependency or lib is missing any insights
0
309,863
23,308,973,116
IssuesEvent
2022-08-08 06:10:32
hwameistor/hwameistor
https://api.github.com/repos/hwameistor/hwameistor
closed
[Doc] Need a method of configuring LocalDiskClaim (LDC) in batch
documentation enhancement
Currently, there are two ways to configure LDC 1. During installation, by helm chart's `storageNodes[]` 2. After installation, by yaml's `kind: LocalDiskClaim` Both have drawbacks: Method 1 is a batch process, but cannot be modified after installation because `helm upgrade` ignores all CRDs and their instances. Therefore it is not suitable for node expansion and reduction. Mothod 2 can be configured anytime but is not a batch process, therefore each node needs to be configured with a separate yaml. We need a new method to configure LDC in batch both during installation and after it. @SSmallMonster please comment
1.0
[Doc] Need a method of configuring LocalDiskClaim (LDC) in batch - Currently, there are two ways to configure LDC 1. During installation, by helm chart's `storageNodes[]` 2. After installation, by yaml's `kind: LocalDiskClaim` Both have drawbacks: Method 1 is a batch process, but cannot be modified after installation because `helm upgrade` ignores all CRDs and their instances. Therefore it is not suitable for node expansion and reduction. Mothod 2 can be configured anytime but is not a batch process, therefore each node needs to be configured with a separate yaml. We need a new method to configure LDC in batch both during installation and after it. @SSmallMonster please comment
non_priority
need a method of configuring localdiskclaim ldc in batch currently there are two ways to configure ldc during installation by helm chart s storagenodes after installation by yaml s kind localdiskclaim both have drawbacks method is a batch process but cannot be modified after installation because helm upgrade ignores all crds and their instances therefore it is not suitable for node expansion and reduction mothod can be configured anytime but is not a batch process therefore each node needs to be configured with a separate yaml we need a new method to configure ldc in batch both during installation and after it ssmallmonster please comment
0
367,589
25,752,104,966
IssuesEvent
2022-12-08 13:58:58
nilearn/nilearn
https://api.github.com/repos/nilearn/nilearn
closed
Add "add changelog entry" to auto-comment PR template
Documentation Good first issue
I think it would be great to add an item about adding a whatsnew/changelog entry to the checklist in the [auto-comment workflow](https://github.com/nilearn/nilearn/blob/0eb1340212c6db5aac07ae31b3061bde5c9f7432/.github/workflows/auto-comment.yml). I am primarily requesting this because I often forget to add a whatsnew entry, and have to be reminded by my PRs' reviewers.
1.0
Add "add changelog entry" to auto-comment PR template - I think it would be great to add an item about adding a whatsnew/changelog entry to the checklist in the [auto-comment workflow](https://github.com/nilearn/nilearn/blob/0eb1340212c6db5aac07ae31b3061bde5c9f7432/.github/workflows/auto-comment.yml). I am primarily requesting this because I often forget to add a whatsnew entry, and have to be reminded by my PRs' reviewers.
non_priority
add add changelog entry to auto comment pr template i think it would be great to add an item about adding a whatsnew changelog entry to the checklist in the i am primarily requesting this because i often forget to add a whatsnew entry and have to be reminded by my prs reviewers
0
59,059
11,942,322,059
IssuesEvent
2020-04-02 20:04:54
microsoft/vscode-python
https://api.github.com/repos/microsoft/vscode-python
closed
How can I use autopep8 to code formatting in Jupyter Notebooks?
data science ds-vscode-notebook type-enhancement
# Feature: Notebook Editor, Interactive Window, Python Editor cells <!----------------------------------------------------------------------------------------------- ***PLEASE READ*** If this issue doesn't relate to Jupyter Notebooks, Python Interactive Window features or other "cell"-based features of the Python extension, please use the main Python feature request template instead of this one. ***Thank you!*** -------------------------------------------------------------------------------------------------> ## Description Microsoft Data Science for VS Code Engineering Team: @rchiodo, @IanMatthewHuff, @DavidKutu, @DonJayamanne, @greazer
1.0
How can I use autopep8 to code formatting in Jupyter Notebooks? - # Feature: Notebook Editor, Interactive Window, Python Editor cells <!----------------------------------------------------------------------------------------------- ***PLEASE READ*** If this issue doesn't relate to Jupyter Notebooks, Python Interactive Window features or other "cell"-based features of the Python extension, please use the main Python feature request template instead of this one. ***Thank you!*** -------------------------------------------------------------------------------------------------> ## Description Microsoft Data Science for VS Code Engineering Team: @rchiodo, @IanMatthewHuff, @DavidKutu, @DonJayamanne, @greazer
non_priority
how can i use to code formatting in jupyter notebooks feature notebook editor interactive window python editor cells please read if this issue doesn t relate to jupyter notebooks python interactive window features or other cell based features of the python extension please use the main python feature request template instead of this one thank you description microsoft data science for vs code engineering team rchiodo ianmatthewhuff davidkutu donjayamanne greazer
0
15,113
5,060,681,871
IssuesEvent
2016-12-22 12:59:08
joomla/joomla-cms
https://api.github.com/repos/joomla/joomla-cms
closed
Mysql native data type
No Code Attached Yet
Hello, In j3.6 + php7 following return a list of strings. Columns data types are not rendered. ``` <?php $db = JFactory::getDbo(); $query = $db->getQuery(true); $query->select('*'); $query->from($db->qn('#__users')); $db->setQuery($query); ?> <pre><?php echo var_dump( $db->loadObjectList()); ?></pre> ``` More problematic is ``` <?php $user = JFactory::getUser(); $user_id = $user->id; ?> ``` $user_id is not recognized as an integer. Do you know how to return data with their native type? Regards Michel
1.0
Mysql native data type - Hello, In j3.6 + php7 following return a list of strings. Columns data types are not rendered. ``` <?php $db = JFactory::getDbo(); $query = $db->getQuery(true); $query->select('*'); $query->from($db->qn('#__users')); $db->setQuery($query); ?> <pre><?php echo var_dump( $db->loadObjectList()); ?></pre> ``` More problematic is ``` <?php $user = JFactory::getUser(); $user_id = $user->id; ?> ``` $user_id is not recognized as an integer. Do you know how to return data with their native type? Regards Michel
non_priority
mysql native data type hello in following return a list of strings columns data types are not rendered php db jfactory getdbo query db getquery true query select query from db qn users db setquery query loadobjectlist more problematic is php user jfactory getuser user id user id user id is not recognized as an integer do you know how to return data with their native type regards michel
0
289,426
21,782,801,237
IssuesEvent
2022-05-13 20:57:55
AzureAD/microsoft-authentication-library-for-js
https://api.github.com/repos/AzureAD/microsoft-authentication-library-for-js
closed
Documentation on loadExternalToken
question documentation msal-browser answered Needs: Attention :wave:
### Core Library MSAL.js v2 (@azure/msal-browser) ### Wrapper Library Not Applicable ### Documentation Location docs.microsoft.com ### Description Recently I’ve been experimenting with an existing Angular SPA, with `@azure/msal-angular` in combination with a teams tabs. We figured out a hack-y-way to use information from the access token that we got from Teams SSO (the Teams app is pre-authorized, and can be instructed to request an access tokens for our custom api) and creating both an account and registering the access token for our api. Then I started looking in the code and found [this code](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/90365303db30da0fb4817b3e075db137a1ee3e33/lib/msal-browser/src/cache/TokenCache.ts#L49-L85) `loadExternalToken(…)`, this seems useful instead of us doing the same, while making direct calls to private methods on the browsercache. But I cannot find a sample or any documentation on this advanced, well hidden, method. Maybe @tnorling can enlighten us? Our higher goal is to still keep using msal-angular, but also using the access token we get from Teams SSO. Because that will make the process for the user a bit more smooth (skipping the login pop-up, that closes automatically anyway).
1.0
Documentation on loadExternalToken - ### Core Library MSAL.js v2 (@azure/msal-browser) ### Wrapper Library Not Applicable ### Documentation Location docs.microsoft.com ### Description Recently I’ve been experimenting with an existing Angular SPA, with `@azure/msal-angular` in combination with a teams tabs. We figured out a hack-y-way to use information from the access token that we got from Teams SSO (the Teams app is pre-authorized, and can be instructed to request an access tokens for our custom api) and creating both an account and registering the access token for our api. Then I started looking in the code and found [this code](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/90365303db30da0fb4817b3e075db137a1ee3e33/lib/msal-browser/src/cache/TokenCache.ts#L49-L85) `loadExternalToken(…)`, this seems useful instead of us doing the same, while making direct calls to private methods on the browsercache. But I cannot find a sample or any documentation on this advanced, well hidden, method. Maybe @tnorling can enlighten us? Our higher goal is to still keep using msal-angular, but also using the access token we get from Teams SSO. Because that will make the process for the user a bit more smooth (skipping the login pop-up, that closes automatically anyway).
non_priority
documentation on loadexternaltoken core library msal js azure msal browser wrapper library not applicable documentation location docs microsoft com description recently i’ve been experimenting with an existing angular spa with azure msal angular in combination with a teams tabs we figured out a hack y way to use information from the access token that we got from teams sso the teams app is pre authorized and can be instructed to request an access tokens for our custom api and creating both an account and registering the access token for our api then i started looking in the code and found loadexternaltoken … this seems useful instead of us doing the same while making direct calls to private methods on the browsercache but i cannot find a sample or any documentation on this advanced well hidden method maybe tnorling can enlighten us our higher goal is to still keep using msal angular but also using the access token we get from teams sso because that will make the process for the user a bit more smooth skipping the login pop up that closes automatically anyway
0
15,920
9,652,556,008
IssuesEvent
2019-05-18 18:12:51
fisker/serve-directory-theme-city-lights
https://api.github.com/repos/fisker/serve-directory-theme-city-lights
closed
CVE-2019-6284 Medium Severity Vulnerability detected by WhiteSource
security vulnerability
## CVE-2019-6284 - Medium Severity Vulnerability <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sassv4.11.0</b></p></summary> <p> <p>:rainbow: Node.js bindings to libsass</p> <p>Library home page: <a href=https://github.com/sass/node-sass.git>https://github.com/sass/node-sass.git</a></p> </p> </details> </p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Library Source Files (125)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/expand.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/color_maps.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_util.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8/unchecked.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/output.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_values.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/util.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/emitter.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/lexer.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_node.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/plugins.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/base.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/position.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/subset_map.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/operation.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/remove_placeholders.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/error_handling.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/custom_importer_bridge.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/contrib/plugin.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/functions.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_superselector.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/eval.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8_string.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_context_wrapper.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/error_handling.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/node.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/parser.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/subset_map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/emitter.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/listize.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_functions.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/memory/SharedPtr.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/output.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/check_nesting.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast_def_macros.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/functions.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/cssize.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/prelexer.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/paths.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast_fwd_decl.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/inspect.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/color.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_unification.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/values.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_util.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/source_map.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/list.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/check_nesting.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/json.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/units.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/units.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/context.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8/checked.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/listize.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/string.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/prelexer.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/context.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/boolean.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass2scss.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/eval.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/expand.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/factory.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/operators.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/boolean.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/source_map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/value.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8_string.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/callback_bridge.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/file.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/node.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/environment.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/extend.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_context.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/operators.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/constants.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast_fwd_decl.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/parser.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/constants.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/list.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/cssize.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/functions.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/util.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/custom_function_bridge.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/custom_importer_bridge.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/bind.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/inspect.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_functions.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/backtrace.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/extend.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/sass_value_wrapper.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/debugger.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/cencode.c - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/base64vlq.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/number.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/color.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/c99func.c - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/position.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/remove_placeholders.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_values.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/values.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_subset_map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass2scss.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/null.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/context.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_c.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_value.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/color_maps.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_context_wrapper.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/script/test-leaks.pl - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/lexer.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/memory/SharedPtr.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_c.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_value.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/b64/encode.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/file.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/environment.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/plugins.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/binding.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_context.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/debug.hpp </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::alternatives in prelexer.hpp. <p>Publish Date: 2019-01-14 <p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284>CVE-2019-6284</a></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-6284 Medium Severity Vulnerability detected by WhiteSource - ## CVE-2019-6284 - Medium Severity Vulnerability <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sassv4.11.0</b></p></summary> <p> <p>:rainbow: Node.js bindings to libsass</p> <p>Library home page: <a href=https://github.com/sass/node-sass.git>https://github.com/sass/node-sass.git</a></p> </p> </details> </p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Library Source Files (125)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/expand.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/color_maps.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_util.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8/unchecked.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/output.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_values.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/util.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/emitter.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/lexer.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_node.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/plugins.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/base.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/position.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/subset_map.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/operation.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/remove_placeholders.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/error_handling.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/custom_importer_bridge.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/contrib/plugin.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/functions.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_superselector.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/eval.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8_string.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_context_wrapper.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/error_handling.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/node.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/parser.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/subset_map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/emitter.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/listize.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_functions.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/memory/SharedPtr.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/output.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/check_nesting.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast_def_macros.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/functions.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/cssize.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/prelexer.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/paths.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast_fwd_decl.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/inspect.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/color.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_unification.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/values.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_util.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/source_map.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/list.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/check_nesting.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/json.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/units.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/units.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/context.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8/checked.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/listize.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/string.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/prelexer.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/context.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/boolean.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass2scss.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/eval.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/expand.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/factory.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/operators.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/boolean.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/source_map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/value.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/utf8_string.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/callback_bridge.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/file.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/node.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/environment.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/extend.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_context.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/operators.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/constants.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast_fwd_decl.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/parser.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/constants.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/list.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/cssize.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/functions.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/util.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/custom_function_bridge.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/custom_importer_bridge.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/bind.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/inspect.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_functions.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/backtrace.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/extend.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/sass_value_wrapper.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/debugger.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/cencode.c - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/base64vlq.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/number.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/color.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/c99func.c - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/position.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/remove_placeholders.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_values.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/values.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/test/test_subset_map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass2scss.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/null.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/ast.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/include/sass/context.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_c.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_value.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/color_maps.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_context_wrapper.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/script/test-leaks.pl - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/lexer.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/memory/SharedPtr.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_c.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/sass_types/map.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/to_value.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/b64/encode.h - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/file.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/environment.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/plugins.hpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/binding.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/sass_context.cpp - /serve-directory-theme-city-lights/node_modules/node-sass/src/libsass/src/debug.hpp </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::alternatives in prelexer.hpp. <p>Publish Date: 2019-01-14 <p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284>CVE-2019-6284</a></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium severity vulnerability detected by whitesource cve medium severity vulnerability vulnerable library node rainbow node js bindings to libsass library home page a href library source files the source files were matched to this source library based on a best effort match source libraries are selected from a list of probable public libraries serve directory theme city lights node modules node sass src libsass src expand hpp serve directory theme city lights node modules node sass src libsass src color maps cpp serve directory theme city lights node modules node sass src libsass src sass util hpp serve directory theme city lights node modules node sass src libsass src unchecked h serve directory theme city lights node modules node sass src libsass src output hpp serve directory theme city lights node modules node sass src libsass src sass values hpp serve directory theme city lights node modules node sass src libsass src util hpp serve directory theme city lights node modules node sass src libsass src emitter hpp serve directory theme city lights node modules node sass src libsass src lexer cpp serve directory theme city lights node modules node sass src libsass test test node cpp serve directory theme city lights node modules node sass src libsass src plugins cpp serve directory theme city lights node modules node sass src libsass include sass base h serve directory theme city lights node modules node sass src libsass src position hpp serve directory theme city lights node modules node sass src libsass src subset map hpp serve directory theme city lights node modules node sass src libsass src operation hpp serve directory theme city lights node modules node sass src libsass src remove placeholders cpp serve directory theme city lights node modules node sass src libsass src error handling hpp serve directory theme city lights node modules node sass src custom importer bridge cpp serve directory theme city lights node modules node sass src libsass contrib plugin cpp serve directory theme city lights node modules node sass src libsass src functions hpp serve directory theme city lights node modules node sass src libsass test test superselector cpp serve directory theme city lights node modules node sass src libsass src eval hpp serve directory theme city lights node modules node sass src libsass src string hpp serve directory theme city lights node modules node sass src sass context wrapper h serve directory theme city lights node modules node sass src libsass src error handling cpp serve directory theme city lights node modules node sass src libsass src node cpp serve directory theme city lights node modules node sass src libsass src parser cpp serve directory theme city lights node modules node sass src libsass src subset map cpp serve directory theme city lights node modules node sass src libsass src emitter cpp serve directory theme city lights node modules node sass src libsass src listize cpp serve directory theme city lights node modules node sass src libsass src ast hpp serve directory theme city lights node modules node sass src libsass src sass functions hpp serve directory theme city lights node modules node sass src libsass src memory sharedptr cpp serve directory theme city lights node modules node sass src libsass src output cpp serve directory theme city lights node modules node sass src libsass src check nesting cpp serve directory theme city lights node modules node sass src libsass src ast def macros hpp serve directory theme city lights node modules node sass src libsass src functions cpp serve directory theme city lights node modules node sass src libsass src cssize hpp serve directory theme city lights node modules node sass src libsass src prelexer cpp serve directory theme city lights node modules node sass src libsass src paths hpp serve directory theme city lights node modules node sass src libsass src ast fwd decl hpp serve directory theme city lights node modules node sass src libsass src inspect hpp serve directory theme city lights node modules node sass src sass types color cpp serve directory theme city lights node modules node sass src libsass test test unification cpp serve directory theme city lights node modules node sass src libsass src values cpp serve directory theme city lights node modules node sass src libsass src sass util cpp serve directory theme city lights node modules node sass src libsass src source map hpp serve directory theme city lights node modules node sass src sass types list h serve directory theme city lights node modules node sass src libsass src check nesting hpp serve directory theme city lights node modules node sass src libsass src json cpp serve directory theme city lights node modules node sass src libsass src units cpp serve directory theme city lights node modules node sass src libsass src units hpp serve directory theme city lights node modules node sass src libsass src context cpp serve directory theme city lights node modules node sass src libsass src checked h serve directory theme city lights node modules node sass src libsass src listize hpp serve directory theme city lights node modules node sass src sass types string cpp serve directory theme city lights node modules node sass src libsass src prelexer hpp serve directory theme city lights node modules node sass src libsass src context hpp serve directory theme city lights node modules node sass src sass types boolean h serve directory theme city lights node modules node sass src libsass include h serve directory theme city lights node modules node sass src libsass src eval cpp serve directory theme city lights node modules node sass src libsass src expand cpp serve directory theme city lights node modules node sass src sass types factory cpp serve directory theme city lights node modules node sass src libsass src operators cpp serve directory theme city lights node modules node sass src sass types boolean cpp serve directory theme city lights node modules node sass src libsass src source map cpp serve directory theme city lights node modules node sass src sass types value h serve directory theme city lights node modules node sass src libsass src string cpp serve directory theme city lights node modules node sass src callback bridge h serve directory theme city lights node modules node sass src libsass src file cpp serve directory theme city lights node modules node sass src libsass src sass cpp serve directory theme city lights node modules node sass src libsass src node hpp serve directory theme city lights node modules node sass src libsass src environment cpp serve directory theme city lights node modules node sass src libsass src extend hpp serve directory theme city lights node modules node sass src libsass src sass context hpp serve directory theme city lights node modules node sass src libsass src operators hpp serve directory theme city lights node modules node sass src libsass src constants hpp serve directory theme city lights node modules node sass src libsass src sass hpp serve directory theme city lights node modules node sass src libsass src ast fwd decl cpp serve directory theme city lights node modules node sass src libsass src parser hpp serve directory theme city lights node modules node sass src libsass src constants cpp serve directory theme city lights node modules node sass src sass types list cpp serve directory theme city lights node modules node sass src libsass src cssize cpp serve directory theme city lights node modules node sass src libsass include sass functions h serve directory theme city lights node modules node sass src libsass src util cpp serve directory theme city lights node modules node sass src custom function bridge cpp serve directory theme city lights node modules node sass src custom importer bridge h serve directory theme city lights node modules node sass src libsass src bind cpp serve directory theme city lights node modules node sass src libsass src inspect cpp serve directory theme city lights node modules node sass src libsass src sass functions cpp serve directory theme city lights node modules node sass src libsass src backtrace cpp serve directory theme city lights node modules node sass src libsass src extend cpp serve directory theme city lights node modules node sass src sass types sass value wrapper h serve directory theme city lights node modules node sass src libsass src debugger hpp serve directory theme city lights node modules node sass src libsass src cencode c serve directory theme city lights node modules node sass src libsass src cpp serve directory theme city lights node modules node sass src sass types number cpp serve directory theme city lights node modules node sass src sass types color h serve directory theme city lights node modules node sass src libsass src c serve directory theme city lights node modules node sass src libsass src position cpp serve directory theme city lights node modules node sass src libsass src remove placeholders hpp serve directory theme city lights node modules node sass src libsass src sass values cpp serve directory theme city lights node modules node sass src libsass include sass values h serve directory theme city lights node modules node sass src libsass test test subset map cpp serve directory theme city lights node modules node sass src libsass src cpp serve directory theme city lights node modules node sass src sass types null cpp serve directory theme city lights node modules node sass src libsass src ast cpp serve directory theme city lights node modules node sass src libsass include sass context h serve directory theme city lights node modules node sass src libsass src to c cpp serve directory theme city lights node modules node sass src libsass src to value hpp serve directory theme city lights node modules node sass src libsass src color maps hpp serve directory theme city lights node modules node sass src sass context wrapper cpp serve directory theme city lights node modules node sass src libsass script test leaks pl serve directory theme city lights node modules node sass src libsass src lexer hpp serve directory theme city lights node modules node sass src libsass src memory sharedptr hpp serve directory theme city lights node modules node sass src libsass src to c hpp serve directory theme city lights node modules node sass src sass types map cpp serve directory theme city lights node modules node sass src libsass src to value cpp serve directory theme city lights node modules node sass src libsass src encode h serve directory theme city lights node modules node sass src libsass src file hpp serve directory theme city lights node modules node sass src libsass src environment hpp serve directory theme city lights node modules node sass src libsass src plugins hpp serve directory theme city lights node modules node sass src binding cpp serve directory theme city lights node modules node sass src libsass src sass context cpp serve directory theme city lights node modules node sass src libsass src debug hpp vulnerability details in libsass a heap based buffer over read exists in sass prelexer alternatives in prelexer hpp publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href step up your open source security game with whitesource
0