Unnamed: 0
int64
1
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
7
112
repo_url
stringlengths
36
141
action
stringclasses
3 values
title
stringlengths
3
438
labels
stringlengths
4
308
body
stringlengths
7
254k
index
stringclasses
7 values
text_combine
stringlengths
96
254k
label
stringclasses
2 values
text
stringlengths
96
246k
binary_label
int64
0
1
4,800
24,734,353,703
IssuesEvent
2022-10-20 20:28:02
bazelbuild/intellij
https://api.github.com/repos/bazelbuild/intellij
closed
Enable 'Autoscroll to console' feature by default
type: feature request product: IntelliJ awaiting-maintainer
The _Autoscroll to console_ feature should be enabled by default, as it seems to be the _reasonable default_. The default Bazel output parser and many custom parsers only emit the first line of the error to the _Bazel problems_ view, and this is an optimal behavior since it is often not possible to reliably detect the beginning and the end of a multi-line error message. At the same time, many modern tools emit multi-line error messages. Hence to understand the error when working with a Bazel-powered project in Intellij IDEA developer has to look through Bazel output, and _Autoscroll to console_ feature is a lifesaver here. In our organization, we use Bazel to build Scala projects, and over time we've collected enough evidence to conclude that 1. developers do not know about _Autoscroll to console_ feature 2. developers are excited to use this feature after they discover it Changing the default from `false` to `true` would improve the experience for the majority of our devs. The change is also pretty straightforward (a one-line change https://github.com/bazelbuild/intellij/blob/master/base/src/com/google/idea/blaze/base/ui/problems/ProblemsViewConfiguration.java#L33). I believe the change also does not have any negative side-effects (but let me know please if I'm wrong). Let me know, what you think. If you're fine with this change, I can prepare a PR.
True
Enable 'Autoscroll to console' feature by default - The _Autoscroll to console_ feature should be enabled by default, as it seems to be the _reasonable default_. The default Bazel output parser and many custom parsers only emit the first line of the error to the _Bazel problems_ view, and this is an optimal behavior since it is often not possible to reliably detect the beginning and the end of a multi-line error message. At the same time, many modern tools emit multi-line error messages. Hence to understand the error when working with a Bazel-powered project in Intellij IDEA developer has to look through Bazel output, and _Autoscroll to console_ feature is a lifesaver here. In our organization, we use Bazel to build Scala projects, and over time we've collected enough evidence to conclude that 1. developers do not know about _Autoscroll to console_ feature 2. developers are excited to use this feature after they discover it Changing the default from `false` to `true` would improve the experience for the majority of our devs. The change is also pretty straightforward (a one-line change https://github.com/bazelbuild/intellij/blob/master/base/src/com/google/idea/blaze/base/ui/problems/ProblemsViewConfiguration.java#L33). I believe the change also does not have any negative side-effects (but let me know please if I'm wrong). Let me know, what you think. If you're fine with this change, I can prepare a PR.
main
enable autoscroll to console feature by default the autoscroll to console feature should be enabled by default as it seems to be the reasonable default the default bazel output parser and many custom parsers only emit the first line of the error to the bazel problems view and this is an optimal behavior since it is often not possible to reliably detect the beginning and the end of a multi line error message at the same time many modern tools emit multi line error messages hence to understand the error when working with a bazel powered project in intellij idea developer has to look through bazel output and autoscroll to console feature is a lifesaver here in our organization we use bazel to build scala projects and over time we ve collected enough evidence to conclude that developers do not know about autoscroll to console feature developers are excited to use this feature after they discover it changing the default from false to true would improve the experience for the majority of our devs the change is also pretty straightforward a one line change i believe the change also does not have any negative side effects but let me know please if i m wrong let me know what you think if you re fine with this change i can prepare a pr
1
343,285
24,766,863,031
IssuesEvent
2022-10-22 16:38:36
AY2223S1-CS2103T-T10-2/tp
https://api.github.com/repos/AY2223S1-CS2103T-T10-2/tp
closed
Update DG
documentation
## To Do Update DG with the features that we have implemented and want to implement.
1.0
Update DG - ## To Do Update DG with the features that we have implemented and want to implement.
non_main
update dg to do update dg with the features that we have implemented and want to implement
0
4,189
20,378,216,778
IssuesEvent
2022-02-21 17:53:24
simplesamlphp/simplesamlphp
https://api.github.com/repos/simplesamlphp/simplesamlphp
closed
Migrate gettext
medium maintainability help wanted dependencies
We currently rely on the `gettext/gettext` at v4.x, which is no longer supported. It seems that the parts we're using do not exist anymore in v5 (BaseTranslator-class).
True
Migrate gettext - We currently rely on the `gettext/gettext` at v4.x, which is no longer supported. It seems that the parts we're using do not exist anymore in v5 (BaseTranslator-class).
main
migrate gettext we currently rely on the gettext gettext at x which is no longer supported it seems that the parts we re using do not exist anymore in basetranslator class
1
66,361
16,599,367,810
IssuesEvent
2021-06-01 17:10:12
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
closed
Gradle plugins used by external users are separated from buildSrc project
:Delivery/Build Team:Delivery
We have a number of plugins that are leveraged by external users to build and test their own Elasticsearch plugins. Right now these reside in `buildSrc` since we use them in our own build. In order to expose these plugins we effectively publish the `buildSrc` JAR by defining a `build-tools` project whose project directory points to `buildSrc`. This causes us all kinds of headaches: 1. We build `buildSrc` twice, once implicitly as the normal `buildSrc` gradle project and again as `:build-tools`. 2. The duplicate existance of the `buildSrc` project causes all kinds of issues with IDE integration and makes the use of Kotlin DSL impossible. 3. Since we publish everything in `buildSrc` we include all sorts of internal stuff not intended for use outside of the Elasticsearch project. 4. The intermingling of this logic makes testing the external builds of `buildSrc` in isolation very hard. To account for this we have `BuildParams.isInternalBuild()` all over the place. The only way out of this mess is to _physically_ move the code we want to publish so it's completely isolated in a way where it can be built, packaged, published and tested on its own. That said, our build relies on this stuff, so we need to be able to _consume_ these core plugins in our own build as well. There's a little bit of a chicken/egg situation here but I think we can leverage composite builds to get around this. As part of this work we'll want to ensure a few things: 1. Improve documentation for plugin authors. Essentially [this](https://www.elastic.co/guide/en/elasticsearch/plugins/7.12/plugin-authors.html) is all that exists. For the most part we rely on our [examples](https://github.com/elastic/elasticsearch/tree/master/plugins/examples) to act as documentation. 2. Start testing the example plugins properly again. 3. Provide some guidance/docs on testing. We want folks to use the test clusters plugin if they want, but we should give folks _some_ idea of how to actually author REST tests.
1.0
Gradle plugins used by external users are separated from buildSrc project - We have a number of plugins that are leveraged by external users to build and test their own Elasticsearch plugins. Right now these reside in `buildSrc` since we use them in our own build. In order to expose these plugins we effectively publish the `buildSrc` JAR by defining a `build-tools` project whose project directory points to `buildSrc`. This causes us all kinds of headaches: 1. We build `buildSrc` twice, once implicitly as the normal `buildSrc` gradle project and again as `:build-tools`. 2. The duplicate existance of the `buildSrc` project causes all kinds of issues with IDE integration and makes the use of Kotlin DSL impossible. 3. Since we publish everything in `buildSrc` we include all sorts of internal stuff not intended for use outside of the Elasticsearch project. 4. The intermingling of this logic makes testing the external builds of `buildSrc` in isolation very hard. To account for this we have `BuildParams.isInternalBuild()` all over the place. The only way out of this mess is to _physically_ move the code we want to publish so it's completely isolated in a way where it can be built, packaged, published and tested on its own. That said, our build relies on this stuff, so we need to be able to _consume_ these core plugins in our own build as well. There's a little bit of a chicken/egg situation here but I think we can leverage composite builds to get around this. As part of this work we'll want to ensure a few things: 1. Improve documentation for plugin authors. Essentially [this](https://www.elastic.co/guide/en/elasticsearch/plugins/7.12/plugin-authors.html) is all that exists. For the most part we rely on our [examples](https://github.com/elastic/elasticsearch/tree/master/plugins/examples) to act as documentation. 2. Start testing the example plugins properly again. 3. Provide some guidance/docs on testing. We want folks to use the test clusters plugin if they want, but we should give folks _some_ idea of how to actually author REST tests.
non_main
gradle plugins used by external users are separated from buildsrc project we have a number of plugins that are leveraged by external users to build and test their own elasticsearch plugins right now these reside in buildsrc since we use them in our own build in order to expose these plugins we effectively publish the buildsrc jar by defining a build tools project whose project directory points to buildsrc this causes us all kinds of headaches we build buildsrc twice once implicitly as the normal buildsrc gradle project and again as build tools the duplicate existance of the buildsrc project causes all kinds of issues with ide integration and makes the use of kotlin dsl impossible since we publish everything in buildsrc we include all sorts of internal stuff not intended for use outside of the elasticsearch project the intermingling of this logic makes testing the external builds of buildsrc in isolation very hard to account for this we have buildparams isinternalbuild all over the place the only way out of this mess is to physically move the code we want to publish so it s completely isolated in a way where it can be built packaged published and tested on its own that said our build relies on this stuff so we need to be able to consume these core plugins in our own build as well there s a little bit of a chicken egg situation here but i think we can leverage composite builds to get around this as part of this work we ll want to ensure a few things improve documentation for plugin authors essentially is all that exists for the most part we rely on our to act as documentation start testing the example plugins properly again provide some guidance docs on testing we want folks to use the test clusters plugin if they want but we should give folks some idea of how to actually author rest tests
0
136,654
30,569,023,851
IssuesEvent
2023-07-20 20:17:34
WordPress/openverse
https://api.github.com/repos/WordPress/openverse
opened
Link to reported media URL in API Admin is incorrect
🟧 priority: high 🛠 goal: fix 💻 aspect: code 🔒 staff only 🧱 stack: api
## Description <!-- Concisely describe the bug. Compare your experience with what you expected to happen. --> <!-- For example: "I clicked the 'submit' button and instead of seeing a thank you message, I saw a blank page." --> It appears that many of the media URLs in our image/audio report tables display in the admin UI with the wrong URL. The URLs look something like `https://openverse.org/v1/audio/<id>` or `https://openverse.org/v1/images/<id>` for audio and images respectively. The paths themselves look like paths to the API, but the TLD directs to the frontend where every link 404s. ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. Visit https://api.openverse.engineering/admin/api/imagereport/ 2. Observe the incorrect URLs I was not able to reproduce this locally because reports made _via the API_ show up with the correct domain.
1.0
Link to reported media URL in API Admin is incorrect - ## Description <!-- Concisely describe the bug. Compare your experience with what you expected to happen. --> <!-- For example: "I clicked the 'submit' button and instead of seeing a thank you message, I saw a blank page." --> It appears that many of the media URLs in our image/audio report tables display in the admin UI with the wrong URL. The URLs look something like `https://openverse.org/v1/audio/<id>` or `https://openverse.org/v1/images/<id>` for audio and images respectively. The paths themselves look like paths to the API, but the TLD directs to the frontend where every link 404s. ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. Visit https://api.openverse.engineering/admin/api/imagereport/ 2. Observe the incorrect URLs I was not able to reproduce this locally because reports made _via the API_ show up with the correct domain.
non_main
link to reported media url in api admin is incorrect description it appears that many of the media urls in our image audio report tables display in the admin ui with the wrong url the urls look something like or for audio and images respectively the paths themselves look like paths to the api but the tld directs to the frontend where every link reproduction visit observe the incorrect urls i was not able to reproduce this locally because reports made via the api show up with the correct domain
0
5,195
26,409,897,870
IssuesEvent
2023-01-13 11:16:56
centerofci/mathesar
https://api.github.com/repos/centerofci/mathesar
closed
Create a new tooltip component in the components library
type: enhancement work: frontend status: ready restricted: maintainers
This component will also be used to show database config tooltip in table inspector
True
Create a new tooltip component in the components library - This component will also be used to show database config tooltip in table inspector
main
create a new tooltip component in the components library this component will also be used to show database config tooltip in table inspector
1
564,931
16,745,182,683
IssuesEvent
2021-06-11 14:41:45
telerik/kendo-ui-core
https://api.github.com/repos/telerik/kendo-ui-core
closed
MultiSelect with virtualization enabled and mapValueTo: "dataItem" option set returns incorrect item
Bug C: MultiSelect FP: Completed Priority 1 SEV: Medium jQuery2
### Bug report When data for the MultiSelect widget is virtualized and mapValueTo: "dataItem" option is set, the widget returns incorrect dataItem on subsequent selection. ### Reproduction of the problem [DataVirtualization.zip](https://github.com/telerik/kendo-ui-core/files/3697723/DataVirtualization.zip) 1. Select Order 3 and submit selection. Alert displays the selected Id 3 2. Clear selection and submit. Alert displays no data. 3. Select Order 131313 and submit selection. Alert displays the selected Id 131313 4. Clear selection and submit. Alert displays no data. 5. Select Order 24242 and submit selection. Alert displays the selected Id 131313 ### Current behavior [Screencast](https://www.screencast.com/t/dNwY5Hmh3Cf0) ### Expected/desired behavior The result to be the same as if mapValueTo: "index" is used. ### Environment * **Kendo UI version:** 2019.3.1023 * **Browser:** [all]
1.0
MultiSelect with virtualization enabled and mapValueTo: "dataItem" option set returns incorrect item - ### Bug report When data for the MultiSelect widget is virtualized and mapValueTo: "dataItem" option is set, the widget returns incorrect dataItem on subsequent selection. ### Reproduction of the problem [DataVirtualization.zip](https://github.com/telerik/kendo-ui-core/files/3697723/DataVirtualization.zip) 1. Select Order 3 and submit selection. Alert displays the selected Id 3 2. Clear selection and submit. Alert displays no data. 3. Select Order 131313 and submit selection. Alert displays the selected Id 131313 4. Clear selection and submit. Alert displays no data. 5. Select Order 24242 and submit selection. Alert displays the selected Id 131313 ### Current behavior [Screencast](https://www.screencast.com/t/dNwY5Hmh3Cf0) ### Expected/desired behavior The result to be the same as if mapValueTo: "index" is used. ### Environment * **Kendo UI version:** 2019.3.1023 * **Browser:** [all]
non_main
multiselect with virtualization enabled and mapvalueto dataitem option set returns incorrect item bug report when data for the multiselect widget is virtualized and mapvalueto dataitem option is set the widget returns incorrect dataitem on subsequent selection reproduction of the problem select order and submit selection alert displays the selected id clear selection and submit alert displays no data select order and submit selection alert displays the selected id clear selection and submit alert displays no data select order and submit selection alert displays the selected id current behavior expected desired behavior the result to be the same as if mapvalueto index is used environment kendo ui version browser
0
3,263
12,422,095,372
IssuesEvent
2020-05-23 20:12:32
dappkit/aviondb
https://api.github.com/repos/dappkit/aviondb
closed
Automated tests with GitHub Actions
maintainance
The repo should have some GitHub Actions for running automated tests on PRs and commits.
True
Automated tests with GitHub Actions - The repo should have some GitHub Actions for running automated tests on PRs and commits.
main
automated tests with github actions the repo should have some github actions for running automated tests on prs and commits
1
696,900
23,920,748,941
IssuesEvent
2022-09-09 16:37:08
PrefectHQ/prefect
https://api.github.com/repos/PrefectHQ/prefect
closed
Sort blocks by type then name instead of just name
enhancement status:backlog ui priority:medium api
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar request and didn't find it. - [X] I searched the Prefect documentation for this feature. ### Prefect Version 2.x ### Describe the current behavior When viewing blocks in the UI, they are sorted by the block document name but displayed as `type / name`. This results in lists like: ``` - Docker / a - S3 / b - Docker / c - GCS / d - S3 / e ``` ### Describe the proposed behavior If we sorted by (type, name) instead, this would be presented to users in a much more manageable way: ``` - Docker / a - Docker / c - GCS / d - S3 / b - S3 / e ``` ### Example Use _No response_ ### Additional context _No response_
1.0
Sort blocks by type then name instead of just name - ### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar request and didn't find it. - [X] I searched the Prefect documentation for this feature. ### Prefect Version 2.x ### Describe the current behavior When viewing blocks in the UI, they are sorted by the block document name but displayed as `type / name`. This results in lists like: ``` - Docker / a - S3 / b - Docker / c - GCS / d - S3 / e ``` ### Describe the proposed behavior If we sorted by (type, name) instead, this would be presented to users in a much more manageable way: ``` - Docker / a - Docker / c - GCS / d - S3 / b - S3 / e ``` ### Example Use _No response_ ### Additional context _No response_
non_main
sort blocks by type then name instead of just name first check i added a descriptive title to this issue i used the github search to find a similar request and didn t find it i searched the prefect documentation for this feature prefect version x describe the current behavior when viewing blocks in the ui they are sorted by the block document name but displayed as type name this results in lists like docker a b docker c gcs d e describe the proposed behavior if we sorted by type name instead this would be presented to users in a much more manageable way docker a docker c gcs d b e example use no response additional context no response
0
5,004
25,732,743,635
IssuesEvent
2022-12-07 21:40:37
centerofci/mathesar
https://api.github.com/repos/centerofci/mathesar
opened
On the record page, allow setting a FK value to NULL using the linked record input
type: bug work: frontend status: ready restricted: maintainers
## Steps to reproduce 1. Navigate to the record page for a record in a table with a FK column. 1. Ensure that a value is set for the FK column. 1. For the FK column, open the options dropdown menu and choose "Set to NULL". 1. Observe `NULL` to appear within the input. Good. 1. Observe that the cancel/save buttons appear, indicating the form has changes. Good. 1. Click "Discard Changes" to restore the form. 1. Now, click the "x" button within the linked record input. 1. Expect to see `NULL` within the input. 1. Instead, observe that the input is blank. Bad. 1. Expect to see the cancel/save buttons, indicating changes to the form. 1. Instead observe no cancel/save buttons. Bad. ## Additional considerations - The linked record input is also used in filter conditions and the Record Selector. We'll need to make sure that whatever changes we make here will still preserve the current behavior in those contexts (where we do _not_ actually want to see `NULL` values within the linked record input).
True
On the record page, allow setting a FK value to NULL using the linked record input - ## Steps to reproduce 1. Navigate to the record page for a record in a table with a FK column. 1. Ensure that a value is set for the FK column. 1. For the FK column, open the options dropdown menu and choose "Set to NULL". 1. Observe `NULL` to appear within the input. Good. 1. Observe that the cancel/save buttons appear, indicating the form has changes. Good. 1. Click "Discard Changes" to restore the form. 1. Now, click the "x" button within the linked record input. 1. Expect to see `NULL` within the input. 1. Instead, observe that the input is blank. Bad. 1. Expect to see the cancel/save buttons, indicating changes to the form. 1. Instead observe no cancel/save buttons. Bad. ## Additional considerations - The linked record input is also used in filter conditions and the Record Selector. We'll need to make sure that whatever changes we make here will still preserve the current behavior in those contexts (where we do _not_ actually want to see `NULL` values within the linked record input).
main
on the record page allow setting a fk value to null using the linked record input steps to reproduce navigate to the record page for a record in a table with a fk column ensure that a value is set for the fk column for the fk column open the options dropdown menu and choose set to null observe null to appear within the input good observe that the cancel save buttons appear indicating the form has changes good click discard changes to restore the form now click the x button within the linked record input expect to see null within the input instead observe that the input is blank bad expect to see the cancel save buttons indicating changes to the form instead observe no cancel save buttons bad additional considerations the linked record input is also used in filter conditions and the record selector we ll need to make sure that whatever changes we make here will still preserve the current behavior in those contexts where we do not actually want to see null values within the linked record input
1
573
4,050,009,971
IssuesEvent
2016-05-23 16:53:34
duckduckgo/zeroclickinfo-goodies
https://api.github.com/repos/duckduckgo/zeroclickinfo-goodies
closed
Logarithms Cheat Sheet: Notation is wrong
Bug Maintainer Input Requested
The logarithms cheatsheet has that f'(a^x) = a^x * ln(a) (or something close). This may be a mixup of notation. The formula says that applying the derivative of some function f to a^x gives the derivative of a^x. What was probably meant is (a^x)' = a^x * ln(x). That is, the derivative of exponential function. In general, f'(g(x)) != g'(x). ------ IA Page: http://duck.co/ia/view/logarithms_cheat_sheet [Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @poornagurram
True
Logarithms Cheat Sheet: Notation is wrong - The logarithms cheatsheet has that f'(a^x) = a^x * ln(a) (or something close). This may be a mixup of notation. The formula says that applying the derivative of some function f to a^x gives the derivative of a^x. What was probably meant is (a^x)' = a^x * ln(x). That is, the derivative of exponential function. In general, f'(g(x)) != g'(x). ------ IA Page: http://duck.co/ia/view/logarithms_cheat_sheet [Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @poornagurram
main
logarithms cheat sheet notation is wrong the logarithms cheatsheet has that f a x a x ln a or something close this may be a mixup of notation the formula says that applying the derivative of some function f to a x gives the derivative of a x what was probably meant is a x a x ln x that is the derivative of exponential function in general f g x g x ia page poornagurram
1
2,115
7,194,340,231
IssuesEvent
2018-02-04 03:16:48
Aqours/Aqours.github.io
https://api.github.com/repos/Aqours/Aqours.github.io
closed
Windows 常用程序
Software Unmaintained
## Classical - 7-zip - Adobe Reader DC - Adobe Audition - Adobe Photoshop - BenVista PhotoZoom Pro - Charles - Git - Google Chrome - Google Chrome Canary - Java SE Development Kit - Java SE Development Kit (64-bit) - JetBrains PhpStorm - JetBrains PyCharm - JetBrains WebStorm - K-Lite Mega Codec Pack - Microsoft Office - Microsoft Visio - Microsoft Visual Studio Code - Mozilla Firefox (Multiprocess Window) - MySQL-Front - Node.js - OpenVPN - Poedit - Python - Ruby - SmartGit - Sublime Text (_Deprecated_) - Telerik Fiddler (_Deprecated_) - Twonky Server - VMWare Workstation - WinPcap - WinRAR - XAMPP - Xshell - 腾讯 QQ(轻聊版) - 网易云音乐 - 微信 - 迅雷(极速版) ## UWP - OneNote - 爱奇艺 - 漫画加加(Comics++) - 旺信
True
Windows 常用程序 - ## Classical - 7-zip - Adobe Reader DC - Adobe Audition - Adobe Photoshop - BenVista PhotoZoom Pro - Charles - Git - Google Chrome - Google Chrome Canary - Java SE Development Kit - Java SE Development Kit (64-bit) - JetBrains PhpStorm - JetBrains PyCharm - JetBrains WebStorm - K-Lite Mega Codec Pack - Microsoft Office - Microsoft Visio - Microsoft Visual Studio Code - Mozilla Firefox (Multiprocess Window) - MySQL-Front - Node.js - OpenVPN - Poedit - Python - Ruby - SmartGit - Sublime Text (_Deprecated_) - Telerik Fiddler (_Deprecated_) - Twonky Server - VMWare Workstation - WinPcap - WinRAR - XAMPP - Xshell - 腾讯 QQ(轻聊版) - 网易云音乐 - 微信 - 迅雷(极速版) ## UWP - OneNote - 爱奇艺 - 漫画加加(Comics++) - 旺信
main
windows 常用程序 classical zip adobe reader dc adobe audition adobe photoshop benvista photozoom pro charles git google chrome google chrome canary java se development kit java se development kit bit jetbrains phpstorm jetbrains pycharm jetbrains webstorm k lite mega codec pack microsoft office microsoft visio microsoft visual studio code mozilla firefox multiprocess window mysql front node js openvpn poedit python ruby smartgit sublime text deprecated telerik fiddler deprecated twonky server vmware workstation winpcap winrar xampp xshell 腾讯 qq(轻聊版) 网易云音乐 微信 迅雷(极速版) uwp onenote 爱奇艺 漫画加加(comics ) 旺信
1
2,020
6,757,626,700
IssuesEvent
2017-10-24 11:32:50
Kristinita/Erics-Green-Room
https://api.github.com/repos/Kristinita/Erics-Green-Room
closed
[Feature request] Hotkeys
need-maintainer web wontfix
### 1. Запрос Было бы неплохо, если бы можно было вводить команды посредством горячих клавиш. Хорошо бы иметь возможность горячих клавиш для всех команд, для запуска которых сейчас нужно писать в строке ввода более 1—2 символов. ### 2. Аргументация Экономия времени игрока. Быстрее нажать шорткат, чем писать команды. ### 3. Пример реализации + игрок нажимает <kbd>Super+P</kbd> → передаётся команда `Паузу`, + игрок нажимает <kbd>Super+N</kbd> → передаётся команда `Дальше`. ### 4. Рекомендация Полагаю, что в шорткатах неплохо бы задействовать клавишу <kbd>Super</kbd> (она же <kbd>Win</kbd>), редко встречающуюся в дефолтных сочетаниях наиболее распространённых браузеров. Спасибо.
True
[Feature request] Hotkeys - ### 1. Запрос Было бы неплохо, если бы можно было вводить команды посредством горячих клавиш. Хорошо бы иметь возможность горячих клавиш для всех команд, для запуска которых сейчас нужно писать в строке ввода более 1—2 символов. ### 2. Аргументация Экономия времени игрока. Быстрее нажать шорткат, чем писать команды. ### 3. Пример реализации + игрок нажимает <kbd>Super+P</kbd> → передаётся команда `Паузу`, + игрок нажимает <kbd>Super+N</kbd> → передаётся команда `Дальше`. ### 4. Рекомендация Полагаю, что в шорткатах неплохо бы задействовать клавишу <kbd>Super</kbd> (она же <kbd>Win</kbd>), редко встречающуюся в дефолтных сочетаниях наиболее распространённых браузеров. Спасибо.
main
hotkeys запрос было бы неплохо если бы можно было вводить команды посредством горячих клавиш хорошо бы иметь возможность горячих клавиш для всех команд для запуска которых сейчас нужно писать в строке ввода более — символов аргументация экономия времени игрока быстрее нажать шорткат чем писать команды пример реализации игрок нажимает super p → передаётся команда паузу игрок нажимает super n → передаётся команда дальше рекомендация полагаю что в шорткатах неплохо бы задействовать клавишу super она же win редко встречающуюся в дефолтных сочетаниях наиболее распространённых браузеров спасибо
1
570,343
17,023,092,329
IssuesEvent
2021-07-03 00:20:51
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
insert node into segment
Component: applet Priority: minor Resolution: fixed Type: enhancement
**[Submitted to the original trac issue database at 5.31pm, Monday, 26th December 2005]** It would be useful to be able to add a node to an existing segment, for example to round out curves better or to facilitate adding a new street. This might default to adding the new node halfway along the segment, or (better, imho) by letting a second click determine its position (ideally rubberbanding the two subsegments). Ideally, both sub-segments would inherit any properties (name, etc) of the segment to be split.
1.0
insert node into segment - **[Submitted to the original trac issue database at 5.31pm, Monday, 26th December 2005]** It would be useful to be able to add a node to an existing segment, for example to round out curves better or to facilitate adding a new street. This might default to adding the new node halfway along the segment, or (better, imho) by letting a second click determine its position (ideally rubberbanding the two subsegments). Ideally, both sub-segments would inherit any properties (name, etc) of the segment to be split.
non_main
insert node into segment it would be useful to be able to add a node to an existing segment for example to round out curves better or to facilitate adding a new street this might default to adding the new node halfway along the segment or better imho by letting a second click determine its position ideally rubberbanding the two subsegments ideally both sub segments would inherit any properties name etc of the segment to be split
0
1,359
5,870,460,486
IssuesEvent
2017-05-15 04:49:07
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
django-admin.py using manage.pyc instead of manage.py
affects_2.0 feature_idea waiting_on_maintainer
##### ISSUE TYPE Feature Idea ##### COMPONENT NAME django_manage module ##### ANSIBLE VERSION N/A ##### SUMMARY I'm never sync .py source code to production, should django-admin.py uses manage.pyc instead of manage.py? https://github.com/ansible/ansible-modules-core/blob/devel/web_infrastructure/django_manage.py#L239
True
django-admin.py using manage.pyc instead of manage.py - ##### ISSUE TYPE Feature Idea ##### COMPONENT NAME django_manage module ##### ANSIBLE VERSION N/A ##### SUMMARY I'm never sync .py source code to production, should django-admin.py uses manage.pyc instead of manage.py? https://github.com/ansible/ansible-modules-core/blob/devel/web_infrastructure/django_manage.py#L239
main
django admin py using manage pyc instead of manage py issue type feature idea component name django manage module ansible version n a summary i m never sync py source code to production should django admin py uses manage pyc instead of manage py
1
249,447
26,933,409,893
IssuesEvent
2023-02-07 18:32:50
elastic/kibana
https://api.github.com/repos/elastic/kibana
closed
[Security Solution] Get rid of "Advanced sorting" switch for the Rules table
enhancement Team:Detections and Resp Team: SecuritySolution Feature:Rule Management Team:Detection Rules 8.7 candidate
**Parent:** https://github.com/elastic/security-team/issues/1972 **Depends on:** https://github.com/elastic/kibana/issues/130966 **Related to:** https://github.com/elastic/kibana/issues/112193 ## Summary Once rule execution data (rule statuses and metrics) is stored inside rule Saved Objects themselves, we will be able to support filtering, sorting, and aggregation by (almost) all rule fields server-side. Thus, we won't need the in-memory Rules table mode anymore in which we load all rules in the browser and filter and sort in memory client-side. ## Todo - [ ] Get rid of the in-memory Rules table mode. - [ ] Remove the **Advanced sorting** switch from the UI. - [ ] https://github.com/elastic/security-docs/issues/2947
True
[Security Solution] Get rid of "Advanced sorting" switch for the Rules table - **Parent:** https://github.com/elastic/security-team/issues/1972 **Depends on:** https://github.com/elastic/kibana/issues/130966 **Related to:** https://github.com/elastic/kibana/issues/112193 ## Summary Once rule execution data (rule statuses and metrics) is stored inside rule Saved Objects themselves, we will be able to support filtering, sorting, and aggregation by (almost) all rule fields server-side. Thus, we won't need the in-memory Rules table mode anymore in which we load all rules in the browser and filter and sort in memory client-side. ## Todo - [ ] Get rid of the in-memory Rules table mode. - [ ] Remove the **Advanced sorting** switch from the UI. - [ ] https://github.com/elastic/security-docs/issues/2947
non_main
get rid of advanced sorting switch for the rules table parent depends on related to summary once rule execution data rule statuses and metrics is stored inside rule saved objects themselves we will be able to support filtering sorting and aggregation by almost all rule fields server side thus we won t need the in memory rules table mode anymore in which we load all rules in the browser and filter and sort in memory client side todo get rid of the in memory rules table mode remove the advanced sorting switch from the ui
0
5,830
30,852,065,761
IssuesEvent
2023-08-02 17:30:25
bazelbuild/intellij
https://api.github.com/repos/bazelbuild/intellij
opened
Query sync is referring unavailable genzip tool
type: bug awaiting-maintainer
### Description of the bug: `tools/genzip:build_zip` is [used](https://github.com/bazelbuild/intellij/blob/53cf0680dab7ea2dac3c1589ac69b268d596aee3/aspect/build_dependencies.bzl#L403) in order to generate an AAR file for the IDE, however that label refers to a target which does not exist on the repo which causing the sync to fail. I understand query sync is experimental and in active development, yet, thought it worth highlighting the issue in case it got missed. ### What's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible. 1. Enable query sync 2. Run sync 3. Observe error ``` package 'tools/genzip': BUILD file not found in any of the following directories. Add a BUILD file to a directory to mark it as a package. ``` ### Which Intellij IDE are you using? Please provide the specific version. AI-221.6008.13.2211.9619390 ### What programming languages and tools are you using? Please provide specific versions. Java ### What Bazel plugin version are you using? build on recent sha: 4cba72f7b094ed58fa179a90b87f13f33eb31689 ### Have you found anything relevant by searching the web? _No response_ ### Any other information, logs, or outputs that you want to share? _No response_
True
Query sync is referring unavailable genzip tool - ### Description of the bug: `tools/genzip:build_zip` is [used](https://github.com/bazelbuild/intellij/blob/53cf0680dab7ea2dac3c1589ac69b268d596aee3/aspect/build_dependencies.bzl#L403) in order to generate an AAR file for the IDE, however that label refers to a target which does not exist on the repo which causing the sync to fail. I understand query sync is experimental and in active development, yet, thought it worth highlighting the issue in case it got missed. ### What's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible. 1. Enable query sync 2. Run sync 3. Observe error ``` package 'tools/genzip': BUILD file not found in any of the following directories. Add a BUILD file to a directory to mark it as a package. ``` ### Which Intellij IDE are you using? Please provide the specific version. AI-221.6008.13.2211.9619390 ### What programming languages and tools are you using? Please provide specific versions. Java ### What Bazel plugin version are you using? build on recent sha: 4cba72f7b094ed58fa179a90b87f13f33eb31689 ### Have you found anything relevant by searching the web? _No response_ ### Any other information, logs, or outputs that you want to share? _No response_
main
query sync is referring unavailable genzip tool description of the bug tools genzip build zip is in order to generate an aar file for the ide however that label refers to a target which does not exist on the repo which causing the sync to fail i understand query sync is experimental and in active development yet thought it worth highlighting the issue in case it got missed what s the simplest easiest way to reproduce this bug please provide a minimal example if possible enable query sync run sync observe error package tools genzip build file not found in any of the following directories add a build file to a directory to mark it as a package which intellij ide are you using please provide the specific version ai what programming languages and tools are you using please provide specific versions java what bazel plugin version are you using build on recent sha have you found anything relevant by searching the web no response any other information logs or outputs that you want to share no response
1
1,069
4,889,335,256
IssuesEvent
2016-11-18 09:52:10
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
Add proxy server parameter to Gem module
affects_2.0 feature_idea waiting_on_maintainer
##### Issue Type: Feature Idea ##### Ansible Version: 2.0.0.2 ##### Ansible Configuration: What have you changed about your Ansible installation? What configuration settings have you changed/added/removed? Compare your /etc/ansible/ansible.cfg against a clean version from Github and let us know what's different. ##### Environment: CentOS 6.7 (Final) ##### Summary: The current gem module does not have an attribute for specifying a proxy server. Usage of this module behind a proxy server fails. ##### Steps To Reproduce: Running the following step in my playbook from a server behind a corporate proxy server (I have no choice over that) - name: install sensu disk check plugin gem: name=sensu-plugins-disk-checks version=0.0.1 state=present executable=/opt/sensu/embedded/bin/gem ##### Expected Results: Gem is installed. ##### Actual Results: Output from the playbook ``` TASK [sensu : install sensu disk check plugin] ********************************* fatal: [mymachine.local]: FAILED! => {"changed": false, "cmd": "/opt/sensu/embedded/bin/gem install --version 0.0.1 --user-install --no-document sensu-plugins-disk-checks", "failed": true, "msg": "ERROR: Could not find a valid gem 'sensu-plugins-disk-checks' (= 0.0.1), here is why:\n Unable to download data from https://rubygems.org/ - Errno::ECONNREFUSED: Connection refused - connect(2) for \"api.rubygems.org\" port 443 (https://api.rubygems.org/specs.4.8.gz)", "rc": 2, "stderr": "ERROR: Could not find a valid gem 'sensu-plugins-disk-checks' (= 0.0.1), here is why:\n Unable to download data from https://rubygems.org/ - Errno::ECONNREFUSED: Connection refused - connect(2) for \"api.rubygems.org\" port 443 (https://api.rubygems.org/specs.4.8.gz)\n", "stdout": "", "stdout_lines": []} ``` Specifying a proxy server appears to be a standard feature of the gem command, I expect it's not just me sat behind a corporate proxy server that needs this functionality. http://stackoverflow.com/questions/6172198/installing-ruby-gems I've verifued by running the command as extracted from the output above. The following command fails with the same error as above (as expected) ``` /opt/sensu/embedded/bin/gem install --version 0.0.1 --user-install --no-document sensu-plugins-disk-checks ``` Running with the proxy server option succeeds. ``` /opt/sensu/embedded/bin/gem install --version 0.0.1 --user-install --no-document --http-proxy http://myproxyservername:8080 sensu-plugins-disk-checks ```
True
Add proxy server parameter to Gem module - ##### Issue Type: Feature Idea ##### Ansible Version: 2.0.0.2 ##### Ansible Configuration: What have you changed about your Ansible installation? What configuration settings have you changed/added/removed? Compare your /etc/ansible/ansible.cfg against a clean version from Github and let us know what's different. ##### Environment: CentOS 6.7 (Final) ##### Summary: The current gem module does not have an attribute for specifying a proxy server. Usage of this module behind a proxy server fails. ##### Steps To Reproduce: Running the following step in my playbook from a server behind a corporate proxy server (I have no choice over that) - name: install sensu disk check plugin gem: name=sensu-plugins-disk-checks version=0.0.1 state=present executable=/opt/sensu/embedded/bin/gem ##### Expected Results: Gem is installed. ##### Actual Results: Output from the playbook ``` TASK [sensu : install sensu disk check plugin] ********************************* fatal: [mymachine.local]: FAILED! => {"changed": false, "cmd": "/opt/sensu/embedded/bin/gem install --version 0.0.1 --user-install --no-document sensu-plugins-disk-checks", "failed": true, "msg": "ERROR: Could not find a valid gem 'sensu-plugins-disk-checks' (= 0.0.1), here is why:\n Unable to download data from https://rubygems.org/ - Errno::ECONNREFUSED: Connection refused - connect(2) for \"api.rubygems.org\" port 443 (https://api.rubygems.org/specs.4.8.gz)", "rc": 2, "stderr": "ERROR: Could not find a valid gem 'sensu-plugins-disk-checks' (= 0.0.1), here is why:\n Unable to download data from https://rubygems.org/ - Errno::ECONNREFUSED: Connection refused - connect(2) for \"api.rubygems.org\" port 443 (https://api.rubygems.org/specs.4.8.gz)\n", "stdout": "", "stdout_lines": []} ``` Specifying a proxy server appears to be a standard feature of the gem command, I expect it's not just me sat behind a corporate proxy server that needs this functionality. http://stackoverflow.com/questions/6172198/installing-ruby-gems I've verifued by running the command as extracted from the output above. The following command fails with the same error as above (as expected) ``` /opt/sensu/embedded/bin/gem install --version 0.0.1 --user-install --no-document sensu-plugins-disk-checks ``` Running with the proxy server option succeeds. ``` /opt/sensu/embedded/bin/gem install --version 0.0.1 --user-install --no-document --http-proxy http://myproxyservername:8080 sensu-plugins-disk-checks ```
main
add proxy server parameter to gem module issue type feature idea ansible version ansible configuration what have you changed about your ansible installation what configuration settings have you changed added removed compare your etc ansible ansible cfg against a clean version from github and let us know what s different environment centos final summary the current gem module does not have an attribute for specifying a proxy server usage of this module behind a proxy server fails steps to reproduce running the following step in my playbook from a server behind a corporate proxy server i have no choice over that name install sensu disk check plugin gem name sensu plugins disk checks version state present executable opt sensu embedded bin gem expected results gem is installed actual results output from the playbook task fatal failed changed false cmd opt sensu embedded bin gem install version user install no document sensu plugins disk checks failed true msg error could not find a valid gem sensu plugins disk checks here is why n unable to download data from errno econnrefused connection refused connect for api rubygems org port rc stderr error could not find a valid gem sensu plugins disk checks here is why n unable to download data from errno econnrefused connection refused connect for api rubygems org port stdout stdout lines specifying a proxy server appears to be a standard feature of the gem command i expect it s not just me sat behind a corporate proxy server that needs this functionality i ve verifued by running the command as extracted from the output above the following command fails with the same error as above as expected opt sensu embedded bin gem install version user install no document sensu plugins disk checks running with the proxy server option succeeds opt sensu embedded bin gem install version user install no document http proxy sensu plugins disk checks
1
4,873
25,020,429,873
IssuesEvent
2022-11-03 23:39:41
aws/serverless-application-model
https://api.github.com/repos/aws/serverless-application-model
closed
Allow to pass parameter value for 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function'
type/feature stage/waiting-for-release maintainer/need-followup
When you reference a parameter for 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function', it is not honoring the parameter value passed and setting the "State": "ENABLED" for Events::Rule in the processed template. 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function' currently only accepts 'true' or 'false' bool values hard-coded as string in template. in the background when composing the processed template, 'AWS::Serverless-2016-10-31' transform sees: - if 'Enabled' property is set in the ScheduledEvent, - if it is set, 'State' Is set to 'DISABLED' only if the 'Enabled' property is 'False'. If it is anything else, 'State' Is set to 'ENABLED'. You can reference the transform code here: https://github.com/awslabs/serverless-application-model/blob/93b6ac0afb6f322e047d6e4c4887f0d829e54b88/samtranslator/model/eventsources/push.py#L113 Currently Serverless transform is not capable of reading the parameter value to set the 'State' of Event::Rule. Please add support to parse the parameter value and set the 'State' property value to 'DISABLED' /'Enabled' accordingly.
True
Allow to pass parameter value for 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function' - When you reference a parameter for 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function', it is not honoring the parameter value passed and setting the "State": "ENABLED" for Events::Rule in the processed template. 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function' currently only accepts 'true' or 'false' bool values hard-coded as string in template. in the background when composing the processed template, 'AWS::Serverless-2016-10-31' transform sees: - if 'Enabled' property is set in the ScheduledEvent, - if it is set, 'State' Is set to 'DISABLED' only if the 'Enabled' property is 'False'. If it is anything else, 'State' Is set to 'ENABLED'. You can reference the transform code here: https://github.com/awslabs/serverless-application-model/blob/93b6ac0afb6f322e047d6e4c4887f0d829e54b88/samtranslator/model/eventsources/push.py#L113 Currently Serverless transform is not capable of reading the parameter value to set the 'State' of Event::Rule. Please add support to parse the parameter value and set the 'State' property value to 'DISABLED' /'Enabled' accordingly.
main
allow to pass parameter value for enabled property in scheduledevent of aws serverless function when you reference a parameter for enabled property in scheduledevent of aws serverless function it is not honoring the parameter value passed and setting the state enabled for events rule in the processed template enabled property in scheduledevent of aws serverless function currently only accepts true or false bool values hard coded as string in template in the background when composing the processed template aws serverless transform sees if enabled property is set in the scheduledevent if it is set state is set to disabled only if the enabled property is false if it is anything else state is set to enabled you can reference the transform code here currently serverless transform is not capable of reading the parameter value to set the state of event rule please add support to parse the parameter value and set the state property value to disabled enabled accordingly
1
63,650
8,689,913,602
IssuesEvent
2018-12-03 20:01:45
junit-team/junit5
https://api.github.com/repos/junit-team/junit5
closed
Document default execution mode for test classes that use Lifecycle.PER_CLASS and for @Nested test classes
component: Jupiter theme: documentation
JUnit 5.3.1 I have set junit.jupiter.execution.parallel.enabled=true in junit-platform.properties. According to the docs, all tests should now run in parallel. In fact, only tests with @Execution(ExecutionMode.CONCURRENT) run in parallel. Attaching 2 test classes. [examples.zip](https://github.com/junit-team/junit5/files/2600122/examples.zip)
1.0
Document default execution mode for test classes that use Lifecycle.PER_CLASS and for @Nested test classes - JUnit 5.3.1 I have set junit.jupiter.execution.parallel.enabled=true in junit-platform.properties. According to the docs, all tests should now run in parallel. In fact, only tests with @Execution(ExecutionMode.CONCURRENT) run in parallel. Attaching 2 test classes. [examples.zip](https://github.com/junit-team/junit5/files/2600122/examples.zip)
non_main
document default execution mode for test classes that use lifecycle per class and for nested test classes junit i have set junit jupiter execution parallel enabled true in junit platform properties according to the docs all tests should now run in parallel in fact only tests with execution executionmode concurrent run in parallel attaching test classes
0
2,542
8,671,667,527
IssuesEvent
2018-11-29 19:48:29
HippieStation/HippieStation
https://api.github.com/repos/HippieStation/HippieStation
closed
Remove /turf/open/space/bluespace
Higgs-Bugson Maintainability/Hinders improvements
[Round ID]: 33323-4 Really dodgy and broken turf, will lead to server crashes as it makes sparks. Then the sparks go into the other turfs to make even more sparks. Infinite sparks for infinite lag.
True
Remove /turf/open/space/bluespace - [Round ID]: 33323-4 Really dodgy and broken turf, will lead to server crashes as it makes sparks. Then the sparks go into the other turfs to make even more sparks. Infinite sparks for infinite lag.
main
remove turf open space bluespace really dodgy and broken turf will lead to server crashes as it makes sparks then the sparks go into the other turfs to make even more sparks infinite sparks for infinite lag
1
498,017
14,398,907,603
IssuesEvent
2020-12-03 10:12:28
gnosis/conditional-tokens-explorer
https://api.github.com/repos/gnosis/conditional-tokens-explorer
closed
Lists filter results are not reset after connecting to a wallet
Medium priority QA Passed bug verify in production
1. Disconnect a wallet 2. apply any filters in the Conditions/Positions lists 3. Connect to a wallet **AR:** filter's bar is closed, however, filtering is not reset **ER:** filtering should be reset (according to the decision in #555)
1.0
Lists filter results are not reset after connecting to a wallet - 1. Disconnect a wallet 2. apply any filters in the Conditions/Positions lists 3. Connect to a wallet **AR:** filter's bar is closed, however, filtering is not reset **ER:** filtering should be reset (according to the decision in #555)
non_main
lists filter results are not reset after connecting to a wallet disconnect a wallet apply any filters in the conditions positions lists connect to a wallet ar filter s bar is closed however filtering is not reset er filtering should be reset according to the decision in
0
35,155
7,613,619,241
IssuesEvent
2018-05-01 21:57:22
PowerDNS/pdns
https://api.github.com/repos/PowerDNS/pdns
closed
rec_control does not recognize the 'include-dir' configuration directive
backport to stable? defect rec
- Program: recursor - Issue type: Bug report ### Short description While tracking an issue with rec_control, I discovered that the program does not recognize or honor the ''include-dir'' directive in /etc/powerdns/recursor.conf and will therefore fail to load any options that are only set in included files. ### Environment - Operating system: Debian GNU/Linux 9.4 - Software version: 4.1.2 - Software source: PDNS Repository ### Steps to reproduce 1. In recursor.conf, add the statement `include-dir=/etc/powerdns/recursor.d/` 2. In /etc/powerdns/recursor.d/local.conf, add the statement ``` socket-dir=/var/run/pdns-recursor socket-mode=0775 ``` 3. As someone not root but in the `pdns` group, run `rec_control version` ### Expected behaviour ``` pdns@stheno:~$ rec_control version 4.1.2 ``` ### Actual behaviour ``` pdns@stheno:~$ rec_control version Fatal: Unable to generate local temporary file in directory '/var/run': Permission denied ``` (It's still looking in the default location of `/var/run/` for sockets and tempfile creation) ### Other information I consulted with Habbie on IRC and they confirmed that rec_control doesn't look at `include_dir` According to them a quick grep of pdns_control sources indicate it, too, doesn't check for `include_dir`, but I don't currently have a non-production auth server setup to test.
1.0
rec_control does not recognize the 'include-dir' configuration directive - - Program: recursor - Issue type: Bug report ### Short description While tracking an issue with rec_control, I discovered that the program does not recognize or honor the ''include-dir'' directive in /etc/powerdns/recursor.conf and will therefore fail to load any options that are only set in included files. ### Environment - Operating system: Debian GNU/Linux 9.4 - Software version: 4.1.2 - Software source: PDNS Repository ### Steps to reproduce 1. In recursor.conf, add the statement `include-dir=/etc/powerdns/recursor.d/` 2. In /etc/powerdns/recursor.d/local.conf, add the statement ``` socket-dir=/var/run/pdns-recursor socket-mode=0775 ``` 3. As someone not root but in the `pdns` group, run `rec_control version` ### Expected behaviour ``` pdns@stheno:~$ rec_control version 4.1.2 ``` ### Actual behaviour ``` pdns@stheno:~$ rec_control version Fatal: Unable to generate local temporary file in directory '/var/run': Permission denied ``` (It's still looking in the default location of `/var/run/` for sockets and tempfile creation) ### Other information I consulted with Habbie on IRC and they confirmed that rec_control doesn't look at `include_dir` According to them a quick grep of pdns_control sources indicate it, too, doesn't check for `include_dir`, but I don't currently have a non-production auth server setup to test.
non_main
rec control does not recognize the include dir configuration directive program recursor issue type bug report short description while tracking an issue with rec control i discovered that the program does not recognize or honor the include dir directive in etc powerdns recursor conf and will therefore fail to load any options that are only set in included files environment operating system debian gnu linux software version software source pdns repository steps to reproduce in recursor conf add the statement include dir etc powerdns recursor d in etc powerdns recursor d local conf add the statement socket dir var run pdns recursor socket mode as someone not root but in the pdns group run rec control version expected behaviour pdns stheno rec control version actual behaviour pdns stheno rec control version fatal unable to generate local temporary file in directory var run permission denied it s still looking in the default location of var run for sockets and tempfile creation other information i consulted with habbie on irc and they confirmed that rec control doesn t look at include dir according to them a quick grep of pdns control sources indicate it too doesn t check for include dir but i don t currently have a non production auth server setup to test
0
5,310
26,809,897,780
IssuesEvent
2023-02-01 21:24:24
aws/serverless-application-model
https://api.github.com/repos/aws/serverless-application-model
closed
Add Support for State in CloudWatchEvent/EventBridgeRule/Schedule events for AWS::Serverless::Lambda
area/event-source area/resource/function type/feature stage/pm-review area/step-function maintainer/need-response type/new-property area/event-bridge
**Description:** When creating an EventBridge rule for a Lambda function through AWS::Serverless::Events, it's not possible to specify a State. This means that rules will always default to the ENABLED state. **Steps to reproduce the issue:** 1. Create a template with an AWS::Serverless::Lambda resource containing an EventBridgeRule event with a State property. 2. Run cfn-lint **Observed result:** cfn-lint fails with the following error message: ```E0001 Error transforming template: Resource with id [OnEventsFunctionEvent] is invalid. property State not defined for resource of type CloudWatchEvent``` **Expected result:** No error.
True
Add Support for State in CloudWatchEvent/EventBridgeRule/Schedule events for AWS::Serverless::Lambda - **Description:** When creating an EventBridge rule for a Lambda function through AWS::Serverless::Events, it's not possible to specify a State. This means that rules will always default to the ENABLED state. **Steps to reproduce the issue:** 1. Create a template with an AWS::Serverless::Lambda resource containing an EventBridgeRule event with a State property. 2. Run cfn-lint **Observed result:** cfn-lint fails with the following error message: ```E0001 Error transforming template: Resource with id [OnEventsFunctionEvent] is invalid. property State not defined for resource of type CloudWatchEvent``` **Expected result:** No error.
main
add support for state in cloudwatchevent eventbridgerule schedule events for aws serverless lambda description when creating an eventbridge rule for a lambda function through aws serverless events it s not possible to specify a state this means that rules will always default to the enabled state steps to reproduce the issue create a template with an aws serverless lambda resource containing an eventbridgerule event with a state property run cfn lint observed result cfn lint fails with the following error message error transforming template resource with id is invalid property state not defined for resource of type cloudwatchevent expected result no error
1
3,649
14,888,904,361
IssuesEvent
2021-01-20 20:34:28
carbon-design-system/carbon
https://api.github.com/repos/carbon-design-system/carbon
closed
Show selected items first in the multi-select dropdown list
status: needs triage 🕵️‍♀️ status: waiting for maintainer response 💬 type: enhancement 💡
### Summary We use the multi-select dropdown a lot in our application. The length of the list is not always predictable and can get long. We'd like the multi-select dropdown list to reorder the items and show the selected ones at the top. When the list gets long, it generally takes longer for the user to find specific item in case of making a correction. ### Desired UX and success metrics _Current component_ The tag shows there are 4 items selected. To find a specific item, the user may need to scroll to search for it. Although the component also supports filter, but it's difficult for user to have to recall complex name strings. ![image](https://user-images.githubusercontent.com/46002772/94854427-ded2db00-03fa-11eb-860d-e7463fae8bb8.png) _Proposal_ Always show the selected items at the top, so that deselection of any item becomes easier. The reordering should happen upon closing the menu, and the selected items appear at the top when the user opens the dropdown the next time. ![image](https://user-images.githubusercontent.com/46002772/94854459-edb98d80-03fa-11eb-8221-fc0ed02b8132.png) ### Specific timeline issues / requests It'd be ideal to have this improvement ready for our next release sometime at the end of this year.
True
Show selected items first in the multi-select dropdown list - ### Summary We use the multi-select dropdown a lot in our application. The length of the list is not always predictable and can get long. We'd like the multi-select dropdown list to reorder the items and show the selected ones at the top. When the list gets long, it generally takes longer for the user to find specific item in case of making a correction. ### Desired UX and success metrics _Current component_ The tag shows there are 4 items selected. To find a specific item, the user may need to scroll to search for it. Although the component also supports filter, but it's difficult for user to have to recall complex name strings. ![image](https://user-images.githubusercontent.com/46002772/94854427-ded2db00-03fa-11eb-860d-e7463fae8bb8.png) _Proposal_ Always show the selected items at the top, so that deselection of any item becomes easier. The reordering should happen upon closing the menu, and the selected items appear at the top when the user opens the dropdown the next time. ![image](https://user-images.githubusercontent.com/46002772/94854459-edb98d80-03fa-11eb-8221-fc0ed02b8132.png) ### Specific timeline issues / requests It'd be ideal to have this improvement ready for our next release sometime at the end of this year.
main
show selected items first in the multi select dropdown list summary we use the multi select dropdown a lot in our application the length of the list is not always predictable and can get long we d like the multi select dropdown list to reorder the items and show the selected ones at the top when the list gets long it generally takes longer for the user to find specific item in case of making a correction desired ux and success metrics current component the tag shows there are items selected to find a specific item the user may need to scroll to search for it although the component also supports filter but it s difficult for user to have to recall complex name strings proposal always show the selected items at the top so that deselection of any item becomes easier the reordering should happen upon closing the menu and the selected items appear at the top when the user opens the dropdown the next time specific timeline issues requests it d be ideal to have this improvement ready for our next release sometime at the end of this year
1
3,504
13,677,037,395
IssuesEvent
2020-09-29 14:34:14
heroku/heroku-buildpack-python
https://api.github.com/repos/heroku/heroku-buildpack-python
closed
Correct all rm -fr's to rm -rf convention
maintainability-issue
Recently, I was unable to locate a line by search, due to the target line not following the standard convention `rm -rf`. While there's nothing wrong with `-fr`, it works the same way, it interfered with a bug fix and added a few minutes to the search. This is a maintainability issue, so setting the `rm -rf` convention as the standard for the buildpack.
True
Correct all rm -fr's to rm -rf convention - Recently, I was unable to locate a line by search, due to the target line not following the standard convention `rm -rf`. While there's nothing wrong with `-fr`, it works the same way, it interfered with a bug fix and added a few minutes to the search. This is a maintainability issue, so setting the `rm -rf` convention as the standard for the buildpack.
main
correct all rm fr s to rm rf convention recently i was unable to locate a line by search due to the target line not following the standard convention rm rf while there s nothing wrong with fr it works the same way it interfered with a bug fix and added a few minutes to the search this is a maintainability issue so setting the rm rf convention as the standard for the buildpack
1
2,378
8,482,323,544
IssuesEvent
2018-10-25 18:13:25
ansible/ansible
https://api.github.com/repos/ansible/ansible
closed
mysql_db test always fails the first time
affects_2.8 bug module needs_maintainer needs_triage support:community
<!--- Verify first that your issue is not already reported on GitHub --> <!--- Also test if the latest release and devel branch are affected too --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### SUMMARY This looks like the very last mysql_db test is failing the first time it runs on centos, rhel, fedora, and opensuse: 01:42 01:42 TASK [mysql_db : state dump without department table.] ************************* 01:42 fatal: [testhost]: FAILED! => {"changed": false, "msg": "mysqldump: Got error: 2002: \"Can't connect to local MySQL server through socket '' (111)\" when trying to connect\n"} The second time it runs, the test succeeds. https://app.shippable.com/github/ansible/ansible/runs/90163/summary/console ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME test/integration/targets/mysql_db ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ```paste below all ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ```paste below ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> Shippable CI. rhel, centos, and new fedora hosts. ##### STEPS TO REPRODUCE See the shippable URL <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> Test passes the first time. ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> Test fails because it can't access the socket file for some reason. <!--- Paste verbatim command output between quotes --> ```paste below ```
True
mysql_db test always fails the first time - <!--- Verify first that your issue is not already reported on GitHub --> <!--- Also test if the latest release and devel branch are affected too --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### SUMMARY This looks like the very last mysql_db test is failing the first time it runs on centos, rhel, fedora, and opensuse: 01:42 01:42 TASK [mysql_db : state dump without department table.] ************************* 01:42 fatal: [testhost]: FAILED! => {"changed": false, "msg": "mysqldump: Got error: 2002: \"Can't connect to local MySQL server through socket '' (111)\" when trying to connect\n"} The second time it runs, the test succeeds. https://app.shippable.com/github/ansible/ansible/runs/90163/summary/console ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME test/integration/targets/mysql_db ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ```paste below all ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ```paste below ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> Shippable CI. rhel, centos, and new fedora hosts. ##### STEPS TO REPRODUCE See the shippable URL <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> Test passes the first time. ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> Test fails because it can't access the socket file for some reason. <!--- Paste verbatim command output between quotes --> ```paste below ```
main
mysql db test always fails the first time summary this looks like the very last mysql db test is failing the first time it runs on centos rhel fedora and opensuse task fatal failed changed false msg mysqldump got error can t connect to local mysql server through socket when trying to connect n the second time it runs the test succeeds issue type bug report component name test integration targets mysql db ansible version paste below all configuration paste below os environment shippable ci rhel centos and new fedora hosts steps to reproduce see the shippable url expected results test passes the first time actual results test fails because it can t access the socket file for some reason paste below
1
4,116
19,533,231,777
IssuesEvent
2021-12-30 21:46:57
backdrop-ops/contrib
https://api.github.com/repos/backdrop-ops/contrib
closed
Request to join contrib
Maintainer application
Hi. I would like to join the Backdrop Contrib group. I have started a module that was based on views B grid Here is my repo... https://github.com/albanycomputers/views_grid_repeat I agree to the T&C's at https://github.com/backdrop-ops/contrib Many thanks for your consideration Steve Moorhouse
True
Request to join contrib - Hi. I would like to join the Backdrop Contrib group. I have started a module that was based on views B grid Here is my repo... https://github.com/albanycomputers/views_grid_repeat I agree to the T&C's at https://github.com/backdrop-ops/contrib Many thanks for your consideration Steve Moorhouse
main
request to join contrib hi i would like to join the backdrop contrib group i have started a module that was based on views b grid here is my repo i agree to the t c s at many thanks for your consideration steve moorhouse
1
3,129
11,991,302,811
IssuesEvent
2020-04-08 08:06:43
precice/precice
https://api.github.com/repos/precice/precice
opened
Put API usage checks into one common place
maintainability usability
**Please describe the problem you are trying to solve?** The preCICE requires the user to call API functions in a certain order (example: before calling `initializeData`, one has to call `initialize`). We use `PRECICE_CHECKS` to catch wrong usage. However, these checks are scattert over the codebase which makes it hard to avoid duplicate checks and to not miss necessary checks. **Describe the solution you propose.** We want to put all preCICE checks that deal with correct API usage into one common place. `SolverInterfaceImpl` might be a fitting candidate. See also [this comment](https://github.com/precice/precice/pull/689#discussion_r402780152).
True
Put API usage checks into one common place - **Please describe the problem you are trying to solve?** The preCICE requires the user to call API functions in a certain order (example: before calling `initializeData`, one has to call `initialize`). We use `PRECICE_CHECKS` to catch wrong usage. However, these checks are scattert over the codebase which makes it hard to avoid duplicate checks and to not miss necessary checks. **Describe the solution you propose.** We want to put all preCICE checks that deal with correct API usage into one common place. `SolverInterfaceImpl` might be a fitting candidate. See also [this comment](https://github.com/precice/precice/pull/689#discussion_r402780152).
main
put api usage checks into one common place please describe the problem you are trying to solve the precice requires the user to call api functions in a certain order example before calling initializedata one has to call initialize we use precice checks to catch wrong usage however these checks are scattert over the codebase which makes it hard to avoid duplicate checks and to not miss necessary checks describe the solution you propose we want to put all precice checks that deal with correct api usage into one common place solverinterfaceimpl might be a fitting candidate see also
1
78,339
15,569,970,460
IssuesEvent
2021-03-17 01:25:16
jrrk/riscv-linux
https://api.github.com/repos/jrrk/riscv-linux
opened
CVE-2019-12614 (Medium) detected in aspeedaspeed-4.19-devicetree-no-fsi
security vulnerability
## CVE-2019-12614 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>aspeedaspeed-4.19-devicetree-no-fsi</b></p></summary> <p> <p>ASPEED ARM SoC development</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git>https://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/powerpc/platforms/pseries/dlpar.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/powerpc/platforms/pseries/dlpar.c</b> </p> </details> <p></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> An issue was discovered in dlpar_parse_cc_property in arch/powerpc/platforms/pseries/dlpar.c in the Linux kernel through 5.1.6. There is an unchecked kstrdup of prop->name, which might allow an attacker to cause a denial of service (NULL pointer dereference and system crash). <p>Publish Date: 2019-06-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12614>CVE-2019-12614</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>4.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12614">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12614</a></p> <p>Release Date: 2019-06-03</p> <p>Fix Resolution: v5.1-rc7</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-12614 (Medium) detected in aspeedaspeed-4.19-devicetree-no-fsi - ## CVE-2019-12614 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>aspeedaspeed-4.19-devicetree-no-fsi</b></p></summary> <p> <p>ASPEED ARM SoC development</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git>https://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/powerpc/platforms/pseries/dlpar.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>riscv-linux/arch/powerpc/platforms/pseries/dlpar.c</b> </p> </details> <p></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> An issue was discovered in dlpar_parse_cc_property in arch/powerpc/platforms/pseries/dlpar.c in the Linux kernel through 5.1.6. There is an unchecked kstrdup of prop->name, which might allow an attacker to cause a denial of service (NULL pointer dereference and system crash). <p>Publish Date: 2019-06-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12614>CVE-2019-12614</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>4.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12614">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12614</a></p> <p>Release Date: 2019-06-03</p> <p>Fix Resolution: v5.1-rc7</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_main
cve medium detected in aspeedaspeed devicetree no fsi cve medium severity vulnerability vulnerable library aspeedaspeed devicetree no fsi aspeed arm soc development library home page a href vulnerable source files riscv linux arch powerpc platforms pseries dlpar c riscv linux arch powerpc platforms pseries dlpar c vulnerability details an issue was discovered in dlpar parse cc property in arch powerpc platforms pseries dlpar c in the linux kernel through there is an unchecked kstrdup of prop name which might allow an attacker to cause a denial of service null pointer dereference and system crash publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required high user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
4,979
25,552,000,196
IssuesEvent
2022-11-30 01:05:53
carbon-design-system/carbon
https://api.github.com/repos/carbon-design-system/carbon
closed
Tabs does not respond to container resizing
type: enhancement 💡 status: help wanted 👐 proposal: open status: waiting for maintainer response 💬
<!-- Feel free to remove sections that aren't relevant. ## Title line template: [Title]: Brief description --> ## What package(s) are you using? <!-- Add an x in one of the options below, for example: - [x] package name --> - [ ] `carbon-components` - [x] `carbon-components-react` ## Detailed description > Describe in detail the issue you're having. If Tabs is placed in a container that supports resizing (e.g. a container with a `resize: both` css rule), the `Tabs` component does not respond to container resizing. Looking at the source, I see that it only responds to window-level resizing. The fix would be to use a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver), and attach it to the Tabs ref, e.g. via ```typescript const observer = new ResizeObserver(entries => { doResize(entries[0].contentRect.width, entries[0].contentRect.height) }) observer.observe(theTabsDom) ``` > Is this issue related to a specific component? Tabs > What did you expect to happen? What happened instead? What would you like to > see changed? ```jsx <div style={{resize: 'both', overflow: 'auto'}}> <Tabs>...</Tabs> </div> ``` > What browser are you working in? Electron 7, Firefox, Chrome, ... > What version of the Carbon Design System are you using? > What offering/product do you work on? Any pressing ship or release dates we > should be aware of? Kui ## Steps to reproduce the issue 1. Step one 2. Step two 3. Step three 4. etc. > Please create a reduced test case in CodeSandbox > > - Style and vanilla JS: > https://codesandbox.io/s/github/carbon-design-system/carbon/tree/master/packages/components/examples/codesandbox > - React: > https://codesandbox.io/s/github/carbon-design-system/carbon/tree/master/packages/react/examples/codesandbox i'd love to create a sandbox, but your template seems to be broken. ## Additional information - Screenshots or code - Notes
True
Tabs does not respond to container resizing - <!-- Feel free to remove sections that aren't relevant. ## Title line template: [Title]: Brief description --> ## What package(s) are you using? <!-- Add an x in one of the options below, for example: - [x] package name --> - [ ] `carbon-components` - [x] `carbon-components-react` ## Detailed description > Describe in detail the issue you're having. If Tabs is placed in a container that supports resizing (e.g. a container with a `resize: both` css rule), the `Tabs` component does not respond to container resizing. Looking at the source, I see that it only responds to window-level resizing. The fix would be to use a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver), and attach it to the Tabs ref, e.g. via ```typescript const observer = new ResizeObserver(entries => { doResize(entries[0].contentRect.width, entries[0].contentRect.height) }) observer.observe(theTabsDom) ``` > Is this issue related to a specific component? Tabs > What did you expect to happen? What happened instead? What would you like to > see changed? ```jsx <div style={{resize: 'both', overflow: 'auto'}}> <Tabs>...</Tabs> </div> ``` > What browser are you working in? Electron 7, Firefox, Chrome, ... > What version of the Carbon Design System are you using? > What offering/product do you work on? Any pressing ship or release dates we > should be aware of? Kui ## Steps to reproduce the issue 1. Step one 2. Step two 3. Step three 4. etc. > Please create a reduced test case in CodeSandbox > > - Style and vanilla JS: > https://codesandbox.io/s/github/carbon-design-system/carbon/tree/master/packages/components/examples/codesandbox > - React: > https://codesandbox.io/s/github/carbon-design-system/carbon/tree/master/packages/react/examples/codesandbox i'd love to create a sandbox, but your template seems to be broken. ## Additional information - Screenshots or code - Notes
main
tabs does not respond to container resizing feel free to remove sections that aren t relevant title line template brief description what package s are you using add an x in one of the options below for example package name carbon components carbon components react detailed description describe in detail the issue you re having if tabs is placed in a container that supports resizing e g a container with a resize both css rule the tabs component does not respond to container resizing looking at the source i see that it only responds to window level resizing the fix would be to use a and attach it to the tabs ref e g via typescript const observer new resizeobserver entries doresize entries contentrect width entries contentrect height observer observe thetabsdom is this issue related to a specific component tabs what did you expect to happen what happened instead what would you like to see changed jsx what browser are you working in electron firefox chrome what version of the carbon design system are you using what offering product do you work on any pressing ship or release dates we should be aware of kui steps to reproduce the issue step one step two step three etc please create a reduced test case in codesandbox style and vanilla js react i d love to create a sandbox but your template seems to be broken additional information screenshots or code notes
1
1,088
4,938,200,347
IssuesEvent
2016-11-29 10:25:41
duckduckgo/zeroclickinfo-fathead
https://api.github.com/repos/duckduckgo/zeroclickinfo-fathead
closed
C++ Reference Docs: Support specific queries
Maintainer Input Requested Mission: Programming Skill: Python Status: Needs a Developer Suggestion Topic: C++ Triggering
E.g., `std::unordered_set iterators` and `std::unordered_set member types`. --- IA Page: http://duck.co/ia/view/cppreference_doc [Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @mylainos
True
C++ Reference Docs: Support specific queries - E.g., `std::unordered_set iterators` and `std::unordered_set member types`. --- IA Page: http://duck.co/ia/view/cppreference_doc [Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @mylainos
main
c reference docs support specific queries e g std unordered set iterators and std unordered set member types ia page mylainos
1
1,008
4,787,028,347
IssuesEvent
2016-10-29 19:23:03
coniks-sys/coniks-go
https://api.github.com/repos/coniks-sys/coniks-go
opened
Make distinction between errors and request/check results more clear
maintainability
Only some of the error codes in error.go refer to actual errors, the others refer to results to a client request, or results of consistency checks. Original discussion: https://github.com/coniks-sys/coniks-go/pull/105#discussion_r85631712
True
Make distinction between errors and request/check results more clear - Only some of the error codes in error.go refer to actual errors, the others refer to results to a client request, or results of consistency checks. Original discussion: https://github.com/coniks-sys/coniks-go/pull/105#discussion_r85631712
main
make distinction between errors and request check results more clear only some of the error codes in error go refer to actual errors the others refer to results to a client request or results of consistency checks original discussion
1
764,775
26,816,642,280
IssuesEvent
2023-02-02 05:36:05
erxes/erxes
https://api.github.com/repos/erxes/erxes
closed
Client Portal improvement
type: enhancement priority: High
1. I must do refresh when i create ticket 2. Description 3. Show Probability /inprogress, resolve/
1.0
Client Portal improvement - 1. I must do refresh when i create ticket 2. Description 3. Show Probability /inprogress, resolve/
non_main
client portal improvement i must do refresh when i create ticket description show probability inprogress resolve
0
4,362
22,063,182,661
IssuesEvent
2022-05-30 21:19:35
thanos-io/thanos-community-website
https://api.github.com/repos/thanos-io/thanos-community-website
opened
Add/implement domain name
only-doable-by-maintainers
We need to add a domain name. Multiple reasons: - Looks nice - Enables us to use SSL - Required for SSO on ArgoCD due to the callback I believe @GiedriusS was working on this already! :) p.s. added the tag "only-doable-by-maintainers" as this is unfortunately a thing that requires extra rights (:
True
Add/implement domain name - We need to add a domain name. Multiple reasons: - Looks nice - Enables us to use SSL - Required for SSO on ArgoCD due to the callback I believe @GiedriusS was working on this already! :) p.s. added the tag "only-doable-by-maintainers" as this is unfortunately a thing that requires extra rights (:
main
add implement domain name we need to add a domain name multiple reasons looks nice enables us to use ssl required for sso on argocd due to the callback i believe giedriuss was working on this already p s added the tag only doable by maintainers as this is unfortunately a thing that requires extra rights
1
3,079
11,659,697,968
IssuesEvent
2020-03-03 00:51:39
video-dev/hls.js
https://api.github.com/repos/video-dev/hls.js
closed
Could you bump version on bower?
Chore Maintainer task Question Wontfix
**What do you want to do with Hls.js?** I want to use it as a bower dependency. **What have you tried so far?** * I've run: ```bash $ bower info hls.js ``` which showed latest version: `10.0.1`. * I've checked also `npm` and the latest version for `hls.js` is `12.0.4` there.
True
Could you bump version on bower? - **What do you want to do with Hls.js?** I want to use it as a bower dependency. **What have you tried so far?** * I've run: ```bash $ bower info hls.js ``` which showed latest version: `10.0.1`. * I've checked also `npm` and the latest version for `hls.js` is `12.0.4` there.
main
could you bump version on bower what do you want to do with hls js i want to use it as a bower dependency what have you tried so far i ve run bash bower info hls js which showed latest version i ve checked also npm and the latest version for hls js is there
1
75,221
25,596,967,195
IssuesEvent
2022-12-01 16:54:53
scipy/scipy
https://api.github.com/repos/scipy/scipy
opened
BUG: scipy.stats.pearsonr produces incorrect output for complex arrays
defect
### Describe your issue. I create a numpy array full of complex numbers, and I compute the correlation of the array with itself. Instead of the expected output of R = 1, some other value is produced. ### Reproducing Code Example ```python import numpy as np import scipy.stats array = np.array([ -4.21904583e-03-1.53714478e-03j, -4.24663044e-03-1.12832926e-03j, -4.26968892e-03-4.87451439e-04j, -6.99917538e-03+3.07376860e-04j, 0.00000000e+00+0.00000000e+00j, -2.42585590e-02+1.42052459e-02j, -5.53404148e-03+4.60188062e-03j, -4.68829482e-03+4.90179019e-03j, -7.02331258e-03+8.75908673e-03j, -1.31233383e-01+1.86572484e-01j, -4.05137401e-03+6.59972035e-03j, -4.20701822e-03+7.29813816e-03j, -3.56487231e-03+6.51759430e-03j, -3.68077200e-03+7.04388575e-03j, -8.16459981e-02+1.70084145e-01j, -5.11737898e-03+1.98164995e-02j, 6.72772914e-04-7.28110367e-05j, 2.13957504e-03-1.82525995e-03j, 1.60369835e-03-1.54029189e-03j, 8.77788719e-02-8.45568854e-02j, 1.04277417e-01-9.38854749e-02j, 7.58465696e-03-6.07906563e-03j, 8.00776452e-03-5.70470615e-03j, 8.36166252e-03-5.14978313e-03j, 0.00000000e+00+0.00000000e+00j, 0.00000000e+00+0.00000000e+00j, 0.00000000e+00+0.00000000e+00j, 7.26422461e-03+4.40382166e-04j, 4.01364547e-03+1.09269127e-03j, -1.99069471e-01-1.20355081e-01j, 1.56511579e-01+2.59839758e-01j, 9.14046953e-04+5.42262898e-03j, -8.37800782e-04+5.67555708e-03j, -3.36561822e-03+7.50108018e-03j, -4.22682090e-03+5.36279242e-03j, 5.95438564e-02-3.48209841e-02j, -6.77184281e-03+2.10711488e-03j, -4.84293269e-03+3.78698499e-04j, -5.13547723e-03-6.86765713e-04j, 4.48392070e-01+1.54568226e-01j, -3.17412047e-01-2.35431216e-01j, -2.95731737e-03-3.39078899e-03j, -1.95111443e-03-3.77545168e-03j, -2.82719903e-04-1.61393513e-03j, 7.20241467e-04-1.73515565e-03j, -1.96675563e-01-4.42259734e-02j, 0.00000000e+00+0.00000000e+00j, 4.84813452e-03+7.60742077e-03j, 6.31707602e-03+1.51808252e-02j, 2.99277774e-03+1.18667410e-02j, 5.64640060e-04+1.58372118e-02j, -1.74137347e-03+1.70383706e-02j, -5.91398408e-03+2.30008930e-02j, -7.12027831e-03+1.87732435e-02j, 9.30919156e-02-1.65255887e-01j, -2.09716130e-01+2.30490479e-01j, -1.80115101e-02+1.37248240e-02j, -1.85851718e-02+9.23420957e-03j, -1.88459965e-02+5.12854226e-03j, 1.09175874e+00-9.17875627e-02j, -1.63766142e-02-5.32431671e-03j, -1.24749963e-02-9.63714407e-03j, -7.58657222e-03-1.27728267e-02j, -1.99052439e-03-1.35879033e-02j, -5.70595470e-01+2.27742231e+00j, 1.24516564e-02-1.21867738e-02j, 1.82174257e-02-8.67884733e-03j, 2.27204879e-02-3.77097224e-03j, 2.66143091e-02+2.68683768e-03j, 1.06983372e+00+3.19301893e-01j, -6.86033738e-01-4.72910865e-01j, 3.00291320e-02+3.10297521e-02j, 2.22880055e-02+3.45332319e-02j, 1.61724440e-02+4.04122368e-02j, 9.78881043e-03+4.96053678e-02j, -6.51085120e-03+5.27227722e-02j, -1.76752380e-02+5.26095806e-02j, -3.81856382e-02+6.41735764e-02j, 0.00000000e+00+0.00000000e+00j, -4.32481463e-02+3.88706950e-02j ]) r, pval = scipy.stats.pearsonr(array, array) assert np.isclose(r, 1.0), r ``` ### Error message ```shell AssertionError Traceback (most recent call last) Cell In [77], line 47 4 array = np.array([ 5 -4.21904583e-03-1.53714478e-03j, -4.24663044e-03-1.12832926e-03j, 6 -4.26968892e-03-4.87451439e-04j, -6.99917538e-03+3.07376860e-04j, (...) 44 0.00000000e+00+0.00000000e+00j, -4.32481463e-02+3.88706950e-02j 45 ]) 46 r, pval = scipy.stats.pearsonr(array, array) ---> 47 assert np.isclose(r, 1.0), r AssertionError: (-0.22625405562215772-0.14080706439966875j) ``` ### SciPy/NumPy/Python version information 1.9.1 1.23.3 sys.version_info(major=3, minor=10, micro=6, releaselevel='final', serial=0)
1.0
BUG: scipy.stats.pearsonr produces incorrect output for complex arrays - ### Describe your issue. I create a numpy array full of complex numbers, and I compute the correlation of the array with itself. Instead of the expected output of R = 1, some other value is produced. ### Reproducing Code Example ```python import numpy as np import scipy.stats array = np.array([ -4.21904583e-03-1.53714478e-03j, -4.24663044e-03-1.12832926e-03j, -4.26968892e-03-4.87451439e-04j, -6.99917538e-03+3.07376860e-04j, 0.00000000e+00+0.00000000e+00j, -2.42585590e-02+1.42052459e-02j, -5.53404148e-03+4.60188062e-03j, -4.68829482e-03+4.90179019e-03j, -7.02331258e-03+8.75908673e-03j, -1.31233383e-01+1.86572484e-01j, -4.05137401e-03+6.59972035e-03j, -4.20701822e-03+7.29813816e-03j, -3.56487231e-03+6.51759430e-03j, -3.68077200e-03+7.04388575e-03j, -8.16459981e-02+1.70084145e-01j, -5.11737898e-03+1.98164995e-02j, 6.72772914e-04-7.28110367e-05j, 2.13957504e-03-1.82525995e-03j, 1.60369835e-03-1.54029189e-03j, 8.77788719e-02-8.45568854e-02j, 1.04277417e-01-9.38854749e-02j, 7.58465696e-03-6.07906563e-03j, 8.00776452e-03-5.70470615e-03j, 8.36166252e-03-5.14978313e-03j, 0.00000000e+00+0.00000000e+00j, 0.00000000e+00+0.00000000e+00j, 0.00000000e+00+0.00000000e+00j, 7.26422461e-03+4.40382166e-04j, 4.01364547e-03+1.09269127e-03j, -1.99069471e-01-1.20355081e-01j, 1.56511579e-01+2.59839758e-01j, 9.14046953e-04+5.42262898e-03j, -8.37800782e-04+5.67555708e-03j, -3.36561822e-03+7.50108018e-03j, -4.22682090e-03+5.36279242e-03j, 5.95438564e-02-3.48209841e-02j, -6.77184281e-03+2.10711488e-03j, -4.84293269e-03+3.78698499e-04j, -5.13547723e-03-6.86765713e-04j, 4.48392070e-01+1.54568226e-01j, -3.17412047e-01-2.35431216e-01j, -2.95731737e-03-3.39078899e-03j, -1.95111443e-03-3.77545168e-03j, -2.82719903e-04-1.61393513e-03j, 7.20241467e-04-1.73515565e-03j, -1.96675563e-01-4.42259734e-02j, 0.00000000e+00+0.00000000e+00j, 4.84813452e-03+7.60742077e-03j, 6.31707602e-03+1.51808252e-02j, 2.99277774e-03+1.18667410e-02j, 5.64640060e-04+1.58372118e-02j, -1.74137347e-03+1.70383706e-02j, -5.91398408e-03+2.30008930e-02j, -7.12027831e-03+1.87732435e-02j, 9.30919156e-02-1.65255887e-01j, -2.09716130e-01+2.30490479e-01j, -1.80115101e-02+1.37248240e-02j, -1.85851718e-02+9.23420957e-03j, -1.88459965e-02+5.12854226e-03j, 1.09175874e+00-9.17875627e-02j, -1.63766142e-02-5.32431671e-03j, -1.24749963e-02-9.63714407e-03j, -7.58657222e-03-1.27728267e-02j, -1.99052439e-03-1.35879033e-02j, -5.70595470e-01+2.27742231e+00j, 1.24516564e-02-1.21867738e-02j, 1.82174257e-02-8.67884733e-03j, 2.27204879e-02-3.77097224e-03j, 2.66143091e-02+2.68683768e-03j, 1.06983372e+00+3.19301893e-01j, -6.86033738e-01-4.72910865e-01j, 3.00291320e-02+3.10297521e-02j, 2.22880055e-02+3.45332319e-02j, 1.61724440e-02+4.04122368e-02j, 9.78881043e-03+4.96053678e-02j, -6.51085120e-03+5.27227722e-02j, -1.76752380e-02+5.26095806e-02j, -3.81856382e-02+6.41735764e-02j, 0.00000000e+00+0.00000000e+00j, -4.32481463e-02+3.88706950e-02j ]) r, pval = scipy.stats.pearsonr(array, array) assert np.isclose(r, 1.0), r ``` ### Error message ```shell AssertionError Traceback (most recent call last) Cell In [77], line 47 4 array = np.array([ 5 -4.21904583e-03-1.53714478e-03j, -4.24663044e-03-1.12832926e-03j, 6 -4.26968892e-03-4.87451439e-04j, -6.99917538e-03+3.07376860e-04j, (...) 44 0.00000000e+00+0.00000000e+00j, -4.32481463e-02+3.88706950e-02j 45 ]) 46 r, pval = scipy.stats.pearsonr(array, array) ---> 47 assert np.isclose(r, 1.0), r AssertionError: (-0.22625405562215772-0.14080706439966875j) ``` ### SciPy/NumPy/Python version information 1.9.1 1.23.3 sys.version_info(major=3, minor=10, micro=6, releaselevel='final', serial=0)
non_main
bug scipy stats pearsonr produces incorrect output for complex arrays describe your issue i create a numpy array full of complex numbers and i compute the correlation of the array with itself instead of the expected output of r some other value is produced reproducing code example python import numpy as np import scipy stats array np array r pval scipy stats pearsonr array array assert np isclose r r error message shell assertionerror traceback most recent call last cell in line array np array r pval scipy stats pearsonr array array assert np isclose r r assertionerror scipy numpy python version information sys version info major minor micro releaselevel final serial
0
353,472
25,120,837,190
IssuesEvent
2022-11-09 07:59:42
MinBZK/regels.overheid.nl
https://api.github.com/repos/MinBZK/regels.overheid.nl
reopened
Documentatie inrichten
documentation current sprint tech stack
Naar [voorbeeld NLX.io](https://docs.nlx.io/understanding-the-basics/introduction) keuze maken over hoe en waar documentatie plek en vorm te geven die afwijkt van de (formele) open-regels.nl content.
1.0
Documentatie inrichten - Naar [voorbeeld NLX.io](https://docs.nlx.io/understanding-the-basics/introduction) keuze maken over hoe en waar documentatie plek en vorm te geven die afwijkt van de (formele) open-regels.nl content.
non_main
documentatie inrichten naar keuze maken over hoe en waar documentatie plek en vorm te geven die afwijkt van de formele open regels nl content
0
2,525
8,655,460,618
IssuesEvent
2018-11-27 16:00:36
codestation/qcma
https://api.github.com/repos/codestation/qcma
closed
version numbers missing on macOS
unmaintained
i've downloaded Version '0.4.1' but when selecting it in the Finder and using 'Get Info' it doesn't show any Version-number at all. i guess the **CFBundleVersion** and **CFShortVersionString** entries in your Info.plist file are missing. all apps on macOS are supposed to contain valid version information.
True
version numbers missing on macOS - i've downloaded Version '0.4.1' but when selecting it in the Finder and using 'Get Info' it doesn't show any Version-number at all. i guess the **CFBundleVersion** and **CFShortVersionString** entries in your Info.plist file are missing. all apps on macOS are supposed to contain valid version information.
main
version numbers missing on macos i ve downloaded version but when selecting it in the finder and using get info it doesn t show any version number at all i guess the cfbundleversion and cfshortversionstring entries in your info plist file are missing all apps on macos are supposed to contain valid version information
1
276,900
30,567,870,709
IssuesEvent
2023-07-20 19:18:12
samq-democorp/easybuggy-lvp
https://api.github.com/repos/samq-democorp/easybuggy-lvp
opened
log4j-1.2.13.jar: 8 vulnerabilities (highest severity is: 9.8)
Mend: dependency security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>log4j-1.2.13.jar</b></p></summary> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (log4j version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2022-23305](https://www.mend.io/vulnerability-database/CVE-2022-23305) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Critical | 9.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.2 | &#9989; | | [CVE-2019-17571](https://www.mend.io/vulnerability-database/CVE-2019-17571) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Critical | 9.8 | log4j-1.2.13.jar | Direct | log4j-manual - 1.2.17-16;log4j-javadoc - 1.2.17-16;log4j - 1.2.17-16,1.2.17-16 | &#9989; | | [CVE-2020-9493](https://www.mend.io/vulnerability-database/CVE-2020-9493) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Critical | 9.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.1 | &#9989; | | [CVE-2022-23307](https://www.mend.io/vulnerability-database/CVE-2022-23307) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 8.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.1 | &#9989; | | [CVE-2022-23302](https://www.mend.io/vulnerability-database/CVE-2022-23302) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 8.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.1 | &#9989; | | [CVE-2021-4104](https://www.mend.io/vulnerability-database/CVE-2021-4104) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | log4j-1.2.13.jar | Direct | uom-parent - 1.0.3-3.module,1.0.3-3.module;uom-se-javadoc - 1.0.4-3.module;parfait-examples - 0.5.4-4.module;log4j-manual - 1.2.17-16;si-units-javadoc - 0.6.5-2.module;unit-api - 1.0-5.module,1.0-5.module;unit-api-javadoc - 1.0-5.module;parfait - 0.5.4-4.module,0.5.4-4.module;log4j-javadoc - 1.2.17-16;uom-systems-javadoc - 0.7-1.module;uom-lib-javadoc - 1.0.1-6.module;uom-systems - 0.7-1.module,0.7-1.module;log4j - 1.2.17-16,1.2.17-16;uom-se - 1.0.4-3.module,1.0.4-3.module;uom-lib - 1.0.1-6.module,1.0.1-6.module;parfait-javadoc - 0.5.4-4.module;pcp-parfait-agent - 0.5.4-4.module;si-units - 0.6.5-2.module,0.6.5-2.module | &#9989; | | [CVE-2023-26464](https://www.mend.io/vulnerability-database/CVE-2023-26464) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | log4j-1.2.13.jar | Direct | org.apache.logging.log4j:log4j-core:2.0 | &#9989; | | [CVE-2020-9488](https://www.mend.io/vulnerability-database/CVE-2020-9488) | <img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low | 3.7 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.3 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> CVE-2022-23305</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> By design, the JDBCAppender in Log4j 1.2.x accepts an SQL statement as a configuration parameter where the values to be inserted are converters from PatternLayout. The message converter, %m, is likely to always be included. This allows attackers to manipulate the SQL by entering crafted strings into input fields or headers of an application that are logged allowing unintended SQL queries to be executed. Note this issue only affects Log4j 1.x when specifically configured to use the JDBCAppender, which is not the default. Beginning in version 2.0-beta8, the JDBCAppender was re-introduced with proper support for parameterized SQL queries and further customization over the columns written to in logs. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23305>CVE-2022-23305</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://reload4j.qos.ch/">https://reload4j.qos.ch/</a></p> <p>Release Date: 2022-01-18</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.2</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> CVE-2019-17571</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> Included in Log4j 1.2 is a SocketServer class that is vulnerable to deserialization of untrusted data which can be exploited to remotely execute arbitrary code when combined with a deserialization gadget when listening to untrusted network traffic for log data. This affects Log4j versions up to 1.2 up to 1.2.17. <p>Publish Date: 2019-12-20 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-17571>CVE-2019-17571</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://lists.apache.org/thread.html/eea03d504b36e8f870e8321d908e1def1addda16adda04327fe7c125%40%3Cdev.logging.apache.org%3E">https://lists.apache.org/thread.html/eea03d504b36e8f870e8321d908e1def1addda16adda04327fe7c125%40%3Cdev.logging.apache.org%3E</a></p> <p>Release Date: 2019-12-20</p> <p>Fix Resolution: log4j-manual - 1.2.17-16;log4j-javadoc - 1.2.17-16;log4j - 1.2.17-16,1.2.17-16</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> CVE-2020-9493</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> A deserialization flaw was found in Apache Chainsaw versions prior to 2.1.0 which could lead to malicious code execution. <p>Publish Date: 2021-06-16 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-9493>CVE-2020-9493</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.openwall.com/lists/oss-security/2021/06/16/1">https://www.openwall.com/lists/oss-security/2021/06/16/1</a></p> <p>Release Date: 2021-06-16</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.1</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2022-23307</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> CVE-2020-9493 identified a deserialization issue that was present in Apache Chainsaw. Prior to Chainsaw V2.0 Chainsaw was a component of Apache Log4j 1.2.x where the same issue exists. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23307>CVE-2022-23307</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>8.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Release Date: 2022-01-18</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.1</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2022-23302</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> JMSSink in all versions of Log4j 1.x is vulnerable to deserialization of untrusted data when the attacker has write access to the Log4j configuration or if the configuration references an LDAP service the attacker has access to. The attacker can provide a TopicConnectionFactoryBindingName configuration causing JMSSink to perform JNDI requests that result in remote code execution in a similar fashion to CVE-2021-4104. Note this issue only affects Log4j 1.x when specifically configured to use JMSSink, which is not the default. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23302>CVE-2022-23302</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>8.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://reload4j.qos.ch/">https://reload4j.qos.ch/</a></p> <p>Release Date: 2022-01-18</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.1</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2021-4104</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> JMSAppender in Log4j 1.2 is vulnerable to deserialization of untrusted data when the attacker has write access to the Log4j configuration. The attacker can provide TopicBindingName and TopicConnectionFactoryBindingName configurations causing JMSAppender to perform JNDI requests that result in remote code execution in a similar fashion to CVE-2021-44228. Note this issue only affects Log4j 1.2 when specifically configured to use JMSAppender, which is not the default. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2021-12-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-4104>CVE-2021-4104</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2021-4104">https://nvd.nist.gov/vuln/detail/CVE-2021-4104</a></p> <p>Release Date: 2021-12-14</p> <p>Fix Resolution: uom-parent - 1.0.3-3.module,1.0.3-3.module;uom-se-javadoc - 1.0.4-3.module;parfait-examples - 0.5.4-4.module;log4j-manual - 1.2.17-16;si-units-javadoc - 0.6.5-2.module;unit-api - 1.0-5.module,1.0-5.module;unit-api-javadoc - 1.0-5.module;parfait - 0.5.4-4.module,0.5.4-4.module;log4j-javadoc - 1.2.17-16;uom-systems-javadoc - 0.7-1.module;uom-lib-javadoc - 1.0.1-6.module;uom-systems - 0.7-1.module,0.7-1.module;log4j - 1.2.17-16,1.2.17-16;uom-se - 1.0.4-3.module,1.0.4-3.module;uom-lib - 1.0.1-6.module,1.0.1-6.module;parfait-javadoc - 0.5.4-4.module;pcp-parfait-agent - 0.5.4-4.module;si-units - 0.6.5-2.module,0.6.5-2.module</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2023-26464</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> ** UNSUPPORTED WHEN ASSIGNED ** When using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) hashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized. This issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x. NOTE: This vulnerability only affects products that are no longer supported by the maintainer. <p>Publish Date: 2023-03-10 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-26464>CVE-2023-26464</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-vp98-w2p3-mv35">https://github.com/advisories/GHSA-vp98-w2p3-mv35</a></p> <p>Release Date: 2023-03-10</p> <p>Fix Resolution: org.apache.logging.log4j:log4j-core:2.0</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> CVE-2020-9488</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> Improper validation of certificate with host mismatch in Apache Log4j SMTP appender. This could allow an SMTPS connection to be intercepted by a man-in-the-middle attack which could leak any log messages sent through that appender. Fixed in Apache Log4j 2.12.3 and 2.13.1 <p>Publish Date: 2020-04-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-9488>CVE-2020-9488</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>3.7</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://reload4j.qos.ch/">https://reload4j.qos.ch/</a></p> <p>Release Date: 2020-04-27</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.3</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details> *** <p>In order to enable automatic remediation for this issue, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p>
True
log4j-1.2.13.jar: 8 vulnerabilities (highest severity is: 9.8) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>log4j-1.2.13.jar</b></p></summary> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (log4j version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2022-23305](https://www.mend.io/vulnerability-database/CVE-2022-23305) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Critical | 9.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.2 | &#9989; | | [CVE-2019-17571](https://www.mend.io/vulnerability-database/CVE-2019-17571) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Critical | 9.8 | log4j-1.2.13.jar | Direct | log4j-manual - 1.2.17-16;log4j-javadoc - 1.2.17-16;log4j - 1.2.17-16,1.2.17-16 | &#9989; | | [CVE-2020-9493](https://www.mend.io/vulnerability-database/CVE-2020-9493) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Critical | 9.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.1 | &#9989; | | [CVE-2022-23307](https://www.mend.io/vulnerability-database/CVE-2022-23307) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 8.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.1 | &#9989; | | [CVE-2022-23302](https://www.mend.io/vulnerability-database/CVE-2022-23302) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 8.8 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.1 | &#9989; | | [CVE-2021-4104](https://www.mend.io/vulnerability-database/CVE-2021-4104) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | log4j-1.2.13.jar | Direct | uom-parent - 1.0.3-3.module,1.0.3-3.module;uom-se-javadoc - 1.0.4-3.module;parfait-examples - 0.5.4-4.module;log4j-manual - 1.2.17-16;si-units-javadoc - 0.6.5-2.module;unit-api - 1.0-5.module,1.0-5.module;unit-api-javadoc - 1.0-5.module;parfait - 0.5.4-4.module,0.5.4-4.module;log4j-javadoc - 1.2.17-16;uom-systems-javadoc - 0.7-1.module;uom-lib-javadoc - 1.0.1-6.module;uom-systems - 0.7-1.module,0.7-1.module;log4j - 1.2.17-16,1.2.17-16;uom-se - 1.0.4-3.module,1.0.4-3.module;uom-lib - 1.0.1-6.module,1.0.1-6.module;parfait-javadoc - 0.5.4-4.module;pcp-parfait-agent - 0.5.4-4.module;si-units - 0.6.5-2.module,0.6.5-2.module | &#9989; | | [CVE-2023-26464](https://www.mend.io/vulnerability-database/CVE-2023-26464) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | log4j-1.2.13.jar | Direct | org.apache.logging.log4j:log4j-core:2.0 | &#9989; | | [CVE-2020-9488](https://www.mend.io/vulnerability-database/CVE-2020-9488) | <img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low | 3.7 | log4j-1.2.13.jar | Direct | ch.qos.reload4j:reload4j:1.2.18.3 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> CVE-2022-23305</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> By design, the JDBCAppender in Log4j 1.2.x accepts an SQL statement as a configuration parameter where the values to be inserted are converters from PatternLayout. The message converter, %m, is likely to always be included. This allows attackers to manipulate the SQL by entering crafted strings into input fields or headers of an application that are logged allowing unintended SQL queries to be executed. Note this issue only affects Log4j 1.x when specifically configured to use the JDBCAppender, which is not the default. Beginning in version 2.0-beta8, the JDBCAppender was re-introduced with proper support for parameterized SQL queries and further customization over the columns written to in logs. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23305>CVE-2022-23305</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://reload4j.qos.ch/">https://reload4j.qos.ch/</a></p> <p>Release Date: 2022-01-18</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.2</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> CVE-2019-17571</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> Included in Log4j 1.2 is a SocketServer class that is vulnerable to deserialization of untrusted data which can be exploited to remotely execute arbitrary code when combined with a deserialization gadget when listening to untrusted network traffic for log data. This affects Log4j versions up to 1.2 up to 1.2.17. <p>Publish Date: 2019-12-20 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-17571>CVE-2019-17571</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://lists.apache.org/thread.html/eea03d504b36e8f870e8321d908e1def1addda16adda04327fe7c125%40%3Cdev.logging.apache.org%3E">https://lists.apache.org/thread.html/eea03d504b36e8f870e8321d908e1def1addda16adda04327fe7c125%40%3Cdev.logging.apache.org%3E</a></p> <p>Release Date: 2019-12-20</p> <p>Fix Resolution: log4j-manual - 1.2.17-16;log4j-javadoc - 1.2.17-16;log4j - 1.2.17-16,1.2.17-16</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> CVE-2020-9493</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> A deserialization flaw was found in Apache Chainsaw versions prior to 2.1.0 which could lead to malicious code execution. <p>Publish Date: 2021-06-16 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-9493>CVE-2020-9493</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.openwall.com/lists/oss-security/2021/06/16/1">https://www.openwall.com/lists/oss-security/2021/06/16/1</a></p> <p>Release Date: 2021-06-16</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.1</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2022-23307</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> CVE-2020-9493 identified a deserialization issue that was present in Apache Chainsaw. Prior to Chainsaw V2.0 Chainsaw was a component of Apache Log4j 1.2.x where the same issue exists. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23307>CVE-2022-23307</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>8.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Release Date: 2022-01-18</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.1</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2022-23302</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> JMSSink in all versions of Log4j 1.x is vulnerable to deserialization of untrusted data when the attacker has write access to the Log4j configuration or if the configuration references an LDAP service the attacker has access to. The attacker can provide a TopicConnectionFactoryBindingName configuration causing JMSSink to perform JNDI requests that result in remote code execution in a similar fashion to CVE-2021-4104. Note this issue only affects Log4j 1.x when specifically configured to use JMSSink, which is not the default. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23302>CVE-2022-23302</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>8.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://reload4j.qos.ch/">https://reload4j.qos.ch/</a></p> <p>Release Date: 2022-01-18</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.1</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2021-4104</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> JMSAppender in Log4j 1.2 is vulnerable to deserialization of untrusted data when the attacker has write access to the Log4j configuration. The attacker can provide TopicBindingName and TopicConnectionFactoryBindingName configurations causing JMSAppender to perform JNDI requests that result in remote code execution in a similar fashion to CVE-2021-44228. Note this issue only affects Log4j 1.2 when specifically configured to use JMSAppender, which is not the default. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2021-12-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-4104>CVE-2021-4104</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2021-4104">https://nvd.nist.gov/vuln/detail/CVE-2021-4104</a></p> <p>Release Date: 2021-12-14</p> <p>Fix Resolution: uom-parent - 1.0.3-3.module,1.0.3-3.module;uom-se-javadoc - 1.0.4-3.module;parfait-examples - 0.5.4-4.module;log4j-manual - 1.2.17-16;si-units-javadoc - 0.6.5-2.module;unit-api - 1.0-5.module,1.0-5.module;unit-api-javadoc - 1.0-5.module;parfait - 0.5.4-4.module,0.5.4-4.module;log4j-javadoc - 1.2.17-16;uom-systems-javadoc - 0.7-1.module;uom-lib-javadoc - 1.0.1-6.module;uom-systems - 0.7-1.module,0.7-1.module;log4j - 1.2.17-16,1.2.17-16;uom-se - 1.0.4-3.module,1.0.4-3.module;uom-lib - 1.0.1-6.module,1.0.1-6.module;parfait-javadoc - 0.5.4-4.module;pcp-parfait-agent - 0.5.4-4.module;si-units - 0.6.5-2.module,0.6.5-2.module</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> CVE-2023-26464</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> ** UNSUPPORTED WHEN ASSIGNED ** When using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) hashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized. This issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x. NOTE: This vulnerability only affects products that are no longer supported by the maintainer. <p>Publish Date: 2023-03-10 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-26464>CVE-2023-26464</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-vp98-w2p3-mv35">https://github.com/advisories/GHSA-vp98-w2p3-mv35</a></p> <p>Release Date: 2023-03-10</p> <p>Fix Resolution: org.apache.logging.log4j:log4j-core:2.0</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> CVE-2020-9488</summary> ### Vulnerable Library - <b>log4j-1.2.13.jar</b></p> <p>Log4j</p> <p>Library home page: <a href="http://logging.apache.org/log4j/">http://logging.apache.org/log4j/</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /target/easybuggy-1-SNAPSHOT/WEB-INF/lib/log4j-1.2.13.jar,/home/wss-scanner/.m2/repository/log4j/log4j/1.2.13/log4j-1.2.13.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.13.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-democorp/easybuggy-lvp/commit/4afba820e35532010e5668591baf0bbbb1da4148">4afba820e35532010e5668591baf0bbbb1da4148</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> Improper validation of certificate with host mismatch in Apache Log4j SMTP appender. This could allow an SMTPS connection to be intercepted by a man-in-the-middle attack which could leak any log messages sent through that appender. Fixed in Apache Log4j 2.12.3 and 2.13.1 <p>Publish Date: 2020-04-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-9488>CVE-2020-9488</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>3.7</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://reload4j.qos.ch/">https://reload4j.qos.ch/</a></p> <p>Release Date: 2020-04-27</p> <p>Fix Resolution: ch.qos.reload4j:reload4j:1.2.18.3</p> </p> <p></p> <p>In order to enable automatic remediation, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p> </details> *** <p>In order to enable automatic remediation for this issue, please create <a target="_blank" href="https://docs.mend.io/bundle/integrations/page/mend_for_github_com.html#MendforGitHub.com-RemediateSettings(remediateSettings)">workflow rules</a></p>
non_main
jar vulnerabilities highest severity is vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar found in head commit a href vulnerabilities cve severity cvss dependency type fixed in version remediation available critical jar direct ch qos critical jar direct manual javadoc critical jar direct ch qos high jar direct ch qos high jar direct ch qos high jar direct uom parent module module uom se javadoc module parfait examples module manual si units javadoc module unit api module module unit api javadoc module parfait module module javadoc uom systems javadoc module uom lib javadoc module uom systems module module uom se module module uom lib module module parfait javadoc module pcp parfait agent module si units module module high jar direct org apache logging core low jar direct ch qos details cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details by design the jdbcappender in x accepts an sql statement as a configuration parameter where the values to be inserted are converters from patternlayout the message converter m is likely to always be included this allows attackers to manipulate the sql by entering crafted strings into input fields or headers of an application that are logged allowing unintended sql queries to be executed note this issue only affects x when specifically configured to use the jdbcappender which is not the default beginning in version the jdbcappender was re introduced with proper support for parameterized sql queries and further customization over the columns written to in logs apache reached end of life in august users should upgrade to as it addresses numerous other issues from the previous versions 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 ch qos in order to enable automatic remediation please create cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details included in is a socketserver class that is vulnerable to deserialization of untrusted data which can be exploited to remotely execute arbitrary code when combined with a deserialization gadget when listening to untrusted network traffic for log data this affects versions up to up to 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 manual javadoc in order to enable automatic remediation please create cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details a deserialization flaw was found in apache chainsaw versions prior to which could lead to malicious code execution 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 ch qos in order to enable automatic remediation please create cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details cve identified a deserialization issue that was present in apache chainsaw prior to chainsaw chainsaw was a component of apache x where the same issue exists publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low 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 release date fix resolution ch qos in order to enable automatic remediation please create cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details jmssink in all versions of x is vulnerable to deserialization of untrusted data when the attacker has write access to the configuration or if the configuration references an ldap service the attacker has access to the attacker can provide a topicconnectionfactorybindingname configuration causing jmssink to perform jndi requests that result in remote code execution in a similar fashion to cve note this issue only affects x when specifically configured to use jmssink which is not the default apache reached end of life in august users should upgrade to as it addresses numerous other issues from the previous versions publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low 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 ch qos in order to enable automatic remediation please create cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details jmsappender in is vulnerable to deserialization of untrusted data when the attacker has write access to the configuration the attacker can provide topicbindingname and topicconnectionfactorybindingname configurations causing jmsappender to perform jndi requests that result in remote code execution in a similar fashion to cve note this issue only affects when specifically configured to use jmsappender which is not the default apache reached end of life in august users should upgrade to as it addresses numerous other issues from the previous versions publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required low 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 uom parent module module uom se javadoc module parfait examples module manual si units javadoc module unit api module module unit api javadoc module parfait module module javadoc uom systems javadoc module uom lib javadoc module uom systems module module uom se module module uom lib module module parfait javadoc module pcp parfait agent module si units module module in order to enable automatic remediation please create cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details unsupported when assigned when using the chainsaw or socketappender components with x on jre less than an attacker that manages to cause a logging entry involving a specially crafted ie deeply nested hashmap or hashtable depending on which logging component is in use to be processed could exhaust the available memory in the virtual machine and achieve denial of service when the object is deserialized this issue affects apache before affected users are recommended to update to x note this vulnerability only affects products that are no longer supported by the maintainer publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org apache logging core in order to enable automatic remediation please create cve vulnerable library jar library home page a href path to dependency file pom xml path to vulnerable library target easybuggy snapshot web inf lib jar home wss scanner repository jar dependency hierarchy x jar vulnerable library found in head commit a href found in base branch master vulnerability details improper validation of certificate with host mismatch in apache smtp appender this could allow an smtps connection to be intercepted by a man in the middle attack which could leak any log messages sent through that appender fixed in apache and 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 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 ch qos in order to enable automatic remediation please create in order to enable automatic remediation for this issue please create
0
598
4,097,352,676
IssuesEvent
2016-06-03 01:01:34
Particular/ServiceControl
https://api.github.com/repos/Particular/ServiceControl
closed
SCMU Better layout for form error and warning messages
Tag: Installer Tag: Maintainer Prio Type: Feature
Better layout for form error and warning messages to create to better signify hiearchy (label > data > error/warning) and leave more room for messages: ![screenshot 2016-02-17 17 25 10](https://cloud.githubusercontent.com/assets/493451/13106678/2134feca-d59c-11e5-91a4-ec9f87a9a333.png)
True
SCMU Better layout for form error and warning messages - Better layout for form error and warning messages to create to better signify hiearchy (label > data > error/warning) and leave more room for messages: ![screenshot 2016-02-17 17 25 10](https://cloud.githubusercontent.com/assets/493451/13106678/2134feca-d59c-11e5-91a4-ec9f87a9a333.png)
main
scmu better layout for form error and warning messages better layout for form error and warning messages to create to better signify hiearchy label data error warning and leave more room for messages
1
3,983
18,357,488,648
IssuesEvent
2021-10-08 20:32:38
backdrop-ops/contrib
https://api.github.com/repos/backdrop-ops/contrib
closed
Application to join: joelsteidl (sendgrid_integration module)
Port in progress Maintainer application
## Please note these 3 requirements for new contrib projects: - [X] Include a README.md file containing license and maintainer information. You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/README.md - [X] Include a LICENSE.txt file. You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/LICENSE.txt. - [X] If porting a Drupal 7 project, Maintain the Git history from Drupal. ## Please provide the following information: Module: SendGrid Integration **(Optional) Post a link here to an issue in the drupal.org queue notifying the Drupal 7 maintainers that you are working on a Backdrop port of their project** https://www.drupal.org/project/sendgrid_integration/issues/3220145 **Post a link to your new Backdrop project under your own GitHub account (option #1)** https://github.com/joelsteidl/SendGrid-Integration **If you have chosen option #2 or #1 above, do you agree to the [Backdrop Contributed Project Agreement](https://github.com/backdrop-ops/contrib#backdrop-contributed-project-agreement)** YES Note, there is a submodule SendGrid Integration Reports that is part of the project and it probably needs additional work.
True
Application to join: joelsteidl (sendgrid_integration module) - ## Please note these 3 requirements for new contrib projects: - [X] Include a README.md file containing license and maintainer information. You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/README.md - [X] Include a LICENSE.txt file. You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/LICENSE.txt. - [X] If porting a Drupal 7 project, Maintain the Git history from Drupal. ## Please provide the following information: Module: SendGrid Integration **(Optional) Post a link here to an issue in the drupal.org queue notifying the Drupal 7 maintainers that you are working on a Backdrop port of their project** https://www.drupal.org/project/sendgrid_integration/issues/3220145 **Post a link to your new Backdrop project under your own GitHub account (option #1)** https://github.com/joelsteidl/SendGrid-Integration **If you have chosen option #2 or #1 above, do you agree to the [Backdrop Contributed Project Agreement](https://github.com/backdrop-ops/contrib#backdrop-contributed-project-agreement)** YES Note, there is a submodule SendGrid Integration Reports that is part of the project and it probably needs additional work.
main
application to join joelsteidl sendgrid integration module please note these requirements for new contrib projects include a readme md file containing license and maintainer information you can use this example include a license txt file you can use this example if porting a drupal project maintain the git history from drupal please provide the following information module sendgrid integration optional post a link here to an issue in the drupal org queue notifying the drupal maintainers that you are working on a backdrop port of their project post a link to your new backdrop project under your own github account option if you have chosen option or above do you agree to the yes note there is a submodule sendgrid integration reports that is part of the project and it probably needs additional work
1
62,523
14,656,527,905
IssuesEvent
2020-12-28 13:37:34
fu1771695yongxie/parcel
https://api.github.com/repos/fu1771695yongxie/parcel
opened
WS-2019-0209 (Medium) detected in marked-0.6.3.tgz
security vulnerability
## WS-2019-0209 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>marked-0.6.3.tgz</b></p></summary> <p>A markdown parser built for speed</p> <p>Library home page: <a href="https://registry.npmjs.org/marked/-/marked-0.6.3.tgz">https://registry.npmjs.org/marked/-/marked-0.6.3.tgz</a></p> <p>Path to dependency file: parcel/node_modules/marked/package.json</p> <p>Path to vulnerable library: parcel/node_modules/marked/package.json</p> <p> Dependency Hierarchy: - :x: **marked-0.6.3.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/fu1771695yongxie/parcel/commit/75a1fefa6dcb4af2ef76f89106353191fc0ed2c5">75a1fefa6dcb4af2ef76f89106353191fc0ed2c5</a></p> <p>Found in base branch: <b>v2</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> marked before 0.7.0 vulnerable to Redos attack by he _label subrule that may significantly degrade parsing performance of malformed input. <p>Publish Date: 2019-07-04 <p>URL: <a href=https://github.com/markedjs/marked/pull/1515>WS-2019-0209</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>5.0</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.npmjs.com/advisories/1076">https://www.npmjs.com/advisories/1076</a></p> <p>Release Date: 2019-09-05</p> <p>Fix Resolution: 0.7.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
WS-2019-0209 (Medium) detected in marked-0.6.3.tgz - ## WS-2019-0209 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>marked-0.6.3.tgz</b></p></summary> <p>A markdown parser built for speed</p> <p>Library home page: <a href="https://registry.npmjs.org/marked/-/marked-0.6.3.tgz">https://registry.npmjs.org/marked/-/marked-0.6.3.tgz</a></p> <p>Path to dependency file: parcel/node_modules/marked/package.json</p> <p>Path to vulnerable library: parcel/node_modules/marked/package.json</p> <p> Dependency Hierarchy: - :x: **marked-0.6.3.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/fu1771695yongxie/parcel/commit/75a1fefa6dcb4af2ef76f89106353191fc0ed2c5">75a1fefa6dcb4af2ef76f89106353191fc0ed2c5</a></p> <p>Found in base branch: <b>v2</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> marked before 0.7.0 vulnerable to Redos attack by he _label subrule that may significantly degrade parsing performance of malformed input. <p>Publish Date: 2019-07-04 <p>URL: <a href=https://github.com/markedjs/marked/pull/1515>WS-2019-0209</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>5.0</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.npmjs.com/advisories/1076">https://www.npmjs.com/advisories/1076</a></p> <p>Release Date: 2019-09-05</p> <p>Fix Resolution: 0.7.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_main
ws medium detected in marked tgz ws medium severity vulnerability vulnerable library marked tgz a markdown parser built for speed library home page a href path to dependency file parcel node modules marked package json path to vulnerable library parcel node modules marked package json dependency hierarchy x marked tgz vulnerable library found in head commit a href found in base branch vulnerability details marked before vulnerable to redos attack by he label subrule that may significantly degrade parsing performance of malformed input 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 step up your open source security game with whitesource
0
3,802
16,455,991,856
IssuesEvent
2021-05-21 12:39:18
cloverhearts/quilljs-markdown
https://api.github.com/repos/cloverhearts/quilljs-markdown
closed
Breaks History and Blockquotes
READY FOR MERGE Saw with Maintainer
This is overall really solid however, there is two issues that would make me shy away from it in a production environment: 1. when you create "- + space" it creates a list, but if you want to undo it, you're stuck in an infinite undo / redo of your plugin and quilll native behavior 2. when you create "> + space" on an empty line it works as expected. On a line that already has content on the other hand, putting the cursor at the beginning and writing "> + space" will result in an immediate undo operation and the blockquote disappears. Any chances for a fix there?
True
Breaks History and Blockquotes - This is overall really solid however, there is two issues that would make me shy away from it in a production environment: 1. when you create "- + space" it creates a list, but if you want to undo it, you're stuck in an infinite undo / redo of your plugin and quilll native behavior 2. when you create "> + space" on an empty line it works as expected. On a line that already has content on the other hand, putting the cursor at the beginning and writing "> + space" will result in an immediate undo operation and the blockquote disappears. Any chances for a fix there?
main
breaks history and blockquotes this is overall really solid however there is two issues that would make me shy away from it in a production environment when you create space it creates a list but if you want to undo it you re stuck in an infinite undo redo of your plugin and quilll native behavior when you create space on an empty line it works as expected on a line that already has content on the other hand putting the cursor at the beginning and writing space will result in an immediate undo operation and the blockquote disappears any chances for a fix there
1
4,548
23,700,653,334
IssuesEvent
2022-08-29 18:38:58
aws/aws-sam-cli
https://api.github.com/repos/aws/aws-sam-cli
closed
invalid bind mount spec : invalid mode: ro,delegated
blocked/more-info-needed blocked/close-if-inactive maintainer/need-followup
Description: Encountering the below error when trying to invoke lambda locally using - sam local invoke docker.errors.APIError: 500 Server Error: Internal Server Error ("invalid bind mount spec "/c/Users/habsa9/vs-code-workspace/annuity-electronic-inbound/lambda:/var/task:ro,delegated": invalid mode: ro,delegated") ### Steps to reproduce: Create a lambda fucntion template using - sam init - create a lambda folder - write your lambda handler inside lambda folder - create the template.yml file accordingly - Run sam local invoke command and you will find below error docker.errors.APIError: 500 Server Error: Internal Server Error ("invalid bind mount spec "/c/Users/habsa9/vs-code-workspace/annuity-electronic-inbound/lambda:/var/task:ro,delegated": invalid mode: ro,delegated") ### Observed result: docker.errors.APIError: 500 Server Error: Internal Server Error ("invalid bind mount spec "/c/Users/habsa9/vs-code-workspace/annuity-electronic-inbound/lambda:/var/task:ro,delegated": invalid mode: ro,delegated") ### Expected result: events should be triggered at lambda_handler function ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: Windows 2. `sam --version`: SAM CLI, version 1.53.0 3. AWS region: N Virginia `Add --debug flag to command you are running`
True
invalid bind mount spec : invalid mode: ro,delegated - Description: Encountering the below error when trying to invoke lambda locally using - sam local invoke docker.errors.APIError: 500 Server Error: Internal Server Error ("invalid bind mount spec "/c/Users/habsa9/vs-code-workspace/annuity-electronic-inbound/lambda:/var/task:ro,delegated": invalid mode: ro,delegated") ### Steps to reproduce: Create a lambda fucntion template using - sam init - create a lambda folder - write your lambda handler inside lambda folder - create the template.yml file accordingly - Run sam local invoke command and you will find below error docker.errors.APIError: 500 Server Error: Internal Server Error ("invalid bind mount spec "/c/Users/habsa9/vs-code-workspace/annuity-electronic-inbound/lambda:/var/task:ro,delegated": invalid mode: ro,delegated") ### Observed result: docker.errors.APIError: 500 Server Error: Internal Server Error ("invalid bind mount spec "/c/Users/habsa9/vs-code-workspace/annuity-electronic-inbound/lambda:/var/task:ro,delegated": invalid mode: ro,delegated") ### Expected result: events should be triggered at lambda_handler function ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: Windows 2. `sam --version`: SAM CLI, version 1.53.0 3. AWS region: N Virginia `Add --debug flag to command you are running`
main
invalid bind mount spec invalid mode ro delegated description encountering the below error when trying to invoke lambda locally using sam local invoke docker errors apierror server error internal server error invalid bind mount spec c users vs code workspace annuity electronic inbound lambda var task ro delegated invalid mode ro delegated steps to reproduce create a lambda fucntion template using sam init create a lambda folder write your lambda handler inside lambda folder create the template yml file accordingly run sam local invoke command and you will find below error docker errors apierror server error internal server error invalid bind mount spec c users vs code workspace annuity electronic inbound lambda var task ro delegated invalid mode ro delegated observed result docker errors apierror server error internal server error invalid bind mount spec c users vs code workspace annuity electronic inbound lambda var task ro delegated invalid mode ro delegated expected result events should be triggered at lambda handler function additional environment details ex windows mac amazon linux etc os windows sam version sam cli version aws region n virginia add debug flag to command you are running
1
4,769
24,556,508,090
IssuesEvent
2022-10-12 16:17:24
dotnet/interactive
https://api.github.com/repos/dotnet/interactive
opened
remove `FrontendEnvironment` concept
maintainability
This has been mostly replaced by having kernels (e.g. browser-based JavaScript and HTML kernels) that run in the frontend.
True
remove `FrontendEnvironment` concept - This has been mostly replaced by having kernels (e.g. browser-based JavaScript and HTML kernels) that run in the frontend.
main
remove frontendenvironment concept this has been mostly replaced by having kernels e g browser based javascript and html kernels that run in the frontend
1
81,084
30,703,447,125
IssuesEvent
2023-07-27 02:53:02
vector-im/element-desktop
https://api.github.com/repos/vector-im/element-desktop
opened
Notifications are not shown in desktop notification list despite popping up as a desktop notification
T-Defect
### Steps to reproduce 1. Receive a notification 2. observe that notification is shown 3. observe that notification is not put into desktop notification list/history ### Outcome #### What did you expect? I expect notifications to be put into notification history. Discord does the same, for example. #### What happened instead? The notifications are shown, but they are not put into the history. This may be a bug specific to KDE, I am not sure. ### Operating system Arch Linux, Kernel v6.4.6-arch-1, KDE Plasma v5.27.6 ### Application version Element v1.11.36, Olm v3.2.14 ### How did you install the app? Arch Linux Repos ### Homeserver matrix.org ### Will you send logs? No
1.0
Notifications are not shown in desktop notification list despite popping up as a desktop notification - ### Steps to reproduce 1. Receive a notification 2. observe that notification is shown 3. observe that notification is not put into desktop notification list/history ### Outcome #### What did you expect? I expect notifications to be put into notification history. Discord does the same, for example. #### What happened instead? The notifications are shown, but they are not put into the history. This may be a bug specific to KDE, I am not sure. ### Operating system Arch Linux, Kernel v6.4.6-arch-1, KDE Plasma v5.27.6 ### Application version Element v1.11.36, Olm v3.2.14 ### How did you install the app? Arch Linux Repos ### Homeserver matrix.org ### Will you send logs? No
non_main
notifications are not shown in desktop notification list despite popping up as a desktop notification steps to reproduce receive a notification observe that notification is shown observe that notification is not put into desktop notification list history outcome what did you expect i expect notifications to be put into notification history discord does the same for example what happened instead the notifications are shown but they are not put into the history this may be a bug specific to kde i am not sure operating system arch linux kernel arch kde plasma application version element olm how did you install the app arch linux repos homeserver matrix org will you send logs no
0
48,786
10,278,924,960
IssuesEvent
2019-08-25 18:26:21
Serrin/Celestra
https://api.github.com/repos/Serrin/Celestra
closed
Changes in v3.0.1
CUT closed - done or fixed code documentation type - bug type - enhancement
1. Documentation and pdf fixes. 2. Add a new AJAX function (`ajax();`) which can replace the existing funtions. 3. Deprecate the old AJAX functions, except the shorthands. 4. Replace a the old AJAX shorthands functions with new functions which use the the `ajax();` 5. Deprecate these functions: `isArray(<value>);`, `isInteger(<value>);` 6. Replace these functions with new versions: `arrayUnion();`, `arrayIntersection();`, `arrayDifference();`, `arraySymmetricDifference();`, `setUnion();`, `setIntersection();`, `setDifference();`, `setSymmetricDifference();`, `isSuperset();`, `min();`, `minIndex();`, `max();`, `maxIndex();`, `arrayRange();`, `unzip();`, `reverseOf();`, `sortOf();`, `domSiblings();`, `getDoNotTrack();`, `isPrimitive();`, `isArraylike();` 7. Remove the undocumented function `__toArray__();`
1.0
Changes in v3.0.1 - 1. Documentation and pdf fixes. 2. Add a new AJAX function (`ajax();`) which can replace the existing funtions. 3. Deprecate the old AJAX functions, except the shorthands. 4. Replace a the old AJAX shorthands functions with new functions which use the the `ajax();` 5. Deprecate these functions: `isArray(<value>);`, `isInteger(<value>);` 6. Replace these functions with new versions: `arrayUnion();`, `arrayIntersection();`, `arrayDifference();`, `arraySymmetricDifference();`, `setUnion();`, `setIntersection();`, `setDifference();`, `setSymmetricDifference();`, `isSuperset();`, `min();`, `minIndex();`, `max();`, `maxIndex();`, `arrayRange();`, `unzip();`, `reverseOf();`, `sortOf();`, `domSiblings();`, `getDoNotTrack();`, `isPrimitive();`, `isArraylike();` 7. Remove the undocumented function `__toArray__();`
non_main
changes in documentation and pdf fixes add a new ajax function ajax which can replace the existing funtions deprecate the old ajax functions except the shorthands replace a the old ajax shorthands functions with new functions which use the the ajax deprecate these functions isarray isinteger replace these functions with new versions arrayunion arrayintersection arraydifference arraysymmetricdifference setunion setintersection setdifference setsymmetricdifference issuperset min minindex max maxindex arrayrange unzip reverseof sortof domsiblings getdonottrack isprimitive isarraylike remove the undocumented function toarray
0
94,619
19,567,204,948
IssuesEvent
2022-01-04 03:22:02
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
jit/intrinsics/createspan_il/createspan_il.sh
area-CodeGen-coreclr in pr
<!-- runfo report start --> Runfo Tracking Issue: [jit/intrinsics/createspan_il/createspan_il.sh](https://runfo.azurewebsites.net/tracking/issue/233) |Build|Definition|Kind|Run Name|Console|Core Dump|Test Results|Run Client| |---|---|---|---|---|---|---|---| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-fac97a2c53174de7be/JIT.2/1/console.f53a3dc6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D8gTpDKgk5mEe2iBAW78joAuBOqfSIcpG9H%25252FZE1HUFzA%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-fac97a2c53174de7be/JIT.2/1/core.94832?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D8gTpDKgk5mEe2iBAW78joAuBOqfSIcpG9H%25252FZE1HUFzA%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-fac97a2c53174de7be/JIT.2/31be953d-84b1-467b-bd56-b5f2b9ed7c87.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D8gTpDKgk5mEe2iBAW78joAuBOqfSIcpG9H%25252FZE1HUFzA%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c1a0c9a7cc8a4a46a8/JIT.2/1/console.b90a23c6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUPz2%25252BFDsKEj4VquU4N67Uo%25252B%25252BJ5CNmb3SfalMvbs4mKI%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c1a0c9a7cc8a4a46a8/JIT.2/1/core.80328?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUPz2%25252BFDsKEj4VquU4N67Uo%25252B%25252BJ5CNmb3SfalMvbs4mKI%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c1a0c9a7cc8a4a46a8/JIT.2/ea0124ed-31c9-4c35-b1f0-72b44887b716.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUPz2%25252BFDsKEj4VquU4N67Uo%25252B%25252BJ5CNmb3SfalMvbs4mKI%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74ac58f1d8e94aa2a2/JIT.2/1/console.9e1517e7.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DHVoqsB%25252BNJ8MNKDtN5gdWm2MikpMHt4rEKHLfpEdoHRE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74ac58f1d8e94aa2a2/JIT.2/1/core.65074?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DHVoqsB%25252BNJ8MNKDtN5gdWm2MikpMHt4rEKHLfpEdoHRE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74ac58f1d8e94aa2a2/JIT.2/31fcd7a2-bb6f-46f5-8c8e-516b906f459f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DHVoqsB%25252BNJ8MNKDtN5gdWm2MikpMHt4rEKHLfpEdoHRE%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5559aaa4fd5345fa9f/JIT.2/1/console.2cd4c91a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A48Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAK3P5PKn03cOIfivPxsbKftZIQxwMgc80djsEI6%25252B%25252BWg%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5559aaa4fd5345fa9f/JIT.2/1/core.1001.1300?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A48Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAK3P5PKn03cOIfivPxsbKftZIQxwMgc80djsEI6%25252B%25252BWg%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5559aaa4fd5345fa9f/JIT.2/6b8509e3-7e08-4784-ba2e-fde1ec55efa2.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A48Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAK3P5PKn03cOIfivPxsbKftZIQxwMgc80djsEI6%25252B%25252BWg%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-73bd76d9a15a407698/JIT.2/1/console.d5fd2bb9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoI7fh%25252BUFYaCDiFgfwcDffu3obSOaWqO4157MREjDJqg%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-73bd76d9a15a407698/JIT.2/1/core.1001.1231?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoI7fh%25252BUFYaCDiFgfwcDffu3obSOaWqO4157MREjDJqg%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-73bd76d9a15a407698/JIT.2/66d6bf93-5f3d-4741-a671-95055c609fbb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoI7fh%25252BUFYaCDiFgfwcDffu3obSOaWqO4157MREjDJqg%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-86961a59289d44b3a0/JIT.2/1/console.c0a41fe8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAN1Pw%25252BRThiGEvz0nIZdD2%25252F%25252FdVQnTVm%25252BeQEhupzBxpRU%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-86961a59289d44b3a0/JIT.2/1/coredump.1231.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAN1Pw%25252BRThiGEvz0nIZdD2%25252F%25252FdVQnTVm%25252BeQEhupzBxpRU%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-86961a59289d44b3a0/JIT.2/b4813620-f23b-470a-9b8f-c45a7d7ec588.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAN1Pw%25252BRThiGEvz0nIZdD2%25252F%25252FdVQnTVm%25252BeQEhupzBxpRU%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9a2c423472344eaeb8/JIT.2/1/console.adacdb7a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLL1ZbVxVbRinGk5S78DZbA%25252BWwVYIH0wxVbQTO%25252BsLjC0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9a2c423472344eaeb8/JIT.2/1/core.1001.1423?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLL1ZbVxVbRinGk5S78DZbA%25252BWwVYIH0wxVbQTO%25252BsLjC0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9a2c423472344eaeb8/JIT.2/a56fe835-87e5-45cc-a2ba-fb4c6c139318.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLL1ZbVxVbRinGk5S78DZbA%25252BWwVYIH0wxVbQTO%25252BsLjC0%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6e28ee98efa340f098/JIT.2/1/console.e2e8e49f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOJCquw978eUJmDlGO2NUk8%25252BmhpiDPeEOBKiM3jbTfOc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6e28ee98efa340f098/JIT.2/1/core.1000.18726?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOJCquw978eUJmDlGO2NUk8%25252BmhpiDPeEOBKiM3jbTfOc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6e28ee98efa340f098/JIT.2/41185a31-7b9e-4a92-ae11-2b6992abc88d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOJCquw978eUJmDlGO2NUk8%25252BmhpiDPeEOBKiM3jbTfOc%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c0e2bad364e4e5580/JIT.2/1/console.a5fa7bc5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DL1KSr3BD0H8Wc5z1Bmt0kU5KoD%25252B9suxQZjT0B1P4j2g%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c0e2bad364e4e5580/JIT.2/1/core.1000.16636?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DL1KSr3BD0H8Wc5z1Bmt0kU5KoD%25252B9suxQZjT0B1P4j2g%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c0e2bad364e4e5580/JIT.2/1048a51f-d4e1-4f34-b66e-4c4ccf63f44a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DL1KSr3BD0H8Wc5z1Bmt0kU5KoD%25252B9suxQZjT0B1P4j2g%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-faaf5e19c24a42a4a9/JIT.2/1/console.14054646.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsImo5uO4a6OX6IWwAqxaEsPKnlxfZmNR7FWWzR8rc%25252F8%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-faaf5e19c24a42a4a9/JIT.2/1/core.1000.18164?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsImo5uO4a6OX6IWwAqxaEsPKnlxfZmNR7FWWzR8rc%25252F8%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-faaf5e19c24a42a4a9/JIT.2/52e16c3d-cada-4be1-8664-af908028771c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsImo5uO4a6OX6IWwAqxaEsPKnlxfZmNR7FWWzR8rc%25252F8%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2a6b27d8d0134b6888/JIT.2/1/console.c572a254.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUdmVBxv694NcUM8TvdTo09fl8KM9csPVE7LbiMYD7ME%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2a6b27d8d0134b6888/JIT.2/1/coredump.17471.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUdmVBxv694NcUM8TvdTo09fl8KM9csPVE7LbiMYD7ME%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2a6b27d8d0134b6888/JIT.2/a9b26a56-8b76-47c4-9010-ab1cef0a7478.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUdmVBxv694NcUM8TvdTo09fl8KM9csPVE7LbiMYD7ME%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9b11eb3b5706487cac/JIT.2/1/console.139fb638.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A24%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dzu3RPB69PowtFZ8EhiiN4Br8naVUIZuuR88hajgIw8E%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9b11eb3b5706487cac/JIT.2/1/core.1000.4545?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A24%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dzu3RPB69PowtFZ8EhiiN4Br8naVUIZuuR88hajgIw8E%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9b11eb3b5706487cac/JIT.2/42b25b4d-3f42-459b-9759-17ba77a97e8f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A24%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dzu3RPB69PowtFZ8EhiiN4Br8naVUIZuuR88hajgIw8E%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a740d32955f04b7994/JIT.2/1/console.ae5ebff5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A25%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAJsL%25252B3I7HWsqYNBpyQxmgAqgCKTbZSPjoNpiVRSJXE8%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a740d32955f04b7994/JIT.2/1/coredump.1502.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A25%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAJsL%25252B3I7HWsqYNBpyQxmgAqgCKTbZSPjoNpiVRSJXE8%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a740d32955f04b7994/JIT.2/7bbe204a-4acb-49f2-a0ba-63e0a153aaa9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A25%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAJsL%25252B3I7HWsqYNBpyQxmgAqgCKTbZSPjoNpiVRSJXE8%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e7dfb2206c554e26bb/JIT.2/1/console.602e2d58.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A28%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsF%25252F3v61Ylzf18sNs4K8sLoqgyx4S2lwQZvdCV2XPr7M%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e7dfb2206c554e26bb/JIT.2/1/core.7934?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A28%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsF%25252F3v61Ylzf18sNs4K8sLoqgyx4S2lwQZvdCV2XPr7M%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e7dfb2206c554e26bb/JIT.2/60cfeffd-747d-416b-a121-9d7f3f4fe6b7.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A28%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsF%25252F3v61Ylzf18sNs4K8sLoqgyx4S2lwQZvdCV2XPr7M%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a623e2c1e27a42a49a/JIT.2/1/console.dca908cb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A30%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DD8aGm%25252BGEr97mcoLVpmNcXn3CZcPaj69a0K0JHZwF4vQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a623e2c1e27a42a49a/JIT.2/1/core.90393?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A30%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DD8aGm%25252BGEr97mcoLVpmNcXn3CZcPaj69a0K0JHZwF4vQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a623e2c1e27a42a49a/JIT.2/17789312-f601-4341-9455-cc093ffc9a49.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A30%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DD8aGm%25252BGEr97mcoLVpmNcXn3CZcPaj69a0K0JHZwF4vQ%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-e3b9ad259c444c2dbc/JIT.2/1/console.fc08abeb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DVF40JMvVXpdcrLzNbz%25252FuC%25252BLERsJ1FK5XOeNdDHvOQuY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-e3b9ad259c444c2dbc/JIT.2/1/coredump.1405.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DVF40JMvVXpdcrLzNbz%25252FuC%25252BLERsJ1FK5XOeNdDHvOQuY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-e3b9ad259c444c2dbc/JIT.2/2edca62d-19e9-47d2-a73d-bb01e9738bf1.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DVF40JMvVXpdcrLzNbz%25252FuC%25252BLERsJ1FK5XOeNdDHvOQuY%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b053c2e7af13443abc/JIT.2/1/console.fad9ba3f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd0MmNeORxorU%25252FaEOsXXqWo8wY2llWTtwdG8JrCZfSmw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b053c2e7af13443abc/JIT.2/1/core.1001.1202?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd0MmNeORxorU%25252FaEOsXXqWo8wY2llWTtwdG8JrCZfSmw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b053c2e7af13443abc/JIT.2/2091acf6-0f3d-4c47-8fc8-1f9395390010.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd0MmNeORxorU%25252FaEOsXXqWo8wY2llWTtwdG8JrCZfSmw%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5fd000269e24e71bf/JIT.2/1/console.2fca0425.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dw1FQ%25252Br5S9xYfMwhHVRwxzqrsOolo70KP1O79aoNBqqs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5fd000269e24e71bf/JIT.2/1/core.1001.1370?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dw1FQ%25252Br5S9xYfMwhHVRwxzqrsOolo70KP1O79aoNBqqs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5fd000269e24e71bf/JIT.2/b7ec4949-4175-42ea-980a-8eece616b9c9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dw1FQ%25252Br5S9xYfMwhHVRwxzqrsOolo70KP1O79aoNBqqs%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b9ed0eb368f94cfca4/JIT.2/1/console.8a0c8fdf.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJMOaaFJ%25252FFkKGB8RHm%25252F%25252BF4ytJwjHsrEJLHy9zxu5e2bo%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b9ed0eb368f94cfca4/JIT.2/1/coredump.1539.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJMOaaFJ%25252FFkKGB8RHm%25252F%25252BF4ytJwjHsrEJLHy9zxu5e2bo%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b9ed0eb368f94cfca4/JIT.2/0d6546aa-3580-443b-9d4e-b850f39f423d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJMOaaFJ%25252FFkKGB8RHm%25252F%25252BF4ytJwjHsrEJLHy9zxu5e2bo%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a9f0e2d27e1a42d69e/JIT.2/1/console.ae8536e4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Da%25252BoWws2UyPJbBWgndsdWQTFh7Ch2fRVaonOw%25252BsLU%25252FaE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a9f0e2d27e1a42d69e/JIT.2/1/coredump.19734.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Da%25252BoWws2UyPJbBWgndsdWQTFh7Ch2fRVaonOw%25252BsLU%25252FaE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a9f0e2d27e1a42d69e/JIT.2/5b01e000-ea74-403e-b374-e8e005b3465b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Da%25252BoWws2UyPJbBWgndsdWQTFh7Ch2fRVaonOw%25252BsLU%25252FaE%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-08d7ddf0f4474098bf/JIT.2/1/console.7801f9a8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DuquccmHSJ3nwyyAzCIkD0wX%25252F4s6lTEyC0ZGWS5TVTQo%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-08d7ddf0f4474098bf/JIT.2/1/coredump.6577.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DuquccmHSJ3nwyyAzCIkD0wX%25252F4s6lTEyC0ZGWS5TVTQo%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-08d7ddf0f4474098bf/JIT.2/49932d36-b475-49b2-864c-fb4685ee1301.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DuquccmHSJ3nwyyAzCIkD0wX%25252F4s6lTEyC0ZGWS5TVTQo%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-3afcb79ff7b7470ab1/JIT.2/1/console.22b6a973.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DyDOP2nl2kIFvzgzxhZZv8X7Q%25252B5zlWYOZSVqmzceZ23Q%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-3afcb79ff7b7470ab1/JIT.2/1/core.1000.7979?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DyDOP2nl2kIFvzgzxhZZv8X7Q%25252B5zlWYOZSVqmzceZ23Q%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-3afcb79ff7b7470ab1/JIT.2/ed053c43-f0b3-4b16-87f2-6e05bd688586.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DyDOP2nl2kIFvzgzxhZZv8X7Q%25252B5zlWYOZSVqmzceZ23Q%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5f289cd92704a59bc/JIT.2/1/console.f8b23771.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoEsKLOly%25252B96ttQ3biBKE8tloEY40vRG6NHaRdqEphko%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5f289cd92704a59bc/JIT.2/1/core.1000.8370?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoEsKLOly%25252B96ttQ3biBKE8tloEY40vRG6NHaRdqEphko%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5f289cd92704a59bc/JIT.2/46e19f40-ed67-40ad-be23-780264a772af.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoEsKLOly%25252B96ttQ3biBKE8tloEY40vRG6NHaRdqEphko%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7c6a3f2a524947a88a/JIT.2/1/console.f7b651d3.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFXdvLsFyAYn1mic49ciqq8GtdTkhjrKB42h5zD4r%25252F9Q%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7c6a3f2a524947a88a/JIT.2/1/core.75481?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFXdvLsFyAYn1mic49ciqq8GtdTkhjrKB42h5zD4r%25252F9Q%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7c6a3f2a524947a88a/JIT.2/c79c5cde-ad83-4a4f-a0ea-04c1a954c531.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFXdvLsFyAYn1mic49ciqq8GtdTkhjrKB42h5zD4r%25252F9Q%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-637a016bf9be42e6b2/JIT.2/1/console.ac51bf5e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D0cg4oPGeq8d8Tj%25252BopvZxW%25252BIu3s1vEVV5vLbINO3DSb8%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-637a016bf9be42e6b2/JIT.2/1/core.87135?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D0cg4oPGeq8d8Tj%25252BopvZxW%25252BIu3s1vEVV5vLbINO3DSb8%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-637a016bf9be42e6b2/JIT.2/243161f5-40df-4d22-842a-61c77dca633a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D0cg4oPGeq8d8Tj%25252BopvZxW%25252BIu3s1vEVV5vLbINO3DSb8%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-354b3f381e3c4021a6/JIT.2/1/console.315aa2a5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEag%25252B8lSnewZ9emmtDue32XCh%25252FDNn9M4X%25252B05uBqoMzPQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-354b3f381e3c4021a6/JIT.2/1/core.86688?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEag%25252B8lSnewZ9emmtDue32XCh%25252FDNn9M4X%25252B05uBqoMzPQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-354b3f381e3c4021a6/JIT.2/a2634b1e-cfa6-4416-9d77-c82ef1961f9a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEag%25252B8lSnewZ9emmtDue32XCh%25252FDNn9M4X%25252B05uBqoMzPQ%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-6d5bc45ec1dd445fab/JIT.2/1/console.d518774f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A44%25253A44Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYqqyun7N84C7avJVDQVasmgxYpZ6iWUHpYN1z1jbb%25252Fw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-6d5bc45ec1dd445fab/JIT.2/1/core.1001.1366?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A44%25253A44Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYqqyun7N84C7avJVDQVasmgxYpZ6iWUHpYN1z1jbb%25252Fw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-6d5bc45ec1dd445fab/JIT.2/9c1c8284-7831-46cd-af45-ea5f6bb8b156.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A44%25253A44Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYqqyun7N84C7avJVDQVasmgxYpZ6iWUHpYN1z1jbb%25252Fw%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-f44227e2523446ce8c/JIT.2/1/console.b555c157.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A48%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEqoSb4uvrhd4kidjQpAJSgbbWan5EVuxgM1DDeVwWD4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-f44227e2523446ce8c/JIT.2/1/core.25646?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A48%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEqoSb4uvrhd4kidjQpAJSgbbWan5EVuxgM1DDeVwWD4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-f44227e2523446ce8c/JIT.2/5b62e8bc-4a12-4478-bf0a-06a06404c74b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A48%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEqoSb4uvrhd4kidjQpAJSgbbWan5EVuxgM1DDeVwWD4%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7f9abf20ad0c4f7783/JIT.2/1/console.4325d676.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFM%25252FGHUXUwg1S5zYnOMLZj3OTIY%25252FN9VZHoTJrvh4PTxs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7f9abf20ad0c4f7783/JIT.2/1/core.1000.905?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFM%25252FGHUXUwg1S5zYnOMLZj3OTIY%25252FN9VZHoTJrvh4PTxs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7f9abf20ad0c4f7783/JIT.2/c90fea9c-aad8-4a78-b07b-e64df8ad9af6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFM%25252FGHUXUwg1S5zYnOMLZj3OTIY%25252FN9VZHoTJrvh4PTxs%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-82ee7ee8a57d405183/JIT.2/1/console.13de6cda.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dm8ZvFa%25252BTktWl1FOoed95DtmmPd6irraq1DKOGdeYjK4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-82ee7ee8a57d405183/JIT.2/1/core.79258?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dm8ZvFa%25252BTktWl1FOoed95DtmmPd6irraq1DKOGdeYjK4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-82ee7ee8a57d405183/JIT.2/4c9be100-3ae5-4746-9f7e-6d56681a7dea.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dm8ZvFa%25252BTktWl1FOoed95DtmmPd6irraq1DKOGdeYjK4%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-037fa15048b94754a9/JIT.2/1/console.5a18c98a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252Bp4l2itoW2jZuxL0Smrkf%25252BxxVULyv1guB3kfBe%25252BaFRE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-037fa15048b94754a9/JIT.2/1/core.86768?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252Bp4l2itoW2jZuxL0Smrkf%25252BxxVULyv1guB3kfBe%25252BaFRE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-037fa15048b94754a9/JIT.2/15caae02-6144-4f7b-9144-987ccc9166e8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252Bp4l2itoW2jZuxL0Smrkf%25252BxxVULyv1guB3kfBe%25252BaFRE%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ae051df2c2104fe7b5/JIT.2/1/console.e0eebc50.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A13Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DNXRbpOFwXJoANiMTvU%25252FoGVtER0ixs7eL0B7NeiXv%25252B2g%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ae051df2c2104fe7b5/JIT.2/1/core.3567?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A13Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DNXRbpOFwXJoANiMTvU%25252FoGVtER0ixs7eL0B7NeiXv%25252B2g%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ae051df2c2104fe7b5/JIT.2/69533be9-8939-422c-b6c3-5e910388445a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A13Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DNXRbpOFwXJoANiMTvU%25252FoGVtER0ixs7eL0B7NeiXv%25252B2g%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-335681b8703742d9a2/JIT.2/1/console.4f6cb036.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D7O%25252FctyuWspOQ3q%25252BsAnw3RACnAnygDJ91FbGc8Hel3AE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-335681b8703742d9a2/JIT.2/1/core.68981?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D7O%25252FctyuWspOQ3q%25252BsAnw3RACnAnygDJ91FbGc8Hel3AE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-335681b8703742d9a2/JIT.2/759cf395-3d13-473e-93ec-357ad3d1bf2c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D7O%25252FctyuWspOQ3q%25252BsAnw3RACnAnygDJ91FbGc8Hel3AE%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7d1f25ce02744ac2bf/JIT.2/1/console.8c94f940.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW%25252BgXHegMAp0v5plU8%25252Bhp3TM4ugnL2qfnoEGr0flhfCM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7d1f25ce02744ac2bf/JIT.2/1/coredump.217.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW%25252BgXHegMAp0v5plU8%25252Bhp3TM4ugnL2qfnoEGr0flhfCM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7d1f25ce02744ac2bf/JIT.2/a2fbbc59-03f7-499b-baf5-347cdbac87ca.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW%25252BgXHegMAp0v5plU8%25252Bhp3TM4ugnL2qfnoEGr0flhfCM%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66c47c7ad788400daf/JIT.2/1/console.14eced63.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxlpU%25252Bekcef3pu0g4fpR6tpUMZkvIpFzh8iG66uj3gbI%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66c47c7ad788400daf/JIT.2/1/core.1001.168?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxlpU%25252Bekcef3pu0g4fpR6tpUMZkvIpFzh8iG66uj3gbI%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66c47c7ad788400daf/JIT.2/d4127644-cf20-4071-beaf-727fc46b4d44.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxlpU%25252Bekcef3pu0g4fpR6tpUMZkvIpFzh8iG66uj3gbI%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cb2003c37e944a15aa/JIT.2/1/console.28398660.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D9neah72S2j2iCAABWLBD3OKnlnbVtqvCTg7dnYSWvkE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cb2003c37e944a15aa/JIT.2/1/core.1001.219?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D9neah72S2j2iCAABWLBD3OKnlnbVtqvCTg7dnYSWvkE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cb2003c37e944a15aa/JIT.2/8c66aa16-904e-41a1-bb7e-ca0c0e957956.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D9neah72S2j2iCAABWLBD3OKnlnbVtqvCTg7dnYSWvkE%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22fc3d45ee244e239d/JIT.2/1/console.c677371e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW865iNAjXEkQnl5LeOCWXlRx13dp0KYpWPGqM9NQM%25252Bc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22fc3d45ee244e239d/JIT.2/1/core.1001.124?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW865iNAjXEkQnl5LeOCWXlRx13dp0KYpWPGqM9NQM%25252Bc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22fc3d45ee244e239d/JIT.2/a8ab1637-2b5f-43ff-b404-8c5c3841da2e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW865iNAjXEkQnl5LeOCWXlRx13dp0KYpWPGqM9NQM%25252Bc%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3f225b9089ef407ab1/JIT.2/1/console.6d864390.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxowUA%25252Fdc6xE%25252BzyGQhOJsARHTTj8gT2Db6FMdSV9gx9A%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3f225b9089ef407ab1/JIT.2/1/coredump.15139.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxowUA%25252Fdc6xE%25252BzyGQhOJsARHTTj8gT2Db6FMdSV9gx9A%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3f225b9089ef407ab1/JIT.2/02790980-ca24-4d5e-a303-b77005f1fa00.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxowUA%25252Fdc6xE%25252BzyGQhOJsARHTTj8gT2Db6FMdSV9gx9A%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-744a6d1dbc6c4407b7/JIT.2/1/console.5dc69c00.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DA1IQxP4ADrmElVgDaUYHh8PDPtLw912Os5OJOxq5hQ0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-744a6d1dbc6c4407b7/JIT.2/1/coredump.22008.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DA1IQxP4ADrmElVgDaUYHh8PDPtLw912Os5OJOxq5hQ0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-744a6d1dbc6c4407b7/JIT.2/220efb0e-00ac-46cb-9ab2-5d403566c161.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DA1IQxP4ADrmElVgDaUYHh8PDPtLw912Os5OJOxq5hQ0%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-70d135695be94dad8d/JIT.2/1/console.f38cdf6d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2Tyu7F53u9p2ddVYf3m5%25252FFiU4QgcDfmj4nLHHD%25252FVbOY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-70d135695be94dad8d/JIT.2/1/coredump.24750.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2Tyu7F53u9p2ddVYf3m5%25252FFiU4QgcDfmj4nLHHD%25252FVbOY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-70d135695be94dad8d/JIT.2/56316259-fd28-470d-bdd2-31c8596e4716.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2Tyu7F53u9p2ddVYf3m5%25252FFiU4QgcDfmj4nLHHD%25252FVbOY%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8f91d72cd924e82b4/JIT.2/1/console.b6da1cda.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DGmqFD06aXI%25252FkYVyygd53CFGPpTr8KCcDhV4uIuhGLsY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8f91d72cd924e82b4/JIT.2/1/coredump.15104.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DGmqFD06aXI%25252FkYVyygd53CFGPpTr8KCcDhV4uIuhGLsY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8f91d72cd924e82b4/JIT.2/6f7a4abc-e429-40d6-9c31-5644525ce37a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DGmqFD06aXI%25252FkYVyygd53CFGPpTr8KCcDhV4uIuhGLsY%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-95b20042674445ef8d/JIT.2/1/console.4000c72f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A05%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D5ZjUMIERXuQb2VPBYrPqDy9XVSNjugoROY8xN3Ufi7c%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-95b20042674445ef8d/JIT.2/1/core.1000.29600?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A05%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D5ZjUMIERXuQb2VPBYrPqDy9XVSNjugoROY8xN3Ufi7c%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-95b20042674445ef8d/JIT.2/4cdf200f-2211-43ef-b718-930963b9d7b9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A05%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D5ZjUMIERXuQb2VPBYrPqDy9XVSNjugoROY8xN3Ufi7c%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7bb81f9fbd65471996/JIT.2/1/console.d8fc7f81.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A15%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DMnZMKDlqRAiOEw30hcqV2tGOzIiSZHz3NLTCMtLe7Mc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7bb81f9fbd65471996/JIT.2/1/coredump.183.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A15%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DMnZMKDlqRAiOEw30hcqV2tGOzIiSZHz3NLTCMtLe7Mc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7bb81f9fbd65471996/JIT.2/5c9f084e-c53e-45bc-9d8b-acab0ab71621.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A15%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DMnZMKDlqRAiOEw30hcqV2tGOzIiSZHz3NLTCMtLe7Mc%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c8b10690a5c249a08a/JIT.2/1/console.88ecb5c6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A17%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlCQ8ALDNXfI%25252Bb9vhINALOr0jkqKiVgUsU0mU38zQQDs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c8b10690a5c249a08a/JIT.2/1/core.17021?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A17%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlCQ8ALDNXfI%25252Bb9vhINALOr0jkqKiVgUsU0mU38zQQDs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c8b10690a5c249a08a/JIT.2/b94e53c4-4269-48d8-8d11-f271b68d4541.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A17%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlCQ8ALDNXfI%25252Bb9vhINALOr0jkqKiVgUsU0mU38zQQDs%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e86e0d5da02a42968d/JIT.2/1/console.b98d93e4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A20%25253A01Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DdaUZUCtXW%25252BrdXGyefaupBWTJ1IiU5dchN5l3kXQJajk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e86e0d5da02a42968d/JIT.2/1/core.34021?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A20%25253A01Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DdaUZUCtXW%25252BrdXGyefaupBWTJ1IiU5dchN5l3kXQJajk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e86e0d5da02a42968d/JIT.2/3e45c847-0d04-4156-9f06-48054187f348.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A20%25253A01Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DdaUZUCtXW%25252BrdXGyefaupBWTJ1IiU5dchN5l3kXQJajk%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e4552d7a29e54179ba/JIT.2/1/console.c3aec098.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DIdLYewj46895kts1iPFtwqIbbcA9%25252FqjVa8PVVT1vSMM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e4552d7a29e54179ba/JIT.2/1/coredump.11954.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DIdLYewj46895kts1iPFtwqIbbcA9%25252FqjVa8PVVT1vSMM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e4552d7a29e54179ba/JIT.2/aceb5b7c-a4c5-4318-ad0f-2f7632e671a5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DIdLYewj46895kts1iPFtwqIbbcA9%25252FqjVa8PVVT1vSMM%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8ca586f7d7146f780/JIT.2/1/console.271eadb4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOtQZXseTf1TU9CPYy7cWUJZmkxa%25252Fo%25252BOuhQLI0Nr3s2A%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8ca586f7d7146f780/JIT.2/1/core.1000.20543?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOtQZXseTf1TU9CPYy7cWUJZmkxa%25252Fo%25252BOuhQLI0Nr3s2A%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8ca586f7d7146f780/JIT.2/3a2af3a8-262e-4416-aaf5-a3c9dbb15bb6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOtQZXseTf1TU9CPYy7cWUJZmkxa%25252Fo%25252BOuhQLI0Nr3s2A%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-092e52ca4c6c4a84a3/JIT.2/1/console.f528ab97.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFmLQOF7XZNqKdMYN7VrgLiWQJKja52Tsur7FbYl6mrQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-092e52ca4c6c4a84a3/JIT.2/1/coredump.13440.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFmLQOF7XZNqKdMYN7VrgLiWQJKja52Tsur7FbYl6mrQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-092e52ca4c6c4a84a3/JIT.2/9dd92bcb-4557-481e-8d3c-9fc6aff9444a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFmLQOF7XZNqKdMYN7VrgLiWQJKja52Tsur7FbYl6mrQ%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-44ab2afd2df440b79f/JIT.2/1/console.ec6aa95e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dkfg92OpHf51fnUaMHL1na2mYmxHBjeRoAiqYGcaD14c%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-44ab2afd2df440b79f/JIT.2/1/coredump.4909.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dkfg92OpHf51fnUaMHL1na2mYmxHBjeRoAiqYGcaD14c%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-44ab2afd2df440b79f/JIT.2/34d412c9-f78f-4524-9cd1-cc7f11b7ea86.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dkfg92OpHf51fnUaMHL1na2mYmxHBjeRoAiqYGcaD14c%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2e2b8d7a6e3040f18b/JIT.2/1/console.003a45dd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DI2FU6twwd%25252F6Mg35xCYZlrLo%25252Bf8oy9%25252BmwKVqbtMPqhgw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2e2b8d7a6e3040f18b/JIT.2/1/core.1001.1299?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DI2FU6twwd%25252F6Mg35xCYZlrLo%25252Bf8oy9%25252BmwKVqbtMPqhgw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2e2b8d7a6e3040f18b/JIT.2/2ea551a6-27c2-48c5-8448-d9a76d44712b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DI2FU6twwd%25252F6Mg35xCYZlrLo%25252Bf8oy9%25252BmwKVqbtMPqhgw%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a4f1bffbbc874107b7/JIT.2/1/console.657c8ff9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd90flhXQh67%25252FE4qe6ChUaKgVF%25252FLPDIe0FI0BaysWSAw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a4f1bffbbc874107b7/JIT.2/1/coredump.1201.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd90flhXQh67%25252FE4qe6ChUaKgVF%25252FLPDIe0FI0BaysWSAw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a4f1bffbbc874107b7/JIT.2/19faef37-c906-403f-aab6-c5a134bdd517.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd90flhXQh67%25252FE4qe6ChUaKgVF%25252FLPDIe0FI0BaysWSAw%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6a23c085b7784f0189/JIT.2/1/console.f4e0f5f1.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DskMSjtp4kFfTqFmP4BOs5cy%25252FAHdQjYToGBEcRtf3fTY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6a23c085b7784f0189/JIT.2/1/coredump.1319.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DskMSjtp4kFfTqFmP4BOs5cy%25252FAHdQjYToGBEcRtf3fTY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6a23c085b7784f0189/JIT.2/4acadf4d-fe6a-4e54-889e-b69944a89ba6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DskMSjtp4kFfTqFmP4BOs5cy%25252FAHdQjYToGBEcRtf3fTY%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f18d70f3d09d4a7fbc/JIT.2/1/console.a074e28d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DtoEmibm%25252BQrB0fFcmvzGyZWigeuEBofM%25252FwtK4%25252BiStZ9Q%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f18d70f3d09d4a7fbc/JIT.2/1/core.1001.1309?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DtoEmibm%25252BQrB0fFcmvzGyZWigeuEBofM%25252FwtK4%25252BiStZ9Q%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f18d70f3d09d4a7fbc/JIT.2/e9a6b32d-790d-4c03-90ba-fae653d01e3c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DtoEmibm%25252BQrB0fFcmvzGyZWigeuEBofM%25252FwtK4%25252BiStZ9Q%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-69b27db6992e43c5b0/JIT.2/1/console.3293921e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A12%25253A20Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D4IyOlNpQjY2ujoVledBepK3iELcyD%25252FuIwcGehE4pUXM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-69b27db6992e43c5b0/JIT.2/1/coredump.5108.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A12%25253A20Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D4IyOlNpQjY2ujoVledBepK3iELcyD%25252FuIwcGehE4pUXM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-69b27db6992e43c5b0/JIT.2/5b26a2a8-6f5a-4560-97d5-b8915ecc2097.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A12%25253A20Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D4IyOlNpQjY2ujoVledBepK3iELcyD%25252FuIwcGehE4pUXM%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-13de84a5ff8649649c/JIT.2/1/console.76e61a2b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A28%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dmr74qtjEPTVWVMTI0zvUV9L0fybT8PBPF%25252B079geK2S0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-13de84a5ff8649649c/JIT.2/1/coredump.1427.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A28%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dmr74qtjEPTVWVMTI0zvUV9L0fybT8PBPF%25252B079geK2S0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-13de84a5ff8649649c/JIT.2/b7686cbb-c030-4714-9e26-773580476d79.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A28%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dmr74qtjEPTVWVMTI0zvUV9L0fybT8PBPF%25252B079geK2S0%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6c3324b42f3047e78d/JIT.2/1/console.82caae06.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252BWHfZ5IxZ9inbr85iqvkRJZ5LpgoeK%25252FAZVE6pjcXAlU%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6c3324b42f3047e78d/JIT.2/1/coredump.248.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252BWHfZ5IxZ9inbr85iqvkRJZ5LpgoeK%25252FAZVE6pjcXAlU%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6c3324b42f3047e78d/JIT.2/9aecedf0-8ca0-4897-bab0-d7bb8862b653.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252BWHfZ5IxZ9inbr85iqvkRJZ5LpgoeK%25252FAZVE6pjcXAlU%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6fe08282cd914704b2/JIT.2/1/console.8c4965b2.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D1aMkn2PtTal%25252FaV8BBaWq79xYmZqx3qwzsWLFlEuZxlk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6fe08282cd914704b2/JIT.2/1/coredump.281.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D1aMkn2PtTal%25252FaV8BBaWq79xYmZqx3qwzsWLFlEuZxlk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6fe08282cd914704b2/JIT.2/c6bb9f5f-85a9-4020-b2d0-bc13724de03f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D1aMkn2PtTal%25252FaV8BBaWq79xYmZqx3qwzsWLFlEuZxlk%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-def4f3655f6d41c38c/JIT.2/1/console.8b8a5209.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYmJTjKPNrkKJtZmw%25252BK7WTvxvx3JjU7SJEuMxVW26L8M%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-def4f3655f6d41c38c/JIT.2/1/core.1001.197?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYmJTjKPNrkKJtZmw%25252BK7WTvxvx3JjU7SJEuMxVW26L8M%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-def4f3655f6d41c38c/JIT.2/2a0ce712-791d-4923-a804-48f17e2adc41.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYmJTjKPNrkKJtZmw%25252BK7WTvxvx3JjU7SJEuMxVW26L8M%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f713eed06c7f428294/JIT.2/1/console.57273114.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252FFLVpZv6J5d5WBzmQ%25252Fx%25252B07sS2bW%25252BDmZfkJ47mZgpOEM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f713eed06c7f428294/JIT.2/1/coredump.45.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252FFLVpZv6J5d5WBzmQ%25252Fx%25252B07sS2bW%25252BDmZfkJ47mZgpOEM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f713eed06c7f428294/JIT.2/5db9e89f-331d-4c24-a690-5d0648404ec9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252FFLVpZv6J5d5WBzmQ%25252Fx%25252B07sS2bW%25252BDmZfkJ47mZgpOEM%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e6656f60915f492485/JIT.2/1/console.790c42f8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLS%25252FS7o4QF%25252Bl2D9XV3scgijpYygbtwN2XMosZ4E7kMS8%25253D)|||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e6656f60915f492485/JIT.2/8a1f0a6d-3ade-4f0d-8e75-2f6b58f39af8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLS%25252FS7o4QF%25252Bl2D9XV3scgijpYygbtwN2XMosZ4E7kMS8%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-da77823530cb4db78d/JIT.2/1/console.774dca6b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DaDSDFmpkQlwBaeKMMFmESlnjxRVNmzARgnrCUCE4EKQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-da77823530cb4db78d/JIT.2/1/core.85476?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DaDSDFmpkQlwBaeKMMFmESlnjxRVNmzARgnrCUCE4EKQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-da77823530cb4db78d/JIT.2/6ae7346b-9ab6-4f8b-b211-c314af8055b4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DaDSDFmpkQlwBaeKMMFmESlnjxRVNmzARgnrCUCE4EKQ%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-edd88da1b1914af4bd/JIT.2/1/console.37d08b29.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DylzVHerqPgpPVMvY7axc5IDbmGotBYXxHIPeKdUa9d4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-edd88da1b1914af4bd/JIT.2/1/core.17111?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DylzVHerqPgpPVMvY7axc5IDbmGotBYXxHIPeKdUa9d4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-edd88da1b1914af4bd/JIT.2/648465a8-7547-4252-8149-411a03eb6185.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DylzVHerqPgpPVMvY7axc5IDbmGotBYXxHIPeKdUa9d4%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c2ee49596924635a2/JIT.2/1/console.a7869a87.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dg2sYl0caPAF%25252BLExIsP%25252FJyteBwVSUyqllCrm3ROX%25252BaPM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c2ee49596924635a2/JIT.2/1/coredump.16173.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dg2sYl0caPAF%25252BLExIsP%25252FJyteBwVSUyqllCrm3ROX%25252BaPM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c2ee49596924635a2/JIT.2/46cea5ad-a83b-4c2f-9fc0-dfc451c1ed51.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dg2sYl0caPAF%25252BLExIsP%25252FJyteBwVSUyqllCrm3ROX%25252BaPM%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5891c36741b5441588/JIT.2/1/console.9f4cc6e9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DPKQvhZ0DIMPhHJlNYkxpd2nnPCQrQZzZarS4Ov15z3g%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5891c36741b5441588/JIT.2/1/core.1000.7829?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DPKQvhZ0DIMPhHJlNYkxpd2nnPCQrQZzZarS4Ov15z3g%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5891c36741b5441588/JIT.2/b9968614-045b-4c7a-8757-b77b4490b0fd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DPKQvhZ0DIMPhHJlNYkxpd2nnPCQrQZzZarS4Ov15z3g%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66b7ccf15591496593/JIT.2/1/console.e72c1c79.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DqIy32Tt3Yx89UpXDSDol1vKkuSYZWHgQ1Fd8JdFUjaw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66b7ccf15591496593/JIT.2/1/core.1000.16773?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DqIy32Tt3Yx89UpXDSDol1vKkuSYZWHgQ1Fd8JdFUjaw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66b7ccf15591496593/JIT.2/4c58b1d8-7c73-4cc7-bee5-3f66a270972c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DqIy32Tt3Yx89UpXDSDol1vKkuSYZWHgQ1Fd8JdFUjaw%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-32dce1de7ef745539b/JIT.2/1/console.23ca588f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJl8Bn4UVTQ1EYnnkUoll%25252BI77Sm%25252BaJY45gdOk2%25252FcrxLY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-32dce1de7ef745539b/JIT.2/1/coredump.10162.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJl8Bn4UVTQ1EYnnkUoll%25252BI77Sm%25252BaJY45gdOk2%25252FcrxLY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-32dce1de7ef745539b/JIT.2/83ee1bd9-f9b2-478b-a2fb-9a03f5a1f823.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJl8Bn4UVTQ1EYnnkUoll%25252BI77Sm%25252BaJY45gdOk2%25252FcrxLY%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e87c03912db54472b5/JIT.2/1/console.2eba1044.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A01%25253A53Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DkcqUpsZbwWi7DXnHuFepREidWEx2kk4OB2WqORSGuT4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e87c03912db54472b5/JIT.2/1/core.29703?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A01%25253A53Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DkcqUpsZbwWi7DXnHuFepREidWEx2kk4OB2WqORSGuT4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e87c03912db54472b5/JIT.2/9bde7639-aa45-4a03-96c9-bb08a366808e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A01%25253A53Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DkcqUpsZbwWi7DXnHuFepREidWEx2kk4OB2WqORSGuT4%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-0731230d839e4dd2bc/JIT.2/1/console.4a09f8f1.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A08Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2sMMl9TLsXUuxkaJYZ02f%25252FaDkxq0TEGlwZr8DP7TUm4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-0731230d839e4dd2bc/JIT.2/1/core.1001.45?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A08Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2sMMl9TLsXUuxkaJYZ02f%25252FaDkxq0TEGlwZr8DP7TUm4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-0731230d839e4dd2bc/JIT.2/8c1eec51-b06c-4797-a6cb-5cc88d76209f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A08Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2sMMl9TLsXUuxkaJYZ02f%25252FaDkxq0TEGlwZr8DP7TUm4%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-94567edf6183453684/JIT.2/1/console.78b7a69b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DBpXV5dUgA7hs8mbWLDmYcNVH03OIlwWjIcAyLHkP5Uw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-94567edf6183453684/JIT.2/1/core.24940?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DBpXV5dUgA7hs8mbWLDmYcNVH03OIlwWjIcAyLHkP5Uw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-94567edf6183453684/JIT.2/3c3680ae-de87-458a-ac3b-b0fcd0abebfd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DBpXV5dUgA7hs8mbWLDmYcNVH03OIlwWjIcAyLHkP5Uw%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6f8d93793e014f42be/JIT.2/1/console.9dc6fa8c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A17%25253A15Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWozzh%25252BXqYVtPwuSxIHvP2cUWuJU%25252Fsq6RsP3bsJSlloI%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6f8d93793e014f42be/JIT.2/1/coredump.7144.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A17%25253A15Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWozzh%25252BXqYVtPwuSxIHvP2cUWuJU%25252Fsq6RsP3bsJSlloI%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6f8d93793e014f42be/JIT.2/e29521d4-7086-4b85-a7cb-9a6b3c3a5a58.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A17%25253A15Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWozzh%25252BXqYVtPwuSxIHvP2cUWuJU%25252Fsq6RsP3bsJSlloI%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e19717dd7c994ae7b6/JIT.2/1/console.8d047abc.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A15%25253A42Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DXbjUzC8Wl4DnlnNoiRcKrOYWu%25252BH0BetjcfoaD2WxlNg%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e19717dd7c994ae7b6/JIT.2/1/coredump.12666.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A15%25253A42Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DXbjUzC8Wl4DnlnNoiRcKrOYWu%25252BH0BetjcfoaD2WxlNg%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e19717dd7c994ae7b6/JIT.2/ea9a7a41-717b-4445-9f16-d045ccb75c70.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A15%25253A42Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DXbjUzC8Wl4DnlnNoiRcKrOYWu%25252BH0BetjcfoaD2WxlNg%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22500b398d5d4ee5a6/JIT.2/1/console.ec4dd3dd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A13%25253A06Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D661CpTBq%25252BR68dWKH%25252FAiPGAOj91RCNZ22%25252Be1eu4sfwpE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22500b398d5d4ee5a6/JIT.2/1/core.23996?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A13%25253A06Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D661CpTBq%25252BR68dWKH%25252FAiPGAOj91RCNZ22%25252Be1eu4sfwpE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22500b398d5d4ee5a6/JIT.2/cc17584a-51ed-49d5-a1e3-fba9e43a8474.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A13%25253A06Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D661CpTBq%25252BR68dWKH%25252FAiPGAOj91RCNZ22%25252Be1eu4sfwpE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-512d148e65764f09ad/JIT.2/1/console.25e5ba38.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlNqaKcr2OeovbIp0YqtqQaW9C8W9wLP3q3v2khRq7Tc%25253D)|||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-512d148e65764f09ad/JIT.2/fdc46e15-f106-4470-9d4d-2e9718c693bd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlNqaKcr2OeovbIp0YqtqQaW9C8W9wLP3q3v2khRq7Tc%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-40f273c1dccc4e9a89/JIT.2/1/console.86d44213.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A05Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DENTEA2tLKhk5xIAzTQqVKalISuTp9NTAnAfeOSdWH%25252FE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-40f273c1dccc4e9a89/JIT.2/1/coredump.1359.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A05Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DENTEA2tLKhk5xIAzTQqVKalISuTp9NTAnAfeOSdWH%25252FE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-40f273c1dccc4e9a89/JIT.2/06ed0485-5042-4331-9e41-b410618d12f3.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A05Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DENTEA2tLKhk5xIAzTQqVKalISuTp9NTAnAfeOSdWH%25252FE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ca1f0a17b19e4efc89/JIT.2/1/console.fbaca9ad.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DM%25252ByndgwWkmDr4um1t632FjRRnxLFcCpcfTY7YYAR2E4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ca1f0a17b19e4efc89/JIT.2/1/core.1000.17383?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DM%25252ByndgwWkmDr4um1t632FjRRnxLFcCpcfTY7YYAR2E4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ca1f0a17b19e4efc89/JIT.2/abc4a4ec-7707-4bc5-87aa-ef4b11ff7244.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DM%25252ByndgwWkmDr4um1t632FjRRnxLFcCpcfTY7YYAR2E4%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a716a93519f84b0a94/JIT.2/1/console.fed9c3cb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DC%25252FBEG6aO8vQziNQYiMo%25252FguSyHpX9N%25252FxS2AS6mPLWyec%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a716a93519f84b0a94/JIT.2/1/core.1000.5078?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DC%25252FBEG6aO8vQziNQYiMo%25252FguSyHpX9N%25252FxS2AS6mPLWyec%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a716a93519f84b0a94/JIT.2/f10ccc64-a708-4b8d-a00a-edfc0275cff8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DC%25252FBEG6aO8vQziNQYiMo%25252FguSyHpX9N%25252FxS2AS6mPLWyec%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74c8da1090e544e789/JIT.2/1/console.ede8fdd6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DnG0zcJUEiQ0WjjTS0t9Ubpoiv8uYsidqA8%25252F2ARchBCc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74c8da1090e544e789/JIT.2/1/coredump.15398.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DnG0zcJUEiQ0WjjTS0t9Ubpoiv8uYsidqA8%25252F2ARchBCc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74c8da1090e544e789/JIT.2/9c50e10c-e957-408c-aacb-5017854b570c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DnG0zcJUEiQ0WjjTS0t9Ubpoiv8uYsidqA8%25252F2ARchBCc%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7547f700fb614c9ca0/JIT.2/1/console.e242c18a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DunOdFMReQX%25252FZvgl23itJyS7zTHRktg5YZOe4EniWwP0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7547f700fb614c9ca0/JIT.2/1/core.1001.1306?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DunOdFMReQX%25252FZvgl23itJyS7zTHRktg5YZOe4EniWwP0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7547f700fb614c9ca0/JIT.2/6b6bb048-4d7a-421d-b86f-586e6da499f0.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DunOdFMReQX%25252FZvgl23itJyS7zTHRktg5YZOe4EniWwP0%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-afe4f4b8f67145b0b9/JIT.2/1/console.1d9b2a0a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DX0a%25252FJLs2HBP6s7ds33tqx%25252FWRB2MGNu00TGMM5mz6ZuE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-afe4f4b8f67145b0b9/JIT.2/1/coredump.1352.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DX0a%25252FJLs2HBP6s7ds33tqx%25252FWRB2MGNu00TGMM5mz6ZuE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-afe4f4b8f67145b0b9/JIT.2/98c3e245-0635-4009-8e6f-9fba36203cc0.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DX0a%25252FJLs2HBP6s7ds33tqx%25252FWRB2MGNu00TGMM5mz6ZuE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3fa000c9c13d4045a7/JIT.2/1/console.f478610d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKVhF4tzo9qeYGHbjF29Y65aUivrBE9%25252BluHLkI04i%25252Bk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3fa000c9c13d4045a7/JIT.2/1/coredump.1553.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKVhF4tzo9qeYGHbjF29Y65aUivrBE9%25252BluHLkI04i%25252Bk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3fa000c9c13d4045a7/JIT.2/2a179a01-a1fc-4d6f-a876-1ae87db82f9e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKVhF4tzo9qeYGHbjF29Y65aUivrBE9%25252BluHLkI04i%25252Bk%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-886a3f6c9c8842a18f/JIT.2/1/console.6e364921.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvM%25252FnSSxMjVQ%25252FKxMt8KBJG2x%25252F2xmaoSEKxvu6XbMrfJE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-886a3f6c9c8842a18f/JIT.2/1/core.32366?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvM%25252FnSSxMjVQ%25252FKxMt8KBJG2x%25252F2xmaoSEKxvu6XbMrfJE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-886a3f6c9c8842a18f/JIT.2/8fe76484-1937-4eb9-bf7b-3465a67ca5e6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvM%25252FnSSxMjVQ%25252FKxMt8KBJG2x%25252F2xmaoSEKxvu6XbMrfJE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-866ea5887a584b0e8f/JIT.2/1/console.0ba9d79d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsU0yEzFddMPdvbId4iz%25252B5VTeuyuzHT33TjGQNeZJ4mk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-866ea5887a584b0e8f/JIT.2/1/core.57891?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsU0yEzFddMPdvbId4iz%25252B5VTeuyuzHT33TjGQNeZJ4mk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-866ea5887a584b0e8f/JIT.2/a324004c-ab68-44ec-922b-c8c9dde68a3b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsU0yEzFddMPdvbId4iz%25252B5VTeuyuzHT33TjGQNeZJ4mk%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cc75b87431e2429a92/JIT.2/1/console.5a6f26e6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvoSxmGl%25252F2bEMql9JX7ja0ONOCzAVR9NOGWp8YbdPwtM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cc75b87431e2429a92/JIT.2/1/core.72444?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvoSxmGl%25252F2bEMql9JX7ja0ONOCzAVR9NOGWp8YbdPwtM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cc75b87431e2429a92/JIT.2/0126cef4-dc9e-41f7-a5b3-4b806815ad2d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvoSxmGl%25252F2bEMql9JX7ja0ONOCzAVR9NOGWp8YbdPwtM%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-68d8da36f9204c2983/JIT.2/1/console.6ca063eb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvHGiNr5iDY759Agvsj6zFBXfJlCxms0VYx7s7JbG2qs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-68d8da36f9204c2983/JIT.2/1/coredump.1255.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvHGiNr5iDY759Agvsj6zFBXfJlCxms0VYx7s7JbG2qs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-68d8da36f9204c2983/JIT.2/8873a2a7-cbe6-4c03-bb08-52a3cf43c66f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvHGiNr5iDY759Agvsj6zFBXfJlCxms0VYx7s7JbG2qs%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-445caa67c6f146ad97/JIT.2/1/console.2d980b76.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKjX99ii5%25252BqZ%25252BVBOrdFj5N%25252Fwegeo5HsBDgBjZQ6U6WM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-445caa67c6f146ad97/JIT.2/1/core.1000.7396?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKjX99ii5%25252BqZ%25252BVBOrdFj5N%25252Fwegeo5HsBDgBjZQ6U6WM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-445caa67c6f146ad97/JIT.2/8ffbf4ba-96ca-48e4-8a78-6be54bcc97b5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKjX99ii5%25252BqZ%25252BVBOrdFj5N%25252Fwegeo5HsBDgBjZQ6U6WM%25253D)| Build Result Summary |Day Hit Count|Week Hit Count|Month Hit Count| |---|---|---| |0|0|6| <!-- runfo report end -->
1.0
jit/intrinsics/createspan_il/createspan_il.sh - <!-- runfo report start --> Runfo Tracking Issue: [jit/intrinsics/createspan_il/createspan_il.sh](https://runfo.azurewebsites.net/tracking/issue/233) |Build|Definition|Kind|Run Name|Console|Core Dump|Test Results|Run Client| |---|---|---|---|---|---|---|---| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-fac97a2c53174de7be/JIT.2/1/console.f53a3dc6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D8gTpDKgk5mEe2iBAW78joAuBOqfSIcpG9H%25252FZE1HUFzA%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-fac97a2c53174de7be/JIT.2/1/core.94832?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D8gTpDKgk5mEe2iBAW78joAuBOqfSIcpG9H%25252FZE1HUFzA%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-fac97a2c53174de7be/JIT.2/31be953d-84b1-467b-bd56-b5f2b9ed7c87.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D8gTpDKgk5mEe2iBAW78joAuBOqfSIcpG9H%25252FZE1HUFzA%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c1a0c9a7cc8a4a46a8/JIT.2/1/console.b90a23c6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUPz2%25252BFDsKEj4VquU4N67Uo%25252B%25252BJ5CNmb3SfalMvbs4mKI%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c1a0c9a7cc8a4a46a8/JIT.2/1/core.80328?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUPz2%25252BFDsKEj4VquU4N67Uo%25252B%25252BJ5CNmb3SfalMvbs4mKI%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c1a0c9a7cc8a4a46a8/JIT.2/ea0124ed-31c9-4c35-b1f0-72b44887b716.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUPz2%25252BFDsKEj4VquU4N67Uo%25252B%25252BJ5CNmb3SfalMvbs4mKI%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74ac58f1d8e94aa2a2/JIT.2/1/console.9e1517e7.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DHVoqsB%25252BNJ8MNKDtN5gdWm2MikpMHt4rEKHLfpEdoHRE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74ac58f1d8e94aa2a2/JIT.2/1/core.65074?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DHVoqsB%25252BNJ8MNKDtN5gdWm2MikpMHt4rEKHLfpEdoHRE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74ac58f1d8e94aa2a2/JIT.2/31fcd7a2-bb6f-46f5-8c8e-516b906f459f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A53%25253A34Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DHVoqsB%25252BNJ8MNKDtN5gdWm2MikpMHt4rEKHLfpEdoHRE%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5559aaa4fd5345fa9f/JIT.2/1/console.2cd4c91a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A48Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAK3P5PKn03cOIfivPxsbKftZIQxwMgc80djsEI6%25252B%25252BWg%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5559aaa4fd5345fa9f/JIT.2/1/core.1001.1300?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A48Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAK3P5PKn03cOIfivPxsbKftZIQxwMgc80djsEI6%25252B%25252BWg%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5559aaa4fd5345fa9f/JIT.2/6b8509e3-7e08-4784-ba2e-fde1ec55efa2.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A48Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAK3P5PKn03cOIfivPxsbKftZIQxwMgc80djsEI6%25252B%25252BWg%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-73bd76d9a15a407698/JIT.2/1/console.d5fd2bb9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoI7fh%25252BUFYaCDiFgfwcDffu3obSOaWqO4157MREjDJqg%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-73bd76d9a15a407698/JIT.2/1/core.1001.1231?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoI7fh%25252BUFYaCDiFgfwcDffu3obSOaWqO4157MREjDJqg%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-73bd76d9a15a407698/JIT.2/66d6bf93-5f3d-4741-a671-95055c609fbb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoI7fh%25252BUFYaCDiFgfwcDffu3obSOaWqO4157MREjDJqg%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-86961a59289d44b3a0/JIT.2/1/console.c0a41fe8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAN1Pw%25252BRThiGEvz0nIZdD2%25252F%25252FdVQnTVm%25252BeQEhupzBxpRU%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-86961a59289d44b3a0/JIT.2/1/coredump.1231.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAN1Pw%25252BRThiGEvz0nIZdD2%25252F%25252FdVQnTVm%25252BeQEhupzBxpRU%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-86961a59289d44b3a0/JIT.2/b4813620-f23b-470a-9b8f-c45a7d7ec588.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAN1Pw%25252BRThiGEvz0nIZdD2%25252F%25252FdVQnTVm%25252BeQEhupzBxpRU%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9a2c423472344eaeb8/JIT.2/1/console.adacdb7a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLL1ZbVxVbRinGk5S78DZbA%25252BWwVYIH0wxVbQTO%25252BsLjC0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9a2c423472344eaeb8/JIT.2/1/core.1001.1423?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLL1ZbVxVbRinGk5S78DZbA%25252BWwVYIH0wxVbQTO%25252BsLjC0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9a2c423472344eaeb8/JIT.2/a56fe835-87e5-45cc-a2ba-fb4c6c139318.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A56%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLL1ZbVxVbRinGk5S78DZbA%25252BWwVYIH0wxVbQTO%25252BsLjC0%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6e28ee98efa340f098/JIT.2/1/console.e2e8e49f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOJCquw978eUJmDlGO2NUk8%25252BmhpiDPeEOBKiM3jbTfOc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6e28ee98efa340f098/JIT.2/1/core.1000.18726?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOJCquw978eUJmDlGO2NUk8%25252BmhpiDPeEOBKiM3jbTfOc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6e28ee98efa340f098/JIT.2/41185a31-7b9e-4a92-ae11-2b6992abc88d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOJCquw978eUJmDlGO2NUk8%25252BmhpiDPeEOBKiM3jbTfOc%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c0e2bad364e4e5580/JIT.2/1/console.a5fa7bc5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DL1KSr3BD0H8Wc5z1Bmt0kU5KoD%25252B9suxQZjT0B1P4j2g%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c0e2bad364e4e5580/JIT.2/1/core.1000.16636?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DL1KSr3BD0H8Wc5z1Bmt0kU5KoD%25252B9suxQZjT0B1P4j2g%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c0e2bad364e4e5580/JIT.2/1048a51f-d4e1-4f34-b66e-4c4ccf63f44a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DL1KSr3BD0H8Wc5z1Bmt0kU5KoD%25252B9suxQZjT0B1P4j2g%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-faaf5e19c24a42a4a9/JIT.2/1/console.14054646.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsImo5uO4a6OX6IWwAqxaEsPKnlxfZmNR7FWWzR8rc%25252F8%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-faaf5e19c24a42a4a9/JIT.2/1/core.1000.18164?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsImo5uO4a6OX6IWwAqxaEsPKnlxfZmNR7FWWzR8rc%25252F8%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-faaf5e19c24a42a4a9/JIT.2/52e16c3d-cada-4be1-8664-af908028771c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsImo5uO4a6OX6IWwAqxaEsPKnlxfZmNR7FWWzR8rc%25252F8%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2a6b27d8d0134b6888/JIT.2/1/console.c572a254.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUdmVBxv694NcUM8TvdTo09fl8KM9csPVE7LbiMYD7ME%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2a6b27d8d0134b6888/JIT.2/1/coredump.17471.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUdmVBxv694NcUM8TvdTo09fl8KM9csPVE7LbiMYD7ME%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2a6b27d8d0134b6888/JIT.2/a9b26a56-8b76-47c4-9010-ab1cef0a7478.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T05%25253A57%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DUdmVBxv694NcUM8TvdTo09fl8KM9csPVE7LbiMYD7ME%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9b11eb3b5706487cac/JIT.2/1/console.139fb638.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A24%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dzu3RPB69PowtFZ8EhiiN4Br8naVUIZuuR88hajgIw8E%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9b11eb3b5706487cac/JIT.2/1/core.1000.4545?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A24%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dzu3RPB69PowtFZ8EhiiN4Br8naVUIZuuR88hajgIw8E%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-9b11eb3b5706487cac/JIT.2/42b25b4d-3f42-459b-9759-17ba77a97e8f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A24%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dzu3RPB69PowtFZ8EhiiN4Br8naVUIZuuR88hajgIw8E%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a740d32955f04b7994/JIT.2/1/console.ae5ebff5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A25%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAJsL%25252B3I7HWsqYNBpyQxmgAqgCKTbZSPjoNpiVRSJXE8%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a740d32955f04b7994/JIT.2/1/coredump.1502.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A25%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAJsL%25252B3I7HWsqYNBpyQxmgAqgCKTbZSPjoNpiVRSJXE8%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a740d32955f04b7994/JIT.2/7bbe204a-4acb-49f2-a0ba-63e0a153aaa9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A25%25253A09Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DAJsL%25252B3I7HWsqYNBpyQxmgAqgCKTbZSPjoNpiVRSJXE8%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e7dfb2206c554e26bb/JIT.2/1/console.602e2d58.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A28%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsF%25252F3v61Ylzf18sNs4K8sLoqgyx4S2lwQZvdCV2XPr7M%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e7dfb2206c554e26bb/JIT.2/1/core.7934?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A28%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsF%25252F3v61Ylzf18sNs4K8sLoqgyx4S2lwQZvdCV2XPr7M%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e7dfb2206c554e26bb/JIT.2/60cfeffd-747d-416b-a121-9d7f3f4fe6b7.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A28%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsF%25252F3v61Ylzf18sNs4K8sLoqgyx4S2lwQZvdCV2XPr7M%25253D)| |[1504394](https://dev.azure.com/dnceng/public/_build/results?buildId=1504394)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a623e2c1e27a42a49a/JIT.2/1/console.dca908cb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A30%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DD8aGm%25252BGEr97mcoLVpmNcXn3CZcPaj69a0K0JHZwF4vQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a623e2c1e27a42a49a/JIT.2/1/core.90393?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A30%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DD8aGm%25252BGEr97mcoLVpmNcXn3CZcPaj69a0K0JHZwF4vQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a623e2c1e27a42a49a/JIT.2/17789312-f601-4341-9455-cc093ffc9a49.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T06%25253A30%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DD8aGm%25252BGEr97mcoLVpmNcXn3CZcPaj69a0K0JHZwF4vQ%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-e3b9ad259c444c2dbc/JIT.2/1/console.fc08abeb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DVF40JMvVXpdcrLzNbz%25252FuC%25252BLERsJ1FK5XOeNdDHvOQuY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-e3b9ad259c444c2dbc/JIT.2/1/coredump.1405.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DVF40JMvVXpdcrLzNbz%25252FuC%25252BLERsJ1FK5XOeNdDHvOQuY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-e3b9ad259c444c2dbc/JIT.2/2edca62d-19e9-47d2-a73d-bb01e9738bf1.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DVF40JMvVXpdcrLzNbz%25252FuC%25252BLERsJ1FK5XOeNdDHvOQuY%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b053c2e7af13443abc/JIT.2/1/console.fad9ba3f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd0MmNeORxorU%25252FaEOsXXqWo8wY2llWTtwdG8JrCZfSmw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b053c2e7af13443abc/JIT.2/1/core.1001.1202?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd0MmNeORxorU%25252FaEOsXXqWo8wY2llWTtwdG8JrCZfSmw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b053c2e7af13443abc/JIT.2/2091acf6-0f3d-4c47-8fc8-1f9395390010.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd0MmNeORxorU%25252FaEOsXXqWo8wY2llWTtwdG8JrCZfSmw%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5fd000269e24e71bf/JIT.2/1/console.2fca0425.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dw1FQ%25252Br5S9xYfMwhHVRwxzqrsOolo70KP1O79aoNBqqs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5fd000269e24e71bf/JIT.2/1/core.1001.1370?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dw1FQ%25252Br5S9xYfMwhHVRwxzqrsOolo70KP1O79aoNBqqs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5fd000269e24e71bf/JIT.2/b7ec4949-4175-42ea-980a-8eece616b9c9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dw1FQ%25252Br5S9xYfMwhHVRwxzqrsOolo70KP1O79aoNBqqs%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b9ed0eb368f94cfca4/JIT.2/1/console.8a0c8fdf.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJMOaaFJ%25252FFkKGB8RHm%25252F%25252BF4ytJwjHsrEJLHy9zxu5e2bo%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b9ed0eb368f94cfca4/JIT.2/1/coredump.1539.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJMOaaFJ%25252FFkKGB8RHm%25252F%25252BF4ytJwjHsrEJLHy9zxu5e2bo%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-b9ed0eb368f94cfca4/JIT.2/0d6546aa-3580-443b-9d4e-b850f39f423d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A12%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJMOaaFJ%25252FFkKGB8RHm%25252F%25252BF4ytJwjHsrEJLHy9zxu5e2bo%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a9f0e2d27e1a42d69e/JIT.2/1/console.ae8536e4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Da%25252BoWws2UyPJbBWgndsdWQTFh7Ch2fRVaonOw%25252BsLU%25252FaE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a9f0e2d27e1a42d69e/JIT.2/1/coredump.19734.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Da%25252BoWws2UyPJbBWgndsdWQTFh7Ch2fRVaonOw%25252BsLU%25252FaE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a9f0e2d27e1a42d69e/JIT.2/5b01e000-ea74-403e-b374-e8e005b3465b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Da%25252BoWws2UyPJbBWgndsdWQTFh7Ch2fRVaonOw%25252BsLU%25252FaE%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-08d7ddf0f4474098bf/JIT.2/1/console.7801f9a8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DuquccmHSJ3nwyyAzCIkD0wX%25252F4s6lTEyC0ZGWS5TVTQo%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-08d7ddf0f4474098bf/JIT.2/1/coredump.6577.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DuquccmHSJ3nwyyAzCIkD0wX%25252F4s6lTEyC0ZGWS5TVTQo%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-08d7ddf0f4474098bf/JIT.2/49932d36-b475-49b2-864c-fb4685ee1301.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DuquccmHSJ3nwyyAzCIkD0wX%25252F4s6lTEyC0ZGWS5TVTQo%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-3afcb79ff7b7470ab1/JIT.2/1/console.22b6a973.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DyDOP2nl2kIFvzgzxhZZv8X7Q%25252B5zlWYOZSVqmzceZ23Q%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-3afcb79ff7b7470ab1/JIT.2/1/core.1000.7979?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DyDOP2nl2kIFvzgzxhZZv8X7Q%25252B5zlWYOZSVqmzceZ23Q%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-3afcb79ff7b7470ab1/JIT.2/ed053c43-f0b3-4b16-87f2-6e05bd688586.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DyDOP2nl2kIFvzgzxhZZv8X7Q%25252B5zlWYOZSVqmzceZ23Q%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5f289cd92704a59bc/JIT.2/1/console.f8b23771.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoEsKLOly%25252B96ttQ3biBKE8tloEY40vRG6NHaRdqEphko%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5f289cd92704a59bc/JIT.2/1/core.1000.8370?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoEsKLOly%25252B96ttQ3biBKE8tloEY40vRG6NHaRdqEphko%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-a5f289cd92704a59bc/JIT.2/46e19f40-ed67-40ad-be23-780264a772af.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A14%25253A28Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DoEsKLOly%25252B96ttQ3biBKE8tloEY40vRG6NHaRdqEphko%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7c6a3f2a524947a88a/JIT.2/1/console.f7b651d3.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFXdvLsFyAYn1mic49ciqq8GtdTkhjrKB42h5zD4r%25252F9Q%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7c6a3f2a524947a88a/JIT.2/1/core.75481?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFXdvLsFyAYn1mic49ciqq8GtdTkhjrKB42h5zD4r%25252F9Q%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7c6a3f2a524947a88a/JIT.2/c79c5cde-ad83-4a4f-a0ea-04c1a954c531.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFXdvLsFyAYn1mic49ciqq8GtdTkhjrKB42h5zD4r%25252F9Q%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-637a016bf9be42e6b2/JIT.2/1/console.ac51bf5e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D0cg4oPGeq8d8Tj%25252BopvZxW%25252BIu3s1vEVV5vLbINO3DSb8%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-637a016bf9be42e6b2/JIT.2/1/core.87135?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D0cg4oPGeq8d8Tj%25252BopvZxW%25252BIu3s1vEVV5vLbINO3DSb8%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-637a016bf9be42e6b2/JIT.2/243161f5-40df-4d22-842a-61c77dca633a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D0cg4oPGeq8d8Tj%25252BopvZxW%25252BIu3s1vEVV5vLbINO3DSb8%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-354b3f381e3c4021a6/JIT.2/1/console.315aa2a5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEag%25252B8lSnewZ9emmtDue32XCh%25252FDNn9M4X%25252B05uBqoMzPQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-354b3f381e3c4021a6/JIT.2/1/core.86688?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEag%25252B8lSnewZ9emmtDue32XCh%25252FDNn9M4X%25252B05uBqoMzPQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-354b3f381e3c4021a6/JIT.2/a2634b1e-cfa6-4416-9d77-c82ef1961f9a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A18%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEag%25252B8lSnewZ9emmtDue32XCh%25252FDNn9M4X%25252B05uBqoMzPQ%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-6d5bc45ec1dd445fab/JIT.2/1/console.d518774f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A44%25253A44Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYqqyun7N84C7avJVDQVasmgxYpZ6iWUHpYN1z1jbb%25252Fw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-6d5bc45ec1dd445fab/JIT.2/1/core.1001.1366?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A44%25253A44Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYqqyun7N84C7avJVDQVasmgxYpZ6iWUHpYN1z1jbb%25252Fw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-6d5bc45ec1dd445fab/JIT.2/9c1c8284-7831-46cd-af45-ea5f6bb8b156.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A44%25253A44Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYqqyun7N84C7avJVDQVasmgxYpZ6iWUHpYN1z1jbb%25252Fw%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-f44227e2523446ce8c/JIT.2/1/console.b555c157.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A48%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEqoSb4uvrhd4kidjQpAJSgbbWan5EVuxgM1DDeVwWD4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-f44227e2523446ce8c/JIT.2/1/core.25646?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A48%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEqoSb4uvrhd4kidjQpAJSgbbWan5EVuxgM1DDeVwWD4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-f44227e2523446ce8c/JIT.2/5b62e8bc-4a12-4478-bf0a-06a06404c74b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A48%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DEqoSb4uvrhd4kidjQpAJSgbbWan5EVuxgM1DDeVwWD4%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7f9abf20ad0c4f7783/JIT.2/1/console.4325d676.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFM%25252FGHUXUwg1S5zYnOMLZj3OTIY%25252FN9VZHoTJrvh4PTxs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7f9abf20ad0c4f7783/JIT.2/1/core.1000.905?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFM%25252FGHUXUwg1S5zYnOMLZj3OTIY%25252FN9VZHoTJrvh4PTxs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-7f9abf20ad0c4f7783/JIT.2/c90fea9c-aad8-4a78-b07b-e64df8ad9af6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFM%25252FGHUXUwg1S5zYnOMLZj3OTIY%25252FN9VZHoTJrvh4PTxs%25253D)| |[1504268](https://dev.azure.com/dnceng/public/_build/results?buildId=1504268)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|[PR 62560](https://github.com/dotnet/runtime/pull/62560)|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-82ee7ee8a57d405183/JIT.2/1/console.13de6cda.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dm8ZvFa%25252BTktWl1FOoed95DtmmPd6irraq1DKOGdeYjK4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-82ee7ee8a57d405183/JIT.2/1/core.79258?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dm8ZvFa%25252BTktWl1FOoed95DtmmPd6irraq1DKOGdeYjK4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-62560-merge-82ee7ee8a57d405183/JIT.2/4c9be100-3ae5-4746-9f7e-6d56681a7dea.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-29T04%25253A51%25253A43Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dm8ZvFa%25252BTktWl1FOoed95DtmmPd6irraq1DKOGdeYjK4%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-037fa15048b94754a9/JIT.2/1/console.5a18c98a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252Bp4l2itoW2jZuxL0Smrkf%25252BxxVULyv1guB3kfBe%25252BaFRE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-037fa15048b94754a9/JIT.2/1/core.86768?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252Bp4l2itoW2jZuxL0Smrkf%25252BxxVULyv1guB3kfBe%25252BaFRE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-037fa15048b94754a9/JIT.2/15caae02-6144-4f7b-9144-987ccc9166e8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252Bp4l2itoW2jZuxL0Smrkf%25252BxxVULyv1guB3kfBe%25252BaFRE%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ae051df2c2104fe7b5/JIT.2/1/console.e0eebc50.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A13Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DNXRbpOFwXJoANiMTvU%25252FoGVtER0ixs7eL0B7NeiXv%25252B2g%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ae051df2c2104fe7b5/JIT.2/1/core.3567?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A13Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DNXRbpOFwXJoANiMTvU%25252FoGVtER0ixs7eL0B7NeiXv%25252B2g%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ae051df2c2104fe7b5/JIT.2/69533be9-8939-422c-b6c3-5e910388445a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A13Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DNXRbpOFwXJoANiMTvU%25252FoGVtER0ixs7eL0B7NeiXv%25252B2g%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-335681b8703742d9a2/JIT.2/1/console.4f6cb036.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D7O%25252FctyuWspOQ3q%25252BsAnw3RACnAnygDJ91FbGc8Hel3AE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-335681b8703742d9a2/JIT.2/1/core.68981?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D7O%25252FctyuWspOQ3q%25252BsAnw3RACnAnygDJ91FbGc8Hel3AE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-335681b8703742d9a2/JIT.2/759cf395-3d13-473e-93ec-357ad3d1bf2c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A42%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D7O%25252FctyuWspOQ3q%25252BsAnw3RACnAnygDJ91FbGc8Hel3AE%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7d1f25ce02744ac2bf/JIT.2/1/console.8c94f940.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW%25252BgXHegMAp0v5plU8%25252Bhp3TM4ugnL2qfnoEGr0flhfCM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7d1f25ce02744ac2bf/JIT.2/1/coredump.217.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW%25252BgXHegMAp0v5plU8%25252Bhp3TM4ugnL2qfnoEGr0flhfCM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7d1f25ce02744ac2bf/JIT.2/a2fbbc59-03f7-499b-baf5-347cdbac87ca.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW%25252BgXHegMAp0v5plU8%25252Bhp3TM4ugnL2qfnoEGr0flhfCM%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66c47c7ad788400daf/JIT.2/1/console.14eced63.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxlpU%25252Bekcef3pu0g4fpR6tpUMZkvIpFzh8iG66uj3gbI%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66c47c7ad788400daf/JIT.2/1/core.1001.168?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxlpU%25252Bekcef3pu0g4fpR6tpUMZkvIpFzh8iG66uj3gbI%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66c47c7ad788400daf/JIT.2/d4127644-cf20-4071-beaf-727fc46b4d44.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxlpU%25252Bekcef3pu0g4fpR6tpUMZkvIpFzh8iG66uj3gbI%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cb2003c37e944a15aa/JIT.2/1/console.28398660.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D9neah72S2j2iCAABWLBD3OKnlnbVtqvCTg7dnYSWvkE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cb2003c37e944a15aa/JIT.2/1/core.1001.219?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D9neah72S2j2iCAABWLBD3OKnlnbVtqvCTg7dnYSWvkE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cb2003c37e944a15aa/JIT.2/8c66aa16-904e-41a1-bb7e-ca0c0e957956.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D9neah72S2j2iCAABWLBD3OKnlnbVtqvCTg7dnYSWvkE%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22fc3d45ee244e239d/JIT.2/1/console.c677371e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW865iNAjXEkQnl5LeOCWXlRx13dp0KYpWPGqM9NQM%25252Bc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22fc3d45ee244e239d/JIT.2/1/core.1001.124?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW865iNAjXEkQnl5LeOCWXlRx13dp0KYpWPGqM9NQM%25252Bc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22fc3d45ee244e239d/JIT.2/a8ab1637-2b5f-43ff-b404-8c5c3841da2e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A44%25253A27Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DW865iNAjXEkQnl5LeOCWXlRx13dp0KYpWPGqM9NQM%25252Bc%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3f225b9089ef407ab1/JIT.2/1/console.6d864390.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxowUA%25252Fdc6xE%25252BzyGQhOJsARHTTj8gT2Db6FMdSV9gx9A%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3f225b9089ef407ab1/JIT.2/1/coredump.15139.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxowUA%25252Fdc6xE%25252BzyGQhOJsARHTTj8gT2Db6FMdSV9gx9A%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3f225b9089ef407ab1/JIT.2/02790980-ca24-4d5e-a303-b77005f1fa00.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DxowUA%25252Fdc6xE%25252BzyGQhOJsARHTTj8gT2Db6FMdSV9gx9A%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-744a6d1dbc6c4407b7/JIT.2/1/console.5dc69c00.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DA1IQxP4ADrmElVgDaUYHh8PDPtLw912Os5OJOxq5hQ0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-744a6d1dbc6c4407b7/JIT.2/1/coredump.22008.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DA1IQxP4ADrmElVgDaUYHh8PDPtLw912Os5OJOxq5hQ0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-744a6d1dbc6c4407b7/JIT.2/220efb0e-00ac-46cb-9ab2-5d403566c161.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DA1IQxP4ADrmElVgDaUYHh8PDPtLw912Os5OJOxq5hQ0%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-70d135695be94dad8d/JIT.2/1/console.f38cdf6d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2Tyu7F53u9p2ddVYf3m5%25252FFiU4QgcDfmj4nLHHD%25252FVbOY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-70d135695be94dad8d/JIT.2/1/coredump.24750.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2Tyu7F53u9p2ddVYf3m5%25252FFiU4QgcDfmj4nLHHD%25252FVbOY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-70d135695be94dad8d/JIT.2/56316259-fd28-470d-bdd2-31c8596e4716.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2Tyu7F53u9p2ddVYf3m5%25252FFiU4QgcDfmj4nLHHD%25252FVbOY%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8f91d72cd924e82b4/JIT.2/1/console.b6da1cda.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DGmqFD06aXI%25252FkYVyygd53CFGPpTr8KCcDhV4uIuhGLsY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8f91d72cd924e82b4/JIT.2/1/coredump.15104.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DGmqFD06aXI%25252FkYVyygd53CFGPpTr8KCcDhV4uIuhGLsY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8f91d72cd924e82b4/JIT.2/6f7a4abc-e429-40d6-9c31-5644525ce37a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T05%25253A48%25253A07Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DGmqFD06aXI%25252FkYVyygd53CFGPpTr8KCcDhV4uIuhGLsY%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-95b20042674445ef8d/JIT.2/1/console.4000c72f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A05%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D5ZjUMIERXuQb2VPBYrPqDy9XVSNjugoROY8xN3Ufi7c%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-95b20042674445ef8d/JIT.2/1/core.1000.29600?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A05%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D5ZjUMIERXuQb2VPBYrPqDy9XVSNjugoROY8xN3Ufi7c%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-95b20042674445ef8d/JIT.2/4cdf200f-2211-43ef-b718-930963b9d7b9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A05%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D5ZjUMIERXuQb2VPBYrPqDy9XVSNjugoROY8xN3Ufi7c%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7bb81f9fbd65471996/JIT.2/1/console.d8fc7f81.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A15%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DMnZMKDlqRAiOEw30hcqV2tGOzIiSZHz3NLTCMtLe7Mc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7bb81f9fbd65471996/JIT.2/1/coredump.183.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A15%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DMnZMKDlqRAiOEw30hcqV2tGOzIiSZHz3NLTCMtLe7Mc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7bb81f9fbd65471996/JIT.2/5c9f084e-c53e-45bc-9d8b-acab0ab71621.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A15%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DMnZMKDlqRAiOEw30hcqV2tGOzIiSZHz3NLTCMtLe7Mc%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c8b10690a5c249a08a/JIT.2/1/console.88ecb5c6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A17%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlCQ8ALDNXfI%25252Bb9vhINALOr0jkqKiVgUsU0mU38zQQDs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c8b10690a5c249a08a/JIT.2/1/core.17021?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A17%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlCQ8ALDNXfI%25252Bb9vhINALOr0jkqKiVgUsU0mU38zQQDs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-c8b10690a5c249a08a/JIT.2/b94e53c4-4269-48d8-8d11-f271b68d4541.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A17%25253A24Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlCQ8ALDNXfI%25252Bb9vhINALOr0jkqKiVgUsU0mU38zQQDs%25253D)| |[1502555](https://dev.azure.com/dnceng/public/_build/results?buildId=1502555)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e86e0d5da02a42968d/JIT.2/1/console.b98d93e4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A20%25253A01Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DdaUZUCtXW%25252BrdXGyefaupBWTJ1IiU5dchN5l3kXQJajk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e86e0d5da02a42968d/JIT.2/1/core.34021?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A20%25253A01Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DdaUZUCtXW%25252BrdXGyefaupBWTJ1IiU5dchN5l3kXQJajk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e86e0d5da02a42968d/JIT.2/3e45c847-0d04-4156-9f06-48054187f348.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-28T06%25253A20%25253A01Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DdaUZUCtXW%25252BrdXGyefaupBWTJ1IiU5dchN5l3kXQJajk%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e4552d7a29e54179ba/JIT.2/1/console.c3aec098.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DIdLYewj46895kts1iPFtwqIbbcA9%25252FqjVa8PVVT1vSMM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e4552d7a29e54179ba/JIT.2/1/coredump.11954.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DIdLYewj46895kts1iPFtwqIbbcA9%25252FqjVa8PVVT1vSMM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e4552d7a29e54179ba/JIT.2/aceb5b7c-a4c5-4318-ad0f-2f7632e671a5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DIdLYewj46895kts1iPFtwqIbbcA9%25252FqjVa8PVVT1vSMM%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8ca586f7d7146f780/JIT.2/1/console.271eadb4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOtQZXseTf1TU9CPYy7cWUJZmkxa%25252Fo%25252BOuhQLI0Nr3s2A%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8ca586f7d7146f780/JIT.2/1/core.1000.20543?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOtQZXseTf1TU9CPYy7cWUJZmkxa%25252Fo%25252BOuhQLI0Nr3s2A%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f8ca586f7d7146f780/JIT.2/3a2af3a8-262e-4416-aaf5-a3c9dbb15bb6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DOtQZXseTf1TU9CPYy7cWUJZmkxa%25252Fo%25252BOuhQLI0Nr3s2A%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-092e52ca4c6c4a84a3/JIT.2/1/console.f528ab97.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFmLQOF7XZNqKdMYN7VrgLiWQJKja52Tsur7FbYl6mrQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-092e52ca4c6c4a84a3/JIT.2/1/coredump.13440.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFmLQOF7XZNqKdMYN7VrgLiWQJKja52Tsur7FbYl6mrQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-092e52ca4c6c4a84a3/JIT.2/9dd92bcb-4557-481e-8d3c-9fc6aff9444a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DFmLQOF7XZNqKdMYN7VrgLiWQJKja52Tsur7FbYl6mrQ%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-44ab2afd2df440b79f/JIT.2/1/console.ec6aa95e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dkfg92OpHf51fnUaMHL1na2mYmxHBjeRoAiqYGcaD14c%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-44ab2afd2df440b79f/JIT.2/1/coredump.4909.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dkfg92OpHf51fnUaMHL1na2mYmxHBjeRoAiqYGcaD14c%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-44ab2afd2df440b79f/JIT.2/34d412c9-f78f-4524-9cd1-cc7f11b7ea86.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A55%25253A36Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dkfg92OpHf51fnUaMHL1na2mYmxHBjeRoAiqYGcaD14c%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2e2b8d7a6e3040f18b/JIT.2/1/console.003a45dd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DI2FU6twwd%25252F6Mg35xCYZlrLo%25252Bf8oy9%25252BmwKVqbtMPqhgw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2e2b8d7a6e3040f18b/JIT.2/1/core.1001.1299?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DI2FU6twwd%25252F6Mg35xCYZlrLo%25252Bf8oy9%25252BmwKVqbtMPqhgw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-2e2b8d7a6e3040f18b/JIT.2/2ea551a6-27c2-48c5-8448-d9a76d44712b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DI2FU6twwd%25252F6Mg35xCYZlrLo%25252Bf8oy9%25252BmwKVqbtMPqhgw%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a4f1bffbbc874107b7/JIT.2/1/console.657c8ff9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd90flhXQh67%25252FE4qe6ChUaKgVF%25252FLPDIe0FI0BaysWSAw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a4f1bffbbc874107b7/JIT.2/1/coredump.1201.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd90flhXQh67%25252FE4qe6ChUaKgVF%25252FLPDIe0FI0BaysWSAw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a4f1bffbbc874107b7/JIT.2/19faef37-c906-403f-aab6-c5a134bdd517.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dd90flhXQh67%25252FE4qe6ChUaKgVF%25252FLPDIe0FI0BaysWSAw%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6a23c085b7784f0189/JIT.2/1/console.f4e0f5f1.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DskMSjtp4kFfTqFmP4BOs5cy%25252FAHdQjYToGBEcRtf3fTY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6a23c085b7784f0189/JIT.2/1/coredump.1319.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DskMSjtp4kFfTqFmP4BOs5cy%25252FAHdQjYToGBEcRtf3fTY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6a23c085b7784f0189/JIT.2/4acadf4d-fe6a-4e54-889e-b69944a89ba6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DskMSjtp4kFfTqFmP4BOs5cy%25252FAHdQjYToGBEcRtf3fTY%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f18d70f3d09d4a7fbc/JIT.2/1/console.a074e28d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DtoEmibm%25252BQrB0fFcmvzGyZWigeuEBofM%25252FwtK4%25252BiStZ9Q%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f18d70f3d09d4a7fbc/JIT.2/1/core.1001.1309?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DtoEmibm%25252BQrB0fFcmvzGyZWigeuEBofM%25252FwtK4%25252BiStZ9Q%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f18d70f3d09d4a7fbc/JIT.2/e9a6b32d-790d-4c03-90ba-fae653d01e3c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T05%25253A57%25253A45Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DtoEmibm%25252BQrB0fFcmvzGyZWigeuEBofM%25252FwtK4%25252BiStZ9Q%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-69b27db6992e43c5b0/JIT.2/1/console.3293921e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A12%25253A20Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D4IyOlNpQjY2ujoVledBepK3iELcyD%25252FuIwcGehE4pUXM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-69b27db6992e43c5b0/JIT.2/1/coredump.5108.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A12%25253A20Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D4IyOlNpQjY2ujoVledBepK3iELcyD%25252FuIwcGehE4pUXM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-69b27db6992e43c5b0/JIT.2/5b26a2a8-6f5a-4560-97d5-b8915ecc2097.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A12%25253A20Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D4IyOlNpQjY2ujoVledBepK3iELcyD%25252FuIwcGehE4pUXM%25253D)| |[1500206](https://dev.azure.com/dnceng/public/_build/results?buildId=1500206)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-13de84a5ff8649649c/JIT.2/1/console.76e61a2b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A28%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dmr74qtjEPTVWVMTI0zvUV9L0fybT8PBPF%25252B079geK2S0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-13de84a5ff8649649c/JIT.2/1/coredump.1427.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A28%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dmr74qtjEPTVWVMTI0zvUV9L0fybT8PBPF%25252B079geK2S0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-13de84a5ff8649649c/JIT.2/b7686cbb-c030-4714-9e26-773580476d79.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-27T06%25253A28%25253A11Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dmr74qtjEPTVWVMTI0zvUV9L0fybT8PBPF%25252B079geK2S0%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6c3324b42f3047e78d/JIT.2/1/console.82caae06.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252BWHfZ5IxZ9inbr85iqvkRJZ5LpgoeK%25252FAZVE6pjcXAlU%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6c3324b42f3047e78d/JIT.2/1/coredump.248.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252BWHfZ5IxZ9inbr85iqvkRJZ5LpgoeK%25252FAZVE6pjcXAlU%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6c3324b42f3047e78d/JIT.2/9aecedf0-8ca0-4897-bab0-d7bb8862b653.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252BWHfZ5IxZ9inbr85iqvkRJZ5LpgoeK%25252FAZVE6pjcXAlU%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6fe08282cd914704b2/JIT.2/1/console.8c4965b2.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D1aMkn2PtTal%25252FaV8BBaWq79xYmZqx3qwzsWLFlEuZxlk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6fe08282cd914704b2/JIT.2/1/coredump.281.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D1aMkn2PtTal%25252FaV8BBaWq79xYmZqx3qwzsWLFlEuZxlk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6fe08282cd914704b2/JIT.2/c6bb9f5f-85a9-4020-b2d0-bc13724de03f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D1aMkn2PtTal%25252FaV8BBaWq79xYmZqx3qwzsWLFlEuZxlk%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-def4f3655f6d41c38c/JIT.2/1/console.8b8a5209.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYmJTjKPNrkKJtZmw%25252BK7WTvxvx3JjU7SJEuMxVW26L8M%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-def4f3655f6d41c38c/JIT.2/1/core.1001.197?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYmJTjKPNrkKJtZmw%25252BK7WTvxvx3JjU7SJEuMxVW26L8M%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-def4f3655f6d41c38c/JIT.2/2a0ce712-791d-4923-a804-48f17e2adc41.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DYmJTjKPNrkKJtZmw%25252BK7WTvxvx3JjU7SJEuMxVW26L8M%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f713eed06c7f428294/JIT.2/1/console.57273114.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252FFLVpZv6J5d5WBzmQ%25252Fx%25252B07sS2bW%25252BDmZfkJ47mZgpOEM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f713eed06c7f428294/JIT.2/1/coredump.45.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252FFLVpZv6J5d5WBzmQ%25252Fx%25252B07sS2bW%25252BDmZfkJ47mZgpOEM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-f713eed06c7f428294/JIT.2/5db9e89f-331d-4c24-a690-5d0648404ec9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D%25252FFLVpZv6J5d5WBzmQ%25252Fx%25252B07sS2bW%25252BDmZfkJ47mZgpOEM%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e6656f60915f492485/JIT.2/1/console.790c42f8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLS%25252FS7o4QF%25252Bl2D9XV3scgijpYygbtwN2XMosZ4E7kMS8%25253D)|||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e6656f60915f492485/JIT.2/8a1f0a6d-3ade-4f0d-8e75-2f6b58f39af8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DLS%25252FS7o4QF%25252Bl2D9XV3scgijpYygbtwN2XMosZ4E7kMS8%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-da77823530cb4db78d/JIT.2/1/console.774dca6b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DaDSDFmpkQlwBaeKMMFmESlnjxRVNmzARgnrCUCE4EKQ%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-da77823530cb4db78d/JIT.2/1/core.85476?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DaDSDFmpkQlwBaeKMMFmESlnjxRVNmzARgnrCUCE4EKQ%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-da77823530cb4db78d/JIT.2/6ae7346b-9ab6-4f8b-b211-c314af8055b4.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DaDSDFmpkQlwBaeKMMFmESlnjxRVNmzARgnrCUCE4EKQ%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-edd88da1b1914af4bd/JIT.2/1/console.37d08b29.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DylzVHerqPgpPVMvY7axc5IDbmGotBYXxHIPeKdUa9d4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-edd88da1b1914af4bd/JIT.2/1/core.17111?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DylzVHerqPgpPVMvY7axc5IDbmGotBYXxHIPeKdUa9d4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-edd88da1b1914af4bd/JIT.2/648465a8-7547-4252-8149-411a03eb6185.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A39%25253A04Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DylzVHerqPgpPVMvY7axc5IDbmGotBYXxHIPeKdUa9d4%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c2ee49596924635a2/JIT.2/1/console.a7869a87.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dg2sYl0caPAF%25252BLExIsP%25252FJyteBwVSUyqllCrm3ROX%25252BaPM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c2ee49596924635a2/JIT.2/1/coredump.16173.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dg2sYl0caPAF%25252BLExIsP%25252FJyteBwVSUyqllCrm3ROX%25252BaPM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3c2ee49596924635a2/JIT.2/46cea5ad-a83b-4c2f-9fc0-dfc451c1ed51.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253Dg2sYl0caPAF%25252BLExIsP%25252FJyteBwVSUyqllCrm3ROX%25252BaPM%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5891c36741b5441588/JIT.2/1/console.9f4cc6e9.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DPKQvhZ0DIMPhHJlNYkxpd2nnPCQrQZzZarS4Ov15z3g%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5891c36741b5441588/JIT.2/1/core.1000.7829?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DPKQvhZ0DIMPhHJlNYkxpd2nnPCQrQZzZarS4Ov15z3g%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-5891c36741b5441588/JIT.2/b9968614-045b-4c7a-8757-b77b4490b0fd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DPKQvhZ0DIMPhHJlNYkxpd2nnPCQrQZzZarS4Ov15z3g%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66b7ccf15591496593/JIT.2/1/console.e72c1c79.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DqIy32Tt3Yx89UpXDSDol1vKkuSYZWHgQ1Fd8JdFUjaw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66b7ccf15591496593/JIT.2/1/core.1000.16773?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DqIy32Tt3Yx89UpXDSDol1vKkuSYZWHgQ1Fd8JdFUjaw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-66b7ccf15591496593/JIT.2/4c58b1d8-7c73-4cc7-bee5-3f66a270972c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DqIy32Tt3Yx89UpXDSDol1vKkuSYZWHgQ1Fd8JdFUjaw%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-32dce1de7ef745539b/JIT.2/1/console.23ca588f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJl8Bn4UVTQ1EYnnkUoll%25252BI77Sm%25252BaJY45gdOk2%25252FcrxLY%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-32dce1de7ef745539b/JIT.2/1/coredump.10162.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJl8Bn4UVTQ1EYnnkUoll%25252BI77Sm%25252BaJY45gdOk2%25252FcrxLY%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-32dce1de7ef745539b/JIT.2/83ee1bd9-f9b2-478b-a2fb-9a03f5a1f823.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T05%25253A42%25253A46Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DJl8Bn4UVTQ1EYnnkUoll%25252BI77Sm%25252BaJY45gdOk2%25252FcrxLY%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e87c03912db54472b5/JIT.2/1/console.2eba1044.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A01%25253A53Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DkcqUpsZbwWi7DXnHuFepREidWEx2kk4OB2WqORSGuT4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e87c03912db54472b5/JIT.2/1/core.29703?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A01%25253A53Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DkcqUpsZbwWi7DXnHuFepREidWEx2kk4OB2WqORSGuT4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e87c03912db54472b5/JIT.2/9bde7639-aa45-4a03-96c9-bb08a366808e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A01%25253A53Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DkcqUpsZbwWi7DXnHuFepREidWEx2kk4OB2WqORSGuT4%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-0731230d839e4dd2bc/JIT.2/1/console.4a09f8f1.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A08Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2sMMl9TLsXUuxkaJYZ02f%25252FaDkxq0TEGlwZr8DP7TUm4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-0731230d839e4dd2bc/JIT.2/1/core.1001.45?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A08Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2sMMl9TLsXUuxkaJYZ02f%25252FaDkxq0TEGlwZr8DP7TUm4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-0731230d839e4dd2bc/JIT.2/8c1eec51-b06c-4797-a6cb-5cc88d76209f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A08Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D2sMMl9TLsXUuxkaJYZ02f%25252FaDkxq0TEGlwZr8DP7TUm4%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-94567edf6183453684/JIT.2/1/console.78b7a69b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DBpXV5dUgA7hs8mbWLDmYcNVH03OIlwWjIcAyLHkP5Uw%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-94567edf6183453684/JIT.2/1/core.24940?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DBpXV5dUgA7hs8mbWLDmYcNVH03OIlwWjIcAyLHkP5Uw%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-94567edf6183453684/JIT.2/3c3680ae-de87-458a-ac3b-b0fcd0abebfd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A08%25253A33Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DBpXV5dUgA7hs8mbWLDmYcNVH03OIlwWjIcAyLHkP5Uw%25253D)| |[1498212](https://dev.azure.com/dnceng/public/_build/results?buildId=1498212)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6f8d93793e014f42be/JIT.2/1/console.9dc6fa8c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A17%25253A15Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWozzh%25252BXqYVtPwuSxIHvP2cUWuJU%25252Fsq6RsP3bsJSlloI%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6f8d93793e014f42be/JIT.2/1/coredump.7144.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A17%25253A15Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWozzh%25252BXqYVtPwuSxIHvP2cUWuJU%25252Fsq6RsP3bsJSlloI%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-6f8d93793e014f42be/JIT.2/e29521d4-7086-4b85-a7cb-9a6b3c3a5a58.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-26T06%25253A17%25253A15Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWozzh%25252BXqYVtPwuSxIHvP2cUWuJU%25252Fsq6RsP3bsJSlloI%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e19717dd7c994ae7b6/JIT.2/1/console.8d047abc.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A15%25253A42Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DXbjUzC8Wl4DnlnNoiRcKrOYWu%25252BH0BetjcfoaD2WxlNg%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e19717dd7c994ae7b6/JIT.2/1/coredump.12666.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A15%25253A42Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DXbjUzC8Wl4DnlnNoiRcKrOYWu%25252BH0BetjcfoaD2WxlNg%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-e19717dd7c994ae7b6/JIT.2/ea9a7a41-717b-4445-9f16-d045ccb75c70.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A15%25253A42Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DXbjUzC8Wl4DnlnNoiRcKrOYWu%25252BH0BetjcfoaD2WxlNg%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22500b398d5d4ee5a6/JIT.2/1/console.ec4dd3dd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A13%25253A06Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D661CpTBq%25252BR68dWKH%25252FAiPGAOj91RCNZ22%25252Be1eu4sfwpE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22500b398d5d4ee5a6/JIT.2/1/core.23996?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A13%25253A06Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D661CpTBq%25252BR68dWKH%25252FAiPGAOj91RCNZ22%25252Be1eu4sfwpE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-22500b398d5d4ee5a6/JIT.2/cc17584a-51ed-49d5-a1e3-fba9e43a8474.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A13%25253A06Z%2526sr%253Dc%2526sp%253Drl%2526sig%253D661CpTBq%25252BR68dWKH%25252FAiPGAOj91RCNZ22%25252Be1eu4sfwpE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress2 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-512d148e65764f09ad/JIT.2/1/console.25e5ba38.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlNqaKcr2OeovbIp0YqtqQaW9C8W9wLP3q3v2khRq7Tc%25253D)|||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-512d148e65764f09ad/JIT.2/fdc46e15-f106-4470-9d4d-2e9718c693bd.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A03Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DlNqaKcr2OeovbIp0YqtqQaW9C8W9wLP3q3v2khRq7Tc%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-40f273c1dccc4e9a89/JIT.2/1/console.86d44213.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A05Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DENTEA2tLKhk5xIAzTQqVKalISuTp9NTAnAfeOSdWH%25252FE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-40f273c1dccc4e9a89/JIT.2/1/coredump.1359.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A05Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DENTEA2tLKhk5xIAzTQqVKalISuTp9NTAnAfeOSdWH%25252FE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-40f273c1dccc4e9a89/JIT.2/06ed0485-5042-4331-9e41-b410618d12f3.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T06%25253A07%25253A05Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DENTEA2tLKhk5xIAzTQqVKalISuTp9NTAnAfeOSdWH%25252FE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ca1f0a17b19e4efc89/JIT.2/1/console.fbaca9ad.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DM%25252ByndgwWkmDr4um1t632FjRRnxLFcCpcfTY7YYAR2E4%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ca1f0a17b19e4efc89/JIT.2/1/core.1000.17383?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DM%25252ByndgwWkmDr4um1t632FjRRnxLFcCpcfTY7YYAR2E4%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-ca1f0a17b19e4efc89/JIT.2/abc4a4ec-7707-4bc5-87aa-ef4b11ff7244.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DM%25252ByndgwWkmDr4um1t632FjRRnxLFcCpcfTY7YYAR2E4%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress2 @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a716a93519f84b0a94/JIT.2/1/console.fed9c3cb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DC%25252FBEG6aO8vQziNQYiMo%25252FguSyHpX9N%25252FxS2AS6mPLWyec%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a716a93519f84b0a94/JIT.2/1/core.1000.5078?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DC%25252FBEG6aO8vQziNQYiMo%25252FguSyHpX9N%25252FxS2AS6mPLWyec%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-a716a93519f84b0a94/JIT.2/f10ccc64-a708-4b8d-a00a-edfc0275cff8.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DC%25252FBEG6aO8vQziNQYiMo%25252FguSyHpX9N%25252FxS2AS6mPLWyec%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitstress1_tiered @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74c8da1090e544e789/JIT.2/1/console.ede8fdd6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DnG0zcJUEiQ0WjjTS0t9Ubpoiv8uYsidqA8%25252F2ARchBCc%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74c8da1090e544e789/JIT.2/1/coredump.15398.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DnG0zcJUEiQ0WjjTS0t9Ubpoiv8uYsidqA8%25252F2ARchBCc%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-74c8da1090e544e789/JIT.2/9c50e10c-e957-408c-aacb-5017854b570c.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DnG0zcJUEiQ0WjjTS0t9Ubpoiv8uYsidqA8%25252F2ARchBCc%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7547f700fb614c9ca0/JIT.2/1/console.e242c18a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DunOdFMReQX%25252FZvgl23itJyS7zTHRktg5YZOe4EniWwP0%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7547f700fb614c9ca0/JIT.2/1/core.1001.1306?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DunOdFMReQX%25252FZvgl23itJyS7zTHRktg5YZOe4EniWwP0%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7547f700fb614c9ca0/JIT.2/6b6bb048-4d7a-421d-b86f-586e6da499f0.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DunOdFMReQX%25252FZvgl23itJyS7zTHRktg5YZOe4EniWwP0%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress2 @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-afe4f4b8f67145b0b9/JIT.2/1/console.1d9b2a0a.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DX0a%25252FJLs2HBP6s7ds33tqx%25252FWRB2MGNu00TGMM5mz6ZuE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-afe4f4b8f67145b0b9/JIT.2/1/coredump.1352.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DX0a%25252FJLs2HBP6s7ds33tqx%25252FWRB2MGNu00TGMM5mz6ZuE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-afe4f4b8f67145b0b9/JIT.2/98c3e245-0635-4009-8e6f-9fba36203cc0.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DX0a%25252FJLs2HBP6s7ds33tqx%25252FWRB2MGNu00TGMM5mz6ZuE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitstress1_tiered @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3fa000c9c13d4045a7/JIT.2/1/console.f478610d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKVhF4tzo9qeYGHbjF29Y65aUivrBE9%25252BluHLkI04i%25252Bk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3fa000c9c13d4045a7/JIT.2/1/coredump.1553.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKVhF4tzo9qeYGHbjF29Y65aUivrBE9%25252BluHLkI04i%25252Bk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-3fa000c9c13d4045a7/JIT.2/2a179a01-a1fc-4d6f-a876-1ae87db82f9e.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKVhF4tzo9qeYGHbjF29Y65aUivrBE9%25252BluHLkI04i%25252Bk%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitminopts @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-886a3f6c9c8842a18f/JIT.2/1/console.6e364921.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvM%25252FnSSxMjVQ%25252FKxMt8KBJG2x%25252F2xmaoSEKxvu6XbMrfJE%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-886a3f6c9c8842a18f/JIT.2/1/core.32366?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvM%25252FnSSxMjVQ%25252FKxMt8KBJG2x%25252F2xmaoSEKxvu6XbMrfJE%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-886a3f6c9c8842a18f/JIT.2/8fe76484-1937-4eb9-bf7b-3465a67ca5e6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvM%25252FnSSxMjVQ%25252FKxMt8KBJG2x%25252F2xmaoSEKxvu6XbMrfJE%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1 @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-866ea5887a584b0e8f/JIT.2/1/console.0ba9d79d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsU0yEzFddMPdvbId4iz%25252B5VTeuyuzHT33TjGQNeZJ4mk%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-866ea5887a584b0e8f/JIT.2/1/core.57891?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsU0yEzFddMPdvbId4iz%25252B5VTeuyuzHT33TjGQNeZJ4mk%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-866ea5887a584b0e8f/JIT.2/a324004c-ab68-44ec-922b-c8c9dde68a3b.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DsU0yEzFddMPdvbId4iz%25252B5VTeuyuzHT33TjGQNeZJ4mk%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR OSX x64 Checked jitstress1_tiered @ OSX.1014.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cc75b87431e2429a92/JIT.2/1/console.5a6f26e6.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvoSxmGl%25252F2bEMql9JX7ja0ONOCzAVR9NOGWp8YbdPwtM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cc75b87431e2429a92/JIT.2/1/core.72444?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvoSxmGl%25252F2bEMql9JX7ja0ONOCzAVR9NOGWp8YbdPwtM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-cc75b87431e2429a92/JIT.2/0126cef4-dc9e-41f7-a5b3-4b806815ad2d.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A35%25253A12Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvoSxmGl%25252F2bEMql9JX7ja0ONOCzAVR9NOGWp8YbdPwtM%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux arm64 Checked jitminopts @ (Ubuntu.1804.Arm64.Open)Ubuntu.1804.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-68d8da36f9204c2983/JIT.2/1/console.6ca063eb.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvHGiNr5iDY759Agvsj6zFBXfJlCxms0VYx7s7JbG2qs%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-68d8da36f9204c2983/JIT.2/1/coredump.1255.dmp?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvHGiNr5iDY759Agvsj6zFBXfJlCxms0VYx7s7JbG2qs%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-68d8da36f9204c2983/JIT.2/8873a2a7-cbe6-4c03-bb08-52a3cf43c66f.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A36%25253A40Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DvHGiNr5iDY759Agvsj6zFBXfJlCxms0VYx7s7JbG2qs%25253D)| |[1497500](https://dev.azure.com/dnceng/public/_build/results?buildId=1497500)|[runtime-coreclr jitstress](https://dnceng.visualstudio.com/public/_build?definitionId=658)|Rolling|CoreCLR Linux x64 Checked jitminopts @ Ubuntu.1804.Amd64.Open|[console.log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-445caa67c6f146ad97/JIT.2/1/console.2d980b76.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKjX99ii5%25252BqZ%25252BVBOrdFj5N%25252Fwegeo5HsBDgBjZQ6U6WM%25253D)|[core dump](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-445caa67c6f146ad97/JIT.2/1/core.1000.7396?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKjX99ii5%25252BqZ%25252BVBOrdFj5N%25252Fwegeo5HsBDgBjZQ6U6WM%25253D)||[runclient.py](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-445caa67c6f146ad97/JIT.2/8ffbf4ba-96ca-48e4-8a78-6be54bcc97b5.log?%3F%253Fsv%253D2019-07-07%2526se%253D2021-12-25T05%25253A37%25253A57Z%2526sr%253Dc%2526sp%253Drl%2526sig%253DWKjX99ii5%25252BqZ%25252BVBOrdFj5N%25252Fwegeo5HsBDgBjZQ6U6WM%25253D)| Build Result Summary |Day Hit Count|Week Hit Count|Month Hit Count| |---|---|---| |0|0|6| <!-- runfo report end -->
non_main
jit intrinsics createspan il createspan il sh runfo tracking issue build definition kind run name console core dump test results run client osx checked jitminopts osx open osx checked tiered osx open osx checked osx open linux checked jitminopts ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked jitminopts ubuntu open linux checked ubuntu open linux checked ubuntu open linux checked tiered ubuntu open linux checked tiered ubuntu open linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix osx checked osx open osx checked tiered osx open linux checked jitminopts ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked jitminopts ubuntu open linux checked ubuntu open linux checked tiered ubuntu open linux checked ubuntu open osx checked jitminopts osx open osx checked osx open osx checked tiered osx open linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix osx checked osx open linux checked tiered ubuntu open osx checked tiered osx open osx checked jitminopts osx open osx checked osx open osx checked tiered osx open linux checked jitminopts ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked jitminopts ubuntu open linux checked ubuntu open linux checked ubuntu open linux checked tiered ubuntu open linux checked tiered ubuntu open linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix osx checked osx open osx checked tiered osx open linux checked jitminopts ubuntu open linux checked ubuntu open linux checked ubuntu open linux checked tiered ubuntu open linux checked jitminopts ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked tiered ubuntu open linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked jitminopts ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix osx checked jitminopts osx open osx checked tiered osx open osx checked osx open linux checked jitminopts ubuntu open linux checked ubuntu open linux checked ubuntu open linux checked tiered ubuntu open osx checked osx open linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix osx checked tiered osx open linux checked tiered ubuntu open linux checked tiered ubuntu open osx checked tiered osx open osx checked osx open linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open linux checked ubuntu open linux checked tiered ubuntu open linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked tiered ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix osx checked jitminopts osx open osx checked osx open osx checked tiered osx open linux checked jitminopts ubuntu open ubuntu armarch open mcr microsoft com dotnet buildtools prereqs ubuntu helix linux checked jitminopts ubuntu open build result summary day hit count week hit count month hit count
0
3,103
11,852,129,127
IssuesEvent
2020-03-24 19:20:46
amyjko/faculty
https://api.github.com/repos/amyjko/faculty
opened
CER FAQ: Integrate into site
maintainability
Move off the Gist. The formatting is inconsistent, the translation from GitHub markdown isn't standardized, and I can't easily file issues on the file.
True
CER FAQ: Integrate into site - Move off the Gist. The formatting is inconsistent, the translation from GitHub markdown isn't standardized, and I can't easily file issues on the file.
main
cer faq integrate into site move off the gist the formatting is inconsistent the translation from github markdown isn t standardized and i can t easily file issues on the file
1
57,908
16,136,922,287
IssuesEvent
2021-04-29 13:01:38
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
opened
Tree Selection does not fulfil all accessibility criteria (WCAG)
defect
**Issue Description** Primefaces' Tree Selection component does nut fulfil the WCAG accessibility criterion [4.1.1](https://www.w3.org/WAI/WCAG21/Understanding/parsing.html) as it renders syntactically incorrect HTML code. The problems seems to be that in complex trees which include components like checkboxes the included components are rendered as 'div' elements while the tree itself as well as its tree nodes are rendered as 'span' elements ('div' elements are not allowed as child elements of 'span' elements). **To Reproduce** Steps to reproduce the behavior: 1. Open showcase [Tree Selection](https://www.primefaces.org/showcase/ui/data/tree/selection.xhtml?jfwid=4c890). 2. Use bookmarklet "Check serialized DOM of current page" from https://validator.w3.org/nu/about.html#extras to run Nu Html Checker on the showcase. 3. Drag and drop bookmarklet "Check for WCAG 2.0 parsing compliance" from the same page to your browser's bookmark toolbar and execute it on the website of Nu Html Checker which you opened in Step 2. This bookmarklet will filter the results of Nu Html Checker so that only WCAG relevant results remain. 4. After running both bookmarklets, if the Nu Html Checker still shows error messages, the syntax of the checked HTML code is not correct. **Expected behavior** To fulfil the accessibility criterion Nu Html Checker should show no error messages after checking the tree's HTML code. **Example XHTML** `<p:tree value="#{treeSelectionView.root3}" var="doc" selectionMode="checkbox" selection="#{treeSelectionView.selectedNodes2}"> <p:treeNode expandedIcon="pi pi-folder-open" collapsedIcon="pi pi-folder"> <h:outputText value="#{doc.name}"/> </p:treeNode> </p:tree>`
1.0
Tree Selection does not fulfil all accessibility criteria (WCAG) - **Issue Description** Primefaces' Tree Selection component does nut fulfil the WCAG accessibility criterion [4.1.1](https://www.w3.org/WAI/WCAG21/Understanding/parsing.html) as it renders syntactically incorrect HTML code. The problems seems to be that in complex trees which include components like checkboxes the included components are rendered as 'div' elements while the tree itself as well as its tree nodes are rendered as 'span' elements ('div' elements are not allowed as child elements of 'span' elements). **To Reproduce** Steps to reproduce the behavior: 1. Open showcase [Tree Selection](https://www.primefaces.org/showcase/ui/data/tree/selection.xhtml?jfwid=4c890). 2. Use bookmarklet "Check serialized DOM of current page" from https://validator.w3.org/nu/about.html#extras to run Nu Html Checker on the showcase. 3. Drag and drop bookmarklet "Check for WCAG 2.0 parsing compliance" from the same page to your browser's bookmark toolbar and execute it on the website of Nu Html Checker which you opened in Step 2. This bookmarklet will filter the results of Nu Html Checker so that only WCAG relevant results remain. 4. After running both bookmarklets, if the Nu Html Checker still shows error messages, the syntax of the checked HTML code is not correct. **Expected behavior** To fulfil the accessibility criterion Nu Html Checker should show no error messages after checking the tree's HTML code. **Example XHTML** `<p:tree value="#{treeSelectionView.root3}" var="doc" selectionMode="checkbox" selection="#{treeSelectionView.selectedNodes2}"> <p:treeNode expandedIcon="pi pi-folder-open" collapsedIcon="pi pi-folder"> <h:outputText value="#{doc.name}"/> </p:treeNode> </p:tree>`
non_main
tree selection does not fulfil all accessibility criteria wcag issue description primefaces tree selection component does nut fulfil the wcag accessibility criterion as it renders syntactically incorrect html code the problems seems to be that in complex trees which include components like checkboxes the included components are rendered as div elements while the tree itself as well as its tree nodes are rendered as span elements div elements are not allowed as child elements of span elements to reproduce steps to reproduce the behavior open showcase use bookmarklet check serialized dom of current page from to run nu html checker on the showcase drag and drop bookmarklet check for wcag parsing compliance from the same page to your browser s bookmark toolbar and execute it on the website of nu html checker which you opened in step this bookmarklet will filter the results of nu html checker so that only wcag relevant results remain after running both bookmarklets if the nu html checker still shows error messages the syntax of the checked html code is not correct expected behavior to fulfil the accessibility criterion nu html checker should show no error messages after checking the tree s html code example xhtml p tree value treeselectionview var doc selectionmode checkbox selection treeselectionview
0
673,192
22,952,201,731
IssuesEvent
2022-07-19 08:26:37
JonasMuehlmann/datastructures.go
https://api.github.com/repos/JonasMuehlmann/datastructures.go
opened
Implement `SinglyLinkedlist.ValueIterator`
enhancement effort: low priority: medium refactor
Use template for `ValueIterator` and `ElementIterator`
1.0
Implement `SinglyLinkedlist.ValueIterator` - Use template for `ValueIterator` and `ElementIterator`
non_main
implement singlylinkedlist valueiterator use template for valueiterator and elementiterator
0
867
4,536,112,572
IssuesEvent
2016-09-08 19:23:55
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
get_url + file:/// protocol is broken
bug_report waiting_on_maintainer
<!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME get_url module ##### ANSIBLE VERSION ``` $ ansible --version ansible 2.1.0 (devel de9e70e590) last updated 2016/04/21 10:44:10 (GMT -400) lib/ansible/modules/core: (detached HEAD 2256ae0793) last updated 2016/04/21 10:49:47 (GMT -400) lib/ansible/modules/extras: (detached HEAD 14c323cc8e) last updated 2016/04/21 10:49:47 (GMT -400) config file = configured module search path = Default w/o overrides ``` ##### CONFIGURATION NA ##### OS / ENVIRONMENT ansible from checkout local connection mode centos7 VM ##### SUMMARY get_url doesn't handle the status code of None returned by urllib for the file:// protocol and fails unexpectedly. ##### STEPS TO REPRODUCE ``` - hosts: localhost connection: local gather_facts: False tasks: - copy: dest=/tmp/afile.txt content="foobar" - get_url: url="file:///tmp/afile.txt" dest=/tmp/afilecopy.txt force=yes ``` ##### EXPECTED RESULTS No task failures. ##### ACTUAL RESULTS ``` $ ansible-playbook -v geturltest.yml No config file found; using defaults [WARNING]: Host file not found: /etc/ansible/hosts [WARNING]: provided hosts list is empty, only localhost is available PLAY [localhost] *************************************************************** TASK [copy] ******************************************************************** ok: [localhost] => {"changed": false, "checksum": "8843d7f92416211de9ebb963ff4ce28125932878", "dest": "/tmp/afile.txt", "gid": 20, "group": "staff", "mode": "0644", "owner": "jtanner", "path": "/tmp/afile.txt", "size": 6, "state": "file", "uid": 501} TASK [get_url] ***************************************************************** fatal: [localhost]: FAILED! => {"changed": false, "dest": "/tmp/afilecopy.txt", "failed": true, "msg": "Request failed", "response": "OK (6 bytes)", "state": "absent", "status_code": null, "url": "file:///tmp/afile.txt"} NO MORE HOSTS LEFT ************************************************************* to retry, use: --limit @geturltest.retry PLAY RECAP ********************************************************************* localhost : ok=1 changed=0 unreachable=0 failed=1 ```
True
get_url + file:/// protocol is broken - <!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME get_url module ##### ANSIBLE VERSION ``` $ ansible --version ansible 2.1.0 (devel de9e70e590) last updated 2016/04/21 10:44:10 (GMT -400) lib/ansible/modules/core: (detached HEAD 2256ae0793) last updated 2016/04/21 10:49:47 (GMT -400) lib/ansible/modules/extras: (detached HEAD 14c323cc8e) last updated 2016/04/21 10:49:47 (GMT -400) config file = configured module search path = Default w/o overrides ``` ##### CONFIGURATION NA ##### OS / ENVIRONMENT ansible from checkout local connection mode centos7 VM ##### SUMMARY get_url doesn't handle the status code of None returned by urllib for the file:// protocol and fails unexpectedly. ##### STEPS TO REPRODUCE ``` - hosts: localhost connection: local gather_facts: False tasks: - copy: dest=/tmp/afile.txt content="foobar" - get_url: url="file:///tmp/afile.txt" dest=/tmp/afilecopy.txt force=yes ``` ##### EXPECTED RESULTS No task failures. ##### ACTUAL RESULTS ``` $ ansible-playbook -v geturltest.yml No config file found; using defaults [WARNING]: Host file not found: /etc/ansible/hosts [WARNING]: provided hosts list is empty, only localhost is available PLAY [localhost] *************************************************************** TASK [copy] ******************************************************************** ok: [localhost] => {"changed": false, "checksum": "8843d7f92416211de9ebb963ff4ce28125932878", "dest": "/tmp/afile.txt", "gid": 20, "group": "staff", "mode": "0644", "owner": "jtanner", "path": "/tmp/afile.txt", "size": 6, "state": "file", "uid": 501} TASK [get_url] ***************************************************************** fatal: [localhost]: FAILED! => {"changed": false, "dest": "/tmp/afilecopy.txt", "failed": true, "msg": "Request failed", "response": "OK (6 bytes)", "state": "absent", "status_code": null, "url": "file:///tmp/afile.txt"} NO MORE HOSTS LEFT ************************************************************* to retry, use: --limit @geturltest.retry PLAY RECAP ********************************************************************* localhost : ok=1 changed=0 unreachable=0 failed=1 ```
main
get url file protocol is broken issue type bug report component name get url module ansible version ansible version ansible devel last updated gmt lib ansible modules core detached head last updated gmt lib ansible modules extras detached head last updated gmt config file configured module search path default w o overrides configuration na os environment ansible from checkout local connection mode vm summary get url doesn t handle the status code of none returned by urllib for the file protocol and fails unexpectedly steps to reproduce hosts localhost connection local gather facts false tasks copy dest tmp afile txt content foobar get url url file tmp afile txt dest tmp afilecopy txt force yes expected results no task failures actual results ansible playbook v geturltest yml no config file found using defaults host file not found etc ansible hosts provided hosts list is empty only localhost is available play task ok changed false checksum dest tmp afile txt gid group staff mode owner jtanner path tmp afile txt size state file uid task fatal failed changed false dest tmp afilecopy txt failed true msg request failed response ok bytes state absent status code null url file tmp afile txt no more hosts left to retry use limit geturltest retry play recap localhost ok changed unreachable failed
1
3,007
11,103,867,673
IssuesEvent
2019-12-17 05:41:56
pipxproject/pipx
https://api.github.com/repos/pipxproject/pipx
closed
Amazon AMI Linux returns incorrect value for sysconfig.get_path('purelib') in venvs
help wanted needs review from maintainer
<!-- Thank you for filing a bug! Please feel free to answer as much or as little of this template as you can. --> **Describe the bug** <!-- Please be as detailed as possible! --> Pipx fails to install any package complaining that `pipx_shared.pth` file is not found. I looked throughout issues and couldn't find anything similar. **How to reproduce** <!-- If possible, include output of `pipx --verbose ...` --> 1. Create a Cloud9 environment (web IDE) 2. Install pipx: `python3 -m pip install pipx --user` 3. Install any package **OS, Python, Pipx version**: ```shell Admin:~/environment $ python3 --version Python 3.6.8 Admin:~/environment $ pipx --version 0.14.0.0 Admin:~/environment $ cat /etc/os-release NAME="Amazon Linux AMI" VERSION="2018.03" ID="amzn" ID_LIKE="rhel fedora" VERSION_ID="2018.03" PRETTY_NAME="Amazon Linux AMI 2018.03" ANSI_COLOR="0;33" CPE_NAME="cpe:/o:amazon:linux:2018.03:ga" HOME_URL="http://aws.amazon.com/amazon-linux-ami/" ``` **Trace with `pipx --verbose`**: ```python pipx install cfn-lint --verbose pipx > (run_pipx_command:134): Virtual Environment location is /home/ec2-user/.local/pipx/venvs/cfn-lint pipx > (run:97): running /usr/bin/python3 -m venv --without-pip /home/ec2-user/.local/pipx/venvs/cfn-lint pipx > (rmdir:16): removing directory /home/ec2-user/.local/pipx/venvs/cfn-lint Traceback (most recent call last): File "/home/ec2-user/.local/bin/pipx", line 10, in <module> sys.exit(cli()) File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/main.py", line 547, in cli exit(run_pipx_command(parsed_pipx_args)) File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/main.py", line 166, in run_pipx_command include_dependencies=args.include_deps, File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/commands.py", line 315, in install venv.create_venv(venv_args, pip_args) File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/Venv.py", line 128, in create_venv pipx_pth.write_text(str(shared_libs.site_packages) + "\n", encoding="utf-8") File "/usr/lib64/python3.6/pathlib.py", line 1215, in write_text with self.open(mode='w', encoding=encoding, errors=errors) as f: File "/usr/lib64/python3.6/pathlib.py", line 1183, in open opener=self._opener) File "/usr/lib64/python3.6/pathlib.py", line 1037, in _opener return self._accessor.open(self, flags, mode) File "/usr/lib64/python3.6/pathlib.py", line 387, in wrapped return strfunc(str(pathobj), *args) FileNotFoundError: [Errno 2] No such file or directory: '/home/ec2-user/.local/pipx/venvs/cfn-lint/local/lib/python3.6/site-packages/pipx_shared.pth' ``` **Expected behavior** <!-- What should have happened? --> Install a package
True
Amazon AMI Linux returns incorrect value for sysconfig.get_path('purelib') in venvs - <!-- Thank you for filing a bug! Please feel free to answer as much or as little of this template as you can. --> **Describe the bug** <!-- Please be as detailed as possible! --> Pipx fails to install any package complaining that `pipx_shared.pth` file is not found. I looked throughout issues and couldn't find anything similar. **How to reproduce** <!-- If possible, include output of `pipx --verbose ...` --> 1. Create a Cloud9 environment (web IDE) 2. Install pipx: `python3 -m pip install pipx --user` 3. Install any package **OS, Python, Pipx version**: ```shell Admin:~/environment $ python3 --version Python 3.6.8 Admin:~/environment $ pipx --version 0.14.0.0 Admin:~/environment $ cat /etc/os-release NAME="Amazon Linux AMI" VERSION="2018.03" ID="amzn" ID_LIKE="rhel fedora" VERSION_ID="2018.03" PRETTY_NAME="Amazon Linux AMI 2018.03" ANSI_COLOR="0;33" CPE_NAME="cpe:/o:amazon:linux:2018.03:ga" HOME_URL="http://aws.amazon.com/amazon-linux-ami/" ``` **Trace with `pipx --verbose`**: ```python pipx install cfn-lint --verbose pipx > (run_pipx_command:134): Virtual Environment location is /home/ec2-user/.local/pipx/venvs/cfn-lint pipx > (run:97): running /usr/bin/python3 -m venv --without-pip /home/ec2-user/.local/pipx/venvs/cfn-lint pipx > (rmdir:16): removing directory /home/ec2-user/.local/pipx/venvs/cfn-lint Traceback (most recent call last): File "/home/ec2-user/.local/bin/pipx", line 10, in <module> sys.exit(cli()) File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/main.py", line 547, in cli exit(run_pipx_command(parsed_pipx_args)) File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/main.py", line 166, in run_pipx_command include_dependencies=args.include_deps, File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/commands.py", line 315, in install venv.create_venv(venv_args, pip_args) File "/home/ec2-user/.local/lib/python3.6/site-packages/pipx/Venv.py", line 128, in create_venv pipx_pth.write_text(str(shared_libs.site_packages) + "\n", encoding="utf-8") File "/usr/lib64/python3.6/pathlib.py", line 1215, in write_text with self.open(mode='w', encoding=encoding, errors=errors) as f: File "/usr/lib64/python3.6/pathlib.py", line 1183, in open opener=self._opener) File "/usr/lib64/python3.6/pathlib.py", line 1037, in _opener return self._accessor.open(self, flags, mode) File "/usr/lib64/python3.6/pathlib.py", line 387, in wrapped return strfunc(str(pathobj), *args) FileNotFoundError: [Errno 2] No such file or directory: '/home/ec2-user/.local/pipx/venvs/cfn-lint/local/lib/python3.6/site-packages/pipx_shared.pth' ``` **Expected behavior** <!-- What should have happened? --> Install a package
main
amazon ami linux returns incorrect value for sysconfig get path purelib in venvs describe the bug pipx fails to install any package complaining that pipx shared pth file is not found i looked throughout issues and couldn t find anything similar how to reproduce create a environment web ide install pipx m pip install pipx user install any package os python pipx version shell admin environment version python admin environment pipx version admin environment cat etc os release name amazon linux ami version id amzn id like rhel fedora version id pretty name amazon linux ami ansi color cpe name cpe o amazon linux ga home url trace with pipx verbose python pipx install cfn lint verbose pipx run pipx command virtual environment location is home user local pipx venvs cfn lint pipx run running usr bin m venv without pip home user local pipx venvs cfn lint pipx rmdir removing directory home user local pipx venvs cfn lint traceback most recent call last file home user local bin pipx line in sys exit cli file home user local lib site packages pipx main py line in cli exit run pipx command parsed pipx args file home user local lib site packages pipx main py line in run pipx command include dependencies args include deps file home user local lib site packages pipx commands py line in install venv create venv venv args pip args file home user local lib site packages pipx venv py line in create venv pipx pth write text str shared libs site packages n encoding utf file usr pathlib py line in write text with self open mode w encoding encoding errors errors as f file usr pathlib py line in open opener self opener file usr pathlib py line in opener return self accessor open self flags mode file usr pathlib py line in wrapped return strfunc str pathobj args filenotfounderror no such file or directory home user local pipx venvs cfn lint local lib site packages pipx shared pth expected behavior install a package
1
103,381
8,903,214,701
IssuesEvent
2019-01-17 09:54:14
EyeSeeTea/malariapp
https://api.github.com/repos/EyeSeeTea/malariapp
closed
Change 'URL not yet available'
HNQIS complexity - low (1hr) priority - critical testing type - maintenance
The new message should be: 'The feedback URL is not available because the survey hasn't been sent to the server yet. Try sharing the feedback again later.'
1.0
Change 'URL not yet available' - The new message should be: 'The feedback URL is not available because the survey hasn't been sent to the server yet. Try sharing the feedback again later.'
non_main
change url not yet available the new message should be the feedback url is not available because the survey hasn t been sent to the server yet try sharing the feedback again later
0
4,041
4,781,804,989
IssuesEvent
2016-10-28 10:45:18
matthiasbeyer/imag
https://api.github.com/repos/matthiasbeyer/imag
closed
Rewrite libimagentrylink interface
complexity/high kind/enhancement kind/feature kind/infrastructure kind/nicetohave kind/refactor part/lib/imagentrylink release/hard-required
Some things that come up: * The `get_internal_links()` (and other) function(s) should return iterators * There should be iterators that do special stuff, for example * An iterator that `Store::delete()`s `FileLockEntry`s that do not contain any link to other FLEs anymore * An iterator that filters for items that are linked to a certain set of entries * ... possibly more That would help greatly in #733 ! I will mark that as hard required feature for the next (0.3.0) release therefor. --- This issue should be solved in ~~two~~ multiple steps: - [x] Refactor the interface of `libimagentrylink` to return Iterator objects rather than `Vec`s - [x] Add more iterator types to do special things, like GC and so on. - [x] Refactor the interface of `libimagentrylink` to take iterators where possible
1.0
Rewrite libimagentrylink interface - Some things that come up: * The `get_internal_links()` (and other) function(s) should return iterators * There should be iterators that do special stuff, for example * An iterator that `Store::delete()`s `FileLockEntry`s that do not contain any link to other FLEs anymore * An iterator that filters for items that are linked to a certain set of entries * ... possibly more That would help greatly in #733 ! I will mark that as hard required feature for the next (0.3.0) release therefor. --- This issue should be solved in ~~two~~ multiple steps: - [x] Refactor the interface of `libimagentrylink` to return Iterator objects rather than `Vec`s - [x] Add more iterator types to do special things, like GC and so on. - [x] Refactor the interface of `libimagentrylink` to take iterators where possible
non_main
rewrite libimagentrylink interface some things that come up the get internal links and other function s should return iterators there should be iterators that do special stuff for example an iterator that store delete s filelockentry s that do not contain any link to other fles anymore an iterator that filters for items that are linked to a certain set of entries possibly more that would help greatly in i will mark that as hard required feature for the next release therefor this issue should be solved in two multiple steps refactor the interface of libimagentrylink to return iterator objects rather than vec s add more iterator types to do special things like gc and so on refactor the interface of libimagentrylink to take iterators where possible
0
3,459
13,233,403,298
IssuesEvent
2020-08-18 14:45:15
ansible/ansible
https://api.github.com/repos/ansible/ansible
closed
openvswitch_bridge external_ids TypeError: argument of type 'NoneType' is not iterable
affects_2.6 bot_closed bug collection collection:openvswitch.openvswitch files has_pr module needs_maintainer networking notification support:community support:core support:network system traceback
<!--- Verify first that your issue is not already reported on GitHub --> <!--- Also test if the latest release and devel branch are affected too --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### SUMMARY When external_ids is mentioned openvswitch_bridge module throws error. Without giving args it works fine. ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME ``` --- - name: Node Join Checkpoint Start hosts: all gather_facts: false tasks: - name: NSX | Create OVS bridge openvswitch_bridge: bridge: br-int state: present fail_mode: standalone args: external_ids: bridge-id: "br-int" ``` ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ``` [root@sc-rdops-vm14-dhcp-178-105 myplay]# ansible --version ansible 2.6.12 config file = /etc/ansible/ansible.cfg configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.5 (default, May 3 2017, 07:55:04) [GCC 4.8.5 20150623 (Red Hat 4.8.5-14)] ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ``` # ansible-config dump --only-changed DEFAULT_ROLES_PATH(/etc/ansible/ansible.cfg) = [u'/etc/ansible/roles', u'/usr/share/ansible/roles'] ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> ##### STEPS TO REPRODUCE <!--- Describe exactly how to reproduce the problem, using a minimal test-case --> Run below playbook <!--- Paste example playbooks or commands between quotes below --> ``` --- - name: Node Join Checkpoint Start hosts: all gather_facts: false tasks: - name: NSX | Create OVS bridge openvswitch_bridge: bridge: br-int state: present fail_mode: standalone args: external_ids: bridge-id: "br-int" ``` <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> <!--- Paste verbatim command output between quotes --> ``` # ansible-playbook -i hosts myplay/test.yml PLAY [Node Join Checkpoint Start] ******************************************************************************************************************************************************** TASK [NSX | Create OVS bridge] *********************************************************************************************************************************************************** fatal: [sc-rdops-vm14-dhcp-174-212.eng.vmware.com]: FAILED! => {"changed": false, "module_stderr": "Shared connection to sc-rdops-vm14-dhcp-174-212.eng.vmware.com closed.\r\n", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_UnIT54/ansible_module_openvswitch_bridge.py\", line 267, in <module>\r\n main()\r\n File \"/tmp/ansible_UnIT54/ansible_module_openvswitch_bridge.py\", line 254, in main\r\n commands = map_obj_to_commands(want, have, module)\r\n File \"/tmp/ansible_UnIT54/ansible_module_openvswitch_bridge.py\", line 139, in map_obj_to_commands\r\n if (k not in have['external_ids']\r\nTypeError: argument of type 'NoneType' is not iterable\r\n", "msg": "MODULE FAILURE", "rc": 1} fatal: [sc-rdops-vm14-dhcp-189-249.eng.vmware.com]: FAILED! => {"changed": false, "module_stderr": "Shared connection to sc-rdops-vm14-dhcp-189-249.eng.vmware.com closed.\r\n", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_UC6B61/ansible_module_openvswitch_bridge.py\", line 267, in <module>\r\n main()\r\n File \"/tmp/ansible_UC6B61/ansible_module_openvswitch_bridge.py\", line 254, in main\r\n commands = map_obj_to_commands(want, have, module)\r\n File \"/tmp/ansible_UC6B61/ansible_module_openvswitch_bridge.py\", line 139, in map_obj_to_commands\r\n if (k not in have['external_ids']\r\nTypeError: argument of type 'NoneType' is not iterable\r\n", "msg": "MODULE FAILURE", "rc": 1} fatal: [sc-rdops-vm14-dhcp-178-105.eng.vmware.com]: FAILED! => {"changed": false, "module_stderr": "Shared connection to sc-rdops-vm14-dhcp-178-105.eng.vmware.com closed.\r\n", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_mSapdO/ansible_module_openvswitch_bridge.py\", line 267, in <module>\r\n main()\r\n File \"/tmp/ansible_mSapdO/ansible_module_openvswitch_bridge.py\", line 254, in main\r\n commands = map_obj_to_commands(want, have, module)\r\n File \"/tmp/ansible_mSapdO/ansible_module_openvswitch_bridge.py\", line 139, in map_obj_to_commands\r\n if (k not in have['external_ids']\r\nTypeError: argument of type 'NoneType' is not iterable\r\n", "msg": "MODULE FAILURE", "rc": 1} to retry, use: --limit @/root/myplay/test.retry PLAY RECAP ******************************************************************************************************************************************************************************* sc-rdops-vm14-dhcp-174-212.eng.vmware.com : ok=0 changed=0 unreachable=0 failed=1 sc-rdops-vm14-dhcp-178-105.eng.vmware.com : ok=0 changed=0 unreachable=0 failed=1 sc-rdops-vm14-dhcp-189-249.eng.vmware.com : ok=0 changed=0 unreachable=0 failed=1 ```
True
openvswitch_bridge external_ids TypeError: argument of type 'NoneType' is not iterable - <!--- Verify first that your issue is not already reported on GitHub --> <!--- Also test if the latest release and devel branch are affected too --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### SUMMARY When external_ids is mentioned openvswitch_bridge module throws error. Without giving args it works fine. ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME ``` --- - name: Node Join Checkpoint Start hosts: all gather_facts: false tasks: - name: NSX | Create OVS bridge openvswitch_bridge: bridge: br-int state: present fail_mode: standalone args: external_ids: bridge-id: "br-int" ``` ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ``` [root@sc-rdops-vm14-dhcp-178-105 myplay]# ansible --version ansible 2.6.12 config file = /etc/ansible/ansible.cfg configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.5 (default, May 3 2017, 07:55:04) [GCC 4.8.5 20150623 (Red Hat 4.8.5-14)] ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ``` # ansible-config dump --only-changed DEFAULT_ROLES_PATH(/etc/ansible/ansible.cfg) = [u'/etc/ansible/roles', u'/usr/share/ansible/roles'] ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> ##### STEPS TO REPRODUCE <!--- Describe exactly how to reproduce the problem, using a minimal test-case --> Run below playbook <!--- Paste example playbooks or commands between quotes below --> ``` --- - name: Node Join Checkpoint Start hosts: all gather_facts: false tasks: - name: NSX | Create OVS bridge openvswitch_bridge: bridge: br-int state: present fail_mode: standalone args: external_ids: bridge-id: "br-int" ``` <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> <!--- Paste verbatim command output between quotes --> ``` # ansible-playbook -i hosts myplay/test.yml PLAY [Node Join Checkpoint Start] ******************************************************************************************************************************************************** TASK [NSX | Create OVS bridge] *********************************************************************************************************************************************************** fatal: [sc-rdops-vm14-dhcp-174-212.eng.vmware.com]: FAILED! => {"changed": false, "module_stderr": "Shared connection to sc-rdops-vm14-dhcp-174-212.eng.vmware.com closed.\r\n", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_UnIT54/ansible_module_openvswitch_bridge.py\", line 267, in <module>\r\n main()\r\n File \"/tmp/ansible_UnIT54/ansible_module_openvswitch_bridge.py\", line 254, in main\r\n commands = map_obj_to_commands(want, have, module)\r\n File \"/tmp/ansible_UnIT54/ansible_module_openvswitch_bridge.py\", line 139, in map_obj_to_commands\r\n if (k not in have['external_ids']\r\nTypeError: argument of type 'NoneType' is not iterable\r\n", "msg": "MODULE FAILURE", "rc": 1} fatal: [sc-rdops-vm14-dhcp-189-249.eng.vmware.com]: FAILED! => {"changed": false, "module_stderr": "Shared connection to sc-rdops-vm14-dhcp-189-249.eng.vmware.com closed.\r\n", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_UC6B61/ansible_module_openvswitch_bridge.py\", line 267, in <module>\r\n main()\r\n File \"/tmp/ansible_UC6B61/ansible_module_openvswitch_bridge.py\", line 254, in main\r\n commands = map_obj_to_commands(want, have, module)\r\n File \"/tmp/ansible_UC6B61/ansible_module_openvswitch_bridge.py\", line 139, in map_obj_to_commands\r\n if (k not in have['external_ids']\r\nTypeError: argument of type 'NoneType' is not iterable\r\n", "msg": "MODULE FAILURE", "rc": 1} fatal: [sc-rdops-vm14-dhcp-178-105.eng.vmware.com]: FAILED! => {"changed": false, "module_stderr": "Shared connection to sc-rdops-vm14-dhcp-178-105.eng.vmware.com closed.\r\n", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_mSapdO/ansible_module_openvswitch_bridge.py\", line 267, in <module>\r\n main()\r\n File \"/tmp/ansible_mSapdO/ansible_module_openvswitch_bridge.py\", line 254, in main\r\n commands = map_obj_to_commands(want, have, module)\r\n File \"/tmp/ansible_mSapdO/ansible_module_openvswitch_bridge.py\", line 139, in map_obj_to_commands\r\n if (k not in have['external_ids']\r\nTypeError: argument of type 'NoneType' is not iterable\r\n", "msg": "MODULE FAILURE", "rc": 1} to retry, use: --limit @/root/myplay/test.retry PLAY RECAP ******************************************************************************************************************************************************************************* sc-rdops-vm14-dhcp-174-212.eng.vmware.com : ok=0 changed=0 unreachable=0 failed=1 sc-rdops-vm14-dhcp-178-105.eng.vmware.com : ok=0 changed=0 unreachable=0 failed=1 sc-rdops-vm14-dhcp-189-249.eng.vmware.com : ok=0 changed=0 unreachable=0 failed=1 ```
main
openvswitch bridge external ids typeerror argument of type nonetype is not iterable summary when external ids is mentioned openvswitch bridge module throws error without giving args it works fine issue type bug report component name name node join checkpoint start hosts all gather facts false tasks name nsx create ovs bridge openvswitch bridge bridge br int state present fail mode standalone args external ids bridge id br int ansible version ansible version ansible config file etc ansible ansible cfg configured module search path ansible python module location usr lib site packages ansible executable location usr bin ansible python version default may configuration ansible config dump only changed default roles path etc ansible ansible cfg os environment steps to reproduce run below playbook name node join checkpoint start hosts all gather facts false tasks name nsx create ovs bridge openvswitch bridge bridge br int state present fail mode standalone args external ids bridge id br int expected results actual results ansible playbook i hosts myplay test yml play task fatal failed changed false module stderr shared connection to sc rdops dhcp eng vmware com closed r n module stdout traceback most recent call last r n file tmp ansible ansible module openvswitch bridge py line in r n main r n file tmp ansible ansible module openvswitch bridge py line in main r n commands map obj to commands want have module r n file tmp ansible ansible module openvswitch bridge py line in map obj to commands r n if k not in have r ntypeerror argument of type nonetype is not iterable r n msg module failure rc fatal failed changed false module stderr shared connection to sc rdops dhcp eng vmware com closed r n module stdout traceback most recent call last r n file tmp ansible ansible module openvswitch bridge py line in r n main r n file tmp ansible ansible module openvswitch bridge py line in main r n commands map obj to commands want have module r n file tmp ansible ansible module openvswitch bridge py line in map obj to commands r n if k not in have r ntypeerror argument of type nonetype is not iterable r n msg module failure rc fatal failed changed false module stderr shared connection to sc rdops dhcp eng vmware com closed r n module stdout traceback most recent call last r n file tmp ansible msapdo ansible module openvswitch bridge py line in r n main r n file tmp ansible msapdo ansible module openvswitch bridge py line in main r n commands map obj to commands want have module r n file tmp ansible msapdo ansible module openvswitch bridge py line in map obj to commands r n if k not in have r ntypeerror argument of type nonetype is not iterable r n msg module failure rc to retry use limit root myplay test retry play recap sc rdops dhcp eng vmware com ok changed unreachable failed sc rdops dhcp eng vmware com ok changed unreachable failed sc rdops dhcp eng vmware com ok changed unreachable failed
1
13
2,515,169,163
IssuesEvent
2015-01-15 16:51:38
simplesamlphp/simplesamlphp
https://api.github.com/repos/simplesamlphp/simplesamlphp
closed
Extract the aggregator and aggregator2 modules out of the repository
enhancement maintainability metadata started
Both should get their own repository and allow installation through composer.
True
Extract the aggregator and aggregator2 modules out of the repository - Both should get their own repository and allow installation through composer.
main
extract the aggregator and modules out of the repository both should get their own repository and allow installation through composer
1
4,943
25,411,884,460
IssuesEvent
2022-11-22 19:45:47
aws/serverless-application-model
https://api.github.com/repos/aws/serverless-application-model
closed
Make EventBridgeRule support retry policy and DLQ config
area/event-source type/feature stage/pm-review maintainer/need-response type/new-property area/event-bridge
EventBridge now supports retry policies and DLQ config. In addition to [InputTransforms](https://github.com/aws/serverless-application-model/issues/1535) it'd be good to get support for these. The current state of `EventBrideRule` is very counterproductive to developers as one often starts off quick and easy using the SAM transform and later realise they need to transform the input or add resilience
True
Make EventBridgeRule support retry policy and DLQ config - EventBridge now supports retry policies and DLQ config. In addition to [InputTransforms](https://github.com/aws/serverless-application-model/issues/1535) it'd be good to get support for these. The current state of `EventBrideRule` is very counterproductive to developers as one often starts off quick and easy using the SAM transform and later realise they need to transform the input or add resilience
main
make eventbridgerule support retry policy and dlq config eventbridge now supports retry policies and dlq config in addition to it d be good to get support for these the current state of eventbriderule is very counterproductive to developers as one often starts off quick and easy using the sam transform and later realise they need to transform the input or add resilience
1
419,205
28,139,732,961
IssuesEvent
2023-04-01 20:11:10
zio/zio
https://api.github.com/repos/zio/zio
opened
Separate Tutorial and Guides Docs To (a) Separate Repository/ies
documentation
It is challenging and requires a **significant amount of time** to keep tutorials and guides up-to-date within the ZIO repository. I have come up with two solutions/options: 1. It would be more efficient to transfer them to a distinct repository. For example, we can have a repo named "ZIO Quickstarts" and include both code and docs in one place for all tutorials and quickstarts. 2. It also would be better to move tutorials and guides to their related repos, for example, the "[Tutorial: How to Make a ZIO Application Configurable?](https://zio.dev/guides/tutorials/configurable-zio-application/)" should be moved to "ZIO Config" project. So by any change to the library itself, we can encourage library authors to update the docs, including guides and tutorials.
1.0
Separate Tutorial and Guides Docs To (a) Separate Repository/ies - It is challenging and requires a **significant amount of time** to keep tutorials and guides up-to-date within the ZIO repository. I have come up with two solutions/options: 1. It would be more efficient to transfer them to a distinct repository. For example, we can have a repo named "ZIO Quickstarts" and include both code and docs in one place for all tutorials and quickstarts. 2. It also would be better to move tutorials and guides to their related repos, for example, the "[Tutorial: How to Make a ZIO Application Configurable?](https://zio.dev/guides/tutorials/configurable-zio-application/)" should be moved to "ZIO Config" project. So by any change to the library itself, we can encourage library authors to update the docs, including guides and tutorials.
non_main
separate tutorial and guides docs to a separate repository ies it is challenging and requires a significant amount of time to keep tutorials and guides up to date within the zio repository i have come up with two solutions options it would be more efficient to transfer them to a distinct repository for example we can have a repo named zio quickstarts and include both code and docs in one place for all tutorials and quickstarts it also would be better to move tutorials and guides to their related repos for example the should be moved to zio config project so by any change to the library itself we can encourage library authors to update the docs including guides and tutorials
0
16,389
9,382,999,183
IssuesEvent
2019-04-05 01:00:45
h2oai/datatable
https://api.github.com/repos/h2oai/datatable
opened
Tune aggregator performance on smaller datasets
performance
After switching from OpenMP to thread_pool #1767 , performance was improved for larger datasets, like airlines.csv, however slightly degraded on smaller datasets, like bnp.csv. Need to tune it, so that thread_pool performance is always better.
True
Tune aggregator performance on smaller datasets - After switching from OpenMP to thread_pool #1767 , performance was improved for larger datasets, like airlines.csv, however slightly degraded on smaller datasets, like bnp.csv. Need to tune it, so that thread_pool performance is always better.
non_main
tune aggregator performance on smaller datasets after switching from openmp to thread pool performance was improved for larger datasets like airlines csv however slightly degraded on smaller datasets like bnp csv need to tune it so that thread pool performance is always better
0
5,878
31,994,005,688
IssuesEvent
2023-09-21 08:03:40
onebeyond/maintainers
https://api.github.com/repos/onebeyond/maintainers
closed
OpenSSF Scorecard Report Updated!
maintainers-agenda
Hello! There are changes in your OpenSSF Scorecard report. Please review the following changes and take action if necessary. ## Summary There are changes in the following repositories: | Repository | Commit | Score | Score Delta | Report | StepSecurity | | -- | -- | -- | -- | -- | -- | | [guidesmiths/kube-deploy](https://github.com/guidesmiths/kube-deploy) | [9f1708b](https://github.com/guidesmiths/kube-deploy/commit/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd) | 3 | 0.1 / [Details](https://kooltheba.github.io/openssf-scorecard-api-visualizer/#/projects/github.com/guidesmiths/kube-deploy/compare/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd) | [View](https://kooltheba.github.io/openssf-scorecard-api-visualizer/#/projects/github.com/guidesmiths/kube-deploy/commit/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd) | [Fix it](https://app.stepsecurity.io/securerepo?repo=guidesmiths/kube-deploy) | _Report generated by [UlisesGascon/openssf-scorecard-monitor](https://github.com/UlisesGascon/openssf-scorecard-monitor)._
True
OpenSSF Scorecard Report Updated! - Hello! There are changes in your OpenSSF Scorecard report. Please review the following changes and take action if necessary. ## Summary There are changes in the following repositories: | Repository | Commit | Score | Score Delta | Report | StepSecurity | | -- | -- | -- | -- | -- | -- | | [guidesmiths/kube-deploy](https://github.com/guidesmiths/kube-deploy) | [9f1708b](https://github.com/guidesmiths/kube-deploy/commit/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd) | 3 | 0.1 / [Details](https://kooltheba.github.io/openssf-scorecard-api-visualizer/#/projects/github.com/guidesmiths/kube-deploy/compare/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd) | [View](https://kooltheba.github.io/openssf-scorecard-api-visualizer/#/projects/github.com/guidesmiths/kube-deploy/commit/9f1708b3f3c1b0ba99a41b148dc6c051dbf08cdd) | [Fix it](https://app.stepsecurity.io/securerepo?repo=guidesmiths/kube-deploy) | _Report generated by [UlisesGascon/openssf-scorecard-monitor](https://github.com/UlisesGascon/openssf-scorecard-monitor)._
main
openssf scorecard report updated hello there are changes in your openssf scorecard report please review the following changes and take action if necessary summary there are changes in the following repositories repository commit score score delta report stepsecurity report generated by
1
16,291
5,233,384,362
IssuesEvent
2017-01-30 12:44:22
SemsProject/CombineArchive
https://api.github.com/repos/SemsProject/CombineArchive
closed
respecify entry when adding a description?
code fixed major migrated task
## Trac Ticket #11 **component:** code **owner:** martin **reporter:** martin **created:** 2014-06-06 12:13:47 **milestone:** **type:** task **version:** **keywords:** an other thing but more superficial, for adding a metadata description, we are supposed to do like this: {{{ #!java entry.addDescription(new DefaultMetaDataObject(entry, "i1",jdomElement)); }}} Maybe it's justified but is there any need to re-specify the current entry in the metadata object constructor again ? ## comment 1 **time:** 2014-06-17 14:05:48 **author:** Martin Scharm <martin@binfalse.de> In [None](/df2fe47123318eae4f35738f033cbb55021c0ef0): ```CommitTicketReference repository="" revision="df2fe47123318eae4f35738f033cbb55021c0ef0" entry not necessary for meta data anymore [fixes #11] * you do not need to provide an ArchiveEntry to create meta data: {{{ #!java entry.addDescription(new DefaultMetaDataObject(entry, "i1",jdomElement)); // becomes entry.addDescription("i1", new DefaultMetaDataObject(jdomElement)); ``` }}} ## comment 2 **time:** 2014-06-17 14:05:48 **author:** Martin Scharm <martin@binfalse.de> Updated **resolution** to **fixed** ## comment 3 **time:** 2014-06-17 14:05:48 **author:** Martin Scharm <martin@binfalse.de> Updated **status** to **closed**
1.0
respecify entry when adding a description? - ## Trac Ticket #11 **component:** code **owner:** martin **reporter:** martin **created:** 2014-06-06 12:13:47 **milestone:** **type:** task **version:** **keywords:** an other thing but more superficial, for adding a metadata description, we are supposed to do like this: {{{ #!java entry.addDescription(new DefaultMetaDataObject(entry, "i1",jdomElement)); }}} Maybe it's justified but is there any need to re-specify the current entry in the metadata object constructor again ? ## comment 1 **time:** 2014-06-17 14:05:48 **author:** Martin Scharm <martin@binfalse.de> In [None](/df2fe47123318eae4f35738f033cbb55021c0ef0): ```CommitTicketReference repository="" revision="df2fe47123318eae4f35738f033cbb55021c0ef0" entry not necessary for meta data anymore [fixes #11] * you do not need to provide an ArchiveEntry to create meta data: {{{ #!java entry.addDescription(new DefaultMetaDataObject(entry, "i1",jdomElement)); // becomes entry.addDescription("i1", new DefaultMetaDataObject(jdomElement)); ``` }}} ## comment 2 **time:** 2014-06-17 14:05:48 **author:** Martin Scharm <martin@binfalse.de> Updated **resolution** to **fixed** ## comment 3 **time:** 2014-06-17 14:05:48 **author:** Martin Scharm <martin@binfalse.de> Updated **status** to **closed**
non_main
respecify entry when adding a description trac ticket component code owner martin reporter martin created milestone type task version keywords an other thing but more superficial for adding a metadata description we are supposed to do like this java entry adddescription new defaultmetadataobject entry jdomelement maybe it s justified but is there any need to re specify the current entry in the metadata object constructor again comment time author martin scharm in committicketreference repository revision entry not necessary for meta data anymore you do not need to provide an archiveentry to create meta data java entry adddescription new defaultmetadataobject entry jdomelement becomes entry adddescription new defaultmetadataobject jdomelement comment time author martin scharm updated resolution to fixed comment time author martin scharm updated status to closed
0
105,903
23,132,617,471
IssuesEvent
2022-07-28 11:48:55
sourcegraph/sourcegraph
https://api.github.com/repos/sourcegraph/sourcegraph
closed
Packages: implement recommendations from RFC 698
team/code-intelligence team/language-tools rfc-698
- [ ] #37745 - [ ] #37763 - [ ] #37764 - [ ] #37765 - [ ] #37766 - [ ] #36665 - [ ] #37046 - [ ] #36666 - [ ] #37768 - [ ] #37769 - [ ] #37770
1.0
Packages: implement recommendations from RFC 698 - - [ ] #37745 - [ ] #37763 - [ ] #37764 - [ ] #37765 - [ ] #37766 - [ ] #36665 - [ ] #37046 - [ ] #36666 - [ ] #37768 - [ ] #37769 - [ ] #37770
non_main
packages implement recommendations from rfc
0
3,296
12,683,283,457
IssuesEvent
2020-06-19 19:22:21
OpenRefine/OpenRefine
https://api.github.com/repos/OpenRefine/OpenRefine
closed
Coveralls integration seems broken
maintainability
https://coveralls.io/github/OpenRefine/OpenRefine has not been updated for months, coveralls info is not available on PRs: this needs to be fixed.
True
Coveralls integration seems broken - https://coveralls.io/github/OpenRefine/OpenRefine has not been updated for months, coveralls info is not available on PRs: this needs to be fixed.
main
coveralls integration seems broken has not been updated for months coveralls info is not available on prs this needs to be fixed
1
2,428
8,620,884,910
IssuesEvent
2018-11-20 16:02:43
simplesamlphp/simplesamlphp
https://api.github.com/repos/simplesamlphp/simplesamlphp
closed
Pre-migrate templates: functions
enhancement maintainability started
Move things like all external function/method calls out of the template and into the calling page. Ditto for functions/classes defined directly in the template. If any of the previous is used to generate a variable to be printed, put it on the context (`$this->data`) instead.
True
Pre-migrate templates: functions - Move things like all external function/method calls out of the template and into the calling page. Ditto for functions/classes defined directly in the template. If any of the previous is used to generate a variable to be printed, put it on the context (`$this->data`) instead.
main
pre migrate templates functions move things like all external function method calls out of the template and into the calling page ditto for functions classes defined directly in the template if any of the previous is used to generate a variable to be printed put it on the context this data instead
1
336,638
24,507,673,787
IssuesEvent
2022-10-10 17:58:54
amplication/amplication
https://api.github.com/repos/amplication/amplication
closed
Add note that the Sandox is removed after 30 days
documentation
Need to add the the docs a note that the Sandbox is removed after 30 days
1.0
Add note that the Sandox is removed after 30 days - Need to add the the docs a note that the Sandbox is removed after 30 days
non_main
add note that the sandox is removed after days need to add the the docs a note that the sandbox is removed after days
0
3,087
11,729,387,785
IssuesEvent
2020-03-10 19:17:02
Ornias1993/jailman
https://api.github.com/repos/Ornias1993/jailman
closed
Add CrashPlan
Feature No-Active-Maintainer
I know this ask might be a long shot but it would be great to get the [CrashPlan Small Business client for Linux](https://support.code42.com/Administrator/Small_Business/Get_started_with_CrashPlan_for_Small_Business/CrashPlan_for_Small_Business_requirements) installed as that is my cloud backup solution.
True
Add CrashPlan - I know this ask might be a long shot but it would be great to get the [CrashPlan Small Business client for Linux](https://support.code42.com/Administrator/Small_Business/Get_started_with_CrashPlan_for_Small_Business/CrashPlan_for_Small_Business_requirements) installed as that is my cloud backup solution.
main
add crashplan i know this ask might be a long shot but it would be great to get the installed as that is my cloud backup solution
1
1,471
6,377,387,036
IssuesEvent
2017-08-02 09:54:16
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
Yum module reports OK despite package not installed
affects_2.1 bug_report waiting_on_maintainer
##### ISSUE TYPE - Bug Report ##### COMPONENT NAME Ansible core module: yum ##### ANSIBLE VERSION ``` vagrant@localhost aon_ansible]$ ansible-playbook --version ansible-playbook 2.1.2.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ``` ##### CONFIGURATION Have not made any changes, ansible installed via fedora 24 package manager as "dnf ansible" ##### OS / ENVIRONMENT Fedora 24 Workstation [vagrant@localhost aon_ansible]$ uname -a Linux localhost.localdomain 4.5.5-300.fc24.x86_64 #1 SMP Thu May 19 13:05:32 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux ##### SUMMARY Using yum module to install several packagges with_items, I get TASK [Install Docker Engine] *************************************************** ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) despite docker package is not available PLAY RECAP ********************************************************************* 10.115.141.232 : ok=1 changed=0 unreachable=0 failed=1 ##### STEPS TO REPRODUCE <!--- Paste example playbooks or commands between quotes below --> Example play: tasks: - name: Install Docker Engine yum: name={{item}} state=installed with_items: - device-mapper-libs - device-mapper-event-libs - docker Running playbook [vagrant@localhost aon_ansible]$ ansible-playbook -i inventories/test playbooks/docker-provision.yml PLAY [ams_docker] ************************************************************** TASK [setup] ******************************************************************* ok: [10.115.141.232] ok: [10.115.141.233] TASK [Install Docker Engine] *************************************************** ok: [10.115.141.232] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) NO MORE HOSTS LEFT ************************************************************* to retry, use: --limit @/home/vagrant/Source/aon_ansible/playbooks/docker-provision.retry PLAY RECAP ********************************************************************* 10.115.141.232 : ok=1 changed=0 unreachable=0 failed=1 10.115.141.233 : ok=1 changed=0 unreachable=0 failed=1 Running with verbose: [vagrant@localhost aon_ansible]$ ansible-playbook -v -i inventories/test playbooks/docker-provision.yml Using /etc/ansible/ansible.cfg as config file PLAY [ams_docker] ************************************************************** TASK [setup] ******************************************************************* ok: [10.115.141.233] ok: [10.115.141.232] TASK [Install Docker Engine] *************************************************** ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} ok: [10.115.141.232] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} NO MORE HOSTS LEFT ************************************************************* to retry, use: --limit @/home/vagrant/Source/aon_ansible/playbooks/docker-provision.retry PLAY RECAP ********************************************************************* 10.115.141.232 : ok=1 changed=0 unreachable=0 failed=1 10.115.141.233 : ok=1 changed=0 unreachable=0 failed=1 ##### EXPECTED RESULTS Summary would not show "OK" on task level and show error message ##### ACTUAL RESULTS Task shows OK <!--- Paste verbatim command output between quotes below --> ``` TASK [Install Docker Engine] *************************************************** ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} ok: [10.115.141.232] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} ``` Note that inner message has {"changed": false, "failed": true, "msg": "No Package matching 'docker' found available, installed or updated")
True
Yum module reports OK despite package not installed - ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME Ansible core module: yum ##### ANSIBLE VERSION ``` vagrant@localhost aon_ansible]$ ansible-playbook --version ansible-playbook 2.1.2.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ``` ##### CONFIGURATION Have not made any changes, ansible installed via fedora 24 package manager as "dnf ansible" ##### OS / ENVIRONMENT Fedora 24 Workstation [vagrant@localhost aon_ansible]$ uname -a Linux localhost.localdomain 4.5.5-300.fc24.x86_64 #1 SMP Thu May 19 13:05:32 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux ##### SUMMARY Using yum module to install several packagges with_items, I get TASK [Install Docker Engine] *************************************************** ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) despite docker package is not available PLAY RECAP ********************************************************************* 10.115.141.232 : ok=1 changed=0 unreachable=0 failed=1 ##### STEPS TO REPRODUCE <!--- Paste example playbooks or commands between quotes below --> Example play: tasks: - name: Install Docker Engine yum: name={{item}} state=installed with_items: - device-mapper-libs - device-mapper-event-libs - docker Running playbook [vagrant@localhost aon_ansible]$ ansible-playbook -i inventories/test playbooks/docker-provision.yml PLAY [ams_docker] ************************************************************** TASK [setup] ******************************************************************* ok: [10.115.141.232] ok: [10.115.141.233] TASK [Install Docker Engine] *************************************************** ok: [10.115.141.232] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) NO MORE HOSTS LEFT ************************************************************* to retry, use: --limit @/home/vagrant/Source/aon_ansible/playbooks/docker-provision.retry PLAY RECAP ********************************************************************* 10.115.141.232 : ok=1 changed=0 unreachable=0 failed=1 10.115.141.233 : ok=1 changed=0 unreachable=0 failed=1 Running with verbose: [vagrant@localhost aon_ansible]$ ansible-playbook -v -i inventories/test playbooks/docker-provision.yml Using /etc/ansible/ansible.cfg as config file PLAY [ams_docker] ************************************************************** TASK [setup] ******************************************************************* ok: [10.115.141.233] ok: [10.115.141.232] TASK [Install Docker Engine] *************************************************** ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} ok: [10.115.141.232] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} NO MORE HOSTS LEFT ************************************************************* to retry, use: --limit @/home/vagrant/Source/aon_ansible/playbooks/docker-provision.retry PLAY RECAP ********************************************************************* 10.115.141.232 : ok=1 changed=0 unreachable=0 failed=1 10.115.141.233 : ok=1 changed=0 unreachable=0 failed=1 ##### EXPECTED RESULTS Summary would not show "OK" on task level and show error message ##### ACTUAL RESULTS Task shows OK <!--- Paste verbatim command output between quotes below --> ``` TASK [Install Docker Engine] *************************************************** ok: [10.115.141.233] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} ok: [10.115.141.232] => (item=[u'device-mapper-libs', u'device-mapper-event-libs', u'docker']) => {"changed": false, "failed": true, "item": ["device-mapper-libs", "device-mapper-event-libs", "docker"], "msg": "No Package matching 'docker' found available, installed or updated", "rc": 0, "results": ["device-mapper-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-libs is already installed", "device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64 providing device-mapper-event-libs is already installed"]} ``` Note that inner message has {"changed": false, "failed": true, "msg": "No Package matching 'docker' found available, installed or updated")
main
yum module reports ok despite package not installed issue type bug report component name ansible core module yum ansible version vagrant localhost aon ansible ansible playbook version ansible playbook config file etc ansible ansible cfg configured module search path default w o overrides configuration have not made any changes ansible installed via fedora package manager as dnf ansible os environment fedora workstation uname a linux localhost localdomain smp thu may utc gnu linux summary using yum module to install several packagges with items i get task ok item despite docker package is not available play recap ok changed unreachable failed steps to reproduce example play tasks name install docker engine yum name item state installed with items device mapper libs device mapper event libs docker running playbook ansible playbook i inventories test playbooks docker provision yml play task ok ok task ok item ok item no more hosts left to retry use limit home vagrant source aon ansible playbooks docker provision retry play recap ok changed unreachable failed ok changed unreachable failed running with verbose ansible playbook v i inventories test playbooks docker provision yml using etc ansible ansible cfg as config file play task ok ok task ok item changed false failed true item msg no package matching docker found available installed or updated rc results ok item changed false failed true item msg no package matching docker found available installed or updated rc results no more hosts left to retry use limit home vagrant source aon ansible playbooks docker provision retry play recap ok changed unreachable failed ok changed unreachable failed expected results summary would not show ok on task level and show error message actual results task shows ok task ok item changed false failed true item msg no package matching docker found available installed or updated rc results ok item changed false failed true item msg no package matching docker found available installed or updated rc results note that inner message has changed false failed true msg no package matching docker found available installed or updated
1
175,960
21,365,642,707
IssuesEvent
2022-04-20 01:05:04
TreyM-WSS/Struts2-Examples
https://api.github.com/repos/TreyM-WSS/Struts2-Examples
closed
CVE-2020-14061 (High) detected in jackson-databind-2.9.5.jar - autoclosed
security vulnerability
## CVE-2020-14061 - 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.5.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: /Struts2RestConvention/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar</p> <p> Dependency Hierarchy: - struts2-rest-plugin-2.5.17.jar (Root Library) - :x: **jackson-databind-2.9.5.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/TreyM-WSS/Struts2-Examples/commit/c2eff971375233fc7dea0067072d34f02e24d7e4">c2eff971375233fc7dea0067072d34f02e24d7e4</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> FasterXML jackson-databind 2.x before 2.9.10.5 mishandles the interaction between serialization gadgets and typing, related to oracle.jms.AQjmsQueueConnectionFactory, oracle.jms.AQjmsXATopicConnectionFactory, oracle.jms.AQjmsTopicConnectionFactory, oracle.jms.AQjmsXAQueueConnectionFactory, and oracle.jms.AQjmsXAConnectionFactory (aka weblogic/oracle-aqjms). <p>Publish Date: 2020-06-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14061>CVE-2020-14061</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: High - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14061">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14061</a></p> <p>Release Date: 2020-06-14</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.10.0</p> </p> </details> <p></p>
True
CVE-2020-14061 (High) detected in jackson-databind-2.9.5.jar - autoclosed - ## CVE-2020-14061 - 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.5.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: /Struts2RestConvention/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar</p> <p> Dependency Hierarchy: - struts2-rest-plugin-2.5.17.jar (Root Library) - :x: **jackson-databind-2.9.5.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/TreyM-WSS/Struts2-Examples/commit/c2eff971375233fc7dea0067072d34f02e24d7e4">c2eff971375233fc7dea0067072d34f02e24d7e4</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> FasterXML jackson-databind 2.x before 2.9.10.5 mishandles the interaction between serialization gadgets and typing, related to oracle.jms.AQjmsQueueConnectionFactory, oracle.jms.AQjmsXATopicConnectionFactory, oracle.jms.AQjmsTopicConnectionFactory, oracle.jms.AQjmsXAQueueConnectionFactory, and oracle.jms.AQjmsXAConnectionFactory (aka weblogic/oracle-aqjms). <p>Publish Date: 2020-06-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14061>CVE-2020-14061</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: High - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14061">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14061</a></p> <p>Release Date: 2020-06-14</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.10.0</p> </p> </details> <p></p>
non_main
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 home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy rest plugin jar root library x jackson databind jar vulnerable library found in head commit a href vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to oracle jms aqjmsqueueconnectionfactory oracle jms aqjmsxatopicconnectionfactory oracle jms aqjmstopicconnectionfactory oracle jms aqjmsxaqueueconnectionfactory and oracle jms aqjmsxaconnectionfactory aka weblogic oracle aqjms 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 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
0
1,534
6,572,225,443
IssuesEvent
2017-09-11 00:17:06
ansible/ansible-modules-extras
https://api.github.com/repos/ansible/ansible-modules-extras
closed
Unable to install packages with bower due to loggin?
affects_2.0 bug_report waiting_on_maintainer
##### ISSUE TYPE Bug Report ##### COMPONENT NAME bower_module ##### ANSIBLE VERSION ``` ansible 2.0.1.0 config file = /Users/**********/.ansible.cfg configured module search path = Default w/o overrides ``` ##### CONFIGURATION So that my file is located for my user instead of on a root-level directory (i don't like installations in my root-level directory, as I wipe my computer every 6 months and want to easily backup my files) ``` [defaults] hostfile = /Users/**********/.ansible/hosts ``` ##### OS / ENVIRONMENT I'm running from OSX El Capitan 10.11.4 (15E65) and i'm managing an Ubuntu 14.04.3 LTS (GNU/Linux 3.13.0-77-generic x86_64) server ##### SUMMARY I'm trying to install bower like so: ``` yaml - name: install bower dependencies bower: path: "{{git.destination}}" environment: PATH: "{{ ansible_env.PATH }}:{{git.destination}}/node_modules/.bin" ``` This fails with the following error: ``` json { "changed": false, "failed": true, "module_stderr": "", "module_stdout": "Traceback (most recent call last):\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 2163, in <module>\r\n main()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 186, in main\r\n installed, missing, outdated = bower.list()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 128, in list\r\n data = json.loads(self._exec(cmd, True, False))\r\n File \"/usr/lib/python2.7/json/__init__.py\", line 338, in loads\r\n return _default_decoder.decode(s)\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 366, in decode\r\n obj, end = self.raw_decode(s, idx=_w(s, 0).end())\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 384, in raw_decode\r\n raise ValueError(\"No JSON object could be decoded\")\r\nValueError: No JSON object could be decoded\r\n", "msg": "MODULE FAILURE", "parsed": false } ``` Here's the `module_stdout` formatted: ``` Traceback (most recent call last): File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 2163, in <module> main() File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 186, in main installed, missing, outdated = bower.list() File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 128, in list data = json.loads(self._exec(cmd, True, False)) File \"/usr/lib/python2.7/json/__init__.py\", line 338, in loads return _default_decoder.decode(s) File \"/usr/lib/python2.7/json/decoder.py\", line 366, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File \"/usr/lib/python2.7/json/decoder.py\", line 384, in raw_decode raise ValueError(\"No JSON object could be decoded\") ValueError: No JSON object could be decoded ``` After investigating exactly what `bower list --json` outputs manually, i noticed that there are 2 seperate JSON outputs being printed to the console, which i think is causing a JSON parse issue. This is printed first: ``` json [{ "level": "info", "id": "check-new", "message": "Checking for new versions of the project dependencies...", "data": {} }] ``` I can fix this manually by running the command with the argument: `--loglevel=error`, but I can't add command arguments in the playbook (seems like an annoying recurring theme with most ansible modules). ##### STEPS TO REPRODUCE With this `bower.json` file (personal info commented out): ``` json { "name": "***************", "version": "1.34.1", "description": "*****************", "authors": [ "********** <******@********.*****>" ], "keywords": [ "AngularJS", "admin", "admin", "dashboard", "admin", "panel", "app", "charts", "components", "flat", "flat", "ui", "responsive", "responsive", "layout", "ui", "kit", "ui", "route", "web", "app", "widgets" ], "license": "**************", "homepage": "https://********.com", "private": true, "ignore": [ "**/.*", "node_modules", "bower_components", "test", "tests" ], "dependencies": { "bootstrap": "~3.3.1", "angular": "~1.4", "angular-animate": "~1.4", "angular-cookies": "~1.4", "angular-ui-router": "~0.2.15", "oclazyload": "~0.3.7", "angular-bootstrap": "~0.11.0", "angular-ui-utils": "~0.1.1", "angular-resource": "~1.4", "angular-bootstrap-nav-tree": "*", "angular-carousel": "0.3.12", "angular-md5": "~0.1.7", "jquery": "~2.1.1", "a0-angular-storage": "~0.0.9", "angular-jwt": "~0.0.6", "auth0.js": "~6.0.6", "auth0-angular": "~4.0.1", "angular-slugify": "~1.0.0", "angular-scroll": "~0.6.5", "angular-cached-resource": "~1.4", "angular-mocks": "~1.4", "animate.css": "~3.2.6", "bootstrap-social": "4.9.0", "angulartics": "0.20.1", "angular-sanitize": "~1.3.15", "object-fit-deep": "gibwar/object-fit-deep#0.4.2-deep", "noty": "~2.3.5", "angular-modal-service": "~0.6.9", "pikaday": "git://github.com/LordZardeck/Pikaday#ee7c426be3b0888e75e1a4e259f37decf2a06eff", "angulartics-google-analytics": "0.1.1", "angulartics-mixpanel": "0.1.1", "angular-drag-and-drop-lists": "~1.3.0", "ui-router-extras": "~0.0.13", "mixpanel": "~2.7.2", "mixitup": "~2.1.11" }, "resolutions": { "angular": "~1.4", "angular-cookies": "~1.4", "angular-translate": "~2.5.2", "angular-cached-resource": "~1.4", "pikaday": "ee7c426be3b0888e75e1a4e259f37decf2a06eff", "waypoints": "~3.1.1" }, "devDependencies": { "angular-mocks": "~1.4" } } ``` Run this play: ``` yaml - name: install bower dependencies bower: path: "{{git.destination}}" environment: PATH: "{{ ansible_env.PATH }}:{{git.destination}}/node_modules/.bin" ``` It should be noted, i'm also using NVM (not that it matters that much since i'm using the locally installed bower) ##### EXPECTED RESULTS Expected the play to execute successfully ##### ACTUAL RESULTS The following error: ``` json { "changed": false, "failed": true, "module_stderr": "", "module_stdout": "Traceback (most recent call last):\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 2163, in <module>\r\n main()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 186, in main\r\n installed, missing, outdated = bower.list()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 128, in list\r\n data = json.loads(self._exec(cmd, True, False))\r\n File \"/usr/lib/python2.7/json/__init__.py\", line 338, in loads\r\n return _default_decoder.decode(s)\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 366, in decode\r\n obj, end = self.raw_decode(s, idx=_w(s, 0).end())\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 384, in raw_decode\r\n raise ValueError(\"No JSON object could be decoded\")\r\nValueError: No JSON object could be decoded\r\n", "msg": "MODULE FAILURE", "parsed": false } ```
True
Unable to install packages with bower due to loggin? - ##### ISSUE TYPE Bug Report ##### COMPONENT NAME bower_module ##### ANSIBLE VERSION ``` ansible 2.0.1.0 config file = /Users/**********/.ansible.cfg configured module search path = Default w/o overrides ``` ##### CONFIGURATION So that my file is located for my user instead of on a root-level directory (i don't like installations in my root-level directory, as I wipe my computer every 6 months and want to easily backup my files) ``` [defaults] hostfile = /Users/**********/.ansible/hosts ``` ##### OS / ENVIRONMENT I'm running from OSX El Capitan 10.11.4 (15E65) and i'm managing an Ubuntu 14.04.3 LTS (GNU/Linux 3.13.0-77-generic x86_64) server ##### SUMMARY I'm trying to install bower like so: ``` yaml - name: install bower dependencies bower: path: "{{git.destination}}" environment: PATH: "{{ ansible_env.PATH }}:{{git.destination}}/node_modules/.bin" ``` This fails with the following error: ``` json { "changed": false, "failed": true, "module_stderr": "", "module_stdout": "Traceback (most recent call last):\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 2163, in <module>\r\n main()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 186, in main\r\n installed, missing, outdated = bower.list()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 128, in list\r\n data = json.loads(self._exec(cmd, True, False))\r\n File \"/usr/lib/python2.7/json/__init__.py\", line 338, in loads\r\n return _default_decoder.decode(s)\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 366, in decode\r\n obj, end = self.raw_decode(s, idx=_w(s, 0).end())\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 384, in raw_decode\r\n raise ValueError(\"No JSON object could be decoded\")\r\nValueError: No JSON object could be decoded\r\n", "msg": "MODULE FAILURE", "parsed": false } ``` Here's the `module_stdout` formatted: ``` Traceback (most recent call last): File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 2163, in <module> main() File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 186, in main installed, missing, outdated = bower.list() File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 128, in list data = json.loads(self._exec(cmd, True, False)) File \"/usr/lib/python2.7/json/__init__.py\", line 338, in loads return _default_decoder.decode(s) File \"/usr/lib/python2.7/json/decoder.py\", line 366, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File \"/usr/lib/python2.7/json/decoder.py\", line 384, in raw_decode raise ValueError(\"No JSON object could be decoded\") ValueError: No JSON object could be decoded ``` After investigating exactly what `bower list --json` outputs manually, i noticed that there are 2 seperate JSON outputs being printed to the console, which i think is causing a JSON parse issue. This is printed first: ``` json [{ "level": "info", "id": "check-new", "message": "Checking for new versions of the project dependencies...", "data": {} }] ``` I can fix this manually by running the command with the argument: `--loglevel=error`, but I can't add command arguments in the playbook (seems like an annoying recurring theme with most ansible modules). ##### STEPS TO REPRODUCE With this `bower.json` file (personal info commented out): ``` json { "name": "***************", "version": "1.34.1", "description": "*****************", "authors": [ "********** <******@********.*****>" ], "keywords": [ "AngularJS", "admin", "admin", "dashboard", "admin", "panel", "app", "charts", "components", "flat", "flat", "ui", "responsive", "responsive", "layout", "ui", "kit", "ui", "route", "web", "app", "widgets" ], "license": "**************", "homepage": "https://********.com", "private": true, "ignore": [ "**/.*", "node_modules", "bower_components", "test", "tests" ], "dependencies": { "bootstrap": "~3.3.1", "angular": "~1.4", "angular-animate": "~1.4", "angular-cookies": "~1.4", "angular-ui-router": "~0.2.15", "oclazyload": "~0.3.7", "angular-bootstrap": "~0.11.0", "angular-ui-utils": "~0.1.1", "angular-resource": "~1.4", "angular-bootstrap-nav-tree": "*", "angular-carousel": "0.3.12", "angular-md5": "~0.1.7", "jquery": "~2.1.1", "a0-angular-storage": "~0.0.9", "angular-jwt": "~0.0.6", "auth0.js": "~6.0.6", "auth0-angular": "~4.0.1", "angular-slugify": "~1.0.0", "angular-scroll": "~0.6.5", "angular-cached-resource": "~1.4", "angular-mocks": "~1.4", "animate.css": "~3.2.6", "bootstrap-social": "4.9.0", "angulartics": "0.20.1", "angular-sanitize": "~1.3.15", "object-fit-deep": "gibwar/object-fit-deep#0.4.2-deep", "noty": "~2.3.5", "angular-modal-service": "~0.6.9", "pikaday": "git://github.com/LordZardeck/Pikaday#ee7c426be3b0888e75e1a4e259f37decf2a06eff", "angulartics-google-analytics": "0.1.1", "angulartics-mixpanel": "0.1.1", "angular-drag-and-drop-lists": "~1.3.0", "ui-router-extras": "~0.0.13", "mixpanel": "~2.7.2", "mixitup": "~2.1.11" }, "resolutions": { "angular": "~1.4", "angular-cookies": "~1.4", "angular-translate": "~2.5.2", "angular-cached-resource": "~1.4", "pikaday": "ee7c426be3b0888e75e1a4e259f37decf2a06eff", "waypoints": "~3.1.1" }, "devDependencies": { "angular-mocks": "~1.4" } } ``` Run this play: ``` yaml - name: install bower dependencies bower: path: "{{git.destination}}" environment: PATH: "{{ ansible_env.PATH }}:{{git.destination}}/node_modules/.bin" ``` It should be noted, i'm also using NVM (not that it matters that much since i'm using the locally installed bower) ##### EXPECTED RESULTS Expected the play to execute successfully ##### ACTUAL RESULTS The following error: ``` json { "changed": false, "failed": true, "module_stderr": "", "module_stdout": "Traceback (most recent call last):\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 2163, in <module>\r\n main()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 186, in main\r\n installed, missing, outdated = bower.list()\r\n File \"/home/ubuntu/.ansible/tmp/ansible-tmp-1460580825.72-210370576214639/bower\", line 128, in list\r\n data = json.loads(self._exec(cmd, True, False))\r\n File \"/usr/lib/python2.7/json/__init__.py\", line 338, in loads\r\n return _default_decoder.decode(s)\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 366, in decode\r\n obj, end = self.raw_decode(s, idx=_w(s, 0).end())\r\n File \"/usr/lib/python2.7/json/decoder.py\", line 384, in raw_decode\r\n raise ValueError(\"No JSON object could be decoded\")\r\nValueError: No JSON object could be decoded\r\n", "msg": "MODULE FAILURE", "parsed": false } ```
main
unable to install packages with bower due to loggin issue type bug report component name bower module ansible version ansible config file users ansible cfg configured module search path default w o overrides configuration so that my file is located for my user instead of on a root level directory i don t like installations in my root level directory as i wipe my computer every months and want to easily backup my files hostfile users ansible hosts os environment i m running from osx el capitan and i m managing an ubuntu lts gnu linux generic server summary i m trying to install bower like so yaml name install bower dependencies bower path git destination environment path ansible env path git destination node modules bin this fails with the following error json changed false failed true module stderr module stdout traceback most recent call last r n file home ubuntu ansible tmp ansible tmp bower line in r n main r n file home ubuntu ansible tmp ansible tmp bower line in main r n installed missing outdated bower list r n file home ubuntu ansible tmp ansible tmp bower line in list r n data json loads self exec cmd true false r n file usr lib json init py line in loads r n return default decoder decode s r n file usr lib json decoder py line in decode r n obj end self raw decode s idx w s end r n file usr lib json decoder py line in raw decode r n raise valueerror no json object could be decoded r nvalueerror no json object could be decoded r n msg module failure parsed false here s the module stdout formatted traceback most recent call last file home ubuntu ansible tmp ansible tmp bower line in main file home ubuntu ansible tmp ansible tmp bower line in main installed missing outdated bower list file home ubuntu ansible tmp ansible tmp bower line in list data json loads self exec cmd true false file usr lib json init py line in loads return default decoder decode s file usr lib json decoder py line in decode obj end self raw decode s idx w s end file usr lib json decoder py line in raw decode raise valueerror no json object could be decoded valueerror no json object could be decoded after investigating exactly what bower list json outputs manually i noticed that there are seperate json outputs being printed to the console which i think is causing a json parse issue this is printed first json level info id check new message checking for new versions of the project dependencies data i can fix this manually by running the command with the argument loglevel error but i can t add command arguments in the playbook seems like an annoying recurring theme with most ansible modules steps to reproduce with this bower json file personal info commented out json name version description authors keywords angularjs admin admin dashboard admin panel app charts components flat flat ui responsive responsive layout ui kit ui route web app widgets license homepage private true ignore node modules bower components test tests dependencies bootstrap angular angular animate angular cookies angular ui router oclazyload angular bootstrap angular ui utils angular resource angular bootstrap nav tree angular carousel angular jquery angular storage angular jwt js angular angular slugify angular scroll angular cached resource angular mocks animate css bootstrap social angulartics angular sanitize object fit deep gibwar object fit deep deep noty angular modal service pikaday git github com lordzardeck pikaday angulartics google analytics angulartics mixpanel angular drag and drop lists ui router extras mixpanel mixitup resolutions angular angular cookies angular translate angular cached resource pikaday waypoints devdependencies angular mocks run this play yaml name install bower dependencies bower path git destination environment path ansible env path git destination node modules bin it should be noted i m also using nvm not that it matters that much since i m using the locally installed bower expected results expected the play to execute successfully actual results the following error json changed false failed true module stderr module stdout traceback most recent call last r n file home ubuntu ansible tmp ansible tmp bower line in r n main r n file home ubuntu ansible tmp ansible tmp bower line in main r n installed missing outdated bower list r n file home ubuntu ansible tmp ansible tmp bower line in list r n data json loads self exec cmd true false r n file usr lib json init py line in loads r n return default decoder decode s r n file usr lib json decoder py line in decode r n obj end self raw decode s idx w s end r n file usr lib json decoder py line in raw decode r n raise valueerror no json object could be decoded r nvalueerror no json object could be decoded r n msg module failure parsed false
1
2,680
9,256,388,974
IssuesEvent
2019-03-16 18:37:58
TravisSpark/spark-website
https://api.github.com/repos/TravisSpark/spark-website
closed
Directions to Lab in Weekly meeting
maintainence
### Checklist - [x] Searched for, and did not find, duplicate [issue](https://github.com/TravisSpark/spark-website/issues) - [x] Indicated whether the issue is a bug or a feature - [x] Focused on one specific bug/feature - [x] Gave a concise and relevant name - [x] Created clear and concise description - [x] Outlined which components are affected - [x] Assigned issue to project, appropriate contributors, and relevant labels <!-- Edit as Appropriate --> ### Issue Type: Feature <!-- Pick one --> ### Description The user should be able to find directions to the Phoenix Spark lab from the events page ### Affected Components - `events` data file - `weekly meeting` / `working lunch` - Address should be the current address of the working lunch - Link to `More Information` should be to the Google Map of the location
True
Directions to Lab in Weekly meeting - ### Checklist - [x] Searched for, and did not find, duplicate [issue](https://github.com/TravisSpark/spark-website/issues) - [x] Indicated whether the issue is a bug or a feature - [x] Focused on one specific bug/feature - [x] Gave a concise and relevant name - [x] Created clear and concise description - [x] Outlined which components are affected - [x] Assigned issue to project, appropriate contributors, and relevant labels <!-- Edit as Appropriate --> ### Issue Type: Feature <!-- Pick one --> ### Description The user should be able to find directions to the Phoenix Spark lab from the events page ### Affected Components - `events` data file - `weekly meeting` / `working lunch` - Address should be the current address of the working lunch - Link to `More Information` should be to the Google Map of the location
main
directions to lab in weekly meeting checklist searched for and did not find duplicate indicated whether the issue is a bug or a feature focused on one specific bug feature gave a concise and relevant name created clear and concise description outlined which components are affected assigned issue to project appropriate contributors and relevant labels issue type feature description the user should be able to find directions to the phoenix spark lab from the events page affected components events data file weekly meeting working lunch address should be the current address of the working lunch link to more information should be to the google map of the location
1
5,324
26,885,754,137
IssuesEvent
2023-02-06 02:56:16
muccg/rdrf
https://api.github.com/repos/muccg/rdrf
closed
run pur minor updates
dependencies python type/maintainance area/dependencies
- [x] copy setup.py requirements section to sep file - [x] run pur - [x] update only the minor version upgrades - [x] run build tests
True
run pur minor updates - - [x] copy setup.py requirements section to sep file - [x] run pur - [x] update only the minor version upgrades - [x] run build tests
main
run pur minor updates copy setup py requirements section to sep file run pur update only the minor version upgrades run build tests
1
74,336
9,780,364,971
IssuesEvent
2019-06-07 16:42:05
SAP/fundamental-ngx
https://api.github.com/repos/SAP/fundamental-ngx
closed
Add documentation typedoc comments for all components
contribution welcome documentation sprint 11
#### Is this a bug, enhancement, or feature request? Enhancement #### Briefly describe your proposal. Add documentation typedoc comments to all components. See Alert and Modal for examples. List of done components: - [x] Action Bar (#722) - [x] Alert (#684) - [x] Badge (#724) - [x] Breadcrumb (#726) - [x] Button (#728) - [x] Button Group (#782) - [x] Calendar (#867) - [x] Combobox Input (#799) - [x] Date Picker (#867) - [x] Datetime Picker (#778) - [x] Dropdown - [x] File Input (#711) - [x] Form (#777) - [x] Icon (#794) - [x] Identifier (#796) - [x] Infinite Scroll (#767) - [x] Image (#797) - [x] Inline Help (#798) - [x] Input Group (#799) - [x] List (#802 ) - [x] Loading Spinner (#810) - [x] Menu (#751) - [x] Modal (#684) - [x] Multi Input (#738) - [x] Pagination (#811) - [x] Panel (#765) - [x] Popover (#718) - [x] Popover Directive (#718) - [x] Scroll Spy (#812) - [x] Search Input (#739) - [x] Shellbar (#815) - [x] Side Navigation (#814) - [x] Table (#816) - [x] Tabs (#688) - [x] Tile (#809) - [x] Time (#707) - [x] Time Picker (#708) - [x] Toggle (#755) - [x] Token (#766)
1.0
Add documentation typedoc comments for all components - #### Is this a bug, enhancement, or feature request? Enhancement #### Briefly describe your proposal. Add documentation typedoc comments to all components. See Alert and Modal for examples. List of done components: - [x] Action Bar (#722) - [x] Alert (#684) - [x] Badge (#724) - [x] Breadcrumb (#726) - [x] Button (#728) - [x] Button Group (#782) - [x] Calendar (#867) - [x] Combobox Input (#799) - [x] Date Picker (#867) - [x] Datetime Picker (#778) - [x] Dropdown - [x] File Input (#711) - [x] Form (#777) - [x] Icon (#794) - [x] Identifier (#796) - [x] Infinite Scroll (#767) - [x] Image (#797) - [x] Inline Help (#798) - [x] Input Group (#799) - [x] List (#802 ) - [x] Loading Spinner (#810) - [x] Menu (#751) - [x] Modal (#684) - [x] Multi Input (#738) - [x] Pagination (#811) - [x] Panel (#765) - [x] Popover (#718) - [x] Popover Directive (#718) - [x] Scroll Spy (#812) - [x] Search Input (#739) - [x] Shellbar (#815) - [x] Side Navigation (#814) - [x] Table (#816) - [x] Tabs (#688) - [x] Tile (#809) - [x] Time (#707) - [x] Time Picker (#708) - [x] Toggle (#755) - [x] Token (#766)
non_main
add documentation typedoc comments for all components is this a bug enhancement or feature request enhancement briefly describe your proposal add documentation typedoc comments to all components see alert and modal for examples list of done components action bar alert badge breadcrumb button button group calendar combobox input date picker datetime picker dropdown file input form icon identifier infinite scroll image inline help input group list loading spinner menu modal multi input pagination panel popover popover directive scroll spy search input shellbar side navigation table tabs tile time time picker toggle token
0
609,236
18,858,072,897
IssuesEvent
2021-11-12 09:21:17
kubernetes/kubectl
https://api.github.com/repos/kubernetes/kubectl
closed
custom-columns stops abruptly when hitting a non-existent array index
kind/bug priority/backlog lifecycle/rotten triage/accepted
**What happened**: When the get pods command with custom-columns option hits an array index that doesn't exist for a pod, the command is aborted: ``` # kubectl get pods -o=custom-columns=STATUS:.status.conditions[1].status STATUS True True error: array index out of bounds: index 1, length 1 ``` **What you expected to happen**: That the non-existent array element is replaced e.g. by `<none>` in the output. And that the remaining pods are printed: ``` # kubectl get pods -o=custom-columns=STATUS:.status.conditions[1].status STATUS True True <none> True True True ``` **Environment**: - Kubernetes client and server versions (use `kubectl version`): ``` Client Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.0-37+7ab055a22f5440", GitCommit:"7ab055a22f5440dbdcd1d41095b7db95d98fc1c3", GitTreeState:"clean", BuildDate:"2020-12-10T18:58:11Z", GoVersion:"go1.15.6", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.0-37+7ab055a22f5440", GitCommit:"7ab055a22f5440dbdcd1d41095b7db95d98fc1c3", GitTreeState:"clean", BuildDate:"2020-12-10T18:59:05Z", GoVersion:"go1.15.6", Compiler:"gc", Platform:"linux/amd64"} ``` - Cloud provider or hardware configuration: on-premises microk8s - OS (e.g: `cat /etc/os-release`): Ubuntu 20.04.1 LTS
1.0
custom-columns stops abruptly when hitting a non-existent array index - **What happened**: When the get pods command with custom-columns option hits an array index that doesn't exist for a pod, the command is aborted: ``` # kubectl get pods -o=custom-columns=STATUS:.status.conditions[1].status STATUS True True error: array index out of bounds: index 1, length 1 ``` **What you expected to happen**: That the non-existent array element is replaced e.g. by `<none>` in the output. And that the remaining pods are printed: ``` # kubectl get pods -o=custom-columns=STATUS:.status.conditions[1].status STATUS True True <none> True True True ``` **Environment**: - Kubernetes client and server versions (use `kubectl version`): ``` Client Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.0-37+7ab055a22f5440", GitCommit:"7ab055a22f5440dbdcd1d41095b7db95d98fc1c3", GitTreeState:"clean", BuildDate:"2020-12-10T18:58:11Z", GoVersion:"go1.15.6", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.0-37+7ab055a22f5440", GitCommit:"7ab055a22f5440dbdcd1d41095b7db95d98fc1c3", GitTreeState:"clean", BuildDate:"2020-12-10T18:59:05Z", GoVersion:"go1.15.6", Compiler:"gc", Platform:"linux/amd64"} ``` - Cloud provider or hardware configuration: on-premises microk8s - OS (e.g: `cat /etc/os-release`): Ubuntu 20.04.1 LTS
non_main
custom columns stops abruptly when hitting a non existent array index what happened when the get pods command with custom columns option hits an array index that doesn t exist for a pod the command is aborted kubectl get pods o custom columns status status conditions status status true true error array index out of bounds index length what you expected to happen that the non existent array element is replaced e g by in the output and that the remaining pods are printed kubectl get pods o custom columns status status conditions status status true true true true true environment kubernetes client and server versions use kubectl version client version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux server version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux cloud provider or hardware configuration on premises os e g cat etc os release ubuntu lts
0
335,874
10,167,806,858
IssuesEvent
2019-08-07 19:09:26
YugaByte/yugabyte-db
https://api.github.com/repos/YugaByte/yugabyte-db
closed
Lower defaults for memstore_arena_size_kb
area/docdb priority/high
In order to support larger number of tables on smaller machines, we should lower the default for memstore_arena_size_kb to 128.
1.0
Lower defaults for memstore_arena_size_kb - In order to support larger number of tables on smaller machines, we should lower the default for memstore_arena_size_kb to 128.
non_main
lower defaults for memstore arena size kb in order to support larger number of tables on smaller machines we should lower the default for memstore arena size kb to
0
661,920
22,095,864,580
IssuesEvent
2022-06-01 10:03:45
mantidproject/mantid
https://api.github.com/repos/mantidproject/mantid
closed
Project recovery on linux uses wrong checkpoint
High Priority Bug ISIS Team: Core
**Describe the bug** Project recovery on IDAaaS always seems to use the previous recovery file **To Reproduce** (1) Set project recovery to save every ~5s (File > Settings > General) (2) Make a workspace ` CreateWorkspace(DataX=range(12), DataY=range(12), DataE=range(12), NSpec=4, OutputWorkspace='NewWorkspace') ` (3) Wait for it to save project (see this in log at debug level) (4) Crash mantid with `Segfault `algorithm with `DryRun=False` (5) Open workbench again (project recovery should give a pop-up askign to restore workspace but not on IDAaaS) (6) Make 2 workspaces ``` CreateWorkspace(DataX=range(12), DataY=range(12), DataE=range(12), NSpec=4, OutputWorkspace='NewWorkspace') CreateWorkspace(DataX=range(12), DataY=range(12), DataE=range(12), NSpec=4, OutputWorkspace='NewWorkspace2') ``` (7) Repeat steps (3-5) - this time I see a project recovery pop-up but it only restores one workspace **Screenshots** <!--If applicable/possible, add screenshots to help explain your problem. --> **Platform/Version (please complete the following information):** - Mantid nightly 9th May on IDAaaS **Additional context** <!--Add any other context about the problem here.-->
1.0
Project recovery on linux uses wrong checkpoint - **Describe the bug** Project recovery on IDAaaS always seems to use the previous recovery file **To Reproduce** (1) Set project recovery to save every ~5s (File > Settings > General) (2) Make a workspace ` CreateWorkspace(DataX=range(12), DataY=range(12), DataE=range(12), NSpec=4, OutputWorkspace='NewWorkspace') ` (3) Wait for it to save project (see this in log at debug level) (4) Crash mantid with `Segfault `algorithm with `DryRun=False` (5) Open workbench again (project recovery should give a pop-up askign to restore workspace but not on IDAaaS) (6) Make 2 workspaces ``` CreateWorkspace(DataX=range(12), DataY=range(12), DataE=range(12), NSpec=4, OutputWorkspace='NewWorkspace') CreateWorkspace(DataX=range(12), DataY=range(12), DataE=range(12), NSpec=4, OutputWorkspace='NewWorkspace2') ``` (7) Repeat steps (3-5) - this time I see a project recovery pop-up but it only restores one workspace **Screenshots** <!--If applicable/possible, add screenshots to help explain your problem. --> **Platform/Version (please complete the following information):** - Mantid nightly 9th May on IDAaaS **Additional context** <!--Add any other context about the problem here.-->
non_main
project recovery on linux uses wrong checkpoint describe the bug project recovery on idaaas always seems to use the previous recovery file to reproduce set project recovery to save every file settings general make a workspace createworkspace datax range datay range datae range nspec outputworkspace newworkspace wait for it to save project see this in log at debug level crash mantid with segfault algorithm with dryrun false open workbench again project recovery should give a pop up askign to restore workspace but not on idaaas make workspaces createworkspace datax range datay range datae range nspec outputworkspace newworkspace createworkspace datax range datay range datae range nspec outputworkspace repeat steps this time i see a project recovery pop up but it only restores one workspace screenshots platform version please complete the following information mantid nightly may on idaaas additional context
0
5,199
26,434,108,301
IssuesEvent
2023-01-15 06:34:02
tgstation/tgstation
https://api.github.com/repos/tgstation/tgstation
closed
Ling code is Broken and Old and Broken
Maintainability/Hinders improvements Bug
Reporting client version: 514.1578 <!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable --> ## Round ID: [178712](https://scrubby.melonmesa.com/round/178712) <!--- **INCLUDE THE ROUND ID** If you discovered this issue from playing tgstation hosted servers: [Round ID]: # (It can be found in the Status panel or retrieved from https://sb.atlantaned.space/rounds ! The round id let's us look up valuable information and logs for the round the bug happened.)--> This is gona be a list of ling bugs I encounter in a single round that fucked me over and generally just ruined my experience ## Testmerges: - [Nullspaces Some Undertile Objects (gas pipes/wires/disposals pipes) To Save On Maptick. For Real This Time](https://www.github.com/tgstation/tgstation/pull/63500) <!-- If you're certain the issue is to be caused by a test merge [OOC tab -> Show Server Revision], report it in the pull request's comment section rather than on the tracker(If you're unsure you can refer to the issue number by prefixing said number with #. The issue number can be found beside the title after submitting it to the tracker).If no testmerges are active, feel free to remove this section. --> ## Reproduction: First off all headslug putted my eggs into a humanized monkey corpses when I came back I couldnt see my chemical level and my lesser form and button to turn into a human were gone monkey forever ![image](https://user-images.githubusercontent.com/84478872/154829413-c20232e5-d791-44b2-be87-987dceb4a6d2.png) Second I pressed the button that gives you back your original ghost chracter name since I had some random one this did not let me return to my ling body so I was perma death then admins putted my body there ![image](https://user-images.githubusercontent.com/84478872/154829560-c12946d2-cdf8-444d-a289-8e4cb7fb1cbe.png) it had the antag pannel still but for some reason all my abilities were missing then admins gave me back ling status but the revival button didnt ever activate after using it This are the major ones that happened in this round The other tree are as follows 1. Sometimes when you transform while holding any kind of light on the light will stay on you at all times and is irremovable 2. Sometimes if you transform while burning you will forever have the burning tempeture you had when you transform while not being in fire so it constantly gives you third degree burns and rapidly kills you 3. When you turn into a human after being a monkey even if is a moth you will just turn into some generic bald guy with your original underwear on <!-- Explain your issue in detail, including the steps to reproduce it. Issues without proper reproduction steps or explanation are open to being ignored/closed by maintainers.--> Ling code is broken VERY VERY broken I'm sure paradise station ling code and TG ling code are literary the same thing it needs a rework <!-- **For Admins:** Oddities induced by var-edits and other admin tools are not necessarily bugs. Verify that your issues occur under regular circumstances before reporting them. -->
True
Ling code is Broken and Old and Broken - Reporting client version: 514.1578 <!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable --> ## Round ID: [178712](https://scrubby.melonmesa.com/round/178712) <!--- **INCLUDE THE ROUND ID** If you discovered this issue from playing tgstation hosted servers: [Round ID]: # (It can be found in the Status panel or retrieved from https://sb.atlantaned.space/rounds ! The round id let's us look up valuable information and logs for the round the bug happened.)--> This is gona be a list of ling bugs I encounter in a single round that fucked me over and generally just ruined my experience ## Testmerges: - [Nullspaces Some Undertile Objects (gas pipes/wires/disposals pipes) To Save On Maptick. For Real This Time](https://www.github.com/tgstation/tgstation/pull/63500) <!-- If you're certain the issue is to be caused by a test merge [OOC tab -> Show Server Revision], report it in the pull request's comment section rather than on the tracker(If you're unsure you can refer to the issue number by prefixing said number with #. The issue number can be found beside the title after submitting it to the tracker).If no testmerges are active, feel free to remove this section. --> ## Reproduction: First off all headslug putted my eggs into a humanized monkey corpses when I came back I couldnt see my chemical level and my lesser form and button to turn into a human were gone monkey forever ![image](https://user-images.githubusercontent.com/84478872/154829413-c20232e5-d791-44b2-be87-987dceb4a6d2.png) Second I pressed the button that gives you back your original ghost chracter name since I had some random one this did not let me return to my ling body so I was perma death then admins putted my body there ![image](https://user-images.githubusercontent.com/84478872/154829560-c12946d2-cdf8-444d-a289-8e4cb7fb1cbe.png) it had the antag pannel still but for some reason all my abilities were missing then admins gave me back ling status but the revival button didnt ever activate after using it This are the major ones that happened in this round The other tree are as follows 1. Sometimes when you transform while holding any kind of light on the light will stay on you at all times and is irremovable 2. Sometimes if you transform while burning you will forever have the burning tempeture you had when you transform while not being in fire so it constantly gives you third degree burns and rapidly kills you 3. When you turn into a human after being a monkey even if is a moth you will just turn into some generic bald guy with your original underwear on <!-- Explain your issue in detail, including the steps to reproduce it. Issues without proper reproduction steps or explanation are open to being ignored/closed by maintainers.--> Ling code is broken VERY VERY broken I'm sure paradise station ling code and TG ling code are literary the same thing it needs a rework <!-- **For Admins:** Oddities induced by var-edits and other admin tools are not necessarily bugs. Verify that your issues occur under regular circumstances before reporting them. -->
main
ling code is broken and old and broken reporting client version round id include the round id if you discovered this issue from playing tgstation hosted servers it can be found in the status panel or retrieved from the round id let s us look up valuable information and logs for the round the bug happened this is gona be a list of ling bugs i encounter in a single round that fucked me over and generally just ruined my experience testmerges reproduction first off all headslug putted my eggs into a humanized monkey corpses when i came back i couldnt see my chemical level and my lesser form and button to turn into a human were gone monkey forever second i pressed the button that gives you back your original ghost chracter name since i had some random one this did not let me return to my ling body so i was perma death then admins putted my body there it had the antag pannel still but for some reason all my abilities were missing then admins gave me back ling status but the revival button didnt ever activate after using it this are the major ones that happened in this round the other tree are as follows sometimes when you transform while holding any kind of light on the light will stay on you at all times and is irremovable sometimes if you transform while burning you will forever have the burning tempeture you had when you transform while not being in fire so it constantly gives you third degree burns and rapidly kills you when you turn into a human after being a monkey even if is a moth you will just turn into some generic bald guy with your original underwear on ling code is broken very very broken i m sure paradise station ling code and tg ling code are literary the same thing it needs a rework
1
11,420
3,003,165,059
IssuesEvent
2015-07-24 21:36:32
CartoDB/docs
https://api.github.com/repos/CartoDB/docs
opened
Add Navigation Enhancements to the Docs Portal
Design
The Docs portal needs to look more like a content management system. There will be many template/design changes coming down the pipeline. This enhancement should be added first. - Add a search input field that searches across ALL content within the DOCS repo only, not just the selected page. I have attached a sample screenshot, anything similar to this would suffice. ![example_search input field](https://cloud.githubusercontent.com/assets/13319925/8885046/2167da0e-322a-11e5-9466-dc15ab0b24d5.png)
1.0
Add Navigation Enhancements to the Docs Portal - The Docs portal needs to look more like a content management system. There will be many template/design changes coming down the pipeline. This enhancement should be added first. - Add a search input field that searches across ALL content within the DOCS repo only, not just the selected page. I have attached a sample screenshot, anything similar to this would suffice. ![example_search input field](https://cloud.githubusercontent.com/assets/13319925/8885046/2167da0e-322a-11e5-9466-dc15ab0b24d5.png)
non_main
add navigation enhancements to the docs portal the docs portal needs to look more like a content management system there will be many template design changes coming down the pipeline this enhancement should be added first add a search input field that searches across all content within the docs repo only not just the selected page i have attached a sample screenshot anything similar to this would suffice
0
4,165
19,981,510,469
IssuesEvent
2022-01-30 00:41:53
thumbor/thumbor-bootcamp
https://api.github.com/repos/thumbor/thumbor-bootcamp
opened
[Bootcamp Task] Change thumbor-doctor command to click
task L2 python maintainability
## Areas of Expertise Python ## Summary Change the `thumbor-doctor` command to use [click](https://click.palletsprojects.com/en/8.0.x/). ## Involved Modules * [thumbor](https://github.com/thumbor/thumbor/) - [url_composer](https://github.com/thumbor/thumbor/blob/master/thumbor/doctor.py) ## Task Relevance By upgrading the handling of the cli parts of thumbor to a more established library like click we ensure maintainability for the future. ## Further Details Completing this task means the `thumbor-doctor` command in thumbor is handled by click and not by optparse (deprecated module in Python 3). ## How to complete this task? To complete this task, follow this workflow: 1. [Fork the involved repositories](http://help.github.com/fork-a-repo/) 2. In each repository there's a documentation on how to install dependencies and initialize your environment 3. Hack, in no particular order: - Write code & tests - Write new tests - Write docs - Improve design - Check that all tests pass - Repeat until you're satisfied 4. [Submit a pull request](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request).
True
[Bootcamp Task] Change thumbor-doctor command to click - ## Areas of Expertise Python ## Summary Change the `thumbor-doctor` command to use [click](https://click.palletsprojects.com/en/8.0.x/). ## Involved Modules * [thumbor](https://github.com/thumbor/thumbor/) - [url_composer](https://github.com/thumbor/thumbor/blob/master/thumbor/doctor.py) ## Task Relevance By upgrading the handling of the cli parts of thumbor to a more established library like click we ensure maintainability for the future. ## Further Details Completing this task means the `thumbor-doctor` command in thumbor is handled by click and not by optparse (deprecated module in Python 3). ## How to complete this task? To complete this task, follow this workflow: 1. [Fork the involved repositories](http://help.github.com/fork-a-repo/) 2. In each repository there's a documentation on how to install dependencies and initialize your environment 3. Hack, in no particular order: - Write code & tests - Write new tests - Write docs - Improve design - Check that all tests pass - Repeat until you're satisfied 4. [Submit a pull request](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request).
main
change thumbor doctor command to click areas of expertise python summary change the thumbor doctor command to use involved modules task relevance by upgrading the handling of the cli parts of thumbor to a more established library like click we ensure maintainability for the future further details completing this task means the thumbor doctor command in thumbor is handled by click and not by optparse deprecated module in python how to complete this task to complete this task follow this workflow in each repository there s a documentation on how to install dependencies and initialize your environment hack in no particular order write code tests write new tests write docs improve design check that all tests pass repeat until you re satisfied
1
1,187
5,102,992,994
IssuesEvent
2017-01-04 19:59:59
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
ec2_group: use of a single port_range argument instead of from_port and to_port
affects_2.0 aws cloud feature_idea waiting_on_maintainer
##### Issue Type: Feature Idea ##### Summary: This is a very small importance feature but it would be nice when using ec2_group module (http://docs.ansible.com/ec2_group_module.html) to define the ports using a single single `port_range` argument instead of having to define `from_port` and `to_port` . This way it's going to be similar with the AWS console Port Range definition and you avoid to define the value twice when the rule is about a single port , as for example : ##### Now: ``` rules: - proto: tcp from_port: 80 to_port: 80 cidr_ip: 0.0.0.0/0 ``` ##### using port_range : ``` rules: - proto: tcp port_range: 80 cidr_ip: 0.0.0.0/0 ``` or defining a port range : ##### Now: ``` rules: - proto: tcp from_port: 0 to_port: 65535 cidr_ip: 0.0.0.0/0 ``` ##### using port_range : ``` rules: - proto: tcp port_range: 0-65535 cidr_ip: 0.0.0.0/0 ```
True
ec2_group: use of a single port_range argument instead of from_port and to_port - ##### Issue Type: Feature Idea ##### Summary: This is a very small importance feature but it would be nice when using ec2_group module (http://docs.ansible.com/ec2_group_module.html) to define the ports using a single single `port_range` argument instead of having to define `from_port` and `to_port` . This way it's going to be similar with the AWS console Port Range definition and you avoid to define the value twice when the rule is about a single port , as for example : ##### Now: ``` rules: - proto: tcp from_port: 80 to_port: 80 cidr_ip: 0.0.0.0/0 ``` ##### using port_range : ``` rules: - proto: tcp port_range: 80 cidr_ip: 0.0.0.0/0 ``` or defining a port range : ##### Now: ``` rules: - proto: tcp from_port: 0 to_port: 65535 cidr_ip: 0.0.0.0/0 ``` ##### using port_range : ``` rules: - proto: tcp port_range: 0-65535 cidr_ip: 0.0.0.0/0 ```
main
group use of a single port range argument instead of from port and to port issue type feature idea summary this is a very small importance feature but it would be nice when using group module to define the ports using a single single port range argument instead of having to define from port and to port this way it s going to be similar with the aws console port range definition and you avoid to define the value twice when the rule is about a single port as for example now rules proto tcp from port to port cidr ip using port range rules proto tcp port range cidr ip or defining a port range now rules proto tcp from port to port cidr ip using port range rules proto tcp port range cidr ip
1
3,622
14,644,358,769
IssuesEvent
2020-12-25 22:56:17
Homebrew/homebrew-core
https://api.github.com/repos/Homebrew/homebrew-core
closed
They Shoot Horses, Don't They?
maintainer feedback
## The problem: old unbuildable formulas - We current have 565 formulas that have a Mavericks bottle, meaning they haven't had any change in over 4 years. - Of those 62 formulas currently don't build on Big Sur (Intel). Here they are, along with number of monthly installs: *(Edit: the list was updated 2020-12-20)* ``` 325 winexe 244 connect 125 vera++ 102 zssh 101 cabocha 73 shntool 73 pcre++ 73 hardlink-osx 62 git-hooks 51 mpack 41 makeicns 15 git-cal 0 mdxmini ``` They need to be fixed, or removed. Some of them are already heavily patched. Because they haven't been updated in 4 years, they're unlikely to be actively maintained. ## Suggested solution We have limited volunteer availability, so I would suggest: - All those that have less than 20 monthly installs are removed - If someone wants to add them back, they are welcome! They will be treated as new formulas - This issue can become a `help-wanted` issue to fix the others, if we can… (or remove them on a per-case basis, if they can't be fixed) What do you think @Homebrew/core ?
True
They Shoot Horses, Don't They? - ## The problem: old unbuildable formulas - We current have 565 formulas that have a Mavericks bottle, meaning they haven't had any change in over 4 years. - Of those 62 formulas currently don't build on Big Sur (Intel). Here they are, along with number of monthly installs: *(Edit: the list was updated 2020-12-20)* ``` 325 winexe 244 connect 125 vera++ 102 zssh 101 cabocha 73 shntool 73 pcre++ 73 hardlink-osx 62 git-hooks 51 mpack 41 makeicns 15 git-cal 0 mdxmini ``` They need to be fixed, or removed. Some of them are already heavily patched. Because they haven't been updated in 4 years, they're unlikely to be actively maintained. ## Suggested solution We have limited volunteer availability, so I would suggest: - All those that have less than 20 monthly installs are removed - If someone wants to add them back, they are welcome! They will be treated as new formulas - This issue can become a `help-wanted` issue to fix the others, if we can… (or remove them on a per-case basis, if they can't be fixed) What do you think @Homebrew/core ?
main
they shoot horses don t they the problem old unbuildable formulas we current have formulas that have a mavericks bottle meaning they haven t had any change in over years of those formulas currently don t build on big sur intel here they are along with number of monthly installs edit the list was updated winexe connect vera zssh cabocha shntool pcre hardlink osx git hooks mpack makeicns git cal mdxmini they need to be fixed or removed some of them are already heavily patched because they haven t been updated in years they re unlikely to be actively maintained suggested solution we have limited volunteer availability so i would suggest all those that have less than monthly installs are removed if someone wants to add them back they are welcome they will be treated as new formulas this issue can become a help wanted issue to fix the others if we can… or remove them on a per case basis if they can t be fixed what do you think homebrew core
1
2,332
8,355,642,630
IssuesEvent
2018-10-02 16:12:21
ansible/ansible
https://api.github.com/repos/ansible/ansible
closed
mysql_user user creation fails on MariaDB 10.3 when using host: localhost
affects_2.5 bug module needs_maintainer support:community traceback
<!--- Verify first that your issue/request is not already reported on GitHub. THIS FORM WILL BE READ BY A MACHINE, COMPLETE ALL SECTIONS AS DESCRIBED. Also test if the latest release, and devel branch are affected too. ALWAYS add information AFTER (OUTSIDE) these html comments. Otherwise it may end up being automatically closed by our bot. --> ##### SUMMARY <!--- Explain the problem briefly --> When creating a new user ("zabbix_monitor") with mysql_user on MariaDB 10.3 (MariaDB-server-10.3.7-1.el7.centos.x86_64), it fails under specific conditions with the error message included below. We've traced it back to the following change in MariaDB: https://github.com/MariaDB/server/commit/84e14bff4a Apparently, the Ansible mysql_user role already picks this up, EXCEPT when setting the host to "localhost" instead of "%". In other words, the following fails: ``` mysql_user: login_user: "root" login_password: "***" name: "zabbix_monitor" host: "localhost" password: "***" priv: "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER" state: present ``` ...but this works: ``` mysql_user: login_user: "root" login_password: "***" name: "zabbix_monitor" host: "%" password: "***" priv: "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER" state: present ``` ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME <!--- Insert, BELOW THIS COMMENT, the name of the module, plugin, task or feature. Do not include extra details here, e.g. "vyos_command" not "the network module vyos_command" or the full path--> mysql_user ##### ANSIBLE VERSION <!--- Paste, BELOW THIS COMMENT, verbatim output from "ansible --version" between quotes below --> ``` ansible 2.5.3 config file = /etc/ansible/ansible.cfg configured module search path = [u'/home/hcadmin/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.5 (default, Apr 11 2018, 07:36:10) [GCC 4.8.5 20150623 (Red Hat 4.8.5-28)] ``` ##### CONFIGURATION <!--- If using Ansible 2.4 or above, paste, BELOW THIS COMMENT, the results of "ansible-config dump --only-changed" Otherwise, mention any settings you have changed/added/removed in ansible.cfg (or using the ANSIBLE_* environment variables).--> ANSIBLE_PIPELINING(/etc/ansible/ansible.cfg) = True ANSIBLE_SSH_ARGS(/etc/ansible/ansible.cfg) = -i /home/hcadmin/.ssh/id_rsa_ansible DEFAULT_FORKS(/etc/ansible/ansible.cfg) = 100 DEFAULT_ROLES_PATH(/etc/ansible/ansible.cfg) = [u'/etc/ansible/roles', u'/usr/share/ansible/roles'] ##### OS / ENVIRONMENT <!--- Mention, BELOW THIS COMMENT, the OS you are running Ansible from, and the OS you are managing, or say "N/A" for anything that is not platform-specific. Also mention the specific version of what you are trying to control, e.g. if this is a network bug the version of firmware on the network device.--> CentOS Linux release 7.5.1804 (Core) ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem, using a minimal test-case. For new features, show how the feature would be used. --> Run the task below: <!--- Paste example playbooks or commands between quotes below --> ```yaml mysql_user: login_user: "root" login_password: "***" name: "zabbix_monitor" host: "localhost" password: "***" priv: "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER" state: present ``` <!--- You can also paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- What did you expect to happen when running the steps above? --> mariadb user created/updated ##### ACTUAL RESULTS <!--- What actually happened? If possible run with extra verbosity (-vvvv) --> error message: <!--- Paste verbatim command output between quotes below --> ``` An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'VERSIONING ROWS ON *.* FROM 'zabbix_monitor'@'localhost'' at line 1") failed: [phrdb01.qa.careconnect.be] (item=zabbix_monitor) => {"changed": false, "item": {"host": "localhost", "name": "zabbix_monitor", "password": "***", "priv": "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER"}, "msg": "(1064, \"You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'VERSIONING ROWS ON *.* FROM 'zabbix_monitor'@'localhost'' at line 1\")"} ```
True
mysql_user user creation fails on MariaDB 10.3 when using host: localhost - <!--- Verify first that your issue/request is not already reported on GitHub. THIS FORM WILL BE READ BY A MACHINE, COMPLETE ALL SECTIONS AS DESCRIBED. Also test if the latest release, and devel branch are affected too. ALWAYS add information AFTER (OUTSIDE) these html comments. Otherwise it may end up being automatically closed by our bot. --> ##### SUMMARY <!--- Explain the problem briefly --> When creating a new user ("zabbix_monitor") with mysql_user on MariaDB 10.3 (MariaDB-server-10.3.7-1.el7.centos.x86_64), it fails under specific conditions with the error message included below. We've traced it back to the following change in MariaDB: https://github.com/MariaDB/server/commit/84e14bff4a Apparently, the Ansible mysql_user role already picks this up, EXCEPT when setting the host to "localhost" instead of "%". In other words, the following fails: ``` mysql_user: login_user: "root" login_password: "***" name: "zabbix_monitor" host: "localhost" password: "***" priv: "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER" state: present ``` ...but this works: ``` mysql_user: login_user: "root" login_password: "***" name: "zabbix_monitor" host: "%" password: "***" priv: "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER" state: present ``` ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME <!--- Insert, BELOW THIS COMMENT, the name of the module, plugin, task or feature. Do not include extra details here, e.g. "vyos_command" not "the network module vyos_command" or the full path--> mysql_user ##### ANSIBLE VERSION <!--- Paste, BELOW THIS COMMENT, verbatim output from "ansible --version" between quotes below --> ``` ansible 2.5.3 config file = /etc/ansible/ansible.cfg configured module search path = [u'/home/hcadmin/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.5 (default, Apr 11 2018, 07:36:10) [GCC 4.8.5 20150623 (Red Hat 4.8.5-28)] ``` ##### CONFIGURATION <!--- If using Ansible 2.4 or above, paste, BELOW THIS COMMENT, the results of "ansible-config dump --only-changed" Otherwise, mention any settings you have changed/added/removed in ansible.cfg (or using the ANSIBLE_* environment variables).--> ANSIBLE_PIPELINING(/etc/ansible/ansible.cfg) = True ANSIBLE_SSH_ARGS(/etc/ansible/ansible.cfg) = -i /home/hcadmin/.ssh/id_rsa_ansible DEFAULT_FORKS(/etc/ansible/ansible.cfg) = 100 DEFAULT_ROLES_PATH(/etc/ansible/ansible.cfg) = [u'/etc/ansible/roles', u'/usr/share/ansible/roles'] ##### OS / ENVIRONMENT <!--- Mention, BELOW THIS COMMENT, the OS you are running Ansible from, and the OS you are managing, or say "N/A" for anything that is not platform-specific. Also mention the specific version of what you are trying to control, e.g. if this is a network bug the version of firmware on the network device.--> CentOS Linux release 7.5.1804 (Core) ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem, using a minimal test-case. For new features, show how the feature would be used. --> Run the task below: <!--- Paste example playbooks or commands between quotes below --> ```yaml mysql_user: login_user: "root" login_password: "***" name: "zabbix_monitor" host: "localhost" password: "***" priv: "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER" state: present ``` <!--- You can also paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- What did you expect to happen when running the steps above? --> mariadb user created/updated ##### ACTUAL RESULTS <!--- What actually happened? If possible run with extra verbosity (-vvvv) --> error message: <!--- Paste verbatim command output between quotes below --> ``` An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'VERSIONING ROWS ON *.* FROM 'zabbix_monitor'@'localhost'' at line 1") failed: [phrdb01.qa.careconnect.be] (item=zabbix_monitor) => {"changed": false, "item": {"host": "localhost", "name": "zabbix_monitor", "password": "***", "priv": "*.*:PROCESS,SHOW DATABASES,EXECUTE,SELECT,SHOW VIEW,REPLICATION CLIENT,SUPER"}, "msg": "(1064, \"You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'VERSIONING ROWS ON *.* FROM 'zabbix_monitor'@'localhost'' at line 1\")"} ```
main
mysql user user creation fails on mariadb when using host localhost verify first that your issue request is not already reported on github this form will be read by a machine complete all sections as described also test if the latest release and devel branch are affected too always add information after outside these html comments otherwise it may end up being automatically closed by our bot summary when creating a new user zabbix monitor with mysql user on mariadb mariadb server centos it fails under specific conditions with the error message included below we ve traced it back to the following change in mariadb apparently the ansible mysql user role already picks this up except when setting the host to localhost instead of in other words the following fails mysql user login user root login password name zabbix monitor host localhost password priv process show databases execute select show view replication client super state present but this works mysql user login user root login password name zabbix monitor host password priv process show databases execute select show view replication client super state present issue type bug report component name insert below this comment the name of the module plugin task or feature do not include extra details here e g vyos command not the network module vyos command or the full path mysql user ansible version ansible config file etc ansible ansible cfg configured module search path ansible python module location usr lib site packages ansible executable location usr bin ansible python version default apr configuration if using ansible or above paste below this comment the results of ansible config dump only changed otherwise mention any settings you have changed added removed in ansible cfg or using the ansible environment variables ansible pipelining etc ansible ansible cfg true ansible ssh args etc ansible ansible cfg i home hcadmin ssh id rsa ansible default forks etc ansible ansible cfg default roles path etc ansible ansible cfg os environment mention below this comment the os you are running ansible from and the os you are managing or say n a for anything that is not platform specific also mention the specific version of what you are trying to control e g if this is a network bug the version of firmware on the network device centos linux release core steps to reproduce for bugs show exactly how to reproduce the problem using a minimal test case for new features show how the feature would be used run the task below yaml mysql user login user root login password name zabbix monitor host localhost password priv process show databases execute select show view replication client super state present expected results mariadb user created updated actual results error message an exception occurred during task execution to see the full traceback use vvv the error was programmingerror you have an error in your sql syntax check the manual that corresponds to your mariadb server version for the right syntax to use near versioning rows on from zabbix monitor localhost at line failed item zabbix monitor changed false item host localhost name zabbix monitor password priv process show databases execute select show view replication client super msg you have an error in your sql syntax check the manual that corresponds to your mariadb server version for the right syntax to use near versioning rows on from zabbix monitor localhost at line
1
3,759
15,798,186,635
IssuesEvent
2021-04-02 18:11:54
DynamoRIO/dynamorio
https://api.github.com/repos/DynamoRIO/dynamorio
closed
[cleanup] refactor public interface headers and eliminate patchwork exports via genapi.pl
Maintainability Type-Feature
Currently DR's public interface headers are constructed from a patchwork of existing internal headers using the genapi.pl script. This issue covers refactoring the headers to properly separate the public interface portions into their own headers that can be directly exported, eliminating the need for a script and simplifying the project.
True
[cleanup] refactor public interface headers and eliminate patchwork exports via genapi.pl - Currently DR's public interface headers are constructed from a patchwork of existing internal headers using the genapi.pl script. This issue covers refactoring the headers to properly separate the public interface portions into their own headers that can be directly exported, eliminating the need for a script and simplifying the project.
main
refactor public interface headers and eliminate patchwork exports via genapi pl currently dr s public interface headers are constructed from a patchwork of existing internal headers using the genapi pl script this issue covers refactoring the headers to properly separate the public interface portions into their own headers that can be directly exported eliminating the need for a script and simplifying the project
1
95,500
27,525,980,838
IssuesEvent
2023-03-06 18:05:23
dirty-cat/dirty_cat
https://api.github.com/repos/dirty-cat/dirty_cat
closed
Fetching tests are halting CI
enhancement CI / Build
Since #489, the fetching tests take about 20 minutes to run, and the MacOS workers are getting stuck, which slows development times. This is due to the fact that we download all datasets kind of sequentially (it's technically process-parallelized since #493, but we would need concurrent-parallelization in this case, and it wouldn't even fix the issue entirely). ![image](https://user-images.githubusercontent.com/33222654/222760461-e649eb1f-aecb-4f0c-b099-7dd95d0c1f00.png) Instead of downloading all datasets, a more efficient heuristic would be to download one small dataset, test the assumptions we have on it, and just check a few internals with the other datasets, without downloading them.
1.0
Fetching tests are halting CI - Since #489, the fetching tests take about 20 minutes to run, and the MacOS workers are getting stuck, which slows development times. This is due to the fact that we download all datasets kind of sequentially (it's technically process-parallelized since #493, but we would need concurrent-parallelization in this case, and it wouldn't even fix the issue entirely). ![image](https://user-images.githubusercontent.com/33222654/222760461-e649eb1f-aecb-4f0c-b099-7dd95d0c1f00.png) Instead of downloading all datasets, a more efficient heuristic would be to download one small dataset, test the assumptions we have on it, and just check a few internals with the other datasets, without downloading them.
non_main
fetching tests are halting ci since the fetching tests take about minutes to run and the macos workers are getting stuck which slows development times this is due to the fact that we download all datasets kind of sequentially it s technically process parallelized since but we would need concurrent parallelization in this case and it wouldn t even fix the issue entirely instead of downloading all datasets a more efficient heuristic would be to download one small dataset test the assumptions we have on it and just check a few internals with the other datasets without downloading them
0
1,558
6,572,253,629
IssuesEvent
2017-09-11 00:39:06
ansible/ansible-modules-extras
https://api.github.com/repos/ansible/ansible-modules-extras
closed
lvol module should not require size if origin is thin
affects_2.3 bug_report waiting_on_maintainer
##### ISSUE TYPE - Bug Report ##### COMPONENT NAME lvol ##### ANSIBLE VERSION verified that size requirement still exists in devel branch tip as of today ##### CONFIGURATION N/A ##### OS / ENVIRONMENT N/A ##### SUMMARY When creating a thin snapshot, size is not necessary (this is, in fact, what `lvcreate` uses to differentiate a request to make thin snapshot from a new thick volume in same vg), yet the module requires it anyways for all state=present. For (only) this reason, creating thin snapshots is not possible. ##### STEPS TO REPRODUCE ``` - name: create_thin_snapshot lvol: lv: '{{lvname_origin}}' vg: '{{vgname}}' snapshot: '{{lvname_snap}}' state: present ``` ##### EXPECTED RESULTS Should be created without issue. This corresponds to a simple: ``` lvcreate -sn {{lvname_snap}} {{vgname}}/{{lvname_origin}} ``` ##### ACTUAL RESULTS ``` TASK [create_thin_snapshot lv={{lvname_origin}}, state=present, snapshot={{lvname_snap}}, vg={{vgname}}] *** fatal: [myhost]: FAILED! => {"changed": false, "failed": true, "msg": "No size given."} ```
True
lvol module should not require size if origin is thin - ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME lvol ##### ANSIBLE VERSION verified that size requirement still exists in devel branch tip as of today ##### CONFIGURATION N/A ##### OS / ENVIRONMENT N/A ##### SUMMARY When creating a thin snapshot, size is not necessary (this is, in fact, what `lvcreate` uses to differentiate a request to make thin snapshot from a new thick volume in same vg), yet the module requires it anyways for all state=present. For (only) this reason, creating thin snapshots is not possible. ##### STEPS TO REPRODUCE ``` - name: create_thin_snapshot lvol: lv: '{{lvname_origin}}' vg: '{{vgname}}' snapshot: '{{lvname_snap}}' state: present ``` ##### EXPECTED RESULTS Should be created without issue. This corresponds to a simple: ``` lvcreate -sn {{lvname_snap}} {{vgname}}/{{lvname_origin}} ``` ##### ACTUAL RESULTS ``` TASK [create_thin_snapshot lv={{lvname_origin}}, state=present, snapshot={{lvname_snap}}, vg={{vgname}}] *** fatal: [myhost]: FAILED! => {"changed": false, "failed": true, "msg": "No size given."} ```
main
lvol module should not require size if origin is thin issue type bug report component name lvol ansible version verified that size requirement still exists in devel branch tip as of today configuration n a os environment n a summary when creating a thin snapshot size is not necessary this is in fact what lvcreate uses to differentiate a request to make thin snapshot from a new thick volume in same vg yet the module requires it anyways for all state present for only this reason creating thin snapshots is not possible steps to reproduce name create thin snapshot lvol lv lvname origin vg vgname snapshot lvname snap state present expected results should be created without issue this corresponds to a simple lvcreate sn lvname snap vgname lvname origin actual results task fatal failed changed false failed true msg no size given
1
446,670
12,876,246,622
IssuesEvent
2020-07-11 03:31:56
pingcap/tidb-operator
https://api.github.com/repos/pingcap/tidb-operator
closed
Restore reuses PVC with too-small storage
priority:P2 status/help-wanted
## Bug Report **What version of Kubernetes are you using?** <!-- You can run `kubectl version` --> ``` Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.1", GitCommit:"7879fc12a63337efff607952a323df90cdc7a335", GitTreeState:"clean", BuildDate:"2020-04-08T17:38:50Z", GoVersion:"go1.13.9", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"15+", GitVersion:"v1.15.11-eks-af3caf", GitCommit:"af3caf6136cd355f467083651cc1010a499f59b1", GitTreeState:"clean", BuildDate:"2020-03-27T21:51:36Z", GoVersion:"go1.12.17", Compiler:"gc", Platform:"linux/amd64"} ``` **What version of TiDB Operator are you using?** <!-- You can run `kubectl exec -n tidb-admin {tidb-controller-manager-pod-name} -- tidb-controller-manager -V` --> ``` TiDB Operator Version: version.Info{GitVersion:"v1.1.0", GitCommit:"bc9ca21adb990ca01f41c0ea9b7f6bf5d2efc16b", GitTreeState:"clean", BuildDate:"2020-05-28T11:31:09Z", GoVersion:"go1.13.8", Compiler:"gc", Platform:"linux/amd64"} ``` **What storage classes exist in the Kubernetes cluster and what are used for PD/TiKV pods?** <!-- You can run `kubectl get sc` and `kubectl get pvc -n {tidb-cluster-namespace}` --> ``` # kubectl get sc NAME PROVISIONER AGE ebs-gp2 kubernetes.io/aws-ebs 3h46m gp2 (default) kubernetes.io/aws-ebs 3h58m local-storage kubernetes.io/no-provisioner 3h46m # kubectl get pvc -n "$namespace" NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE pd-my-cluster-pd-0 Bound pvc-cb89be5e-5229-46ef-97f7-e4b296e35268 1Gi RWO ebs-gp2 3h39m pd-my-cluster-pd-1 Bound pvc-287d93c8-820e-49cb-964e-06f0cadc3e58 1Gi RWO ebs-gp2 3h39m pd-my-cluster-pd-2 Bound pvc-84bd5211-f608-4d65-894f-fe658b3f6bb2 1Gi RWO ebs-gp2 3h39m restore-pvc-547d4f76cf Bound pvc-564ef1c9-a634-406b-82ce-3424a8fa81d0 1Gi RWO gp2 23m restore-pvc-77c7f7f95 Bound pvc-8d292366-4447-49de-b420-7481024e2272 1Gi RWO gp2 22m tikv-my-cluster-tikv-0 Bound local-pv-add24900 366Gi RWO local-storage 3h38m tikv-my-cluster-tikv-1 Bound local-pv-f28ae161 366Gi RWO local-storage 3h38m tikv-my-cluster-tikv-2 Bound local-pv-a7a3e1fc 366Gi RWO local-storage 3h38m ``` **What's the status of the TiDB cluster pods?** <!-- You can run `kubectl get po -n {tidb-cluster-namespace} -o wide` --> ``` NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES my-cluster-discovery-769cfcb787-ndpbz 1/1 Running 0 3h39m 10.0.54.251 ip-10-0-60-27.us-west-2.compute.internal <none> <none> my-cluster-pd-0 1/1 Running 0 3h39m 10.0.21.64 ip-10-0-28-167.us-west-2.compute.internal <none> <none> my-cluster-pd-1 1/1 Running 0 3h39m 10.0.42.10 ip-10-0-40-110.us-west-2.compute.internal <none> <none> my-cluster-pd-2 1/1 Running 1 3h39m 10.0.59.4 ip-10-0-49-214.us-west-2.compute.internal <none> <none> my-cluster-tidb-0 2/2 Running 0 3h38m 10.0.25.203 ip-10-0-20-4.us-west-2.compute.internal <none> <none> my-cluster-tidb-1 2/2 Running 0 3h38m 10.0.58.26 ip-10-0-51-34.us-west-2.compute.internal <none> <none> my-cluster-tikv-0 1/1 Running 0 3h38m 10.0.35.168 ip-10-0-39-111.us-west-2.compute.internal <none> <none> my-cluster-tikv-1 1/1 Running 0 3h38m 10.0.26.147 ip-10-0-21-150.us-west-2.compute.internal <none> <none> my-cluster-tikv-2 1/1 Running 0 3h38m 10.0.48.205 ip-10-0-51-98.us-west-2.compute.internal <none> <none> restore-import-from-s3-cgwnv 0/1 Error 0 13m 10.0.56.3 ip-10-0-60-27.us-west-2.compute.internal <none> <none> ``` **What did you do?** <!-- If possible, provide a recipe for reproducing the error. How you installed tidb-operator and tidb-cluster. --> I created a Restore object with `storageSize: 1Gi`. That resulted in errors because the volume was too small. So, I deleted the Restore job, edited the .yaml file, and changed it to `storageSize: 10Gi`. I re-applied the .yaml, but the old PVC/PV were used, so the Restore job ran out of space again. Here's the .yaml: ``` # cat import-aws-s3.yaml apiVersion: pingcap.com/v1alpha1 kind: Restore metadata: name: import-from-s3 namespace: poc spec: backupType: full to: host: my-cluster-tidb port: 4000 user: root secretName: export-secret s3: provider: aws region: us-west-2 secretName: s3-secret path: s3://kolbe-db-backup-testing/2020-06-16-03 storageSize: 10Gi # storageClassName: local-storage ``` **What did you expect to see?** If no existing volume can satisfy the storageSize given in the CRD, a new PVC/PV should be allocated with the appropriate amount of space. **What did you see instead?** ``` # kubectl get restore -A -o json { "apiVersion": "v1", "items": [ { "apiVersion": "pingcap.com/v1alpha1", "kind": "Restore", "metadata": { "annotations": { "kubectl.kubernetes.io/last-applied-configuration": "{\"apiVersion\":\"pingcap.com/v1alpha1\",\"kind\":\"Restore\",\"metadata\":{\"annotations\":{},\"name\":\"import-from-s3\",\"namespace\":\"poc\"},\"spec\":{\"backupType\":\"full\",\"s3\":{\"path\":\"s3://kolbe-db-backup-testing/2020-06-16-03\",\"provider\":\"aws\",\"region\":\"us-west-2\",\"secretName\":\"s3-secret\"},\"storageSize\":\"10Gi\",\"to\":{\"host\":\"my-cluster-tidb\",\"port\":4000,\"secretName\":\"export-secret\",\"user\":\"root\"}}}\n" }, "creationTimestamp": "2020-06-16T21:10:50Z", "generation": 4, "name": "import-from-s3", "namespace": "poc", "resourceVersion": "48496", "selfLink": "/apis/pingcap.com/v1alpha1/namespaces/poc/restores/import-from-s3", "uid": "9288566e-445b-4606-aebe-474a947a1f8e" }, "spec": { "backupType": "full", "resources": {}, "s3": { "path": "s3://kolbe-db-backup-testing/2020-06-16-03", "provider": "aws", "region": "us-west-2", "secretName": "s3-secret" }, "storageSize": "10Gi", "to": { "host": "my-cluster-tidb", "port": 4000, "secretName": "export-secret", "user": "root" } }, "status": { "conditions": [ { "lastTransitionTime": "2020-06-16T21:10:50Z", "message": "", "reason": "", "status": "True", "type": "Scheduled" }, { "lastTransitionTime": "2020-06-16T21:10:56Z", "message": "", "reason": "", "status": "True", "type": "Running" }, { "lastTransitionTime": "2020-06-16T21:11:14Z", "message": "download backup s3://kolbe-db-backup-testing/2020-06-16-03 data failed, err: cluster poc/import-from-s3, execute rclone copyto command for download backup data s3://kolbe-db-backup-testing/2020-06-16-03 failed, errMsg: 2020/06/16 21:11:01 ERROR : backup-2020-06-16T18:51:33Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:01 ERROR : backup-2020-06-16T19:01:35Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:01 ERROR : Attempt 1/3 failed with 2 errors and: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : backup-2020-06-16T18:51:33Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : backup-2020-06-16T19:01:35Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : Attempt 2/3 failed with 2 errors and: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : backup-2020-06-16T19:01:35Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:14 ERROR : backup-2020-06-16T18:51:33Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:14 ERROR : Attempt 3/3 failed with 2 errors and: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:14 Failed to copyto with 2 errors: last error was: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n, err: exit status 1", "reason": "DownloadBackupDataFailed", "status": "True", "type": "Failed" } ], "timeCompleted": null, "timeStarted": null } } ], "kind": "List", "metadata": { "resourceVersion": "", "selfLink": "" } } ``` ``` # kubectl get pvc -n "$namespace" restore-pvc-77c7f7f95 -o json { "apiVersion": "v1", "kind": "PersistentVolumeClaim", "metadata": { "annotations": { "pv.kubernetes.io/bind-completed": "yes", "pv.kubernetes.io/bound-by-controller": "yes", "volume.beta.kubernetes.io/storage-provisioner": "kubernetes.io/aws-ebs", "volume.kubernetes.io/selected-node": "ip-10-0-60-27.us-west-2.compute.internal" }, "creationTimestamp": "2020-06-16T21:02:04Z", "finalizers": [ "kubernetes.io/pvc-protection" ], "labels": { "app.kubernetes.io/instance": "import-from-s3", "app.kubernetes.io/managed-by": "restore-operator", "app.kubernetes.io/name": "restore" }, "name": "restore-pvc-77c7f7f95", "namespace": "poc", "resourceVersion": "46465", "selfLink": "/api/v1/namespaces/poc/persistentvolumeclaims/restore-pvc-77c7f7f95", "uid": "8d292366-4447-49de-b420-7481024e2272" }, "spec": { "accessModes": [ "ReadWriteOnce" ], "resources": { "requests": { "storage": "1Gi" } }, "storageClassName": "gp2", "volumeMode": "Filesystem", "volumeName": "pvc-8d292366-4447-49de-b420-7481024e2272" }, "status": { "accessModes": [ "ReadWriteOnce" ], "capacity": { "storage": "1Gi" }, "phase": "Bound" } } ```
1.0
Restore reuses PVC with too-small storage - ## Bug Report **What version of Kubernetes are you using?** <!-- You can run `kubectl version` --> ``` Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.1", GitCommit:"7879fc12a63337efff607952a323df90cdc7a335", GitTreeState:"clean", BuildDate:"2020-04-08T17:38:50Z", GoVersion:"go1.13.9", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"15+", GitVersion:"v1.15.11-eks-af3caf", GitCommit:"af3caf6136cd355f467083651cc1010a499f59b1", GitTreeState:"clean", BuildDate:"2020-03-27T21:51:36Z", GoVersion:"go1.12.17", Compiler:"gc", Platform:"linux/amd64"} ``` **What version of TiDB Operator are you using?** <!-- You can run `kubectl exec -n tidb-admin {tidb-controller-manager-pod-name} -- tidb-controller-manager -V` --> ``` TiDB Operator Version: version.Info{GitVersion:"v1.1.0", GitCommit:"bc9ca21adb990ca01f41c0ea9b7f6bf5d2efc16b", GitTreeState:"clean", BuildDate:"2020-05-28T11:31:09Z", GoVersion:"go1.13.8", Compiler:"gc", Platform:"linux/amd64"} ``` **What storage classes exist in the Kubernetes cluster and what are used for PD/TiKV pods?** <!-- You can run `kubectl get sc` and `kubectl get pvc -n {tidb-cluster-namespace}` --> ``` # kubectl get sc NAME PROVISIONER AGE ebs-gp2 kubernetes.io/aws-ebs 3h46m gp2 (default) kubernetes.io/aws-ebs 3h58m local-storage kubernetes.io/no-provisioner 3h46m # kubectl get pvc -n "$namespace" NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE pd-my-cluster-pd-0 Bound pvc-cb89be5e-5229-46ef-97f7-e4b296e35268 1Gi RWO ebs-gp2 3h39m pd-my-cluster-pd-1 Bound pvc-287d93c8-820e-49cb-964e-06f0cadc3e58 1Gi RWO ebs-gp2 3h39m pd-my-cluster-pd-2 Bound pvc-84bd5211-f608-4d65-894f-fe658b3f6bb2 1Gi RWO ebs-gp2 3h39m restore-pvc-547d4f76cf Bound pvc-564ef1c9-a634-406b-82ce-3424a8fa81d0 1Gi RWO gp2 23m restore-pvc-77c7f7f95 Bound pvc-8d292366-4447-49de-b420-7481024e2272 1Gi RWO gp2 22m tikv-my-cluster-tikv-0 Bound local-pv-add24900 366Gi RWO local-storage 3h38m tikv-my-cluster-tikv-1 Bound local-pv-f28ae161 366Gi RWO local-storage 3h38m tikv-my-cluster-tikv-2 Bound local-pv-a7a3e1fc 366Gi RWO local-storage 3h38m ``` **What's the status of the TiDB cluster pods?** <!-- You can run `kubectl get po -n {tidb-cluster-namespace} -o wide` --> ``` NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES my-cluster-discovery-769cfcb787-ndpbz 1/1 Running 0 3h39m 10.0.54.251 ip-10-0-60-27.us-west-2.compute.internal <none> <none> my-cluster-pd-0 1/1 Running 0 3h39m 10.0.21.64 ip-10-0-28-167.us-west-2.compute.internal <none> <none> my-cluster-pd-1 1/1 Running 0 3h39m 10.0.42.10 ip-10-0-40-110.us-west-2.compute.internal <none> <none> my-cluster-pd-2 1/1 Running 1 3h39m 10.0.59.4 ip-10-0-49-214.us-west-2.compute.internal <none> <none> my-cluster-tidb-0 2/2 Running 0 3h38m 10.0.25.203 ip-10-0-20-4.us-west-2.compute.internal <none> <none> my-cluster-tidb-1 2/2 Running 0 3h38m 10.0.58.26 ip-10-0-51-34.us-west-2.compute.internal <none> <none> my-cluster-tikv-0 1/1 Running 0 3h38m 10.0.35.168 ip-10-0-39-111.us-west-2.compute.internal <none> <none> my-cluster-tikv-1 1/1 Running 0 3h38m 10.0.26.147 ip-10-0-21-150.us-west-2.compute.internal <none> <none> my-cluster-tikv-2 1/1 Running 0 3h38m 10.0.48.205 ip-10-0-51-98.us-west-2.compute.internal <none> <none> restore-import-from-s3-cgwnv 0/1 Error 0 13m 10.0.56.3 ip-10-0-60-27.us-west-2.compute.internal <none> <none> ``` **What did you do?** <!-- If possible, provide a recipe for reproducing the error. How you installed tidb-operator and tidb-cluster. --> I created a Restore object with `storageSize: 1Gi`. That resulted in errors because the volume was too small. So, I deleted the Restore job, edited the .yaml file, and changed it to `storageSize: 10Gi`. I re-applied the .yaml, but the old PVC/PV were used, so the Restore job ran out of space again. Here's the .yaml: ``` # cat import-aws-s3.yaml apiVersion: pingcap.com/v1alpha1 kind: Restore metadata: name: import-from-s3 namespace: poc spec: backupType: full to: host: my-cluster-tidb port: 4000 user: root secretName: export-secret s3: provider: aws region: us-west-2 secretName: s3-secret path: s3://kolbe-db-backup-testing/2020-06-16-03 storageSize: 10Gi # storageClassName: local-storage ``` **What did you expect to see?** If no existing volume can satisfy the storageSize given in the CRD, a new PVC/PV should be allocated with the appropriate amount of space. **What did you see instead?** ``` # kubectl get restore -A -o json { "apiVersion": "v1", "items": [ { "apiVersion": "pingcap.com/v1alpha1", "kind": "Restore", "metadata": { "annotations": { "kubectl.kubernetes.io/last-applied-configuration": "{\"apiVersion\":\"pingcap.com/v1alpha1\",\"kind\":\"Restore\",\"metadata\":{\"annotations\":{},\"name\":\"import-from-s3\",\"namespace\":\"poc\"},\"spec\":{\"backupType\":\"full\",\"s3\":{\"path\":\"s3://kolbe-db-backup-testing/2020-06-16-03\",\"provider\":\"aws\",\"region\":\"us-west-2\",\"secretName\":\"s3-secret\"},\"storageSize\":\"10Gi\",\"to\":{\"host\":\"my-cluster-tidb\",\"port\":4000,\"secretName\":\"export-secret\",\"user\":\"root\"}}}\n" }, "creationTimestamp": "2020-06-16T21:10:50Z", "generation": 4, "name": "import-from-s3", "namespace": "poc", "resourceVersion": "48496", "selfLink": "/apis/pingcap.com/v1alpha1/namespaces/poc/restores/import-from-s3", "uid": "9288566e-445b-4606-aebe-474a947a1f8e" }, "spec": { "backupType": "full", "resources": {}, "s3": { "path": "s3://kolbe-db-backup-testing/2020-06-16-03", "provider": "aws", "region": "us-west-2", "secretName": "s3-secret" }, "storageSize": "10Gi", "to": { "host": "my-cluster-tidb", "port": 4000, "secretName": "export-secret", "user": "root" } }, "status": { "conditions": [ { "lastTransitionTime": "2020-06-16T21:10:50Z", "message": "", "reason": "", "status": "True", "type": "Scheduled" }, { "lastTransitionTime": "2020-06-16T21:10:56Z", "message": "", "reason": "", "status": "True", "type": "Running" }, { "lastTransitionTime": "2020-06-16T21:11:14Z", "message": "download backup s3://kolbe-db-backup-testing/2020-06-16-03 data failed, err: cluster poc/import-from-s3, execute rclone copyto command for download backup data s3://kolbe-db-backup-testing/2020-06-16-03 failed, errMsg: 2020/06/16 21:11:01 ERROR : backup-2020-06-16T18:51:33Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:01 ERROR : backup-2020-06-16T19:01:35Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:01 ERROR : Attempt 1/3 failed with 2 errors and: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : backup-2020-06-16T18:51:33Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : backup-2020-06-16T19:01:35Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : Attempt 2/3 failed with 2 errors and: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:06 ERROR : backup-2020-06-16T19:01:35Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T19:01:35Z.tgz: no space left on device\n2020/06/16 21:11:14 ERROR : backup-2020-06-16T18:51:33Z.tgz: Failed to copy: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:14 ERROR : Attempt 3/3 failed with 2 errors and: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n2020/06/16 21:11:14 Failed to copyto with 2 errors: last error was: multpart copy: write failed: write /backup/kolbe-db-backup-testing/2020-06-16-03/backup-2020-06-16T18:51:33Z.tgz: no space left on device\n, err: exit status 1", "reason": "DownloadBackupDataFailed", "status": "True", "type": "Failed" } ], "timeCompleted": null, "timeStarted": null } } ], "kind": "List", "metadata": { "resourceVersion": "", "selfLink": "" } } ``` ``` # kubectl get pvc -n "$namespace" restore-pvc-77c7f7f95 -o json { "apiVersion": "v1", "kind": "PersistentVolumeClaim", "metadata": { "annotations": { "pv.kubernetes.io/bind-completed": "yes", "pv.kubernetes.io/bound-by-controller": "yes", "volume.beta.kubernetes.io/storage-provisioner": "kubernetes.io/aws-ebs", "volume.kubernetes.io/selected-node": "ip-10-0-60-27.us-west-2.compute.internal" }, "creationTimestamp": "2020-06-16T21:02:04Z", "finalizers": [ "kubernetes.io/pvc-protection" ], "labels": { "app.kubernetes.io/instance": "import-from-s3", "app.kubernetes.io/managed-by": "restore-operator", "app.kubernetes.io/name": "restore" }, "name": "restore-pvc-77c7f7f95", "namespace": "poc", "resourceVersion": "46465", "selfLink": "/api/v1/namespaces/poc/persistentvolumeclaims/restore-pvc-77c7f7f95", "uid": "8d292366-4447-49de-b420-7481024e2272" }, "spec": { "accessModes": [ "ReadWriteOnce" ], "resources": { "requests": { "storage": "1Gi" } }, "storageClassName": "gp2", "volumeMode": "Filesystem", "volumeName": "pvc-8d292366-4447-49de-b420-7481024e2272" }, "status": { "accessModes": [ "ReadWriteOnce" ], "capacity": { "storage": "1Gi" }, "phase": "Bound" } } ```
non_main
restore reuses pvc with too small storage bug report what version of kubernetes are you using client version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux server version version info major minor gitversion eks gitcommit gittreestate clean builddate goversion compiler gc platform linux what version of tidb operator are you using tidb operator version version info gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux what storage classes exist in the kubernetes cluster and what are used for pd tikv pods kubectl get sc name provisioner age ebs kubernetes io aws ebs default kubernetes io aws ebs local storage kubernetes io no provisioner kubectl get pvc n namespace name status volume capacity access modes storageclass age pd my cluster pd bound pvc rwo ebs pd my cluster pd bound pvc rwo ebs pd my cluster pd bound pvc rwo ebs restore pvc bound pvc rwo restore pvc bound pvc rwo tikv my cluster tikv bound local pv rwo local storage tikv my cluster tikv bound local pv rwo local storage tikv my cluster tikv bound local pv rwo local storage what s the status of the tidb cluster pods name ready status restarts age ip node nominated node readiness gates my cluster discovery ndpbz running ip us west compute internal my cluster pd running ip us west compute internal my cluster pd running ip us west compute internal my cluster pd running ip us west compute internal my cluster tidb running ip us west compute internal my cluster tidb running ip us west compute internal my cluster tikv running ip us west compute internal my cluster tikv running ip us west compute internal my cluster tikv running ip us west compute internal restore import from cgwnv error ip us west compute internal what did you do i created a restore object with storagesize that resulted in errors because the volume was too small so i deleted the restore job edited the yaml file and changed it to storagesize i re applied the yaml but the old pvc pv were used so the restore job ran out of space again here s the yaml cat import aws yaml apiversion pingcap com kind restore metadata name import from namespace poc spec backuptype full to host my cluster tidb port user root secretname export secret provider aws region us west secretname secret path kolbe db backup testing storagesize storageclassname local storage what did you expect to see if no existing volume can satisfy the storagesize given in the crd a new pvc pv should be allocated with the appropriate amount of space what did you see instead kubectl get restore a o json apiversion items apiversion pingcap com kind restore metadata annotations kubectl kubernetes io last applied configuration apiversion pingcap com kind restore metadata annotations name import from namespace poc spec backuptype full path kolbe db backup testing provider aws region us west secretname secret storagesize to host my cluster tidb port secretname export secret user root n creationtimestamp generation name import from namespace poc resourceversion selflink apis pingcap com namespaces poc restores import from uid aebe spec backuptype full resources path kolbe db backup testing provider aws region us west secretname secret storagesize to host my cluster tidb port secretname export secret user root status conditions lasttransitiontime message reason status true type scheduled lasttransitiontime message reason status true type running lasttransitiontime message download backup kolbe db backup testing data failed err cluster poc import from execute rclone copyto command for download backup data kolbe db backup testing failed errmsg error backup tgz failed to copy multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error backup tgz failed to copy multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error attempt failed with errors and multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error backup tgz failed to copy multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error backup tgz failed to copy multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error attempt failed with errors and multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error backup tgz failed to copy multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error backup tgz failed to copy multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device error attempt failed with errors and multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device failed to copyto with errors last error was multpart copy write failed write backup kolbe db backup testing backup tgz no space left on device n err exit status reason downloadbackupdatafailed status true type failed timecompleted null timestarted null kind list metadata resourceversion selflink kubectl get pvc n namespace restore pvc o json apiversion kind persistentvolumeclaim metadata annotations pv kubernetes io bind completed yes pv kubernetes io bound by controller yes volume beta kubernetes io storage provisioner kubernetes io aws ebs volume kubernetes io selected node ip us west compute internal creationtimestamp finalizers kubernetes io pvc protection labels app kubernetes io instance import from app kubernetes io managed by restore operator app kubernetes io name restore name restore pvc namespace poc resourceversion selflink api namespaces poc persistentvolumeclaims restore pvc uid spec accessmodes readwriteonce resources requests storage storageclassname volumemode filesystem volumename pvc status accessmodes readwriteonce capacity storage phase bound
0
223,226
17,108,232,962
IssuesEvent
2021-07-09 21:57:13
Oliver-Akins/quote-API
https://api.github.com/repos/Oliver-Akins/quote-API
closed
Endpoint: /quotes/:quote_id/meta
documentation endpoint feature
Accepted Methods: - GET - PUT/PATCH --- ## GET Permitted Scopes: - `QMETA.INFO` ### Behaviour: Returns the metadata associated with the quote. This includes: - The quote ID - The user who added it - The date of the quote - The number of edits made to it - The edit_id for the most recent edit made to the quote. --- ## PUT/PATCH Permitted Scopes: - `QMETA.MODIFY` ### Body: | Field Name | Type | Description | | ---------- | ---- | ----------- | | date? | ISO date | The date the quote was said. | | user? | string | The user who added the quote to the API. | ### Behaviour: Modifies the given quote's metadata. ---
1.0
Endpoint: /quotes/:quote_id/meta - Accepted Methods: - GET - PUT/PATCH --- ## GET Permitted Scopes: - `QMETA.INFO` ### Behaviour: Returns the metadata associated with the quote. This includes: - The quote ID - The user who added it - The date of the quote - The number of edits made to it - The edit_id for the most recent edit made to the quote. --- ## PUT/PATCH Permitted Scopes: - `QMETA.MODIFY` ### Body: | Field Name | Type | Description | | ---------- | ---- | ----------- | | date? | ISO date | The date the quote was said. | | user? | string | The user who added the quote to the API. | ### Behaviour: Modifies the given quote's metadata. ---
non_main
endpoint quotes quote id meta accepted methods get put patch get permitted scopes qmeta info behaviour returns the metadata associated with the quote this includes the quote id the user who added it the date of the quote the number of edits made to it the edit id for the most recent edit made to the quote put patch permitted scopes qmeta modify body field name type description date iso date the date the quote was said user string the user who added the quote to the api behaviour modifies the given quote s metadata
0
38,315
5,173,562,276
IssuesEvent
2017-01-18 16:22:47
ngageoint/hootenanny-ui
https://api.github.com/repos/ngageoint/hootenanny-ui
closed
Issue with Cookie Cutter Conflation
Category: Test Identified During Regression Test Status: Ready for Test Type: Bug
Attempted the following method: **Cookie Cutter & Horizontal** For this example we’ll need to create two custom translations, one for the DC Street Centerline Data* described in and a second simple translation to ensure that the OSM highway data for DC maintains the correct osm tags. Ingest DC Street datasets using the recently created custom translation files. Note the different Translation Schema files used to import each dataset. - district_of_columbia_highway.zip - Street_Centerline_Light.shp Return to Map and select the Street Centerlines Light as the Reference Dataset, dc highway osm as the Secondary dataset. Click ‘Conflate’ Change the value for Type to Cookie Cutter & Horizontal. Hit Conflate. Note the conflation time will vary depending on the specs of the machine. This example took about 10-15 min to run locally. 50+ reviews should appear. ----> Instead of launching into review mode, it kicks back an error (will be happy to include the log upon request due to length) Hypothesized it could be any issue with the data, but I attempted the above cookie cut conflation on Hoot NOME with zero issues. Would somebody mind trying to replicate the results on hoot release?
3.0
Issue with Cookie Cutter Conflation - Attempted the following method: **Cookie Cutter & Horizontal** For this example we’ll need to create two custom translations, one for the DC Street Centerline Data* described in and a second simple translation to ensure that the OSM highway data for DC maintains the correct osm tags. Ingest DC Street datasets using the recently created custom translation files. Note the different Translation Schema files used to import each dataset. - district_of_columbia_highway.zip - Street_Centerline_Light.shp Return to Map and select the Street Centerlines Light as the Reference Dataset, dc highway osm as the Secondary dataset. Click ‘Conflate’ Change the value for Type to Cookie Cutter & Horizontal. Hit Conflate. Note the conflation time will vary depending on the specs of the machine. This example took about 10-15 min to run locally. 50+ reviews should appear. ----> Instead of launching into review mode, it kicks back an error (will be happy to include the log upon request due to length) Hypothesized it could be any issue with the data, but I attempted the above cookie cut conflation on Hoot NOME with zero issues. Would somebody mind trying to replicate the results on hoot release?
non_main
issue with cookie cutter conflation attempted the following method cookie cutter horizontal for this example we’ll need to create two custom translations one for the dc street centerline data described in and a second simple translation to ensure that the osm highway data for dc maintains the correct osm tags ingest dc street datasets using the recently created custom translation files note the different translation schema files used to import each dataset district of columbia highway zip street centerline light shp return to map and select the street centerlines light as the reference dataset dc highway osm as the secondary dataset click ‘conflate’ change the value for type to cookie cutter horizontal hit conflate note the conflation time will vary depending on the specs of the machine this example took about min to run locally reviews should appear instead of launching into review mode it kicks back an error will be happy to include the log upon request due to length hypothesized it could be any issue with the data but i attempted the above cookie cut conflation on hoot nome with zero issues would somebody mind trying to replicate the results on hoot release
0
191,347
14,593,932,920
IssuesEvent
2020-12-20 02:06:19
github-vet/rangeloop-pointer-findings
https://api.github.com/repos/github-vet/rangeloop-pointer-findings
closed
genuinetools/binctr: vendor/github.com/containerd/containerd/metadata/images_test.go; 3 LoC
fresh test tiny vendored
Found a possible issue in [genuinetools/binctr](https://www.github.com/genuinetools/binctr) at [vendor/github.com/containerd/containerd/metadata/images_test.go](https://github.com/genuinetools/binctr/blob/66e393036fad10eb6b9252036d3b90d9ccff7660/vendor/github.com/containerd/containerd/metadata/images_test.go#L128-L130) 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 result at line 129 may start a goroutine [Click here to see the code in its original context.](https://github.com/genuinetools/binctr/blob/66e393036fad10eb6b9252036d3b90d9ccff7660/vendor/github.com/containerd/containerd/metadata/images_test.go#L128-L130) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for _, result := range results { checkImagesEqual(t, &result, testset[result.Name], "list results did not match") } ``` </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: 66e393036fad10eb6b9252036d3b90d9ccff7660
1.0
genuinetools/binctr: vendor/github.com/containerd/containerd/metadata/images_test.go; 3 LoC - Found a possible issue in [genuinetools/binctr](https://www.github.com/genuinetools/binctr) at [vendor/github.com/containerd/containerd/metadata/images_test.go](https://github.com/genuinetools/binctr/blob/66e393036fad10eb6b9252036d3b90d9ccff7660/vendor/github.com/containerd/containerd/metadata/images_test.go#L128-L130) 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 result at line 129 may start a goroutine [Click here to see the code in its original context.](https://github.com/genuinetools/binctr/blob/66e393036fad10eb6b9252036d3b90d9ccff7660/vendor/github.com/containerd/containerd/metadata/images_test.go#L128-L130) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for _, result := range results { checkImagesEqual(t, &result, testset[result.Name], "list results did not match") } ``` </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: 66e393036fad10eb6b9252036d3b90d9ccff7660
non_main
genuinetools binctr vendor github com containerd containerd metadata images 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 result at line may start a goroutine click here to show the line s of go which triggered the analyzer go for result range results checkimagesequal t result testset list results did not match 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
131,504
5,153,075,964
IssuesEvent
2017-01-14 07:16:09
dhowe/AdLiPo
https://api.github.com/repos/dhowe/AdLiPo
opened
No hover/anchor for generated ads
priority: Low
should show 'AdLiPo-generated Ad' on hover and lead to the webpage on click...
1.0
No hover/anchor for generated ads - should show 'AdLiPo-generated Ad' on hover and lead to the webpage on click...
non_main
no hover anchor for generated ads should show adlipo generated ad on hover and lead to the webpage on click
0
3,526
13,880,405,430
IssuesEvent
2020-10-17 18:37:46
diofant/diofant
https://api.github.com/repos/diofant/diofant
closed
Remove dependency on strategies
core maintainability
As @mrocklin, said, he stops maintaining this library and only option is to fork it (under a different name), see [here](https://github.com/logpy/strategies/pull/12). ~~Maybe we should bundle (again :() part of this library and depend on [multipledispatch](https://github.com/mrocklin/multipledispatch), which seems to be supported.~~
True
Remove dependency on strategies - As @mrocklin, said, he stops maintaining this library and only option is to fork it (under a different name), see [here](https://github.com/logpy/strategies/pull/12). ~~Maybe we should bundle (again :() part of this library and depend on [multipledispatch](https://github.com/mrocklin/multipledispatch), which seems to be supported.~~
main
remove dependency on strategies as mrocklin said he stops maintaining this library and only option is to fork it under a different name see maybe we should bundle again part of this library and depend on which seems to be supported
1
115,560
17,316,944,771
IssuesEvent
2021-07-27 07:35:05
LingalaShalini/sqlite-3.21.0_before_fix
https://api.github.com/repos/LingalaShalini/sqlite-3.21.0_before_fix
opened
CVE-2018-20505 (High) detected in sqliteversion-3.21.0
security vulnerability
## CVE-2018-20505 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sqliteversion-3.21.0</b></p></summary> <p> <p>Official Git mirror of the SQLite source tree</p> <p>Library home page: <a href=https://github.com/sqlite/sqlite.git>https://github.com/sqlite/sqlite.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/LingalaShalini/sqlite-3.21.0_before_fix/commit/9207cbffdeef54b1999fcb8d4bd63811137b7df3">9207cbffdeef54b1999fcb8d4bd63811137b7df3</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>sqlite-3.21.0_before_fix/src/wherecode.c</b> </p> </details> <p></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> SQLite 3.25.2, when queries are run on a table with a malformed PRIMARY KEY, allows remote attackers to cause a denial of service (application crash) by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases). <p>Publish Date: 2019-04-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20505>CVE-2018-20505</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.sqlite.org/releaselog/3_26_0.html">https://www.sqlite.org/releaselog/3_26_0.html</a></p> <p>Release Date: 2019-04-03</p> <p>Fix Resolution: 3.26.0</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-2018-20505 (High) detected in sqliteversion-3.21.0 - ## CVE-2018-20505 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sqliteversion-3.21.0</b></p></summary> <p> <p>Official Git mirror of the SQLite source tree</p> <p>Library home page: <a href=https://github.com/sqlite/sqlite.git>https://github.com/sqlite/sqlite.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/LingalaShalini/sqlite-3.21.0_before_fix/commit/9207cbffdeef54b1999fcb8d4bd63811137b7df3">9207cbffdeef54b1999fcb8d4bd63811137b7df3</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>sqlite-3.21.0_before_fix/src/wherecode.c</b> </p> </details> <p></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> SQLite 3.25.2, when queries are run on a table with a malformed PRIMARY KEY, allows remote attackers to cause a denial of service (application crash) by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases). <p>Publish Date: 2019-04-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-20505>CVE-2018-20505</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.sqlite.org/releaselog/3_26_0.html">https://www.sqlite.org/releaselog/3_26_0.html</a></p> <p>Release Date: 2019-04-03</p> <p>Fix Resolution: 3.26.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_main
cve high detected in sqliteversion cve high severity vulnerability vulnerable library sqliteversion official git mirror of the sqlite source tree library home page a href found in head commit a href found in base branch master vulnerable source files sqlite before fix src wherecode c vulnerability details sqlite when queries are run on a table with a malformed primary key allows remote attackers to cause a denial of service application crash by leveraging the ability to run arbitrary sql statements such as in certain websql use cases publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
3,108
11,868,516,767
IssuesEvent
2020-03-26 09:20:22
chocolatey-community/chocolatey-package-requests
https://api.github.com/repos/chocolatey-community/chocolatey-package-requests
closed
RFM - Software Ideas Viewer
Status: Available For Maintainer(s)
## Current Maintainer - [x] I am the maintainer of the package and wish to pass it to someone else; ## Checklist - [x] Issue title starts with 'RFM - ' ## Existing Package Details Package URL: https://chocolatey.org/packages/software-ideas-viewer Package source URL: https://github.com/abejenaru/chocolatey-packages/tree/master/automatic/software-ideas-viewer
True
RFM - Software Ideas Viewer - ## Current Maintainer - [x] I am the maintainer of the package and wish to pass it to someone else; ## Checklist - [x] Issue title starts with 'RFM - ' ## Existing Package Details Package URL: https://chocolatey.org/packages/software-ideas-viewer Package source URL: https://github.com/abejenaru/chocolatey-packages/tree/master/automatic/software-ideas-viewer
main
rfm software ideas viewer current maintainer i am the maintainer of the package and wish to pass it to someone else checklist issue title starts with rfm existing package details package url package source url
1
2,304
8,235,302,867
IssuesEvent
2018-09-09 02:04:14
Homebrew/homebrew-cask
https://api.github.com/repos/Homebrew/homebrew-cask
opened
cask developer commands should set `homebrew.devcmdrun`
awaiting maintainer feedback core enhancement
cask dev commands `audit`, `create`, `doctor`, `edit` and `style` should set: `homebrew.devcmdrun` / `HOMEBREW_DEV_CMD_RUN` For `brew` developer commands this is done in: https://github.com/Homebrew/brew/blob/master/Library/Homebrew/brew.rb https://github.com/Homebrew/brew/blob/master/Library/Homebrew/brew.sh This should help with cases like https://github.com/Homebrew/homebrew-cask/pull/50462, https://github.com/Homebrew/homebrew-cask/issues/48051#issuecomment-397230667, https://github.com/Homebrew/homebrew-cask/pull/48489#issuecomment-397539860 Not sure what the best way would be to do this, maybe separate these commands out to a `dev-cmd` directory the same as `brew` does?
True
cask developer commands should set `homebrew.devcmdrun` - cask dev commands `audit`, `create`, `doctor`, `edit` and `style` should set: `homebrew.devcmdrun` / `HOMEBREW_DEV_CMD_RUN` For `brew` developer commands this is done in: https://github.com/Homebrew/brew/blob/master/Library/Homebrew/brew.rb https://github.com/Homebrew/brew/blob/master/Library/Homebrew/brew.sh This should help with cases like https://github.com/Homebrew/homebrew-cask/pull/50462, https://github.com/Homebrew/homebrew-cask/issues/48051#issuecomment-397230667, https://github.com/Homebrew/homebrew-cask/pull/48489#issuecomment-397539860 Not sure what the best way would be to do this, maybe separate these commands out to a `dev-cmd` directory the same as `brew` does?
main
cask developer commands should set homebrew devcmdrun cask dev commands audit create doctor edit and style should set homebrew devcmdrun homebrew dev cmd run for brew developer commands this is done in this should help with cases like not sure what the best way would be to do this maybe separate these commands out to a dev cmd directory the same as brew does
1
1,006
4,776,417,136
IssuesEvent
2016-10-27 13:43:51
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
Yum ignores notify handlers
affects_2.2 bug_report in progress P2 waiting_on_maintainer
<!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Bug Report ##### COMPONENT NAME <!--- Name of the plugin/module/task --> yum ##### ANSIBLE VERSION <!--- Paste verbatim output from “ansible --version” between quotes below --> ``` ansible 2.2.0.0 (stable-2.2 deb1e3ebc7) last updated 2016/10/26 14:40:50 (GMT -400) lib/ansible/modules/core: (detached HEAD 0881ba15c6) last updated 2016/10/26 14:43:13 (GMT -400) lib/ansible/modules/extras: (detached HEAD 47f4dd44f4) last updated 2016/10/26 14:43:17 (GMT -400) config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ansible 2.3.0 (devel 56086f3b9e) last updated 2016/10/26 15:06:06 (GMT -400) lib/ansible/modules/core: (detached HEAD c51ced56cc) last updated 2016/10/26 15:06:48 (GMT -400) lib/ansible/modules/extras: (detached HEAD 8ffe314ea5) last updated 2016/10/26 15:06:52 (GMT -400) config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ``` ##### CONFIGURATION <!--- Mention any settings you have changed/added/removed in ansible.cfg (or using the ANSIBLE_* environment variables). --> Default ##### OS / ENVIRONMENT <!--- Mention the OS you are running Ansible from, and the OS you are managing, or say “N/A” for anything that is not platform-specific. --> RHEL 7.2 ##### SUMMARY <!--- Explain the problem briefly --> ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem. For new features, show how the feature would be used. --> 1. Build a project directory similar to the one below: ``` ./ ├── group_vars │   └── rhel │   └── vars ├── hosts ├── main.yml └── roles └── test ├── handlers │   └── main.yml └── tasks └── main.yml ``` 2. Run playbook: ansible-playbook -i hosts main.yml <!--- Paste example playbooks or commands between quotes below --> ./main.yml ``` - hosts: all become: yes roles: - test ``` ./roles/test/handlers/main.yml ``` - name: handler1 debug: msg: "handler 1 run" - name: handler2 debug: msg: "handler 2 run" ``` ./roles/test/tasks/main.yml ``` - block: - name: "ensure lsof is not installed" yum: name: lsof state: absent - name: "Double check" command: "yum list installed lsof" ignore_errors: true - name: "this should run handlers" yum: name: lsof state: present notify: - handler1 - handler2 - name: "Double check" shell: "yum list installed lsof" tags: - t-test ``` ##### EXPECTED RESULTS <!--- What did you expect to happen when running the steps above? --> As seen in 2.1.2: ``` PLAY [all] ********************************************************************* TASK [setup] ******************************************************************* ok: [host] TASK [test : ensure lsof is not installed] ************************************* changed: [host] TASK [test : Double check] ***************************************************** fatal: [host]: FAILED! => {"changed": true, "cmd": ["yum", "list", "installed", "lsof"], "delta": "0:00:00.260975", "end": "2016-10-26 16:07:16.555671", "failed": true, "rc": 1, "start": "2016-10-26 16:07:16.294696", "stderr": "Error: No matching Packages to list", "stdout": "Loaded plugins: amazon-id, rhui-lb, search-disabled-repos", "stdout_lines": ["Loaded plugins: amazon-id, rhui-lb, search-disabled-repos"], "warnings": ["Consider using yum module rather than running yum"]} ...ignoring TASK [test : this should run handlers] ***************************************** changed: [host] TASK [test : Double check] ***************************************************** changed: [host] [WARNING]: Consider using yum module rather than running yum RUNNING HANDLER [test : handler1] ********************************************** ok: [host] => { "msg": "handler 1 run" } RUNNING HANDLER [test : handler2] ********************************************** ok: [host] => { "msg": "handler 2 run" } PLAY RECAP ********************************************************************* host : ok=7 changed=3 unreachable=0 failed=0 ``` Handlers are ran ##### ACTUAL RESULTS <!--- What actually happened? If possible run with extra verbosity (-vvvv) --> Observed in 2.2 and 2.3: ``` PLAY [all] ********************************************************************* TASK [setup] ******************************************************************* ok: [host] TASK [test : ensure lsof is not installed] ************************************* changed: [host] TASK [test : Double check] ***************************************************** fatal: [host]: FAILED! => {"changed": true, "cmd": ["yum", "list", "installed", "lsof"], "delta": "0:00:00.270957", "end": "2016-10-26 16:05:45.987169", "failed": true, "rc": 1, "start": "2016-10-26 16:05:45.716212", "stderr": "Error: No matching Packages to list", "stdout": "Loaded plugins: amazon-id, rhui-lb, search-disabled-repos", "stdout_lines": ["Loaded plugins: amazon-id, rhui-lb, search-disabled-repos"], "warnings": ["Consider using yum module rather than running yum"]} ...ignoring TASK [test : this should run handlers] ***************************************** changed: [host] TASK [test : Double check] ***************************************************** changed: [host] [WARNING]: Consider using yum module rather than running yum PLAY RECAP ********************************************************************* host : ok=5 changed=3 unreachable=0 failed=0 ``` Handlers are not run
True
Yum ignores notify handlers - <!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Bug Report ##### COMPONENT NAME <!--- Name of the plugin/module/task --> yum ##### ANSIBLE VERSION <!--- Paste verbatim output from “ansible --version” between quotes below --> ``` ansible 2.2.0.0 (stable-2.2 deb1e3ebc7) last updated 2016/10/26 14:40:50 (GMT -400) lib/ansible/modules/core: (detached HEAD 0881ba15c6) last updated 2016/10/26 14:43:13 (GMT -400) lib/ansible/modules/extras: (detached HEAD 47f4dd44f4) last updated 2016/10/26 14:43:17 (GMT -400) config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ansible 2.3.0 (devel 56086f3b9e) last updated 2016/10/26 15:06:06 (GMT -400) lib/ansible/modules/core: (detached HEAD c51ced56cc) last updated 2016/10/26 15:06:48 (GMT -400) lib/ansible/modules/extras: (detached HEAD 8ffe314ea5) last updated 2016/10/26 15:06:52 (GMT -400) config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ``` ##### CONFIGURATION <!--- Mention any settings you have changed/added/removed in ansible.cfg (or using the ANSIBLE_* environment variables). --> Default ##### OS / ENVIRONMENT <!--- Mention the OS you are running Ansible from, and the OS you are managing, or say “N/A” for anything that is not platform-specific. --> RHEL 7.2 ##### SUMMARY <!--- Explain the problem briefly --> ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem. For new features, show how the feature would be used. --> 1. Build a project directory similar to the one below: ``` ./ ├── group_vars │   └── rhel │   └── vars ├── hosts ├── main.yml └── roles └── test ├── handlers │   └── main.yml └── tasks └── main.yml ``` 2. Run playbook: ansible-playbook -i hosts main.yml <!--- Paste example playbooks or commands between quotes below --> ./main.yml ``` - hosts: all become: yes roles: - test ``` ./roles/test/handlers/main.yml ``` - name: handler1 debug: msg: "handler 1 run" - name: handler2 debug: msg: "handler 2 run" ``` ./roles/test/tasks/main.yml ``` - block: - name: "ensure lsof is not installed" yum: name: lsof state: absent - name: "Double check" command: "yum list installed lsof" ignore_errors: true - name: "this should run handlers" yum: name: lsof state: present notify: - handler1 - handler2 - name: "Double check" shell: "yum list installed lsof" tags: - t-test ``` ##### EXPECTED RESULTS <!--- What did you expect to happen when running the steps above? --> As seen in 2.1.2: ``` PLAY [all] ********************************************************************* TASK [setup] ******************************************************************* ok: [host] TASK [test : ensure lsof is not installed] ************************************* changed: [host] TASK [test : Double check] ***************************************************** fatal: [host]: FAILED! => {"changed": true, "cmd": ["yum", "list", "installed", "lsof"], "delta": "0:00:00.260975", "end": "2016-10-26 16:07:16.555671", "failed": true, "rc": 1, "start": "2016-10-26 16:07:16.294696", "stderr": "Error: No matching Packages to list", "stdout": "Loaded plugins: amazon-id, rhui-lb, search-disabled-repos", "stdout_lines": ["Loaded plugins: amazon-id, rhui-lb, search-disabled-repos"], "warnings": ["Consider using yum module rather than running yum"]} ...ignoring TASK [test : this should run handlers] ***************************************** changed: [host] TASK [test : Double check] ***************************************************** changed: [host] [WARNING]: Consider using yum module rather than running yum RUNNING HANDLER [test : handler1] ********************************************** ok: [host] => { "msg": "handler 1 run" } RUNNING HANDLER [test : handler2] ********************************************** ok: [host] => { "msg": "handler 2 run" } PLAY RECAP ********************************************************************* host : ok=7 changed=3 unreachable=0 failed=0 ``` Handlers are ran ##### ACTUAL RESULTS <!--- What actually happened? If possible run with extra verbosity (-vvvv) --> Observed in 2.2 and 2.3: ``` PLAY [all] ********************************************************************* TASK [setup] ******************************************************************* ok: [host] TASK [test : ensure lsof is not installed] ************************************* changed: [host] TASK [test : Double check] ***************************************************** fatal: [host]: FAILED! => {"changed": true, "cmd": ["yum", "list", "installed", "lsof"], "delta": "0:00:00.270957", "end": "2016-10-26 16:05:45.987169", "failed": true, "rc": 1, "start": "2016-10-26 16:05:45.716212", "stderr": "Error: No matching Packages to list", "stdout": "Loaded plugins: amazon-id, rhui-lb, search-disabled-repos", "stdout_lines": ["Loaded plugins: amazon-id, rhui-lb, search-disabled-repos"], "warnings": ["Consider using yum module rather than running yum"]} ...ignoring TASK [test : this should run handlers] ***************************************** changed: [host] TASK [test : Double check] ***************************************************** changed: [host] [WARNING]: Consider using yum module rather than running yum PLAY RECAP ********************************************************************* host : ok=5 changed=3 unreachable=0 failed=0 ``` Handlers are not run
main
yum ignores notify handlers issue type bug report component name yum ansible version ansible stable last updated gmt lib ansible modules core detached head last updated gmt lib ansible modules extras detached head last updated gmt config file etc ansible ansible cfg configured module search path default w o overrides ansible devel last updated gmt lib ansible modules core detached head last updated gmt lib ansible modules extras detached head last updated gmt config file etc ansible ansible cfg configured module search path default w o overrides configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables default os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific rhel summary steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used build a project directory similar to the one below ├── group vars │   └── rhel │   └── vars ├── hosts ├── main yml └── roles └── test ├── handlers │   └── main yml └── tasks └── main yml run playbook ansible playbook i hosts main yml main yml hosts all become yes roles test roles test handlers main yml name debug msg handler run name debug msg handler run roles test tasks main yml block name ensure lsof is not installed yum name lsof state absent name double check command yum list installed lsof ignore errors true name this should run handlers yum name lsof state present notify name double check shell yum list installed lsof tags t test expected results as seen in play task ok task changed task fatal failed changed true cmd delta end failed true rc start stderr error no matching packages to list stdout loaded plugins amazon id rhui lb search disabled repos stdout lines warnings ignoring task changed task changed consider using yum module rather than running yum running handler ok msg handler run running handler ok msg handler run play recap host ok changed unreachable failed handlers are ran actual results observed in and play task ok task changed task fatal failed changed true cmd delta end failed true rc start stderr error no matching packages to list stdout loaded plugins amazon id rhui lb search disabled repos stdout lines warnings ignoring task changed task changed consider using yum module rather than running yum play recap host ok changed unreachable failed handlers are not run
1
62,256
14,656,473,915
IssuesEvent
2020-12-28 13:30:23
fu1771695yongxie/clipboard.js
https://api.github.com/repos/fu1771695yongxie/clipboard.js
opened
CVE-2019-16769 (Medium) detected in serialize-javascript-1.9.1.tgz
security vulnerability
## CVE-2019-16769 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-javascript-1.9.1.tgz</b></p></summary> <p>Serialize JavaScript to a superset of JSON that includes regular expressions and functions.</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz</a></p> <p>Path to dependency file: clipboard.js/package.json</p> <p>Path to vulnerable library: clipboard.js/node_modules/serialize-javascript/package.json</p> <p> Dependency Hierarchy: - uglifyjs-webpack-plugin-2.2.0.tgz (Root Library) - :x: **serialize-javascript-1.9.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/fu1771695yongxie/clipboard.js/commit/499e26624e3c275765cebccafe6b6a5fd9985337">499e26624e3c275765cebccafe6b6a5fd9985337</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 serialize-javascript npm package before version 2.1.1 is vulnerable to Cross-site Scripting (XSS). It does not properly mitigate against unsafe characters in serialized regular expressions. This vulnerability is not affected on Node.js environment since Node.js's implementation of RegExp.prototype.toString() backslash-escapes all forward slashes in regular expressions. If serialized data of regular expression objects are used in an environment other than Node.js, it is affected by this vulnerability. <p>Publish Date: 2019-12-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16769>CVE-2019-16769</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.4</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769</a></p> <p>Release Date: 2019-12-05</p> <p>Fix Resolution: v2.1.1</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-16769 (Medium) detected in serialize-javascript-1.9.1.tgz - ## CVE-2019-16769 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-javascript-1.9.1.tgz</b></p></summary> <p>Serialize JavaScript to a superset of JSON that includes regular expressions and functions.</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz</a></p> <p>Path to dependency file: clipboard.js/package.json</p> <p>Path to vulnerable library: clipboard.js/node_modules/serialize-javascript/package.json</p> <p> Dependency Hierarchy: - uglifyjs-webpack-plugin-2.2.0.tgz (Root Library) - :x: **serialize-javascript-1.9.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/fu1771695yongxie/clipboard.js/commit/499e26624e3c275765cebccafe6b6a5fd9985337">499e26624e3c275765cebccafe6b6a5fd9985337</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 serialize-javascript npm package before version 2.1.1 is vulnerable to Cross-site Scripting (XSS). It does not properly mitigate against unsafe characters in serialized regular expressions. This vulnerability is not affected on Node.js environment since Node.js's implementation of RegExp.prototype.toString() backslash-escapes all forward slashes in regular expressions. If serialized data of regular expression objects are used in an environment other than Node.js, it is affected by this vulnerability. <p>Publish Date: 2019-12-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16769>CVE-2019-16769</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.4</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769</a></p> <p>Release Date: 2019-12-05</p> <p>Fix Resolution: v2.1.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_main
cve medium detected in serialize javascript tgz cve medium severity vulnerability vulnerable library serialize javascript tgz serialize javascript to a superset of json that includes regular expressions and functions library home page a href path to dependency file clipboard js package json path to vulnerable library clipboard js node modules serialize javascript package json dependency hierarchy uglifyjs webpack plugin tgz root library x serialize javascript tgz vulnerable library found in head commit a href found in base branch master vulnerability details the serialize javascript npm package before version is vulnerable to cross site scripting xss it does not properly mitigate against unsafe characters in serialized regular expressions this vulnerability is not affected on node js environment since node js s implementation of regexp prototype tostring backslash escapes all forward slashes in regular expressions if serialized data of regular expression objects are used in an environment other than node js it is affected by this vulnerability publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low 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 step up your open source security game with whitesource
0
208,092
16,103,542,887
IssuesEvent
2021-04-27 12:30:08
iotaledger/iota.js
https://api.github.com/repos/iotaledger/iota.js
closed
documentation is misleading when it comes to sending transactions
Documentation L - Assigned
I have: ```javascript iota.api.sendTransfer(seed, 2, 18, [ { address: 'AIB9GPOOOJFPWOKNLHUU9NSUDHDYJHDQL9OLYXLQEAXYWEARPAMPWPDKTZYOOM9KTWYDMFNNILLEKB9N9HJOSUEJLD', value: 4 } ], (err, data) => { console.log('err: ', err) console.log('data: ', data) }) ``` now when I run that I get: ``` capaj@capaj-i7-4771:~/git_projects/gratiota$ node test.js err: Error: Request Error: COMMAND attachToTangle is not available on this node at Object.requestError (/home/capaj/git_projects/gratiota/node_modules/iota.lib.js/lib/errors/requestErrors.js:11:12) at makeRequest.prepareResult (/home/capaj/git_projects/gratiota/node_modules/iota.lib.js/lib/utils/makeRequest.js:167:24) at exports.XMLHttpRequest.request.onreadystatechange (/home/capaj/git_projects/gratiota/node_modules/iota.lib.js/lib/utils/makeRequest.js:61:25) at exports.XMLHttpRequest.dispatchEvent (/home/capaj/git_projects/gratiota/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:591:25) at setState (/home/capaj/git_projects/gratiota/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:610:14) at IncomingMessage.<anonymous> (/home/capaj/git_projects/gratiota/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:447:13) at emitNone (events.js:110:20) at IncomingMessage.emit (events.js:207:7) at endReadableNT (_stream_readable.js:1045:12) at _combinedTickCallback (internal/process/next_tick.js:138:11) data: undefined ``` is this command removed from IRI? Is the JS lib out of date?
1.0
documentation is misleading when it comes to sending transactions - I have: ```javascript iota.api.sendTransfer(seed, 2, 18, [ { address: 'AIB9GPOOOJFPWOKNLHUU9NSUDHDYJHDQL9OLYXLQEAXYWEARPAMPWPDKTZYOOM9KTWYDMFNNILLEKB9N9HJOSUEJLD', value: 4 } ], (err, data) => { console.log('err: ', err) console.log('data: ', data) }) ``` now when I run that I get: ``` capaj@capaj-i7-4771:~/git_projects/gratiota$ node test.js err: Error: Request Error: COMMAND attachToTangle is not available on this node at Object.requestError (/home/capaj/git_projects/gratiota/node_modules/iota.lib.js/lib/errors/requestErrors.js:11:12) at makeRequest.prepareResult (/home/capaj/git_projects/gratiota/node_modules/iota.lib.js/lib/utils/makeRequest.js:167:24) at exports.XMLHttpRequest.request.onreadystatechange (/home/capaj/git_projects/gratiota/node_modules/iota.lib.js/lib/utils/makeRequest.js:61:25) at exports.XMLHttpRequest.dispatchEvent (/home/capaj/git_projects/gratiota/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:591:25) at setState (/home/capaj/git_projects/gratiota/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:610:14) at IncomingMessage.<anonymous> (/home/capaj/git_projects/gratiota/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:447:13) at emitNone (events.js:110:20) at IncomingMessage.emit (events.js:207:7) at endReadableNT (_stream_readable.js:1045:12) at _combinedTickCallback (internal/process/next_tick.js:138:11) data: undefined ``` is this command removed from IRI? Is the JS lib out of date?
non_main
documentation is misleading when it comes to sending transactions i have javascript iota api sendtransfer seed address value err data console log err err console log data data now when i run that i get capaj capaj git projects gratiota node test js err error request error command attachtotangle is not available on this node at object requesterror home capaj git projects gratiota node modules iota lib js lib errors requesterrors js at makerequest prepareresult home capaj git projects gratiota node modules iota lib js lib utils makerequest js at exports xmlhttprequest request onreadystatechange home capaj git projects gratiota node modules iota lib js lib utils makerequest js at exports xmlhttprequest dispatchevent home capaj git projects gratiota node modules xmlhttprequest lib xmlhttprequest js at setstate home capaj git projects gratiota node modules xmlhttprequest lib xmlhttprequest js at incomingmessage home capaj git projects gratiota node modules xmlhttprequest lib xmlhttprequest js at emitnone events js at incomingmessage emit events js at endreadablent stream readable js at combinedtickcallback internal process next tick js data undefined is this command removed from iri is the js lib out of date
0
706
4,282,325,587
IssuesEvent
2016-07-15 08:41:09
gogits/gogs
https://api.github.com/repos/gogits/gogs
closed
Rocket.Chat webhook: slack failed with: {"success":true}
kind/bug status/assigned to maintainer
- Gogs version: 0.9.28.0527 - Git version: 2.7.4 - Operating system: Ubuntu 16.04 - Database: - [ ] PostgreSQL - [x] MySQL - [ ] SQLite - Can you reproduce the bug at http://try.gogs.io: - [ ] Yes (provide example URL) - [ ] No - [x] Not relevant - Log: "[...rc/runtime/asm_arm.s:990 goexit()] [E] slack failed with: {"success":true} [T] Hook delivery failed: 1053b9b9-2c6f-48c6-8c40-cba5c420ace2" Hello, I am using Rocket.Chat and have configured a webhook in "slack" format in Gogs (since Rocket.Chat does support this without much configuration). Even though the webhook works fine, Gogs thinks it failed, because the body response is "{"success":true}", instead of the "ok" that Gogs seems to expect. I've been looking at Slack's webhook documentation, and it does not specify what response Slack will return. Instead it only says: "[..] in most cases you'll receive a "HTTP 200 OK" response with a JSON body indicating that your message posted successfully, [...]". So I feel Gogs should just look at HTTP 200 OK (like it does on the custom format code path), since assuming the response is always going to be the text "ok" seems problematic if Slack changes this. (As they have not defined the response format, they probably don't expect people to rely on this exact format either). Anyway, still works, just thought it might confuse people.
True
Rocket.Chat webhook: slack failed with: {"success":true} - - Gogs version: 0.9.28.0527 - Git version: 2.7.4 - Operating system: Ubuntu 16.04 - Database: - [ ] PostgreSQL - [x] MySQL - [ ] SQLite - Can you reproduce the bug at http://try.gogs.io: - [ ] Yes (provide example URL) - [ ] No - [x] Not relevant - Log: "[...rc/runtime/asm_arm.s:990 goexit()] [E] slack failed with: {"success":true} [T] Hook delivery failed: 1053b9b9-2c6f-48c6-8c40-cba5c420ace2" Hello, I am using Rocket.Chat and have configured a webhook in "slack" format in Gogs (since Rocket.Chat does support this without much configuration). Even though the webhook works fine, Gogs thinks it failed, because the body response is "{"success":true}", instead of the "ok" that Gogs seems to expect. I've been looking at Slack's webhook documentation, and it does not specify what response Slack will return. Instead it only says: "[..] in most cases you'll receive a "HTTP 200 OK" response with a JSON body indicating that your message posted successfully, [...]". So I feel Gogs should just look at HTTP 200 OK (like it does on the custom format code path), since assuming the response is always going to be the text "ok" seems problematic if Slack changes this. (As they have not defined the response format, they probably don't expect people to rely on this exact format either). Anyway, still works, just thought it might confuse people.
main
rocket chat webhook slack failed with success true gogs version git version operating system ubuntu database postgresql mysql sqlite can you reproduce the bug at yes provide example url no not relevant log slack failed with success true hook delivery failed hello i am using rocket chat and have configured a webhook in slack format in gogs since rocket chat does support this without much configuration even though the webhook works fine gogs thinks it failed because the body response is success true instead of the ok that gogs seems to expect i ve been looking at slack s webhook documentation and it does not specify what response slack will return instead it only says in most cases you ll receive a http ok response with a json body indicating that your message posted successfully so i feel gogs should just look at http ok like it does on the custom format code path since assuming the response is always going to be the text ok seems problematic if slack changes this as they have not defined the response format they probably don t expect people to rely on this exact format either anyway still works just thought it might confuse people
1
107,166
9,203,606,895
IssuesEvent
2019-03-08 03:15:32
tikv/tikv
https://api.github.com/repos/tikv/tikv
closed
Fix the `buffer::tests::test_vec_reallocate` test
C: Test/Bench
The test is ignored since it has been flaky in CI see [this comment](https://github.com/tikv/tikv/pull/4300#issuecomment-470319267) for details.
1.0
Fix the `buffer::tests::test_vec_reallocate` test - The test is ignored since it has been flaky in CI see [this comment](https://github.com/tikv/tikv/pull/4300#issuecomment-470319267) for details.
non_main
fix the buffer tests test vec reallocate test the test is ignored since it has been flaky in ci see for details
0