Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
4
112
repo_url
stringlengths
33
141
action
stringclasses
3 values
title
stringlengths
1
1.02k
labels
stringlengths
4
1.54k
body
stringlengths
1
262k
index
stringclasses
17 values
text_combine
stringlengths
95
262k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
287,423
24,829,140,047
IssuesEvent
2022-10-26 00:37:42
microsoft/vscode
https://api.github.com/repos/microsoft/vscode
closed
Test: Workspace trust setting indicators in the Settings editor
testplan-item
Refs: #157564 - [x] macOS @digitarald - [x] linux @aeschli - [x] windows @gregvanl Complexity: 3 Authors: @rzhao271, @sandy081 [Create Issue](https://github.com/microsoft/vscode/issues/new?body=Testing+%23164477%0A%0A&assignees=rzhao271,sandy081) --- <!-- Please write your test here. --> The look of workspace restricted settings is now different in the Settings editor. 1. Open a restricted workspace. 2. In the Manage Workspace Trust view, click on the part that says "X workspace settings aren't applied". 3. The Settings editor should show up with the Workspace tab opened and the restricted settings visible. 4. The restricted settings should have an indicator on them. The indicator currently has a warning icon on it to be extra noticeable. 5. A user should be able to change the setting value of a restricted setting and have the new value reflected in the Settings editor. The JSON file should also be updated with the new value. However, the setting in the JSON file should have a warning on it also saying that the setting cannot be applied in an untrusted workspace. 6. Use a screenreader to focus onto the restricted setting in the Settings editor. Screenreaders currently cannot focus onto the indicators themselves, but when they focus onto the setting, a paraphrased version of the indicator information should be read out.
1.0
Test: Workspace trust setting indicators in the Settings editor - Refs: #157564 - [x] macOS @digitarald - [x] linux @aeschli - [x] windows @gregvanl Complexity: 3 Authors: @rzhao271, @sandy081 [Create Issue](https://github.com/microsoft/vscode/issues/new?body=Testing+%23164477%0A%0A&assignees=rzhao271,sandy081) --- <!-- Please write your test here. --> The look of workspace restricted settings is now different in the Settings editor. 1. Open a restricted workspace. 2. In the Manage Workspace Trust view, click on the part that says "X workspace settings aren't applied". 3. The Settings editor should show up with the Workspace tab opened and the restricted settings visible. 4. The restricted settings should have an indicator on them. The indicator currently has a warning icon on it to be extra noticeable. 5. A user should be able to change the setting value of a restricted setting and have the new value reflected in the Settings editor. The JSON file should also be updated with the new value. However, the setting in the JSON file should have a warning on it also saying that the setting cannot be applied in an untrusted workspace. 6. Use a screenreader to focus onto the restricted setting in the Settings editor. Screenreaders currently cannot focus onto the indicators themselves, but when they focus onto the setting, a paraphrased version of the indicator information should be read out.
test
test workspace trust setting indicators in the settings editor refs macos digitarald linux aeschli windows gregvanl complexity authors the look of workspace restricted settings is now different in the settings editor open a restricted workspace in the manage workspace trust view click on the part that says x workspace settings aren t applied the settings editor should show up with the workspace tab opened and the restricted settings visible the restricted settings should have an indicator on them the indicator currently has a warning icon on it to be extra noticeable a user should be able to change the setting value of a restricted setting and have the new value reflected in the settings editor the json file should also be updated with the new value however the setting in the json file should have a warning on it also saying that the setting cannot be applied in an untrusted workspace use a screenreader to focus onto the restricted setting in the settings editor screenreaders currently cannot focus onto the indicators themselves but when they focus onto the setting a paraphrased version of the indicator information should be read out
1
248,911
21,088,774,800
IssuesEvent
2022-04-04 00:39:35
lhain08/FitbitDashboard
https://api.github.com/repos/lhain08/FitbitDashboard
closed
Create Mock Client and Tests
testing
Create a mock client that can be injected into the data manager and test the manager with a fake client.
1.0
Create Mock Client and Tests - Create a mock client that can be injected into the data manager and test the manager with a fake client.
test
create mock client and tests create a mock client that can be injected into the data manager and test the manager with a fake client
1
188,679
6,779,843,781
IssuesEvent
2017-10-29 05:59:17
sebnitu/BaseWeb
https://api.github.com/repos/sebnitu/BaseWeb
opened
Variable table of contents link broken on forms page
Area: Docs Priority: High Type: Bug
Which is because I think it's using the wrong heading element `h2` instead of `h3`: http://getbaseweb.com/docs/elements/forms/
1.0
Variable table of contents link broken on forms page - Which is because I think it's using the wrong heading element `h2` instead of `h3`: http://getbaseweb.com/docs/elements/forms/
non_test
variable table of contents link broken on forms page which is because i think it s using the wrong heading element instead of
0
100,212
8,727,923,165
IssuesEvent
2018-12-10 16:07:49
edenlabllc/ehealth.api
https://api.github.com/repos/edenlabllc/ehealth.api
closed
Add filter program_id to get drugs
BE [zube]: In Test project/reimbursement
As a doctor I want to filter drugs with medical_program so that I know what kind of drugs are connected with which medical_program - [apiary](https://uaehealthapi.docs.apiary.io/#reference/public.-reimbursement/drugs/get-drugs-list) - [confluence](https://edenlab.atlassian.net/wiki/x/jpYz) child of edenlabllc/ehealth.api#3474
1.0
Add filter program_id to get drugs - As a doctor I want to filter drugs with medical_program so that I know what kind of drugs are connected with which medical_program - [apiary](https://uaehealthapi.docs.apiary.io/#reference/public.-reimbursement/drugs/get-drugs-list) - [confluence](https://edenlab.atlassian.net/wiki/x/jpYz) child of edenlabllc/ehealth.api#3474
test
add filter program id to get drugs as a doctor i want to filter drugs with medical program so that i know what kind of drugs are connected with which medical program child of edenlabllc ehealth api
1
110,436
23,932,877,791
IssuesEvent
2022-09-10 20:20:34
rust-lang/rust
https://api.github.com/repos/rust-lang/rust
closed
llvm failed to generate code when trait_upcasting feature used
I-crash A-codegen E-needs-test C-bug requires-nightly F-trait_upcasting
<!-- Thank you for filing a bug report! 🐛 Please provide a short summary of the bug, along with any information you feel relevant to replicating the bug. --> I tried this code: ```rust #![feature(trait_upcasting)] pub trait A {} pub trait B {} pub trait C: A + B {} impl<X: A + B> C for X {} pub fn test<'a, T>(view: T) -> Option<&'a mut dyn B> where T: IntoIterator<Item = &'a mut dyn B>, { return Some(view.into_iter().next().unwrap()); } fn main() { let mut a: Vec<Box<dyn C>> = Vec::new(); test(a.iter_mut().map(|c| c.as_mut() as &mut dyn B)); } ``` I expected to see this happen: compile successfully Instead, this happened: get a compile error: ``` Invalid InsertValueInst operands! %13 = insertvalue { {}*, [3 x i64]* } %12, i8* %11, 1, !dbg !170 in function _ZN6viewer6viewer10controller4test1t28_$u7b$$u7b$closure$u7d$$u7d$17h1000438316d202ffE LLVM ERROR: Broken function found, compilation aborted! ``` ### Meta <!-- If you're using the stable version of the compiler, you should also check if the bug also exists in the beta or nightly versions. --> `rustc --version --verbose`: ``` rustc 1.64.0-nightly (87588a2af 2022-07-13) binary: rustc commit-hash: 87588a2afd9ca903366f0deaf84d805f34469384 commit-date: 2022-07-13 host: x86_64-apple-darwin release: 1.64.0-nightly LLVM version: 14.0.6 ``` no other backtrace logged only debug build has this issue
1.0
llvm failed to generate code when trait_upcasting feature used - <!-- Thank you for filing a bug report! 🐛 Please provide a short summary of the bug, along with any information you feel relevant to replicating the bug. --> I tried this code: ```rust #![feature(trait_upcasting)] pub trait A {} pub trait B {} pub trait C: A + B {} impl<X: A + B> C for X {} pub fn test<'a, T>(view: T) -> Option<&'a mut dyn B> where T: IntoIterator<Item = &'a mut dyn B>, { return Some(view.into_iter().next().unwrap()); } fn main() { let mut a: Vec<Box<dyn C>> = Vec::new(); test(a.iter_mut().map(|c| c.as_mut() as &mut dyn B)); } ``` I expected to see this happen: compile successfully Instead, this happened: get a compile error: ``` Invalid InsertValueInst operands! %13 = insertvalue { {}*, [3 x i64]* } %12, i8* %11, 1, !dbg !170 in function _ZN6viewer6viewer10controller4test1t28_$u7b$$u7b$closure$u7d$$u7d$17h1000438316d202ffE LLVM ERROR: Broken function found, compilation aborted! ``` ### Meta <!-- If you're using the stable version of the compiler, you should also check if the bug also exists in the beta or nightly versions. --> `rustc --version --verbose`: ``` rustc 1.64.0-nightly (87588a2af 2022-07-13) binary: rustc commit-hash: 87588a2afd9ca903366f0deaf84d805f34469384 commit-date: 2022-07-13 host: x86_64-apple-darwin release: 1.64.0-nightly LLVM version: 14.0.6 ``` no other backtrace logged only debug build has this issue
non_test
llvm failed to generate code when trait upcasting feature used thank you for filing a bug report 🐛 please provide a short summary of the bug along with any information you feel relevant to replicating the bug i tried this code rust pub trait a pub trait b pub trait c a b impl c for x pub fn test view t option where t intoiterator return some view into iter next unwrap fn main let mut a vec vec new test a iter mut map c c as mut as mut dyn b i expected to see this happen compile successfully instead this happened get a compile error invalid insertvalueinst operands insertvalue dbg in function closure llvm error broken function found compilation aborted meta if you re using the stable version of the compiler you should also check if the bug also exists in the beta or nightly versions rustc version verbose rustc nightly binary rustc commit hash commit date host apple darwin release nightly llvm version no other backtrace logged only debug build has this issue
0
182,794
14,163,303,872
IssuesEvent
2020-11-12 02:02:09
OpenMined/PySyft
https://api.github.com/repos/OpenMined/PySyft
closed
Add torch.Tensor.index_put to allowlist and test suite
Priority: 2 - High :cold_sweat: Severity: 3 - Medium :unamused: Status: Available :wave: Type: New Feature :heavy_plus_sign: Type: Testing :test_tube:
# Description This issue is a part of Syft 0.3.0 Epic 2: https://github.com/OpenMined/PySyft/issues/3696 In this issue, you will be adding support for remote execution of the torch.Tensor.index_put method or property. This might be a really small project (literally a one-liner) or it might require adding significant functionality to PySyft OR to the testing suite in order to make sure the feature is both functional and tested. ## Step 0: Run tests and ./scripts/pre_commit.sh Before you get started with this project, let's make sure you have everything building and testing correctly. Clone the codebase and run: ```pip uninstall syft``` followed by ```pip install -e .``` Then run the pre-commit file (which will also run the tests) ```./scripts/pre_commit.sh``` If all of these tests pass, continue on. If not, make sure you have all the dependencies in requirements.txt installed, etc. ## Step 1: Uncomment your method in the allowlist.py file Inside [allowlist.py](https://github.com/OpenMined/PySyft/blob/syft_0.3.0/src/syft/lib/torch/allowlist.py) you will find a huge dictionary of methods. Find your method and uncomment the line its on. At the time of writing this Issue (WARNING: THIS MAY HAVE CHANGED) the dictionary maps from the string name of the method (in your case 'torch.Tensor.index_put') to the string representation of the type the method returns. ## Step 2: Run Unit Tests Run the following: ```python setup.py test``` And wait to see if some of the tests fail. Why might the tests fail now? I'm so glad you asked! https://github.com/OpenMined/PySyft/blob/syft_0.3.0/tests/syft/lib/torch/tensor/tensor_remote_method_api_suite_test.py In this file you'll find the torch method test suite. It AUTOMATICALLY loads all methods from the allowlist.py file you modified in the previous step. It attempts to test them. # Step 3: If you get a Failing Test If you get a failing test, this could be for one of a few reasons: ### Reason 1 - The testing suite passed in non-compatible arguments The testing suite is pretty dumb. It literally just has a permutation of possible arguments to pass into every method on torch tensors. So, if one of those permutations doesn't work for your method (aka... perhaps it tries to call your method without any arguments but torch.Tensor.index_put actually requires some) then the test will fail if the error hasn't been seen before. If this happens - don't worry! Just look inside the only test in that file and look for the huge lists of error types to ignore. Add your error to the list and keep going!!! *WARNING:* make sure that the testing suite actually tests your method via remote execution once you've gotten all the tests passing. Aka - if the testing suite doesn't have ANY matching argument permutations for your method, then you're literally creating a bunch of unit tests that do absolutely nothing. If this is the case, then ADD MORE ARGUMENT TYPES TO THE TESTING SUITE so that your argument gets run via remote execution. DO NOT CLOSE THIS ISSUE until you can verify that torch.Tensor.index_put is actually executed remotely inside of a unit tests (and not skipped). Aka - at least one of the test_all_allowlisted_tensor_methods_work_remotely_on_all_types unit tests with your method should run ALL THE WAY TO THE END (instead of skipping the last part.) *Note:* adding another argument type might require some serialization work if we don't support arguments of that type yet. If so, this is your job to add it to the protobuf files in order to close this issue! ### Reason 2 - torch.Tensor.index_put returns a non-supported type If this happens, you've got a little bit of work in front of you. We don't have pointer objects to very many remote object types. So, if your method returns anything other than a single tensor, you probably need to add support for the type it returns (Such as a bool, None, int, or other types). *IMPORTANT:* do NOT return the value itself to the end user!!! Return a pointer object to that type! *NOTE:* at the time of writing - there are several core pieces of Syft not yet working to allow you to return any type other than a torch tensor. If you're not comfortable investigating what those might be - skip this issue and try again later once someone else has solved these issues. ### Reason 3 - There's something else broken Chase those stack traces! Talk to friends in Slack. Look at how other methods are supported. This is a challenging project in a fast moving codebase! And don't forget - if this project seems to complex - there are plenty of others that might be easier.
2.0
Add torch.Tensor.index_put to allowlist and test suite - # Description This issue is a part of Syft 0.3.0 Epic 2: https://github.com/OpenMined/PySyft/issues/3696 In this issue, you will be adding support for remote execution of the torch.Tensor.index_put method or property. This might be a really small project (literally a one-liner) or it might require adding significant functionality to PySyft OR to the testing suite in order to make sure the feature is both functional and tested. ## Step 0: Run tests and ./scripts/pre_commit.sh Before you get started with this project, let's make sure you have everything building and testing correctly. Clone the codebase and run: ```pip uninstall syft``` followed by ```pip install -e .``` Then run the pre-commit file (which will also run the tests) ```./scripts/pre_commit.sh``` If all of these tests pass, continue on. If not, make sure you have all the dependencies in requirements.txt installed, etc. ## Step 1: Uncomment your method in the allowlist.py file Inside [allowlist.py](https://github.com/OpenMined/PySyft/blob/syft_0.3.0/src/syft/lib/torch/allowlist.py) you will find a huge dictionary of methods. Find your method and uncomment the line its on. At the time of writing this Issue (WARNING: THIS MAY HAVE CHANGED) the dictionary maps from the string name of the method (in your case 'torch.Tensor.index_put') to the string representation of the type the method returns. ## Step 2: Run Unit Tests Run the following: ```python setup.py test``` And wait to see if some of the tests fail. Why might the tests fail now? I'm so glad you asked! https://github.com/OpenMined/PySyft/blob/syft_0.3.0/tests/syft/lib/torch/tensor/tensor_remote_method_api_suite_test.py In this file you'll find the torch method test suite. It AUTOMATICALLY loads all methods from the allowlist.py file you modified in the previous step. It attempts to test them. # Step 3: If you get a Failing Test If you get a failing test, this could be for one of a few reasons: ### Reason 1 - The testing suite passed in non-compatible arguments The testing suite is pretty dumb. It literally just has a permutation of possible arguments to pass into every method on torch tensors. So, if one of those permutations doesn't work for your method (aka... perhaps it tries to call your method without any arguments but torch.Tensor.index_put actually requires some) then the test will fail if the error hasn't been seen before. If this happens - don't worry! Just look inside the only test in that file and look for the huge lists of error types to ignore. Add your error to the list and keep going!!! *WARNING:* make sure that the testing suite actually tests your method via remote execution once you've gotten all the tests passing. Aka - if the testing suite doesn't have ANY matching argument permutations for your method, then you're literally creating a bunch of unit tests that do absolutely nothing. If this is the case, then ADD MORE ARGUMENT TYPES TO THE TESTING SUITE so that your argument gets run via remote execution. DO NOT CLOSE THIS ISSUE until you can verify that torch.Tensor.index_put is actually executed remotely inside of a unit tests (and not skipped). Aka - at least one of the test_all_allowlisted_tensor_methods_work_remotely_on_all_types unit tests with your method should run ALL THE WAY TO THE END (instead of skipping the last part.) *Note:* adding another argument type might require some serialization work if we don't support arguments of that type yet. If so, this is your job to add it to the protobuf files in order to close this issue! ### Reason 2 - torch.Tensor.index_put returns a non-supported type If this happens, you've got a little bit of work in front of you. We don't have pointer objects to very many remote object types. So, if your method returns anything other than a single tensor, you probably need to add support for the type it returns (Such as a bool, None, int, or other types). *IMPORTANT:* do NOT return the value itself to the end user!!! Return a pointer object to that type! *NOTE:* at the time of writing - there are several core pieces of Syft not yet working to allow you to return any type other than a torch tensor. If you're not comfortable investigating what those might be - skip this issue and try again later once someone else has solved these issues. ### Reason 3 - There's something else broken Chase those stack traces! Talk to friends in Slack. Look at how other methods are supported. This is a challenging project in a fast moving codebase! And don't forget - if this project seems to complex - there are plenty of others that might be easier.
test
add torch tensor index put to allowlist and test suite description this issue is a part of syft epic in this issue you will be adding support for remote execution of the torch tensor index put method or property this might be a really small project literally a one liner or it might require adding significant functionality to pysyft or to the testing suite in order to make sure the feature is both functional and tested step run tests and scripts pre commit sh before you get started with this project let s make sure you have everything building and testing correctly clone the codebase and run pip uninstall syft followed by pip install e then run the pre commit file which will also run the tests scripts pre commit sh if all of these tests pass continue on if not make sure you have all the dependencies in requirements txt installed etc step uncomment your method in the allowlist py file inside you will find a huge dictionary of methods find your method and uncomment the line its on at the time of writing this issue warning this may have changed the dictionary maps from the string name of the method in your case torch tensor index put to the string representation of the type the method returns step run unit tests run the following python setup py test and wait to see if some of the tests fail why might the tests fail now i m so glad you asked in this file you ll find the torch method test suite it automatically loads all methods from the allowlist py file you modified in the previous step it attempts to test them step if you get a failing test if you get a failing test this could be for one of a few reasons reason the testing suite passed in non compatible arguments the testing suite is pretty dumb it literally just has a permutation of possible arguments to pass into every method on torch tensors so if one of those permutations doesn t work for your method aka perhaps it tries to call your method without any arguments but torch tensor index put actually requires some then the test will fail if the error hasn t been seen before if this happens don t worry just look inside the only test in that file and look for the huge lists of error types to ignore add your error to the list and keep going warning make sure that the testing suite actually tests your method via remote execution once you ve gotten all the tests passing aka if the testing suite doesn t have any matching argument permutations for your method then you re literally creating a bunch of unit tests that do absolutely nothing if this is the case then add more argument types to the testing suite so that your argument gets run via remote execution do not close this issue until you can verify that torch tensor index put is actually executed remotely inside of a unit tests and not skipped aka at least one of the test all allowlisted tensor methods work remotely on all types unit tests with your method should run all the way to the end instead of skipping the last part note adding another argument type might require some serialization work if we don t support arguments of that type yet if so this is your job to add it to the protobuf files in order to close this issue reason torch tensor index put returns a non supported type if this happens you ve got a little bit of work in front of you we don t have pointer objects to very many remote object types so if your method returns anything other than a single tensor you probably need to add support for the type it returns such as a bool none int or other types important do not return the value itself to the end user return a pointer object to that type note at the time of writing there are several core pieces of syft not yet working to allow you to return any type other than a torch tensor if you re not comfortable investigating what those might be skip this issue and try again later once someone else has solved these issues reason there s something else broken chase those stack traces talk to friends in slack look at how other methods are supported this is a challenging project in a fast moving codebase and don t forget if this project seems to complex there are plenty of others that might be easier
1
301,204
9,217,482,493
IssuesEvent
2019-03-11 10:51:57
getkirby/kirby
https://api.github.com/repos/getkirby/kirby
closed
[Cms] Nested folders for collection() method
priority: low-hanging fruit 🍓 status: in progress 🔁 type: enhancement ✨
Right now the new `$kirby->collection()` method only allows files to be placed inside the main `collections` folder and doesn't support more complex structures like this one for example: ``` collections/ ∟ folder/ ∟ name.php ``` Would be nice to have the ability to do this instead `$kirby->collection('folder/name')` which is something we can already do with snippets for example.
1.0
[Cms] Nested folders for collection() method - Right now the new `$kirby->collection()` method only allows files to be placed inside the main `collections` folder and doesn't support more complex structures like this one for example: ``` collections/ ∟ folder/ ∟ name.php ``` Would be nice to have the ability to do this instead `$kirby->collection('folder/name')` which is something we can already do with snippets for example.
non_test
nested folders for collection method right now the new kirby collection method only allows files to be placed inside the main collections folder and doesn t support more complex structures like this one for example collections ∟ folder ∟ name php would be nice to have the ability to do this instead kirby collection folder name which is something we can already do with snippets for example
0
277,541
30,659,339,365
IssuesEvent
2023-07-25 14:06:27
rsoreq/zenbot
https://api.github.com/repos/rsoreq/zenbot
closed
CVE-2020-28168 (Medium) detected in axios-0.16.2.tgz, axios-0.19.2.tgz - autoclosed
Mend: dependency security vulnerability
## CVE-2020-28168 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>axios-0.16.2.tgz</b>, <b>axios-0.19.2.tgz</b></p></summary> <p> <details><summary><b>axios-0.16.2.tgz</b></p></summary> <p>Promise based HTTP client for the browser and node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/axios/-/axios-0.16.2.tgz">https://registry.npmjs.org/axios/-/axios-0.16.2.tgz</a></p> <p> Dependency Hierarchy: - gemini-api-2.0.4.tgz (Root Library) - :x: **axios-0.16.2.tgz** (Vulnerable Library) </details> <details><summary><b>axios-0.19.2.tgz</b></p></summary> <p>Promise based HTTP client for the browser and node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/axios/-/axios-0.19.2.tgz">https://registry.npmjs.org/axios/-/axios-0.19.2.tgz</a></p> <p> Dependency Hierarchy: - client-5.0.2.tgz (Root Library) - web-api-5.8.0.tgz - :x: **axios-0.19.2.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/rsoreq/zenbot/commit/7a24c0d7b98ee76e6bac827974cff490a7694378">7a24c0d7b98ee76e6bac827974cff490a7694378</a></p> <p>Found in base branch: <b>unstable</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> Axios NPM package 0.21.0 contains a Server-Side Request Forgery (SSRF) vulnerability where an attacker is able to bypass a proxy by providing a URL that responds with a redirect to a restricted host or IP address. <p>Publish Date: 2020-11-06 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-28168>CVE-2020-28168</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.9</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: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2020-11-06</p> <p>Fix Resolution: axios - 0.21.1</p> </p> </details> <p></p>
True
CVE-2020-28168 (Medium) detected in axios-0.16.2.tgz, axios-0.19.2.tgz - autoclosed - ## CVE-2020-28168 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>axios-0.16.2.tgz</b>, <b>axios-0.19.2.tgz</b></p></summary> <p> <details><summary><b>axios-0.16.2.tgz</b></p></summary> <p>Promise based HTTP client for the browser and node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/axios/-/axios-0.16.2.tgz">https://registry.npmjs.org/axios/-/axios-0.16.2.tgz</a></p> <p> Dependency Hierarchy: - gemini-api-2.0.4.tgz (Root Library) - :x: **axios-0.16.2.tgz** (Vulnerable Library) </details> <details><summary><b>axios-0.19.2.tgz</b></p></summary> <p>Promise based HTTP client for the browser and node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/axios/-/axios-0.19.2.tgz">https://registry.npmjs.org/axios/-/axios-0.19.2.tgz</a></p> <p> Dependency Hierarchy: - client-5.0.2.tgz (Root Library) - web-api-5.8.0.tgz - :x: **axios-0.19.2.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/rsoreq/zenbot/commit/7a24c0d7b98ee76e6bac827974cff490a7694378">7a24c0d7b98ee76e6bac827974cff490a7694378</a></p> <p>Found in base branch: <b>unstable</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> Axios NPM package 0.21.0 contains a Server-Side Request Forgery (SSRF) vulnerability where an attacker is able to bypass a proxy by providing a URL that responds with a redirect to a restricted host or IP address. <p>Publish Date: 2020-11-06 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-28168>CVE-2020-28168</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.9</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: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2020-11-06</p> <p>Fix Resolution: axios - 0.21.1</p> </p> </details> <p></p>
non_test
cve medium detected in axios tgz axios tgz autoclosed cve medium severity vulnerability vulnerable libraries axios tgz axios tgz axios tgz promise based http client for the browser and node js library home page a href dependency hierarchy gemini api tgz root library x axios tgz vulnerable library axios tgz promise based http client for the browser and node js library home page a href dependency hierarchy client tgz root library web api tgz x axios tgz vulnerable library found in head commit a href found in base branch unstable vulnerability details axios npm package contains a server side request forgery ssrf vulnerability where an attacker is able to bypass a proxy by providing a url that responds with a redirect to a restricted host or ip address 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 none availability impact none for more information on scores click a href suggested fix type upgrade version release date fix resolution axios
0
5,275
3,195,641,621
IssuesEvent
2015-09-30 17:30:33
easy-wi/developer
https://api.github.com/repos/easy-wi/developer
opened
Check for version at user login
Codebase enhancement
If not done in the last hour, do a version check at user login and mail admins in case Easy-Wi is out of date.
1.0
Check for version at user login - If not done in the last hour, do a version check at user login and mail admins in case Easy-Wi is out of date.
non_test
check for version at user login if not done in the last hour do a version check at user login and mail admins in case easy wi is out of date
0
339,838
30,480,041,277
IssuesEvent
2023-07-17 19:34:44
oxidecomputer/omicron
https://api.github.com/repos/oxidecomputer/omicron
closed
Boostore test flake: `schemes::v0::peer::tests::network_config`
Test Flake
Seen on main: https://buildomat.eng.oxide.computer/wg/0/details/01H5F510PSMHWHCP1B11ZW3A27/GrsCKW6Cvb7h89UFyYjCsG8DONwcnfyrHmio1PYwmqEgoia4/01H5F51MNYK21HXRV2M0DPJJBA#S5685 ``` 5685 2023-07-16T11:26:54.939Z test schemes::v0::peer::tests::network_config ... FAILED 5686 2023-07-16T11:26:54.961Z 5687 2023-07-16T11:26:54.985Z failures: 5688 2023-07-16T11:26:55.004Z 5689 2023-07-16T11:26:55.227Z ---- schemes::v0::peer::tests::network_config stdout ---- 5690 2023-07-16T11:26:55.246Z thread 'schemes::v0::peer::tests::network_config' panicked at 'Network config not replicated', bootstore/src/schemes/v0/peer.rs:1267:21 5691 2023-07-16T11:26:55.253Z stack backtrace: 5692 2023-07-16T11:26:55.257Z 0: rust_begin_unwind 5693 2023-07-16T11:26:55.265Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5 5694 2023-07-16T11:26:55.271Z 1: core::panicking::panic_fmt 5695 2023-07-16T11:26:55.273Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14 5696 2023-07-16T11:26:55.276Z 2: bootstore::schemes::v0::peer::tests::network_config::{{closure}} 5697 2023-07-16T11:26:55.278Z at ./src/schemes/v0/peer.rs:1267:21 5698 2023-07-16T11:26:55.283Z 3: <core::pin::Pin<P> as core::future::future::Future>::poll 5699 2023-07-16T11:26:55.291Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/future/future.rs:125:9 5700 2023-07-16T11:26:55.301Z 4: <core::pin::Pin<P> as core::future::future::Future>::poll 5701 2023-07-16T11:26:55.305Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/future/future.rs:125:9 5702 2023-07-16T11:26:55.309Z 5: tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}}::{{closure}}::{{closure}} 5703 2023-07-16T11:26:55.312Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:651:57 5704 2023-07-16T11:26:55.315Z 6: tokio::runtime::coop::with_budget 5705 2023-07-16T11:26:55.318Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/coop.rs:107:5 5706 2023-07-16T11:26:55.321Z 7: tokio::runtime::coop::budget 5707 2023-07-16T11:26:55.325Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/coop.rs:73:5 5708 2023-07-16T11:26:55.330Z 8: tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}}::{{closure}} 5709 2023-07-16T11:26:55.333Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:651:25 5710 2023-07-16T11:26:55.338Z 9: tokio::runtime::scheduler::current_thread::Context::enter 5711 2023-07-16T11:26:55.344Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:410:19 5712 2023-07-16T11:26:55.349Z 10: tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}} 5713 2023-07-16T11:26:55.352Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:650:36 5714 2023-07-16T11:26:55.355Z 11: tokio::runtime::scheduler::current_thread::CoreGuard::enter::{{closure}} 5715 2023-07-16T11:26:55.366Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:729:68 5716 2023-07-16T11:26:55.378Z 12: tokio::runtime::context::scoped::Scoped<T>::set 5717 2023-07-16T11:26:55.389Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context/scoped.rs:40:9 5718 2023-07-16T11:26:55.397Z 13: tokio::runtime::context::set_scheduler::{{closure}} 5719 2023-07-16T11:26:55.407Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context.rs:176:26 5720 2023-07-16T11:26:55.414Z 14: std::thread::local::LocalKey<T>::try_with 5721 2023-07-16T11:26:55.428Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/local.rs:252:16 5722 2023-07-16T11:26:55.431Z 15: std::thread::local::LocalKey<T>::with 5723 2023-07-16T11:26:55.435Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/local.rs:228:9 5724 2023-07-16T11:26:55.438Z 16: tokio::runtime::context::set_scheduler 5725 2023-07-16T11:26:55.441Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context.rs:176:9 5726 2023-07-16T11:26:55.446Z 17: tokio::runtime::scheduler::current_thread::CoreGuard::enter 5727 2023-07-16T11:26:55.451Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:729:27 5728 2023-07-16T11:26:55.456Z 18: tokio::runtime::scheduler::current_thread::CoreGuard::block_on 5729 2023-07-16T11:26:55.461Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:638:19 5730 2023-07-16T11:26:55.466Z 19: tokio::runtime::scheduler::current_thread::CurrentThread::block_on::{{closure}} 5731 2023-07-16T11:26:55.469Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:175:28 5732 2023-07-16T11:26:55.472Z 20: tokio::runtime::context::runtime::enter_runtime 5733 2023-07-16T11:26:55.475Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context/runtime.rs:65:16 5734 2023-07-16T11:26:55.480Z 21: tokio::runtime::scheduler::current_thread::CurrentThread::block_on 5735 2023-07-16T11:26:55.485Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:167:9 5736 2023-07-16T11:26:55.489Z 22: tokio::runtime::runtime::Runtime::block_on 5737 2023-07-16T11:26:55.494Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/runtime.rs:311:47 5738 2023-07-16T11:26:55.500Z 23: bootstore::schemes::v0::peer::tests::network_config 5739 2023-07-16T11:26:55.505Z at ./src/schemes/v0/peer.rs:1379:9 5740 2023-07-16T11:26:55.509Z 24: bootstore::schemes::v0::peer::tests::network_config::{{closure}} 5741 2023-07-16T11:26:55.513Z at ./src/schemes/v0/peer.rs:1216:31 5742 2023-07-16T11:26:55.515Z 25: core::ops::function::FnOnce::call_once 5743 2023-07-16T11:26:55.518Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5 5744 2023-07-16T11:26:55.520Z 26: core::ops::function::FnOnce::call_once 5745 2023-07-16T11:26:55.522Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5 5746 2023-07-16T11:26:55.525Z note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. 5747 2023-07-16T11:26:55.527Z 5748 2023-07-16T11:26:55.529Z 5749 2023-07-16T11:26:55.532Z failures: 5750 2023-07-16T11:26:55.538Z schemes::v0::peer::tests::network_config 5751 2023-07-16T11:26:55.541Z error: test failed, to rerun pass `-p bootstore --lib` 5752 2023-07-16T11:26:55.543Z 5753 2023-07-16T11:26:55.546Z Running `/work/oxidecomputer/omicron/target/debug/deps/v0_fsm_proptest_learner-0a26b1dac927e830` 5754 2023-07-16T11:26:55.548Z test result: FAILED. 5 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 7.37s 5755 2023-07-16T11:26:55.551Z ```
1.0
Boostore test flake: `schemes::v0::peer::tests::network_config` - Seen on main: https://buildomat.eng.oxide.computer/wg/0/details/01H5F510PSMHWHCP1B11ZW3A27/GrsCKW6Cvb7h89UFyYjCsG8DONwcnfyrHmio1PYwmqEgoia4/01H5F51MNYK21HXRV2M0DPJJBA#S5685 ``` 5685 2023-07-16T11:26:54.939Z test schemes::v0::peer::tests::network_config ... FAILED 5686 2023-07-16T11:26:54.961Z 5687 2023-07-16T11:26:54.985Z failures: 5688 2023-07-16T11:26:55.004Z 5689 2023-07-16T11:26:55.227Z ---- schemes::v0::peer::tests::network_config stdout ---- 5690 2023-07-16T11:26:55.246Z thread 'schemes::v0::peer::tests::network_config' panicked at 'Network config not replicated', bootstore/src/schemes/v0/peer.rs:1267:21 5691 2023-07-16T11:26:55.253Z stack backtrace: 5692 2023-07-16T11:26:55.257Z 0: rust_begin_unwind 5693 2023-07-16T11:26:55.265Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5 5694 2023-07-16T11:26:55.271Z 1: core::panicking::panic_fmt 5695 2023-07-16T11:26:55.273Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14 5696 2023-07-16T11:26:55.276Z 2: bootstore::schemes::v0::peer::tests::network_config::{{closure}} 5697 2023-07-16T11:26:55.278Z at ./src/schemes/v0/peer.rs:1267:21 5698 2023-07-16T11:26:55.283Z 3: <core::pin::Pin<P> as core::future::future::Future>::poll 5699 2023-07-16T11:26:55.291Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/future/future.rs:125:9 5700 2023-07-16T11:26:55.301Z 4: <core::pin::Pin<P> as core::future::future::Future>::poll 5701 2023-07-16T11:26:55.305Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/future/future.rs:125:9 5702 2023-07-16T11:26:55.309Z 5: tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}}::{{closure}}::{{closure}} 5703 2023-07-16T11:26:55.312Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:651:57 5704 2023-07-16T11:26:55.315Z 6: tokio::runtime::coop::with_budget 5705 2023-07-16T11:26:55.318Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/coop.rs:107:5 5706 2023-07-16T11:26:55.321Z 7: tokio::runtime::coop::budget 5707 2023-07-16T11:26:55.325Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/coop.rs:73:5 5708 2023-07-16T11:26:55.330Z 8: tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}}::{{closure}} 5709 2023-07-16T11:26:55.333Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:651:25 5710 2023-07-16T11:26:55.338Z 9: tokio::runtime::scheduler::current_thread::Context::enter 5711 2023-07-16T11:26:55.344Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:410:19 5712 2023-07-16T11:26:55.349Z 10: tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}} 5713 2023-07-16T11:26:55.352Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:650:36 5714 2023-07-16T11:26:55.355Z 11: tokio::runtime::scheduler::current_thread::CoreGuard::enter::{{closure}} 5715 2023-07-16T11:26:55.366Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:729:68 5716 2023-07-16T11:26:55.378Z 12: tokio::runtime::context::scoped::Scoped<T>::set 5717 2023-07-16T11:26:55.389Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context/scoped.rs:40:9 5718 2023-07-16T11:26:55.397Z 13: tokio::runtime::context::set_scheduler::{{closure}} 5719 2023-07-16T11:26:55.407Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context.rs:176:26 5720 2023-07-16T11:26:55.414Z 14: std::thread::local::LocalKey<T>::try_with 5721 2023-07-16T11:26:55.428Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/local.rs:252:16 5722 2023-07-16T11:26:55.431Z 15: std::thread::local::LocalKey<T>::with 5723 2023-07-16T11:26:55.435Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/local.rs:228:9 5724 2023-07-16T11:26:55.438Z 16: tokio::runtime::context::set_scheduler 5725 2023-07-16T11:26:55.441Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context.rs:176:9 5726 2023-07-16T11:26:55.446Z 17: tokio::runtime::scheduler::current_thread::CoreGuard::enter 5727 2023-07-16T11:26:55.451Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:729:27 5728 2023-07-16T11:26:55.456Z 18: tokio::runtime::scheduler::current_thread::CoreGuard::block_on 5729 2023-07-16T11:26:55.461Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:638:19 5730 2023-07-16T11:26:55.466Z 19: tokio::runtime::scheduler::current_thread::CurrentThread::block_on::{{closure}} 5731 2023-07-16T11:26:55.469Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:175:28 5732 2023-07-16T11:26:55.472Z 20: tokio::runtime::context::runtime::enter_runtime 5733 2023-07-16T11:26:55.475Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/context/runtime.rs:65:16 5734 2023-07-16T11:26:55.480Z 21: tokio::runtime::scheduler::current_thread::CurrentThread::block_on 5735 2023-07-16T11:26:55.485Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/scheduler/current_thread.rs:167:9 5736 2023-07-16T11:26:55.489Z 22: tokio::runtime::runtime::Runtime::block_on 5737 2023-07-16T11:26:55.494Z at /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.29.1/src/runtime/runtime.rs:311:47 5738 2023-07-16T11:26:55.500Z 23: bootstore::schemes::v0::peer::tests::network_config 5739 2023-07-16T11:26:55.505Z at ./src/schemes/v0/peer.rs:1379:9 5740 2023-07-16T11:26:55.509Z 24: bootstore::schemes::v0::peer::tests::network_config::{{closure}} 5741 2023-07-16T11:26:55.513Z at ./src/schemes/v0/peer.rs:1216:31 5742 2023-07-16T11:26:55.515Z 25: core::ops::function::FnOnce::call_once 5743 2023-07-16T11:26:55.518Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5 5744 2023-07-16T11:26:55.520Z 26: core::ops::function::FnOnce::call_once 5745 2023-07-16T11:26:55.522Z at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5 5746 2023-07-16T11:26:55.525Z note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. 5747 2023-07-16T11:26:55.527Z 5748 2023-07-16T11:26:55.529Z 5749 2023-07-16T11:26:55.532Z failures: 5750 2023-07-16T11:26:55.538Z schemes::v0::peer::tests::network_config 5751 2023-07-16T11:26:55.541Z error: test failed, to rerun pass `-p bootstore --lib` 5752 2023-07-16T11:26:55.543Z 5753 2023-07-16T11:26:55.546Z Running `/work/oxidecomputer/omicron/target/debug/deps/v0_fsm_proptest_learner-0a26b1dac927e830` 5754 2023-07-16T11:26:55.548Z test result: FAILED. 5 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 7.37s 5755 2023-07-16T11:26:55.551Z ```
test
boostore test flake schemes peer tests network config seen on main test schemes peer tests network config failed failures schemes peer tests network config stdout thread schemes peer tests network config panicked at network config not replicated bootstore src schemes peer rs stack backtrace rust begin unwind at rustc library std src panicking rs core panicking panic fmt at rustc library core src panicking rs bootstore schemes peer tests network config closure at src schemes peer rs as core future future future poll at rustc library core src future future rs as core future future future poll at rustc library core src future future rs tokio runtime scheduler current thread coreguard block on closure closure closure at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime coop with budget at home build cargo registry src index crates io tokio src runtime coop rs tokio runtime coop budget at home build cargo registry src index crates io tokio src runtime coop rs tokio runtime scheduler current thread coreguard block on closure closure at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime scheduler current thread context enter at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime scheduler current thread coreguard block on closure at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime scheduler current thread coreguard enter closure at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime context scoped scoped set at home build cargo registry src index crates io tokio src runtime context scoped rs tokio runtime context set scheduler closure at home build cargo registry src index crates io tokio src runtime context rs std thread local localkey try with at rustc library std src thread local rs std thread local localkey with at rustc library std src thread local rs tokio runtime context set scheduler at home build cargo registry src index crates io tokio src runtime context rs tokio runtime scheduler current thread coreguard enter at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime scheduler current thread coreguard block on at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime scheduler current thread currentthread block on closure at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime context runtime enter runtime at home build cargo registry src index crates io tokio src runtime context runtime rs tokio runtime scheduler current thread currentthread block on at home build cargo registry src index crates io tokio src runtime scheduler current thread rs tokio runtime runtime runtime block on at home build cargo registry src index crates io tokio src runtime runtime rs bootstore schemes peer tests network config at src schemes peer rs bootstore schemes peer tests network config closure at src schemes peer rs core ops function fnonce call once at rustc library core src ops function rs core ops function fnonce call once at rustc library core src ops function rs note some details are omitted run with rust backtrace full for a verbose backtrace failures schemes peer tests network config error test failed to rerun pass p bootstore lib running work oxidecomputer omicron target debug deps fsm proptest learner test result failed passed failed ignored measured filtered out finished in
1
182,222
14,109,383,229
IssuesEvent
2020-11-06 19:29:26
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
Summery API test needs to be more flexible
kind/failing-test priority/important-longterm sig/node triage/accepted
<!-- Please only use this template for submitting reports about continuously failing tests or jobs in Kubernetes CI --> **Which jobs are failing**: NodeConformance [Summery API test](https://github.com/kubernetes/kubernetes/blob/master/test/e2e_node/summary_test.go#L41) is too rigid, and that makes it fail on certain platforms. It even [flakes on existing platform](https://k8s-testgrid.appspot.com/sig-release-master-blocking#node-kubelet-master) For e.g the test right now assumes that it will always enter in the the `if` condition here, https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/stats/helper.go#L56 but never accounts for the scenrio where the code might enter in `else`, https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/stats/helper.go#L72 which is also a valid execution scenario. **Which test(s) are failing**: Summary API Tests - https://github.com/kubernetes/kubernetes/blob/master/test/e2e_node/summary_test.go#L41 **Since when has it been failing**: **Testgrid link**: https://k8s-testgrid.appspot.com/sig-release-master-blocking#node-kubelet-master **Reason for failure**: **Anything else we need to know**:
1.0
Summery API test needs to be more flexible - <!-- Please only use this template for submitting reports about continuously failing tests or jobs in Kubernetes CI --> **Which jobs are failing**: NodeConformance [Summery API test](https://github.com/kubernetes/kubernetes/blob/master/test/e2e_node/summary_test.go#L41) is too rigid, and that makes it fail on certain platforms. It even [flakes on existing platform](https://k8s-testgrid.appspot.com/sig-release-master-blocking#node-kubelet-master) For e.g the test right now assumes that it will always enter in the the `if` condition here, https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/stats/helper.go#L56 but never accounts for the scenrio where the code might enter in `else`, https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/stats/helper.go#L72 which is also a valid execution scenario. **Which test(s) are failing**: Summary API Tests - https://github.com/kubernetes/kubernetes/blob/master/test/e2e_node/summary_test.go#L41 **Since when has it been failing**: **Testgrid link**: https://k8s-testgrid.appspot.com/sig-release-master-blocking#node-kubelet-master **Reason for failure**: **Anything else we need to know**:
test
summery api test needs to be more flexible which jobs are failing nodeconformance is too rigid and that makes it fail on certain platforms it even for e g the test right now assumes that it will always enter in the the if condition here but never accounts for the scenrio where the code might enter in else which is also a valid execution scenario which test s are failing summary api tests since when has it been failing testgrid link reason for failure anything else we need to know
1
82,609
7,845,822,061
IssuesEvent
2018-06-19 13:59:01
INL/corpus-frontend
https://api.github.com/repos/INL/corpus-frontend
closed
Link to format configuration page on project site
finished/testing
The "New format" dialog should include a link to the page on the BlackLab project site explaining input format configuration. E.g.: [How to write a format configuration file](https://inl.github.io/BlackLab/how-to-configure-indexing.html)
1.0
Link to format configuration page on project site - The "New format" dialog should include a link to the page on the BlackLab project site explaining input format configuration. E.g.: [How to write a format configuration file](https://inl.github.io/BlackLab/how-to-configure-indexing.html)
test
link to format configuration page on project site the new format dialog should include a link to the page on the blacklab project site explaining input format configuration e g
1
40,047
20,388,622,716
IssuesEvent
2022-02-22 09:43:20
keras-team/keras
https://api.github.com/repos/keras-team/keras
closed
Obtained baseline accuracy for ResNet50v2 is different than officially reported
type:bug/performance
Reposting urgent issue from the `keras-applications` repo from 12 days ago (no activity so far, no one has been assigned to it yet): https://github.com/keras-team/keras-applications/issues/207 Also posted the [issue on TF repo](https://github.com/tensorflow/models/issues/10420), but they said the Keras team is responsible for it. Please check this bug as it is currently a huge bottleneck. ### Summary Obtained baseline accuracy for ResNet50v2 is different than officially reported: | Model | Top-1 (%) | | -------- | ------------- | | [Baseline (official)](https://github.com/keras-team/keras-applications) | 75.96 | | Baseline (obtained) | 66.85 | ResNet50v1 works fine, so I don't think the issue is with data-loading or with the eval code. My current guess is that there might be some disconnect between the loaded checkpoints and the input pre-processing function in ResNetv2 (`keras.applications.resnet_v2.preprocess_input`). Any advice is appreciated. ### Environment - Python version: 3.8 - Keras backend with version: TF 2.7 ### Logs or source codes for reproduction 1. Download ImageNet `tfrecord` validation dataset. 2. Run evaluation script: ```python import os import tensorflow as tf DATA_DIR = "/media/Data/ImageNet/train-val-tfrecord" _DEFAULT_IMAGE_SIZE = 224 _NUM_CHANNELS = 3 _RESIZE_MIN = 256 def load_data(data_dir='./data/imagenet', batch_size=8, num_val_files=128): # 1. Load ImageNet2012 train dataset - needs to manually download the full ImageNet2012 dataset first. assert os.path.exists(data_dir) # 2. Make train/validation datasets filenames = get_filenames(data_dir, num_val_files=num_val_files) dataset = tf.data.TFRecordDataset(filenames) dataset = dataset.map(map_func=preprocess_image_record_tf_v2) dataset = dataset.batch(batch_size, drop_remainder=True) return dataset def preprocess_image_record_tf_v2(record): """ This function is called by "dataset.map()" in the "map_func" argument. That function doesn't allow for multiple input arguments, only "record". """ imgdata, label, bbox, text = _deserialize_image_record(record) # Subtract one so that labels are in [0, 1000) label -= 1 try: image = tf.image.decode_jpeg(imgdata, channels=_NUM_CHANNELS, fancy_upscaling=False, dct_method='INTEGER_FAST') except: image = tf.image.decode_image(imgdata, channels=_NUM_CHANNELS) # V2 image = tf.cast(image, tf.float32) image = tf.image.resize(image, (_DEFAULT_IMAGE_SIZE, _DEFAULT_IMAGE_SIZE)) image = tf.keras.applications.resnet_v2.preprocess_input(image) return image, label def get_filenames(data_dir, num_val_files=128): """Return filenames for dataset.""" return [ os.path.join(data_dir, 'validation-{:05d}-of-{:05d}'.format(i, num_val_files)) for i in range(num_val_files) ] def _deserialize_image_record(record): feature_map = { 'image/encoded': tf.io.FixedLenFeature([], tf.string, ''), 'image/class/label': tf.io.FixedLenFeature([], tf.int64, -1), 'image/class/text': tf.io.FixedLenFeature([], tf.string, ''), 'image/object/bbox/xmin': tf.io.VarLenFeature(dtype=tf.float32), 'image/object/bbox/ymin': tf.io.VarLenFeature(dtype=tf.float32), 'image/object/bbox/xmax': tf.io.VarLenFeature(dtype=tf.float32), 'image/object/bbox/ymax': tf.io.VarLenFeature(dtype=tf.float32) } with tf.name_scope('deserialize_image_record'): obj = tf.io.parse_single_example(record, feature_map) imgdata = obj['image/encoded'] label = tf.cast(obj['image/class/label'], tf.int32) bbox = tf.stack([obj['image/object/bbox/%s' % x].values for x in ['ymin', 'xmin', 'ymax', 'xmax']]) bbox = tf.transpose(tf.expand_dims(bbox, 0), [0, 2, 1]) text = obj['image/class/text'] return imgdata, label, bbox, text def main(): # Load tfrecord data val_batches = load_data(data_dir=DATA_DIR, batch_size=128) # Instantiate Baseline model model = tf.keras.applications.ResNet50V2( include_top=True, weights='imagenet', input_tensor=None, input_shape=None, pooling=None, classes=1000, classifier_activation='softmax' ) model.compile(optimizer="sgd", loss=tf.keras.losses.SparseCategoricalCrossentropy(), metrics=["accuracy"]) _, baseline_model_accuracy = model.evaluate(val_batches) print("Baseline val accuracy:", baseline_model_accuracy) if __name__ == '__main__': main() ```
True
Obtained baseline accuracy for ResNet50v2 is different than officially reported - Reposting urgent issue from the `keras-applications` repo from 12 days ago (no activity so far, no one has been assigned to it yet): https://github.com/keras-team/keras-applications/issues/207 Also posted the [issue on TF repo](https://github.com/tensorflow/models/issues/10420), but they said the Keras team is responsible for it. Please check this bug as it is currently a huge bottleneck. ### Summary Obtained baseline accuracy for ResNet50v2 is different than officially reported: | Model | Top-1 (%) | | -------- | ------------- | | [Baseline (official)](https://github.com/keras-team/keras-applications) | 75.96 | | Baseline (obtained) | 66.85 | ResNet50v1 works fine, so I don't think the issue is with data-loading or with the eval code. My current guess is that there might be some disconnect between the loaded checkpoints and the input pre-processing function in ResNetv2 (`keras.applications.resnet_v2.preprocess_input`). Any advice is appreciated. ### Environment - Python version: 3.8 - Keras backend with version: TF 2.7 ### Logs or source codes for reproduction 1. Download ImageNet `tfrecord` validation dataset. 2. Run evaluation script: ```python import os import tensorflow as tf DATA_DIR = "/media/Data/ImageNet/train-val-tfrecord" _DEFAULT_IMAGE_SIZE = 224 _NUM_CHANNELS = 3 _RESIZE_MIN = 256 def load_data(data_dir='./data/imagenet', batch_size=8, num_val_files=128): # 1. Load ImageNet2012 train dataset - needs to manually download the full ImageNet2012 dataset first. assert os.path.exists(data_dir) # 2. Make train/validation datasets filenames = get_filenames(data_dir, num_val_files=num_val_files) dataset = tf.data.TFRecordDataset(filenames) dataset = dataset.map(map_func=preprocess_image_record_tf_v2) dataset = dataset.batch(batch_size, drop_remainder=True) return dataset def preprocess_image_record_tf_v2(record): """ This function is called by "dataset.map()" in the "map_func" argument. That function doesn't allow for multiple input arguments, only "record". """ imgdata, label, bbox, text = _deserialize_image_record(record) # Subtract one so that labels are in [0, 1000) label -= 1 try: image = tf.image.decode_jpeg(imgdata, channels=_NUM_CHANNELS, fancy_upscaling=False, dct_method='INTEGER_FAST') except: image = tf.image.decode_image(imgdata, channels=_NUM_CHANNELS) # V2 image = tf.cast(image, tf.float32) image = tf.image.resize(image, (_DEFAULT_IMAGE_SIZE, _DEFAULT_IMAGE_SIZE)) image = tf.keras.applications.resnet_v2.preprocess_input(image) return image, label def get_filenames(data_dir, num_val_files=128): """Return filenames for dataset.""" return [ os.path.join(data_dir, 'validation-{:05d}-of-{:05d}'.format(i, num_val_files)) for i in range(num_val_files) ] def _deserialize_image_record(record): feature_map = { 'image/encoded': tf.io.FixedLenFeature([], tf.string, ''), 'image/class/label': tf.io.FixedLenFeature([], tf.int64, -1), 'image/class/text': tf.io.FixedLenFeature([], tf.string, ''), 'image/object/bbox/xmin': tf.io.VarLenFeature(dtype=tf.float32), 'image/object/bbox/ymin': tf.io.VarLenFeature(dtype=tf.float32), 'image/object/bbox/xmax': tf.io.VarLenFeature(dtype=tf.float32), 'image/object/bbox/ymax': tf.io.VarLenFeature(dtype=tf.float32) } with tf.name_scope('deserialize_image_record'): obj = tf.io.parse_single_example(record, feature_map) imgdata = obj['image/encoded'] label = tf.cast(obj['image/class/label'], tf.int32) bbox = tf.stack([obj['image/object/bbox/%s' % x].values for x in ['ymin', 'xmin', 'ymax', 'xmax']]) bbox = tf.transpose(tf.expand_dims(bbox, 0), [0, 2, 1]) text = obj['image/class/text'] return imgdata, label, bbox, text def main(): # Load tfrecord data val_batches = load_data(data_dir=DATA_DIR, batch_size=128) # Instantiate Baseline model model = tf.keras.applications.ResNet50V2( include_top=True, weights='imagenet', input_tensor=None, input_shape=None, pooling=None, classes=1000, classifier_activation='softmax' ) model.compile(optimizer="sgd", loss=tf.keras.losses.SparseCategoricalCrossentropy(), metrics=["accuracy"]) _, baseline_model_accuracy = model.evaluate(val_batches) print("Baseline val accuracy:", baseline_model_accuracy) if __name__ == '__main__': main() ```
non_test
obtained baseline accuracy for is different than officially reported reposting urgent issue from the keras applications repo from days ago no activity so far no one has been assigned to it yet also posted the but they said the keras team is responsible for it please check this bug as it is currently a huge bottleneck summary obtained baseline accuracy for is different than officially reported model top baseline obtained works fine so i don t think the issue is with data loading or with the eval code my current guess is that there might be some disconnect between the loaded checkpoints and the input pre processing function in keras applications resnet preprocess input any advice is appreciated environment python version keras backend with version tf logs or source codes for reproduction download imagenet tfrecord validation dataset run evaluation script python import os import tensorflow as tf data dir media data imagenet train val tfrecord default image size num channels resize min def load data data dir data imagenet batch size num val files load train dataset needs to manually download the full dataset first assert os path exists data dir make train validation datasets filenames get filenames data dir num val files num val files dataset tf data tfrecorddataset filenames dataset dataset map map func preprocess image record tf dataset dataset batch batch size drop remainder true return dataset def preprocess image record tf record this function is called by dataset map in the map func argument that function doesn t allow for multiple input arguments only record imgdata label bbox text deserialize image record record subtract one so that labels are in label try image tf image decode jpeg imgdata channels num channels fancy upscaling false dct method integer fast except image tf image decode image imgdata channels num channels image tf cast image tf image tf image resize image default image size default image size image tf keras applications resnet preprocess input image return image label def get filenames data dir num val files return filenames for dataset return os path join data dir validation of format i num val files for i in range num val files def deserialize image record record feature map image encoded tf io fixedlenfeature tf string image class label tf io fixedlenfeature tf image class text tf io fixedlenfeature tf string image object bbox xmin tf io varlenfeature dtype tf image object bbox ymin tf io varlenfeature dtype tf image object bbox xmax tf io varlenfeature dtype tf image object bbox ymax tf io varlenfeature dtype tf with tf name scope deserialize image record obj tf io parse single example record feature map imgdata obj label tf cast obj tf bbox tf stack values for x in bbox tf transpose tf expand dims bbox text obj return imgdata label bbox text def main load tfrecord data val batches load data data dir data dir batch size instantiate baseline model model tf keras applications include top true weights imagenet input tensor none input shape none pooling none classes classifier activation softmax model compile optimizer sgd loss tf keras losses sparsecategoricalcrossentropy metrics baseline model accuracy model evaluate val batches print baseline val accuracy baseline model accuracy if name main main
0
177,841
13,750,030,989
IssuesEvent
2020-10-06 11:25:27
ayumi-cloud/oc2-security-module
https://api.github.com/repos/ayumi-cloud/oc2-security-module
closed
Upgrade port scans module to version 2 and roll-out upgrades to firewall.
Add to Blacklist Add to Whitelist Enhancement FINSIHED Firewall Priority: High Testing - Passed
### Enhancement idea - [x] Upgrade port scans module to version 2 and roll-out upgrades to firewall. - [x] Remove version one system. - [x] Updating labelling system. - [x] Update filter system. - [x] Move to separate module and tidy up. - [x] Add options in settings. - [x] Connect up browser type api to module, see github: https://github.com/ayumi-cloud/oc-security-module/issues/358
1.0
Upgrade port scans module to version 2 and roll-out upgrades to firewall. - ### Enhancement idea - [x] Upgrade port scans module to version 2 and roll-out upgrades to firewall. - [x] Remove version one system. - [x] Updating labelling system. - [x] Update filter system. - [x] Move to separate module and tidy up. - [x] Add options in settings. - [x] Connect up browser type api to module, see github: https://github.com/ayumi-cloud/oc-security-module/issues/358
test
upgrade port scans module to version and roll out upgrades to firewall enhancement idea upgrade port scans module to version and roll out upgrades to firewall remove version one system updating labelling system update filter system move to separate module and tidy up add options in settings connect up browser type api to module see github
1
33,515
4,837,068,520
IssuesEvent
2016-11-08 21:29:04
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
After logging out, I get a session timed out on login screen if I wait a minute
area/access-control area/ui kind/bug status/resolved status/to-test
**Rancher Version:** v1.2.0-pre4-rc6 **Steps to Reproduce:** 1. Go to Access Control and enable Active Directory 2. Log out & wait a minute at login screen **Results:** The "Your session has timed out. Log in again to continue." ![image](https://cloud.githubusercontent.com/assets/11514927/19950591/a1599396-a115-11e6-8801-946431433948.png) **Expected:** Not warning should show up, since I logged out. It should just stay on log in screen without warning.
1.0
After logging out, I get a session timed out on login screen if I wait a minute - **Rancher Version:** v1.2.0-pre4-rc6 **Steps to Reproduce:** 1. Go to Access Control and enable Active Directory 2. Log out & wait a minute at login screen **Results:** The "Your session has timed out. Log in again to continue." ![image](https://cloud.githubusercontent.com/assets/11514927/19950591/a1599396-a115-11e6-8801-946431433948.png) **Expected:** Not warning should show up, since I logged out. It should just stay on log in screen without warning.
test
after logging out i get a session timed out on login screen if i wait a minute rancher version steps to reproduce go to access control and enable active directory log out wait a minute at login screen results the your session has timed out log in again to continue expected not warning should show up since i logged out it should just stay on log in screen without warning
1
162,617
6,156,571,093
IssuesEvent
2017-06-28 17:00:12
ZeroSide-Project/zeroside
https://api.github.com/repos/ZeroSide-Project/zeroside
opened
Add folder support
enhancement high priority ⚠️
**This is a high priority feature, since 1.0, we need to implement folder support in both directory (public + private)** _WARNING: This feature may include API changes_
1.0
Add folder support - **This is a high priority feature, since 1.0, we need to implement folder support in both directory (public + private)** _WARNING: This feature may include API changes_
non_test
add folder support this is a high priority feature since we need to implement folder support in both directory public private warning this feature may include api changes
0
6,784
2,860,030,835
IssuesEvent
2015-06-03 14:04:06
davidyell/CakePHP3-Proffer
https://api.github.com/repos/davidyell/CakePHP3-Proffer
closed
Test for multiple uploads on one model
testing
Need to create tests to ensure that you can properly upload more than one file on a single table. Such as, ```php $config = [ 'photo' => [ 'dir' => 'photo_dir', 'thumbnailSizes' => [ 'square' => ['w' => 200, 'h' => 200, 'crop' => true], 'portrait' => ['w' => 100, 'h' => 300], ] ], 'profile_image' => [ 'dir' => 'profile_image_dir', 'thumbnailSizes' => [ 'square' => ['w' => 200, 'h' => 200, 'crop' => true], 'portrait' => ['w' => 100, 'h' => 300], ] ] ] ```
1.0
Test for multiple uploads on one model - Need to create tests to ensure that you can properly upload more than one file on a single table. Such as, ```php $config = [ 'photo' => [ 'dir' => 'photo_dir', 'thumbnailSizes' => [ 'square' => ['w' => 200, 'h' => 200, 'crop' => true], 'portrait' => ['w' => 100, 'h' => 300], ] ], 'profile_image' => [ 'dir' => 'profile_image_dir', 'thumbnailSizes' => [ 'square' => ['w' => 200, 'h' => 200, 'crop' => true], 'portrait' => ['w' => 100, 'h' => 300], ] ] ] ```
test
test for multiple uploads on one model need to create tests to ensure that you can properly upload more than one file on a single table such as php config photo dir photo dir thumbnailsizes square portrait profile image dir profile image dir thumbnailsizes square portrait
1
303,734
26,226,804,045
IssuesEvent
2023-01-04 19:30:14
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: tpcc/multiregion/survive=zone/chaos=true failed
C-test-failure O-robot O-roachtest branch-release-22.2.0
roachtest.tpcc/multiregion/survive=zone/chaos=true [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7655703?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7655703?buildTab=artifacts#/tpcc/multiregion/survive=zone/chaos=true) on release-22.2.0 @ [77667a1b0101cd323090011f50cf910aaa933654](https://github.com/cockroachdb/cockroach/commits/77667a1b0101cd323090011f50cf910aaa933654): ``` test artifacts and logs in: /artifacts/tpcc/multiregion/survive=zone/chaos=true/run_1 tpcc.go:275,tpcc.go:670,test_runner.go:930: Post "http://35.231.102.113:9090/api/v1/query": EOF ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=4</code> , <code>ROACHTEST_encrypted=true</code> , <code>ROACHTEST_fs=ext4</code> , <code>ROACHTEST_localSSD=true</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #81450 roachtest: tpcc/multiregion/survive=zone/chaos=true failed [C-test-failure O-roachtest O-robot branch-release-22.1] - #74684 roachtest: tpcc/multiregion/survive=zone/chaos=true failed [C-test-failure O-roachtest O-robot branch-master] </p> </details> /cc @cockroachdb/multiregion <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*tpcc/multiregion/survive=zone/chaos=true.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-21747
2.0
roachtest: tpcc/multiregion/survive=zone/chaos=true failed - roachtest.tpcc/multiregion/survive=zone/chaos=true [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7655703?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7655703?buildTab=artifacts#/tpcc/multiregion/survive=zone/chaos=true) on release-22.2.0 @ [77667a1b0101cd323090011f50cf910aaa933654](https://github.com/cockroachdb/cockroach/commits/77667a1b0101cd323090011f50cf910aaa933654): ``` test artifacts and logs in: /artifacts/tpcc/multiregion/survive=zone/chaos=true/run_1 tpcc.go:275,tpcc.go:670,test_runner.go:930: Post "http://35.231.102.113:9090/api/v1/query": EOF ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=4</code> , <code>ROACHTEST_encrypted=true</code> , <code>ROACHTEST_fs=ext4</code> , <code>ROACHTEST_localSSD=true</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #81450 roachtest: tpcc/multiregion/survive=zone/chaos=true failed [C-test-failure O-roachtest O-robot branch-release-22.1] - #74684 roachtest: tpcc/multiregion/survive=zone/chaos=true failed [C-test-failure O-roachtest O-robot branch-master] </p> </details> /cc @cockroachdb/multiregion <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*tpcc/multiregion/survive=zone/chaos=true.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-21747
test
roachtest tpcc multiregion survive zone chaos true failed roachtest tpcc multiregion survive zone chaos true with on release test artifacts and logs in artifacts tpcc multiregion survive zone chaos true run tpcc go tpcc go test runner go post eof parameters roachtest cloud gce roachtest cpu roachtest encrypted true roachtest fs roachtest localssd true roachtest ssd help see see same failure on other branches roachtest tpcc multiregion survive zone chaos true failed roachtest tpcc multiregion survive zone chaos true failed cc cockroachdb multiregion jira issue crdb
1
832,164
32,074,665,209
IssuesEvent
2023-09-25 10:12:06
equinor/witsml-explorer
https://api.github.com/repos/equinor/witsml-explorer
closed
Create a GapAnalyzer
High Priority
Pick a number of mnemonics → analyze gap context menu item → specify gap size in input modal Run through the selected curves and prepare a report out all of the gaps. | Mnemonic | Start | End | Gap size | | ------------ | ----- | ----- | ---------- | | GRAX | 1300 | 1350 | 50 | | GRAX | 1700 | 1950 | 250 | | GRCX | 200 | 304 | 104 | | GRCX | 230 | 290 | 60 | The result should be available to the user asap in a modal, or under the jobs view, same as here https://github.com/equinor/witsml-explorer/issues/1931#issuecomment-1582730841. The result should be downloadable as .csv. If the selected gap size is smaller than Depth: 1 meter Time: 1 minute A warning should appear, that this might take some time.
1.0
Create a GapAnalyzer - Pick a number of mnemonics → analyze gap context menu item → specify gap size in input modal Run through the selected curves and prepare a report out all of the gaps. | Mnemonic | Start | End | Gap size | | ------------ | ----- | ----- | ---------- | | GRAX | 1300 | 1350 | 50 | | GRAX | 1700 | 1950 | 250 | | GRCX | 200 | 304 | 104 | | GRCX | 230 | 290 | 60 | The result should be available to the user asap in a modal, or under the jobs view, same as here https://github.com/equinor/witsml-explorer/issues/1931#issuecomment-1582730841. The result should be downloadable as .csv. If the selected gap size is smaller than Depth: 1 meter Time: 1 minute A warning should appear, that this might take some time.
non_test
create a gapanalyzer pick a number of mnemonics → analyze gap context menu item → specify gap size in input modal run through the selected curves and prepare a report out all of the gaps mnemonic start end gap size grax grax grcx grcx the result should be available to the user asap in a modal or under the jobs view same as here the result should be downloadable as csv if the selected gap size is smaller than depth meter time minute a warning should appear that this might take some time
0
228,790
18,258,093,919
IssuesEvent
2021-10-03 11:34:54
freqtrade/freqtrade
https://api.github.com/repos/freqtrade/freqtrade
closed
Freqtrade Backtesting optimization issue
Question Backtest
<!-- Note: this section will not show up in the issue. Have you search for this feature before requesting it? It's highly likely that a similar request was already filed. --> ## Describe your environment * Operating system: Ubuntu Desktop * Python Version: 3.9.5 * CCXT version:1.57.3 * Freqtrade Version: 2021.9 ## Describe the enhancement *Explain the enhancement you would like* When working with **large amount** of historical data, the ****freqtrade is using a lot of ram** while backtesting**, and when it isn't enough the **system just kills it** with no explanation, i had to resize my swap file size in order to make a such big backtesting. Maybe i am the only crazy one who is doing backtesting with a year of historical data, but this was just a big average test. _I think it will be a good idea if the backtesting script would use a temp file for it's operations when the **ram is getting filled too much** Also, it doesn't use multi threats for processing, it's a little slow when working with a lot of data_
1.0
Freqtrade Backtesting optimization issue - <!-- Note: this section will not show up in the issue. Have you search for this feature before requesting it? It's highly likely that a similar request was already filed. --> ## Describe your environment * Operating system: Ubuntu Desktop * Python Version: 3.9.5 * CCXT version:1.57.3 * Freqtrade Version: 2021.9 ## Describe the enhancement *Explain the enhancement you would like* When working with **large amount** of historical data, the ****freqtrade is using a lot of ram** while backtesting**, and when it isn't enough the **system just kills it** with no explanation, i had to resize my swap file size in order to make a such big backtesting. Maybe i am the only crazy one who is doing backtesting with a year of historical data, but this was just a big average test. _I think it will be a good idea if the backtesting script would use a temp file for it's operations when the **ram is getting filled too much** Also, it doesn't use multi threats for processing, it's a little slow when working with a lot of data_
test
freqtrade backtesting optimization issue note this section will not show up in the issue have you search for this feature before requesting it it s highly likely that a similar request was already filed describe your environment operating system ubuntu desktop python version ccxt version freqtrade version describe the enhancement explain the enhancement you would like when working with large amount of historical data the freqtrade is using a lot of ram while backtesting and when it isn t enough the system just kills it with no explanation i had to resize my swap file size in order to make a such big backtesting maybe i am the only crazy one who is doing backtesting with a year of historical data but this was just a big average test i think it will be a good idea if the backtesting script would use a temp file for it s operations when the ram is getting filled too much also it doesn t use multi threats for processing it s a little slow when working with a lot of data
1
276,047
23,962,252,871
IssuesEvent
2022-09-12 20:16:22
Sheldonfrith/sst-scheduled-api-test-testee-repo
https://api.github.com/repos/Sheldonfrith/sst-scheduled-api-test-testee-repo
opened
Auto-Generated: g/json - get - 400 - Test: malformedDate - Response body is not an empty object empty
sst-scheduled-api-testing
{"userDefinedErrorMessage":"Test: malformedDate - Response body is not an empty object empty","endpointUrl":"https://api.sunrise-sunset.org/json","response":"[{\"status\":400,\"statusText\":\"1\",\"headers\":\"2\",\"config\":\"3\",\"request\":\"4\",\"data\":\"5\"},\"Bad Request\",{\"server\":\"6\",\"date\":\"7\",\"content-type\":\"8\",\"transfer-encoding\":\"9\",\"connection\":\"10\",\"access-control-allow-origin\":\"11\"},{\"transitional\":\"12\",\"transformRequest\":\"13\",\"transformResponse\":\"14\",\"timeout\":0,\"xsrfCookieName\":\"15\",\"xsrfHeaderName\":\"16\",\"maxContentLength\":-1,\"maxBodyLength\":-1,\"env\":\"17\",\"headers\":\"18\",\"url\":\"19\",\"method\":\"20\",\"params\":\"21\"},{\"_events\":\"22\",\"_eventsCount\":7,\"outputData\":\"23\",\"outputSize\":0,\"writable\":true,\"destroyed\":false,\"_last\":true,\"chunkedEncoding\":false,\"shouldKeepAlive\":false,\"maxRequestsOnConnectionReached\":false,\"_defaultKeepAlive\":true,\"useChunkedEncodingByDefault\":false,\"sendDate\":false,\"_removedConnection\":false,\"_removedContLen\":false,\"_removedTE\":false,\"_contentLength\":0,\"_hasBody\":true,\"_trailer\":\"24\",\"finished\":true,\"_headerSent\":true,\"_closed\":false,\"socket\":\"25\",\"_header\":\"26\",\"_keepAliveTimeout\":0,\"agent\":\"27\",\"method\":\"28\",\"path\":\"29\",\"_ended\":true,\"res\":\"30\",\"aborted\":false,\"timeoutCb\":null,\"upgradeOrConnect\":false,\"parser\":null,\"maxHeadersCount\":null,\"reusedSocket\":false,\"host\":\"31\",\"protocol\":\"32\",\"_redirectable\":\"33\"},{\"results\":\"24\",\"status\":\"34\"},\"nginx\",\"Mon, 12 Sep 2022 20:15:56 GMT\",\"application/json\",\"chunked\",\"close\",\"*\",{\"silentJSONParsing\":true,\"forcedJSONParsing\":true,\"clarifyTimeoutError\":false},[null],[null],\"XSRF-TOKEN\",\"X-XSRF-TOKEN\",{},{\"Accept\":\"35\",\"User-Agent\":\"36\"},\"https://api.sunrise-sunset.org/json\",\"get\",{\"lat\":\"37\",\"lng\":\"38\",\"date\":\"39\"},{},[],\"\",{\"_tlsOptions\":\"40\",\"_secureEstablished\":true,\"_securePending\":false,\"_newSessionPending\":false,\"_controlReleased\":true,\"secureConnecting\":false,\"_SNICallback\":null,\"servername\":\"31\",\"alpnProtocol\":false,\"authorized\":true,\"authorizationError\":null,\"encrypted\":true,\"_events\":\"41\",\"_eventsCount\":10,\"connecting\":false,\"_hadError\":false,\"_parent\":null,\"_host\":\"31\",\"_closeAfterHandlingError\":false,\"_readableState\":\"42\",\"_writableState\":\"43\",\"allowHalfOpen\":false,\"_sockname\":null,\"_pendingData\":null,\"_pendingEncoding\":\"24\",\"_server\":null,\"ssl\":\"44\",\"_requestCert\":true,\"_rejectUnauthorized\":true,\"parser\":null,\"_httpMessage\":\"4\"},\"GET /json?lat=40&lng=-73&date=not+a+date HTTP/1.1\\r\\nAccept: application/json, text/plain, */*\\r\\nUser-Agent: axios/0.27.2\\r\\nHost: api.sunrise-sunset.org\\r\\nConnection: close\\r\\n\\r\\n\",{\"_events\":\"45\",\"_eventsCount\":2,\"defaultPort\":443,\"protocol\":\"32\",\"options\":\"46\",\"requests\":\"47\",\"sockets\":\"48\",\"freeSockets\":\"49\",\"keepAliveMsecs\":1000,\"keepAlive\":false,\"maxSockets\":null,\"maxFreeSockets\":256,\"scheduling\":\"50\",\"maxTotalSockets\":null,\"totalSocketCount\":1,\"maxCachedSessions\":100,\"_sessionCache\":\"51\"},\"GET\",\"/json?lat=40&lng=-73&date=not+a+date\",{\"_readableState\":\"52\",\"_events\":\"53\",\"_eventsCount\":4,\"socket\":\"25\",\"httpVersionMajor\":1,\"httpVersionMinor\":1,\"httpVersion\":\"54\",\"complete\":true,\"rawHeaders\":\"55\",\"rawTrailers\":\"56\",\"aborted\":false,\"upgrade\":false,\"url\":\"24\",\"method\":null,\"statusCode\":400,\"statusMessage\":\"1\",\"client\":\"25\",\"_consuming\":false,\"_dumped\":false,\"req\":\"4\",\"responseUrl\":\"57\",\"redirects\":\"58\"},\"api.sunrise-sunset.org\",\"https:\",{\"_writableState\":\"59\",\"_events\":\"60\",\"_eventsCount\":3,\"_options\":\"61\",\"_ended\":true,\"_ending\":true,\"_redirectCount\":0,\"_redirects\":\"58\",\"_requestBodyLength\":0,\"_requestBodyBuffers\":\"62\",\"_currentRequest\":\"4\",\"_currentUrl\":\"57\"},\"INVALID_DATE\",\"application/json, text/plain, */*\",\"axios/0.27.2\",\"40\",\"-73\",\"not a date\",{\"pipe\":false,\"secureContext\":\"63\",\"isServer\":false,\"requestCert\":true,\"rejectUnauthorized\":true,\"session\":\"64\"},{\"close\":\"65\"},{\"objectMode\":false,\"highWaterMark\":16384,\"buffer\":\"66\",\"length\":0,\"pipes\":\"67\",\"flowing\":true,\"ended\":false,\"endEmitted\":false,\"reading\":true,\"constructed\":true,\"sync\":false,\"needReadable\":true,\"emittedReadable\":false,\"readableListening\":false,\"resumeScheduled\":false,\"errorEmitted\":false,\"emitClose\":false,\"autoDestroy\":true,\"destroyed\":false,\"errored\":null,\"closed\":false,\"closeEmitted\":false,\"defaultEncoding\":\"68\",\"awaitDrainWriters\":null,\"multiAwaitDrain\":false,\"readingMore\":false,\"dataEmitted\":true,\"decoder\":null,\"encoding\":null},{\"objectMode\":false,\"highWaterMark\":16384,\"finalCalled\":true,\"needDrain\":false,\"ending\":true,\"ended\":true,\"finished\":false,\"destroyed\":false,\"decodeStrings\":false,\"defaultEncoding\":\"68\",\"length\":0,\"writing\":false,\"corked\":0,\"sync\":false,\"bufferProcessing\":false,\"writecb\":null,\"writelen\":0,\"afterWriteTickInfo\":null,\"buffered\":\"69\",\"bufferedIndex\":0,\"allBuffers\":true,\"allNoop\":true,\"pendingcb\":1,\"constructed\":true,\"prefinished\":false,\"errorEmitted\":false,\"emitClose\":false,\"autoDestroy\":true,\"errored\":null,\"closed\":false,\"closeEmitted\":false},{\"_parent\":\"70\",\"_secureContext\":\"63\",\"reading\":true},{},{\"noDelay\":true,\"path\":null},{},{\"api.sunrise-sunset.org:443:::::::::::::::::::::\":\"71\"},{},\"lifo\",{\"map\":\"72\",\"list\":\"73\"},{\"objectMode\":false,\"highWaterMark\":16384,\"buffer\":\"74\",\"length\":0,\"pipes\":\"75\",\"flowing\":true,\"ended\":true,\"endEmitted\":true,\"reading\":false,\"constructed\":true,\"sync\":true,\"needReadable\":false,\"emittedReadable\":false,\"readableListening\":false,\"resumeScheduled\":false,\"errorEmitted\":false,\"emitClose\":true,\"autoDestroy\":true,\"destroyed\":true,\"errored\":null,\"closed\":true,\"closeEmitted\":true,\"defaultEncoding\":\"68\",\"awaitDrainWriters\":null,\"multiAwaitDrain\":false,\"readingMore\":true,\"dataEmitted\":true,\"decoder\":null,\"encoding\":null},{\"end\":\"76\"},\"1.1\",[\"77\",\"6\",\"78\",\"7\",\"79\",\"8\",\"80\",\"9\",\"81\",\"10\",\"82\",\"11\"],[],\"https://api.sunrise-sunset.org/json?lat=40&lng=-73&date=not+a+date\",[],{\"objectMode\":false,\"highWaterMark\":16384,\"finalCalled\":false,\"needDrain\":false,\"ending\":false,\"ended\":false,\"finished\":false,\"destroyed\":false,\"decodeStrings\":true,\"defaultEncoding\":\"68\",\"length\":0,\"writing\":false,\"corked\":0,\"sync\":true,\"bufferProcessing\":false,\"writecb\":null,\"writelen\":0,\"afterWriteTickInfo\":null,\"buffered\":\"83\",\"bufferedIndex\":0,\"allBuffers\":true,\"allNoop\":true,\"pendingcb\":0,\"constructed\":true,\"prefinished\":false,\"errorEmitted\":false,\"emitClose\":true,\"autoDestroy\":true,\"errored\":null,\"closed\":false,\"closeEmitted\":false},{},{\"maxRedirects\":21,\"maxBodyLength\":10485760,\"protocol\":\"32\",\"path\":\"29\",\"method\":\"28\",\"headers\":\"18\",\"agents\":\"84\",\"hostname\":\"31\",\"port\":null,\"nativeProtocols\":\"85\",\"pathname\":\"86\",\"search\":\"87\"},[],{\"context\":\"88\"},{\"type\":\"89\",\"data\":\"90\"},[null,null,null,null],{\"head\":null,\"tail\":null,\"length\":0},[],\"utf8\",[],{\"reading\":true,\"onconnection\":null},[\"25\"],{\"api.sunrise-sunset.org:443:::::::::::::::::::::\":\"91\"},[\"92\"],{\"head\":null,\"tail\":null,\"length\":0},[],[null,null],\"Server\",\"Date\",\"Content-Type\",\"Transfer-Encoding\",\"Connection\",\"Access-Control-Allow-Origin\",[],{},{\"http:\":\"93\",\"https:\":\"94\"},\"/json\",\"?lat=40&lng=-73&date=not+a+date\",{},\"Buffer\",[48,130,6,172,2,1,1,2,2,3,3,4,2,192,48,4,32,194,35,102,194,114,237,112,160,138,38,123,162,52,104,150,111,151,159,131,164,44,211,183,105,89,82,186,100,102,105,170,154,4,48,199,158,12,138,47,199,101,21,177,207,181,101,72,90,38,119,157,233,229,179,9,115,98,199,99,145,48,242,146,36,202,195,88,44,99,209,3,54,2,25,75,33,121,219,186,69,252,144,161,6,2,4,99,31,147,122,162,4,2,2,28,32,163,130,5,55,48,130,5,51,48,130,4,27,160,3,2,1,2,2,18,3,71,254,229,55,121,156,200,92,61,203,11,111,134,247,6,232,93,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,50,49,11,48,9,6,3,85,4,6,19,2,85,83,49,22,48,20,6,3,85,4,10,19,13,76,101,116,39,115,32,69,110,99,114,121,112,116,49,11,48,9,6,3,85,4,3,19,2,82,51,48,30,23,13,50,50,48,54,50,50,50,51,48,56,52,52,90,23,13,50,50,48,57,50,48,50,51,48,56,52,51,90,48,33,49,31,48,29,6,3,85,4,3,19,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,233,186,178,123,47,199,64,163,250,184,169,62,243,174,28,203,97,83,151,28,227,60,54,233,72,212,80,197,99,114,140,152,211,175,163,243,184,125,96,246,68,208,92,167,247,236,244,195,178,4,17,185,98,56,237,181,124,164,51,186,103,198,147,82,28,86,205,229,74,135,132,93,225,72,221,236,243,123,56,156,92,150,180,3,33,106,44,30,208,229,179,159,96,222,141,22,106,119,114,120,253,30,183,252,16,248,187,67,63,246,246,89,91,13,207,51,102,65,215,96,211,127,148,154,232,219,150,55,25,198,225,236,184,146,228,58,51,18,255,53,84,45,88,148,166,248,126,158,123,48,122,56,35,169,137,55,63,6,216,167,85,8,194,46,98,149,96,115,87,199,202,85,4,83,209,65,173,124,8,113,167,233,135,136,254,21,211,41,154,227,82,142,206,116,32,85,30,221,171,191,13,233,150,67,163,23,229,183,6,170,137,82,174,131,193,198,183,248,13,82,4,252,55,104,203,154,28,40,11,231,133,171,203,253,74,44,160,7,132,135,162,58,244,207,59,152,118,34,65,158,76,250,5,139,212,97,2,3,1,0,1,163,130,2,82,48,130,2,78,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,29,6,3,85,29,14,4,22,4,20,94,221,47,212,95,78,19,222,67,242,125,227,147,38,108,203,192,221,143,208,48,31,6,3,85,29,35,4,24,48,22,128,20,20,46,179,23,183,88,86,203,174,80,9,64,230,31,175,157,139,20,194,198,48,85,6,8,43,6,1,5,5,7,1,1,4,73,48,71,48,33,6,8,43,6,1,5,5,7,48,1,134,21,104,116,116,112,58,47,47,114,51,46,111,46,108,101,110,99,114,46,111,114,103,48,34,6,8,43,6,1,5,5,7,48,2,134,22,104,116,116,112,58,47,47,114,51,46,105,46,108,101,110,99,114,46,111,114,103,47,48,33,6,3,85,29,17,4,26,48,24,130,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,76,6,3,85,29,32,4,69,48,67,48,8,6,6,103,129,12,1,2,1,48,55,6,11,43,6,1,4,1,130,223,19,1,1,1,48,40,48,38,6,8,43,6,1,5,5,7,2,1,22,26,104,116,116,112,58,47,47,99,112,115,46,108,101,116,115,101,110,99,114,121,112,116,46,111,114,103,48,130,1,5,6,10,43,6,1,4,1,214,121,2,4,2,4,129,246,4,129,243,0,241,0,118,0,65,200,202,177,223,34,70,74,16,198,161,58,9,66,135,94,78,49,139,27,3,235,235,75,199,104,240,144,98,150,6,246,0,0,1,129,141,227,203,210,0,0,4,3,0,71,48,69,2,32,108,175,217,7,220,142,87,127,54,102,28,197,54,185,158,156,98,228,132,143,84,150,30,17,226,230,211,138,170,13,174,230,2,33,0,159,186,52,13,55,51,30,231,210,3,22,92,244,99,27,184,198,127,20,146,61,38,10,138,100,4,169,70,41,79,180,176,0,119,0,41,121,190,240,158,57,57,33,240,86,115,159,99,165,119,229,190,87,125,156,96,10,248,249,77,93,38,92,37,93,199,132,0,0,1,129,141,227,204,173,0,0,4,3,0,72,48,70,2,33,0,210,68,43,72,92,177,5,64,183,27,117,58,85,0,74,149,200,0,212,88,185,10,48,129,17,121,90,249,23,207,113,34,2,33,0,136,41,237,27,4,163,220,48,223,128,220,102,167,199,237,152,30,138,4,32,117,230,180,222,226,117,5,106,120,203,217,120,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,152,53,103,108,232,240,29,45,222,4,246,135,212,90,197,101,120,57,236,238,152,70,140,63,143,229,142,5,13,93,93,84,29,42,199,62,190,99,166,178,9,51,48,174,6,220,127,137,207,31,83,193,103,62,170,13,209,230,175,182,100,165,89,46,237,94,80,113,109,171,160,203,65,20,87,1,164,102,85,131,118,66,89,243,14,28,174,15,133,222,216,100,232,183,66,208,219,7,107,168,233,114,122,255,102,88,100,172,159,71,36,3,230,126,254,167,69,18,152,58,106,0,193,65,130,230,231,33,147,73,35,188,92,49,64,146,18,222,185,235,68,165,77,46,147,22,107,231,11,77,223,20,68,204,154,92,235,145,242,50,168,76,142,166,150,28,249,186,91,207,187,209,187,21,252,252,43,169,40,178,25,148,110,170,74,231,191,164,154,141,200,44,57,43,177,202,217,226,59,111,6,34,45,163,36,167,186,211,200,244,168,127,47,43,149,133,254,186,29,146,178,231,40,167,197,191,199,96,32,44,110,28,231,59,25,238,100,180,1,160,51,62,29,118,21,225,22,76,185,5,94,233,45,248,183,193,164,2,4,0,166,24,4,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,169,4,2,2,1,44,170,129,211,4,129,208,30,154,137,202,221,14,229,106,14,184,204,101,221,98,175,113,220,217,125,25,168,100,115,142,17,112,65,231,59,178,83,49,35,120,53,3,224,70,89,184,181,144,125,174,23,182,218,209,134,185,212,88,138,160,187,28,196,71,96,68,154,229,141,252,57,154,159,135,165,122,8,91,88,137,149,242,63,220,27,197,11,221,215,223,149,63,246,55,165,164,179,119,44,116,31,85,144,9,208,95,32,242,64,194,122,81,125,226,219,81,252,70,206,122,115,253,54,132,79,91,140,111,91,68,241,56,167,84,84,222,229,245,221,187,225,250,33,169,209,175,38,169,214,202,250,191,11,54,201,171,108,174,143,101,89,130,116,122,196,238,210,44,224,232,54,42,236,139,79,116,38,141,5,232,26,5,103,178,38,122,176,175,134,242,151,23,231,182,106,88,140,108,235,228,148,102,131,121,39,18,229,24,143,12,228,114,162,46,173,3,2,1,1,179,3,2,1,29],{\"type\":\"89\",\"data\":\"95\"},\"api.sunrise-sunset.org:443:::::::::::::::::::::\",{\"METHODS\":\"96\",\"STATUS_CODES\":\"97\",\"maxHeaderSize\":16384,\"globalAgent\":\"98\"},{\"globalAgent\":\"27\"},[48,130,6,172,2,1,1,2,2,3,3,4,2,192,48,4,32,194,35,102,194,114,237,112,160,138,38,123,162,52,104,150,111,151,159,131,164,44,211,183,105,89,82,186,100,102,105,170,154,4,48,199,158,12,138,47,199,101,21,177,207,181,101,72,90,38,119,157,233,229,179,9,115,98,199,99,145,48,242,146,36,202,195,88,44,99,209,3,54,2,25,75,33,121,219,186,69,252,144,161,6,2,4,99,31,147,122,162,4,2,2,28,32,163,130,5,55,48,130,5,51,48,130,4,27,160,3,2,1,2,2,18,3,71,254,229,55,121,156,200,92,61,203,11,111,134,247,6,232,93,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,50,49,11,48,9,6,3,85,4,6,19,2,85,83,49,22,48,20,6,3,85,4,10,19,13,76,101,116,39,115,32,69,110,99,114,121,112,116,49,11,48,9,6,3,85,4,3,19,2,82,51,48,30,23,13,50,50,48,54,50,50,50,51,48,56,52,52,90,23,13,50,50,48,57,50,48,50,51,48,56,52,51,90,48,33,49,31,48,29,6,3,85,4,3,19,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,233,186,178,123,47,199,64,163,250,184,169,62,243,174,28,203,97,83,151,28,227,60,54,233,72,212,80,197,99,114,140,152,211,175,163,243,184,125,96,246,68,208,92,167,247,236,244,195,178,4,17,185,98,56,237,181,124,164,51,186,103,198,147,82,28,86,205,229,74,135,132,93,225,72,221,236,243,123,56,156,92,150,180,3,33,106,44,30,208,229,179,159,96,222,141,22,106,119,114,120,253,30,183,252,16,248,187,67,63,246,246,89,91,13,207,51,102,65,215,96,211,127,148,154,232,219,150,55,25,198,225,236,184,146,228,58,51,18,255,53,84,45,88,148,166,248,126,158,123,48,122,56,35,169,137,55,63,6,216,167,85,8,194,46,98,149,96,115,87,199,202,85,4,83,209,65,173,124,8,113,167,233,135,136,254,21,211,41,154,227,82,142,206,116,32,85,30,221,171,191,13,233,150,67,163,23,229,183,6,170,137,82,174,131,193,198,183,248,13,82,4,252,55,104,203,154,28,40,11,231,133,171,203,253,74,44,160,7,132,135,162,58,244,207,59,152,118,34,65,158,76,250,5,139,212,97,2,3,1,0,1,163,130,2,82,48,130,2,78,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,29,6,3,85,29,14,4,22,4,20,94,221,47,212,95,78,19,222,67,242,125,227,147,38,108,203,192,221,143,208,48,31,6,3,85,29,35,4,24,48,22,128,20,20,46,179,23,183,88,86,203,174,80,9,64,230,31,175,157,139,20,194,198,48,85,6,8,43,6,1,5,5,7,1,1,4,73,48,71,48,33,6,8,43,6,1,5,5,7,48,1,134,21,104,116,116,112,58,47,47,114,51,46,111,46,108,101,110,99,114,46,111,114,103,48,34,6,8,43,6,1,5,5,7,48,2,134,22,104,116,116,112,58,47,47,114,51,46,105,46,108,101,110,99,114,46,111,114,103,47,48,33,6,3,85,29,17,4,26,48,24,130,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,76,6,3,85,29,32,4,69,48,67,48,8,6,6,103,129,12,1,2,1,48,55,6,11,43,6,1,4,1,130,223,19,1,1,1,48,40,48,38,6,8,43,6,1,5,5,7,2,1,22,26,104,116,116,112,58,47,47,99,112,115,46,108,101,116,115,101,110,99,114,121,112,116,46,111,114,103,48,130,1,5,6,10,43,6,1,4,1,214,121,2,4,2,4,129,246,4,129,243,0,241,0,118,0,65,200,202,177,223,34,70,74,16,198,161,58,9,66,135,94,78,49,139,27,3,235,235,75,199,104,240,144,98,150,6,246,0,0,1,129,141,227,203,210,0,0,4,3,0,71,48,69,2,32,108,175,217,7,220,142,87,127,54,102,28,197,54,185,158,156,98,228,132,143,84,150,30,17,226,230,211,138,170,13,174,230,2,33,0,159,186,52,13,55,51,30,231,210,3,22,92,244,99,27,184,198,127,20,146,61,38,10,138,100,4,169,70,41,79,180,176,0,119,0,41,121,190,240,158,57,57,33,240,86,115,159,99,165,119,229,190,87,125,156,96,10,248,249,77,93,38,92,37,93,199,132,0,0,1,129,141,227,204,173,0,0,4,3,0,72,48,70,2,33,0,210,68,43,72,92,177,5,64,183,27,117,58,85,0,74,149,200,0,212,88,185,10,48,129,17,121,90,249,23,207,113,34,2,33,0,136,41,237,27,4,163,220,48,223,128,220,102,167,199,237,152,30,138,4,32,117,230,180,222,226,117,5,106,120,203,217,120,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,152,53,103,108,232,240,29,45,222,4,246,135,212,90,197,101,120,57,236,238,152,70,140,63,143,229,142,5,13,93,93,84,29,42,199,62,190,99,166,178,9,51,48,174,6,220,127,137,207,31,83,193,103,62,170,13,209,230,175,182,100,165,89,46,237,94,80,113,109,171,160,203,65,20,87,1,164,102,85,131,118,66,89,243,14,28,174,15,133,222,216,100,232,183,66,208,219,7,107,168,233,114,122,255,102,88,100,172,159,71,36,3,230,126,254,167,69,18,152,58,106,0,193,65,130,230,231,33,147,73,35,188,92,49,64,146,18,222,185,235,68,165,77,46,147,22,107,231,11,77,223,20,68,204,154,92,235,145,242,50,168,76,142,166,150,28,249,186,91,207,187,209,187,21,252,252,43,169,40,178,25,148,110,170,74,231,191,164,154,141,200,44,57,43,177,202,217,226,59,111,6,34,45,163,36,167,186,211,200,244,168,127,47,43,149,133,254,186,29,146,178,231,40,167,197,191,199,96,32,44,110,28,231,59,25,238,100,180,1,160,51,62,29,118,21,225,22,76,185,5,94,233,45,248,183,193,164,2,4,0,166,24,4,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,169,4,2,2,1,44,170,129,211,4,129,208,30,154,137,202,221,14,229,106,14,184,204,101,221,98,175,113,220,217,125,25,168,100,115,142,17,112,65,231,59,178,83,49,35,120,53,3,224,70,89,184,181,144,125,174,23,182,218,209,134,185,212,88,138,160,187,28,196,71,96,68,154,229,141,252,57,154,159,135,165,122,8,91,88,137,149,242,63,220,27,197,11,221,215,223,149,63,246,55,165,164,179,119,44,116,31,85,144,9,208,95,32,242,64,194,122,81,125,226,219,81,252,70,206,122,115,253,54,132,79,91,140,111,91,68,241,56,167,84,84,222,229,245,221,187,225,250,33,169,209,175,38,169,214,202,250,191,11,54,201,171,108,174,143,101,89,130,116,122,196,238,210,44,224,232,54,42,236,139,79,116,38,141,5,232,26,5,103,178,38,122,176,175,134,242,151,23,231,182,106,88,140,108,235,228,148,102,131,121,39,18,229,24,143,12,228,114,162,46,173,3,2,1,1,179,3,2,1,29],[\"99\",\"100\",\"101\",\"102\",\"103\",\"104\",\"28\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\",\"120\",\"121\",\"122\",\"123\",\"124\",\"125\",\"126\",\"127\",\"128\",\"129\",\"130\",\"131\"],{\"100\":\"132\",\"101\":\"133\",\"102\":\"134\",\"103\":\"135\",\"200\":\"136\",\"201\":\"137\",\"202\":\"138\",\"203\":\"139\",\"204\":\"140\",\"205\":\"141\",\"206\":\"142\",\"207\":\"143\",\"208\":\"144\",\"226\":\"145\",\"300\":\"146\",\"301\":\"147\",\"302\":\"148\",\"303\":\"149\",\"304\":\"150\",\"305\":\"151\",\"307\":\"152\",\"308\":\"153\",\"400\":\"1\",\"401\":\"154\",\"402\":\"155\",\"403\":\"156\",\"404\":\"157\",\"405\":\"158\",\"406\":\"159\",\"407\":\"160\",\"408\":\"161\",\"409\":\"162\",\"410\":\"163\",\"411\":\"164\",\"412\":\"165\",\"413\":\"166\",\"414\":\"167\",\"415\":\"168\",\"416\":\"169\",\"417\":\"170\",\"418\":\"171\",\"421\":\"172\",\"422\":\"173\",\"423\":\"174\",\"424\":\"175\",\"425\":\"176\",\"426\":\"177\",\"428\":\"178\",\"429\":\"179\",\"431\":\"180\",\"451\":\"181\",\"500\":\"182\",\"501\":\"183\",\"502\":\"184\",\"503\":\"185\",\"504\":\"186\",\"505\":\"187\",\"506\":\"188\",\"507\":\"189\",\"508\":\"190\",\"509\":\"191\",\"510\":\"192\",\"511\":\"193\"},{\"_events\":\"194\",\"_eventsCount\":2,\"defaultPort\":80,\"protocol\":\"195\",\"options\":\"196\",\"requests\":\"197\",\"sockets\":\"198\",\"freeSockets\":\"199\",\"keepAliveMsecs\":1000,\"keepAlive\":false,\"maxSockets\":null,\"maxFreeSockets\":256,\"scheduling\":\"50\",\"maxTotalSockets\":null,\"totalSocketCount\":0},\"ACL\",\"BIND\",\"CHECKOUT\",\"CONNECT\",\"COPY\",\"DELETE\",\"HEAD\",\"LINK\",\"LOCK\",\"M-SEARCH\",\"MERGE\",\"MKACTIVITY\",\"MKCALENDAR\",\"MKCOL\",\"MOVE\",\"NOTIFY\",\"OPTIONS\",\"PATCH\",\"POST\",\"PROPFIND\",\"PROPPATCH\",\"PURGE\",\"PUT\",\"REBIND\",\"REPORT\",\"SEARCH\",\"SOURCE\",\"SUBSCRIBE\",\"TRACE\",\"UNBIND\",\"UNLINK\",\"UNLOCK\",\"UNSUBSCRIBE\",\"Continue\",\"Switching Protocols\",\"Processing\",\"Early Hints\",\"OK\",\"Created\",\"Accepted\",\"Non-Authoritative Information\",\"No Content\",\"Reset Content\",\"Partial Content\",\"Multi-Status\",\"Already Reported\",\"IM Used\",\"Multiple Choices\",\"Moved Permanently\",\"Found\",\"See Other\",\"Not Modified\",\"Use Proxy\",\"Temporary Redirect\",\"Permanent Redirect\",\"Unauthorized\",\"Payment Required\",\"Forbidden\",\"Not Found\",\"Method Not Allowed\",\"Not Acceptable\",\"Proxy Authentication Required\",\"Request Timeout\",\"Conflict\",\"Gone\",\"Length Required\",\"Precondition Failed\",\"Payload Too Large\",\"URI Too Long\",\"Unsupported Media Type\",\"Range Not Satisfiable\",\"Expectation Failed\",\"I'm a Teapot\",\"Misdirected Request\",\"Unprocessable Entity\",\"Locked\",\"Failed Dependency\",\"Too Early\",\"Upgrade Required\",\"Precondition Required\",\"Too Many Requests\",\"Request Header Fields Too Large\",\"Unavailable For Legal Reasons\",\"Internal Server Error\",\"Not Implemented\",\"Bad Gateway\",\"Service Unavailable\",\"Gateway Timeout\",\"HTTP Version Not Supported\",\"Variant Also Negotiates\",\"Insufficient Storage\",\"Loop Detected\",\"Bandwidth Limit Exceeded\",\"Not Extended\",\"Network Authentication Required\",{},\"http:\",{\"noDelay\":true,\"path\":null},{},{},{}]","request":"[{\"transitional\":\"1\",\"transformRequest\":\"2\",\"transformResponse\":\"3\",\"timeout\":0,\"xsrfCookieName\":\"4\",\"xsrfHeaderName\":\"5\",\"maxContentLength\":-1,\"maxBodyLength\":-1,\"env\":\"6\",\"headers\":\"7\",\"url\":\"8\",\"method\":\"9\",\"params\":\"10\"},{\"silentJSONParsing\":true,\"forcedJSONParsing\":true,\"clarifyTimeoutError\":false},[null],[null],\"XSRF-TOKEN\",\"X-XSRF-TOKEN\",{},{\"Accept\":\"11\",\"User-Agent\":\"12\"},\"https://api.sunrise-sunset.org/json\",\"get\",{\"lat\":\"13\",\"lng\":\"14\",\"date\":\"15\"},\"application/json, text/plain, */*\",\"axios/0.27.2\",\"40\",\"-73\",\"not a date\"]"}
1.0
Auto-Generated: g/json - get - 400 - Test: malformedDate - Response body is not an empty object empty - {"userDefinedErrorMessage":"Test: malformedDate - Response body is not an empty object empty","endpointUrl":"https://api.sunrise-sunset.org/json","response":"[{\"status\":400,\"statusText\":\"1\",\"headers\":\"2\",\"config\":\"3\",\"request\":\"4\",\"data\":\"5\"},\"Bad Request\",{\"server\":\"6\",\"date\":\"7\",\"content-type\":\"8\",\"transfer-encoding\":\"9\",\"connection\":\"10\",\"access-control-allow-origin\":\"11\"},{\"transitional\":\"12\",\"transformRequest\":\"13\",\"transformResponse\":\"14\",\"timeout\":0,\"xsrfCookieName\":\"15\",\"xsrfHeaderName\":\"16\",\"maxContentLength\":-1,\"maxBodyLength\":-1,\"env\":\"17\",\"headers\":\"18\",\"url\":\"19\",\"method\":\"20\",\"params\":\"21\"},{\"_events\":\"22\",\"_eventsCount\":7,\"outputData\":\"23\",\"outputSize\":0,\"writable\":true,\"destroyed\":false,\"_last\":true,\"chunkedEncoding\":false,\"shouldKeepAlive\":false,\"maxRequestsOnConnectionReached\":false,\"_defaultKeepAlive\":true,\"useChunkedEncodingByDefault\":false,\"sendDate\":false,\"_removedConnection\":false,\"_removedContLen\":false,\"_removedTE\":false,\"_contentLength\":0,\"_hasBody\":true,\"_trailer\":\"24\",\"finished\":true,\"_headerSent\":true,\"_closed\":false,\"socket\":\"25\",\"_header\":\"26\",\"_keepAliveTimeout\":0,\"agent\":\"27\",\"method\":\"28\",\"path\":\"29\",\"_ended\":true,\"res\":\"30\",\"aborted\":false,\"timeoutCb\":null,\"upgradeOrConnect\":false,\"parser\":null,\"maxHeadersCount\":null,\"reusedSocket\":false,\"host\":\"31\",\"protocol\":\"32\",\"_redirectable\":\"33\"},{\"results\":\"24\",\"status\":\"34\"},\"nginx\",\"Mon, 12 Sep 2022 20:15:56 GMT\",\"application/json\",\"chunked\",\"close\",\"*\",{\"silentJSONParsing\":true,\"forcedJSONParsing\":true,\"clarifyTimeoutError\":false},[null],[null],\"XSRF-TOKEN\",\"X-XSRF-TOKEN\",{},{\"Accept\":\"35\",\"User-Agent\":\"36\"},\"https://api.sunrise-sunset.org/json\",\"get\",{\"lat\":\"37\",\"lng\":\"38\",\"date\":\"39\"},{},[],\"\",{\"_tlsOptions\":\"40\",\"_secureEstablished\":true,\"_securePending\":false,\"_newSessionPending\":false,\"_controlReleased\":true,\"secureConnecting\":false,\"_SNICallback\":null,\"servername\":\"31\",\"alpnProtocol\":false,\"authorized\":true,\"authorizationError\":null,\"encrypted\":true,\"_events\":\"41\",\"_eventsCount\":10,\"connecting\":false,\"_hadError\":false,\"_parent\":null,\"_host\":\"31\",\"_closeAfterHandlingError\":false,\"_readableState\":\"42\",\"_writableState\":\"43\",\"allowHalfOpen\":false,\"_sockname\":null,\"_pendingData\":null,\"_pendingEncoding\":\"24\",\"_server\":null,\"ssl\":\"44\",\"_requestCert\":true,\"_rejectUnauthorized\":true,\"parser\":null,\"_httpMessage\":\"4\"},\"GET /json?lat=40&lng=-73&date=not+a+date HTTP/1.1\\r\\nAccept: application/json, text/plain, */*\\r\\nUser-Agent: axios/0.27.2\\r\\nHost: api.sunrise-sunset.org\\r\\nConnection: close\\r\\n\\r\\n\",{\"_events\":\"45\",\"_eventsCount\":2,\"defaultPort\":443,\"protocol\":\"32\",\"options\":\"46\",\"requests\":\"47\",\"sockets\":\"48\",\"freeSockets\":\"49\",\"keepAliveMsecs\":1000,\"keepAlive\":false,\"maxSockets\":null,\"maxFreeSockets\":256,\"scheduling\":\"50\",\"maxTotalSockets\":null,\"totalSocketCount\":1,\"maxCachedSessions\":100,\"_sessionCache\":\"51\"},\"GET\",\"/json?lat=40&lng=-73&date=not+a+date\",{\"_readableState\":\"52\",\"_events\":\"53\",\"_eventsCount\":4,\"socket\":\"25\",\"httpVersionMajor\":1,\"httpVersionMinor\":1,\"httpVersion\":\"54\",\"complete\":true,\"rawHeaders\":\"55\",\"rawTrailers\":\"56\",\"aborted\":false,\"upgrade\":false,\"url\":\"24\",\"method\":null,\"statusCode\":400,\"statusMessage\":\"1\",\"client\":\"25\",\"_consuming\":false,\"_dumped\":false,\"req\":\"4\",\"responseUrl\":\"57\",\"redirects\":\"58\"},\"api.sunrise-sunset.org\",\"https:\",{\"_writableState\":\"59\",\"_events\":\"60\",\"_eventsCount\":3,\"_options\":\"61\",\"_ended\":true,\"_ending\":true,\"_redirectCount\":0,\"_redirects\":\"58\",\"_requestBodyLength\":0,\"_requestBodyBuffers\":\"62\",\"_currentRequest\":\"4\",\"_currentUrl\":\"57\"},\"INVALID_DATE\",\"application/json, text/plain, */*\",\"axios/0.27.2\",\"40\",\"-73\",\"not a date\",{\"pipe\":false,\"secureContext\":\"63\",\"isServer\":false,\"requestCert\":true,\"rejectUnauthorized\":true,\"session\":\"64\"},{\"close\":\"65\"},{\"objectMode\":false,\"highWaterMark\":16384,\"buffer\":\"66\",\"length\":0,\"pipes\":\"67\",\"flowing\":true,\"ended\":false,\"endEmitted\":false,\"reading\":true,\"constructed\":true,\"sync\":false,\"needReadable\":true,\"emittedReadable\":false,\"readableListening\":false,\"resumeScheduled\":false,\"errorEmitted\":false,\"emitClose\":false,\"autoDestroy\":true,\"destroyed\":false,\"errored\":null,\"closed\":false,\"closeEmitted\":false,\"defaultEncoding\":\"68\",\"awaitDrainWriters\":null,\"multiAwaitDrain\":false,\"readingMore\":false,\"dataEmitted\":true,\"decoder\":null,\"encoding\":null},{\"objectMode\":false,\"highWaterMark\":16384,\"finalCalled\":true,\"needDrain\":false,\"ending\":true,\"ended\":true,\"finished\":false,\"destroyed\":false,\"decodeStrings\":false,\"defaultEncoding\":\"68\",\"length\":0,\"writing\":false,\"corked\":0,\"sync\":false,\"bufferProcessing\":false,\"writecb\":null,\"writelen\":0,\"afterWriteTickInfo\":null,\"buffered\":\"69\",\"bufferedIndex\":0,\"allBuffers\":true,\"allNoop\":true,\"pendingcb\":1,\"constructed\":true,\"prefinished\":false,\"errorEmitted\":false,\"emitClose\":false,\"autoDestroy\":true,\"errored\":null,\"closed\":false,\"closeEmitted\":false},{\"_parent\":\"70\",\"_secureContext\":\"63\",\"reading\":true},{},{\"noDelay\":true,\"path\":null},{},{\"api.sunrise-sunset.org:443:::::::::::::::::::::\":\"71\"},{},\"lifo\",{\"map\":\"72\",\"list\":\"73\"},{\"objectMode\":false,\"highWaterMark\":16384,\"buffer\":\"74\",\"length\":0,\"pipes\":\"75\",\"flowing\":true,\"ended\":true,\"endEmitted\":true,\"reading\":false,\"constructed\":true,\"sync\":true,\"needReadable\":false,\"emittedReadable\":false,\"readableListening\":false,\"resumeScheduled\":false,\"errorEmitted\":false,\"emitClose\":true,\"autoDestroy\":true,\"destroyed\":true,\"errored\":null,\"closed\":true,\"closeEmitted\":true,\"defaultEncoding\":\"68\",\"awaitDrainWriters\":null,\"multiAwaitDrain\":false,\"readingMore\":true,\"dataEmitted\":true,\"decoder\":null,\"encoding\":null},{\"end\":\"76\"},\"1.1\",[\"77\",\"6\",\"78\",\"7\",\"79\",\"8\",\"80\",\"9\",\"81\",\"10\",\"82\",\"11\"],[],\"https://api.sunrise-sunset.org/json?lat=40&lng=-73&date=not+a+date\",[],{\"objectMode\":false,\"highWaterMark\":16384,\"finalCalled\":false,\"needDrain\":false,\"ending\":false,\"ended\":false,\"finished\":false,\"destroyed\":false,\"decodeStrings\":true,\"defaultEncoding\":\"68\",\"length\":0,\"writing\":false,\"corked\":0,\"sync\":true,\"bufferProcessing\":false,\"writecb\":null,\"writelen\":0,\"afterWriteTickInfo\":null,\"buffered\":\"83\",\"bufferedIndex\":0,\"allBuffers\":true,\"allNoop\":true,\"pendingcb\":0,\"constructed\":true,\"prefinished\":false,\"errorEmitted\":false,\"emitClose\":true,\"autoDestroy\":true,\"errored\":null,\"closed\":false,\"closeEmitted\":false},{},{\"maxRedirects\":21,\"maxBodyLength\":10485760,\"protocol\":\"32\",\"path\":\"29\",\"method\":\"28\",\"headers\":\"18\",\"agents\":\"84\",\"hostname\":\"31\",\"port\":null,\"nativeProtocols\":\"85\",\"pathname\":\"86\",\"search\":\"87\"},[],{\"context\":\"88\"},{\"type\":\"89\",\"data\":\"90\"},[null,null,null,null],{\"head\":null,\"tail\":null,\"length\":0},[],\"utf8\",[],{\"reading\":true,\"onconnection\":null},[\"25\"],{\"api.sunrise-sunset.org:443:::::::::::::::::::::\":\"91\"},[\"92\"],{\"head\":null,\"tail\":null,\"length\":0},[],[null,null],\"Server\",\"Date\",\"Content-Type\",\"Transfer-Encoding\",\"Connection\",\"Access-Control-Allow-Origin\",[],{},{\"http:\":\"93\",\"https:\":\"94\"},\"/json\",\"?lat=40&lng=-73&date=not+a+date\",{},\"Buffer\",[48,130,6,172,2,1,1,2,2,3,3,4,2,192,48,4,32,194,35,102,194,114,237,112,160,138,38,123,162,52,104,150,111,151,159,131,164,44,211,183,105,89,82,186,100,102,105,170,154,4,48,199,158,12,138,47,199,101,21,177,207,181,101,72,90,38,119,157,233,229,179,9,115,98,199,99,145,48,242,146,36,202,195,88,44,99,209,3,54,2,25,75,33,121,219,186,69,252,144,161,6,2,4,99,31,147,122,162,4,2,2,28,32,163,130,5,55,48,130,5,51,48,130,4,27,160,3,2,1,2,2,18,3,71,254,229,55,121,156,200,92,61,203,11,111,134,247,6,232,93,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,50,49,11,48,9,6,3,85,4,6,19,2,85,83,49,22,48,20,6,3,85,4,10,19,13,76,101,116,39,115,32,69,110,99,114,121,112,116,49,11,48,9,6,3,85,4,3,19,2,82,51,48,30,23,13,50,50,48,54,50,50,50,51,48,56,52,52,90,23,13,50,50,48,57,50,48,50,51,48,56,52,51,90,48,33,49,31,48,29,6,3,85,4,3,19,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,233,186,178,123,47,199,64,163,250,184,169,62,243,174,28,203,97,83,151,28,227,60,54,233,72,212,80,197,99,114,140,152,211,175,163,243,184,125,96,246,68,208,92,167,247,236,244,195,178,4,17,185,98,56,237,181,124,164,51,186,103,198,147,82,28,86,205,229,74,135,132,93,225,72,221,236,243,123,56,156,92,150,180,3,33,106,44,30,208,229,179,159,96,222,141,22,106,119,114,120,253,30,183,252,16,248,187,67,63,246,246,89,91,13,207,51,102,65,215,96,211,127,148,154,232,219,150,55,25,198,225,236,184,146,228,58,51,18,255,53,84,45,88,148,166,248,126,158,123,48,122,56,35,169,137,55,63,6,216,167,85,8,194,46,98,149,96,115,87,199,202,85,4,83,209,65,173,124,8,113,167,233,135,136,254,21,211,41,154,227,82,142,206,116,32,85,30,221,171,191,13,233,150,67,163,23,229,183,6,170,137,82,174,131,193,198,183,248,13,82,4,252,55,104,203,154,28,40,11,231,133,171,203,253,74,44,160,7,132,135,162,58,244,207,59,152,118,34,65,158,76,250,5,139,212,97,2,3,1,0,1,163,130,2,82,48,130,2,78,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,29,6,3,85,29,14,4,22,4,20,94,221,47,212,95,78,19,222,67,242,125,227,147,38,108,203,192,221,143,208,48,31,6,3,85,29,35,4,24,48,22,128,20,20,46,179,23,183,88,86,203,174,80,9,64,230,31,175,157,139,20,194,198,48,85,6,8,43,6,1,5,5,7,1,1,4,73,48,71,48,33,6,8,43,6,1,5,5,7,48,1,134,21,104,116,116,112,58,47,47,114,51,46,111,46,108,101,110,99,114,46,111,114,103,48,34,6,8,43,6,1,5,5,7,48,2,134,22,104,116,116,112,58,47,47,114,51,46,105,46,108,101,110,99,114,46,111,114,103,47,48,33,6,3,85,29,17,4,26,48,24,130,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,76,6,3,85,29,32,4,69,48,67,48,8,6,6,103,129,12,1,2,1,48,55,6,11,43,6,1,4,1,130,223,19,1,1,1,48,40,48,38,6,8,43,6,1,5,5,7,2,1,22,26,104,116,116,112,58,47,47,99,112,115,46,108,101,116,115,101,110,99,114,121,112,116,46,111,114,103,48,130,1,5,6,10,43,6,1,4,1,214,121,2,4,2,4,129,246,4,129,243,0,241,0,118,0,65,200,202,177,223,34,70,74,16,198,161,58,9,66,135,94,78,49,139,27,3,235,235,75,199,104,240,144,98,150,6,246,0,0,1,129,141,227,203,210,0,0,4,3,0,71,48,69,2,32,108,175,217,7,220,142,87,127,54,102,28,197,54,185,158,156,98,228,132,143,84,150,30,17,226,230,211,138,170,13,174,230,2,33,0,159,186,52,13,55,51,30,231,210,3,22,92,244,99,27,184,198,127,20,146,61,38,10,138,100,4,169,70,41,79,180,176,0,119,0,41,121,190,240,158,57,57,33,240,86,115,159,99,165,119,229,190,87,125,156,96,10,248,249,77,93,38,92,37,93,199,132,0,0,1,129,141,227,204,173,0,0,4,3,0,72,48,70,2,33,0,210,68,43,72,92,177,5,64,183,27,117,58,85,0,74,149,200,0,212,88,185,10,48,129,17,121,90,249,23,207,113,34,2,33,0,136,41,237,27,4,163,220,48,223,128,220,102,167,199,237,152,30,138,4,32,117,230,180,222,226,117,5,106,120,203,217,120,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,152,53,103,108,232,240,29,45,222,4,246,135,212,90,197,101,120,57,236,238,152,70,140,63,143,229,142,5,13,93,93,84,29,42,199,62,190,99,166,178,9,51,48,174,6,220,127,137,207,31,83,193,103,62,170,13,209,230,175,182,100,165,89,46,237,94,80,113,109,171,160,203,65,20,87,1,164,102,85,131,118,66,89,243,14,28,174,15,133,222,216,100,232,183,66,208,219,7,107,168,233,114,122,255,102,88,100,172,159,71,36,3,230,126,254,167,69,18,152,58,106,0,193,65,130,230,231,33,147,73,35,188,92,49,64,146,18,222,185,235,68,165,77,46,147,22,107,231,11,77,223,20,68,204,154,92,235,145,242,50,168,76,142,166,150,28,249,186,91,207,187,209,187,21,252,252,43,169,40,178,25,148,110,170,74,231,191,164,154,141,200,44,57,43,177,202,217,226,59,111,6,34,45,163,36,167,186,211,200,244,168,127,47,43,149,133,254,186,29,146,178,231,40,167,197,191,199,96,32,44,110,28,231,59,25,238,100,180,1,160,51,62,29,118,21,225,22,76,185,5,94,233,45,248,183,193,164,2,4,0,166,24,4,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,169,4,2,2,1,44,170,129,211,4,129,208,30,154,137,202,221,14,229,106,14,184,204,101,221,98,175,113,220,217,125,25,168,100,115,142,17,112,65,231,59,178,83,49,35,120,53,3,224,70,89,184,181,144,125,174,23,182,218,209,134,185,212,88,138,160,187,28,196,71,96,68,154,229,141,252,57,154,159,135,165,122,8,91,88,137,149,242,63,220,27,197,11,221,215,223,149,63,246,55,165,164,179,119,44,116,31,85,144,9,208,95,32,242,64,194,122,81,125,226,219,81,252,70,206,122,115,253,54,132,79,91,140,111,91,68,241,56,167,84,84,222,229,245,221,187,225,250,33,169,209,175,38,169,214,202,250,191,11,54,201,171,108,174,143,101,89,130,116,122,196,238,210,44,224,232,54,42,236,139,79,116,38,141,5,232,26,5,103,178,38,122,176,175,134,242,151,23,231,182,106,88,140,108,235,228,148,102,131,121,39,18,229,24,143,12,228,114,162,46,173,3,2,1,1,179,3,2,1,29],{\"type\":\"89\",\"data\":\"95\"},\"api.sunrise-sunset.org:443:::::::::::::::::::::\",{\"METHODS\":\"96\",\"STATUS_CODES\":\"97\",\"maxHeaderSize\":16384,\"globalAgent\":\"98\"},{\"globalAgent\":\"27\"},[48,130,6,172,2,1,1,2,2,3,3,4,2,192,48,4,32,194,35,102,194,114,237,112,160,138,38,123,162,52,104,150,111,151,159,131,164,44,211,183,105,89,82,186,100,102,105,170,154,4,48,199,158,12,138,47,199,101,21,177,207,181,101,72,90,38,119,157,233,229,179,9,115,98,199,99,145,48,242,146,36,202,195,88,44,99,209,3,54,2,25,75,33,121,219,186,69,252,144,161,6,2,4,99,31,147,122,162,4,2,2,28,32,163,130,5,55,48,130,5,51,48,130,4,27,160,3,2,1,2,2,18,3,71,254,229,55,121,156,200,92,61,203,11,111,134,247,6,232,93,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,50,49,11,48,9,6,3,85,4,6,19,2,85,83,49,22,48,20,6,3,85,4,10,19,13,76,101,116,39,115,32,69,110,99,114,121,112,116,49,11,48,9,6,3,85,4,3,19,2,82,51,48,30,23,13,50,50,48,54,50,50,50,51,48,56,52,52,90,23,13,50,50,48,57,50,48,50,51,48,56,52,51,90,48,33,49,31,48,29,6,3,85,4,3,19,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,233,186,178,123,47,199,64,163,250,184,169,62,243,174,28,203,97,83,151,28,227,60,54,233,72,212,80,197,99,114,140,152,211,175,163,243,184,125,96,246,68,208,92,167,247,236,244,195,178,4,17,185,98,56,237,181,124,164,51,186,103,198,147,82,28,86,205,229,74,135,132,93,225,72,221,236,243,123,56,156,92,150,180,3,33,106,44,30,208,229,179,159,96,222,141,22,106,119,114,120,253,30,183,252,16,248,187,67,63,246,246,89,91,13,207,51,102,65,215,96,211,127,148,154,232,219,150,55,25,198,225,236,184,146,228,58,51,18,255,53,84,45,88,148,166,248,126,158,123,48,122,56,35,169,137,55,63,6,216,167,85,8,194,46,98,149,96,115,87,199,202,85,4,83,209,65,173,124,8,113,167,233,135,136,254,21,211,41,154,227,82,142,206,116,32,85,30,221,171,191,13,233,150,67,163,23,229,183,6,170,137,82,174,131,193,198,183,248,13,82,4,252,55,104,203,154,28,40,11,231,133,171,203,253,74,44,160,7,132,135,162,58,244,207,59,152,118,34,65,158,76,250,5,139,212,97,2,3,1,0,1,163,130,2,82,48,130,2,78,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,29,6,3,85,29,14,4,22,4,20,94,221,47,212,95,78,19,222,67,242,125,227,147,38,108,203,192,221,143,208,48,31,6,3,85,29,35,4,24,48,22,128,20,20,46,179,23,183,88,86,203,174,80,9,64,230,31,175,157,139,20,194,198,48,85,6,8,43,6,1,5,5,7,1,1,4,73,48,71,48,33,6,8,43,6,1,5,5,7,48,1,134,21,104,116,116,112,58,47,47,114,51,46,111,46,108,101,110,99,114,46,111,114,103,48,34,6,8,43,6,1,5,5,7,48,2,134,22,104,116,116,112,58,47,47,114,51,46,105,46,108,101,110,99,114,46,111,114,103,47,48,33,6,3,85,29,17,4,26,48,24,130,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,48,76,6,3,85,29,32,4,69,48,67,48,8,6,6,103,129,12,1,2,1,48,55,6,11,43,6,1,4,1,130,223,19,1,1,1,48,40,48,38,6,8,43,6,1,5,5,7,2,1,22,26,104,116,116,112,58,47,47,99,112,115,46,108,101,116,115,101,110,99,114,121,112,116,46,111,114,103,48,130,1,5,6,10,43,6,1,4,1,214,121,2,4,2,4,129,246,4,129,243,0,241,0,118,0,65,200,202,177,223,34,70,74,16,198,161,58,9,66,135,94,78,49,139,27,3,235,235,75,199,104,240,144,98,150,6,246,0,0,1,129,141,227,203,210,0,0,4,3,0,71,48,69,2,32,108,175,217,7,220,142,87,127,54,102,28,197,54,185,158,156,98,228,132,143,84,150,30,17,226,230,211,138,170,13,174,230,2,33,0,159,186,52,13,55,51,30,231,210,3,22,92,244,99,27,184,198,127,20,146,61,38,10,138,100,4,169,70,41,79,180,176,0,119,0,41,121,190,240,158,57,57,33,240,86,115,159,99,165,119,229,190,87,125,156,96,10,248,249,77,93,38,92,37,93,199,132,0,0,1,129,141,227,204,173,0,0,4,3,0,72,48,70,2,33,0,210,68,43,72,92,177,5,64,183,27,117,58,85,0,74,149,200,0,212,88,185,10,48,129,17,121,90,249,23,207,113,34,2,33,0,136,41,237,27,4,163,220,48,223,128,220,102,167,199,237,152,30,138,4,32,117,230,180,222,226,117,5,106,120,203,217,120,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,152,53,103,108,232,240,29,45,222,4,246,135,212,90,197,101,120,57,236,238,152,70,140,63,143,229,142,5,13,93,93,84,29,42,199,62,190,99,166,178,9,51,48,174,6,220,127,137,207,31,83,193,103,62,170,13,209,230,175,182,100,165,89,46,237,94,80,113,109,171,160,203,65,20,87,1,164,102,85,131,118,66,89,243,14,28,174,15,133,222,216,100,232,183,66,208,219,7,107,168,233,114,122,255,102,88,100,172,159,71,36,3,230,126,254,167,69,18,152,58,106,0,193,65,130,230,231,33,147,73,35,188,92,49,64,146,18,222,185,235,68,165,77,46,147,22,107,231,11,77,223,20,68,204,154,92,235,145,242,50,168,76,142,166,150,28,249,186,91,207,187,209,187,21,252,252,43,169,40,178,25,148,110,170,74,231,191,164,154,141,200,44,57,43,177,202,217,226,59,111,6,34,45,163,36,167,186,211,200,244,168,127,47,43,149,133,254,186,29,146,178,231,40,167,197,191,199,96,32,44,110,28,231,59,25,238,100,180,1,160,51,62,29,118,21,225,22,76,185,5,94,233,45,248,183,193,164,2,4,0,166,24,4,22,97,112,105,46,115,117,110,114,105,115,101,45,115,117,110,115,101,116,46,111,114,103,169,4,2,2,1,44,170,129,211,4,129,208,30,154,137,202,221,14,229,106,14,184,204,101,221,98,175,113,220,217,125,25,168,100,115,142,17,112,65,231,59,178,83,49,35,120,53,3,224,70,89,184,181,144,125,174,23,182,218,209,134,185,212,88,138,160,187,28,196,71,96,68,154,229,141,252,57,154,159,135,165,122,8,91,88,137,149,242,63,220,27,197,11,221,215,223,149,63,246,55,165,164,179,119,44,116,31,85,144,9,208,95,32,242,64,194,122,81,125,226,219,81,252,70,206,122,115,253,54,132,79,91,140,111,91,68,241,56,167,84,84,222,229,245,221,187,225,250,33,169,209,175,38,169,214,202,250,191,11,54,201,171,108,174,143,101,89,130,116,122,196,238,210,44,224,232,54,42,236,139,79,116,38,141,5,232,26,5,103,178,38,122,176,175,134,242,151,23,231,182,106,88,140,108,235,228,148,102,131,121,39,18,229,24,143,12,228,114,162,46,173,3,2,1,1,179,3,2,1,29],[\"99\",\"100\",\"101\",\"102\",\"103\",\"104\",\"28\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\",\"120\",\"121\",\"122\",\"123\",\"124\",\"125\",\"126\",\"127\",\"128\",\"129\",\"130\",\"131\"],{\"100\":\"132\",\"101\":\"133\",\"102\":\"134\",\"103\":\"135\",\"200\":\"136\",\"201\":\"137\",\"202\":\"138\",\"203\":\"139\",\"204\":\"140\",\"205\":\"141\",\"206\":\"142\",\"207\":\"143\",\"208\":\"144\",\"226\":\"145\",\"300\":\"146\",\"301\":\"147\",\"302\":\"148\",\"303\":\"149\",\"304\":\"150\",\"305\":\"151\",\"307\":\"152\",\"308\":\"153\",\"400\":\"1\",\"401\":\"154\",\"402\":\"155\",\"403\":\"156\",\"404\":\"157\",\"405\":\"158\",\"406\":\"159\",\"407\":\"160\",\"408\":\"161\",\"409\":\"162\",\"410\":\"163\",\"411\":\"164\",\"412\":\"165\",\"413\":\"166\",\"414\":\"167\",\"415\":\"168\",\"416\":\"169\",\"417\":\"170\",\"418\":\"171\",\"421\":\"172\",\"422\":\"173\",\"423\":\"174\",\"424\":\"175\",\"425\":\"176\",\"426\":\"177\",\"428\":\"178\",\"429\":\"179\",\"431\":\"180\",\"451\":\"181\",\"500\":\"182\",\"501\":\"183\",\"502\":\"184\",\"503\":\"185\",\"504\":\"186\",\"505\":\"187\",\"506\":\"188\",\"507\":\"189\",\"508\":\"190\",\"509\":\"191\",\"510\":\"192\",\"511\":\"193\"},{\"_events\":\"194\",\"_eventsCount\":2,\"defaultPort\":80,\"protocol\":\"195\",\"options\":\"196\",\"requests\":\"197\",\"sockets\":\"198\",\"freeSockets\":\"199\",\"keepAliveMsecs\":1000,\"keepAlive\":false,\"maxSockets\":null,\"maxFreeSockets\":256,\"scheduling\":\"50\",\"maxTotalSockets\":null,\"totalSocketCount\":0},\"ACL\",\"BIND\",\"CHECKOUT\",\"CONNECT\",\"COPY\",\"DELETE\",\"HEAD\",\"LINK\",\"LOCK\",\"M-SEARCH\",\"MERGE\",\"MKACTIVITY\",\"MKCALENDAR\",\"MKCOL\",\"MOVE\",\"NOTIFY\",\"OPTIONS\",\"PATCH\",\"POST\",\"PROPFIND\",\"PROPPATCH\",\"PURGE\",\"PUT\",\"REBIND\",\"REPORT\",\"SEARCH\",\"SOURCE\",\"SUBSCRIBE\",\"TRACE\",\"UNBIND\",\"UNLINK\",\"UNLOCK\",\"UNSUBSCRIBE\",\"Continue\",\"Switching Protocols\",\"Processing\",\"Early Hints\",\"OK\",\"Created\",\"Accepted\",\"Non-Authoritative Information\",\"No Content\",\"Reset Content\",\"Partial Content\",\"Multi-Status\",\"Already Reported\",\"IM Used\",\"Multiple Choices\",\"Moved Permanently\",\"Found\",\"See Other\",\"Not Modified\",\"Use Proxy\",\"Temporary Redirect\",\"Permanent Redirect\",\"Unauthorized\",\"Payment Required\",\"Forbidden\",\"Not Found\",\"Method Not Allowed\",\"Not Acceptable\",\"Proxy Authentication Required\",\"Request Timeout\",\"Conflict\",\"Gone\",\"Length Required\",\"Precondition Failed\",\"Payload Too Large\",\"URI Too Long\",\"Unsupported Media Type\",\"Range Not Satisfiable\",\"Expectation Failed\",\"I'm a Teapot\",\"Misdirected Request\",\"Unprocessable Entity\",\"Locked\",\"Failed Dependency\",\"Too Early\",\"Upgrade Required\",\"Precondition Required\",\"Too Many Requests\",\"Request Header Fields Too Large\",\"Unavailable For Legal Reasons\",\"Internal Server Error\",\"Not Implemented\",\"Bad Gateway\",\"Service Unavailable\",\"Gateway Timeout\",\"HTTP Version Not Supported\",\"Variant Also Negotiates\",\"Insufficient Storage\",\"Loop Detected\",\"Bandwidth Limit Exceeded\",\"Not Extended\",\"Network Authentication Required\",{},\"http:\",{\"noDelay\":true,\"path\":null},{},{},{}]","request":"[{\"transitional\":\"1\",\"transformRequest\":\"2\",\"transformResponse\":\"3\",\"timeout\":0,\"xsrfCookieName\":\"4\",\"xsrfHeaderName\":\"5\",\"maxContentLength\":-1,\"maxBodyLength\":-1,\"env\":\"6\",\"headers\":\"7\",\"url\":\"8\",\"method\":\"9\",\"params\":\"10\"},{\"silentJSONParsing\":true,\"forcedJSONParsing\":true,\"clarifyTimeoutError\":false},[null],[null],\"XSRF-TOKEN\",\"X-XSRF-TOKEN\",{},{\"Accept\":\"11\",\"User-Agent\":\"12\"},\"https://api.sunrise-sunset.org/json\",\"get\",{\"lat\":\"13\",\"lng\":\"14\",\"date\":\"15\"},\"application/json, text/plain, */*\",\"axios/0.27.2\",\"40\",\"-73\",\"not a date\"]"}
test
auto generated g json get test malformeddate response body is not an empty object empty userdefinederrormessage test malformeddate response body is not an empty object empty endpointurl xsrf token x xsrf token accept user agent tlsoptions secureestablished true securepending false newsessionpending false controlreleased true secureconnecting false snicallback null servername alpnprotocol false authorized true authorizationerror null encrypted true events eventscount connecting false haderror false parent null host closeafterhandlingerror false readablestate writablestate allowhalfopen false sockname null pendingdata null pendingencoding server null ssl requestcert true rejectunauthorized true parser null httpmessage get json lat lng date not a date http r naccept application json text plain r nuser agent axios r nhost api sunrise sunset org r nconnection close r n r n events eventscount defaultport protocol options requests sockets freesockets keepalivemsecs keepalive false maxsockets null maxfreesockets scheduling maxtotalsockets null totalsocketcount maxcachedsessions sessioncache get json lat lng date not a date readablestate events eventscount socket httpversionmajor httpversionminor httpversion complete true rawheaders rawtrailers aborted false upgrade false url method null statuscode statusmessage client consuming false dumped false req responseurl redirects api sunrise sunset org https writablestate events eventscount options ended true ending true redirectcount redirects requestbodylength requestbodybuffers currentrequest currenturl invalid date application json text plain axios not a date pipe false securecontext isserver false requestcert true rejectunauthorized true session close objectmode false highwatermark buffer length pipes flowing true ended false endemitted false reading true constructed true sync false needreadable true emittedreadable false readablelistening false resumescheduled false erroremitted false emitclose false autodestroy true destroyed false errored null closed false closeemitted false defaultencoding awaitdrainwriters null multiawaitdrain false readingmore false dataemitted true decoder null encoding null objectmode false highwatermark finalcalled true needdrain false ending true ended true finished false destroyed false decodestrings false defaultencoding length writing false corked sync false bufferprocessing false writecb null writelen afterwritetickinfo null buffered bufferedindex allbuffers true allnoop true pendingcb constructed true prefinished false erroremitted false emitclose false autodestroy true errored null closed false closeemitted false parent securecontext reading true nodelay true path null api sunrise sunset org lifo map list objectmode false highwatermark buffer length pipes flowing true ended true endemitted true reading false constructed true sync true needreadable false emittedreadable false readablelistening false resumescheduled false erroremitted false emitclose true autodestroy true destroyed true errored null closed true closeemitted true defaultencoding awaitdrainwriters null multiawaitdrain false readingmore true dataemitted true decoder null encoding null end objectmode false highwatermark finalcalled false needdrain false ending false ended false finished false destroyed false decodestrings true defaultencoding length writing false corked sync true bufferprocessing false writecb null writelen afterwritetickinfo null buffered bufferedindex allbuffers true allnoop true pendingcb constructed true prefinished false erroremitted false emitclose true autodestroy true errored null closed false closeemitted false maxredirects maxbodylength protocol path method headers agents hostname port null nativeprotocols pathname search context type data head null tail null length reading true onconnection null api sunrise sunset org head null tail null length server date content type transfer encoding connection access control allow origin http https json lat lng date not a date buffer type data api sunrise sunset org methods status codes maxheadersize globalagent globalagent events eventscount defaultport protocol options requests sockets freesockets keepalivemsecs keepalive false maxsockets null maxfreesockets scheduling maxtotalsockets null totalsocketcount acl bind checkout connect copy delete head link lock m search merge mkactivity mkcalendar mkcol move notify options patch post propfind proppatch purge put rebind report search source subscribe trace unbind unlink unlock unsubscribe continue switching protocols processing early hints ok created accepted non authoritative information no content reset content partial content multi status already reported im used multiple choices moved permanently found see other not modified use proxy temporary redirect permanent redirect unauthorized payment required forbidden not found method not allowed not acceptable proxy authentication required request timeout conflict gone length required precondition failed payload too large uri too long unsupported media type range not satisfiable expectation failed i m a teapot misdirected request unprocessable entity locked failed dependency too early upgrade required precondition required too many requests request header fields too large unavailable for legal reasons internal server error not implemented bad gateway service unavailable gateway timeout http version not supported variant also negotiates insufficient storage loop detected bandwidth limit exceeded not extended network authentication required http nodelay true path null request xsrf token x xsrf token accept user agent text plain axios not a date
1
179,492
30,249,298,437
IssuesEvent
2023-07-06 19:06:37
Shopify/dawn
https://api.github.com/repos/Shopify/dawn
closed
Image with Text - Ambient Movement Animation Broken
Category: Bug 🎨 Design: Animations 📁 Section: Image With Text
**Expected behaviour:** Image with ambient movement fills full container width & height, and reflects ambient movement animation **Actually behaviour:** Image is stuck, without movement, in bottom right quadrant of the container **Version:** Dawn v10 https://admin.shopify.com/store/kimberly-oleiro/themes/129112375352/editor ![Image](https://user-images.githubusercontent.com/107572834/248935297-27669d67-caf8-44e2-8660-9d6ab482d1c9.png) **Relates to:** https://github.com/Shopify/dawn/pull/2385
1.0
Image with Text - Ambient Movement Animation Broken - **Expected behaviour:** Image with ambient movement fills full container width & height, and reflects ambient movement animation **Actually behaviour:** Image is stuck, without movement, in bottom right quadrant of the container **Version:** Dawn v10 https://admin.shopify.com/store/kimberly-oleiro/themes/129112375352/editor ![Image](https://user-images.githubusercontent.com/107572834/248935297-27669d67-caf8-44e2-8660-9d6ab482d1c9.png) **Relates to:** https://github.com/Shopify/dawn/pull/2385
non_test
image with text ambient movement animation broken expected behaviour image with ambient movement fills full container width height and reflects ambient movement animation actually behaviour image is stuck without movement in bottom right quadrant of the container version dawn relates to
0
286,498
24,756,336,466
IssuesEvent
2022-10-21 18:07:39
openservicemesh/osm
https://api.github.com/repos/openservicemesh/osm
opened
Unit test TestGetInboundMeshTrafficPolicy flakes in CI
kind/bug size/XS kind/flaky-test
<!-- This issue tracker is a best-effort forum for users and customers to report bugs. Be sure to not include any sensitive information. Sensitive information should __NOT__ be included in this issue. --> **Bug description**: Unit test TestGetInboundMeshTrafficPolicy/multiple_services,_SMI_mode,_1_TrafficTarget,_1_HTTPRouteGroup,_1_TrafficSplit_and_multiple_trust_domains flakes in the CI. ``` Test: TestGetInboundMeshTrafficPolicy/multiple_services,_SMI_mode,_1_TrafficTarget,_1_HTTPRouteGroup,_1_TrafficSplit_and_multiple_trust_domains ``` **Affected area (please mark with X where applicable)**: - Tests [X]
1.0
Unit test TestGetInboundMeshTrafficPolicy flakes in CI - <!-- This issue tracker is a best-effort forum for users and customers to report bugs. Be sure to not include any sensitive information. Sensitive information should __NOT__ be included in this issue. --> **Bug description**: Unit test TestGetInboundMeshTrafficPolicy/multiple_services,_SMI_mode,_1_TrafficTarget,_1_HTTPRouteGroup,_1_TrafficSplit_and_multiple_trust_domains flakes in the CI. ``` Test: TestGetInboundMeshTrafficPolicy/multiple_services,_SMI_mode,_1_TrafficTarget,_1_HTTPRouteGroup,_1_TrafficSplit_and_multiple_trust_domains ``` **Affected area (please mark with X where applicable)**: - Tests [X]
test
unit test testgetinboundmeshtrafficpolicy flakes in ci this issue tracker is a best effort forum for users and customers to report bugs be sure to not include any sensitive information sensitive information should not be included in this issue bug description unit test testgetinboundmeshtrafficpolicy multiple services smi mode traffictarget httproutegroup trafficsplit and multiple trust domains flakes in the ci test testgetinboundmeshtrafficpolicy multiple services smi mode traffictarget httproutegroup trafficsplit and multiple trust domains affected area please mark with x where applicable tests
1
178,019
14,658,162,395
IssuesEvent
2020-12-28 17:13:56
dbosak01/libr
https://api.github.com/repos/dbosak01/libr
closed
Rewrite get started
documentation
Rewrite the get started page. Go for some simple examples instead of a listing of functions.
1.0
Rewrite get started - Rewrite the get started page. Go for some simple examples instead of a listing of functions.
non_test
rewrite get started rewrite the get started page go for some simple examples instead of a listing of functions
0
300,073
25,943,945,017
IssuesEvent
2022-12-16 21:39:37
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
DISABLED test_shuffle_workers (__main__.TestDataLoader)
module: dataloader triaged module: flaky-tests skipped
Platforms: mac, macos This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_shuffle_workers&suite=TestDataLoader) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/8003606588). Over the past 3 hours, it has been determined flaky in 1 workflow(s) with 1 failures and 1 successes. **Debugging instructions (after clicking on the recent samples link):** DO NOT BE ALARMED THE CI IS GREEN. We now shield flaky tests from developers so CI will thus be green but it will be harder to parse the logs. To find relevant log snippets: 1. Click on the workflow logs linked above 2. Click on the Test step of the job so that it is expanded. Otherwise, the grepping will not work. 3. Grep for `test_shuffle_workers` 4. There should be several instances run (as flaky tests are rerun in CI) from which you can study the logs. cc @SsnL @VitalyFedyunin @ejguan @NivekT
1.0
DISABLED test_shuffle_workers (__main__.TestDataLoader) - Platforms: mac, macos This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_shuffle_workers&suite=TestDataLoader) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/8003606588). Over the past 3 hours, it has been determined flaky in 1 workflow(s) with 1 failures and 1 successes. **Debugging instructions (after clicking on the recent samples link):** DO NOT BE ALARMED THE CI IS GREEN. We now shield flaky tests from developers so CI will thus be green but it will be harder to parse the logs. To find relevant log snippets: 1. Click on the workflow logs linked above 2. Click on the Test step of the job so that it is expanded. Otherwise, the grepping will not work. 3. Grep for `test_shuffle_workers` 4. There should be several instances run (as flaky tests are rerun in CI) from which you can study the logs. cc @SsnL @VitalyFedyunin @ejguan @NivekT
test
disabled test shuffle workers main testdataloader platforms mac macos this test was disabled because it is failing in ci see and the most recent trunk over the past hours it has been determined flaky in workflow s with failures and successes debugging instructions after clicking on the recent samples link do not be alarmed the ci is green we now shield flaky tests from developers so ci will thus be green but it will be harder to parse the logs to find relevant log snippets click on the workflow logs linked above click on the test step of the job so that it is expanded otherwise the grepping will not work grep for test shuffle workers there should be several instances run as flaky tests are rerun in ci from which you can study the logs cc ssnl vitalyfedyunin ejguan nivekt
1
331,519
28,967,347,349
IssuesEvent
2023-05-10 08:49:39
Azure/ResourceModules
https://api.github.com/repos/Azure/ResourceModules
closed
[BPR alignment] [Modules] Align `readme.md` file naming
enhancement [cat] modules [cat] testing
CARML uses `readme.md`. The Public Bicep Registry uses `README.md`. Updating it either way will likely lead to challenges with git (as it is case insensitive) ## Decision Investigate effort for aligning CARML to BPR. Test casing side effects. We will migrate the naming to `README.md` Combine with the removal of `Microsoft.` prefix from the Resource Provider folder name. Note this will need to update the CI environment logic in some places. [Ref: #3132 ]
1.0
[BPR alignment] [Modules] Align `readme.md` file naming - CARML uses `readme.md`. The Public Bicep Registry uses `README.md`. Updating it either way will likely lead to challenges with git (as it is case insensitive) ## Decision Investigate effort for aligning CARML to BPR. Test casing side effects. We will migrate the naming to `README.md` Combine with the removal of `Microsoft.` prefix from the Resource Provider folder name. Note this will need to update the CI environment logic in some places. [Ref: #3132 ]
test
align readme md file naming carml uses readme md the public bicep registry uses readme md updating it either way will likely lead to challenges with git as it is case insensitive decision investigate effort for aligning carml to bpr test casing side effects we will migrate the naming to readme md combine with the removal of microsoft prefix from the resource provider folder name note this will need to update the ci environment logic in some places
1
38,549
12,555,653,361
IssuesEvent
2020-06-07 06:57:23
scriptex/github-pages-vuepress
https://api.github.com/repos/scriptex/github-pages-vuepress
closed
WS-2019-0424 (Medium) detected in elliptic-6.5.2.tgz
security vulnerability
## WS-2019-0424 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>elliptic-6.5.2.tgz</b></p></summary> <p>EC cryptography</p> <p>Library home page: <a href="https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz">https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/github-pages-vuepress/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/github-pages-vuepress/node_modules/elliptic/package.json</p> <p> Dependency Hierarchy: - vuepress-1.5.0.tgz (Root Library) - core-1.5.0.tgz - webpack-4.43.0.tgz - node-libs-browser-2.2.1.tgz - crypto-browserify-3.12.0.tgz - browserify-sign-4.2.0.tgz - :x: **elliptic-6.5.2.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/scriptex/github-pages-vuepress/commit/94675628b29ad1b064d78cdfa4f55c8bfb018d86">94675628b29ad1b064d78cdfa4f55c8bfb018d86</a></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> all versions of elliptic are vulnerable to Timing Attack through side-channels. <p>Publish Date: 2019-11-13 <p>URL: <a href=https://github.com/indutny/elliptic/commit/ec735edde187a43693197f6fa3667ceade751a3a>WS-2019-0424</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.9</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Adjacent - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: High - 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> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
WS-2019-0424 (Medium) detected in elliptic-6.5.2.tgz - ## WS-2019-0424 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>elliptic-6.5.2.tgz</b></p></summary> <p>EC cryptography</p> <p>Library home page: <a href="https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz">https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/github-pages-vuepress/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/github-pages-vuepress/node_modules/elliptic/package.json</p> <p> Dependency Hierarchy: - vuepress-1.5.0.tgz (Root Library) - core-1.5.0.tgz - webpack-4.43.0.tgz - node-libs-browser-2.2.1.tgz - crypto-browserify-3.12.0.tgz - browserify-sign-4.2.0.tgz - :x: **elliptic-6.5.2.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/scriptex/github-pages-vuepress/commit/94675628b29ad1b064d78cdfa4f55c8bfb018d86">94675628b29ad1b064d78cdfa4f55c8bfb018d86</a></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> all versions of elliptic are vulnerable to Timing Attack through side-channels. <p>Publish Date: 2019-11-13 <p>URL: <a href=https://github.com/indutny/elliptic/commit/ec735edde187a43693197f6fa3667ceade751a3a>WS-2019-0424</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.9</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Adjacent - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: High - 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> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
ws medium detected in elliptic tgz ws medium severity vulnerability vulnerable library elliptic tgz ec cryptography library home page a href path to dependency file tmp ws scm github pages vuepress package json path to vulnerable library tmp ws scm github pages vuepress node modules elliptic package json dependency hierarchy vuepress tgz root library core tgz webpack tgz node libs browser tgz crypto browserify tgz browserify sign tgz x elliptic tgz vulnerable library found in head commit a href vulnerability details all versions of elliptic are vulnerable to timing attack through side channels publish date url a href cvss score details base score metrics exploitability metrics attack vector adjacent attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact high availability impact none for more information on scores click a href step up your open source security game with whitesource
0
194,559
14,681,521,688
IssuesEvent
2020-12-31 13:30:20
mapasculturais/mapasculturais
https://api.github.com/repos/mapasculturais/mapasculturais
closed
formulário de avaliação: botão finalizar avaliação
BACKEND complexidade:MEDIA prioridade:ALTA secao:OPORTUNIDADES status:tested tipo:FUNCIONALIDADE
define o status da avaliação como avaliada entao teremos os seguintes status da avaliação: - RASCUNHO (quando for salva automaticamente, antes de clicar o botão) - AVALIADA ( botão finalizar foi apertado ) - ENVIADA (depois do botão enviar avaliações ter sido enviado - deve bloquear a edição)
1.0
formulário de avaliação: botão finalizar avaliação - define o status da avaliação como avaliada entao teremos os seguintes status da avaliação: - RASCUNHO (quando for salva automaticamente, antes de clicar o botão) - AVALIADA ( botão finalizar foi apertado ) - ENVIADA (depois do botão enviar avaliações ter sido enviado - deve bloquear a edição)
test
formulário de avaliação botão finalizar avaliação define o status da avaliação como avaliada entao teremos os seguintes status da avaliação rascunho quando for salva automaticamente antes de clicar o botão avaliada botão finalizar foi apertado enviada depois do botão enviar avaliações ter sido enviado deve bloquear a edição
1
98,626
8,682,282,760
IssuesEvent
2018-12-02 06:16:11
vineetchoudhary/AppBox-iOSAppsWirelessInstallation
https://api.github.com/repos/vineetchoudhary/AppBox-iOSAppsWirelessInstallation
closed
Release 2.7.0
Test
Release 2.7.0 is in progress with some major changes for CI&CD. Currently, we need to perform a lot of testing for CI&CD. So, this version will be available on or before 17/11/2018. Meantime, if you want to test following fixes then please pull the master branch code and test. #146 #145 #143 #142 #141 #140 #139 #135 #113
1.0
Release 2.7.0 - Release 2.7.0 is in progress with some major changes for CI&CD. Currently, we need to perform a lot of testing for CI&CD. So, this version will be available on or before 17/11/2018. Meantime, if you want to test following fixes then please pull the master branch code and test. #146 #145 #143 #142 #141 #140 #139 #135 #113
test
release release is in progress with some major changes for ci cd currently we need to perform a lot of testing for ci cd so this version will be available on or before meantime if you want to test following fixes then please pull the master branch code and test
1
17,565
3,621,460,356
IssuesEvent
2016-02-09 00:16:54
kripken/emscripten
https://api.github.com/repos/kripken/emscripten
closed
test_sse2_full breakage
SIMD tests
On `default, asm2`, and others, I see `test_sse2_full` fail on incoming, ```` +missing function: emscripten_int16x8_shiftRightByScalar +-1 +/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:1489 + throw ex; + ^ +abort(-1) at Error + at jsStackTrace (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:2559:13) + at stackTrace (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:2576:22) + at abort (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50354:44) + at _emscripten_int16x8_shiftRightByScalar (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:7110:82) + at __Z10test_shiftv [test_shift()] (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:23646:39) + at _main (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:42856:3) + at Object.asm._main (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50098:19) + at Object.callMain (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50219:30) + at doRun (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50277:60) + at run (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50291:5) + ````
1.0
test_sse2_full breakage - On `default, asm2`, and others, I see `test_sse2_full` fail on incoming, ```` +missing function: emscripten_int16x8_shiftRightByScalar +-1 +/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:1489 + throw ex; + ^ +abort(-1) at Error + at jsStackTrace (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:2559:13) + at stackTrace (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:2576:22) + at abort (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50354:44) + at _emscripten_int16x8_shiftRightByScalar (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:7110:82) + at __Z10test_shiftv [test_shift()] (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:23646:39) + at _main (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:42856:3) + at Object.asm._main (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50098:19) + at Object.callMain (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50219:30) + at doRun (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50277:60) + at run (/tmp/emscripten_test_default_hIiDGx/src.cpp.o.js:50291:5) + ````
test
test full breakage on default and others i see test full fail on incoming missing function emscripten shiftrightbyscalar tmp emscripten test default hiidgx src cpp o js throw ex abort at error at jsstacktrace tmp emscripten test default hiidgx src cpp o js at stacktrace tmp emscripten test default hiidgx src cpp o js at abort tmp emscripten test default hiidgx src cpp o js at emscripten shiftrightbyscalar tmp emscripten test default hiidgx src cpp o js at shiftv tmp emscripten test default hiidgx src cpp o js at main tmp emscripten test default hiidgx src cpp o js at object asm main tmp emscripten test default hiidgx src cpp o js at object callmain tmp emscripten test default hiidgx src cpp o js at dorun tmp emscripten test default hiidgx src cpp o js at run tmp emscripten test default hiidgx src cpp o js
1
133,052
28,493,571,571
IssuesEvent
2023-04-18 12:53:09
jupyterlab/jupyterlab
https://api.github.com/repos/jupyterlab/jupyterlab
closed
Show whitespace
enhancement help wanted pkg:codeeditor good first issue
Wouldn't it be cool if you could easily configure JupyterLab to show the whitespace so you could more easily track indentations? This is a common configuration option in text editors designed for Python coders, like Sublime Text and Atom.
1.0
Show whitespace - Wouldn't it be cool if you could easily configure JupyterLab to show the whitespace so you could more easily track indentations? This is a common configuration option in text editors designed for Python coders, like Sublime Text and Atom.
non_test
show whitespace wouldn t it be cool if you could easily configure jupyterlab to show the whitespace so you could more easily track indentations this is a common configuration option in text editors designed for python coders like sublime text and atom
0
29,904
8,440,423,756
IssuesEvent
2018-10-18 07:13:13
openshiftio/openshift.io
https://api.github.com/repos/openshiftio/openshift.io
closed
Review jenkins permissions
area/pipelines team/build-cd type/task
Go over all permissions in Jenkins from the [jenkins template](https://github.com/fabric8-services/fabric8-tenant/blob/886a8e170688db675e3e07bc6c78cbe66ac08a46/environment/templates/fabric8-tenant-jenkins.yml) and make sure there is no permissions that has been wrongly given.
1.0
Review jenkins permissions - Go over all permissions in Jenkins from the [jenkins template](https://github.com/fabric8-services/fabric8-tenant/blob/886a8e170688db675e3e07bc6c78cbe66ac08a46/environment/templates/fabric8-tenant-jenkins.yml) and make sure there is no permissions that has been wrongly given.
non_test
review jenkins permissions go over all permissions in jenkins from the jenkins template and make sure there is no permissions that has been wrongly given
0
287,464
24,831,389,216
IssuesEvent
2022-10-26 04:03:04
microsoft/vscode
https://api.github.com/repos/microsoft/vscode
closed
Test: quick fix contrib
testplan-item
Refs https://github.com/microsoft/vscode/issues/162950 - [x] Windows @hediet - [ ] macOS @eleanorjboyd - [x] Linux @andreamah Complexity: 4 Authors: @meganrogge @Tyriar [Create Issue](https://github.com/microsoft/vscode/issues/new?body=Testing+%23164526%0A%0A&assignees=meganrogge,Tyriar) --- Terminal quick fixes can now be contributed via an extension's contribution in a package.json as described here https://github.com/microsoft/vscode/blob/476360fbc4027b7d2e194c5321d7a3c3ee04886e/src/vs/workbench/contrib/terminal/common/terminal.ts#L719-L757 We've moved several of the builtin terminal quick fix actions over to using this contribution point. Verify that they still work: - `git push` on a branch without a remote should allow you set the upstream - `git push --set-upstream...` should prompt you to create a PR Note that this is still a proposed API contrib, so must be explicitly enabled. ``` "enabledApiProposals": [ "contribTerminalQuickFixes" ], ```
1.0
Test: quick fix contrib - Refs https://github.com/microsoft/vscode/issues/162950 - [x] Windows @hediet - [ ] macOS @eleanorjboyd - [x] Linux @andreamah Complexity: 4 Authors: @meganrogge @Tyriar [Create Issue](https://github.com/microsoft/vscode/issues/new?body=Testing+%23164526%0A%0A&assignees=meganrogge,Tyriar) --- Terminal quick fixes can now be contributed via an extension's contribution in a package.json as described here https://github.com/microsoft/vscode/blob/476360fbc4027b7d2e194c5321d7a3c3ee04886e/src/vs/workbench/contrib/terminal/common/terminal.ts#L719-L757 We've moved several of the builtin terminal quick fix actions over to using this contribution point. Verify that they still work: - `git push` on a branch without a remote should allow you set the upstream - `git push --set-upstream...` should prompt you to create a PR Note that this is still a proposed API contrib, so must be explicitly enabled. ``` "enabledApiProposals": [ "contribTerminalQuickFixes" ], ```
test
test quick fix contrib refs windows hediet macos eleanorjboyd linux andreamah complexity authors meganrogge tyriar terminal quick fixes can now be contributed via an extension s contribution in a package json as described here we ve moved several of the builtin terminal quick fix actions over to using this contribution point verify that they still work git push on a branch without a remote should allow you set the upstream git push set upstream should prompt you to create a pr note that this is still a proposed api contrib so must be explicitly enabled enabledapiproposals contribterminalquickfixes
1
120,405
10,114,787,748
IssuesEvent
2019-07-30 20:04:15
longhorn/longhorn
https://api.github.com/repos/longhorn/longhorn
closed
manager: Allow user to attach a volume without frontend
area/engine area/manager area/test area/ui doc enhancement
If the user wants to revert to a previous snapshot for an existing volume, the frontend shouldn't be enabled since it can cause unnecessary issues on the block device level. We should allow users to attach a volume without the frontend. And we should only allow reverting to happen in such case.
1.0
manager: Allow user to attach a volume without frontend - If the user wants to revert to a previous snapshot for an existing volume, the frontend shouldn't be enabled since it can cause unnecessary issues on the block device level. We should allow users to attach a volume without the frontend. And we should only allow reverting to happen in such case.
test
manager allow user to attach a volume without frontend if the user wants to revert to a previous snapshot for an existing volume the frontend shouldn t be enabled since it can cause unnecessary issues on the block device level we should allow users to attach a volume without the frontend and we should only allow reverting to happen in such case
1
73,957
7,370,864,574
IssuesEvent
2018-03-13 09:53:48
italia/spid
https://api.github.com/repos/italia/spid
closed
Controllo metadata: comune di Verdellino
aggiornamento md test metadata
Buongiorno, per conto del comune di Verdellino siamo a richiedere il controllo del metadata seguente: https://sportellotelematico.comune.verdellino.bg.it/simplesaml/module.php/saml/sp/metadata.php/verdellino
1.0
Controllo metadata: comune di Verdellino - Buongiorno, per conto del comune di Verdellino siamo a richiedere il controllo del metadata seguente: https://sportellotelematico.comune.verdellino.bg.it/simplesaml/module.php/saml/sp/metadata.php/verdellino
test
controllo metadata comune di verdellino buongiorno per conto del comune di verdellino siamo a richiedere il controllo del metadata seguente
1
769,792
27,018,824,081
IssuesEvent
2023-02-10 22:25:27
googleapis/nodejs-automl
https://api.github.com/repos/googleapis/nodejs-automl
closed
Automl Translate Model Tests: should get model evaluations failed
type: bug priority: p1 api: automl flakybot: issue
Note: #647 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. ---- commit: 97411a2bb514b9921bb3932543a2d895c452d5c6 buildURL: [Build Status](https://source.cloud.google.com/results/invocations/111acef3-99d9-40ee-ba64-bedce26a8918), [Sponge](http://sponge2/111acef3-99d9-40ee-ba64-bedce26a8918) status: failed <details><summary>Test output</summary><br><pre>Command failed: node get_model_evaluation.js long-door-651 us-central1 TRL1218052175389786112 6800627877826816909 16 UNAUTHENTICATED: Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project. Error: Command failed: node get_model_evaluation.js long-door-651 us-central1 TRL1218052175389786112 6800627877826816909 16 UNAUTHENTICATED: Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project. at checkExecSyncError (child_process.js:635:11) at Object.execSync (child_process.js:671:15) at execSync (test/get_model_evaluation.test.js:23:28) at Context.<anonymous> (test/get_model_evaluation.test.js:35:35)</pre></details>
1.0
Automl Translate Model Tests: should get model evaluations failed - Note: #647 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. ---- commit: 97411a2bb514b9921bb3932543a2d895c452d5c6 buildURL: [Build Status](https://source.cloud.google.com/results/invocations/111acef3-99d9-40ee-ba64-bedce26a8918), [Sponge](http://sponge2/111acef3-99d9-40ee-ba64-bedce26a8918) status: failed <details><summary>Test output</summary><br><pre>Command failed: node get_model_evaluation.js long-door-651 us-central1 TRL1218052175389786112 6800627877826816909 16 UNAUTHENTICATED: Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project. Error: Command failed: node get_model_evaluation.js long-door-651 us-central1 TRL1218052175389786112 6800627877826816909 16 UNAUTHENTICATED: Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project. at checkExecSyncError (child_process.js:635:11) at Object.execSync (child_process.js:671:15) at execSync (test/get_model_evaluation.test.js:23:28) at Context.<anonymous> (test/get_model_evaluation.test.js:35:35)</pre></details>
non_test
automl translate model tests should get model evaluations failed note was also for this test but it was closed more than days ago so i didn t mark it flaky commit buildurl status failed test output command failed node get model evaluation js long door us unauthenticated request had invalid authentication credentials expected oauth access token login cookie or other valid authentication credential see error command failed node get model evaluation js long door us unauthenticated request had invalid authentication credentials expected oauth access token login cookie or other valid authentication credential see at checkexecsyncerror child process js at object execsync child process js at execsync test get model evaluation test js at context test get model evaluation test js
0
73,451
32,072,436,784
IssuesEvent
2023-09-25 08:53:30
Proxeuse/status
https://api.github.com/repos/Proxeuse/status
opened
🛑 Service - Customer Portal is down
status service-customer-portal
In [`91e9e70`](https://github.com/Proxeuse/status/commit/91e9e70bc91112548a1cdd0514dcf3ac457bf749 ), Service - Customer Portal (https://my.proxeuse.com) was **down**: - HTTP code: 0 - Response time: 0 ms
1.0
🛑 Service - Customer Portal is down - In [`91e9e70`](https://github.com/Proxeuse/status/commit/91e9e70bc91112548a1cdd0514dcf3ac457bf749 ), Service - Customer Portal (https://my.proxeuse.com) was **down**: - HTTP code: 0 - Response time: 0 ms
non_test
🛑 service customer portal is down in service customer portal was down http code response time ms
0
23,309
4,006,504,835
IssuesEvent
2016-05-12 15:07:03
GCSO2/D3S-INVENTORY
https://api.github.com/repos/GCSO2/D3S-INVENTORY
closed
Cloud: Physical Count... add in progress feedback when generating list
ready for gio to test
Hi, please add that ball in progress after user pressed Generate List. Right now there is no feedback when user is running the generation list. ![image](https://cloud.githubusercontent.com/assets/5666297/15119458/0c9eddfe-15df-11e6-853d-b09481a4e2f2.png)
1.0
Cloud: Physical Count... add in progress feedback when generating list - Hi, please add that ball in progress after user pressed Generate List. Right now there is no feedback when user is running the generation list. ![image](https://cloud.githubusercontent.com/assets/5666297/15119458/0c9eddfe-15df-11e6-853d-b09481a4e2f2.png)
test
cloud physical count add in progress feedback when generating list hi please add that ball in progress after user pressed generate list right now there is no feedback when user is running the generation list
1
24,667
4,063,603,140
IssuesEvent
2016-05-26 00:39:47
danielburgess/snesgss
https://api.github.com/repos/danielburgess/snesgss
closed
Unresolved reference to "__tccs_snes_oam" when assembling sneslib.asm
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. assemble and link sneslib.asm (added) : .include "Header.inc" ; https://en.wikibooks.org/wiki/Super_NES_Programming/Initialization_Tutorial/head er .include "InitSNES.asm" ;https://en.wikibooks.org/wiki/Super_NES_Programming/Initialization_Tutorial/Sne s_Init What is the expected output? What do you see instead? sneslib.obj:sneslib.asm:273: PARSE_STACK: Unresolved reference to "__tccs_snes_oam". What version of the product are you using? On what operating system? Current version from this site / Win Xp sp3 Please provide any additional information below. Tried with both WlA dDx 9.6 / Wla 9.2 ``` Original issue reported on code.google.com by `MikeStra...@gmail.com` on 22 Mar 2015 at 10:38
1.0
Unresolved reference to "__tccs_snes_oam" when assembling sneslib.asm - ``` What steps will reproduce the problem? 1. assemble and link sneslib.asm (added) : .include "Header.inc" ; https://en.wikibooks.org/wiki/Super_NES_Programming/Initialization_Tutorial/head er .include "InitSNES.asm" ;https://en.wikibooks.org/wiki/Super_NES_Programming/Initialization_Tutorial/Sne s_Init What is the expected output? What do you see instead? sneslib.obj:sneslib.asm:273: PARSE_STACK: Unresolved reference to "__tccs_snes_oam". What version of the product are you using? On what operating system? Current version from this site / Win Xp sp3 Please provide any additional information below. Tried with both WlA dDx 9.6 / Wla 9.2 ``` Original issue reported on code.google.com by `MikeStra...@gmail.com` on 22 Mar 2015 at 10:38
non_test
unresolved reference to tccs snes oam when assembling sneslib asm what steps will reproduce the problem assemble and link sneslib asm added include header inc er include initsnes asm s init what is the expected output what do you see instead sneslib obj sneslib asm parse stack unresolved reference to tccs snes oam what version of the product are you using on what operating system current version from this site win xp please provide any additional information below tried with both wla ddx wla original issue reported on code google com by mikestra gmail com on mar at
0
273,312
23,745,289,568
IssuesEvent
2022-08-31 15:27:45
bottlerocket-os/bottlerocket
https://api.github.com/repos/bottlerocket-os/bottlerocket
closed
cargo make test for aws-ecs variants
testing
Get `cargo make test` working for ECS. In conformance mode this will run a simple task. In upgrade-downgrade mode it will run that task at each waypoint in the upgrade-downgrade cycle. depends on (or rather, would conflict with if done in parallel): - #2148 - #2149
1.0
cargo make test for aws-ecs variants - Get `cargo make test` working for ECS. In conformance mode this will run a simple task. In upgrade-downgrade mode it will run that task at each waypoint in the upgrade-downgrade cycle. depends on (or rather, would conflict with if done in parallel): - #2148 - #2149
test
cargo make test for aws ecs variants get cargo make test working for ecs in conformance mode this will run a simple task in upgrade downgrade mode it will run that task at each waypoint in the upgrade downgrade cycle depends on or rather would conflict with if done in parallel
1
101,337
8,785,860,946
IssuesEvent
2018-12-20 14:14:38
zimmerman-zimmerman/OIPA
https://api.github.com/repos/zimmerman-zimmerman/OIPA
opened
Add tests for custom task_queue views
Enhancement Test
<img width="352" alt="screen shot 2018-12-20 at 15 08 07" src="https://user-images.githubusercontent.com/3446400/50289425-19a79100-0469-11e9-909d-5c3b1d5aa4fe.png"> Custom views for `task_queue` app must be tested, as this is the core functionality for OIPA and now when something fails (f. ex. #961), because it is using Supervisor which is running in the background and since errors are currently _only_ logged in the JSON files (see: #962), it is impossible no notice this (f. ex. before the ba2fdbc8b83aa858f072c321cf64b71bda9f45a0 bugfix it was not even reported to the frontend)
1.0
Add tests for custom task_queue views - <img width="352" alt="screen shot 2018-12-20 at 15 08 07" src="https://user-images.githubusercontent.com/3446400/50289425-19a79100-0469-11e9-909d-5c3b1d5aa4fe.png"> Custom views for `task_queue` app must be tested, as this is the core functionality for OIPA and now when something fails (f. ex. #961), because it is using Supervisor which is running in the background and since errors are currently _only_ logged in the JSON files (see: #962), it is impossible no notice this (f. ex. before the ba2fdbc8b83aa858f072c321cf64b71bda9f45a0 bugfix it was not even reported to the frontend)
test
add tests for custom task queue views img width alt screen shot at src custom views for task queue app must be tested as this is the core functionality for oipa and now when something fails f ex because it is using supervisor which is running in the background and since errors are currently only logged in the json files see it is impossible no notice this f ex before the bugfix it was not even reported to the frontend
1
266,047
23,219,653,386
IssuesEvent
2022-08-02 16:55:49
redpanda-data/redpanda
https://api.github.com/repos/redpanda-data/redpanda
closed
test: NodesDecommissioningTest.test_decommissioning_working_node test failure
kind/bug area/redpanda area/tests ci-failure
https://buildkite.com/vectorized/redpanda/builds/5456#d89e5b24-9c6f-4e3c-b4b4-aa0bb7cc7328 ``` test_id: rptest.tests.nodes_decommissioning_test.NodesDecommissioningTest.test_decommissioning_working_node --   | status: FAIL   | run time: 2 minutes 46.176 seconds   |     |     | TimeoutError('')   | Traceback (most recent call last):   | File "/usr/local/lib/python3.8/dist-packages/ducktape/tests/runner_client.py", line 135, in run   | data = self.run_test()   | File "/usr/local/lib/python3.8/dist-packages/ducktape/tests/runner_client.py", line 215, in run_test   | return self.test_context.function(self.test)   | File "/root/tests/rptest/tests/nodes_decommissioning_test.py", line 64, in test_decommissioning_working_node   | wait_until(node_removed, timeout_sec=120, backoff_sec=2)   | File "/usr/local/lib/python3.8/dist-packages/ducktape/utils/util.py", line 58, in wait_until   | raise TimeoutError(err_msg() if callable(err_msg) else err_msg) from last_exception   | ducktape.errors.TimeoutError ```
1.0
test: NodesDecommissioningTest.test_decommissioning_working_node test failure - https://buildkite.com/vectorized/redpanda/builds/5456#d89e5b24-9c6f-4e3c-b4b4-aa0bb7cc7328 ``` test_id: rptest.tests.nodes_decommissioning_test.NodesDecommissioningTest.test_decommissioning_working_node --   | status: FAIL   | run time: 2 minutes 46.176 seconds   |     |     | TimeoutError('')   | Traceback (most recent call last):   | File "/usr/local/lib/python3.8/dist-packages/ducktape/tests/runner_client.py", line 135, in run   | data = self.run_test()   | File "/usr/local/lib/python3.8/dist-packages/ducktape/tests/runner_client.py", line 215, in run_test   | return self.test_context.function(self.test)   | File "/root/tests/rptest/tests/nodes_decommissioning_test.py", line 64, in test_decommissioning_working_node   | wait_until(node_removed, timeout_sec=120, backoff_sec=2)   | File "/usr/local/lib/python3.8/dist-packages/ducktape/utils/util.py", line 58, in wait_until   | raise TimeoutError(err_msg() if callable(err_msg) else err_msg) from last_exception   | ducktape.errors.TimeoutError ```
test
test nodesdecommissioningtest test decommissioning working node test failure test id rptest tests nodes decommissioning test nodesdecommissioningtest test decommissioning working node   status fail   run time minutes seconds           timeouterror   traceback most recent call last   file usr local lib dist packages ducktape tests runner client py line in run   data self run test   file usr local lib dist packages ducktape tests runner client py line in run test   return self test context function self test   file root tests rptest tests nodes decommissioning test py line in test decommissioning working node   wait until node removed timeout sec backoff sec   file usr local lib dist packages ducktape utils util py line in wait until   raise timeouterror err msg if callable err msg else err msg from last exception   ducktape errors timeouterror
1
134,250
18,454,573,851
IssuesEvent
2021-10-15 14:52:53
bgoonz/searchAwesome
https://api.github.com/repos/bgoonz/searchAwesome
opened
CVE-2021-33503 (High) detected in urllib3-1.25.10-py2.py3-none-any.whl
security vulnerability
## CVE-2021-33503 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>urllib3-1.25.10-py2.py3-none-any.whl</b></p></summary> <p>HTTP library with thread-safe connection pooling, file post, and more.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/9f/f0/a391d1463ebb1b233795cabfc0ef38d3db4442339de68f847026199e69d7/urllib3-1.25.10-py2.py3-none-any.whl">https://files.pythonhosted.org/packages/9f/f0/a391d1463ebb1b233795cabfc0ef38d3db4442339de68f847026199e69d7/urllib3-1.25.10-py2.py3-none-any.whl</a></p> <p>Path to dependency file: searchAwesome_depth_0/clones/awesome-kotlin/app-frontend/.yarn/cache/node-gyp-npm-8.1.0-30cf500e19-6e014ff491/node_modules/node-gyp/gyp</p> <p>Path to vulnerable library: /clones/awesome-kotlin/app-frontend/.yarn/cache/node-gyp-npm-8.1.0-30cf500e19-6e014ff491/node_modules/node-gyp/gyp,/clones/Mind-Expanding-Books/utils/requirements.txt</p> <p> Dependency Hierarchy: - requests-2.24.0-py2.py3-none-any.whl (Root Library) - :x: **urllib3-1.25.10-py2.py3-none-any.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/bgoonz/searchAwesome/commit/8c366c860f88ff2849d4a7b7832c781154d89ece">8c366c860f88ff2849d4a7b7832c781154d89ece</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in urllib3 before 1.26.5. When provided with a URL containing many @ characters in the authority component, the authority regular expression exhibits catastrophic backtracking, causing a denial of service if a URL were passed as a parameter or redirected to via an HTTP redirect. <p>Publish Date: 2021-06-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-33503>CVE-2021-33503</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://github.com/urllib3/urllib3/security/advisories/GHSA-q2q7-5pp4-w6pg">https://github.com/urllib3/urllib3/security/advisories/GHSA-q2q7-5pp4-w6pg</a></p> <p>Release Date: 2021-05-22</p> <p>Fix Resolution: urllib3 - 1.26.5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-33503 (High) detected in urllib3-1.25.10-py2.py3-none-any.whl - ## CVE-2021-33503 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>urllib3-1.25.10-py2.py3-none-any.whl</b></p></summary> <p>HTTP library with thread-safe connection pooling, file post, and more.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/9f/f0/a391d1463ebb1b233795cabfc0ef38d3db4442339de68f847026199e69d7/urllib3-1.25.10-py2.py3-none-any.whl">https://files.pythonhosted.org/packages/9f/f0/a391d1463ebb1b233795cabfc0ef38d3db4442339de68f847026199e69d7/urllib3-1.25.10-py2.py3-none-any.whl</a></p> <p>Path to dependency file: searchAwesome_depth_0/clones/awesome-kotlin/app-frontend/.yarn/cache/node-gyp-npm-8.1.0-30cf500e19-6e014ff491/node_modules/node-gyp/gyp</p> <p>Path to vulnerable library: /clones/awesome-kotlin/app-frontend/.yarn/cache/node-gyp-npm-8.1.0-30cf500e19-6e014ff491/node_modules/node-gyp/gyp,/clones/Mind-Expanding-Books/utils/requirements.txt</p> <p> Dependency Hierarchy: - requests-2.24.0-py2.py3-none-any.whl (Root Library) - :x: **urllib3-1.25.10-py2.py3-none-any.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/bgoonz/searchAwesome/commit/8c366c860f88ff2849d4a7b7832c781154d89ece">8c366c860f88ff2849d4a7b7832c781154d89ece</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in urllib3 before 1.26.5. When provided with a URL containing many @ characters in the authority component, the authority regular expression exhibits catastrophic backtracking, causing a denial of service if a URL were passed as a parameter or redirected to via an HTTP redirect. <p>Publish Date: 2021-06-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-33503>CVE-2021-33503</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://github.com/urllib3/urllib3/security/advisories/GHSA-q2q7-5pp4-w6pg">https://github.com/urllib3/urllib3/security/advisories/GHSA-q2q7-5pp4-w6pg</a></p> <p>Release Date: 2021-05-22</p> <p>Fix Resolution: urllib3 - 1.26.5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve high detected in none any whl cve high severity vulnerability vulnerable library none any whl http library with thread safe connection pooling file post and more library home page a href path to dependency file searchawesome depth clones awesome kotlin app frontend yarn cache node gyp npm node modules node gyp gyp path to vulnerable library clones awesome kotlin app frontend yarn cache node gyp npm node modules node gyp gyp clones mind expanding books utils requirements txt dependency hierarchy requests none any whl root library x none any whl vulnerable library found in head commit a href found in base branch master vulnerability details an issue was discovered in before when provided with a url containing many characters in the authority component the authority regular expression exhibits catastrophic backtracking causing a denial of service if a url were passed as a parameter or redirected to via an http redirect 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
299,559
25,910,922,892
IssuesEvent
2022-12-15 13:56:01
rootzoll/raspiblitz
https://api.github.com/repos/rootzoll/raspiblitz
closed
build continuous integration
final testing
Would be nice to have nightly builds, or at the very least, a build that doesn't rely on somebody running it by hand. Longer term goal is to actually deploy the image to a real raspi (or emulator) and test some basic functions. (outside the scope of this initial ticket) I'm fairly competent with gitlab-ci, so I'm thinking I'll go with that. Need to figure out how well the free tier integrates with github. GitHub actions is another option, but you can't self-host the runners with GitHub actions, which means somebody would need to pay for it. If there's any input regarding what CI system to use, I'd love to hear it. I'm actively working on this, so please assign to me :)
1.0
build continuous integration - Would be nice to have nightly builds, or at the very least, a build that doesn't rely on somebody running it by hand. Longer term goal is to actually deploy the image to a real raspi (or emulator) and test some basic functions. (outside the scope of this initial ticket) I'm fairly competent with gitlab-ci, so I'm thinking I'll go with that. Need to figure out how well the free tier integrates with github. GitHub actions is another option, but you can't self-host the runners with GitHub actions, which means somebody would need to pay for it. If there's any input regarding what CI system to use, I'd love to hear it. I'm actively working on this, so please assign to me :)
test
build continuous integration would be nice to have nightly builds or at the very least a build that doesn t rely on somebody running it by hand longer term goal is to actually deploy the image to a real raspi or emulator and test some basic functions outside the scope of this initial ticket i m fairly competent with gitlab ci so i m thinking i ll go with that need to figure out how well the free tier integrates with github github actions is another option but you can t self host the runners with github actions which means somebody would need to pay for it if there s any input regarding what ci system to use i d love to hear it i m actively working on this so please assign to me
1
4,403
2,724,105,310
IssuesEvent
2015-04-14 16:02:23
victoralex/seeds
https://api.github.com/repos/victoralex/seeds
opened
add human readable id to seeds
enhancement testing timesaver ui change
auto updated all existing seeds with: db.companies_questionnaires.find().forEach( function( aRow ){db.companies_questionnaires.update({ _id: aRow._id }, { $set: { cq_questionnaire_id: getNextSequence( "questionnaireID" ) } } );});
1.0
add human readable id to seeds - auto updated all existing seeds with: db.companies_questionnaires.find().forEach( function( aRow ){db.companies_questionnaires.update({ _id: aRow._id }, { $set: { cq_questionnaire_id: getNextSequence( "questionnaireID" ) } } );});
test
add human readable id to seeds auto updated all existing seeds with db companies questionnaires find foreach function arow db companies questionnaires update id arow id set cq questionnaire id getnextsequence questionnaireid
1
22,749
7,204,336,795
IssuesEvent
2018-02-06 12:20:17
kyamagu/mexopencv
https://api.github.com/repos/kyamagu/mexopencv
closed
Invalid MEX-file
build/install incomplete/abandoned opencv-2 windows
XP(sp3)+VS2010+R2011b+opencv2.3.1 i always have the problem that > Invalid MEX-file 'F:\Program Files\mexopencv+cv\cvtColor.mexw32': 找不到指定的模块。 when run the examples, and i tried everything in the instructions. I dont know why?
1.0
Invalid MEX-file - XP(sp3)+VS2010+R2011b+opencv2.3.1 i always have the problem that > Invalid MEX-file 'F:\Program Files\mexopencv+cv\cvtColor.mexw32': 找不到指定的模块。 when run the examples, and i tried everything in the instructions. I dont know why?
non_test
invalid mex file xp i always have the problem that invalid mex file f program files mexopencv cv cvtcolor 找不到指定的模块。 when run the examples and i tried everything in the instructions i dont know why
0
17,081
6,347,730,786
IssuesEvent
2017-07-28 08:00:50
gradle/gradle
https://api.github.com/repos/gradle/gradle
closed
Task is never up-to-date and corrupts the output of the build
a:bug affects-version:3.3 affects-version:3.4 in:incremental-build
The issue can be seen in the Gradle repository itself, when converting from a project that uses `GroovyCompile` to `JavaCompile`. The result of compilation is corrupted by `GroovyCompile` task, which is never up-to-date: it will delete the result of the `JavaCompile` task, because they share the same output directory (which is bad, but hey). Deleting the task history cache fixes the problem (delete `.gradle`). ### Expected Behavior When a task has no source, but that files are deleted (state cleanup), we should write a new entry in the task history to make sure that the next time the task is up-to-date. It would not fix the inconsistency for the first run, though, because it would still delete the result of the `compileJava` task for the 1st time, but subsequent runs would be ok. ### Current Behavior When the `:ide:compileGroovy` task is executed, in `org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter`, we see that some files have been removed, so it deletes the result of the `compileJava` task, which happens to execute _before_. The `deleted` flag is set to true, and the task outcome is set to `EXECUTED`. However, it seems that the task history is never updated, probably because the task will never be executed because it has no source. So the next time we run the build, files are again missing, and we delete the result from the `compileJava` task again. It's an infinite loop until we delete the `.gradle` directory, or disable explicitly the `compileGroovy` task. ### Context Migrating from a project with Groovy sources to a project with Java sources, while keeping the `groovy` plugin for test sources (so, a `GroovyCompile` task still exists). ### Steps to Reproduce (for bugs) On the Gradle build: 1. `./gradlew ide:compileGroovy` 2. edit `subprojects/ide/ide.gradle` and comment out the 2 `sourceSets` lines. This should effectively disable Groovy compilation because it doesn't have sources anymore. Only Java compilation should remain, which is fine because we only have `src/main/java`. 3. `./gradlew ide:compileGroovy`. See that the task is not up-to-date. 4. `./gradlew ide:compileGroovy`. See that the `compileJava` task is executed again because its output has been deleted by the `compileGroovy` cleanup. Then see that `compileGroovy` is executed, and deletes the output of `compileJava`. 5. delete `.gradle` 6. `./gradlew ide:compileGroovy` : no-source, everything is back to normal Warning: the fact the `compileGroovy` task is not up-to-date is confusing. It doesn't execute any task action. So you can add whatever you want in a `doFirst` or `doLast`, it will *never* be executed, because the task has no sources! The only reason it says it has done some work is because it cleaned up the output of the `compileJava` task...
1.0
Task is never up-to-date and corrupts the output of the build - The issue can be seen in the Gradle repository itself, when converting from a project that uses `GroovyCompile` to `JavaCompile`. The result of compilation is corrupted by `GroovyCompile` task, which is never up-to-date: it will delete the result of the `JavaCompile` task, because they share the same output directory (which is bad, but hey). Deleting the task history cache fixes the problem (delete `.gradle`). ### Expected Behavior When a task has no source, but that files are deleted (state cleanup), we should write a new entry in the task history to make sure that the next time the task is up-to-date. It would not fix the inconsistency for the first run, though, because it would still delete the result of the `compileJava` task for the 1st time, but subsequent runs would be ok. ### Current Behavior When the `:ide:compileGroovy` task is executed, in `org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter`, we see that some files have been removed, so it deletes the result of the `compileJava` task, which happens to execute _before_. The `deleted` flag is set to true, and the task outcome is set to `EXECUTED`. However, it seems that the task history is never updated, probably because the task will never be executed because it has no source. So the next time we run the build, files are again missing, and we delete the result from the `compileJava` task again. It's an infinite loop until we delete the `.gradle` directory, or disable explicitly the `compileGroovy` task. ### Context Migrating from a project with Groovy sources to a project with Java sources, while keeping the `groovy` plugin for test sources (so, a `GroovyCompile` task still exists). ### Steps to Reproduce (for bugs) On the Gradle build: 1. `./gradlew ide:compileGroovy` 2. edit `subprojects/ide/ide.gradle` and comment out the 2 `sourceSets` lines. This should effectively disable Groovy compilation because it doesn't have sources anymore. Only Java compilation should remain, which is fine because we only have `src/main/java`. 3. `./gradlew ide:compileGroovy`. See that the task is not up-to-date. 4. `./gradlew ide:compileGroovy`. See that the `compileJava` task is executed again because its output has been deleted by the `compileGroovy` cleanup. Then see that `compileGroovy` is executed, and deletes the output of `compileJava`. 5. delete `.gradle` 6. `./gradlew ide:compileGroovy` : no-source, everything is back to normal Warning: the fact the `compileGroovy` task is not up-to-date is confusing. It doesn't execute any task action. So you can add whatever you want in a `doFirst` or `doLast`, it will *never* be executed, because the task has no sources! The only reason it says it has done some work is because it cleaned up the output of the `compileJava` task...
non_test
task is never up to date and corrupts the output of the build the issue can be seen in the gradle repository itself when converting from a project that uses groovycompile to javacompile the result of compilation is corrupted by groovycompile task which is never up to date it will delete the result of the javacompile task because they share the same output directory which is bad but hey deleting the task history cache fixes the problem delete gradle expected behavior when a task has no source but that files are deleted state cleanup we should write a new entry in the task history to make sure that the next time the task is up to date it would not fix the inconsistency for the first run though because it would still delete the result of the compilejava task for the time but subsequent runs would be ok current behavior when the ide compilegroovy task is executed in org gradle api internal tasks execution skipemptysourcefilestaskexecuter we see that some files have been removed so it deletes the result of the compilejava task which happens to execute before the deleted flag is set to true and the task outcome is set to executed however it seems that the task history is never updated probably because the task will never be executed because it has no source so the next time we run the build files are again missing and we delete the result from the compilejava task again it s an infinite loop until we delete the gradle directory or disable explicitly the compilegroovy task context migrating from a project with groovy sources to a project with java sources while keeping the groovy plugin for test sources so a groovycompile task still exists steps to reproduce for bugs on the gradle build gradlew ide compilegroovy edit subprojects ide ide gradle and comment out the sourcesets lines this should effectively disable groovy compilation because it doesn t have sources anymore only java compilation should remain which is fine because we only have src main java gradlew ide compilegroovy see that the task is not up to date gradlew ide compilegroovy see that the compilejava task is executed again because its output has been deleted by the compilegroovy cleanup then see that compilegroovy is executed and deletes the output of compilejava delete gradle gradlew ide compilegroovy no source everything is back to normal warning the fact the compilegroovy task is not up to date is confusing it doesn t execute any task action so you can add whatever you want in a dofirst or dolast it will never be executed because the task has no sources the only reason it says it has done some work is because it cleaned up the output of the compilejava task
0
56,200
6,506,624,843
IssuesEvent
2017-08-24 09:45:42
superbatonchik/EduFormManager
https://api.github.com/repos/superbatonchik/EduFormManager
reopened
Выстроит по порядку ОО
test
При входе в модули "формы ФСН образовательных организаций" , например: МО г.Астрахань, мы видим вот такую картину, у нас все организации, расположены в хаотичном порядке. Подмодуль "общеобразовательные организации" ![default](https://cloud.githubusercontent.com/assets/16133720/26189282/80091dc4-3bac-11e7-8c3a-da0cd7c1d4ac.png) Подмодуль "дошкольные образовательные организации" ![default](https://cloud.githubusercontent.com/assets/16133720/26189324/c172b3a6-3bac-11e7-8e5a-4da8f2b066c5.png) Подмодуль "Гимназии, лицеи.... организации" ![default](https://cloud.githubusercontent.com/assets/16133720/26189327/c8e9a66c-3bac-11e7-9de3-e5d934ae3e0d.png) Раньше у нас там был порядок, но сейчас, просто хаус. Поправь, пожалуйста. Вот такой беспорядок очень сильно мешает в работе, особенно в МО с большим количеством ОО. Порядок по Алфавиту и номеру Организации (скорректируй, пожалуйста). Спасибо!
1.0
Выстроит по порядку ОО - При входе в модули "формы ФСН образовательных организаций" , например: МО г.Астрахань, мы видим вот такую картину, у нас все организации, расположены в хаотичном порядке. Подмодуль "общеобразовательные организации" ![default](https://cloud.githubusercontent.com/assets/16133720/26189282/80091dc4-3bac-11e7-8c3a-da0cd7c1d4ac.png) Подмодуль "дошкольные образовательные организации" ![default](https://cloud.githubusercontent.com/assets/16133720/26189324/c172b3a6-3bac-11e7-8e5a-4da8f2b066c5.png) Подмодуль "Гимназии, лицеи.... организации" ![default](https://cloud.githubusercontent.com/assets/16133720/26189327/c8e9a66c-3bac-11e7-9de3-e5d934ae3e0d.png) Раньше у нас там был порядок, но сейчас, просто хаус. Поправь, пожалуйста. Вот такой беспорядок очень сильно мешает в работе, особенно в МО с большим количеством ОО. Порядок по Алфавиту и номеру Организации (скорректируй, пожалуйста). Спасибо!
test
выстроит по порядку оо при входе в модули формы фсн образовательных организаций например мо г астрахань мы видим вот такую картину у нас все организации расположены в хаотичном порядке подмодуль общеобразовательные организации подмодуль дошкольные образовательные организации подмодуль гимназии лицеи организации раньше у нас там был порядок но сейчас просто хаус поправь пожалуйста вот такой беспорядок очень сильно мешает в работе особенно в мо с большим количеством оо порядок по алфавиту и номеру организации скорректируй пожалуйста спасибо
1
103,836
11,382,979,998
IssuesEvent
2020-01-29 04:08:23
retaildevcrews/helium
https://api.github.com/repos/retaildevcrews/helium
closed
Update EnginneringPractices.md
Documentation Pri1 Sharing size: S
## Description: - [ ] Add Kanban board best practices into .md file - [ ] Add clarification for templates (when to use which feature/task & release
1.0
Update EnginneringPractices.md - ## Description: - [ ] Add Kanban board best practices into .md file - [ ] Add clarification for templates (when to use which feature/task & release
non_test
update enginneringpractices md description add kanban board best practices into md file add clarification for templates when to use which feature task release
0
87,595
8,101,666,515
IssuesEvent
2018-08-12 16:14:18
kartoza/LEDET_BIMS
https://api.github.com/repos/kartoza/LEDET_BIMS
closed
FR39 develop and document GIS publishing workflow
testing
e.g. 1. GIS user preps data and QGIS and SLD styles and submits to GIS admin for publication 1. GIS admin loads into final schema or folder 1. GIS admin applies final style and saves as default in database 1. GIS admin publishes in Geoserver and applies SLD and permissions > The LBIMS shall allow a GIS user to submit working files for publishing and provide a metadata capture interface on the UI. > GIS users submit working files once they are complete, the data can then be published on the LBIMS by an admin user who has approved the data.
1.0
FR39 develop and document GIS publishing workflow - e.g. 1. GIS user preps data and QGIS and SLD styles and submits to GIS admin for publication 1. GIS admin loads into final schema or folder 1. GIS admin applies final style and saves as default in database 1. GIS admin publishes in Geoserver and applies SLD and permissions > The LBIMS shall allow a GIS user to submit working files for publishing and provide a metadata capture interface on the UI. > GIS users submit working files once they are complete, the data can then be published on the LBIMS by an admin user who has approved the data.
test
develop and document gis publishing workflow e g gis user preps data and qgis and sld styles and submits to gis admin for publication gis admin loads into final schema or folder gis admin applies final style and saves as default in database gis admin publishes in geoserver and applies sld and permissions the lbims shall allow a gis user to submit working files for publishing and provide a metadata capture interface on the ui gis users submit working files once they are complete the data can then be published on the lbims by an admin user who has approved the data
1
249,027
21,095,328,676
IssuesEvent
2022-04-04 09:45:26
NLCR/SeznamDNNT
https://api.github.com/repos/NLCR/SeznamDNNT
closed
Řazení neodeslaných žádostí dle data
p:TEST c::Functions p::Low
Dobrý den, při používání aplikace lze požadavky v "Moje konto" řadit (vzestupně nebo sestupně). Nejčastěji používám já a předpokládám, že i další uživatelé řazení dle **Data zadání sestupně** - vidíme tak nové žádosti. Pokud ale žádost není ještě odeslaná, tak v tomto případě datum chybí (přidělí se až po odeslání žádosti). Tyto žádosti se při použití daného filtru proto řadí na konec, přitom jde o žádosti nejnovější. Nešlo by toto nějak vyřešit? ![Datum zadani](https://user-images.githubusercontent.com/92719629/150386339-e3e27d1f-921d-47cc-9daf-73de31fef400.png) ![neodeslane zadosti](https://user-images.githubusercontent.com/92719629/150386405-0caeffbd-5ae6-42ad-a4b3-7c563ae3f439.png)
1.0
Řazení neodeslaných žádostí dle data - Dobrý den, při používání aplikace lze požadavky v "Moje konto" řadit (vzestupně nebo sestupně). Nejčastěji používám já a předpokládám, že i další uživatelé řazení dle **Data zadání sestupně** - vidíme tak nové žádosti. Pokud ale žádost není ještě odeslaná, tak v tomto případě datum chybí (přidělí se až po odeslání žádosti). Tyto žádosti se při použití daného filtru proto řadí na konec, přitom jde o žádosti nejnovější. Nešlo by toto nějak vyřešit? ![Datum zadani](https://user-images.githubusercontent.com/92719629/150386339-e3e27d1f-921d-47cc-9daf-73de31fef400.png) ![neodeslane zadosti](https://user-images.githubusercontent.com/92719629/150386405-0caeffbd-5ae6-42ad-a4b3-7c563ae3f439.png)
test
řazení neodeslaných žádostí dle data dobrý den při používání aplikace lze požadavky v moje konto řadit vzestupně nebo sestupně nejčastěji používám já a předpokládám že i další uživatelé řazení dle data zadání sestupně vidíme tak nové žádosti pokud ale žádost není ještě odeslaná tak v tomto případě datum chybí přidělí se až po odeslání žádosti tyto žádosti se při použití daného filtru proto řadí na konec přitom jde o žádosti nejnovější nešlo by toto nějak vyřešit
1
48,470
5,960,252,175
IssuesEvent
2017-05-29 13:35:26
TorchSpigot/Torch
https://api.github.com/repos/TorchSpigot/Torch
reopened
白名单工作不正常
bug need-testing
RT 已经检查过whitelist.json中记录的UUID与name正确 玩家登陆使用的UUID与whitelist.json中记录的UUID匹配,但依然无法进入服务器。 例外的是,**在服务器开启以后新添加白名单的玩家可以正常进入服务器,但服务器重启后无法再进入。** http://i4.buimg.com/588926/a00a8b9e392f992e.png http://i1.piimg.com/588926/a86200b3016e5a4f.png http://i4.buimg.com/588926/a3e0d34e20e8730a.png # git-Torch-"8ee61d7"
1.0
白名单工作不正常 - RT 已经检查过whitelist.json中记录的UUID与name正确 玩家登陆使用的UUID与whitelist.json中记录的UUID匹配,但依然无法进入服务器。 例外的是,**在服务器开启以后新添加白名单的玩家可以正常进入服务器,但服务器重启后无法再进入。** http://i4.buimg.com/588926/a00a8b9e392f992e.png http://i1.piimg.com/588926/a86200b3016e5a4f.png http://i4.buimg.com/588926/a3e0d34e20e8730a.png # git-Torch-"8ee61d7"
test
白名单工作不正常 rt 已经检查过whitelist json中记录的uuid与name正确 玩家登陆使用的uuid与whitelist json中记录的uuid匹配,但依然无法进入服务器。 例外的是, 在服务器开启以后新添加白名单的玩家可以正常进入服务器,但服务器重启后无法再进入。 git torch
1
308,865
9,458,557,699
IssuesEvent
2019-04-17 05:49:56
projectacrn/acrn-hypervisor
https://api.github.com/repos/projectacrn/acrn-hypervisor
closed
hv: refactor seed management
priority: P3-Medium status: implemented type: feature
New component to maintain seed retrieval and derivation: seed. Retrieve seed from bootloader in Hypervisor's boot stage. 2. Derive virtual seed for Guest/Trusty if need.
1.0
hv: refactor seed management - New component to maintain seed retrieval and derivation: seed. Retrieve seed from bootloader in Hypervisor's boot stage. 2. Derive virtual seed for Guest/Trusty if need.
non_test
hv refactor seed management new component to maintain seed retrieval and derivation seed retrieve seed from bootloader in hypervisor s boot stage derive virtual seed for guest trusty if need
0
164,264
12,794,813,381
IssuesEvent
2020-07-02 07:39:33
chainer/chainer
https://api.github.com/repos/chainer/chainer
closed
flaky: `chainer_tests/serializers_tests/test_hdf5.py::TestHDF5Deserializer::test_deserialize_different_dtype_cpu`
cat:test pr-ongoing prio:high stale
ERROR: type should be string, got "https://jenkins.preferred.jp/job/chainer/job/chainer_pr/2114/TEST=chainer-py2,label=mn1-p100/console\r\n\r\n`18:57:22 FAIL tests/chainer_tests/serializers_tests/test_hdf5.py::TestHDF5Deserializer::test_deserialize_different_dtype_cpu`\r\n\r\n```\r\n18:57:21 E AssertionError: \r\n18:57:21 E Arrays are not equal\r\n18:57:21 E \r\n18:57:21 E (mismatch 16.6666666667%)\r\n18:57:21 E x: array([[ 0.272705, -0.590332, 0.962891],\r\n18:57:21 E [-0.482178, -0.544922, -0.029999]], dtype=float16)\r\n18:57:21 E y: array([[ 0.272705, -0.590332, 0.962891],\r\n18:57:21 E [-0.481934, -0.544922, -0.029999]], dtype=float16)\r\n```"
1.0
flaky: `chainer_tests/serializers_tests/test_hdf5.py::TestHDF5Deserializer::test_deserialize_different_dtype_cpu` - https://jenkins.preferred.jp/job/chainer/job/chainer_pr/2114/TEST=chainer-py2,label=mn1-p100/console `18:57:22 FAIL tests/chainer_tests/serializers_tests/test_hdf5.py::TestHDF5Deserializer::test_deserialize_different_dtype_cpu` ``` 18:57:21 E AssertionError: 18:57:21 E Arrays are not equal 18:57:21 E 18:57:21 E (mismatch 16.6666666667%) 18:57:21 E x: array([[ 0.272705, -0.590332, 0.962891], 18:57:21 E [-0.482178, -0.544922, -0.029999]], dtype=float16) 18:57:21 E y: array([[ 0.272705, -0.590332, 0.962891], 18:57:21 E [-0.481934, -0.544922, -0.029999]], dtype=float16) ```
test
flaky chainer tests serializers tests test py test deserialize different dtype cpu fail tests chainer tests serializers tests test py test deserialize different dtype cpu e assertionerror e arrays are not equal e e mismatch e x array e dtype e y array e dtype
1
383,379
26,545,982,216
IssuesEvent
2023-01-20 00:15:46
redpanda-data/documentation
https://api.github.com/repos/redpanda-data/documentation
closed
empty_seed_starts_cluster default should be `true`
bug documentation
### Describe the Issue <!-- What problem does this issue solve for customers? Who is the audience for this update? For example, Infosec admins, cluster admins, or developers. Do you know the context in which users will likely search for this content? If so, share it. If this is a new feature, add a label for the version in which the update is expected. --> https://docs.redpanda.com/docs/reference/node-properties/#empty_seed_starts_cluster this documents that: >While false by default for backward compatibility, empty_seed_starts_cluster is recommended to be set to true. This appears reversed: the default is true: https://github.com/redpanda-data/redpanda/blob/dev/src/v/config/node_config.cc#L75 and *true* maintains backwards compatible behaviour. `False` would be what we'd recommend, too.
1.0
empty_seed_starts_cluster default should be `true` - ### Describe the Issue <!-- What problem does this issue solve for customers? Who is the audience for this update? For example, Infosec admins, cluster admins, or developers. Do you know the context in which users will likely search for this content? If so, share it. If this is a new feature, add a label for the version in which the update is expected. --> https://docs.redpanda.com/docs/reference/node-properties/#empty_seed_starts_cluster this documents that: >While false by default for backward compatibility, empty_seed_starts_cluster is recommended to be set to true. This appears reversed: the default is true: https://github.com/redpanda-data/redpanda/blob/dev/src/v/config/node_config.cc#L75 and *true* maintains backwards compatible behaviour. `False` would be what we'd recommend, too.
non_test
empty seed starts cluster default should be true describe the issue what problem does this issue solve for customers who is the audience for this update for example infosec admins cluster admins or developers do you know the context in which users will likely search for this content if so share it if this is a new feature add a label for the version in which the update is expected this documents that while false by default for backward compatibility empty seed starts cluster is recommended to be set to true this appears reversed the default is true and true maintains backwards compatible behaviour false would be what we d recommend too
0
325,960
27,970,090,656
IssuesEvent
2023-03-25 00:37:03
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
ccl/backupccl: TestDataDriven failed
C-test-failure O-robot T-disaster-recovery branch-release-23.1
ccl/backupccl.TestDataDriven [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9183347?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9183347?buildTab=artifacts#/) on release-23.1 @ [80c4895c566a7eaa6f16c4098980509dd3795ad7](https://github.com/cockroachdb/cockroach/commits/80c4895c566a7eaa6f16c4098980509dd3795ad7): ``` exec-sql [0 args] RESTORE FROM LATEST IN 'external://conn-foo/cluster'; ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:114: query-sql [0 args] SELECT * FROM d.schema.foo ---- 1 2 3 datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:121: exec-sql [0 args] DROP DATABASE d CASCADE ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:126: exec-sql [0 args] RESTORE DATABASE d FROM LATEST IN 'external://conn-foo/database' ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:130: query-sql [0 args] SELECT * FROM d.schema.foo ---- 1 2 3 datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:137: exec-sql [0 args] DROP DATABASE d CASCADE ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:142: exec-sql [0 args] RESTORE TABLE d.schema.foo FROM LATEST IN 'external://conn-foo/table' WITH into_db = 'defaultdb' ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:146: query-sql [0 args] SELECT * FROM defaultdb.schema.foo ---- 1 2 3 4 5 6 ``` <p>Parameters: <code>TAGS=bazel,gss,deadlock</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #98933 ccl/backupccl: TestDataDriven failed [A-cdc C-test-failure O-robot T-cdc T-disaster-recovery branch-master] </p> </details> /cc @cockroachdb/disaster-recovery <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestDataDriven.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-25747
1.0
ccl/backupccl: TestDataDriven failed - ccl/backupccl.TestDataDriven [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9183347?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/9183347?buildTab=artifacts#/) on release-23.1 @ [80c4895c566a7eaa6f16c4098980509dd3795ad7](https://github.com/cockroachdb/cockroach/commits/80c4895c566a7eaa6f16c4098980509dd3795ad7): ``` exec-sql [0 args] RESTORE FROM LATEST IN 'external://conn-foo/cluster'; ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:114: query-sql [0 args] SELECT * FROM d.schema.foo ---- 1 2 3 datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:121: exec-sql [0 args] DROP DATABASE d CASCADE ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:126: exec-sql [0 args] RESTORE DATABASE d FROM LATEST IN 'external://conn-foo/database' ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:130: query-sql [0 args] SELECT * FROM d.schema.foo ---- 1 2 3 datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:137: exec-sql [0 args] DROP DATABASE d CASCADE ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:142: exec-sql [0 args] RESTORE TABLE d.schema.foo FROM LATEST IN 'external://conn-foo/table' WITH into_db = 'defaultdb' ---- datadriven.go:242: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2894/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/external-connections-nodelocal:146: query-sql [0 args] SELECT * FROM defaultdb.schema.foo ---- 1 2 3 4 5 6 ``` <p>Parameters: <code>TAGS=bazel,gss,deadlock</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #98933 ccl/backupccl: TestDataDriven failed [A-cdc C-test-failure O-robot T-cdc T-disaster-recovery branch-master] </p> </details> /cc @cockroachdb/disaster-recovery <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestDataDriven.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-25747
test
ccl backupccl testdatadriven failed ccl backupccl testdatadriven with on release exec sql restore from latest in external conn foo cluster datadriven go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore external connections nodelocal query sql select from d schema foo datadriven go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore external connections nodelocal exec sql drop database d cascade datadriven go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore external connections nodelocal exec sql restore database d from latest in external conn foo database datadriven go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore external connections nodelocal query sql select from d schema foo datadriven go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore external connections nodelocal exec sql drop database d cascade datadriven go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore external connections nodelocal exec sql restore table d schema foo from latest in external conn foo table with into db defaultdb datadriven go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore external connections nodelocal query sql select from defaultdb schema foo parameters tags bazel gss deadlock help see also same failure on other branches ccl backupccl testdatadriven failed cc cockroachdb disaster recovery jira issue crdb
1
24,176
4,064,240,231
IssuesEvent
2016-05-26 05:30:46
TEAMMATES/teammates
https://api.github.com/repos/TEAMMATES/teammates
closed
StudentProfilePageUiTest fails frequently on line 177
a-Testing f-Profiles p.Medium
getProfilePicturePage(instructorId, email, courseId).verifyHasPicture(); expected puzzled.png but got entityNotFound.png, only started encountering this recently but > 50% of the time when I run entire test suites I get this weird failure which never happened before.
1.0
StudentProfilePageUiTest fails frequently on line 177 - getProfilePicturePage(instructorId, email, courseId).verifyHasPicture(); expected puzzled.png but got entityNotFound.png, only started encountering this recently but > 50% of the time when I run entire test suites I get this weird failure which never happened before.
test
studentprofilepageuitest fails frequently on line getprofilepicturepage instructorid email courseid verifyhaspicture expected puzzled png but got entitynotfound png only started encountering this recently but of the time when i run entire test suites i get this weird failure which never happened before
1
213,025
16,494,922,234
IssuesEvent
2021-05-25 09:17:48
hazelcast/hazelcast-jet
https://api.github.com/repos/hazelcast/hazelcast-jet
opened
com.hazelcast.jet.core.SuspendExecutionOnFailureTest.when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem
test-failure
_4.5-maintenance_ (commit 48d9e46150062ecacdf2e469eddbf624ae160194) Failed on Zulu JDK 11: http://jenkins.hazelcast.com/view/Jet%20-%20Maintenance/job/jet-oss-maintenance-zulu-jdk11/235/testReport/com.hazelcast.jet.core/SuspendExecutionOnFailureTest/when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem_0__mode_member_/ It failed with mode `[0: mode=member]`. Stacktrace: ``` java.lang.IllegalStateException: Job not suspended at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$beda4441$1(JobCoordinationService.java:462) at com.hazelcast.function.FunctionEx.apply(FunctionEx.java:47) at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$20(JobCoordinationService.java:469) at com.hazelcast.jet.impl.JobCoordinationService.lambda$callWithJob$38(JobCoordinationService.java:668) at com.hazelcast.jet.impl.JobCoordinationService.lambda$submitToCoordinatorThread$47(JobCoordinationService.java:1060) at com.hazelcast.internal.util.executor.CompletableFutureTask.run(CompletableFutureTask.java:64) at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:834) at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) at ------ submitted from ------.() at com.hazelcast.internal.util.ExceptionUtil.cloneExceptionWithFixedAsyncStackTrace(ExceptionUtil.java:279) at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.returnOrThrowWithGetConventions(InvocationFuture.java:112) at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:100) at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:617) at com.hazelcast.jet.impl.JobProxy.getSuspensionCause(JobProxy.java:79) at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem(SuspendExecutionOnFailureTest.java:138) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:115) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:107) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.lang.Thread.run(Thread.java:834) ``` Standard output: ``` 2021-05-23 23:01:50,755 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.JobCoordinationService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Starting job 063b-1c81-3442-0001 based on submit request 2021-05-23 23:01:50,770 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Didn't find any snapshot to restore for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,770 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Start executing job 'faultyJob', execution 063b-1c81-3443-0001, execution graph in DOT format: digraph DAG { "faulty" [localParallelism=18]; } HINT: You can use graphviz or http://viz-js.com to visualize the printed graph. 2021-05-23 23:01:50,770 [DEBUG] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Building execution plan for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,770 [DEBUG] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Built execution plans for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,771 [DEBUG] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.o.InitExecutionOperation]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Initializing execution plan for job 063b-1c81-3442-0001, execution 063b-1c81-3443-0001 from [127.0.0.1]:5701 2021-05-23 23:01:50,772 [DEBUG] [hz.relaxed_wright.generic-operation.thread-27] [c.h.j.i.o.InitExecutionOperation]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Initializing execution plan for job 063b-1c81-3442-0001, execution 063b-1c81-3443-0001 from [127.0.0.1]:5701 2021-05-23 23:01:50,773 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Execution plan for jobId=063b-1c81-3442-0001, jobName='faultyJob', executionId=063b-1c81-3443-0001 initialized 2021-05-23 23:01:50,780 [ INFO] [hz.relaxed_wright.generic-operation.thread-27] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Execution plan for jobId=063b-1c81-3442-0001, jobName='faultyJob', executionId=063b-1c81-3443-0001 initialized 2021-05-23 23:01:50,784 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Init of job 'faultyJob', execution 063b-1c81-3443-0001 was successful 2021-05-23 23:01:50,784 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Executing job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,784 [ INFO] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Start execution of job 'faultyJob', execution 063b-1c81-3443-0001 from coordinator [127.0.0.1]:5701 2021-05-23 23:01:50,784 [ INFO] [hz.relaxed_wright.generic-operation.thread-28] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Start execution of job 'faultyJob', execution 063b-1c81-3443-0001 from coordinator [127.0.0.1]:5701 2021-05-23 23:01:50,786 [ WARN] [hz.vigilant_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#18} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,821 [ WARN] [hz.vigilant_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#21} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,789 [ WARN] [hz.relaxed_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#0} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,823 [ WARN] [hz.vigilant_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#23} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,823 [ WARN] [hz.vigilant_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#24} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,797 [ WARN] [hz.relaxed_wright.jet.blocking.thread-2] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#2} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,823 [ WARN] [hz.vigilant_wright.jet.blocking.thread-4] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#22} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,798 [ WARN] [hz.relaxed_wright.jet.blocking.thread-1] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#1} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,825 [ WARN] [hz.vigilant_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#28} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,804 [ WARN] [hz.relaxed_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#3} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,826 [ WARN] [hz.vigilant_wright.jet.blocking.thread-5] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#25} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,827 [ WARN] [hz.vigilant_wright.jet.blocking.thread-5] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#30} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUn ...[truncated 69139 chars]... ) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,877 [ WARN] [hz.relaxed_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#17} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,877 [ WARN] [hz.relaxed_wright.jet.blocking.thread-4] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#4} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,878 [ WARN] [hz.relaxed_wright.jet.blocking.thread-2] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#16} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,878 [ WARN] [hz.relaxed_wright.jet.blocking.thread-6] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#15} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,879 [ WARN] [hz.relaxed_wright.jet.blocking.thread-7] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#12} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,879 [ WARN] [hz.relaxed_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#14} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,884 [ WARN] [hz.relaxed_wright.jet.blocking.thread-5] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#13} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,885 [DEBUG] [hz.vigilant_wright.jet.cooperative.thread-1] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Execution of job 'faultyJob', execution 063b-1c81-3443-0001 completed with failure java.util.concurrent.CompletionException: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#18}: java.lang.AssertionError: mock error at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:331) ~[?:?] at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:346) ~[?:?] at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:632) ~[?:?] at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?] at java.util.concurrent.CompletableFuture.completeExceptionally(CompletableFuture.java:2088) ~[?:?] at com.hazelcast.jet.impl.util.NonCompletableFuture.internalCompleteExceptionally(NonCompletableFuture.java:59) ~[classes/:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$ExecutionTracker.taskletDone(TaskletExecutionService.java:468) ~[classes/:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$CooperativeWorker.dismissTasklet(TaskletExecutionService.java:399) ~[classes/:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$CooperativeWorker.runTasklet(TaskletExecutionService.java:385) ~[classes/:?] at java.util.concurrent.CopyOnWriteArrayList.forEach(CopyOnWriteArrayList.java:807) [?:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$CooperativeWorker.run(TaskletExecutionService.java:347) [classes/:?] at java.lang.Thread.run(Thread.java:834) [?:?] Caused by: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#18}: java.lang.AssertionError: mock error at com.hazelcast.jet.impl.execution.TaskletExecutionService$BlockingWorker.run(TaskletExecutionService.java:305) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) ~[?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[?:?] ... 1 more Caused by: java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] ... 1 more 2021-05-23 23:01:50,914 [DEBUG] [hz.relaxed_wright.generic-operation.thread-28] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Execution of job 'faultyJob', execution 063b-1c81-3443-0001 completed with failure java.util.concurrent.CompletionException: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:331) ~[?:?] at java.util.concurrent.CompletableFuture.uniApplyNow(CompletableFuture.java:670) [?:?] at java.util.concurrent.CompletableFuture.uniApplyStage(CompletableFuture.java:658) [?:?] at java.util.concurrent.CompletableFuture.thenApply(CompletableFuture.java:2094) [?:?] at com.hazelcast.jet.impl.execution.ExecutionContext.beginExecution(ExecutionContext.java:168) ~[classes/:?] at com.hazelcast.jet.impl.JobExecutionService.beginExecution(JobExecutionService.java:378) [classes/:?] at com.hazelcast.jet.impl.operation.StartExecutionOperation.doRun(StartExecutionOperation.java:46) [classes/:?] at com.hazelcast.jet.impl.operation.AsyncOperation.run(AsyncOperation.java:53) [classes/:?] at com.hazelcast.spi.impl.operationservice.Operation.call(Operation.java:189) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:272) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:248) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:469) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:197) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:137) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.executeRun(OperationThread.java:123) [hazelcast-4.2.jar:4.2] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [hazelcast-4.2.jar:4.2] Caused by: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error at com.hazelcast.jet.impl.execution.TaskletExecutionService$BlockingWorker.run(TaskletExecutionService.java:305) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) ~[?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[?:?] at java.lang.Thread.run(Thread.java:834) ~[?:?] Caused by: java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) ~[?:?] 2021-05-23 23:01:50,945 [DEBUG] [ForkJoinPool.commonPool-worker-149] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Execution of job 'faultyJob', execution 063b-1c81-3443-0001 has failures: [[127.0.0.1]:5702=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error, [127.0.0.1]:5701=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#18}: java.lang.AssertionError: mock error] 2021-05-23 23:01:50,946 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Sending CompleteExecutionOperation for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,950 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.o.CompleteExecutionOperation]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Completing execution 063b-1c81-3443-0001 from caller [127.0.0.1]:5701, error=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error 2021-05-23 23:01:50,950 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Completed execution of job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,955 [DEBUG] [hz.relaxed_wright.generic-operation.thread-30] [c.h.j.i.o.CompleteExecutionOperation]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Completing execution 063b-1c81-3443-0001 from caller [127.0.0.1]:5701, error=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error 2021-05-23 23:01:50,955 [DEBUG] [hz.relaxed_wright.generic-operation.thread-30] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Completed execution of job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:51,006 [ WARN] [hz.vigilant_wright.cached.thread-4] [c.h.j.i.JobCoordinationService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] null java.lang.IllegalStateException: Job not suspended at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$beda4441$1(JobCoordinationService.java:462) ~[classes/:?] at com.hazelcast.function.FunctionEx.apply(FunctionEx.java:47) ~[hazelcast-4.2.jar:4.2] at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$20(JobCoordinationService.java:469) ~[classes/:?] at com.hazelcast.jet.impl.JobCoordinationService.lambda$callWithJob$38(JobCoordinationService.java:668) ~[classes/:?] at com.hazelcast.jet.impl.JobCoordinationService.lambda$submitToCoordinatorThread$47(JobCoordinationService.java:1060) ~[classes/:?] at com.hazelcast.internal.util.executor.CompletableFutureTask.run(CompletableFutureTask.java:64) [hazelcast-4.2.jar:4.2] at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217) [hazelcast-4.2.jar:4.2] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [hazelcast-4.2.jar:4.2] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [hazelcast-4.2.jar:4.2] 2021-05-23 23:01:51,348 [DEBUG] [Thread-40] [c.h.j.Job]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Sending CANCEL_FORCEFUL request for job 063b-1c81-3442-0001 (name ??) 2021-05-23 23:01:51,350 [DEBUG] [hz.vigilant_wright.cached.thread-4] [c.h.j.i.JobCoordinationService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] job 'faultyJob', execution 063b-1c81-3443-0001 is completed BuildInfo right after when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem[0: mode=member](com.hazelcast.jet.core.SuspendExecutionOnFailureTest): BuildInfo{version='4.2', build='20210324', buildNumber=20210324, revision=405cfd1, enterprise=false, serializationVersion=1, jet=JetBuildInfo{version='4.5.1-SNAPSHOT', build='20210523', revision='48d9e46'}} Hiccups measured while running test 'when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem[0: mode=member](com.hazelcast.jet.core.SuspendExecutionOnFailureTest):' 23:01:50, accumulated pauses: 438 ms, max pause: 149 ms, pauses over 1000 ms: 0 ```
1.0
com.hazelcast.jet.core.SuspendExecutionOnFailureTest.when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem - _4.5-maintenance_ (commit 48d9e46150062ecacdf2e469eddbf624ae160194) Failed on Zulu JDK 11: http://jenkins.hazelcast.com/view/Jet%20-%20Maintenance/job/jet-oss-maintenance-zulu-jdk11/235/testReport/com.hazelcast.jet.core/SuspendExecutionOnFailureTest/when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem_0__mode_member_/ It failed with mode `[0: mode=member]`. Stacktrace: ``` java.lang.IllegalStateException: Job not suspended at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$beda4441$1(JobCoordinationService.java:462) at com.hazelcast.function.FunctionEx.apply(FunctionEx.java:47) at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$20(JobCoordinationService.java:469) at com.hazelcast.jet.impl.JobCoordinationService.lambda$callWithJob$38(JobCoordinationService.java:668) at com.hazelcast.jet.impl.JobCoordinationService.lambda$submitToCoordinatorThread$47(JobCoordinationService.java:1060) at com.hazelcast.internal.util.executor.CompletableFutureTask.run(CompletableFutureTask.java:64) at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:834) at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) at ------ submitted from ------.() at com.hazelcast.internal.util.ExceptionUtil.cloneExceptionWithFixedAsyncStackTrace(ExceptionUtil.java:279) at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.returnOrThrowWithGetConventions(InvocationFuture.java:112) at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:100) at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:617) at com.hazelcast.jet.impl.JobProxy.getSuspensionCause(JobProxy.java:79) at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem(SuspendExecutionOnFailureTest.java:138) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:115) at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:107) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.lang.Thread.run(Thread.java:834) ``` Standard output: ``` 2021-05-23 23:01:50,755 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.JobCoordinationService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Starting job 063b-1c81-3442-0001 based on submit request 2021-05-23 23:01:50,770 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Didn't find any snapshot to restore for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,770 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Start executing job 'faultyJob', execution 063b-1c81-3443-0001, execution graph in DOT format: digraph DAG { "faulty" [localParallelism=18]; } HINT: You can use graphviz or http://viz-js.com to visualize the printed graph. 2021-05-23 23:01:50,770 [DEBUG] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Building execution plan for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,770 [DEBUG] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Built execution plans for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,771 [DEBUG] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.o.InitExecutionOperation]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Initializing execution plan for job 063b-1c81-3442-0001, execution 063b-1c81-3443-0001 from [127.0.0.1]:5701 2021-05-23 23:01:50,772 [DEBUG] [hz.relaxed_wright.generic-operation.thread-27] [c.h.j.i.o.InitExecutionOperation]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Initializing execution plan for job 063b-1c81-3442-0001, execution 063b-1c81-3443-0001 from [127.0.0.1]:5701 2021-05-23 23:01:50,773 [ INFO] [hz.vigilant_wright.cached.thread-18] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Execution plan for jobId=063b-1c81-3442-0001, jobName='faultyJob', executionId=063b-1c81-3443-0001 initialized 2021-05-23 23:01:50,780 [ INFO] [hz.relaxed_wright.generic-operation.thread-27] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Execution plan for jobId=063b-1c81-3442-0001, jobName='faultyJob', executionId=063b-1c81-3443-0001 initialized 2021-05-23 23:01:50,784 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Init of job 'faultyJob', execution 063b-1c81-3443-0001 was successful 2021-05-23 23:01:50,784 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Executing job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,784 [ INFO] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Start execution of job 'faultyJob', execution 063b-1c81-3443-0001 from coordinator [127.0.0.1]:5701 2021-05-23 23:01:50,784 [ INFO] [hz.relaxed_wright.generic-operation.thread-28] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Start execution of job 'faultyJob', execution 063b-1c81-3443-0001 from coordinator [127.0.0.1]:5701 2021-05-23 23:01:50,786 [ WARN] [hz.vigilant_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#18} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,821 [ WARN] [hz.vigilant_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#21} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,789 [ WARN] [hz.relaxed_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#0} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,823 [ WARN] [hz.vigilant_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#23} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,823 [ WARN] [hz.vigilant_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#24} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,797 [ WARN] [hz.relaxed_wright.jet.blocking.thread-2] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#2} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,823 [ WARN] [hz.vigilant_wright.jet.blocking.thread-4] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#22} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,798 [ WARN] [hz.relaxed_wright.jet.blocking.thread-1] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#1} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,825 [ WARN] [hz.vigilant_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#28} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,804 [ WARN] [hz.relaxed_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#3} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,826 [ WARN] [hz.vigilant_wright.jet.blocking.thread-5] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#25} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,827 [ WARN] [hz.vigilant_wright.jet.blocking.thread-5] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#30} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUn ...[truncated 69139 chars]... ) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,877 [ WARN] [hz.relaxed_wright.jet.blocking.thread-3] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#17} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,877 [ WARN] [hz.relaxed_wright.jet.blocking.thread-4] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#4} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,878 [ WARN] [hz.relaxed_wright.jet.blocking.thread-2] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#16} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,878 [ WARN] [hz.relaxed_wright.jet.blocking.thread-6] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#15} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,879 [ WARN] [hz.relaxed_wright.jet.blocking.thread-7] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#12} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,879 [ WARN] [hz.relaxed_wright.jet.blocking.thread-0] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#14} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,884 [ WARN] [hz.relaxed_wright.jet.blocking.thread-5] [c.h.j.i.e.TaskletExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Exception in ProcessorTasklet{faultyJob/faulty#13} java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) [?:?] 2021-05-23 23:01:50,885 [DEBUG] [hz.vigilant_wright.jet.cooperative.thread-1] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Execution of job 'faultyJob', execution 063b-1c81-3443-0001 completed with failure java.util.concurrent.CompletionException: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#18}: java.lang.AssertionError: mock error at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:331) ~[?:?] at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:346) ~[?:?] at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:632) ~[?:?] at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?] at java.util.concurrent.CompletableFuture.completeExceptionally(CompletableFuture.java:2088) ~[?:?] at com.hazelcast.jet.impl.util.NonCompletableFuture.internalCompleteExceptionally(NonCompletableFuture.java:59) ~[classes/:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$ExecutionTracker.taskletDone(TaskletExecutionService.java:468) ~[classes/:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$CooperativeWorker.dismissTasklet(TaskletExecutionService.java:399) ~[classes/:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$CooperativeWorker.runTasklet(TaskletExecutionService.java:385) ~[classes/:?] at java.util.concurrent.CopyOnWriteArrayList.forEach(CopyOnWriteArrayList.java:807) [?:?] at com.hazelcast.jet.impl.execution.TaskletExecutionService$CooperativeWorker.run(TaskletExecutionService.java:347) [classes/:?] at java.lang.Thread.run(Thread.java:834) [?:?] Caused by: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#18}: java.lang.AssertionError: mock error at com.hazelcast.jet.impl.execution.TaskletExecutionService$BlockingWorker.run(TaskletExecutionService.java:305) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) ~[?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[?:?] ... 1 more Caused by: java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] ... 1 more 2021-05-23 23:01:50,914 [DEBUG] [hz.relaxed_wright.generic-operation.thread-28] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Execution of job 'faultyJob', execution 063b-1c81-3443-0001 completed with failure java.util.concurrent.CompletionException: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:331) ~[?:?] at java.util.concurrent.CompletableFuture.uniApplyNow(CompletableFuture.java:670) [?:?] at java.util.concurrent.CompletableFuture.uniApplyStage(CompletableFuture.java:658) [?:?] at java.util.concurrent.CompletableFuture.thenApply(CompletableFuture.java:2094) [?:?] at com.hazelcast.jet.impl.execution.ExecutionContext.beginExecution(ExecutionContext.java:168) ~[classes/:?] at com.hazelcast.jet.impl.JobExecutionService.beginExecution(JobExecutionService.java:378) [classes/:?] at com.hazelcast.jet.impl.operation.StartExecutionOperation.doRun(StartExecutionOperation.java:46) [classes/:?] at com.hazelcast.jet.impl.operation.AsyncOperation.run(AsyncOperation.java:53) [classes/:?] at com.hazelcast.spi.impl.operationservice.Operation.call(Operation.java:189) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:272) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:248) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:469) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:197) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:137) [hazelcast-4.2.jar:4.2] at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.executeRun(OperationThread.java:123) [hazelcast-4.2.jar:4.2] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [hazelcast-4.2.jar:4.2] Caused by: com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error at com.hazelcast.jet.impl.execution.TaskletExecutionService$BlockingWorker.run(TaskletExecutionService.java:305) ~[classes/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) ~[?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[?:?] at java.lang.Thread.run(Thread.java:834) ~[?:?] Caused by: java.lang.AssertionError: mock error at com.hazelcast.jet.core.SuspendExecutionOnFailureTest.<clinit>(SuspendExecutionOnFailureTest.java:48) ~[test-classes/:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[?:?] at java.lang.Class.newInstance(Class.java:584) ~[?:?] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTestUsingFieldInjection(AbstractParameterizedHazelcastClassRunner.java:109) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.AbstractParameterizedHazelcastClassRunner.createTest(AbstractParameterizedHazelcastClassRunner.java:82) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:260) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner$2.runReflectiveCall(BlockJUnit4ClassRunner.java:309) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:306) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.AbstractHazelcastClassRunner.methodBlock(AbstractHazelcastClassRunner.java:232) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) ~[junit-4.13.1.jar:4.13.1] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50) ~[hazelcast-4.2-tests.jar:4.2] at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29) ~[hazelcast-4.2-tests.jar:4.2] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.run(ParentRunner.java:413) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:128) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.Suite.runChild(Suite.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) ~[junit-4.13.1.jar:4.13.1] at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:288) ~[junit-4.13.1.jar:4.13.1] at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:282) ~[junit-4.13.1.jar:4.13.1] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.lang.Thread.run(Thread.java:834) ~[?:?] 2021-05-23 23:01:50,945 [DEBUG] [ForkJoinPool.commonPool-worker-149] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Execution of job 'faultyJob', execution 063b-1c81-3443-0001 has failures: [[127.0.0.1]:5702=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error, [127.0.0.1]:5701=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#18}: java.lang.AssertionError: mock error] 2021-05-23 23:01:50,946 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.MasterJobContext]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Sending CompleteExecutionOperation for job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,950 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.o.CompleteExecutionOperation]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Completing execution 063b-1c81-3443-0001 from caller [127.0.0.1]:5701, error=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error 2021-05-23 23:01:50,950 [DEBUG] [hz.vigilant_wright.cached.thread-2] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Completed execution of job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:50,955 [DEBUG] [hz.relaxed_wright.generic-operation.thread-30] [c.h.j.i.o.CompleteExecutionOperation]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Completing execution 063b-1c81-3443-0001 from caller [127.0.0.1]:5701, error=com.hazelcast.jet.JetException: Exception in ProcessorTasklet{faultyJob/faulty#0}: java.lang.AssertionError: mock error 2021-05-23 23:01:50,955 [DEBUG] [hz.relaxed_wright.generic-operation.thread-30] [c.h.j.i.JobExecutionService]: [127.0.0.1]:5702 [jet] [4.5.1-SNAPSHOT] Completed execution of job 'faultyJob', execution 063b-1c81-3443-0001 2021-05-23 23:01:51,006 [ WARN] [hz.vigilant_wright.cached.thread-4] [c.h.j.i.JobCoordinationService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] null java.lang.IllegalStateException: Job not suspended at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$beda4441$1(JobCoordinationService.java:462) ~[classes/:?] at com.hazelcast.function.FunctionEx.apply(FunctionEx.java:47) ~[hazelcast-4.2.jar:4.2] at com.hazelcast.jet.impl.JobCoordinationService.lambda$getJobSuspensionCause$20(JobCoordinationService.java:469) ~[classes/:?] at com.hazelcast.jet.impl.JobCoordinationService.lambda$callWithJob$38(JobCoordinationService.java:668) ~[classes/:?] at com.hazelcast.jet.impl.JobCoordinationService.lambda$submitToCoordinatorThread$47(JobCoordinationService.java:1060) ~[classes/:?] at com.hazelcast.internal.util.executor.CompletableFutureTask.run(CompletableFutureTask.java:64) [hazelcast-4.2.jar:4.2] at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217) [hazelcast-4.2.jar:4.2] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:834) [?:?] at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) [hazelcast-4.2.jar:4.2] at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102) [hazelcast-4.2.jar:4.2] 2021-05-23 23:01:51,348 [DEBUG] [Thread-40] [c.h.j.Job]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] Sending CANCEL_FORCEFUL request for job 063b-1c81-3442-0001 (name ??) 2021-05-23 23:01:51,350 [DEBUG] [hz.vigilant_wright.cached.thread-4] [c.h.j.i.JobCoordinationService]: [127.0.0.1]:5701 [jet] [4.5.1-SNAPSHOT] job 'faultyJob', execution 063b-1c81-3443-0001 is completed BuildInfo right after when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem[0: mode=member](com.hazelcast.jet.core.SuspendExecutionOnFailureTest): BuildInfo{version='4.2', build='20210324', buildNumber=20210324, revision=405cfd1, enterprise=false, serializationVersion=1, jet=JetBuildInfo{version='4.5.1-SNAPSHOT', build='20210523', revision='48d9e46'}} Hiccups measured while running test 'when_jobSuspendedDueToFailure_then_suspensionCauseDescribeProblem[0: mode=member](com.hazelcast.jet.core.SuspendExecutionOnFailureTest):' 23:01:50, accumulated pauses: 438 ms, max pause: 149 ms, pauses over 1000 ms: 0 ```
test
com hazelcast jet core suspendexecutiononfailuretest when jobsuspendedduetofailure then suspensioncausedescribeproblem maintenance commit failed on zulu jdk it failed with mode stacktrace java lang illegalstateexception job not suspended at com hazelcast jet impl jobcoordinationservice lambda getjobsuspensioncause jobcoordinationservice java at com hazelcast function functionex apply functionex java at com hazelcast jet impl jobcoordinationservice lambda getjobsuspensioncause jobcoordinationservice java at com hazelcast jet impl jobcoordinationservice lambda callwithjob jobcoordinationservice java at com hazelcast jet impl jobcoordinationservice lambda submittocoordinatorthread jobcoordinationservice java at com hazelcast internal util executor completablefuturetask run completablefuturetask java at com hazelcast internal util executor cachedexecutorservicedelegate worker run cachedexecutorservicedelegate java at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java base java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java at submitted from at com hazelcast internal util exceptionutil cloneexceptionwithfixedasyncstacktrace exceptionutil java at com hazelcast spi impl operationservice impl invocationfuture returnorthrowwithgetconventions invocationfuture java at com hazelcast spi impl operationservice impl invocationfuture resolveandthrowifexception invocationfuture java at com hazelcast spi impl abstractinvocationfuture get abstractinvocationfuture java at com hazelcast jet impl jobproxy getsuspensioncause jobproxy java at com hazelcast jet core suspendexecutiononfailuretest when jobsuspendedduetofailure then suspensioncausedescribeproblem suspendexecutiononfailuretest java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at org junit internal runners statements invokemethod evaluate invokemethod java at com hazelcast test failontimeoutstatement callablestatement call failontimeoutstatement java at com hazelcast test failontimeoutstatement callablestatement call failontimeoutstatement java at java base java util concurrent futuretask run futuretask java at java base java lang thread run thread java standard output starting job based on submit request didn t find any snapshot to restore for job faultyjob execution start executing job faultyjob execution execution graph in dot format digraph dag faulty hint you can use graphviz or to visualize the printed graph building execution plan for job faultyjob execution built execution plans for job faultyjob execution initializing execution plan for job execution from initializing execution plan for job execution from execution plan for jobid jobname faultyjob executionid initialized execution plan for jobid jobname faultyjob executionid initialized init of job faultyjob execution was successful executing job faultyjob execution start execution of job faultyjob execution from coordinator start execution of job faultyjob execution from coordinator exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners blockjun at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java execution of job faultyjob execution completed with failure java util concurrent completionexception com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error at java util concurrent completablefuture encodethrowable completablefuture java at java util concurrent completablefuture completethrowable completablefuture java at java util concurrent completablefuture uniapply tryfire completablefuture java at java util concurrent completablefuture postcomplete completablefuture java at java util concurrent completablefuture completeexceptionally completablefuture java at com hazelcast jet impl util noncompletablefuture internalcompleteexceptionally noncompletablefuture java at com hazelcast jet impl execution taskletexecutionservice executiontracker taskletdone taskletexecutionservice java at com hazelcast jet impl execution taskletexecutionservice cooperativeworker dismisstasklet taskletexecutionservice java at com hazelcast jet impl execution taskletexecutionservice cooperativeworker runtasklet taskletexecutionservice java at java util concurrent copyonwritearraylist foreach copyonwritearraylist java at com hazelcast jet impl execution taskletexecutionservice cooperativeworker run taskletexecutionservice java at java lang thread run thread java caused by com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet impl execution taskletexecutionservice blockingworker run taskletexecutionservice java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java more caused by java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java more execution of job faultyjob execution completed with failure java util concurrent completionexception com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error at java util concurrent completablefuture encodethrowable completablefuture java at java util concurrent completablefuture uniapplynow completablefuture java at java util concurrent completablefuture uniapplystage completablefuture java at java util concurrent completablefuture thenapply completablefuture java at com hazelcast jet impl execution executioncontext beginexecution executioncontext java at com hazelcast jet impl jobexecutionservice beginexecution jobexecutionservice java at com hazelcast jet impl operation startexecutionoperation dorun startexecutionoperation java at com hazelcast jet impl operation asyncoperation run asyncoperation java at com hazelcast spi impl operationservice operation call operation java at com hazelcast spi impl operationservice impl operationrunnerimpl call operationrunnerimpl java at com hazelcast spi impl operationservice impl operationrunnerimpl run operationrunnerimpl java at com hazelcast spi impl operationservice impl operationrunnerimpl run operationrunnerimpl java at com hazelcast spi impl operationexecutor impl operationthread process operationthread java at com hazelcast spi impl operationexecutor impl operationthread process operationthread java at com hazelcast spi impl operationexecutor impl operationthread executerun operationthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java caused by com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error at com hazelcast jet impl execution taskletexecutionservice blockingworker run taskletexecutionservice java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java caused by java lang assertionerror mock error at com hazelcast jet core suspendexecutiononfailuretest suspendexecutiononfailuretest java at jdk internal reflect nativeconstructoraccessorimpl native method at jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at java lang class newinstance class java at com hazelcast test abstractparameterizedhazelcastclassrunner createtestusingfieldinjection abstractparameterizedhazelcastclassrunner java at com hazelcast test abstractparameterizedhazelcastclassrunner createtest abstractparameterizedhazelcastclassrunner java at org junit runners createtest java at org junit runners runreflectivecall java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners methodblock java at com hazelcast test abstracthazelcastclassrunner methodblock abstracthazelcastclassrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java execution of job faultyjob execution has failures com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error sending completeexecutionoperation for job faultyjob execution completing execution from caller error com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error completed execution of job faultyjob execution completing execution from caller error com hazelcast jet jetexception exception in processortasklet faultyjob faulty java lang assertionerror mock error completed execution of job faultyjob execution null java lang illegalstateexception job not suspended at com hazelcast jet impl jobcoordinationservice lambda getjobsuspensioncause jobcoordinationservice java at com hazelcast function functionex apply functionex java at com hazelcast jet impl jobcoordinationservice lambda getjobsuspensioncause jobcoordinationservice java at com hazelcast jet impl jobcoordinationservice lambda callwithjob jobcoordinationservice java at com hazelcast jet impl jobcoordinationservice lambda submittocoordinatorthread jobcoordinationservice java at com hazelcast internal util executor completablefuturetask run completablefuturetask java at com hazelcast internal util executor cachedexecutorservicedelegate worker run cachedexecutorservicedelegate java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java sending cancel forceful request for job name job faultyjob execution is completed buildinfo right after when jobsuspendedduetofailure then suspensioncausedescribeproblem com hazelcast jet core suspendexecutiononfailuretest buildinfo version build buildnumber revision enterprise false serializationversion jet jetbuildinfo version snapshot build revision hiccups measured while running test when jobsuspendedduetofailure then suspensioncausedescribeproblem com hazelcast jet core suspendexecutiononfailuretest accumulated pauses ms max pause ms pauses over ms
1
341,303
30,578,439,525
IssuesEvent
2023-07-21 07:48:34
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
opened
Fix devicearray.test_jax_devicearray_var
JAX Frontend Sub Task Failing Test
| | | |---|---| |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-failure-red></a>
1.0
Fix devicearray.test_jax_devicearray_var - | | | |---|---| |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5619657085"><img src=https://img.shields.io/badge/-failure-red></a>
test
fix devicearray test jax devicearray var numpy a href src jax a href src tensorflow a href src torch a href src paddle a href src
1
85,194
7,963,605,451
IssuesEvent
2018-07-13 18:12:21
Microsoft/AzureStorageExplorer
https://api.github.com/repos/Microsoft/AzureStorageExplorer
closed
Keep loading when expanding one attached local emulator
:gear: emulator :white_check_mark: mitigated testing
**Storage Explorer Version**: 1.3.0 **Platform/OS Version**: Windows 10/MacOS High Sierra/ Linux Ubuntu 16.04 **Architecture**: ia32/x64 **Build Number**: 20180711.4 **Commit**: 47039639 **Regression From**: Not a regression #### Steps to Reproduce: #### 1. Go to Subscription -> Storage Accounts. 2. Make the Azure Storage Emulator has been installed. 3. Open the 'Connect' dialog and select 'Attach to a local emulator' -> Input a display name then click 'Connect'. 4. Try to drill down the attached local emulator -> Blob Containers. #### Expected Experience: #### The Blob Containers node can be expanded successfully. #### Actual Experience: #### Keep loading when expand the Blob Containers node. ![loading](https://user-images.githubusercontent.com/34729022/42627174-c5216cfe-85bb-11e8-9d14-5edf4f96f983.png)
1.0
Keep loading when expanding one attached local emulator - **Storage Explorer Version**: 1.3.0 **Platform/OS Version**: Windows 10/MacOS High Sierra/ Linux Ubuntu 16.04 **Architecture**: ia32/x64 **Build Number**: 20180711.4 **Commit**: 47039639 **Regression From**: Not a regression #### Steps to Reproduce: #### 1. Go to Subscription -> Storage Accounts. 2. Make the Azure Storage Emulator has been installed. 3. Open the 'Connect' dialog and select 'Attach to a local emulator' -> Input a display name then click 'Connect'. 4. Try to drill down the attached local emulator -> Blob Containers. #### Expected Experience: #### The Blob Containers node can be expanded successfully. #### Actual Experience: #### Keep loading when expand the Blob Containers node. ![loading](https://user-images.githubusercontent.com/34729022/42627174-c5216cfe-85bb-11e8-9d14-5edf4f96f983.png)
test
keep loading when expanding one attached local emulator storage explorer version platform os version windows macos high sierra linux ubuntu architecture build number commit regression from not a regression steps to reproduce go to subscription storage accounts make the azure storage emulator has been installed open the connect dialog and select attach to a local emulator input a display name then click connect try to drill down the attached local emulator blob containers expected experience the blob containers node can be expanded successfully actual experience keep loading when expand the blob containers node
1
136,173
19,718,797,982
IssuesEvent
2022-01-13 13:40:50
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
Modal web component: Announcement and documentation update
vsp-design-system-team
## Description Dependent on #35255 and #35260 Announce the component at least in the #vfs-frontend channel. Add component to Storybook and update component documentation in design.va.gov. ## Details Sample announcement: >:wave: The Design System has just published a new version of component-library which includes <va-additional-info>, as well as made it available in vets-website. The migration script is also capable of automatically migrating your directories to this new component. Why does this matter to me The new additional info Web Component has a number of enhancements/fixes: Keyboard control with space and "Enter" key Design fix for the blue border when expanded Improved colors for contrast & consistency The web component is already loaded into the site, so removing your old AdditionalInfo imports will reduce application bundle size and improve performance. How do I migrate First, make sure your branch is using the latest master, and run yarn install. We have a script that you can use to assist with this process. You pass it two arguments: --directory - the directory you wish to migrate --component - the name of the React component to find and transform into a web component For example, to run this migration in the platform directory, you would run: yarn migrate-component --dir src/platform --component AdditionalInfo >--- >*NOTE:* One change with <va-additional-info> is that it no longer exposes onClick for an external analytics event. There is still an internal component-library-analytics event that gets fired which includes the action (expand/collapse) and the trigger text. Just be aware of this so that you don't lose any tracking data that may be used in your dashboards. Reach out to us if you have any questions/concerns about this. ## Acceptance Criteria - [ ] Craft announcement and post in #vfs-frontend - [ ] Add component to Storybook - [ ] Update design.va.gov
1.0
Modal web component: Announcement and documentation update - ## Description Dependent on #35255 and #35260 Announce the component at least in the #vfs-frontend channel. Add component to Storybook and update component documentation in design.va.gov. ## Details Sample announcement: >:wave: The Design System has just published a new version of component-library which includes <va-additional-info>, as well as made it available in vets-website. The migration script is also capable of automatically migrating your directories to this new component. Why does this matter to me The new additional info Web Component has a number of enhancements/fixes: Keyboard control with space and "Enter" key Design fix for the blue border when expanded Improved colors for contrast & consistency The web component is already loaded into the site, so removing your old AdditionalInfo imports will reduce application bundle size and improve performance. How do I migrate First, make sure your branch is using the latest master, and run yarn install. We have a script that you can use to assist with this process. You pass it two arguments: --directory - the directory you wish to migrate --component - the name of the React component to find and transform into a web component For example, to run this migration in the platform directory, you would run: yarn migrate-component --dir src/platform --component AdditionalInfo >--- >*NOTE:* One change with <va-additional-info> is that it no longer exposes onClick for an external analytics event. There is still an internal component-library-analytics event that gets fired which includes the action (expand/collapse) and the trigger text. Just be aware of this so that you don't lose any tracking data that may be used in your dashboards. Reach out to us if you have any questions/concerns about this. ## Acceptance Criteria - [ ] Craft announcement and post in #vfs-frontend - [ ] Add component to Storybook - [ ] Update design.va.gov
non_test
modal web component announcement and documentation update description dependent on and announce the component at least in the vfs frontend channel add component to storybook and update component documentation in design va gov details sample announcement wave the design system has just published a new version of component library which includes as well as made it available in vets website the migration script is also capable of automatically migrating your directories to this new component why does this matter to me the new additional info web component has a number of enhancements fixes keyboard control with space and enter key design fix for the blue border when expanded improved colors for contrast consistency the web component is already loaded into the site so removing your old additionalinfo imports will reduce application bundle size and improve performance how do i migrate first make sure your branch is using the latest master and run yarn install we have a script that you can use to assist with this process you pass it two arguments directory the directory you wish to migrate component the name of the react component to find and transform into a web component for example to run this migration in the platform directory you would run yarn migrate component dir src platform component additionalinfo note one change with is that it no longer exposes onclick for an external analytics event there is still an internal component library analytics event that gets fired which includes the action expand collapse and the trigger text just be aware of this so that you don t lose any tracking data that may be used in your dashboards reach out to us if you have any questions concerns about this acceptance criteria craft announcement and post in vfs frontend add component to storybook update design va gov
0
250,045
21,259,214,249
IssuesEvent
2022-04-13 00:58:07
RamiMustafa/WAF_Sec_Test
https://api.github.com/repos/RamiMustafa/WAF_Sec_Test
opened
Review and consider elevated security capabilities for Azure workloads
WARP-Import WAF_Sec_Test Security Governance Standards
<a href="https://azure.microsoft.com/solutions/confidential-compute/">Review and consider elevated security capabilities for Azure workloads</a> <p><b>Why Consider This?</b></p> Dedicated HSMs and Confidential Computing can enhance the security of an Azure workload, but can add operational complexity. <p><b>Context</b></p> <p><span>These types of measures have the potential to enhance security and meet regulatory requirements, but can introduce complexity that may negatively impact operations and efficiency.</span></p> <p><b>Suggested Actions</b></p> <p><span>Dedicated Hardware Security Modules and Confidential Computing may address organizational security or regulatory requirements."nbsp; Review these technologies and consider whether they are required to meet specific organizational security or regulatory requirements.</span></p> <p><b>Learn More</b></p> <p><a href="https://azure.microsoft.com/en-us/solutions/confidential-compute/" target="_blank"><span>Elevated security capabilities</span></a><span /></p>
1.0
Review and consider elevated security capabilities for Azure workloads - <a href="https://azure.microsoft.com/solutions/confidential-compute/">Review and consider elevated security capabilities for Azure workloads</a> <p><b>Why Consider This?</b></p> Dedicated HSMs and Confidential Computing can enhance the security of an Azure workload, but can add operational complexity. <p><b>Context</b></p> <p><span>These types of measures have the potential to enhance security and meet regulatory requirements, but can introduce complexity that may negatively impact operations and efficiency.</span></p> <p><b>Suggested Actions</b></p> <p><span>Dedicated Hardware Security Modules and Confidential Computing may address organizational security or regulatory requirements."nbsp; Review these technologies and consider whether they are required to meet specific organizational security or regulatory requirements.</span></p> <p><b>Learn More</b></p> <p><a href="https://azure.microsoft.com/en-us/solutions/confidential-compute/" target="_blank"><span>Elevated security capabilities</span></a><span /></p>
test
review and consider elevated security capabilities for azure workloads why consider this dedicated hsms and confidential computing can enhance the security of an azure workload but can add operational complexity context these types of measures have the potential to enhance security and meet regulatory requirements but can introduce complexity that may negatively impact operations and efficiency suggested actions dedicated hardware security modules and confidential computing may address organizational security or regulatory requirements nbsp review these technologies and consider whether they are required to meet specific organizational security or regulatory requirements learn more elevated security capabilities
1
158,758
12,424,773,656
IssuesEvent
2020-05-24 13:21:41
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
closed
RVD#1214: CWE-120 (buffer), Does not check for buffer overflows when copying to destination (CWE-1... @ comm/package_serializer.h:59
CWE-120 ROS-Industrial bug components software flawfinder flawfinder_level_2 package: Universal_Robots_ROS_Driver robot component: ROS static analysis testing vendor: Universal Robots
```yaml { "title": "RVD#1214: CWE-120 (buffer), Does not check for buffer overflows when copying to destination (CWE-1... @ comm/package_serializer.h:59", "system": "/opt/ros_ur_ws/src/Universal_Robots_ROS_Driver/ur_robot_driver/include/ur_robot_driver/comm/package_serializer.h:59:10", "cve": "None", "mitigation": { "date-mitigation": "", "pull-request": "", "description": "Make sure destination can always hold the source data" }, "description": "Does not check for buffer overflows when copying to destination (CWE-120). Make sure destination can always hold the source data. . Happening @ ...comm/package_serializer.h:59", "id": 1214, "links": [ "https://github.com/aliasrobotics/RVD/issues/1214" ], "severity": { "rvss-vector": "", "cvss-vector": "", "severity-description": "", "rvss-score": 0, "cvss-score": 0 }, "vendor": null, "exploitation": { "exploitation-image": "", "exploitation-vector": "", "description": "" }, "keywords": [ "flawfinder", "flawfinder_level_2", "static analysis", "testing", "triage", "CWE-120", "bug" ], "type": "bug", "cwe": [ "CWE-120" ], "flaw": { "specificity": "subject-specific", "subsystem": "N/A", "reproducibility": "always", "phase": "testing", "languages": "None", "package": "N/A", "reported-by": "Alias Robotics", "application": "N/A", "architectural-location": "application-specific", "detected-by-method": "testing static", "date-detected": "2020-01-21 (12:05)", "issue": "https://github.com/aliasrobotics/RVD/issues/1214", "reproduction-image": "", "trace": "(context) std::memcpy(buffer, &tmp, size);", "reproduction": "See artifacts below (if available)", "detected-by": "Alias Robotics", "date-reported": "2020-01-21 (12:05)", "reported-by-relationship": "automatic" } } ```
1.0
RVD#1214: CWE-120 (buffer), Does not check for buffer overflows when copying to destination (CWE-1... @ comm/package_serializer.h:59 - ```yaml { "title": "RVD#1214: CWE-120 (buffer), Does not check for buffer overflows when copying to destination (CWE-1... @ comm/package_serializer.h:59", "system": "/opt/ros_ur_ws/src/Universal_Robots_ROS_Driver/ur_robot_driver/include/ur_robot_driver/comm/package_serializer.h:59:10", "cve": "None", "mitigation": { "date-mitigation": "", "pull-request": "", "description": "Make sure destination can always hold the source data" }, "description": "Does not check for buffer overflows when copying to destination (CWE-120). Make sure destination can always hold the source data. . Happening @ ...comm/package_serializer.h:59", "id": 1214, "links": [ "https://github.com/aliasrobotics/RVD/issues/1214" ], "severity": { "rvss-vector": "", "cvss-vector": "", "severity-description": "", "rvss-score": 0, "cvss-score": 0 }, "vendor": null, "exploitation": { "exploitation-image": "", "exploitation-vector": "", "description": "" }, "keywords": [ "flawfinder", "flawfinder_level_2", "static analysis", "testing", "triage", "CWE-120", "bug" ], "type": "bug", "cwe": [ "CWE-120" ], "flaw": { "specificity": "subject-specific", "subsystem": "N/A", "reproducibility": "always", "phase": "testing", "languages": "None", "package": "N/A", "reported-by": "Alias Robotics", "application": "N/A", "architectural-location": "application-specific", "detected-by-method": "testing static", "date-detected": "2020-01-21 (12:05)", "issue": "https://github.com/aliasrobotics/RVD/issues/1214", "reproduction-image": "", "trace": "(context) std::memcpy(buffer, &tmp, size);", "reproduction": "See artifacts below (if available)", "detected-by": "Alias Robotics", "date-reported": "2020-01-21 (12:05)", "reported-by-relationship": "automatic" } } ```
test
rvd cwe buffer does not check for buffer overflows when copying to destination cwe comm package serializer h yaml title rvd cwe buffer does not check for buffer overflows when copying to destination cwe comm package serializer h system opt ros ur ws src universal robots ros driver ur robot driver include ur robot driver comm package serializer h cve none mitigation date mitigation pull request description make sure destination can always hold the source data description does not check for buffer overflows when copying to destination cwe make sure destination can always hold the source data happening comm package serializer h id links severity rvss vector cvss vector severity description rvss score cvss score vendor null exploitation exploitation image exploitation vector description keywords flawfinder flawfinder level static analysis testing triage cwe bug type bug cwe cwe flaw specificity subject specific subsystem n a reproducibility always phase testing languages none package n a reported by alias robotics application n a architectural location application specific detected by method testing static date detected issue reproduction image trace context std memcpy buffer tmp size reproduction see artifacts below if available detected by alias robotics date reported reported by relationship automatic
1
89,875
10,618,123,137
IssuesEvent
2019-10-13 01:12:57
cornellius-gp/gpytorch
https://api.github.com/repos/cornellius-gp/gpytorch
closed
[Docs] AbstractVariationalGP explanation/docs
DKL documentation
Is there an explanation how to set/extend the parameters of AbstractVariationalGP class for my specific purpose? I have no idea what grid_bounds are and how to choose all parameter properly. Thank you in advance!
1.0
[Docs] AbstractVariationalGP explanation/docs - Is there an explanation how to set/extend the parameters of AbstractVariationalGP class for my specific purpose? I have no idea what grid_bounds are and how to choose all parameter properly. Thank you in advance!
non_test
abstractvariationalgp explanation docs is there an explanation how to set extend the parameters of abstractvariationalgp class for my specific purpose i have no idea what grid bounds are and how to choose all parameter properly thank you in advance
0
109,169
9,370,497,704
IssuesEvent
2019-04-03 13:35:54
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: kv95/enc=false/nodes=3/batch=16 failed
C-test-failure O-roachtest O-robot
SHA: https://github.com/cockroachdb/cockroach/commits/c6df752eefe4609b8a5bbada0955f79a2cfb790e Parameters: To repro, try: ``` # Don't forget to check out a clean suitable branch and experiment with the # stress invocation until the desired results present themselves. For example, # using stress instead of stressrace and passing the '-p' stressflag which # controls concurrency. ./scripts/gceworker.sh start && ./scripts/gceworker.sh mosh cd ~/go/src/github.com/cockroachdb/cockroach && \ stdbuf -oL -eL \ make stressrace TESTS=kv95/enc=false/nodes=3/batch=16 PKG=roachtest TESTTIMEOUT=5m STRESSFLAGS='-maxtime 20m -timeout 10m' 2>&1 | tee /tmp/stress.log ``` Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=1217767&tab=buildLog ``` The test failed on master: cluster.go:1255,kv.go:45,kv.go:137,test.go:1228: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod start --encrypt=false teamcity-1217767-kv95-enc-false-nodes-3-batch-16:1-3 returned: stderr: stdout: . * - Any user, connecting as root, can read or write any data in your cluster. * - There is no network encryption nor authentication, and thus no confidentiality. * * Check out how to secure your cluster: https://www.cockroachlabs.com/docs/v19.1/secure-a-cluster.html * * * ERROR: failed to start server: invalid --advertise-addr: lookup ip-10-12-42-174 on 10.12.0.2:53: no such host * Failed running "start" E190403 06:26:42.930456 1 cli/error.go:229 exit status 1 Error: exit status 1 Failed running "start" github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install.Cockroach.Start.func7 /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install/cockroach.go:397 github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install.(*SyncedCluster).Parallel.func1.1 /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install/cluster_synced.go:1417 runtime.goexit /usr/local/go/src/runtime/asm_amd64.s:1333: I190403 06:26:42.942332 1 cluster_synced.go:1499 command failed : exit status 1 ```
2.0
roachtest: kv95/enc=false/nodes=3/batch=16 failed - SHA: https://github.com/cockroachdb/cockroach/commits/c6df752eefe4609b8a5bbada0955f79a2cfb790e Parameters: To repro, try: ``` # Don't forget to check out a clean suitable branch and experiment with the # stress invocation until the desired results present themselves. For example, # using stress instead of stressrace and passing the '-p' stressflag which # controls concurrency. ./scripts/gceworker.sh start && ./scripts/gceworker.sh mosh cd ~/go/src/github.com/cockroachdb/cockroach && \ stdbuf -oL -eL \ make stressrace TESTS=kv95/enc=false/nodes=3/batch=16 PKG=roachtest TESTTIMEOUT=5m STRESSFLAGS='-maxtime 20m -timeout 10m' 2>&1 | tee /tmp/stress.log ``` Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=1217767&tab=buildLog ``` The test failed on master: cluster.go:1255,kv.go:45,kv.go:137,test.go:1228: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod start --encrypt=false teamcity-1217767-kv95-enc-false-nodes-3-batch-16:1-3 returned: stderr: stdout: . * - Any user, connecting as root, can read or write any data in your cluster. * - There is no network encryption nor authentication, and thus no confidentiality. * * Check out how to secure your cluster: https://www.cockroachlabs.com/docs/v19.1/secure-a-cluster.html * * * ERROR: failed to start server: invalid --advertise-addr: lookup ip-10-12-42-174 on 10.12.0.2:53: no such host * Failed running "start" E190403 06:26:42.930456 1 cli/error.go:229 exit status 1 Error: exit status 1 Failed running "start" github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install.Cockroach.Start.func7 /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install/cockroach.go:397 github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install.(*SyncedCluster).Parallel.func1.1 /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/install/cluster_synced.go:1417 runtime.goexit /usr/local/go/src/runtime/asm_amd64.s:1333: I190403 06:26:42.942332 1 cluster_synced.go:1499 command failed : exit status 1 ```
test
roachtest enc false nodes batch failed sha parameters to repro try don t forget to check out a clean suitable branch and experiment with the stress invocation until the desired results present themselves for example using stress instead of stressrace and passing the p stressflag which controls concurrency scripts gceworker sh start scripts gceworker sh mosh cd go src github com cockroachdb cockroach stdbuf ol el make stressrace tests enc false nodes batch pkg roachtest testtimeout stressflags maxtime timeout tee tmp stress log failed test the test failed on master cluster go kv go kv go test go home agent work go src github com cockroachdb cockroach bin roachprod start encrypt false teamcity enc false nodes batch returned stderr stdout any user connecting as root can read or write any data in your cluster there is no network encryption nor authentication and thus no confidentiality check out how to secure your cluster error failed to start server invalid advertise addr lookup ip on no such host failed running start cli error go exit status error exit status failed running start github com cockroachdb cockroach pkg cmd roachprod install cockroach start home agent work go src github com cockroachdb cockroach pkg cmd roachprod install cockroach go github com cockroachdb cockroach pkg cmd roachprod install syncedcluster parallel home agent work go src github com cockroachdb cockroach pkg cmd roachprod install cluster synced go runtime goexit usr local go src runtime asm s cluster synced go command failed exit status
1
183,049
14,177,107,041
IssuesEvent
2020-11-13 01:16:02
nicorithner/Sweater_weather
https://api.github.com/repos/nicorithner/Sweater_weather
opened
Store city/state coordinates query to the database.
Database Model REFACTOR TEST enhancement
Create table 'locations' city --> string state --> string lat --> numeric lng --> numeric When a query is made we check first whether the city/state combination exist in the database. If it does we use those coordinates. If it doesn't we get them making the api call to mapquest and then we create a new location object and save it to the database for future use.
1.0
Store city/state coordinates query to the database. - Create table 'locations' city --> string state --> string lat --> numeric lng --> numeric When a query is made we check first whether the city/state combination exist in the database. If it does we use those coordinates. If it doesn't we get them making the api call to mapquest and then we create a new location object and save it to the database for future use.
test
store city state coordinates query to the database create table locations city string state string lat numeric lng numeric when a query is made we check first whether the city state combination exist in the database if it does we use those coordinates if it doesn t we get them making the api call to mapquest and then we create a new location object and save it to the database for future use
1
332,141
29,186,294,327
IssuesEvent
2023-05-19 15:42:21
vaadin/flow
https://api.github.com/repos/vaadin/flow
opened
Exception raised during AppViewIT test execution
internal improvement testing
When executing the `AppViewIT` in `test-spring-security-flow-methodsecurity` module, an error is logged in the console, although it does not compromise the test execution ``` [http-nio-8888-exec-12] ERROR com.vaadin.flow.server.DefaultErrorHandler - java.lang.RuntimeException: java.lang.NullPointerException: Cannot invoke "com.vaadin.flow.shared.Registration.remove()" because "this.registration" is null at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.invokeMethod(PublishedServerEventHandlerRpcHandler.java:229) at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.invokeMethod(PublishedServerEventHandlerRpcHandler.java:199) at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.invokeMethod(PublishedServerEventHandlerRpcHandler.java:149) at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.handleNode(PublishedServerEventHandlerRpcHandler.java:132) ...... Caused by: java.lang.NullPointerException: Cannot invoke "com.vaadin.flow.shared.Registration.remove()" because "this.registration" is null at com.vaadin.flow.spring.flowsecurity.views.PrivateView.onDetach(PrivateView.java:99) at com.vaadin.flow.component.ComponentUtil.onComponentDetach(ComponentUtil.java:264) ``` The original cause is however a `ConcurrentModificationException` raised during `PrivateView.onAttach()`, when adding a listener to a `ComponentEventBus`. ``` [http-nio-8888-exec-6] ERROR com.vaadin.base.devserver.IdeIntegration - IdeIntegration should never be created in production mode [http-nio-8888-exec-12] ERROR com.vaadin.flow.router.InternalServerError - There was an exception while trying to navigate to 'private' java.util.ConcurrentModificationException at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1221) at com.vaadin.flow.component.ComponentEventBus.addListenerInternal(ComponentEventBus.java:158) at com.vaadin.flow.component.ComponentEventBus.addListener(ComponentEventBus.java:104) at com.vaadin.flow.spring.flowsecurity.views.Broadcaster.addMessageListener(Broadcaster.java:43) at com.vaadin.flow.spring.flowsecurity.views.PrivateView.onAttach(PrivateView.java:90) ``` Adding a synchronization to the `Broadcaster.addMessageListener` method should be enough to fix the issue.
1.0
Exception raised during AppViewIT test execution - When executing the `AppViewIT` in `test-spring-security-flow-methodsecurity` module, an error is logged in the console, although it does not compromise the test execution ``` [http-nio-8888-exec-12] ERROR com.vaadin.flow.server.DefaultErrorHandler - java.lang.RuntimeException: java.lang.NullPointerException: Cannot invoke "com.vaadin.flow.shared.Registration.remove()" because "this.registration" is null at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.invokeMethod(PublishedServerEventHandlerRpcHandler.java:229) at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.invokeMethod(PublishedServerEventHandlerRpcHandler.java:199) at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.invokeMethod(PublishedServerEventHandlerRpcHandler.java:149) at com.vaadin.flow.server.communication.rpc.PublishedServerEventHandlerRpcHandler.handleNode(PublishedServerEventHandlerRpcHandler.java:132) ...... Caused by: java.lang.NullPointerException: Cannot invoke "com.vaadin.flow.shared.Registration.remove()" because "this.registration" is null at com.vaadin.flow.spring.flowsecurity.views.PrivateView.onDetach(PrivateView.java:99) at com.vaadin.flow.component.ComponentUtil.onComponentDetach(ComponentUtil.java:264) ``` The original cause is however a `ConcurrentModificationException` raised during `PrivateView.onAttach()`, when adding a listener to a `ComponentEventBus`. ``` [http-nio-8888-exec-6] ERROR com.vaadin.base.devserver.IdeIntegration - IdeIntegration should never be created in production mode [http-nio-8888-exec-12] ERROR com.vaadin.flow.router.InternalServerError - There was an exception while trying to navigate to 'private' java.util.ConcurrentModificationException at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1221) at com.vaadin.flow.component.ComponentEventBus.addListenerInternal(ComponentEventBus.java:158) at com.vaadin.flow.component.ComponentEventBus.addListener(ComponentEventBus.java:104) at com.vaadin.flow.spring.flowsecurity.views.Broadcaster.addMessageListener(Broadcaster.java:43) at com.vaadin.flow.spring.flowsecurity.views.PrivateView.onAttach(PrivateView.java:90) ``` Adding a synchronization to the `Broadcaster.addMessageListener` method should be enough to fix the issue.
test
exception raised during appviewit test execution when executing the appviewit in test spring security flow methodsecurity module an error is logged in the console although it does not compromise the test execution error com vaadin flow server defaulterrorhandler java lang runtimeexception java lang nullpointerexception cannot invoke com vaadin flow shared registration remove because this registration is null at com vaadin flow server communication rpc publishedservereventhandlerrpchandler invokemethod publishedservereventhandlerrpchandler java at com vaadin flow server communication rpc publishedservereventhandlerrpchandler invokemethod publishedservereventhandlerrpchandler java at com vaadin flow server communication rpc publishedservereventhandlerrpchandler invokemethod publishedservereventhandlerrpchandler java at com vaadin flow server communication rpc publishedservereventhandlerrpchandler handlenode publishedservereventhandlerrpchandler java caused by java lang nullpointerexception cannot invoke com vaadin flow shared registration remove because this registration is null at com vaadin flow spring flowsecurity views privateview ondetach privateview java at com vaadin flow component componentutil oncomponentdetach componentutil java the original cause is however a concurrentmodificationexception raised during privateview onattach when adding a listener to a componenteventbus error com vaadin base devserver ideintegration ideintegration should never be created in production mode error com vaadin flow router internalservererror there was an exception while trying to navigate to private java util concurrentmodificationexception at java base java util hashmap computeifabsent hashmap java at com vaadin flow component componenteventbus addlistenerinternal componenteventbus java at com vaadin flow component componenteventbus addlistener componenteventbus java at com vaadin flow spring flowsecurity views broadcaster addmessagelistener broadcaster java at com vaadin flow spring flowsecurity views privateview onattach privateview java adding a synchronization to the broadcaster addmessagelistener method should be enough to fix the issue
1
84,762
10,560,478,468
IssuesEvent
2019-10-04 13:58:39
iiCe89/Lynk_Social
https://api.github.com/repos/iiCe89/Lynk_Social
opened
Design new site in Figma
Design
Create Figma board which allows user's to view/work on so everybody knows what it looks like.
1.0
Design new site in Figma - Create Figma board which allows user's to view/work on so everybody knows what it looks like.
non_test
design new site in figma create figma board which allows user s to view work on so everybody knows what it looks like
0
8,089
6,399,969,258
IssuesEvent
2017-08-05 05:45:20
Microsoft/visualfsharp
https://api.github.com/repos/Microsoft/visualfsharp
closed
Optimizer: why isn't the tuple removed in this case...
2 - Ready Area-Compiler bug Tenet-Performance Urgency-Soon
As noted in #2923, a tuple that is passed in as an argument is not always used when accessed by name in the function. Find out why this is the case, and fix (i.e. remove) it.
True
Optimizer: why isn't the tuple removed in this case... - As noted in #2923, a tuple that is passed in as an argument is not always used when accessed by name in the function. Find out why this is the case, and fix (i.e. remove) it.
non_test
optimizer why isn t the tuple removed in this case as noted in a tuple that is passed in as an argument is not always used when accessed by name in the function find out why this is the case and fix i e remove it
0
53,607
6,337,359,943
IssuesEvent
2017-07-26 23:41:01
rust-lang/rust
https://api.github.com/repos/rust-lang/rust
closed
ICE: Encountered early bound region when generalizing: ReEarlyBound(TypeSpace, 0, 'a)
C-bug E-easy E-needstest I-ICE
Code: ``` rust #![feature(associated_consts)] use std::marker::PhantomData; trait Tr<'a> { const C: PhantomData<&'a u8> = PhantomData::<&'a u8>; } fn main() {} ``` ICEs on nightly (1.12), can't be reproduced on stable/beta due to `#![feature(associated_consts)]` Backtrace: ``` #0 0x000000006e55e767 in rust_panic () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #1 0x000000006e544e3c in std::panicking::rust_panic_with_hook::h9a3925e37821d434 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #2 0x0000000002a05b8c in std::panicking::begin_panic::hdf32e6f0d48da313 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #3 0x0000000002a059c8 in rustc::session::opt_span_bug_fmt::_$u7b$$u7b$closure$u7d$$u7d$::hfbd05ef01f930389 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #4 0x0000000002a05798 in rustc::session::opt_span_bug_fmt::he49e515088fa8437 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #5 0x0000000002a05555 in rustc::session::span_bug_fmt::h40548a94744de842 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #6 0x0000000002b1d29e in _$LT$rustc..infer..combine..Generalizer$LT$$u27$cx$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..ty..fold..TypeFolder$LT$$u27$gcx$C$$u20$$u27$tcx$GT$$GT$::fold_ty::hf2fab54cf2614ed1 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #7 0x0000000002b15a36 in rustc::infer::combine::CombineFields::instantiate::hffd1f98ca5ab6d3b () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #8 0x0000000002af0be1 in _$LT$rustc..infer..equate..Equate$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..ty..relate..TypeRelation$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$GT$::tys::he042e4faca40a521 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #9 0x0000000002af4645 in rustc::ty::relate::relate_type_params::_$u7b$$u7b$closure$u7d$$u7d$::h27ac1d6284ceaedc () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #10 0x0000000002af435a in _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::hd947b801a25609d2 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #11 0x0000000002af36bf in rustc::ty::relate::relate_substs::ha20cc22e09ccff78 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #12 0x0000000002af1e2b in rustc::ty::relate::relate_item_substs::hf669fec513c5c374 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #13 0x0000000002b1ebfe in rustc::ty::relate::super_relate_tys::h698b991f588f8d3b () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #14 0x0000000002af0d89 in _$LT$rustc..infer..equate..Equate$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..ty..relate..TypeRelation$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$GT$::tys::he042e4faca40a521 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #15 0x0000000002af4645 in rustc::ty::relate::relate_type_params::_$u7b$$u7b$closure$u7d$$u7d$::h27ac1d6284ceaedc () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #16 0x0000000002af435a in _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::hd947b801a25609d2 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #17 0x0000000002af36bf in rustc::ty::relate::relate_substs::ha20cc22e09ccff78 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #18 0x0000000002af1e2b in rustc::ty::relate::relate_item_substs::hf669fec513c5c374 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #19 0x0000000002af1c72 in _$LT$rustc..ty..sty..TraitRef$LT$$u27$tcx$GT$$u20$as$u20$rustc..ty..relate..Relate$LT$$u27$tcx$GT$$GT$::relate::h986b72a0959563fb () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #20 0x0000000002af1484 in rustc::infer::InferCtxt::eq_trait_refs::h1a047bc0d7cb9287 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #21 0x0000000002cad67b in rustc::traits::select::SelectionContext::match_impl::hc59fa4b835fb8273 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #22 0x0000000002cacec9 in rustc::traits::select::SelectionContext::assemble_candidates_from_impls::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h477fb8af4d02a8d4 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #23 0x0000000002cace18 in rustc::traits::select::SelectionContext::probe::h9e68b3f3a4f27c3c () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #24 0x0000000002cacbf8 in rustc::ty::trait_def::TraitDef::for_each_relevant_impl::h48255f01a2713db2 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #25 0x0000000002ca7b6e in rustc::traits::select::SelectionContext::assemble_candidates::h5d6c8f4149f33306 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #26 0x0000000002c9b2b4 in rustc::traits::select::SelectionContext::candidate_from_obligation::h57e2e1988c8b0c1d () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #27 0x0000000002ca5efd in rustc::traits::select::SelectionContext::evaluate_stack::h41d9a289217f5274 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #28 0x0000000002ca53e8 in rustc::traits::select::SelectionContext::evaluate_predicate_recursively::hd3a46054b61ed569 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #29 0x0000000002c4e821 in rustc::traits::select::SelectionContext::evaluate_obligation_conservatively::h6ab08bc990db370f () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #30 0x0000000002b1113f in rustc::traits::type_known_to_meet_builtin_bound::haf67b98536009464 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #31 0x0000000002d0c751 in rustc::ty::util::_$LT$impl$u20$rustc..ty..TyS$LT$$u27$tcx$GT$$GT$::impls_bound::h07a139f8ccd4fd61 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #32 0x0000000002b10e4f in rustc::ty::util::_$LT$impl$u20$rustc..ty..TyS$LT$$u27$tcx$GT$$GT$::moves_by_default::h25b140bd780bb824 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #33 0x0000000002b10d96 in rustc::infer::InferCtxt::type_moves_by_default::hfe88106eb6250ac6 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #34 0x0000000002b9f9e5 in rustc::middle::expr_use_visitor::ExprUseVisitor::consume_expr::h4b2d785ca70f00ad () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #35 0x00000000673c8d6b in rustc_passes::consts::CheckCrateVisitor::global_expr::h47f4b325bf42d285 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_passes-f53fb285.dll #36 0x00000000673d2976 in _$LT$rustc_passes..consts..CheckCrateVisitor$LT$$u27$a$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..hir..intravisit..Visitor$LT$$u27$v$GT$$GT$::visit_item::h0528b8b3ad96685d () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_passes-f53fb285.dll #37 0x00000000673d4bff in rustc_passes::consts::check_crate::h17411c6a9c58041d () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_passes-f53fb285.dll #38 0x000000006ac97fdd in rustc_driver::driver::phase_3_run_analysis_passes::_$u7b$$u7b$closure$u7d$$u7d$::he1de538a7584312e () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #39 0x000000006ac95d7e in rustc::ty::context::TyCtxt::create_and_enter::he5466411552b055e () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #40 0x000000006ac5a76c in rustc_driver::driver::compile_input::h2d1b58b831f06a86 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #41 0x000000006ac4695d in rustc_driver::run_compiler::h833483649bdaa9c3 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #42 0x000000006ac438ca in std::panicking::try::call::hd16aacc09eeeaf9e () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #43 0x000000006e58f849 in __rust_maybe_catch_panic () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #44 0x000000006ac443c4 in _$LT$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::hbf614b3f826456b6 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #45 0x000000006e57d4da in std::sys::thread::Thread::new::thread_start::h150ac04d84605902 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #46 0x00007ffce27813d2 in KERNEL32!BaseThreadInitThunk () from /c/Windows/system32/KERNEL32.DLL #47 0x00007ffce39554e4 in ntdll!RtlUserThreadStart () from /c/Windows/SYSTEM32/ntdll.dll #48 0x0000000000000000 in ?? () ```
1.0
ICE: Encountered early bound region when generalizing: ReEarlyBound(TypeSpace, 0, 'a) - Code: ``` rust #![feature(associated_consts)] use std::marker::PhantomData; trait Tr<'a> { const C: PhantomData<&'a u8> = PhantomData::<&'a u8>; } fn main() {} ``` ICEs on nightly (1.12), can't be reproduced on stable/beta due to `#![feature(associated_consts)]` Backtrace: ``` #0 0x000000006e55e767 in rust_panic () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #1 0x000000006e544e3c in std::panicking::rust_panic_with_hook::h9a3925e37821d434 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #2 0x0000000002a05b8c in std::panicking::begin_panic::hdf32e6f0d48da313 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #3 0x0000000002a059c8 in rustc::session::opt_span_bug_fmt::_$u7b$$u7b$closure$u7d$$u7d$::hfbd05ef01f930389 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #4 0x0000000002a05798 in rustc::session::opt_span_bug_fmt::he49e515088fa8437 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #5 0x0000000002a05555 in rustc::session::span_bug_fmt::h40548a94744de842 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #6 0x0000000002b1d29e in _$LT$rustc..infer..combine..Generalizer$LT$$u27$cx$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..ty..fold..TypeFolder$LT$$u27$gcx$C$$u20$$u27$tcx$GT$$GT$::fold_ty::hf2fab54cf2614ed1 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #7 0x0000000002b15a36 in rustc::infer::combine::CombineFields::instantiate::hffd1f98ca5ab6d3b () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #8 0x0000000002af0be1 in _$LT$rustc..infer..equate..Equate$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..ty..relate..TypeRelation$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$GT$::tys::he042e4faca40a521 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #9 0x0000000002af4645 in rustc::ty::relate::relate_type_params::_$u7b$$u7b$closure$u7d$$u7d$::h27ac1d6284ceaedc () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #10 0x0000000002af435a in _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::hd947b801a25609d2 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #11 0x0000000002af36bf in rustc::ty::relate::relate_substs::ha20cc22e09ccff78 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #12 0x0000000002af1e2b in rustc::ty::relate::relate_item_substs::hf669fec513c5c374 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #13 0x0000000002b1ebfe in rustc::ty::relate::super_relate_tys::h698b991f588f8d3b () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #14 0x0000000002af0d89 in _$LT$rustc..infer..equate..Equate$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..ty..relate..TypeRelation$LT$$u27$a$C$$u20$$u27$gcx$C$$u20$$u27$tcx$GT$$GT$::tys::he042e4faca40a521 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #15 0x0000000002af4645 in rustc::ty::relate::relate_type_params::_$u7b$$u7b$closure$u7d$$u7d$::h27ac1d6284ceaedc () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #16 0x0000000002af435a in _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::hd947b801a25609d2 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #17 0x0000000002af36bf in rustc::ty::relate::relate_substs::ha20cc22e09ccff78 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #18 0x0000000002af1e2b in rustc::ty::relate::relate_item_substs::hf669fec513c5c374 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #19 0x0000000002af1c72 in _$LT$rustc..ty..sty..TraitRef$LT$$u27$tcx$GT$$u20$as$u20$rustc..ty..relate..Relate$LT$$u27$tcx$GT$$GT$::relate::h986b72a0959563fb () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #20 0x0000000002af1484 in rustc::infer::InferCtxt::eq_trait_refs::h1a047bc0d7cb9287 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #21 0x0000000002cad67b in rustc::traits::select::SelectionContext::match_impl::hc59fa4b835fb8273 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #22 0x0000000002cacec9 in rustc::traits::select::SelectionContext::assemble_candidates_from_impls::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h477fb8af4d02a8d4 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #23 0x0000000002cace18 in rustc::traits::select::SelectionContext::probe::h9e68b3f3a4f27c3c () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #24 0x0000000002cacbf8 in rustc::ty::trait_def::TraitDef::for_each_relevant_impl::h48255f01a2713db2 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #25 0x0000000002ca7b6e in rustc::traits::select::SelectionContext::assemble_candidates::h5d6c8f4149f33306 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #26 0x0000000002c9b2b4 in rustc::traits::select::SelectionContext::candidate_from_obligation::h57e2e1988c8b0c1d () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #27 0x0000000002ca5efd in rustc::traits::select::SelectionContext::evaluate_stack::h41d9a289217f5274 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #28 0x0000000002ca53e8 in rustc::traits::select::SelectionContext::evaluate_predicate_recursively::hd3a46054b61ed569 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #29 0x0000000002c4e821 in rustc::traits::select::SelectionContext::evaluate_obligation_conservatively::h6ab08bc990db370f () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #30 0x0000000002b1113f in rustc::traits::type_known_to_meet_builtin_bound::haf67b98536009464 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #31 0x0000000002d0c751 in rustc::ty::util::_$LT$impl$u20$rustc..ty..TyS$LT$$u27$tcx$GT$$GT$::impls_bound::h07a139f8ccd4fd61 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #32 0x0000000002b10e4f in rustc::ty::util::_$LT$impl$u20$rustc..ty..TyS$LT$$u27$tcx$GT$$GT$::moves_by_default::h25b140bd780bb824 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #33 0x0000000002b10d96 in rustc::infer::InferCtxt::type_moves_by_default::hfe88106eb6250ac6 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #34 0x0000000002b9f9e5 in rustc::middle::expr_use_visitor::ExprUseVisitor::consume_expr::h4b2d785ca70f00ad () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc-f53fb285.dll #35 0x00000000673c8d6b in rustc_passes::consts::CheckCrateVisitor::global_expr::h47f4b325bf42d285 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_passes-f53fb285.dll #36 0x00000000673d2976 in _$LT$rustc_passes..consts..CheckCrateVisitor$LT$$u27$a$C$$u20$$u27$tcx$GT$$u20$as$u20$rustc..hir..intravisit..Visitor$LT$$u27$v$GT$$GT$::visit_item::h0528b8b3ad96685d () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_passes-f53fb285.dll #37 0x00000000673d4bff in rustc_passes::consts::check_crate::h17411c6a9c58041d () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_passes-f53fb285.dll #38 0x000000006ac97fdd in rustc_driver::driver::phase_3_run_analysis_passes::_$u7b$$u7b$closure$u7d$$u7d$::he1de538a7584312e () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #39 0x000000006ac95d7e in rustc::ty::context::TyCtxt::create_and_enter::he5466411552b055e () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #40 0x000000006ac5a76c in rustc_driver::driver::compile_input::h2d1b58b831f06a86 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #41 0x000000006ac4695d in rustc_driver::run_compiler::h833483649bdaa9c3 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #42 0x000000006ac438ca in std::panicking::try::call::hd16aacc09eeeaf9e () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #43 0x000000006e58f849 in __rust_maybe_catch_panic () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #44 0x000000006ac443c4 in _$LT$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::hbf614b3f826456b6 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/rustc_driver-f53fb285.dll #45 0x000000006e57d4da in std::sys::thread::Thread::new::thread_start::h150ac04d84605902 () from /home/we/rust/x86_64-pc-windows-gnu/stage1/bin/std-f53fb285.dll #46 0x00007ffce27813d2 in KERNEL32!BaseThreadInitThunk () from /c/Windows/system32/KERNEL32.DLL #47 0x00007ffce39554e4 in ntdll!RtlUserThreadStart () from /c/Windows/SYSTEM32/ntdll.dll #48 0x0000000000000000 in ?? () ```
test
ice encountered early bound region when generalizing reearlybound typespace a code rust use std marker phantomdata trait tr const c phantomdata phantomdata fn main ices on nightly can t be reproduced on stable beta due to backtrace in rust panic from home we rust pc windows gnu bin std dll in std panicking rust panic with hook from home we rust pc windows gnu bin std dll in std panicking begin panic from home we rust pc windows gnu bin rustc dll in rustc session opt span bug fmt closure from home we rust pc windows gnu bin rustc dll in rustc session opt span bug fmt from home we rust pc windows gnu bin rustc dll in rustc session span bug fmt from home we rust pc windows gnu bin rustc dll in lt rustc infer combine generalizer lt cx c gcx c tcx gt as rustc ty fold typefolder lt gcx c tcx gt gt fold ty from home we rust pc windows gnu bin rustc dll in rustc infer combine combinefields instantiate from home we rust pc windows gnu bin rustc dll in lt rustc infer equate equate lt a c gcx c tcx gt as rustc ty relate typerelation lt a c gcx c tcx gt gt tys from home we rust pc windows gnu bin rustc dll in rustc ty relate relate type params closure from home we rust pc windows gnu bin rustc dll in lt collections vec vec lt t gt as core iter traits fromiterator lt t gt gt from iter from home we rust pc windows gnu bin rustc dll in rustc ty relate relate substs from home we rust pc windows gnu bin rustc dll in rustc ty relate relate item substs from home we rust pc windows gnu bin rustc dll in rustc ty relate super relate tys from home we rust pc windows gnu bin rustc dll in lt rustc infer equate equate lt a c gcx c tcx gt as rustc ty relate typerelation lt a c gcx c tcx gt gt tys from home we rust pc windows gnu bin rustc dll in rustc ty relate relate type params closure from home we rust pc windows gnu bin rustc dll in lt collections vec vec lt t gt as core iter traits fromiterator lt t gt gt from iter from home we rust pc windows gnu bin rustc dll in rustc ty relate relate substs from home we rust pc windows gnu bin rustc dll in rustc ty relate relate item substs from home we rust pc windows gnu bin rustc dll in lt rustc ty sty traitref lt tcx gt as rustc ty relate relate lt tcx gt gt relate from home we rust pc windows gnu bin rustc dll in rustc infer inferctxt eq trait refs from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext match impl from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext assemble candidates from impls closure closure from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext probe from home we rust pc windows gnu bin rustc dll in rustc ty trait def traitdef for each relevant impl from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext assemble candidates from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext candidate from obligation from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext evaluate stack from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext evaluate predicate recursively from home we rust pc windows gnu bin rustc dll in rustc traits select selectioncontext evaluate obligation conservatively from home we rust pc windows gnu bin rustc dll in rustc traits type known to meet builtin bound from home we rust pc windows gnu bin rustc dll in rustc ty util lt impl rustc ty tys lt tcx gt gt impls bound from home we rust pc windows gnu bin rustc dll in rustc ty util lt impl rustc ty tys lt tcx gt gt moves by default from home we rust pc windows gnu bin rustc dll in rustc infer inferctxt type moves by default from home we rust pc windows gnu bin rustc dll in rustc middle expr use visitor exprusevisitor consume expr from home we rust pc windows gnu bin rustc dll in rustc passes consts checkcratevisitor global expr from home we rust pc windows gnu bin rustc passes dll in lt rustc passes consts checkcratevisitor lt a c tcx gt as rustc hir intravisit visitor lt v gt gt visit item from home we rust pc windows gnu bin rustc passes dll in rustc passes consts check crate from home we rust pc windows gnu bin rustc passes dll in rustc driver driver phase run analysis passes closure from home we rust pc windows gnu bin rustc driver dll in rustc ty context tyctxt create and enter from home we rust pc windows gnu bin rustc driver dll in rustc driver driver compile input from home we rust pc windows gnu bin rustc driver dll in rustc driver run compiler from home we rust pc windows gnu bin rustc driver dll in std panicking try call from home we rust pc windows gnu bin rustc driver dll in rust maybe catch panic from home we rust pc windows gnu bin std dll in lt f as alloc boxed fnbox lt a gt gt call box from home we rust pc windows gnu bin rustc driver dll in std sys thread thread new thread start from home we rust pc windows gnu bin std dll in basethreadinitthunk from c windows dll in ntdll rtluserthreadstart from c windows ntdll dll in
1
339,689
30,465,781,929
IssuesEvent
2023-07-17 10:15:21
openBackhaul/ApplicationPattern
https://api.github.com/repos/openBackhaul/ApplicationPattern
opened
/V1/END-SUBSCRIPTION should remove the Operation -client under the LINKCHANGENOTIFICATION fc Port
implementation_to_be_changed bug_from_testsuite_run
Issue Description : /V1/END-SUBSCRIPTION should remove the Operation -client under the LINKCHANGENOTIFICATION fc Port
1.0
/V1/END-SUBSCRIPTION should remove the Operation -client under the LINKCHANGENOTIFICATION fc Port - Issue Description : /V1/END-SUBSCRIPTION should remove the Operation -client under the LINKCHANGENOTIFICATION fc Port
test
end subscription should remove the operation client under the linkchangenotification fc port issue description end subscription should remove the operation client under the linkchangenotification fc port
1
234,941
25,897,977,850
IssuesEvent
2022-12-15 01:09:35
Trinadh465/linux-3.0.35
https://api.github.com/repos/Trinadh465/linux-3.0.35
opened
CVE-2017-14140 (Medium) detected in linux-stable-rtv3.8.6
security vulnerability
## CVE-2017-14140 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv3.8.6</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/Trinadh465/linux-3.0.35/commit/bc642faf5ff07c31ee8f8788b7523e6fa3638231">bc642faf5ff07c31ee8f8788b7523e6fa3638231</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> </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> The move_pages system call in mm/migrate.c in the Linux kernel before 4.12.9 doesn't check the effective uid of the target process, enabling a local attacker to learn the memory layout of a setuid executable despite ASLR. <p>Publish Date: 2017-09-05 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-14140>CVE-2017-14140</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.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2017-14140">https://nvd.nist.gov/vuln/detail/CVE-2017-14140</a></p> <p>Release Date: 2017-09-05</p> <p>Fix Resolution: 4.12.9</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2017-14140 (Medium) detected in linux-stable-rtv3.8.6 - ## CVE-2017-14140 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv3.8.6</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/Trinadh465/linux-3.0.35/commit/bc642faf5ff07c31ee8f8788b7523e6fa3638231">bc642faf5ff07c31ee8f8788b7523e6fa3638231</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> </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> The move_pages system call in mm/migrate.c in the Linux kernel before 4.12.9 doesn't check the effective uid of the target process, enabling a local attacker to learn the memory layout of a setuid executable despite ASLR. <p>Publish Date: 2017-09-05 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-14140>CVE-2017-14140</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.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2017-14140">https://nvd.nist.gov/vuln/detail/CVE-2017-14140</a></p> <p>Release Date: 2017-09-05</p> <p>Fix Resolution: 4.12.9</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in linux stable cve medium severity vulnerability vulnerable library linux stable julia cartwright s fork of linux stable rt git library home page a href found in head commit a href found in base branch master vulnerable source files vulnerability details the move pages system call in mm migrate c in the linux kernel before doesn t check the effective uid of the target process enabling a local attacker to learn the memory layout of a setuid executable despite aslr publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high 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 step up your open source security game with mend
0
33,470
4,835,520,629
IssuesEvent
2016-11-08 16:59:33
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
: TestStoreRangeRebalance failed under stress
Robot test-failure
SHA: https://github.com/cockroachdb/cockroach/commits/ca89f456766a8f0381815e58aa7abfe5d3ece741 Stress build found a failed test: ``` I161025 07:00:18.636488 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.637936 20970 gossip/gossip.go:237 [n?] initial resolvers: [] W161025 07:00:18.638332 20970 gossip/gossip.go:1055 [n?] no resolvers found; use --join to specify a connected node I161025 07:00:18.638661 20970 base/node_id.go:62 NodeID set to 1 I161025 07:00:18.656447 20970 storage/store.go:1151 [n1,s1]: failed initial metrics computation: [n1,s1]: system config not yet available I161025 07:00:18.656762 20970 gossip/gossip.go:280 [n1] NodeDescriptor set to node_id:1 address:<network_field:"tcp" address_field:"127.0.0.1:37344" > attrs:<> locality:<> I161025 07:00:18.671578 20990 storage/replica_proposal.go:292 [s1,r1/1:/M{in-ax}] new range lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0s [physicalTime=1970-01-01 00:00:00 +0000 UTC] I161025 07:00:18.681440 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.683173 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.687152 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.687465 20970 base/node_id.go:62 NodeID set to 2 I161025 07:00:18.720593 20970 storage/store.go:1151 [n2,s2]: failed initial metrics computation: [n2,s2]: system config not yet available I161025 07:00:18.720903 20970 gossip/gossip.go:280 [n2] NodeDescriptor set to node_id:2 address:<network_field:"tcp" address_field:"127.0.0.1:35894" > attrs:<> locality:<> I161025 07:00:18.722132 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.728701 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] I161025 07:00:18.729262 21128 gossip/client.go:126 [n2] node 2: started gossip client to 127.0.0.1:37344 W161025 07:00:18.751634 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.751951 20970 base/node_id.go:62 NodeID set to 3 I161025 07:00:18.769635 21167 gossip/client.go:126 [n3] node 3: started gossip client to 127.0.0.1:37344 I161025 07:00:18.772127 20970 gossip/gossip.go:280 [n3] NodeDescriptor set to node_id:3 address:<network_field:"tcp" address_field:"127.0.0.1:36810" > attrs:<> locality:<> I161025 07:00:18.777182 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.799070 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.799571 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.800114 20970 base/node_id.go:62 NodeID set to 4 I161025 07:00:18.833857 20970 storage/store.go:1151 [n4,s4]: failed initial metrics computation: [n4,s4]: system config not yet available I161025 07:00:18.834179 20970 gossip/gossip.go:280 [n4] NodeDescriptor set to node_id:4 address:<network_field:"tcp" address_field:"127.0.0.1:60110" > attrs:<> locality:<> I161025 07:00:18.835642 21262 gossip/client.go:126 [n4] node 4: started gossip client to 127.0.0.1:37344 I161025 07:00:18.837467 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.839250 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.839843 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.843654 20970 base/node_id.go:62 NodeID set to 5 I161025 07:00:18.888068 20970 storage/store.go:1151 [n5,s5]: failed initial metrics computation: [n5,s5]: system config not yet available I161025 07:00:18.888382 20970 gossip/gossip.go:280 [n5] NodeDescriptor set to node_id:5 address:<network_field:"tcp" address_field:"127.0.0.1:40370" > attrs:<> locality:<> I161025 07:00:18.896468 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.907972 21219 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:37344 I161025 07:00:18.928990 21346 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:60110}) I161025 07:00:18.929375 21346 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:18.930816 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.931213 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.931512 20970 base/node_id.go:62 NodeID set to 6 I161025 07:00:18.937475 21346 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:60110}) I161025 07:00:18.973249 21219 gossip/client.go:131 [n5] node 5: closing client to node 1 (127.0.0.1:37344): received forward from node 1 to 4 (127.0.0.1:60110) I161025 07:00:18.973794 21402 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:60110 I161025 07:00:18.984323 20970 storage/store.go:1151 [n6,s6]: failed initial metrics computation: [n6,s6]: system config not yet available I161025 07:00:18.984643 20970 gossip/gossip.go:280 [n6] NodeDescriptor set to node_id:6 address:<network_field:"tcp" address_field:"127.0.0.1:47909" > attrs:<> locality:<> I161025 07:00:18.986792 21465 gossip/client.go:126 [n6] node 6: started gossip client to 127.0.0.1:37344 I161025 07:00:18.999127 21473 gossip/server.go:263 [n1] refusing gossip from node 6 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:19.010596 21473 gossip/server.go:263 [n1] refusing gossip from node 6 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:19.011183 21473 gossip/server.go:263 [n1] refusing gossip from node 6 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:19.011537 21465 gossip/client.go:131 [n6] node 6: closing client to node 1 (127.0.0.1:37344): received forward from node 1 to 2 (127.0.0.1:35894) I161025 07:00:19.024425 21380 gossip/client.go:126 [n6] node 6: started gossip client to 127.0.0.1:35894 I161025 07:00:19.105553 20970 storage/replica_command.go:2354 [s1,r1/1:/M{in-ax}] initiating a split of this range at key "split" [r2] E161025 07:00:19.203456 21021 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r1/1:{/Min-"split"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster E161025 07:00:19.225795 21021 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r2/1:{"split"-/Max}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161025 07:00:19.245841 20970 storage/replica_raftstorage.go:446 [s1,r1/1:{/Min-"split"}] generated snapshot 129a40ae for range 1 at index 31 in 98.195µs. I161025 07:00:19.252897 20970 storage/store.go:3032 streamed snapshot: kv pairs: 33, log entries: 21 I161025 07:00:19.254664 21603 storage/replica_raftstorage.go:577 [s2] [n2,s2,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 31 (id=129a40ae, encoded size=16, 1 rocksdb batches, 21 log entries) I161025 07:00:19.272327 21603 storage/replica_raftstorage.go:580 [s2] [n2,s2,r1/?:{/Min-"split"}]: with replicaID [?], applied preemptive snapshot in 0.017s I161025 07:00:19.276623 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"split" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 I161025 07:00:19.328255 21569 storage/replica.go:1793 [s1,r1/1:{/Min-"split"}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161025 07:00:19.368421 20970 storage/replica_raftstorage.go:446 [s1,r1/1:{/Min-"split"}] generated snapshot 6c22622e for range 1 at index 36 in 114.095µs. I161025 07:00:19.370365 21666 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:19.374031 20970 storage/store.go:3032 streamed snapshot: kv pairs: 39, log entries: 26 I161025 07:00:19.375836 21598 storage/replica_raftstorage.go:577 [s3] [n3,s3,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 36 (id=6c22622e, encoded size=16, 1 rocksdb batches, 26 log entries) I161025 07:00:19.380724 21598 storage/replica_raftstorage.go:580 [s3] [n3,s3,r1/?:{/Min-"split"}]: with replicaID [?], applied preemptive snapshot in 0.005s I161025 07:00:19.404399 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"split" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > next_replica_id:3 I161025 07:00:19.660711 21624 storage/replica.go:1793 [s1,r1/1:{/Min-"split"}] proposing ADD_REPLICA {NodeID:3 StoreID:3 ReplicaID:3} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] I161025 07:00:19.896606 20970 storage/replica_raftstorage.go:446 [s1,r2/1:{"split"-/Max}] generated snapshot 0b5f3204 for range 2 at index 11 in 131.194µs. I161025 07:00:19.900139 20970 storage/store.go:3032 streamed snapshot: kv pairs: 28, log entries: 1 I161025 07:00:19.949931 21759 storage/replica_raftstorage.go:577 [s2] [n2,s2,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 11 (id=0b5f3204, encoded size=16, 1 rocksdb batches, 1 log entries) I161025 07:00:19.951620 21759 storage/replica_raftstorage.go:580 [s2] [n2,s2,r2/?:{"split"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.001s I161025 07:00:19.960562 21725 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:19.967837 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 W161025 07:00:20.246771 21842 storage/intent_resolver.go:313 [n2,s2,r1/2:{/Min-"split"}]: failed to push during intent resolution: failed to push "change-replica" id=f5f1f3b5 key=/Local/Range/"split"/RangeDescriptor rw=true pri=0.02533519 iso=SERIALIZABLE stat=PENDING epo=0 ts=0.000000000,578 orig=0.000000000,578 max=0.000000000,578 wto=false rop=false W161025 07:00:20.382662 21677 storage/intent_resolver.go:313 [n2,s2,r1/2:{/Min-"split"}]: failed to push during intent resolution: failed to push "change-replica" id=f5f1f3b5 key=/Local/Range/"split"/RangeDescriptor rw=true pri=0.02533519 iso=SERIALIZABLE stat=PENDING epo=0 ts=0.000000000,578 orig=0.000000000,578 max=0.000000000,578 wto=false rop=false I161025 07:00:20.400857 21676 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161025 07:00:20.636311 20970 storage/replica_raftstorage.go:446 [s1,r2/1:{"split"-/Max}] generated snapshot 327c3d5a for range 2 at index 16 in 100.495µs. I161025 07:00:20.647627 20970 storage/store.go:3032 streamed snapshot: kv pairs: 30, log entries: 6 I161025 07:00:20.654484 21888 storage/replica_raftstorage.go:577 [s4] [n4,s4,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 16 (id=327c3d5a, encoded size=16, 1 rocksdb batches, 6 log entries) I161025 07:00:20.697362 21888 storage/replica_raftstorage.go:580 [s4] [n4,s4,r2/?:{"split"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.043s I161025 07:00:20.727191 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > next_replica_id:3 I161025 07:00:21.679896 21840 storage/raft_transport.go:423 raft transport stream to node 2 established I161025 07:00:21.757827 22023 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing ADD_REPLICA {NodeID:4 StoreID:4 ReplicaID:3} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:4 StoreID:4 ReplicaID:3}] I161025 07:00:21.991116 20970 storage/replica_raftstorage.go:446 [s1,r2/1:{"split"-/Max}] generated snapshot 58779c29 for range 2 at index 19 in 101.796µs. I161025 07:00:22.020959 20970 storage/store.go:3032 streamed snapshot: kv pairs: 31, log entries: 9 I161025 07:00:22.022787 22066 storage/replica_raftstorage.go:577 [s5] [n5,s5,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 19 (id=58779c29, encoded size=16, 1 rocksdb batches, 9 log entries) I161025 07:00:22.032897 22066 storage/replica_raftstorage.go:580 [s5] [n5,s5,r2/?:{"split"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.010s I161025 07:00:22.038836 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:4 store_id:4 replica_id:3 > next_replica_id:4 I161025 07:00:22.042480 22057 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:22.140359 22041 storage/raft_transport.go:423 raft transport stream to node 3 established I161025 07:00:23.476766 22181 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing ADD_REPLICA {NodeID:5 StoreID:5 ReplicaID:4} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:4 StoreID:4 ReplicaID:3} {NodeID:5 StoreID:5 ReplicaID:4}] I161025 07:00:23.747140 22193 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:23.784601 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:4 store_id:4 replica_id:3 > replicas:<node_id:5 store_id:5 replica_id:4 > next_replica_id:5 I161025 07:00:24.700070 21028 storage/replica.go:1841 [s1,r1/1:{/Min-"split"}] not quiescing: 7 pending commands I161025 07:00:25.190026 22101 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing REMOVE_REPLICA {NodeID:1 StoreID:1 ReplicaID:1} for range 2: [{NodeID:5 StoreID:5 ReplicaID:4} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:4 StoreID:4 ReplicaID:3}] I161025 07:00:25.484946 21584 storage/store.go:2893 [s1] [n1,s1,r2/1:{"split"-/Max}]: added to replica GC queue (peer suggestion) I161025 07:00:25.672147 22159 storage/raft_transport.go:423 raft transport stream to node 5 established I161025 07:00:25.714677 22158 storage/raft_transport.go:423 raft transport stream to node 4 established I161025 07:00:25.770179 22378 storage/raft_transport.go:423 raft transport stream to node 2 established I161025 07:00:25.783129 22161 storage/raft_transport.go:423 raft transport stream to node 2 established I161025 07:00:25.936934 21111 storage/replica_proposal.go:292 [s2,r2/2:{"split"-/Max}] new range lease replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 1.8s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms [physicalTime=1970-01-01 00:00:01.8 +0000 UTC] W161025 07:00:26.181004 21032 raft/raft.go:696 [s1,r2/1:{"split"-/Max}] 1 stepped down to follower since quorum is not active I161025 07:00:26.740749 21112 storage/replica_proposal.go:292 [s2,r1/2:{/Min-"split"}] new range lease replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 1.8s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms [physicalTime=1970-01-01 00:00:12.6 +0000 UTC] I161025 07:00:27.044633 21067 storage/replica_proposal.go:292 [s3,r1/3:{/Min-"split"}] new range lease replica {3 3 3} 1970-01-01 00:00:02.7 +0000 UTC 10.8s following replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 1.8s [physicalTime=1970-01-01 00:00:12.6 +0000 UTC] E161025 07:00:27.234029 21075 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous I161025 07:00:27.386609 20970 storage/client_test.go:419 gossip network initialized I161025 07:00:27.761160 21243 storage/replica_proposal.go:292 [s4,r2/3:{"split"-/Max}] new range lease replica {4 4 3} 1970-01-01 00:00:13.5 +0000 UTC 5.4s following replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 12.6s [physicalTime=1970-01-01 00:00:27 +0000 UTC] I161025 07:00:27.792376 22528 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/client_test.go:506 I161025 07:00:27.792603 22527 util/stop/stopper.go:425 quiescing; tasks left: 9 storage/client_test.go:506 2 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 I161025 07:00:27.802436 22526 util/stop/stopper.go:425 quiescing; tasks left: 8 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.844849 22526 util/stop/stopper.go:425 quiescing; tasks left: 7 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.845245 22526 util/stop/stopper.go:425 quiescing; tasks left: 6 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.858331 22526 util/stop/stopper.go:425 quiescing; tasks left: 4 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.858684 22526 util/stop/stopper.go:425 quiescing; tasks left: 4 storage/client_test.go:506 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 E161025 07:00:27.882063 21558 storage/queue.go:558 [replicate] on [n1,s1,r1/1:{/Min-"split"}]: [n1,s1,r1/1:{/Min-"split"}]: could not obtain lease: node unavailable; try another peer I161025 07:00:27.883430 22527 util/stop/stopper.go:425 quiescing; tasks left: 8 storage/client_test.go:506 2 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 E161025 07:00:27.884194 21075 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous I161025 07:00:27.885079 22529 util/stop/stopper.go:425 quiescing; tasks left: 2 storage/client_test.go:506 1 storage/replica_range_lease.go:150 I161025 07:00:27.885220 22526 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/queue.go:467 1 storage/intent_resolver.go:381 1 storage/client_test.go:506 I161025 07:00:27.885336 22527 util/stop/stopper.go:425 quiescing; tasks left: 6 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 I161025 07:00:27.904724 22527 util/stop/stopper.go:425 quiescing; tasks left: 5 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 W161025 07:00:27.908162 22281 storage/intent_resolver.go:378 could not GC completed transaction anchored at /Local/Range/"split"/RangeDescriptor: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.908462 22526 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/queue.go:467 1 storage/client_test.go:506 E161025 07:00:27.908856 21075 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:27.911705 22529 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/replica_range_lease.go:150 1 storage/client_test.go:506 I161025 07:00:27.912033 22529 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/client_test.go:506 W161025 07:00:27.925653 22289 storage/intent_resolver.go:313 [n2,s2,r1/2:{/Min-"split"}]: failed to push during intent resolution: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.925950 22527 util/stop/stopper.go:425 quiescing; tasks left: 5 storage/client_test.go:506 1 storage/replica_range_lease.go:150 E161025 07:00:27.931982 21472 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.932892 21472 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:27.935261 22527 util/stop/stopper.go:425 quiescing; tasks left: 4 storage/client_test.go:506 1 storage/replica_range_lease.go:150 E161025 07:00:27.937759 21098 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.940387 22527 util/stop/stopper.go:425 quiescing; tasks left: 3 storage/client_test.go:506 1 storage/replica_range_lease.go:150 I161025 07:00:27.942966 22527 util/stop/stopper.go:425 quiescing; tasks left: 2 storage/client_test.go:506 1 storage/replica_range_lease.go:150 E161025 07:00:27.943153 21266 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.944163 21004 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.945248 21004 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:27.945707 22527 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/replica_range_lease.go:150 1 storage/client_test.go:506 I161025 07:00:27.945971 22527 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/client_test.go:506 W161025 07:00:27.946420 22103 storage/intent_resolver.go:101 [s1] asynchronous resolveIntents failed: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.947446 22526 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/queue.go:467 E161025 07:00:27.968215 21266 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.968453 21022 storage/queue.go:558 [replicaGC] on [n1,s1,r2/1:{"split"-/Max}]: failed to send RPC: sending to all 3 replicas failed; last error: range 1: replica {1 1 1} not lease holder; <nil> is I161025 07:00:27.968736 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks E161025 07:00:27.969749 21098 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.971575 21004 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.977287 21007 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.978663 21007 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.999359 21472 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:28.002023 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks W161025 07:00:28.017954 22419 storage/store.go:2897 [s5] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:5 StoreID:5 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161025 07:00:28.018330 22419 storage/store.go:2897 [s5] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:5 StoreID:5 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161025 07:00:28.020196 21768 storage/store.go:2897 [s3] got error from range 0, replica {1 1 0}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:3 StoreID:3 ReplicaID:0}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:0} I161025 07:00:28.022101 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks W161025 07:00:28.032963 21901 storage/raft_transport.go:463 no handler found for store 3 in response range_id:0 from_replica:<node_id:2 store_id:2 replica_id:0 > to_replica:<node_id:3 store_id:3 replica_id:0 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:3 StoreID:3 ReplicaID:0}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:0}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > E161025 07:00:28.042742 21266 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:28.043794 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks W161025 07:00:28.046586 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.046822 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047029 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047230 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047429 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047652 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > I161025 07:00:28.049444 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.051472 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.053885 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.054825 21009 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:47909->127.0.0.1:52355: use of closed network connection I161025 07:00:28.055190 21306 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:40370->127.0.0.1:54737: use of closed network connection I161025 07:00:28.055526 21181 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:60110->127.0.0.1:49491: use of closed network connection I161025 07:00:28.055861 21063 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:36810->127.0.0.1:36186: use of closed network connection I161025 07:00:28.056569 20558 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161025 07:00:28.056901 21285 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161025 07:00:28.057225 21211 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. W161025 07:00:28.057590 22191 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161025 07:00:28.057802 22193 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161025 07:00:28.058006 22057 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF I161025 07:00:28.058773 20987 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:37344->127.0.0.1:42248: use of closed network connection I161025 07:00:28.059001 21011 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. W161025 07:00:28.059428 22054 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF I161025 07:00:28.059660 21213 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:60110: getsockopt: connection refused"; Reconnecting to {"127.0.0.1:60110" <nil>} I161025 07:00:28.059826 21213 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161025 07:00:28.060056 21013 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:37344: getsockopt: connection refused"; Reconnecting to {"127.0.0.1:37344" <nil>} I161025 07:00:28.060249 20945 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:35894->127.0.0.1:38481: use of closed network connection I161025 07:00:28.060887 21130 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161025 07:00:28.061184 21132 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:36810: operation was canceled"; Reconnecting to {"127.0.0.1:36810" <nil>} I161025 07:00:28.061282 21083 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken read tcp 127.0.0.1:38481->127.0.0.1:35894: read: connection reset by peer. I161025 07:00:28.061954 21287 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:40370: operation was canceled"; Reconnecting to {"127.0.0.1:40370" <nil>} I161025 07:00:28.062112 21287 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161025 07:00:28.062248 20560 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:47909: operation was canceled"; Reconnecting to {"127.0.0.1:47909" <nil>} I161025 07:00:28.062402 20560 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161025 07:00:28.062547 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.062917 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.063290 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.063606 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.063998 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.064325 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks client_raft_test.go:1903: range 1: replica {3 3 3} not lease holder; node_id:3 store_id:3 replica_id:3 is ```
1.0
: TestStoreRangeRebalance failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/ca89f456766a8f0381815e58aa7abfe5d3ece741 Stress build found a failed test: ``` I161025 07:00:18.636488 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.637936 20970 gossip/gossip.go:237 [n?] initial resolvers: [] W161025 07:00:18.638332 20970 gossip/gossip.go:1055 [n?] no resolvers found; use --join to specify a connected node I161025 07:00:18.638661 20970 base/node_id.go:62 NodeID set to 1 I161025 07:00:18.656447 20970 storage/store.go:1151 [n1,s1]: failed initial metrics computation: [n1,s1]: system config not yet available I161025 07:00:18.656762 20970 gossip/gossip.go:280 [n1] NodeDescriptor set to node_id:1 address:<network_field:"tcp" address_field:"127.0.0.1:37344" > attrs:<> locality:<> I161025 07:00:18.671578 20990 storage/replica_proposal.go:292 [s1,r1/1:/M{in-ax}] new range lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0s [physicalTime=1970-01-01 00:00:00 +0000 UTC] I161025 07:00:18.681440 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.683173 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.687152 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.687465 20970 base/node_id.go:62 NodeID set to 2 I161025 07:00:18.720593 20970 storage/store.go:1151 [n2,s2]: failed initial metrics computation: [n2,s2]: system config not yet available I161025 07:00:18.720903 20970 gossip/gossip.go:280 [n2] NodeDescriptor set to node_id:2 address:<network_field:"tcp" address_field:"127.0.0.1:35894" > attrs:<> locality:<> I161025 07:00:18.722132 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.728701 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] I161025 07:00:18.729262 21128 gossip/client.go:126 [n2] node 2: started gossip client to 127.0.0.1:37344 W161025 07:00:18.751634 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.751951 20970 base/node_id.go:62 NodeID set to 3 I161025 07:00:18.769635 21167 gossip/client.go:126 [n3] node 3: started gossip client to 127.0.0.1:37344 I161025 07:00:18.772127 20970 gossip/gossip.go:280 [n3] NodeDescriptor set to node_id:3 address:<network_field:"tcp" address_field:"127.0.0.1:36810" > attrs:<> locality:<> I161025 07:00:18.777182 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.799070 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.799571 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.800114 20970 base/node_id.go:62 NodeID set to 4 I161025 07:00:18.833857 20970 storage/store.go:1151 [n4,s4]: failed initial metrics computation: [n4,s4]: system config not yet available I161025 07:00:18.834179 20970 gossip/gossip.go:280 [n4] NodeDescriptor set to node_id:4 address:<network_field:"tcp" address_field:"127.0.0.1:60110" > attrs:<> locality:<> I161025 07:00:18.835642 21262 gossip/client.go:126 [n4] node 4: started gossip client to 127.0.0.1:37344 I161025 07:00:18.837467 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.839250 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.839843 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.843654 20970 base/node_id.go:62 NodeID set to 5 I161025 07:00:18.888068 20970 storage/store.go:1151 [n5,s5]: failed initial metrics computation: [n5,s5]: system config not yet available I161025 07:00:18.888382 20970 gossip/gossip.go:280 [n5] NodeDescriptor set to node_id:5 address:<network_field:"tcp" address_field:"127.0.0.1:40370" > attrs:<> locality:<> I161025 07:00:18.896468 20970 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161025 07:00:18.907972 21219 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:37344 I161025 07:00:18.928990 21346 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:60110}) I161025 07:00:18.929375 21346 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:18.930816 20970 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:37344] W161025 07:00:18.931213 20970 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161025 07:00:18.931512 20970 base/node_id.go:62 NodeID set to 6 I161025 07:00:18.937475 21346 gossip/server.go:263 [n1] refusing gossip from node 5 (max 3 conns); forwarding to 4 ({tcp 127.0.0.1:60110}) I161025 07:00:18.973249 21219 gossip/client.go:131 [n5] node 5: closing client to node 1 (127.0.0.1:37344): received forward from node 1 to 4 (127.0.0.1:60110) I161025 07:00:18.973794 21402 gossip/client.go:126 [n5] node 5: started gossip client to 127.0.0.1:60110 I161025 07:00:18.984323 20970 storage/store.go:1151 [n6,s6]: failed initial metrics computation: [n6,s6]: system config not yet available I161025 07:00:18.984643 20970 gossip/gossip.go:280 [n6] NodeDescriptor set to node_id:6 address:<network_field:"tcp" address_field:"127.0.0.1:47909" > attrs:<> locality:<> I161025 07:00:18.986792 21465 gossip/client.go:126 [n6] node 6: started gossip client to 127.0.0.1:37344 I161025 07:00:18.999127 21473 gossip/server.go:263 [n1] refusing gossip from node 6 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:19.010596 21473 gossip/server.go:263 [n1] refusing gossip from node 6 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:19.011183 21473 gossip/server.go:263 [n1] refusing gossip from node 6 (max 3 conns); forwarding to 2 ({tcp 127.0.0.1:35894}) I161025 07:00:19.011537 21465 gossip/client.go:131 [n6] node 6: closing client to node 1 (127.0.0.1:37344): received forward from node 1 to 2 (127.0.0.1:35894) I161025 07:00:19.024425 21380 gossip/client.go:126 [n6] node 6: started gossip client to 127.0.0.1:35894 I161025 07:00:19.105553 20970 storage/replica_command.go:2354 [s1,r1/1:/M{in-ax}] initiating a split of this range at key "split" [r2] E161025 07:00:19.203456 21021 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r1/1:{/Min-"split"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster E161025 07:00:19.225795 21021 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r2/1:{"split"-/Max}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161025 07:00:19.245841 20970 storage/replica_raftstorage.go:446 [s1,r1/1:{/Min-"split"}] generated snapshot 129a40ae for range 1 at index 31 in 98.195µs. I161025 07:00:19.252897 20970 storage/store.go:3032 streamed snapshot: kv pairs: 33, log entries: 21 I161025 07:00:19.254664 21603 storage/replica_raftstorage.go:577 [s2] [n2,s2,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 31 (id=129a40ae, encoded size=16, 1 rocksdb batches, 21 log entries) I161025 07:00:19.272327 21603 storage/replica_raftstorage.go:580 [s2] [n2,s2,r1/?:{/Min-"split"}]: with replicaID [?], applied preemptive snapshot in 0.017s I161025 07:00:19.276623 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"split" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 I161025 07:00:19.328255 21569 storage/replica.go:1793 [s1,r1/1:{/Min-"split"}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161025 07:00:19.368421 20970 storage/replica_raftstorage.go:446 [s1,r1/1:{/Min-"split"}] generated snapshot 6c22622e for range 1 at index 36 in 114.095µs. I161025 07:00:19.370365 21666 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:19.374031 20970 storage/store.go:3032 streamed snapshot: kv pairs: 39, log entries: 26 I161025 07:00:19.375836 21598 storage/replica_raftstorage.go:577 [s3] [n3,s3,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 36 (id=6c22622e, encoded size=16, 1 rocksdb batches, 26 log entries) I161025 07:00:19.380724 21598 storage/replica_raftstorage.go:580 [s3] [n3,s3,r1/?:{/Min-"split"}]: with replicaID [?], applied preemptive snapshot in 0.005s I161025 07:00:19.404399 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"split" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > next_replica_id:3 I161025 07:00:19.660711 21624 storage/replica.go:1793 [s1,r1/1:{/Min-"split"}] proposing ADD_REPLICA {NodeID:3 StoreID:3 ReplicaID:3} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:3 StoreID:3 ReplicaID:3}] I161025 07:00:19.896606 20970 storage/replica_raftstorage.go:446 [s1,r2/1:{"split"-/Max}] generated snapshot 0b5f3204 for range 2 at index 11 in 131.194µs. I161025 07:00:19.900139 20970 storage/store.go:3032 streamed snapshot: kv pairs: 28, log entries: 1 I161025 07:00:19.949931 21759 storage/replica_raftstorage.go:577 [s2] [n2,s2,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 11 (id=0b5f3204, encoded size=16, 1 rocksdb batches, 1 log entries) I161025 07:00:19.951620 21759 storage/replica_raftstorage.go:580 [s2] [n2,s2,r2/?:{"split"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.001s I161025 07:00:19.960562 21725 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:19.967837 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 W161025 07:00:20.246771 21842 storage/intent_resolver.go:313 [n2,s2,r1/2:{/Min-"split"}]: failed to push during intent resolution: failed to push "change-replica" id=f5f1f3b5 key=/Local/Range/"split"/RangeDescriptor rw=true pri=0.02533519 iso=SERIALIZABLE stat=PENDING epo=0 ts=0.000000000,578 orig=0.000000000,578 max=0.000000000,578 wto=false rop=false W161025 07:00:20.382662 21677 storage/intent_resolver.go:313 [n2,s2,r1/2:{/Min-"split"}]: failed to push during intent resolution: failed to push "change-replica" id=f5f1f3b5 key=/Local/Range/"split"/RangeDescriptor rw=true pri=0.02533519 iso=SERIALIZABLE stat=PENDING epo=0 ts=0.000000000,578 orig=0.000000000,578 max=0.000000000,578 wto=false rop=false I161025 07:00:20.400857 21676 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161025 07:00:20.636311 20970 storage/replica_raftstorage.go:446 [s1,r2/1:{"split"-/Max}] generated snapshot 327c3d5a for range 2 at index 16 in 100.495µs. I161025 07:00:20.647627 20970 storage/store.go:3032 streamed snapshot: kv pairs: 30, log entries: 6 I161025 07:00:20.654484 21888 storage/replica_raftstorage.go:577 [s4] [n4,s4,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 16 (id=327c3d5a, encoded size=16, 1 rocksdb batches, 6 log entries) I161025 07:00:20.697362 21888 storage/replica_raftstorage.go:580 [s4] [n4,s4,r2/?:{"split"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.043s I161025 07:00:20.727191 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > next_replica_id:3 I161025 07:00:21.679896 21840 storage/raft_transport.go:423 raft transport stream to node 2 established I161025 07:00:21.757827 22023 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing ADD_REPLICA {NodeID:4 StoreID:4 ReplicaID:3} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:4 StoreID:4 ReplicaID:3}] I161025 07:00:21.991116 20970 storage/replica_raftstorage.go:446 [s1,r2/1:{"split"-/Max}] generated snapshot 58779c29 for range 2 at index 19 in 101.796µs. I161025 07:00:22.020959 20970 storage/store.go:3032 streamed snapshot: kv pairs: 31, log entries: 9 I161025 07:00:22.022787 22066 storage/replica_raftstorage.go:577 [s5] [n5,s5,r2/?:{-}]: with replicaID [?], applying preemptive snapshot at index 19 (id=58779c29, encoded size=16, 1 rocksdb batches, 9 log entries) I161025 07:00:22.032897 22066 storage/replica_raftstorage.go:580 [s5] [n5,s5,r2/?:{"split"-/Max}]: with replicaID [?], applied preemptive snapshot in 0.010s I161025 07:00:22.038836 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:4 store_id:4 replica_id:3 > next_replica_id:4 I161025 07:00:22.042480 22057 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:22.140359 22041 storage/raft_transport.go:423 raft transport stream to node 3 established I161025 07:00:23.476766 22181 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing ADD_REPLICA {NodeID:5 StoreID:5 ReplicaID:4} for range 2: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:4 StoreID:4 ReplicaID:3} {NodeID:5 StoreID:5 ReplicaID:4}] I161025 07:00:23.747140 22193 storage/raft_transport.go:423 raft transport stream to node 1 established I161025 07:00:23.784601 20970 storage/replica_command.go:3232 change replicas: read existing descriptor range_id:2 start_key:"split" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > replicas:<node_id:2 store_id:2 replica_id:2 > replicas:<node_id:4 store_id:4 replica_id:3 > replicas:<node_id:5 store_id:5 replica_id:4 > next_replica_id:5 I161025 07:00:24.700070 21028 storage/replica.go:1841 [s1,r1/1:{/Min-"split"}] not quiescing: 7 pending commands I161025 07:00:25.190026 22101 storage/replica.go:1793 [s1,r2/1:{"split"-/Max}] proposing REMOVE_REPLICA {NodeID:1 StoreID:1 ReplicaID:1} for range 2: [{NodeID:5 StoreID:5 ReplicaID:4} {NodeID:2 StoreID:2 ReplicaID:2} {NodeID:4 StoreID:4 ReplicaID:3}] I161025 07:00:25.484946 21584 storage/store.go:2893 [s1] [n1,s1,r2/1:{"split"-/Max}]: added to replica GC queue (peer suggestion) I161025 07:00:25.672147 22159 storage/raft_transport.go:423 raft transport stream to node 5 established I161025 07:00:25.714677 22158 storage/raft_transport.go:423 raft transport stream to node 4 established I161025 07:00:25.770179 22378 storage/raft_transport.go:423 raft transport stream to node 2 established I161025 07:00:25.783129 22161 storage/raft_transport.go:423 raft transport stream to node 2 established I161025 07:00:25.936934 21111 storage/replica_proposal.go:292 [s2,r2/2:{"split"-/Max}] new range lease replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 1.8s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms [physicalTime=1970-01-01 00:00:01.8 +0000 UTC] W161025 07:00:26.181004 21032 raft/raft.go:696 [s1,r2/1:{"split"-/Max}] 1 stepped down to follower since quorum is not active I161025 07:00:26.740749 21112 storage/replica_proposal.go:292 [s2,r1/2:{/Min-"split"}] new range lease replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 1.8s following replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 900ms [physicalTime=1970-01-01 00:00:12.6 +0000 UTC] I161025 07:00:27.044633 21067 storage/replica_proposal.go:292 [s3,r1/3:{/Min-"split"}] new range lease replica {3 3 3} 1970-01-01 00:00:02.7 +0000 UTC 10.8s following replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 1.8s [physicalTime=1970-01-01 00:00:12.6 +0000 UTC] E161025 07:00:27.234029 21075 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous I161025 07:00:27.386609 20970 storage/client_test.go:419 gossip network initialized I161025 07:00:27.761160 21243 storage/replica_proposal.go:292 [s4,r2/3:{"split"-/Max}] new range lease replica {4 4 3} 1970-01-01 00:00:13.5 +0000 UTC 5.4s following replica {2 2 2} 1970-01-01 00:00:00.9 +0000 UTC 12.6s [physicalTime=1970-01-01 00:00:27 +0000 UTC] I161025 07:00:27.792376 22528 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/client_test.go:506 I161025 07:00:27.792603 22527 util/stop/stopper.go:425 quiescing; tasks left: 9 storage/client_test.go:506 2 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 I161025 07:00:27.802436 22526 util/stop/stopper.go:425 quiescing; tasks left: 8 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.844849 22526 util/stop/stopper.go:425 quiescing; tasks left: 7 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.845245 22526 util/stop/stopper.go:425 quiescing; tasks left: 6 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.858331 22526 util/stop/stopper.go:425 quiescing; tasks left: 4 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 I161025 07:00:27.858684 22526 util/stop/stopper.go:425 quiescing; tasks left: 4 storage/client_test.go:506 1 storage/queue.go:614 1 storage/queue.go:467 1 storage/intent_resolver.go:381 E161025 07:00:27.882063 21558 storage/queue.go:558 [replicate] on [n1,s1,r1/1:{/Min-"split"}]: [n1,s1,r1/1:{/Min-"split"}]: could not obtain lease: node unavailable; try another peer I161025 07:00:27.883430 22527 util/stop/stopper.go:425 quiescing; tasks left: 8 storage/client_test.go:506 2 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 E161025 07:00:27.884194 21075 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous I161025 07:00:27.885079 22529 util/stop/stopper.go:425 quiescing; tasks left: 2 storage/client_test.go:506 1 storage/replica_range_lease.go:150 I161025 07:00:27.885220 22526 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/queue.go:467 1 storage/intent_resolver.go:381 1 storage/client_test.go:506 I161025 07:00:27.885336 22527 util/stop/stopper.go:425 quiescing; tasks left: 6 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 I161025 07:00:27.904724 22527 util/stop/stopper.go:425 quiescing; tasks left: 5 storage/client_test.go:506 1 storage/replica_range_lease.go:150 1 storage/intent_resolver.go:316 W161025 07:00:27.908162 22281 storage/intent_resolver.go:378 could not GC completed transaction anchored at /Local/Range/"split"/RangeDescriptor: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.908462 22526 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/queue.go:467 1 storage/client_test.go:506 E161025 07:00:27.908856 21075 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:27.911705 22529 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/replica_range_lease.go:150 1 storage/client_test.go:506 I161025 07:00:27.912033 22529 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/client_test.go:506 W161025 07:00:27.925653 22289 storage/intent_resolver.go:313 [n2,s2,r1/2:{/Min-"split"}]: failed to push during intent resolution: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.925950 22527 util/stop/stopper.go:425 quiescing; tasks left: 5 storage/client_test.go:506 1 storage/replica_range_lease.go:150 E161025 07:00:27.931982 21472 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.932892 21472 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:27.935261 22527 util/stop/stopper.go:425 quiescing; tasks left: 4 storage/client_test.go:506 1 storage/replica_range_lease.go:150 E161025 07:00:27.937759 21098 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.940387 22527 util/stop/stopper.go:425 quiescing; tasks left: 3 storage/client_test.go:506 1 storage/replica_range_lease.go:150 I161025 07:00:27.942966 22527 util/stop/stopper.go:425 quiescing; tasks left: 2 storage/client_test.go:506 1 storage/replica_range_lease.go:150 E161025 07:00:27.943153 21266 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.944163 21004 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.945248 21004 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:27.945707 22527 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/replica_range_lease.go:150 1 storage/client_test.go:506 I161025 07:00:27.945971 22527 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/client_test.go:506 W161025 07:00:27.946420 22103 storage/intent_resolver.go:101 [s1] asynchronous resolveIntents failed: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer I161025 07:00:27.947446 22526 util/stop/stopper.go:425 quiescing; tasks left: 1 storage/queue.go:467 E161025 07:00:27.968215 21266 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.968453 21022 storage/queue.go:558 [replicaGC] on [n1,s1,r2/1:{"split"-/Max}]: failed to send RPC: sending to all 3 replicas failed; last error: range 1: replica {1 1 1} not lease holder; <nil> is I161025 07:00:27.968736 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks E161025 07:00:27.969749 21098 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.971575 21004 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.977287 21007 storage/node_liveness.go:141 [hb] failed liveness heartbeat: failed to send RPC: sending to all 3 replicas failed; last error: node unavailable; try another peer E161025 07:00:27.978663 21007 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer E161025 07:00:27.999359 21472 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:28.002023 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks W161025 07:00:28.017954 22419 storage/store.go:2897 [s5] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:5 StoreID:5 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161025 07:00:28.018330 22419 storage/store.go:2897 [s5] got error from range 2, replica {2 2 2}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:5 StoreID:5 ReplicaID:4}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2} W161025 07:00:28.020196 21768 storage/store.go:2897 [s3] got error from range 0, replica {1 1 0}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:3 StoreID:3 ReplicaID:0}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:0} I161025 07:00:28.022101 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks W161025 07:00:28.032963 21901 storage/raft_transport.go:463 no handler found for store 3 in response range_id:0 from_replica:<node_id:2 store_id:2 replica_id:0 > to_replica:<node_id:3 store_id:3 replica_id:0 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:3 StoreID:3 ReplicaID:0}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:0}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > E161025 07:00:28.042742 21266 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161025 07:00:28.043794 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks W161025 07:00:28.046586 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.046822 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047029 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047230 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047429 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > W161025 07:00:28.047652 22379 storage/raft_transport.go:463 no handler found for store 4 in response range_id:2 from_replica:<node_id:2 store_id:2 replica_id:2 > to_replica:<node_id:4 store_id:4 replica_id:3 > union:<error:<message:"storage/raft_transport.go:249: unable to accept Raft message from {NodeID:4 StoreID:4 ReplicaID:3}: no handler registered for {NodeID:2 StoreID:2 ReplicaID:2}" transaction_restart:NONE origin_node:0 now:<wall_time:0 logical:0 > > > I161025 07:00:28.049444 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.051472 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.053885 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.054825 21009 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:47909->127.0.0.1:52355: use of closed network connection I161025 07:00:28.055190 21306 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:40370->127.0.0.1:54737: use of closed network connection I161025 07:00:28.055526 21181 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:60110->127.0.0.1:49491: use of closed network connection I161025 07:00:28.055861 21063 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:36810->127.0.0.1:36186: use of closed network connection I161025 07:00:28.056569 20558 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161025 07:00:28.056901 21285 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161025 07:00:28.057225 21211 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. W161025 07:00:28.057590 22191 storage/raft_transport.go:428 raft transport stream to node 5 failed: EOF W161025 07:00:28.057802 22193 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF W161025 07:00:28.058006 22057 storage/raft_transport.go:428 raft transport stream to node 1 failed: EOF I161025 07:00:28.058773 20987 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:37344->127.0.0.1:42248: use of closed network connection I161025 07:00:28.059001 21011 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. W161025 07:00:28.059428 22054 storage/raft_transport.go:428 raft transport stream to node 4 failed: EOF I161025 07:00:28.059660 21213 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:60110: getsockopt: connection refused"; Reconnecting to {"127.0.0.1:60110" <nil>} I161025 07:00:28.059826 21213 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161025 07:00:28.060056 21013 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:37344: getsockopt: connection refused"; Reconnecting to {"127.0.0.1:37344" <nil>} I161025 07:00:28.060249 20945 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:35894->127.0.0.1:38481: use of closed network connection I161025 07:00:28.060887 21130 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161025 07:00:28.061184 21132 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:36810: operation was canceled"; Reconnecting to {"127.0.0.1:36810" <nil>} I161025 07:00:28.061282 21083 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken read tcp 127.0.0.1:38481->127.0.0.1:35894: read: connection reset by peer. I161025 07:00:28.061954 21287 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:40370: operation was canceled"; Reconnecting to {"127.0.0.1:40370" <nil>} I161025 07:00:28.062112 21287 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161025 07:00:28.062248 20560 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:47909: operation was canceled"; Reconnecting to {"127.0.0.1:47909" <nil>} I161025 07:00:28.062402 20560 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161025 07:00:28.062547 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.062917 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.063290 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.063606 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.063998 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks I161025 07:00:28.064325 22525 util/stop/stopper.go:353 stop has been called, stopping or quiescing all running tasks client_raft_test.go:1903: range 1: replica {3 3 3} not lease holder; node_id:3 store_id:3 replica_id:3 is ```
test
teststorerangerebalance failed under stress sha stress build found a failed test storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no resolvers found use join to specify a connected node base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage replica proposal go new range lease replica utc following replica utc storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip client go node started gossip client to gossip gossip go no incoming or outgoing connections base node id go nodeid set to gossip client go node started gossip client to gossip gossip go nodedescriptor set to node id address attrs locality storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality gossip client go node started gossip client to storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage engine rocksdb go opening in memory rocksdb instance gossip client go node started gossip client to gossip server go refusing gossip from node max conns forwarding to tcp gossip server go refusing gossip from node max conns forwarding to tcp gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to gossip server go refusing gossip from node max conns forwarding to tcp gossip client go node closing client to node received forward from node to gossip client go node started gossip client to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality gossip client go node started gossip client to gossip server go refusing gossip from node max conns forwarding to tcp gossip server go refusing gossip from node max conns forwarding to tcp gossip server go refusing gossip from node max conns forwarding to tcp gossip client go node closing client to node received forward from node to gossip client go node started gossip client to storage replica command go initiating a split of this range at key split storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key end key split replicas next replica id storage replica go proposing add replica nodeid storeid replicaid for range storage replica raftstorage go generated snapshot for range at index in storage raft transport go raft transport stream to node established storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key end key split replicas replicas next replica id storage replica go proposing add replica nodeid storeid replicaid for range storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage raft transport go raft transport stream to node established storage replica command go change replicas read existing descriptor range id start key split end key replicas next replica id storage intent resolver go failed to push during intent resolution failed to push change replica id key local range split rangedescriptor rw true pri iso serializable stat pending epo ts orig max wto false rop false storage intent resolver go failed to push during intent resolution failed to push change replica id key local range split rangedescriptor rw true pri iso serializable stat pending epo ts orig max wto false rop false storage replica go proposing add replica nodeid storeid replicaid for range storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key split end key replicas replicas next replica id storage raft transport go raft transport stream to node established storage replica go proposing add replica nodeid storeid replicaid for range storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key split end key replicas replicas replicas next replica id storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage replica go proposing add replica nodeid storeid replicaid for range storage raft transport go raft transport stream to node established storage replica command go change replicas read existing descriptor range id start key split end key replicas replicas replicas replicas next replica id storage replica go not quiescing pending commands storage replica go proposing remove replica nodeid storeid replicaid for range storage store go added to replica gc queue peer suggestion storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage raft transport go raft transport stream to node established storage replica proposal go new range lease replica utc following replica utc raft raft go stepped down to follower since quorum is not active storage replica proposal go new range lease replica utc following replica utc storage replica proposal go new range lease replica utc following replica utc storage node liveness go failed liveness heartbeat transaction commit result is ambiguous storage client test go gossip network initialized storage replica proposal go new range lease replica utc following replica utc util stop stopper go quiescing tasks left storage client test go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage intent resolver go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage queue go storage queue go storage intent resolver go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage queue go storage queue go storage intent resolver go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage queue go storage queue go storage intent resolver go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage queue go storage queue go storage intent resolver go util stop stopper go quiescing tasks left storage client test go storage queue go storage queue go storage intent resolver go storage queue go on could not obtain lease node unavailable try another peer util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage intent resolver go storage node liveness go failed liveness heartbeat transaction commit result is ambiguous util stop stopper go quiescing tasks left storage client test go storage replica range lease go util stop stopper go quiescing tasks left storage queue go storage intent resolver go storage client test go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage intent resolver go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage intent resolver go storage intent resolver go could not gc completed transaction anchored at local range split rangedescriptor failed to send rpc sending to all replicas failed last error node unavailable try another peer util stop stopper go quiescing tasks left storage queue go storage client test go storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go quiescing tasks left storage replica range lease go storage client test go util stop stopper go quiescing tasks left storage client test go storage intent resolver go failed to push during intent resolution failed to send rpc sending to all replicas failed last error node unavailable try another peer util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage node liveness go failed liveness heartbeat failed to send rpc sending to all replicas failed last error node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage node liveness go failed liveness heartbeat failed to send rpc sending to all replicas failed last error node unavailable try another peer util stop stopper go quiescing tasks left storage client test go storage replica range lease go util stop stopper go quiescing tasks left storage client test go storage replica range lease go storage node liveness go failed liveness heartbeat failed to send rpc sending to all replicas failed last error node unavailable try another peer storage node liveness go failed liveness heartbeat failed to send rpc sending to all replicas failed last error node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go quiescing tasks left storage replica range lease go storage client test go util stop stopper go quiescing tasks left storage client test go storage intent resolver go asynchronous resolveintents failed failed to send rpc sending to all replicas failed last error node unavailable try another peer util stop stopper go quiescing tasks left storage queue go storage node liveness go failed liveness heartbeat node unavailable try another peer storage queue go on failed to send rpc sending to all replicas failed last error range replica not lease holder is util stop stopper go stop has been called stopping or quiescing all running tasks storage node liveness go failed liveness heartbeat node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer storage node liveness go failed liveness heartbeat failed to send rpc sending to all replicas failed last error node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go stop has been called stopping or quiescing all running tasks storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid util stop stopper go stop has been called stopping or quiescing all running tasks storage raft transport go no handler found for store in response range id from replica to replica union storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go stop has been called stopping or quiescing all running tasks storage raft transport go no handler found for store in response range id from replica to replica union storage raft transport go no handler found for store in response range id from replica to replica union storage raft transport go no handler found for store in response range id from replica to replica union storage raft transport go no handler found for store in response range id from replica to replica union storage raft transport go no handler found for store in response range id from replica to replica union storage raft transport go no handler found for store in response range id from replica to replica union util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks server go transport handlestreams failed to read frame read tcp use of closed network connection server go transport handlestreams failed to read frame read tcp use of closed network connection server go transport handlestreams failed to read frame read tcp use of closed network connection server go transport handlestreams failed to read frame read tcp use of closed network connection client go transport notifyerror got notified that the client transport was broken eof client go transport notifyerror got notified that the client transport was broken eof client go transport notifyerror got notified that the client transport was broken eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof storage raft transport go raft transport stream to node failed eof server go transport handlestreams failed to read frame read tcp use of closed network connection client go transport notifyerror got notified that the client transport was broken eof storage raft transport go raft transport stream to node failed eof go src google golang org grpc clientconn go grpc addrconn resettransport failed to create client transport connection error desc transport dial tcp getsockopt connection refused reconnecting to go src google golang org grpc clientconn go grpc addrconn transportmonitor exits due to grpc the connection is closing go src google golang org grpc clientconn go grpc addrconn resettransport failed to create client transport connection error desc transport dial tcp getsockopt connection refused reconnecting to server go transport handlestreams failed to read frame read tcp use of closed network connection client go transport notifyerror got notified that the client transport was broken eof go src google golang org grpc clientconn go grpc addrconn resettransport failed to create client transport connection error desc transport dial tcp operation was canceled reconnecting to client go transport notifyerror got notified that the client transport was broken read tcp read connection reset by peer go src google golang org grpc clientconn go grpc addrconn resettransport failed to create client transport connection error desc transport dial tcp operation was canceled reconnecting to go src google golang org grpc clientconn go grpc addrconn transportmonitor exits due to grpc the connection is closing go src google golang org grpc clientconn go grpc addrconn resettransport failed to create client transport connection error desc transport dial tcp operation was canceled reconnecting to go src google golang org grpc clientconn go grpc addrconn transportmonitor exits due to grpc the connection is closing util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks client raft test go range replica not lease holder node id store id replica id is
1
65,423
6,963,550,626
IssuesEvent
2017-12-08 17:50:44
LiskHQ/lisk
https://api.github.com/repos/LiskHQ/lisk
opened
Fix test/functional/http/post
*medium test
Parent: #972 Adjust `test/functional/http/post` in order to work with new transaction pool. - [ ] 0.transfer.js - [ ] 1.second.secret.js - [ ] 2.delegate.js - [ ] 3.votes.js - [ ] 4.multisig.js - [ ] 5.dapps.js - [ ] 6.dapps.inTransfer.js - [ ] 7.dapps.outTransfer.js
1.0
Fix test/functional/http/post - Parent: #972 Adjust `test/functional/http/post` in order to work with new transaction pool. - [ ] 0.transfer.js - [ ] 1.second.secret.js - [ ] 2.delegate.js - [ ] 3.votes.js - [ ] 4.multisig.js - [ ] 5.dapps.js - [ ] 6.dapps.inTransfer.js - [ ] 7.dapps.outTransfer.js
test
fix test functional http post parent adjust test functional http post in order to work with new transaction pool transfer js second secret js delegate js votes js multisig js dapps js dapps intransfer js dapps outtransfer js
1
33,562
16,018,636,873
IssuesEvent
2021-04-20 19:23:35
ClickHouse/ClickHouse
https://api.github.com/repos/ClickHouse/ClickHouse
closed
Improvements for ALIAS columns performance
comp-alias-columns enhancement performance st-fixed
Hi, I am trying to create a distributed table for use with Mondrian. This requires dimensions to exist in seperate columns. Normally I would join to a seperate date dimension table but this isn't possible due to the non standard join syntax. This is time series data and due to the scale of it it is important that I take advantage of the partitioned nature of mergetree. I have done a partial load of the data and find that there is a difference between: The shard tables include a column: `month UInt8 ALIAS toMonth(datekey)` `select count() from table where toMonth(datekey)=11 ` and `select count() from table where month=11` Both queries return the same correct result, however the first touches only 8 million rows (which is expected for that month) and the second touches the full 25 million in the dataset. It looks like an aliased column definition isn't being expanded early enough for the query optimiser? Is there any suggestions as to how else I could have a 'month' column that takes advantage of mergetree's date partitioning?
True
Improvements for ALIAS columns performance - Hi, I am trying to create a distributed table for use with Mondrian. This requires dimensions to exist in seperate columns. Normally I would join to a seperate date dimension table but this isn't possible due to the non standard join syntax. This is time series data and due to the scale of it it is important that I take advantage of the partitioned nature of mergetree. I have done a partial load of the data and find that there is a difference between: The shard tables include a column: `month UInt8 ALIAS toMonth(datekey)` `select count() from table where toMonth(datekey)=11 ` and `select count() from table where month=11` Both queries return the same correct result, however the first touches only 8 million rows (which is expected for that month) and the second touches the full 25 million in the dataset. It looks like an aliased column definition isn't being expanded early enough for the query optimiser? Is there any suggestions as to how else I could have a 'month' column that takes advantage of mergetree's date partitioning?
non_test
improvements for alias columns performance hi i am trying to create a distributed table for use with mondrian this requires dimensions to exist in seperate columns normally i would join to a seperate date dimension table but this isn t possible due to the non standard join syntax this is time series data and due to the scale of it it is important that i take advantage of the partitioned nature of mergetree i have done a partial load of the data and find that there is a difference between the shard tables include a column month alias tomonth datekey select count from table where tomonth datekey and select count from table where month both queries return the same correct result however the first touches only million rows which is expected for that month and the second touches the full million in the dataset it looks like an aliased column definition isn t being expanded early enough for the query optimiser is there any suggestions as to how else i could have a month column that takes advantage of mergetree s date partitioning
0
1,089
2,531,723,684
IssuesEvent
2015-01-23 10:06:34
HeikoBecker/Repograms
https://api.github.com/repos/HeikoBecker/Repograms
closed
Commit message length metric
JavaScript metric need testing
**Metric description:** this metric captures the number of words in each commit log message. **Metric details:** We define the number of words as the number of whitespace stretches + 1 (in regex: /\s+/g) (commit message should be .trim()’d before counting). This way we can count hyperlinks, numbers, etc as a single word. This method does not take into consideration bad grammar (such as “Fixed bug #123.Added feature X” - note the missing space after the period). However we should not try to include periods as a word separator because then we’ll have problems with decimal numbers, URLs, IP addresses, etc. Input: one repository Output: list of pairs of values [(blen1,bmetric1),...,(blenN,bmetricN)], blen type is float, bmetric type is integer. blen is the churn and bmetric is the number of /\s+/g + 1 in the trimmed commit message. If the commit message is empty/whitespace-only this should be 0. post conditions: blen > 0, bmetric >= 0
1.0
Commit message length metric - **Metric description:** this metric captures the number of words in each commit log message. **Metric details:** We define the number of words as the number of whitespace stretches + 1 (in regex: /\s+/g) (commit message should be .trim()’d before counting). This way we can count hyperlinks, numbers, etc as a single word. This method does not take into consideration bad grammar (such as “Fixed bug #123.Added feature X” - note the missing space after the period). However we should not try to include periods as a word separator because then we’ll have problems with decimal numbers, URLs, IP addresses, etc. Input: one repository Output: list of pairs of values [(blen1,bmetric1),...,(blenN,bmetricN)], blen type is float, bmetric type is integer. blen is the churn and bmetric is the number of /\s+/g + 1 in the trimmed commit message. If the commit message is empty/whitespace-only this should be 0. post conditions: blen > 0, bmetric >= 0
test
commit message length metric metric description this metric captures the number of words in each commit log message metric details we define the number of words as the number of whitespace stretches in regex s g commit message should be trim ’d before counting this way we can count hyperlinks numbers etc as a single word this method does not take into consideration bad grammar such as “fixed bug added feature x” note the missing space after the period however we should not try to include periods as a word separator because then we’ll have problems with decimal numbers urls ip addresses etc input one repository output list of pairs of values blen type is float bmetric type is integer blen is the churn and bmetric is the number of s g in the trimmed commit message if the commit message is empty whitespace only this should be post conditions blen bmetric
1
440,182
30,733,782,776
IssuesEvent
2023-07-28 05:35:40
ACCESS-Hive/access-hive.github.io
https://api.github.com/repos/ACCESS-Hive/access-hive.github.io
closed
RUN A MODEL: Need to write/fill content on how to run ACCESS-AM
documentation
RUN A MODEL: Need to write/fill content on how to run ACCESS-AM
1.0
RUN A MODEL: Need to write/fill content on how to run ACCESS-AM - RUN A MODEL: Need to write/fill content on how to run ACCESS-AM
non_test
run a model need to write fill content on how to run access am run a model need to write fill content on how to run access am
0
153,718
12,158,555,949
IssuesEvent
2020-04-26 04:39:02
AdventistCommons/adventistcommons.org
https://api.github.com/repos/AdventistCommons/adventistcommons.org
closed
Product Manager Label
To test question
Can it be that by default everyone is labeled product manager? ![Screen Shot 2020-04-25 at 7 34 02 PM](https://user-images.githubusercontent.com/51795720/80285187-dd0a3a80-872b-11ea-8e9d-51b7ed0644a1.png)
1.0
Product Manager Label - Can it be that by default everyone is labeled product manager? ![Screen Shot 2020-04-25 at 7 34 02 PM](https://user-images.githubusercontent.com/51795720/80285187-dd0a3a80-872b-11ea-8e9d-51b7ed0644a1.png)
test
product manager label can it be that by default everyone is labeled product manager
1
149,850
11,937,629,107
IssuesEvent
2020-04-02 12:30:38
TiK15Ryyb/etasitsit-frontend
https://api.github.com/repos/TiK15Ryyb/etasitsit-frontend
closed
Fix tests and enable them in Jenkinsfile
CI bug test
By enable, I mean 'remove the `|| true` after `yarn test` step. Redux store is not configured correctly. ```yarn test yarn run v1.19.1 $ jest FAIL __tests__/App.test.js ��� Console console.error node_modules/jest-prop-type-error/index.js:8 Error: Uncaught [Invariant Violation: Could not find "store" in the context of "Connect(App)". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(App) in connect options.] at reportException (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js:66:24) at invokeEventListeners (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:209:9) at HTMLUnknownElementImpl._dispatch (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:119:9) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:82:17) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js:30:27) at HTMLUnknownElement.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:157:21) at Object.invokeGuardedCallbackDev (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:237:16) at invokeGuardedCallback (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:292:31) at beginWork$1 (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:23203:7) at performUnitOfWork (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:22157:12) Invariant Violation: Could not find "store" in the context of "Connect(App)". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(App) in connect options. at invariant (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/invariant/browser.js:38:15) at Connect.renderWrappedComponent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-redux/lib/components/connectAdvanced.js:172:32) at Connect.indirectRenderWrappedComponent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-redux/lib/components/connectAdvanced.js:168:21) at updateContextConsumer (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:18304:19) at beginWork (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:18661:14) at HTMLUnknownElement.callCallback (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:188:14) at invokeEventListeners (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:193:27) at HTMLUnknownElementImpl._dispatch (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:119:9) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:82:17) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js:30:27) at HTMLUnknownElement.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:157:21) at Object.invokeGuardedCallbackDev (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:237:16) at invokeGuardedCallback (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:292:31) at beginWork$1 (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:23203:7) at performUnitOfWork (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:22157:12) at workLoopSync (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:22130:22) at performSyncWorkOnRoot (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21756:9) at scheduleUpdateOnFiber (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21188:7) at updateContainer (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24373:3) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24758:7 at unbatchedUpdates (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21903:12) at legacyRenderSubtreeIntoContainer (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24757:5) at Object.render (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24840:10) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/@testing-library/react/dist/pure.js:86:25 at batchedUpdates$1 (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21856:12) at act (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom-test-utils.development.js:929:14) at render (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/@testing-library/react/dist/pure.js:82:26) at Object.<anonymous> (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/__tests__/App.test.js:6:25) at Object.asyncJestTest (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/jasmineAsyncInstall.js:102:37) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/queueRunner.js:43:12 at new Promise (<anonymous>) at mapper (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/queueRunner.js:26:19) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/queueRunner.js:73:41 at processTicksAndRejections (internal/process/task_queues.js:93:5) { name: 'Invariant Violation', framesToPop: 1 } console.error node_modules/jest-prop-type-error/index.js:8 The above error occurred in the <Context.Consumer> component: in Connect(App) Consider adding an error boundary to your tree to customize error handling behavior. Visit https://fb.me/react-error-boundaries to learn more about error boundaries. ��� renders learn react link Invariant Violation: Could not find "store" in the context of "Connect(App)". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(App) in connect options. 4 | 5 | test("renders learn react link", () => { > 6 | const { getByText } = render(<App />); | ^ 7 | const linkElement = getByText(/learn react/i); 8 | expect(linkElement).toBeInTheDocument(); 9 | }); at invariant (node_modules/invariant/browser.js:38:15) at Connect.renderWrappedComponent (node_modules/react-redux/lib/components/connectAdvanced.js:172:32) at Connect.indirectRenderWrappedComponent (node_modules/react-redux/lib/components/connectAdvanced.js:168:21) at updateContextConsumer (node_modules/react-dom/cjs/react-dom.development.js:18304:19) at beginWork (node_modules/react-dom/cjs/react-dom.development.js:18661:14) at HTMLUnknownElement.callCallback (node_modules/react-dom/cjs/react-dom.development.js:188:14) at invokeEventListeners (node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:193:27) at HTMLUnknownElementImpl._dispatch (node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:119:9) at HTMLUnknownElementImpl.dispatchEvent (node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:82:17) at HTMLUnknownElementImpl.dispatchEvent (node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js:30:27) at HTMLUnknownElement.dispatchEvent (node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:157:21) at Object.invokeGuardedCallbackDev (node_modules/react-dom/cjs/react-dom.development.js:237:16) at invokeGuardedCallback (node_modules/react-dom/cjs/react-dom.development.js:292:31) at beginWork$1 (node_modules/react-dom/cjs/react-dom.development.js:23203:7) at performUnitOfWork (node_modules/react-dom/cjs/react-dom.development.js:22157:12) at workLoopSync (node_modules/react-dom/cjs/react-dom.development.js:22130:22) at performSyncWorkOnRoot (node_modules/react-dom/cjs/react-dom.development.js:21756:9) at scheduleUpdateOnFiber (node_modules/react-dom/cjs/react-dom.development.js:21188:7) at updateContainer (node_modules/react-dom/cjs/react-dom.development.js:24373:3) at node_modules/react-dom/cjs/react-dom.development.js:24758:7 at unbatchedUpdates (node_modules/react-dom/cjs/react-dom.development.js:21903:12) at legacyRenderSubtreeIntoContainer (node_modules/react-dom/cjs/react-dom.development.js:24757:5) at Object.render (node_modules/react-dom/cjs/react-dom.development.js:24840:10) at node_modules/@testing-library/react/dist/pure.js:86:25 at batchedUpdates$1 (node_modules/react-dom/cjs/react-dom.development.js:21856:12) at act (node_modules/react-dom/cjs/react-dom-test-utils.development.js:929:14) at render (node_modules/@testing-library/react/dist/pure.js:82:26) at Object.<anonymous> (__tests__/App.test.js:6:25) ----------|----------|----------|----------|----------|-------------------| File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s | ----------|----------|----------|----------|----------|-------------------| All files | 0 | 0 | 0 | 0 | | ----------|----------|----------|----------|----------|-------------------| Test Suites: 1 failed, 1 total Tests: 1 failed, 1 total Snapshots: 0 total Time: 2.71s Ran all test suites.```
1.0
Fix tests and enable them in Jenkinsfile - By enable, I mean 'remove the `|| true` after `yarn test` step. Redux store is not configured correctly. ```yarn test yarn run v1.19.1 $ jest FAIL __tests__/App.test.js ��� Console console.error node_modules/jest-prop-type-error/index.js:8 Error: Uncaught [Invariant Violation: Could not find "store" in the context of "Connect(App)". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(App) in connect options.] at reportException (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js:66:24) at invokeEventListeners (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:209:9) at HTMLUnknownElementImpl._dispatch (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:119:9) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:82:17) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js:30:27) at HTMLUnknownElement.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:157:21) at Object.invokeGuardedCallbackDev (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:237:16) at invokeGuardedCallback (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:292:31) at beginWork$1 (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:23203:7) at performUnitOfWork (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:22157:12) Invariant Violation: Could not find "store" in the context of "Connect(App)". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(App) in connect options. at invariant (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/invariant/browser.js:38:15) at Connect.renderWrappedComponent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-redux/lib/components/connectAdvanced.js:172:32) at Connect.indirectRenderWrappedComponent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-redux/lib/components/connectAdvanced.js:168:21) at updateContextConsumer (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:18304:19) at beginWork (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:18661:14) at HTMLUnknownElement.callCallback (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:188:14) at invokeEventListeners (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:193:27) at HTMLUnknownElementImpl._dispatch (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:119:9) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:82:17) at HTMLUnknownElementImpl.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js:30:27) at HTMLUnknownElement.dispatchEvent (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:157:21) at Object.invokeGuardedCallbackDev (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:237:16) at invokeGuardedCallback (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:292:31) at beginWork$1 (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:23203:7) at performUnitOfWork (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:22157:12) at workLoopSync (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:22130:22) at performSyncWorkOnRoot (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21756:9) at scheduleUpdateOnFiber (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21188:7) at updateContainer (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24373:3) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24758:7 at unbatchedUpdates (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21903:12) at legacyRenderSubtreeIntoContainer (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24757:5) at Object.render (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:24840:10) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/@testing-library/react/dist/pure.js:86:25 at batchedUpdates$1 (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom.development.js:21856:12) at act (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/react-dom/cjs/react-dom-test-utils.development.js:929:14) at render (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/@testing-library/react/dist/pure.js:82:26) at Object.<anonymous> (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/__tests__/App.test.js:6:25) at Object.asyncJestTest (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/jasmineAsyncInstall.js:102:37) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/queueRunner.js:43:12 at new Promise (<anonymous>) at mapper (/home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/queueRunner.js:26:19) at /home/jenkins/workspace/15Ryyb_etasitsit-frontend_master/node_modules/jest-jasmine2/build/queueRunner.js:73:41 at processTicksAndRejections (internal/process/task_queues.js:93:5) { name: 'Invariant Violation', framesToPop: 1 } console.error node_modules/jest-prop-type-error/index.js:8 The above error occurred in the <Context.Consumer> component: in Connect(App) Consider adding an error boundary to your tree to customize error handling behavior. Visit https://fb.me/react-error-boundaries to learn more about error boundaries. ��� renders learn react link Invariant Violation: Could not find "store" in the context of "Connect(App)". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(App) in connect options. 4 | 5 | test("renders learn react link", () => { > 6 | const { getByText } = render(<App />); | ^ 7 | const linkElement = getByText(/learn react/i); 8 | expect(linkElement).toBeInTheDocument(); 9 | }); at invariant (node_modules/invariant/browser.js:38:15) at Connect.renderWrappedComponent (node_modules/react-redux/lib/components/connectAdvanced.js:172:32) at Connect.indirectRenderWrappedComponent (node_modules/react-redux/lib/components/connectAdvanced.js:168:21) at updateContextConsumer (node_modules/react-dom/cjs/react-dom.development.js:18304:19) at beginWork (node_modules/react-dom/cjs/react-dom.development.js:18661:14) at HTMLUnknownElement.callCallback (node_modules/react-dom/cjs/react-dom.development.js:188:14) at invokeEventListeners (node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:193:27) at HTMLUnknownElementImpl._dispatch (node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:119:9) at HTMLUnknownElementImpl.dispatchEvent (node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:82:17) at HTMLUnknownElementImpl.dispatchEvent (node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js:30:27) at HTMLUnknownElement.dispatchEvent (node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:157:21) at Object.invokeGuardedCallbackDev (node_modules/react-dom/cjs/react-dom.development.js:237:16) at invokeGuardedCallback (node_modules/react-dom/cjs/react-dom.development.js:292:31) at beginWork$1 (node_modules/react-dom/cjs/react-dom.development.js:23203:7) at performUnitOfWork (node_modules/react-dom/cjs/react-dom.development.js:22157:12) at workLoopSync (node_modules/react-dom/cjs/react-dom.development.js:22130:22) at performSyncWorkOnRoot (node_modules/react-dom/cjs/react-dom.development.js:21756:9) at scheduleUpdateOnFiber (node_modules/react-dom/cjs/react-dom.development.js:21188:7) at updateContainer (node_modules/react-dom/cjs/react-dom.development.js:24373:3) at node_modules/react-dom/cjs/react-dom.development.js:24758:7 at unbatchedUpdates (node_modules/react-dom/cjs/react-dom.development.js:21903:12) at legacyRenderSubtreeIntoContainer (node_modules/react-dom/cjs/react-dom.development.js:24757:5) at Object.render (node_modules/react-dom/cjs/react-dom.development.js:24840:10) at node_modules/@testing-library/react/dist/pure.js:86:25 at batchedUpdates$1 (node_modules/react-dom/cjs/react-dom.development.js:21856:12) at act (node_modules/react-dom/cjs/react-dom-test-utils.development.js:929:14) at render (node_modules/@testing-library/react/dist/pure.js:82:26) at Object.<anonymous> (__tests__/App.test.js:6:25) ----------|----------|----------|----------|----------|-------------------| File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s | ----------|----------|----------|----------|----------|-------------------| All files | 0 | 0 | 0 | 0 | | ----------|----------|----------|----------|----------|-------------------| Test Suites: 1 failed, 1 total Tests: 1 failed, 1 total Snapshots: 0 total Time: 2.71s Ran all test suites.```
test
fix tests and enable them in jenkinsfile by enable i mean remove the true after yarn test step redux store is not configured correctly yarn test yarn run jest fail tests app test js ��� console console error node modules jest prop type error index js error uncaught at reportexception home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living helpers runtime script errors js at invokeeventlisteners home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatch home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatchevent home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatchevent home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living nodes htmlelement impl js at htmlunknownelement dispatchevent home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living generated eventtarget js at object invokeguardedcallbackdev home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at invokeguardedcallback home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at beginwork home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at performunitofwork home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js invariant violation could not find store in the context of connect app either wrap the root component in a or pass a custom react context provider to and the corresponding react context consumer to connect app in connect options at invariant home jenkins workspace etasitsit frontend master node modules invariant browser js at connect renderwrappedcomponent home jenkins workspace etasitsit frontend master node modules react redux lib components connectadvanced js at connect indirectrenderwrappedcomponent home jenkins workspace etasitsit frontend master node modules react redux lib components connectadvanced js at updatecontextconsumer home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at beginwork home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at htmlunknownelement callcallback home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at invokeeventlisteners home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatch home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatchevent home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatchevent home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living nodes htmlelement impl js at htmlunknownelement dispatchevent home jenkins workspace etasitsit frontend master node modules jsdom lib jsdom living generated eventtarget js at object invokeguardedcallbackdev home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at invokeguardedcallback home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at beginwork home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at performunitofwork home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at workloopsync home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at performsyncworkonroot home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at scheduleupdateonfiber home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at updatecontainer home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at unbatchedupdates home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at legacyrendersubtreeintocontainer home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at object render home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at home jenkins workspace etasitsit frontend master node modules testing library react dist pure js at batchedupdates home jenkins workspace etasitsit frontend master node modules react dom cjs react dom development js at act home jenkins workspace etasitsit frontend master node modules react dom cjs react dom test utils development js at render home jenkins workspace etasitsit frontend master node modules testing library react dist pure js at object home jenkins workspace etasitsit frontend master tests app test js at object asyncjesttest home jenkins workspace etasitsit frontend master node modules jest build jasmineasyncinstall js at home jenkins workspace etasitsit frontend master node modules jest build queuerunner js at new promise at mapper home jenkins workspace etasitsit frontend master node modules jest build queuerunner js at home jenkins workspace etasitsit frontend master node modules jest build queuerunner js at processticksandrejections internal process task queues js name invariant violation framestopop console error node modules jest prop type error index js the above error occurred in the component in connect app consider adding an error boundary to your tree to customize error handling behavior visit to learn more about error boundaries ��� renders learn react link invariant violation could not find store in the context of connect app either wrap the root component in a or pass a custom react context provider to and the corresponding react context consumer to connect app in connect options test renders learn react link const getbytext render const linkelement getbytext learn react i expect linkelement tobeinthedocument at invariant node modules invariant browser js at connect renderwrappedcomponent node modules react redux lib components connectadvanced js at connect indirectrenderwrappedcomponent node modules react redux lib components connectadvanced js at updatecontextconsumer node modules react dom cjs react dom development js at beginwork node modules react dom cjs react dom development js at htmlunknownelement callcallback node modules react dom cjs react dom development js at invokeeventlisteners node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatch node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatchevent node modules jsdom lib jsdom living events eventtarget impl js at htmlunknownelementimpl dispatchevent node modules jsdom lib jsdom living nodes htmlelement impl js at htmlunknownelement dispatchevent node modules jsdom lib jsdom living generated eventtarget js at object invokeguardedcallbackdev node modules react dom cjs react dom development js at invokeguardedcallback node modules react dom cjs react dom development js at beginwork node modules react dom cjs react dom development js at performunitofwork node modules react dom cjs react dom development js at workloopsync node modules react dom cjs react dom development js at performsyncworkonroot node modules react dom cjs react dom development js at scheduleupdateonfiber node modules react dom cjs react dom development js at updatecontainer node modules react dom cjs react dom development js at node modules react dom cjs react dom development js at unbatchedupdates node modules react dom cjs react dom development js at legacyrendersubtreeintocontainer node modules react dom cjs react dom development js at object render node modules react dom cjs react dom development js at node modules testing library react dist pure js at batchedupdates node modules react dom cjs react dom development js at act node modules react dom cjs react dom test utils development js at render node modules testing library react dist pure js at object tests app test js file stmts branch funcs lines uncovered line s all files test suites failed total tests failed total snapshots total time ran all test suites
1
314,212
26,983,132,653
IssuesEvent
2023-02-09 14:27:39
eclipse-openj9/openj9
https://api.github.com/repos/eclipse-openj9/openj9
closed
TestFileLocking_FAILED IOException: The file access permissions do not allow the specified action
test failure arch:power
Failure link ------------ From [an internal build](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk8_j9_extended.functional_ppc64_aix_testList_2/395/)(`paix819`): ``` openjdk version "1.8.0_372-beta" IBM Semeru Runtime Open Edition (build 1.8.0_372-beta-202302072336-b01) Eclipse OpenJ9 VM (build master-34eacb423, JRE 1.8.0 AIX ppc64-64-Bit Compressed References 20230207_577 (JIT enabled, AOT enabled) OpenJ9 - 34eacb423 OMR - 706ea4ac5 JCL - dcf84eb97 based on jdk8u372-b01) ``` [Rerun in Grinder](https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/parambuild/?SDK_RESOURCE=customized&amp;TARGET=TestFileLocking_SE80_0&amp;TEST_FLAG=&amp;UPSTREAM_TEST_JOB_NAME=Test_openjdk8_j9_extended.functional_ppc64_aix&amp;DOCKER_REQUIRED=false&amp;ACTIVE_NODE_TIMEOUT=0&amp;VENDOR_TEST_DIRS=functional&amp;EXTRA_DOCKER_ARGS=&amp;TKG_OWNER_BRANCH=adoptium%3Amaster&amp;OPENJ9_SYSTEMTEST_OWNER_BRANCH=eclipse%3Amaster&amp;PLATFORM=ppc64_aix&amp;GENERATE_JOBS=true&amp;KEEP_REPORTDIR=false&amp;PERSONAL_BUILD=false&amp;DOCKER_REGISTRY_DIR=&amp;ADOPTOPENJDK_REPO=https%3A%2F%2Fgithub.com%2Fadoptium%2Faqa-tests.git&amp;RERUN_ITERATIONS=3&amp;SETUP_JCK_RUN=false&amp;DOCKER_REGISTRY_URL_CREDENTIAL_ID=&amp;LABEL=&amp;EXTRA_OPTIONS=&amp;CUSTOMIZED_SDK_URL=+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-testimage_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-jdk_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-debugimage_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-jre_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz&amp;BUILD_IDENTIFIER=&amp;ADOPTOPENJDK_BRANCH=master&amp;LIGHT_WEIGHT_CHECKOUT=false&amp;USE_JRE=false&amp;ARTIFACTORY_SERVER=na.artifactory.swg-devops&amp;KEEP_WORKSPACE=false&amp;USER_CREDENTIALS_ID=83181e25-eea4-4f55-8b3e-e79615733226&amp;JDK_VERSION=8&amp;DOCKER_REGISTRY_URL=&amp;ITERATIONS=1&amp;VENDOR_TEST_REPOS=git%40github.ibm.com%3Aruntimes%2Ftest.git&amp;JDK_REPO=https%3A%2F%2Fgithub.com%2Fibmruntimes%2Fopenj9-openjdk-jdk8&amp;JCK_GIT_BRANCH=main&amp;RELEASE_TAG=&amp;OPENJ9_BRANCH=master&amp;OPENJ9_SHA=&amp;JCK_GIT_REPO=&amp;VENDOR_TEST_BRANCHES=master&amp;OPENJ9_REPO=https%3A%2F%2Fgithub.com%2Feclipse-openj9%2Fopenj9.git&amp;UPSTREAM_JOB_NAME=&amp;CLOUD_PROVIDER=&amp;CUSTOM_TARGET=&amp;VENDOR_TEST_SHAS=&amp;JDK_BRANCH=openj9&amp;LABEL_ADDITION=&amp;ARTIFACTORY_REPO=&amp;ARTIFACTORY_ROOT_DIR=&amp;UPSTREAM_TEST_JOB_NUMBER=448&amp;DOCKERIMAGE_TAG=&amp;JDK_IMPL=openj9&amp;TEST_TIME=&amp;SSH_AGENT_CREDENTIAL=83181e25-eea4-4f55-8b3e-e79615733226&amp;AUTO_DETECT=true&amp;SLACK_CHANNEL=%23rt-jenkins&amp;DYNAMIC_COMPILE=true&amp;ADOPTOPENJDK_SYSTEMTEST_OWNER_BRANCH=adoptium%3Amaster&amp;APPLICATION_OPTIONS=&amp;CUSTOMIZED_SDK_URL_CREDENTIAL_ID=4e18ffe7-b1b1-4272-9979-99769b68bcc2&amp;ARCHIVE_TEST_RESULTS=false&amp;NUM_MACHINES=&amp;OPENJDK_SHA=&amp;TRSS_URL=http%3A%2F%2Ftrss1.fyre.ibm.com&amp;USE_TESTENV_PROPERTIES=false&amp;BUILD_LIST=functional&amp;UPSTREAM_JOB_NUMBER=&amp;STF_OWNER_BRANCH=adoptium%3Amaster&amp;TIME_LIMIT=20&amp;JVM_OPTIONS=&amp;PARALLEL=None) - Change TARGET to run only the failed test targets. Optional info ------------- Failure output (captured from console output) --------------------------------------------- ``` [2023-02-08T01:29:07.779Z] variation: NoOptions [2023-02-08T01:29:07.779Z] JVM_OPTIONS: [2023-02-08T01:29:09.405Z] java.io.IOException: The file access permissions do not allow the specified action. [2023-02-08T01:29:09.405Z] at java.io.UnixFileSystem.createFileExclusively(Native Method) [2023-02-08T01:29:09.405Z] at java.io.File.createNewFile(File.java:1023) [2023-02-08T01:29:09.405Z] at org.openj9.test.fileLock.TestFileLocking.setUp(TestFileLocking.java:87) [2023-02-08T01:29:09.405Z] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [2023-02-08T01:29:09.406Z] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) [2023-02-08T01:29:09.406Z] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [2023-02-08T01:29:09.406Z] at java.lang.reflect.Method.invoke(Method.java:498) [2023-02-08T01:29:09.406Z] at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:124) [2023-02-08T01:29:09.406Z] at org.testng.internal.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:59) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:455) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:222) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeMethod(Invoker.java:520) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:716) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:988) [2023-02-08T01:29:09.406Z] at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:125) [2023-02-08T01:29:09.406Z] at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) [2023-02-08T01:29:09.406Z] at org.testng.TestRunner.privateRun(TestRunner.java:648) [2023-02-08T01:29:09.406Z] at org.testng.TestRunner.run(TestRunner.java:505) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.runTest(SuiteRunner.java:455) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:450) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.privateRun(SuiteRunner.java:415) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.run(SuiteRunner.java:364) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:84) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.runSuitesSequentially(TestNG.java:1208) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.runSuitesLocally(TestNG.java:1137) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.runSuites(TestNG.java:1049) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.run(TestNG.java:1017) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.privateMain(TestNG.java:1354) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.main(TestNG.java:1323) [2023-02-08T01:29:09.406Z] [TestFileLocking] [ERROR] error creating lockfile /tmp/lockDir/lockFile [2023-02-08T01:29:09.406Z] FAILED CONFIGURATION: @BeforeMethod setUp(public void org.openj9.test.fileLock.TestFileLocking.testCB_CB()) [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] TestFileLocking [2023-02-08T01:29:09.416Z] Tests run: 17, Failures: 0, Skips: 17 [2023-02-08T01:29:09.416Z] Configuration Failures: 1, Skips: 33 [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] [2023-02-08T01:29:09.416Z] [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] GeneralTest suite [2023-02-08T01:29:09.416Z] Total tests run: 17, Failures: 0, Skips: 17 [2023-02-08T01:29:09.416Z] Configuration Failures: 1, Skips: 33 [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] [2023-02-08T01:29:10.262Z] ----------------------------------- [2023-02-08T01:29:10.262Z] TestFileLocking_SE80_0_FAILED ``` Also seen on [ppc64le_linux](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk8_j9_extended.functional_ppc64le_linux_testList_2/410/) [JDK19](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk19_j9_extended.functional_ppc64le_linux_testList_1/94/)
1.0
TestFileLocking_FAILED IOException: The file access permissions do not allow the specified action - Failure link ------------ From [an internal build](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk8_j9_extended.functional_ppc64_aix_testList_2/395/)(`paix819`): ``` openjdk version "1.8.0_372-beta" IBM Semeru Runtime Open Edition (build 1.8.0_372-beta-202302072336-b01) Eclipse OpenJ9 VM (build master-34eacb423, JRE 1.8.0 AIX ppc64-64-Bit Compressed References 20230207_577 (JIT enabled, AOT enabled) OpenJ9 - 34eacb423 OMR - 706ea4ac5 JCL - dcf84eb97 based on jdk8u372-b01) ``` [Rerun in Grinder](https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/parambuild/?SDK_RESOURCE=customized&amp;TARGET=TestFileLocking_SE80_0&amp;TEST_FLAG=&amp;UPSTREAM_TEST_JOB_NAME=Test_openjdk8_j9_extended.functional_ppc64_aix&amp;DOCKER_REQUIRED=false&amp;ACTIVE_NODE_TIMEOUT=0&amp;VENDOR_TEST_DIRS=functional&amp;EXTRA_DOCKER_ARGS=&amp;TKG_OWNER_BRANCH=adoptium%3Amaster&amp;OPENJ9_SYSTEMTEST_OWNER_BRANCH=eclipse%3Amaster&amp;PLATFORM=ppc64_aix&amp;GENERATE_JOBS=true&amp;KEEP_REPORTDIR=false&amp;PERSONAL_BUILD=false&amp;DOCKER_REGISTRY_DIR=&amp;ADOPTOPENJDK_REPO=https%3A%2F%2Fgithub.com%2Fadoptium%2Faqa-tests.git&amp;RERUN_ITERATIONS=3&amp;SETUP_JCK_RUN=false&amp;DOCKER_REGISTRY_URL_CREDENTIAL_ID=&amp;LABEL=&amp;EXTRA_OPTIONS=&amp;CUSTOMIZED_SDK_URL=+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-testimage_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-jdk_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-debugimage_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz+https%3A%2F%2Fna.artifactory.swg-devops.com%2Fartifactory%2Fsys-rt-generic-local%2Fhyc-runtimes-jenkins.swg-devops.com%2Fbuild-scripts%2Fjobs%2Fjdk8u%2Fjdk8u-aix-ppc64-openj9%2F577%2Fibm-semeru-open-jre_ppc64_aix_JDK8U_2023-02-07-23-30.tar.gz&amp;BUILD_IDENTIFIER=&amp;ADOPTOPENJDK_BRANCH=master&amp;LIGHT_WEIGHT_CHECKOUT=false&amp;USE_JRE=false&amp;ARTIFACTORY_SERVER=na.artifactory.swg-devops&amp;KEEP_WORKSPACE=false&amp;USER_CREDENTIALS_ID=83181e25-eea4-4f55-8b3e-e79615733226&amp;JDK_VERSION=8&amp;DOCKER_REGISTRY_URL=&amp;ITERATIONS=1&amp;VENDOR_TEST_REPOS=git%40github.ibm.com%3Aruntimes%2Ftest.git&amp;JDK_REPO=https%3A%2F%2Fgithub.com%2Fibmruntimes%2Fopenj9-openjdk-jdk8&amp;JCK_GIT_BRANCH=main&amp;RELEASE_TAG=&amp;OPENJ9_BRANCH=master&amp;OPENJ9_SHA=&amp;JCK_GIT_REPO=&amp;VENDOR_TEST_BRANCHES=master&amp;OPENJ9_REPO=https%3A%2F%2Fgithub.com%2Feclipse-openj9%2Fopenj9.git&amp;UPSTREAM_JOB_NAME=&amp;CLOUD_PROVIDER=&amp;CUSTOM_TARGET=&amp;VENDOR_TEST_SHAS=&amp;JDK_BRANCH=openj9&amp;LABEL_ADDITION=&amp;ARTIFACTORY_REPO=&amp;ARTIFACTORY_ROOT_DIR=&amp;UPSTREAM_TEST_JOB_NUMBER=448&amp;DOCKERIMAGE_TAG=&amp;JDK_IMPL=openj9&amp;TEST_TIME=&amp;SSH_AGENT_CREDENTIAL=83181e25-eea4-4f55-8b3e-e79615733226&amp;AUTO_DETECT=true&amp;SLACK_CHANNEL=%23rt-jenkins&amp;DYNAMIC_COMPILE=true&amp;ADOPTOPENJDK_SYSTEMTEST_OWNER_BRANCH=adoptium%3Amaster&amp;APPLICATION_OPTIONS=&amp;CUSTOMIZED_SDK_URL_CREDENTIAL_ID=4e18ffe7-b1b1-4272-9979-99769b68bcc2&amp;ARCHIVE_TEST_RESULTS=false&amp;NUM_MACHINES=&amp;OPENJDK_SHA=&amp;TRSS_URL=http%3A%2F%2Ftrss1.fyre.ibm.com&amp;USE_TESTENV_PROPERTIES=false&amp;BUILD_LIST=functional&amp;UPSTREAM_JOB_NUMBER=&amp;STF_OWNER_BRANCH=adoptium%3Amaster&amp;TIME_LIMIT=20&amp;JVM_OPTIONS=&amp;PARALLEL=None) - Change TARGET to run only the failed test targets. Optional info ------------- Failure output (captured from console output) --------------------------------------------- ``` [2023-02-08T01:29:07.779Z] variation: NoOptions [2023-02-08T01:29:07.779Z] JVM_OPTIONS: [2023-02-08T01:29:09.405Z] java.io.IOException: The file access permissions do not allow the specified action. [2023-02-08T01:29:09.405Z] at java.io.UnixFileSystem.createFileExclusively(Native Method) [2023-02-08T01:29:09.405Z] at java.io.File.createNewFile(File.java:1023) [2023-02-08T01:29:09.405Z] at org.openj9.test.fileLock.TestFileLocking.setUp(TestFileLocking.java:87) [2023-02-08T01:29:09.405Z] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [2023-02-08T01:29:09.406Z] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) [2023-02-08T01:29:09.406Z] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [2023-02-08T01:29:09.406Z] at java.lang.reflect.Method.invoke(Method.java:498) [2023-02-08T01:29:09.406Z] at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:124) [2023-02-08T01:29:09.406Z] at org.testng.internal.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:59) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:455) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:222) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeMethod(Invoker.java:520) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:716) [2023-02-08T01:29:09.406Z] at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:988) [2023-02-08T01:29:09.406Z] at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:125) [2023-02-08T01:29:09.406Z] at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) [2023-02-08T01:29:09.406Z] at org.testng.TestRunner.privateRun(TestRunner.java:648) [2023-02-08T01:29:09.406Z] at org.testng.TestRunner.run(TestRunner.java:505) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.runTest(SuiteRunner.java:455) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:450) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.privateRun(SuiteRunner.java:415) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunner.run(SuiteRunner.java:364) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) [2023-02-08T01:29:09.406Z] at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:84) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.runSuitesSequentially(TestNG.java:1208) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.runSuitesLocally(TestNG.java:1137) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.runSuites(TestNG.java:1049) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.run(TestNG.java:1017) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.privateMain(TestNG.java:1354) [2023-02-08T01:29:09.406Z] at org.testng.TestNG.main(TestNG.java:1323) [2023-02-08T01:29:09.406Z] [TestFileLocking] [ERROR] error creating lockfile /tmp/lockDir/lockFile [2023-02-08T01:29:09.406Z] FAILED CONFIGURATION: @BeforeMethod setUp(public void org.openj9.test.fileLock.TestFileLocking.testCB_CB()) [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] TestFileLocking [2023-02-08T01:29:09.416Z] Tests run: 17, Failures: 0, Skips: 17 [2023-02-08T01:29:09.416Z] Configuration Failures: 1, Skips: 33 [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] [2023-02-08T01:29:09.416Z] [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] GeneralTest suite [2023-02-08T01:29:09.416Z] Total tests run: 17, Failures: 0, Skips: 17 [2023-02-08T01:29:09.416Z] Configuration Failures: 1, Skips: 33 [2023-02-08T01:29:09.416Z] =============================================== [2023-02-08T01:29:09.416Z] [2023-02-08T01:29:10.262Z] ----------------------------------- [2023-02-08T01:29:10.262Z] TestFileLocking_SE80_0_FAILED ``` Also seen on [ppc64le_linux](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk8_j9_extended.functional_ppc64le_linux_testList_2/410/) [JDK19](https://hyc-runtimes-jenkins.swg-devops.com/job/Test_openjdk19_j9_extended.functional_ppc64le_linux_testList_1/94/)
test
testfilelocking failed ioexception the file access permissions do not allow the specified action failure link from openjdk version beta ibm semeru runtime open edition build beta eclipse vm build master jre aix bit compressed references jit enabled aot enabled omr jcl based on change target to run only the failed test targets optional info failure output captured from console output variation nooptions jvm options java io ioexception the file access permissions do not allow the specified action at java io unixfilesystem createfileexclusively native method at java io file createnewfile file java at org test filelock testfilelocking setup testfilelocking java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org testng internal methodinvocationhelper invokemethod methodinvocationhelper java at org testng internal methodinvocationhelper invokemethodconsideringtimeout methodinvocationhelper java at org testng internal invoker invokeconfigurationmethod invoker java at org testng internal invoker invokeconfigurations invoker java at org testng internal invoker invokemethod invoker java at org testng internal invoker invoketestmethod invoker java at org testng internal invoker invoketestmethods invoker java at org testng internal testmethodworker invoketestmethods testmethodworker java at org testng internal testmethodworker run testmethodworker java at org testng testrunner privaterun testrunner java at org testng testrunner run testrunner java at org testng suiterunner runtest suiterunner java at org testng suiterunner runsequentially suiterunner java at org testng suiterunner privaterun suiterunner java at org testng suiterunner run suiterunner java at org testng suiterunnerworker runsuite suiterunnerworker java at org testng suiterunnerworker run suiterunnerworker java at org testng testng runsuitessequentially testng java at org testng testng runsuiteslocally testng java at org testng testng runsuites testng java at org testng testng run testng java at org testng testng privatemain testng java at org testng testng main testng java error creating lockfile tmp lockdir lockfile failed configuration beforemethod setup public void org test filelock testfilelocking testcb cb testfilelocking tests run failures skips configuration failures skips generaltest suite total tests run failures skips configuration failures skips testfilelocking failed also seen on
1
315,212
27,055,434,146
IssuesEvent
2023-02-13 15:52:58
onc-healthit/onc-certification-g10-test-kit
https://api.github.com/repos/onc-healthit/onc-certification-g10-test-kit
closed
Address validation error on Provenance profile in US Core v5.0.1 (FI-1812)
g10-test-kit us-core-test-kit v3.3.2
See the discussion on zulip: https://chat.fhir.org/#narrow/stream/179190-united-states/topic/Validation.20error.20on.20Provenance Summary: When Provenance.agent.who is a reference of Organization, FHIR validator throws exception that ``` org.hl7.fhir.exceptions.FHIRException: The URL 'Organization/87' is not known to the FHIR validator, and has not been provided as part of the setup / parameters ``` US Core will fix that constraint https://jira.hl7.org/browse/FHIR-39518 Inferno need handle this validation error.
2.0
Address validation error on Provenance profile in US Core v5.0.1 (FI-1812) - See the discussion on zulip: https://chat.fhir.org/#narrow/stream/179190-united-states/topic/Validation.20error.20on.20Provenance Summary: When Provenance.agent.who is a reference of Organization, FHIR validator throws exception that ``` org.hl7.fhir.exceptions.FHIRException: The URL 'Organization/87' is not known to the FHIR validator, and has not been provided as part of the setup / parameters ``` US Core will fix that constraint https://jira.hl7.org/browse/FHIR-39518 Inferno need handle this validation error.
test
address validation error on provenance profile in us core fi see the discussion on zulip summary when provenance agent who is a reference of organization fhir validator throws exception that org fhir exceptions fhirexception the url organization is not known to the fhir validator and has not been provided as part of the setup parameters us core will fix that constraint inferno need handle this validation error
1
312,709
26,873,900,420
IssuesEvent
2023-02-04 20:11:55
MPMG-DCC-UFMG/F01
https://api.github.com/repos/MPMG-DCC-UFMG/F01
closed
Teste de generalizacao para a tag Informações Institucionais - Leis Municipais - Divisa Alegre
generalization test development template - Síntese tecnologia e informatica (88) tag - Informações Institucionais subtag - Leis Municipais
DoD: Realizar o teste de Generalização do validador da tag Informações Institucionais - Leis Municipais para o Município de Divisa Alegre.
1.0
Teste de generalizacao para a tag Informações Institucionais - Leis Municipais - Divisa Alegre - DoD: Realizar o teste de Generalização do validador da tag Informações Institucionais - Leis Municipais para o Município de Divisa Alegre.
test
teste de generalizacao para a tag informações institucionais leis municipais divisa alegre dod realizar o teste de generalização do validador da tag informações institucionais leis municipais para o município de divisa alegre
1
146,302
11,731,472,426
IssuesEvent
2020-03-11 00:14:07
felangel/bloc
https://api.github.com/repos/felangel/bloc
closed
How to initialize a Bloc with state during BlocTest
pkg:bloc_test question waiting for response
I have a `MyBloc` bloc that accepts an event `MyEventActivate`. This event fails when `MyBloc.state` is not `MyStateSuccess`. ```dart // * my_bloc.dart /// mapEventToState for [MyEventActivate]. Stream<MyState> _activate() async* { if (state is MyStateSuccess) { yield MyStateParsedSuccess(state.data); } else { yield MyStateError('Cannot activate: wrong state $state'); } } ``` I want to test the functionality of `MyEventActivate` with something like this: ```dart // * my_bloc_test.dart blocTest( 'Emits [MyStateParsedSuccess] when MyEventActivate is called & current state is MyStateSuccess', build: () async { final MyStateSuccess startState = MyStateSuccess(data: 'mock success'); // TODO: somehow initialize bloc.state to `startState` here return bloc; }, act: (MyBloc bloc) async => bloc.add(MyEventActivate()), expect: [MyStateParsedSuccess('mock success')], ); ``` Is it possible to initialize `MyBloc` with a specific state `startState` during `BlocTest.build`? I have tried using `BlocTest.skip` which works OK, but then I still need to somehow run some business logic to end up at `startState`.
1.0
How to initialize a Bloc with state during BlocTest - I have a `MyBloc` bloc that accepts an event `MyEventActivate`. This event fails when `MyBloc.state` is not `MyStateSuccess`. ```dart // * my_bloc.dart /// mapEventToState for [MyEventActivate]. Stream<MyState> _activate() async* { if (state is MyStateSuccess) { yield MyStateParsedSuccess(state.data); } else { yield MyStateError('Cannot activate: wrong state $state'); } } ``` I want to test the functionality of `MyEventActivate` with something like this: ```dart // * my_bloc_test.dart blocTest( 'Emits [MyStateParsedSuccess] when MyEventActivate is called & current state is MyStateSuccess', build: () async { final MyStateSuccess startState = MyStateSuccess(data: 'mock success'); // TODO: somehow initialize bloc.state to `startState` here return bloc; }, act: (MyBloc bloc) async => bloc.add(MyEventActivate()), expect: [MyStateParsedSuccess('mock success')], ); ``` Is it possible to initialize `MyBloc` with a specific state `startState` during `BlocTest.build`? I have tried using `BlocTest.skip` which works OK, but then I still need to somehow run some business logic to end up at `startState`.
test
how to initialize a bloc with state during bloctest i have a mybloc bloc that accepts an event myeventactivate this event fails when mybloc state is not mystatesuccess dart my bloc dart mapeventtostate for stream activate async if state is mystatesuccess yield mystateparsedsuccess state data else yield mystateerror cannot activate wrong state state i want to test the functionality of myeventactivate with something like this dart my bloc test dart bloctest emits when myeventactivate is called current state is mystatesuccess build async final mystatesuccess startstate mystatesuccess data mock success todo somehow initialize bloc state to startstate here return bloc act mybloc bloc async bloc add myeventactivate expect is it possible to initialize mybloc with a specific state startstate during bloctest build i have tried using bloctest skip which works ok but then i still need to somehow run some business logic to end up at startstate
1
30,309
14,515,305,097
IssuesEvent
2020-12-13 11:53:54
JuliaReach/LazySets.jl
https://api.github.com/repos/JuliaReach/LazySets.jl
closed
More efficient box approximation of specific set types
good first issue :baby_chick: performance :racehorse:
In general we compute the center and the radius with 2n support vector queries. For centrally symmetric sets we already know the center and can compute the radius with just n support vector queries. For certain set types the computation is even simpler, e.g., for `Ball*` types we can just read the radius from the set representation.
True
More efficient box approximation of specific set types - In general we compute the center and the radius with 2n support vector queries. For centrally symmetric sets we already know the center and can compute the radius with just n support vector queries. For certain set types the computation is even simpler, e.g., for `Ball*` types we can just read the radius from the set representation.
non_test
more efficient box approximation of specific set types in general we compute the center and the radius with support vector queries for centrally symmetric sets we already know the center and can compute the radius with just n support vector queries for certain set types the computation is even simpler e g for ball types we can just read the radius from the set representation
0
10,003
3,081,438,920
IssuesEvent
2015-08-22 18:34:46
stratigos/reishitea
https://api.github.com/repos/stratigos/reishitea
closed
`orders.postal` needs to be VARCHAR(10) to support zip code add-ons
enhancement high-priority test coverage
Class Order cant test validation of its ZIP code 'add-on' regular expression since only an integer can be accepted at this time. Update the table such that a string including the `-` char, and four more digits can be added. Add tests to verify changes / test validation of ZIP code expression. P.S., Yes, the [USPS](https://en.wikipedia.org/wiki/ZIP_code) refers to them as 'add-ons'
1.0
`orders.postal` needs to be VARCHAR(10) to support zip code add-ons - Class Order cant test validation of its ZIP code 'add-on' regular expression since only an integer can be accepted at this time. Update the table such that a string including the `-` char, and four more digits can be added. Add tests to verify changes / test validation of ZIP code expression. P.S., Yes, the [USPS](https://en.wikipedia.org/wiki/ZIP_code) refers to them as 'add-ons'
test
orders postal needs to be varchar to support zip code add ons class order cant test validation of its zip code add on regular expression since only an integer can be accepted at this time update the table such that a string including the char and four more digits can be added add tests to verify changes test validation of zip code expression p s yes the refers to them as add ons
1
17,088
5,329,226,513
IssuesEvent
2017-02-15 14:23:01
JabRef/jabref
https://api.github.com/repos/JabRef/jabref
opened
Replace commons collections by Google guava
code-quality help-wanted
We currently use both, Apache commons collections and Google guava. Google guava is seen as the replacement of commons collections. At the moment, only a single class, namely, LRUMap is used from the commons collections package. This should be replaced with the corresponding Google guava Cache. This is a good start for someone who wants to start helping JabRef! :)
1.0
Replace commons collections by Google guava - We currently use both, Apache commons collections and Google guava. Google guava is seen as the replacement of commons collections. At the moment, only a single class, namely, LRUMap is used from the commons collections package. This should be replaced with the corresponding Google guava Cache. This is a good start for someone who wants to start helping JabRef! :)
non_test
replace commons collections by google guava we currently use both apache commons collections and google guava google guava is seen as the replacement of commons collections at the moment only a single class namely lrumap is used from the commons collections package this should be replaced with the corresponding google guava cache this is a good start for someone who wants to start helping jabref
0
344,298
24,806,247,025
IssuesEvent
2022-10-25 05:00:16
hackforla/food-oasis
https://api.github.com/repos/hackforla/food-oasis
closed
Build a Slide Deck for an introduction to Food Oasis / Presentation at Brigade Congress 2022
Documentation size: 1pt Role: Product Management PM: Volunteers PM: Operations Impact Sprints 2022
### Overview We need a slide deck that we can use to introduce Food Oasis to new team members, new partnerships, etc. It should be about 6-8 slides. If more specifics are needed, ex: for a presentation to a potential new partner, we can add slides to customize. ### Action Items Slides should include: - Overview of Food Oasis (why it was created, how long has it been in effect, who is it for) - Why Food Oasis is different from other Food pantry directories? - Stats on Food Insecurity nationwide and in Los Angeles - Tour of the website (an explanation of the ideal user journey) - Ways to get involved (volunteer, donation and partnership opportunities)
1.0
Build a Slide Deck for an introduction to Food Oasis / Presentation at Brigade Congress 2022 - ### Overview We need a slide deck that we can use to introduce Food Oasis to new team members, new partnerships, etc. It should be about 6-8 slides. If more specifics are needed, ex: for a presentation to a potential new partner, we can add slides to customize. ### Action Items Slides should include: - Overview of Food Oasis (why it was created, how long has it been in effect, who is it for) - Why Food Oasis is different from other Food pantry directories? - Stats on Food Insecurity nationwide and in Los Angeles - Tour of the website (an explanation of the ideal user journey) - Ways to get involved (volunteer, donation and partnership opportunities)
non_test
build a slide deck for an introduction to food oasis presentation at brigade congress overview we need a slide deck that we can use to introduce food oasis to new team members new partnerships etc it should be about slides if more specifics are needed ex for a presentation to a potential new partner we can add slides to customize action items slides should include overview of food oasis why it was created how long has it been in effect who is it for why food oasis is different from other food pantry directories stats on food insecurity nationwide and in los angeles tour of the website an explanation of the ideal user journey ways to get involved volunteer donation and partnership opportunities
0
651,336
21,474,199,750
IssuesEvent
2022-04-26 12:20:16
capricorn86/happy-dom
https://api.github.com/repos/capricorn86/happy-dom
closed
Cannot add function to Array prototype
bug high priority
Hi! I decided to try happy-dom instead of jsdom for my Jest tests due to the advertised speedup. My code adds a function to `Array.prototype`: Array.prototype.groupBy = () => ... With jsdom, this works. With happy-dom, it doesn't. If I put a breakpoint right after the function has been added, I can see that the function is present (`[].groupBy` is a function) with jsdom but is undefined with happy-dom. Do I have to configure happy-dom to allow adding to the prototype of native objects?
1.0
Cannot add function to Array prototype - Hi! I decided to try happy-dom instead of jsdom for my Jest tests due to the advertised speedup. My code adds a function to `Array.prototype`: Array.prototype.groupBy = () => ... With jsdom, this works. With happy-dom, it doesn't. If I put a breakpoint right after the function has been added, I can see that the function is present (`[].groupBy` is a function) with jsdom but is undefined with happy-dom. Do I have to configure happy-dom to allow adding to the prototype of native objects?
non_test
cannot add function to array prototype hi i decided to try happy dom instead of jsdom for my jest tests due to the advertised speedup my code adds a function to array prototype array prototype groupby with jsdom this works with happy dom it doesn t if i put a breakpoint right after the function has been added i can see that the function is present groupby is a function with jsdom but is undefined with happy dom do i have to configure happy dom to allow adding to the prototype of native objects
0
229,668
18,409,984,295
IssuesEvent
2021-10-13 03:41:13
Tencent/bk-sops
https://api.github.com/repos/Tencent/bk-sops
opened
【3.9.0】权限申请出现后,点击左侧导航栏跳转失效
type/test-stage-bug
问题描述 ======= <!-- 这里写问题描述 --> 重现方法 ======= <!-- 列出如何重现的方法或操作步骤 --> ![权限申请出现后左侧导航栏跳转不生效](https://user-images.githubusercontent.com/50908315/137063273-bd883de4-5a2a-4cf8-a3d1-89c7ca7c97e8.gif) <!-- **重要提醒**: 请优先尝试部署使用最新发布的版本 (发布清单: https://github.com/Tencent/bk-sops/releases), 如果问题不能在最新发布的版本里重现,说明此问题已经被修复。 --> 关键信息 ======= <!-- **重要提醒**: 这些关键信息会辅助我们快速定位问题。 --> 请提供以下信息: - [x] bk-sops 版本 (发布版本号 或 git tag): <!-- `示例: V3.1.32-ce 或者 git sha. 请不要使用 "最新版本" 或 "当前版本"等无法准确定位代码版本的语句描述` --> - [ ] 蓝鲸PaaS 版本:<!-- `<示例:PaaS 3.0.58、PaaSAgent 3.0.9` --> - [ ] bk_sops 异常日志:
1.0
【3.9.0】权限申请出现后,点击左侧导航栏跳转失效 - 问题描述 ======= <!-- 这里写问题描述 --> 重现方法 ======= <!-- 列出如何重现的方法或操作步骤 --> ![权限申请出现后左侧导航栏跳转不生效](https://user-images.githubusercontent.com/50908315/137063273-bd883de4-5a2a-4cf8-a3d1-89c7ca7c97e8.gif) <!-- **重要提醒**: 请优先尝试部署使用最新发布的版本 (发布清单: https://github.com/Tencent/bk-sops/releases), 如果问题不能在最新发布的版本里重现,说明此问题已经被修复。 --> 关键信息 ======= <!-- **重要提醒**: 这些关键信息会辅助我们快速定位问题。 --> 请提供以下信息: - [x] bk-sops 版本 (发布版本号 或 git tag): <!-- `示例: V3.1.32-ce 或者 git sha. 请不要使用 "最新版本" 或 "当前版本"等无法准确定位代码版本的语句描述` --> - [ ] 蓝鲸PaaS 版本:<!-- `<示例:PaaS 3.0.58、PaaSAgent 3.0.9` --> - [ ] bk_sops 异常日志:
test
【 】权限申请出现后,点击左侧导航栏跳转失效 问题描述 重现方法 关键信息 请提供以下信息 bk sops 版本 发布版本号 或 git tag : 蓝鲸paas 版本: bk sops 异常日志:
1
342,992
10,324,249,821
IssuesEvent
2019-09-01 07:22:27
brave/brave-browser
https://api.github.com/repos/brave/brave-browser
closed
update profile manager menu
feature/profile-manager priority/P3
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue. PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE. INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED--> ## Description Update profile manager menu. 1) Remove Passwords, Payment methods, Addresses and more ~2) Add 'Create New Profile' -> creates new profile and launches into brave://welcome~ https://github.com/brave/brave-browser/issues/5834 3) Replace 'Manage People' label with 'Manage Profiles' 4) Remove 'Open Tor Window' ## Design ![image](https://user-images.githubusercontent.com/5951041/61013842-41911000-a339-11e9-9b59-2919fc3b2b3d.png)
1.0
update profile manager menu - <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue. PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE. INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED--> ## Description Update profile manager menu. 1) Remove Passwords, Payment methods, Addresses and more ~2) Add 'Create New Profile' -> creates new profile and launches into brave://welcome~ https://github.com/brave/brave-browser/issues/5834 3) Replace 'Manage People' label with 'Manage Profiles' 4) Remove 'Open Tor Window' ## Design ![image](https://user-images.githubusercontent.com/5951041/61013842-41911000-a339-11e9-9b59-2919fc3b2b3d.png)
non_test
update profile manager menu have you searched for similar issues before submitting this issue please check the open issues and add a note before logging a new issue please use the template below to provide information about the issue insufficient info will get the issue closed it will only be reopened after sufficient info is provided description update profile manager menu remove passwords payment methods addresses and more add create new profile creates new profile and launches into brave welcome replace manage people label with manage profiles remove open tor window design
0
651,414
21,477,642,044
IssuesEvent
2022-04-26 14:53:09
nevermined-io/defi-marketplace
https://api.github.com/repos/nevermined-io/defi-marketplace
opened
Modify Marketplace to support Report Assets
priority:medium frontend reporting
The marketplace frontend should support the following features: - [ ] Search for different types of reports like csv raw aggregations, curated PDF reports, dashboards, etc - [ ] Purchase reports (maybe dashboard reports could imply a different flow?) - [ ] Access to Dashboard reports from Profile page. Depends on #235
1.0
Modify Marketplace to support Report Assets - The marketplace frontend should support the following features: - [ ] Search for different types of reports like csv raw aggregations, curated PDF reports, dashboards, etc - [ ] Purchase reports (maybe dashboard reports could imply a different flow?) - [ ] Access to Dashboard reports from Profile page. Depends on #235
non_test
modify marketplace to support report assets the marketplace frontend should support the following features search for different types of reports like csv raw aggregations curated pdf reports dashboards etc purchase reports maybe dashboard reports could imply a different flow access to dashboard reports from profile page depends on
0
413,227
12,061,556,160
IssuesEvent
2020-04-16 00:10:25
eclipse-ee4j/glassfish
https://api.github.com/repos/eclipse-ee4j/glassfish
closed
Wrong or missing class in Connection Pool "connection-definition-name" attribute does not cause an Error, but Glassfish then chooses the ConnectionFactory randomly
Component: jca ConnectionPool Priority: Major Stale Type: Bug configuration jca resource-adapter
When the connection pool for a resource adapter is misconfigured in the domain.xml such that the <tt>connection-definition-name</tt> attribute points to a missing class, or to a class that does not implement <tt>ConnectionFactory</tt>, glassfish seems to randomly (or at least non-deterministically) pick a class implementing <tt>ConnectionFactory</tt> from the resource adapter. This is fine as long as the RA only has one <tt>ConnectionFactory</tt> implementation, but for adapters with multiple connection factories and <tt>ConnectionDefinition</tt> annotations this can lead to an <tt>InjectionException</tt> at a later point, when an EJB tries to get a factory instance via <tt>@Resource</tt> and the AS tries to supply an instance of the wrong type. I would expect glassfish to treat a <tt>connection-definition-name</tt> value that does not point to an existing class which implements <tt>ConnectionFactory</tt> as an error, and not create the connection pool. An appropriate message should appear in the server.log and should tell the user if the class is missing or if it does not implement the required interface. #### Affected Versions [4.0]
1.0
Wrong or missing class in Connection Pool "connection-definition-name" attribute does not cause an Error, but Glassfish then chooses the ConnectionFactory randomly - When the connection pool for a resource adapter is misconfigured in the domain.xml such that the <tt>connection-definition-name</tt> attribute points to a missing class, or to a class that does not implement <tt>ConnectionFactory</tt>, glassfish seems to randomly (or at least non-deterministically) pick a class implementing <tt>ConnectionFactory</tt> from the resource adapter. This is fine as long as the RA only has one <tt>ConnectionFactory</tt> implementation, but for adapters with multiple connection factories and <tt>ConnectionDefinition</tt> annotations this can lead to an <tt>InjectionException</tt> at a later point, when an EJB tries to get a factory instance via <tt>@Resource</tt> and the AS tries to supply an instance of the wrong type. I would expect glassfish to treat a <tt>connection-definition-name</tt> value that does not point to an existing class which implements <tt>ConnectionFactory</tt> as an error, and not create the connection pool. An appropriate message should appear in the server.log and should tell the user if the class is missing or if it does not implement the required interface. #### Affected Versions [4.0]
non_test
wrong or missing class in connection pool connection definition name attribute does not cause an error but glassfish then chooses the connectionfactory randomly when the connection pool for a resource adapter is misconfigured in the domain xml such that the connection definition name attribute points to a missing class or to a class that does not implement connectionfactory glassfish seems to randomly or at least non deterministically pick a class implementing connectionfactory from the resource adapter this is fine as long as the ra only has one connectionfactory implementation but for adapters with multiple connection factories and connectiondefinition annotations this can lead to an injectionexception at a later point when an ejb tries to get a factory instance via resource and the as tries to supply an instance of the wrong type i would expect glassfish to treat a connection definition name value that does not point to an existing class which implements connectionfactory as an error and not create the connection pool an appropriate message should appear in the server log and should tell the user if the class is missing or if it does not implement the required interface affected versions
0
772,756
27,134,466,352
IssuesEvent
2023-02-16 12:13:10
kubermatic/kubermatic
https://api.github.com/repos/kubermatic/kubermatic
closed
Test KubeOne Cluster Import for supported providers
priority/low Epic
Testing will include the following steps: - create kubeone cluster manually for respective provider - import the cluster using API - check if the kubeone controller is able to create the kubeconfig secret for the same - upgrade kubeone control plane using API - check if the kubeone upgrade pod is created and completed - migrate kubeone container runtime using API - check if the kubeone migrate pod is created and completed - test upgrade of md using API - test md scale using API
1.0
Test KubeOne Cluster Import for supported providers - Testing will include the following steps: - create kubeone cluster manually for respective provider - import the cluster using API - check if the kubeone controller is able to create the kubeconfig secret for the same - upgrade kubeone control plane using API - check if the kubeone upgrade pod is created and completed - migrate kubeone container runtime using API - check if the kubeone migrate pod is created and completed - test upgrade of md using API - test md scale using API
non_test
test kubeone cluster import for supported providers testing will include the following steps create kubeone cluster manually for respective provider import the cluster using api check if the kubeone controller is able to create the kubeconfig secret for the same upgrade kubeone control plane using api check if the kubeone upgrade pod is created and completed migrate kubeone container runtime using api check if the kubeone migrate pod is created and completed test upgrade of md using api test md scale using api
0
32,431
8,853,260,842
IssuesEvent
2019-01-08 20:48:46
OfficeDev/office-ui-fabric-react
https://api.github.com/repos/OfficeDev/office-ui-fabric-react
closed
npm/yarn/pnpm install office-ui-fabric-react often gets stuck
Area: Build System Needs: Triage :mag:
### Environment information **OS**: Windows 10 Enterprise (17763) **Node version**: 8.12.0 **npm version**: 6.4.1 **Yarn version**: 1.12.3 **pnpm version**: 2.24.2 ### Steps to reproduce With clean caches, npm install --save office-ui-fabric-react Or yarn add office-ui-fabric-react Or pnpm install --save office-ui-fabric-react ### Expected behavior The package should install. ### Actual behavior The package installs, but it hangs for quite a while - often up to 2 minutes - during installation. At first I thought it was an issue with the dependencies, so I first installed them all with the following command (same with Yarn and pnpm): npm install --save @microsoft/load-themed-styles@"^1.7.13" @uifabric/icons@">=6.3.0 <7.0.0" @uifabric/merge-styles@">=6.15.0 <7.0.0" @uifabric/set-version@">=1.1.3 <2.0.0" @uifabric/styling@">=6.39.0 <7.0.0" @uifabric/utilities@">=6.27.1 <7.0.0" prop-types@"^15.5.10" tslib@"^1.7.1" However, installation still hung for quite some time. For npm: ![image](https://user-images.githubusercontent.com/896670/50785427-75de2380-1265-11e9-9861-5e807bc3b17d.png) For Yarn: ![image](https://user-images.githubusercontent.com/896670/50785456-960de280-1265-11e9-82e1-dbcb910a5a34.png) For pnpm: ![image](https://user-images.githubusercontent.com/896670/50785850-aa061400-1266-11e9-92c7-3bce02f438a0.png)
1.0
npm/yarn/pnpm install office-ui-fabric-react often gets stuck - ### Environment information **OS**: Windows 10 Enterprise (17763) **Node version**: 8.12.0 **npm version**: 6.4.1 **Yarn version**: 1.12.3 **pnpm version**: 2.24.2 ### Steps to reproduce With clean caches, npm install --save office-ui-fabric-react Or yarn add office-ui-fabric-react Or pnpm install --save office-ui-fabric-react ### Expected behavior The package should install. ### Actual behavior The package installs, but it hangs for quite a while - often up to 2 minutes - during installation. At first I thought it was an issue with the dependencies, so I first installed them all with the following command (same with Yarn and pnpm): npm install --save @microsoft/load-themed-styles@"^1.7.13" @uifabric/icons@">=6.3.0 <7.0.0" @uifabric/merge-styles@">=6.15.0 <7.0.0" @uifabric/set-version@">=1.1.3 <2.0.0" @uifabric/styling@">=6.39.0 <7.0.0" @uifabric/utilities@">=6.27.1 <7.0.0" prop-types@"^15.5.10" tslib@"^1.7.1" However, installation still hung for quite some time. For npm: ![image](https://user-images.githubusercontent.com/896670/50785427-75de2380-1265-11e9-9861-5e807bc3b17d.png) For Yarn: ![image](https://user-images.githubusercontent.com/896670/50785456-960de280-1265-11e9-82e1-dbcb910a5a34.png) For pnpm: ![image](https://user-images.githubusercontent.com/896670/50785850-aa061400-1266-11e9-92c7-3bce02f438a0.png)
non_test
npm yarn pnpm install office ui fabric react often gets stuck environment information os windows enterprise node version npm version yarn version pnpm version steps to reproduce with clean caches npm install save office ui fabric react or yarn add office ui fabric react or pnpm install save office ui fabric react expected behavior the package should install actual behavior the package installs but it hangs for quite a while often up to minutes during installation at first i thought it was an issue with the dependencies so i first installed them all with the following command same with yarn and pnpm npm install save microsoft load themed styles uifabric icons prop types tslib however installation still hung for quite some time for npm for yarn for pnpm
0
483,203
13,920,607,777
IssuesEvent
2020-10-21 10:41:22
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
m.facebook.com - desktop site instead of mobile site
browser-fenix engine-gecko ml-needsdiagnosis-false priority-critical
<!-- @browser: Firefox Mobile 83.0 --> <!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:83.0) Gecko/83.0 Firefox/83.0 --> <!-- @reported_with: android-components-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/60150 --> <!-- @extra_labels: browser-fenix --> **URL**: https://m.facebook.com/sh.er.961/photos?lst=100003193677261%3A100014542360900%3A1603203054 **Browser / Version**: Firefox Mobile 83.0 **Operating System**: Android **Tested Another Browser**: Yes Chrome **Problem type**: Desktop site instead of mobile site **Description**: Desktop site instead of mobile site **Steps to Reproduce**: Fast <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/92fb61d9-cde7-417f-bdf6-73c8ce967ea2.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201016094031</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/10/df3b40e0-d541-49c2-8b9b-7d589f23d9de) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
m.facebook.com - desktop site instead of mobile site - <!-- @browser: Firefox Mobile 83.0 --> <!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:83.0) Gecko/83.0 Firefox/83.0 --> <!-- @reported_with: android-components-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/60150 --> <!-- @extra_labels: browser-fenix --> **URL**: https://m.facebook.com/sh.er.961/photos?lst=100003193677261%3A100014542360900%3A1603203054 **Browser / Version**: Firefox Mobile 83.0 **Operating System**: Android **Tested Another Browser**: Yes Chrome **Problem type**: Desktop site instead of mobile site **Description**: Desktop site instead of mobile site **Steps to Reproduce**: Fast <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/92fb61d9-cde7-417f-bdf6-73c8ce967ea2.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201016094031</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/10/df3b40e0-d541-49c2-8b9b-7d589f23d9de) _From [webcompat.com](https://webcompat.com/) with ❤️_
non_test
m facebook com desktop site instead of mobile site url browser version firefox mobile operating system android tested another browser yes chrome problem type desktop site instead of mobile site description desktop site instead of mobile site steps to reproduce fast view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel nightly hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
0
191,003
14,591,514,626
IssuesEvent
2020-12-19 13:23:22
imjoseangel/powerline-k8sstatus
https://api.github.com/repos/imjoseangel/powerline-k8sstatus
closed
Add pylint tests
enhancement tests
<!--- Verify first that your feature was not already discussed on GitHub --> <!--- Complete *all* sections as described, this form is processed automatically --> # SUMMARY <!--- Describe the new feature/improvement briefly below --> Add Pylint tests ## ISSUE TYPE - Repository Maintenance ## COMPONENT NAME <!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure --> tests ## ADDITIONAL INFORMATION <!--- Describe how the feature would be used, why it is needed and what it would solve --> As part of the quality process, add pylint to the test process <!--- HINT: You can also paste gist.github.com links for larger files -->
1.0
Add pylint tests - <!--- Verify first that your feature was not already discussed on GitHub --> <!--- Complete *all* sections as described, this form is processed automatically --> # SUMMARY <!--- Describe the new feature/improvement briefly below --> Add Pylint tests ## ISSUE TYPE - Repository Maintenance ## COMPONENT NAME <!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure --> tests ## ADDITIONAL INFORMATION <!--- Describe how the feature would be used, why it is needed and what it would solve --> As part of the quality process, add pylint to the test process <!--- HINT: You can also paste gist.github.com links for larger files -->
test
add pylint tests summary add pylint tests issue type repository maintenance component name tests additional information as part of the quality process add pylint to the test process
1
51,147
6,149,177,431
IssuesEvent
2017-06-27 19:30:27
ampproject/amphtml
https://api.github.com/repos/ampproject/amphtml
closed
amp-bind: <amp-form> integration test broken on Edge & Safari 9
P3: When Possible Related to: Flaky Tests Type: Bug
Here is the travis build https://travis-ci.org/ampproject/amphtml/jobs/240195458 ``` Edge 14.14393.0 (Windows 10 0.0.0) amp-bind with <amp-form> should NOT allow invalid bindings or values FAILED Error: timeout of 5000ms exceeded. Ensure the done() callback is being called in this test. ................................ Safari 9.1.2 (Mac OS X 10.11.6) amp-bind with <amp-form> should NOT allow invalid bindings or values FAILED timeout of 5000ms exceeded. Ensure the done() callback is being called in this test. ....... Mobile Safari 9.0.0 (iOS 9.1.0) amp-bind with <amp-form> should NOT allow invalid bindings or values FAILED timeout of 5000ms exceeded. Ensure the done() callback is being called in this test. ```
1.0
amp-bind: <amp-form> integration test broken on Edge & Safari 9 - Here is the travis build https://travis-ci.org/ampproject/amphtml/jobs/240195458 ``` Edge 14.14393.0 (Windows 10 0.0.0) amp-bind with <amp-form> should NOT allow invalid bindings or values FAILED Error: timeout of 5000ms exceeded. Ensure the done() callback is being called in this test. ................................ Safari 9.1.2 (Mac OS X 10.11.6) amp-bind with <amp-form> should NOT allow invalid bindings or values FAILED timeout of 5000ms exceeded. Ensure the done() callback is being called in this test. ....... Mobile Safari 9.0.0 (iOS 9.1.0) amp-bind with <amp-form> should NOT allow invalid bindings or values FAILED timeout of 5000ms exceeded. Ensure the done() callback is being called in this test. ```
test
amp bind integration test broken on edge safari here is the travis build edge windows amp bind with should not allow invalid bindings or values failed error timeout of exceeded ensure the done callback is being called in this test safari mac os x amp bind with should not allow invalid bindings or values failed timeout of exceeded ensure the done callback is being called in this test mobile safari ios amp bind with should not allow invalid bindings or values failed timeout of exceeded ensure the done callback is being called in this test
1
148,697
23,366,920,886
IssuesEvent
2022-08-10 16:07:05
zuri-training/anima_lib_team98
https://api.github.com/repos/zuri-training/anima_lib_team98
opened
Prototype reusable components to allow the flow be used in all pages where the components are inserted - design
design
I prototyped the nav bar and the footer to include navigations that can be reusable everywhere the components are used. https://www.figma.com/file/mnP49B5GDsVrVBPIp1Q6g0/Animax-Project-Design?node-id=2439%3A12707
1.0
Prototype reusable components to allow the flow be used in all pages where the components are inserted - design - I prototyped the nav bar and the footer to include navigations that can be reusable everywhere the components are used. https://www.figma.com/file/mnP49B5GDsVrVBPIp1Q6g0/Animax-Project-Design?node-id=2439%3A12707
non_test
prototype reusable components to allow the flow be used in all pages where the components are inserted design i prototyped the nav bar and the footer to include navigations that can be reusable everywhere the components are used
0
21,071
2,633,066,311
IssuesEvent
2015-03-08 20:00:14
eris-ltd/thelonious
https://api.github.com/repos/eris-ltd/thelonious
closed
block and sig handling
backlog Medium Priority
improve so sigs come in rlp encoding of header without ruining everything
1.0
block and sig handling - improve so sigs come in rlp encoding of header without ruining everything
non_test
block and sig handling improve so sigs come in rlp encoding of header without ruining everything
0
140,199
11,305,110,080
IssuesEvent
2020-01-18 02:30:38
TBMCPlugins/DiscordPlugin
https://api.github.com/repos/TBMCPlugins/DiscordPlugin
closed
It's possible to connect the private chat as a Minecraft chat
Custom MC chat Minecraft chat bug needs testing
**Description:** Channelcon in DMs work and then messages get processed both as commands and messages. **Steps to Reproduce:** 1. Do `channelcon a` in DM **Result:** Channel gets connected, further messages are sent as messages *and* commands. **Expected Result:** No connection is made (since there's the `mcchat` command).
1.0
It's possible to connect the private chat as a Minecraft chat - **Description:** Channelcon in DMs work and then messages get processed both as commands and messages. **Steps to Reproduce:** 1. Do `channelcon a` in DM **Result:** Channel gets connected, further messages are sent as messages *and* commands. **Expected Result:** No connection is made (since there's the `mcchat` command).
test
it s possible to connect the private chat as a minecraft chat description channelcon in dms work and then messages get processed both as commands and messages steps to reproduce do channelcon a in dm result channel gets connected further messages are sent as messages and commands expected result no connection is made since there s the mcchat command
1