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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
243,592 | 20,507,899,527 | IssuesEvent | 2022-03-01 01:08:16 | e-valuation/EvaP | https://api.github.com/repos/e-valuation/EvaP | opened | CI: Disable Debug Test Run? | Discussion [C] Tests and CI | In https://github.com/e-valuation/EvaP/pull/1257 we introduced that CI [also runs the tests in debug mode](https://github.com/e-valuation/EvaP/pull/1257/files#diff-6ac3f79fc25d95cd1e3d51da53a4b21b939437392578a35ae8cd6d5366ca5485R15).
During debug execution, it seems that django does lots of additional work, e.g. it [keeps a log of all database queries around](https://docs.djangoproject.com/en/3.2/faq/models/#how-can-i-see-the-raw-sql-queries-django-is-running), which occupies loads of ram. For running the tests with debug=true in the VM, you need around 4,5GB of memory available. With the default VM configuration, it will simply fail. Test execution is around 3 times slower, on CI, a non-debug run takes 1:45 where a debug run takes 5:49.
[The django feature ticket for running the tests in debug mode](https://code.djangoproject.com/ticket/27008) says that this flag is intended to troubleshoot test failures.
So far, I know of one instance where reportedly non-debug tests passed and debug tests would have given an error, because we messed up some variables in a template: https://github.com/e-valuation/EvaP/issues/868. However, this was in 2016, many django versions ago. From the current django documentation, I'd say it shouldn't make a difference for template errors whether debug is enabled. The only situation where a test failure depends on DEBUG that I can think of is in our own code, if we depend on DEBUG.
Pro:
- Reduce energy consumed on every single CI run, and CI runs will finish faster (2 minutes rather than 6 minutes)
Con:
- We will not test code paths of ours that explicitly branch on `settings.DEBUG` anymore. We currently have this 3 times, and its always a re-raise for debugging. We will not lose any coverage on codecov, because the debug runs are not measured for coverage currently.
- Theoretically, this might create situations where a test will succeed but a `DEBUG=True` instance will show an error. I'd say that this is unlikely enough that we should do it and benefit from the shorter CI run time. If it happens, we will notice.
- We can still annotate tests with a settings override to have them run with `DEBUG=True` if we want to test code that relies on this flag. (We currently have 2 tests that force `DEBUG=False` to prevent the re-raise mentioned above)
I looked at the CI output for these django projects and at seems like none of them executes test with debug-mode enabled on CI: [wagtail](https://github.com/wagtail/wagtail), [PostHog](https://github.com/PostHog/posthog), [Cabot](https://github.com/arachnys/cabot), [django-oscar](https://github.com/django-oscar/django-oscar), [mezzanine](https://github.com/stephenmcd/mezzanine), [edx-platform](https://github.com/openedx/edx-platform), [taiga-back](https://github.com/kaleidos-ventures/taiga-back/), [djangoproject.com](https://github.com/django/djangoproject.com).
I'd vote for removing the debug run, for the environment (and because I hate waiting for computers). What do you think? | 1.0 | CI: Disable Debug Test Run? - In https://github.com/e-valuation/EvaP/pull/1257 we introduced that CI [also runs the tests in debug mode](https://github.com/e-valuation/EvaP/pull/1257/files#diff-6ac3f79fc25d95cd1e3d51da53a4b21b939437392578a35ae8cd6d5366ca5485R15).
During debug execution, it seems that django does lots of additional work, e.g. it [keeps a log of all database queries around](https://docs.djangoproject.com/en/3.2/faq/models/#how-can-i-see-the-raw-sql-queries-django-is-running), which occupies loads of ram. For running the tests with debug=true in the VM, you need around 4,5GB of memory available. With the default VM configuration, it will simply fail. Test execution is around 3 times slower, on CI, a non-debug run takes 1:45 where a debug run takes 5:49.
[The django feature ticket for running the tests in debug mode](https://code.djangoproject.com/ticket/27008) says that this flag is intended to troubleshoot test failures.
So far, I know of one instance where reportedly non-debug tests passed and debug tests would have given an error, because we messed up some variables in a template: https://github.com/e-valuation/EvaP/issues/868. However, this was in 2016, many django versions ago. From the current django documentation, I'd say it shouldn't make a difference for template errors whether debug is enabled. The only situation where a test failure depends on DEBUG that I can think of is in our own code, if we depend on DEBUG.
Pro:
- Reduce energy consumed on every single CI run, and CI runs will finish faster (2 minutes rather than 6 minutes)
Con:
- We will not test code paths of ours that explicitly branch on `settings.DEBUG` anymore. We currently have this 3 times, and its always a re-raise for debugging. We will not lose any coverage on codecov, because the debug runs are not measured for coverage currently.
- Theoretically, this might create situations where a test will succeed but a `DEBUG=True` instance will show an error. I'd say that this is unlikely enough that we should do it and benefit from the shorter CI run time. If it happens, we will notice.
- We can still annotate tests with a settings override to have them run with `DEBUG=True` if we want to test code that relies on this flag. (We currently have 2 tests that force `DEBUG=False` to prevent the re-raise mentioned above)
I looked at the CI output for these django projects and at seems like none of them executes test with debug-mode enabled on CI: [wagtail](https://github.com/wagtail/wagtail), [PostHog](https://github.com/PostHog/posthog), [Cabot](https://github.com/arachnys/cabot), [django-oscar](https://github.com/django-oscar/django-oscar), [mezzanine](https://github.com/stephenmcd/mezzanine), [edx-platform](https://github.com/openedx/edx-platform), [taiga-back](https://github.com/kaleidos-ventures/taiga-back/), [djangoproject.com](https://github.com/django/djangoproject.com).
I'd vote for removing the debug run, for the environment (and because I hate waiting for computers). What do you think? | test | ci disable debug test run in we introduced that ci during debug execution it seems that django does lots of additional work e g it which occupies loads of ram for running the tests with debug true in the vm you need around of memory available with the default vm configuration it will simply fail test execution is around times slower on ci a non debug run takes where a debug run takes says that this flag is intended to troubleshoot test failures so far i know of one instance where reportedly non debug tests passed and debug tests would have given an error because we messed up some variables in a template however this was in many django versions ago from the current django documentation i d say it shouldn t make a difference for template errors whether debug is enabled the only situation where a test failure depends on debug that i can think of is in our own code if we depend on debug pro reduce energy consumed on every single ci run and ci runs will finish faster minutes rather than minutes con we will not test code paths of ours that explicitly branch on settings debug anymore we currently have this times and its always a re raise for debugging we will not lose any coverage on codecov because the debug runs are not measured for coverage currently theoretically this might create situations where a test will succeed but a debug true instance will show an error i d say that this is unlikely enough that we should do it and benefit from the shorter ci run time if it happens we will notice we can still annotate tests with a settings override to have them run with debug true if we want to test code that relies on this flag we currently have tests that force debug false to prevent the re raise mentioned above i looked at the ci output for these django projects and at seems like none of them executes test with debug mode enabled on ci i d vote for removing the debug run for the environment and because i hate waiting for computers what do you think | 1 |
23,548 | 11,905,619,295 | IssuesEvent | 2020-03-30 18:53:18 | microsoft/botframework-sdk | https://api.github.com/repos/microsoft/botframework-sdk | closed | Feature Request: Dialogue System Trends Data | Bot Services customer-replied-to customer-reported | I would like to share an idea with the bot developer community: dialogue system trends. Just as there are Web search engine trends, so too might it be useful to have features which support aggregating dialogue system trends data from large numbers of user interactions.
Dialogue systems could aggregate users' questions, including in dialogue contexts, together and present the questions, with real-time trends data, to bot developer teams, to knowledgebase curators, and to editors of third-party Q&A and fact-checking resources, via such resources' APIs.
In particular for scenarios where dialogue systems can postpone answering questions – awaiting knowledgebase curation or fact-checking services – notifying users as answers arrive and change – teams might desire dashboards indicating which questions, potentially in dialogue contexts, that users await answers to.
**See also:**
* https://docs.microsoft.com/en-us/azure/bot-service/bot-service-manage-analytics
* https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-telemetry-qnamaker | 1.0 | Feature Request: Dialogue System Trends Data - I would like to share an idea with the bot developer community: dialogue system trends. Just as there are Web search engine trends, so too might it be useful to have features which support aggregating dialogue system trends data from large numbers of user interactions.
Dialogue systems could aggregate users' questions, including in dialogue contexts, together and present the questions, with real-time trends data, to bot developer teams, to knowledgebase curators, and to editors of third-party Q&A and fact-checking resources, via such resources' APIs.
In particular for scenarios where dialogue systems can postpone answering questions – awaiting knowledgebase curation or fact-checking services – notifying users as answers arrive and change – teams might desire dashboards indicating which questions, potentially in dialogue contexts, that users await answers to.
**See also:**
* https://docs.microsoft.com/en-us/azure/bot-service/bot-service-manage-analytics
* https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-telemetry-qnamaker | non_test | feature request dialogue system trends data i would like to share an idea with the bot developer community dialogue system trends just as there are web search engine trends so too might it be useful to have features which support aggregating dialogue system trends data from large numbers of user interactions dialogue systems could aggregate users questions including in dialogue contexts together and present the questions with real time trends data to bot developer teams to knowledgebase curators and to editors of third party q a and fact checking resources via such resources apis in particular for scenarios where dialogue systems can postpone answering questions – awaiting knowledgebase curation or fact checking services – notifying users as answers arrive and change – teams might desire dashboards indicating which questions potentially in dialogue contexts that users await answers to see also | 0 |
227,279 | 18,054,275,743 | IssuesEvent | 2021-09-20 05:24:35 | logicmoo/logicmoo_workspace | https://api.github.com/repos/logicmoo/logicmoo_workspace | opened | logicmoo.pfc.test.sanity_base.GSHAPE_01A JUnit | Test_9999 logicmoo.pfc.test.sanity_base unit_test GSHAPE_01A Failing | (cd /var/lib/jenkins/workspace/logicmoo_workspace/packs_sys/pfc/t/sanity_base ; timeout --foreground --preserve-status -s SIGKILL -k 10s 10s swipl -x /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-clif gshape_01a.pfc)
% ISSUE: https://github.com/logicmoo/logicmoo_workspace/issues/
% EDIT: https://github.com/logicmoo/logicmoo_workspace/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc
% JENKINS: https://jenkins.logicmoo.org/job/logicmoo_workspace/lastBuild/testReport/logicmoo.pfc.test.sanity_base/GSHAPE_01A/logicmoo_pfc_test_sanity_base_GSHAPE_01A_JUnit/
% ISSUE_SEARCH: https://github.com/logicmoo/logicmoo_workspace/issues?q=is%3Aissue+label%3AGSHAPE_01A
```
%~ init_phase(after_load)
%~ init_phase(restore_state)
%
running('/var/lib/jenkins/workspace/logicmoo_workspace/packs_sys/pfc/t/sanity_base/gshape_01a.pfc'),
%~ this_test_might_need( :-( use_module( library(logicmoo_plarkc))))
:- use_module(library(statistics)).
%:- mpred_notrace_exec.
% reset runtime counter
%:- mpred_notrace_exec.
% reset runtime counter
:- statistics(runtime,_Secs).
.
subRelation(E,P) ==>
(t(E,X,Y) ==> t(P,X,Y)).
subRelationD(E,P) ==>
((t(E,X,Y)/(dif(X,Y))) ==> t(P,X,Y)).
symmetric(P) ==>
(t(P,X,Y) ==> t(P,Y,X)).
%~ warn( really_remake_as_dynamic(
%~ clpfd : symmetric(Symmetric),
%~ for(baseKB,decl_kb_type(kb_shared,baseKB:symmetric/1))))
%~ warn( really_remake_as_dynamic2(clpfd:symmetric(Symmetric),bc(decl_kb_type(kb_shared,baseKB:symmetric/1))))
subRelation(edge,hop).
symmetric(hop).
% things that cannot be true are removed
% unneeded when loaded from main system: ~t(P,X,X) ==> \+ t(P,X,X).
% things that cannot be true are removed
% unneeded when loaded from main system: ~t(P,X,X) ==> \+ t(P,X,X).
:- mpred_why(edge(X,Y)==>hop(X,Y)).
%~ mpred_test("Test_0001_Line_0000__edge_2",baseKB:(edge(_16078,_16100)==>hop(_16078,_16100)))
%~ FIlE: * https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L30
/*~
%~ mpred_test("Test_0001_Line_0000__edge_2",baseKB:(edge(_16078,_16100)==>hop(_16078,_16100)))
passed=info(why_was_true(baseKB:(edge(_16078,_16100)==>hop(_16078,_16100))))
Justifications for edge(X,Y)==>hop(X,Y):
1.1 subRelation(edge,hop) % [* https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L24 ]
1.2 subRelation(W4,X4)==>(t(W4,Y4,Z4)==>t(X4,Y4,Z4)) % [mfl4([E=_29390,P=_29392,X=_29404,Y=_29406],baseKB,/var/lib/jenkins/workspace/logicmoo_workspace/packs_sys/pfc/t/sanity_base/gshape_01a.pfc,15)]
1.3 mfl4(_,baseKB,'* https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L24 ',24)
1.4 mfl4(['E'=_,'P'=_,'X'=_,'Y'=_],baseKB,'* https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L15 ',15)
name = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0001_Line_0000__edge_2'.
JUNIT_CLASSNAME = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A'.
JUNIT_CMD = 'timeout --foreground --preserve-status -s SIGKILL -k 10s 10s swipl -x /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-clif gshape_01a.pfc'.
% saving_junit: /var/lib/jenkins/workspace/logicmoo_workspace/test_results/jenkins/Report-logicmoo-pfc-test-sanity_base-vSTARv0vSTARvvDOTvvSTARv-Units-logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0001_Line_0000__edge_2-junit.xml
~*/
:- with_vars_locked([X,Y],mpred_why(edge(X,Y)==>hop(X,Y))).
% bug .. giving the wrong proof!
/*~
no_proof_for((edge(X,Y)==>hop(X,Y))).
no_proof_for((edge(X,Y)==>hop(X,Y))).
no_proof_for((edge(X,Y)==>hop(X,Y))).
~*/
% bug .. giving the wrong proof!
:- with_vars_locked([X,Y],mpred_why(edge(X,Y)==>hop(Y,X))).
% bug .. not giving any proof!
/*~
no_proof_for((edge(X,Y)==>hop(Y,X))).
no_proof_for((edge(X,Y)==>hop(Y,X))).
~*/
% bug .. not giving any proof!
:- dif(X,Y), mpred_why(edge(X,Y)==>hop(Y,X)).
% ISSUE: https://github.com/logicmoo/logicmoo_workspace/issues/
% EDIT: https://github.com/logicmoo/logicmoo_workspace/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc
% JENKINS: https://jenkins.logicmoo.org/job/logicmoo_workspace/lastBuild/testReport/logicmoo.pfc.test.sanity_base/GSHAPE_01A/logicmoo_pfc_test_sanity_base_GSHAPE_01A_JUnit/
% ISSUE_SEARCH: https://github.com/logicmoo/logicmoo_workspace/issues?q=is%3Aissue+label%3AGSHAPE_01A
%~ mpred_test("Test_0002_Line_0000__edge_2",baseKB:(edge(_59334,_59366)==>hop(_59366,_59334)))
/*~
%~ mpred_test("Test_0002_Line_0000__edge_2",baseKB:(edge(_59334,_59366)==>hop(_59366,_59334)))
Call: (69) [baseKB] baseKB:(edge(_59334{dif = ...}, _59366{dif = ...})==>hop(_59366{dif = ...}, _59334{dif = ...}))
Unify: (69) [baseKB] baseKB:(edge(_59334{dif = ...}, _59334{dif = ...})==>hop(_59334{dif = ...}, _59334{dif = ...}))
^ Call: (71) [$attvar] wakeup(wakeup(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, []), baseKB)
^ Unify: (71) [$attvar] wakeup(wakeup(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, []), baseKB)
^ Call: (72) [$attvar] begin_call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Unify: (72) [$attvar] begin_call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Call: (73) [$attvar] call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Unify: (73) [$attvar] call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Call: (74) [$attvar] uhook(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...}, baseKB)
^ Unify: (74) [$attvar] uhook(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...}, baseKB)
Call: (75) [system] true
Exit: (75) [system] true
Call: (75) [dif] dif:attr_unify_hook(vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...})
Unify: (75) [dif] dif:attr_unify_hook(vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...})
Fail: (75) [dif] dif:attr_unify_hook(vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...})
^ Fail: (74) [$attvar] uhook(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...}, baseKB)
^ Fail: (73) [$attvar] call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Fail: (72) [$attvar] begin_call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Fail: (71) [$attvar] wakeup(wakeup(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, []), baseKB)
Fail: (69) [baseKB] baseKB:(edge(_59334{dif = ...}, _59366{dif = ...})==>hop(_59366{dif = ...}, _59334{dif = ...}))
^ Call: (69) [must_sanity] must_sanity:mquietly_if(true, rtrace:tAt_quietly)
^ Unify: (69) [must_sanity] must_sanity:mquietly_if(true, rtrace:tAt_quietly)
failure=info((why_was_true(baseKB:(\+ (edge(_59334,_59366)==>hop(_59366,_59334)))),rtrace(baseKB:(edge(_59334,_59366)==>hop(_59366,_59334)))))
no_proof_for(\+ (edge(X,Y)==>hop(Y,X))).
no_proof_for(\+ (edge(X,Y)==>hop(Y,X))).
no_proof_for(\+ (edge(X,Y)==>hop(Y,X))).
name = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0002_Line_0000__edge_2'.
JUNIT_CLASSNAME = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A'.
JUNIT_CMD = 'timeout --foreground --preserve-status -s SIGKILL -k 10s 10s swipl -x /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-clif gshape_01a.pfc'.
% saving_junit: /var/lib/jenkins/workspace/logicmoo_workspace/test_results/jenkins/Report-logicmoo-pfc-test-sanity_base-vSTARv0vSTARvvDOTvvSTARv-Units-logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0002_Line_0000__edge_2-junit.xml
~*/
%~ unused(no_junit_results)
Test_0001_Line_0000__edge_2 result = passed.
Test_0002_Line_0000__edge_2 result = failure.
%~ test_completed_exit(8)
```
totalTime=1.000
FAILED: /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-junit-minor -k gshape_01a.pfc (returned 8) Add_LABELS='' Rem_LABELS='Skipped,Skipped,Errors,Warnings,Overtime,Skipped'
| 3.0 | logicmoo.pfc.test.sanity_base.GSHAPE_01A JUnit - (cd /var/lib/jenkins/workspace/logicmoo_workspace/packs_sys/pfc/t/sanity_base ; timeout --foreground --preserve-status -s SIGKILL -k 10s 10s swipl -x /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-clif gshape_01a.pfc)
% ISSUE: https://github.com/logicmoo/logicmoo_workspace/issues/
% EDIT: https://github.com/logicmoo/logicmoo_workspace/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc
% JENKINS: https://jenkins.logicmoo.org/job/logicmoo_workspace/lastBuild/testReport/logicmoo.pfc.test.sanity_base/GSHAPE_01A/logicmoo_pfc_test_sanity_base_GSHAPE_01A_JUnit/
% ISSUE_SEARCH: https://github.com/logicmoo/logicmoo_workspace/issues?q=is%3Aissue+label%3AGSHAPE_01A
```
%~ init_phase(after_load)
%~ init_phase(restore_state)
%
running('/var/lib/jenkins/workspace/logicmoo_workspace/packs_sys/pfc/t/sanity_base/gshape_01a.pfc'),
%~ this_test_might_need( :-( use_module( library(logicmoo_plarkc))))
:- use_module(library(statistics)).
%:- mpred_notrace_exec.
% reset runtime counter
%:- mpred_notrace_exec.
% reset runtime counter
:- statistics(runtime,_Secs).
.
subRelation(E,P) ==>
(t(E,X,Y) ==> t(P,X,Y)).
subRelationD(E,P) ==>
((t(E,X,Y)/(dif(X,Y))) ==> t(P,X,Y)).
symmetric(P) ==>
(t(P,X,Y) ==> t(P,Y,X)).
%~ warn( really_remake_as_dynamic(
%~ clpfd : symmetric(Symmetric),
%~ for(baseKB,decl_kb_type(kb_shared,baseKB:symmetric/1))))
%~ warn( really_remake_as_dynamic2(clpfd:symmetric(Symmetric),bc(decl_kb_type(kb_shared,baseKB:symmetric/1))))
subRelation(edge,hop).
symmetric(hop).
% things that cannot be true are removed
% unneeded when loaded from main system: ~t(P,X,X) ==> \+ t(P,X,X).
% things that cannot be true are removed
% unneeded when loaded from main system: ~t(P,X,X) ==> \+ t(P,X,X).
:- mpred_why(edge(X,Y)==>hop(X,Y)).
%~ mpred_test("Test_0001_Line_0000__edge_2",baseKB:(edge(_16078,_16100)==>hop(_16078,_16100)))
%~ FIlE: * https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L30
/*~
%~ mpred_test("Test_0001_Line_0000__edge_2",baseKB:(edge(_16078,_16100)==>hop(_16078,_16100)))
passed=info(why_was_true(baseKB:(edge(_16078,_16100)==>hop(_16078,_16100))))
Justifications for edge(X,Y)==>hop(X,Y):
1.1 subRelation(edge,hop) % [* https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L24 ]
1.2 subRelation(W4,X4)==>(t(W4,Y4,Z4)==>t(X4,Y4,Z4)) % [mfl4([E=_29390,P=_29392,X=_29404,Y=_29406],baseKB,/var/lib/jenkins/workspace/logicmoo_workspace/packs_sys/pfc/t/sanity_base/gshape_01a.pfc,15)]
1.3 mfl4(_,baseKB,'* https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L24 ',24)
1.4 mfl4(['E'=_,'P'=_,'X'=_,'Y'=_],baseKB,'* https://logicmoo.org:2082/gitlab/logicmoo/logicmoo_workspace/-/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc#L15 ',15)
name = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0001_Line_0000__edge_2'.
JUNIT_CLASSNAME = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A'.
JUNIT_CMD = 'timeout --foreground --preserve-status -s SIGKILL -k 10s 10s swipl -x /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-clif gshape_01a.pfc'.
% saving_junit: /var/lib/jenkins/workspace/logicmoo_workspace/test_results/jenkins/Report-logicmoo-pfc-test-sanity_base-vSTARv0vSTARvvDOTvvSTARv-Units-logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0001_Line_0000__edge_2-junit.xml
~*/
:- with_vars_locked([X,Y],mpred_why(edge(X,Y)==>hop(X,Y))).
% bug .. giving the wrong proof!
/*~
no_proof_for((edge(X,Y)==>hop(X,Y))).
no_proof_for((edge(X,Y)==>hop(X,Y))).
no_proof_for((edge(X,Y)==>hop(X,Y))).
~*/
% bug .. giving the wrong proof!
:- with_vars_locked([X,Y],mpred_why(edge(X,Y)==>hop(Y,X))).
% bug .. not giving any proof!
/*~
no_proof_for((edge(X,Y)==>hop(Y,X))).
no_proof_for((edge(X,Y)==>hop(Y,X))).
~*/
% bug .. not giving any proof!
:- dif(X,Y), mpred_why(edge(X,Y)==>hop(Y,X)).
% ISSUE: https://github.com/logicmoo/logicmoo_workspace/issues/
% EDIT: https://github.com/logicmoo/logicmoo_workspace/edit/master/packs_sys/pfc/t/sanity_base/gshape_01a.pfc
% JENKINS: https://jenkins.logicmoo.org/job/logicmoo_workspace/lastBuild/testReport/logicmoo.pfc.test.sanity_base/GSHAPE_01A/logicmoo_pfc_test_sanity_base_GSHAPE_01A_JUnit/
% ISSUE_SEARCH: https://github.com/logicmoo/logicmoo_workspace/issues?q=is%3Aissue+label%3AGSHAPE_01A
%~ mpred_test("Test_0002_Line_0000__edge_2",baseKB:(edge(_59334,_59366)==>hop(_59366,_59334)))
/*~
%~ mpred_test("Test_0002_Line_0000__edge_2",baseKB:(edge(_59334,_59366)==>hop(_59366,_59334)))
Call: (69) [baseKB] baseKB:(edge(_59334{dif = ...}, _59366{dif = ...})==>hop(_59366{dif = ...}, _59334{dif = ...}))
Unify: (69) [baseKB] baseKB:(edge(_59334{dif = ...}, _59334{dif = ...})==>hop(_59334{dif = ...}, _59334{dif = ...}))
^ Call: (71) [$attvar] wakeup(wakeup(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, []), baseKB)
^ Unify: (71) [$attvar] wakeup(wakeup(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, []), baseKB)
^ Call: (72) [$attvar] begin_call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Unify: (72) [$attvar] begin_call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Call: (73) [$attvar] call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Unify: (73) [$attvar] call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Call: (74) [$attvar] uhook(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...}, baseKB)
^ Unify: (74) [$attvar] uhook(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...}, baseKB)
Call: (75) [system] true
Exit: (75) [system] true
Call: (75) [dif] dif:attr_unify_hook(vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...})
Unify: (75) [dif] dif:attr_unify_hook(vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...})
Fail: (75) [dif] dif:attr_unify_hook(vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...})
^ Fail: (74) [$attvar] uhook(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), _59334{dif = ...}, baseKB)
^ Fail: (73) [$attvar] call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Fail: (72) [$attvar] begin_call_all_attr_uhooks(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, baseKB)
^ Fail: (71) [$attvar] wakeup(wakeup(att(dif, vardif([], [_59290{dif = ...}-_59334{dif = ...}]), []), _59334{dif = ...}, []), baseKB)
Fail: (69) [baseKB] baseKB:(edge(_59334{dif = ...}, _59366{dif = ...})==>hop(_59366{dif = ...}, _59334{dif = ...}))
^ Call: (69) [must_sanity] must_sanity:mquietly_if(true, rtrace:tAt_quietly)
^ Unify: (69) [must_sanity] must_sanity:mquietly_if(true, rtrace:tAt_quietly)
failure=info((why_was_true(baseKB:(\+ (edge(_59334,_59366)==>hop(_59366,_59334)))),rtrace(baseKB:(edge(_59334,_59366)==>hop(_59366,_59334)))))
no_proof_for(\+ (edge(X,Y)==>hop(Y,X))).
no_proof_for(\+ (edge(X,Y)==>hop(Y,X))).
no_proof_for(\+ (edge(X,Y)==>hop(Y,X))).
name = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0002_Line_0000__edge_2'.
JUNIT_CLASSNAME = 'logicmoo.pfc.test.sanity_base.GSHAPE_01A'.
JUNIT_CMD = 'timeout --foreground --preserve-status -s SIGKILL -k 10s 10s swipl -x /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-clif gshape_01a.pfc'.
% saving_junit: /var/lib/jenkins/workspace/logicmoo_workspace/test_results/jenkins/Report-logicmoo-pfc-test-sanity_base-vSTARv0vSTARvvDOTvvSTARv-Units-logicmoo.pfc.test.sanity_base.GSHAPE_01A-Test_0002_Line_0000__edge_2-junit.xml
~*/
%~ unused(no_junit_results)
Test_0001_Line_0000__edge_2 result = passed.
Test_0002_Line_0000__edge_2 result = failure.
%~ test_completed_exit(8)
```
totalTime=1.000
FAILED: /var/lib/jenkins/workspace/logicmoo_workspace/bin/lmoo-junit-minor -k gshape_01a.pfc (returned 8) Add_LABELS='' Rem_LABELS='Skipped,Skipped,Errors,Warnings,Overtime,Skipped'
| test | logicmoo pfc test sanity base gshape junit cd var lib jenkins workspace logicmoo workspace packs sys pfc t sanity base timeout foreground preserve status s sigkill k swipl x var lib jenkins workspace logicmoo workspace bin lmoo clif gshape pfc issue edit jenkins issue search init phase after load init phase restore state running var lib jenkins workspace logicmoo workspace packs sys pfc t sanity base gshape pfc this test might need use module library logicmoo plarkc use module library statistics mpred notrace exec reset runtime counter mpred notrace exec reset runtime counter statistics runtime secs subrelation e p t e x y t p x y subrelationd e p t e x y dif x y t p x y symmetric p t p x y t p y x warn really remake as dynamic clpfd symmetric symmetric for basekb decl kb type kb shared basekb symmetric warn really remake as clpfd symmetric symmetric bc decl kb type kb shared basekb symmetric subrelation edge hop symmetric hop things that cannot be true are removed unneeded when loaded from main system t p x x t p x x things that cannot be true are removed unneeded when loaded from main system t p x x t p x x mpred why edge x y hop x y mpred test test line edge basekb edge hop file mpred test test line edge basekb edge hop passed info why was true basekb edge hop justifications for edge x y hop x y subrelation edge hop subrelation t t basekb var lib jenkins workspace logicmoo workspace packs sys pfc t sanity base gshape pfc basekb basekb name logicmoo pfc test sanity base gshape test line edge junit classname logicmoo pfc test sanity base gshape junit cmd timeout foreground preserve status s sigkill k swipl x var lib jenkins workspace logicmoo workspace bin lmoo clif gshape pfc saving junit var lib jenkins workspace logicmoo workspace test results jenkins report logicmoo pfc test sanity base units logicmoo pfc test sanity base gshape test line edge junit xml with vars locked mpred why edge x y hop x y bug giving the wrong proof no proof for edge x y hop x y no proof for edge x y hop x y no proof for edge x y hop x y bug giving the wrong proof with vars locked mpred why edge x y hop y x bug not giving any proof no proof for edge x y hop y x no proof for edge x y hop y x bug not giving any proof dif x y mpred why edge x y hop y x issue edit jenkins issue search mpred test test line edge basekb edge hop mpred test test line edge basekb edge hop call basekb edge dif dif hop dif dif unify basekb edge dif dif hop dif dif call wakeup wakeup att dif vardif dif basekb unify wakeup wakeup att dif vardif dif basekb call begin call all attr uhooks att dif vardif dif basekb unify begin call all attr uhooks att dif vardif dif basekb call call all attr uhooks att dif vardif dif basekb unify call all attr uhooks att dif vardif dif basekb call uhook dif vardif dif basekb unify uhook dif vardif dif basekb call true exit true call dif attr unify hook vardif dif unify dif attr unify hook vardif dif fail dif attr unify hook vardif dif fail uhook dif vardif dif basekb fail call all attr uhooks att dif vardif dif basekb fail begin call all attr uhooks att dif vardif dif basekb fail wakeup wakeup att dif vardif dif basekb fail basekb edge dif dif hop dif dif call must sanity mquietly if true rtrace tat quietly unify must sanity mquietly if true rtrace tat quietly failure info why was true basekb edge hop rtrace basekb edge hop no proof for edge x y hop y x no proof for edge x y hop y x no proof for edge x y hop y x name logicmoo pfc test sanity base gshape test line edge junit classname logicmoo pfc test sanity base gshape junit cmd timeout foreground preserve status s sigkill k swipl x var lib jenkins workspace logicmoo workspace bin lmoo clif gshape pfc saving junit var lib jenkins workspace logicmoo workspace test results jenkins report logicmoo pfc test sanity base units logicmoo pfc test sanity base gshape test line edge junit xml unused no junit results test line edge result passed test line edge result failure test completed exit totaltime failed var lib jenkins workspace logicmoo workspace bin lmoo junit minor k gshape pfc returned add labels rem labels skipped skipped errors warnings overtime skipped | 1 |
656,037 | 21,717,289,614 | IssuesEvent | 2022-05-10 19:16:20 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | Changes to CI schedule frequency | component: continuous integration priority: medium | To remove:
- [x] `linux-focal-unprovisioned-clang-bazel-continuous-(debug|release|everything-debug|everything-release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- [x] `linux-focal-unprovisioned-gcc-bazel-continuous-(debug|everything-debug|everything-release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- Note that `linux-focal-unprovisioned-gcc-bazel-continuous-release` stays as Continuous.
- [x] `linux-focal-gcc-cmake-continuous-(debug|everything-debug|everything-release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- ~Also remove `linux-focal-clang-cmake-continuous-release`.~
- Note that only `linux-focal-gcc-cmake-continuous-release` stays as Continuous.
- [x] `linux-focal-clang-bazel-continuous-everything-(debug|release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- [x] `linux-focal-gcc-bazel-continuous-everything-debug` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- [x] `linux-focal-clang-bazel-continuous-(address|leak)-sanitizer` remove.
- We already have it in Nightly, and we don't need fast feedback here; the "everything" variant is still in Continuous.
- [x] `mac-monterey-clang-cmake-continuous-release` remove.
- We already have it in ~Nightly~ Weekly, and we don't need fast feedback here.
- [x] `mac-monterey-unprovisioned-clang-bazel-continuous-snopt-mosek-packaging` remove.
- We already have it Weekly, and we don't use these tarballs for anything.
---
To change schedule:
- [x] `linux-focal-(gcc|clang)-bazel-nightly-everything-coverage` switch to Weekly instead of Nightly.
- This is unlikely to fail individually, and is expensive.
| 1.0 | Changes to CI schedule frequency - To remove:
- [x] `linux-focal-unprovisioned-clang-bazel-continuous-(debug|release|everything-debug|everything-release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- [x] `linux-focal-unprovisioned-gcc-bazel-continuous-(debug|everything-debug|everything-release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- Note that `linux-focal-unprovisioned-gcc-bazel-continuous-release` stays as Continuous.
- [x] `linux-focal-gcc-cmake-continuous-(debug|everything-debug|everything-release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- ~Also remove `linux-focal-clang-cmake-continuous-release`.~
- Note that only `linux-focal-gcc-cmake-continuous-release` stays as Continuous.
- [x] `linux-focal-clang-bazel-continuous-everything-(debug|release)` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- [x] `linux-focal-gcc-bazel-continuous-everything-debug` remove.
- We already have it in Nightly, and we don't need fast feedback here.
- [x] `linux-focal-clang-bazel-continuous-(address|leak)-sanitizer` remove.
- We already have it in Nightly, and we don't need fast feedback here; the "everything" variant is still in Continuous.
- [x] `mac-monterey-clang-cmake-continuous-release` remove.
- We already have it in ~Nightly~ Weekly, and we don't need fast feedback here.
- [x] `mac-monterey-unprovisioned-clang-bazel-continuous-snopt-mosek-packaging` remove.
- We already have it Weekly, and we don't use these tarballs for anything.
---
To change schedule:
- [x] `linux-focal-(gcc|clang)-bazel-nightly-everything-coverage` switch to Weekly instead of Nightly.
- This is unlikely to fail individually, and is expensive.
| non_test | changes to ci schedule frequency to remove linux focal unprovisioned clang bazel continuous debug release everything debug everything release remove we already have it in nightly and we don t need fast feedback here linux focal unprovisioned gcc bazel continuous debug everything debug everything release remove we already have it in nightly and we don t need fast feedback here note that linux focal unprovisioned gcc bazel continuous release stays as continuous linux focal gcc cmake continuous debug everything debug everything release remove we already have it in nightly and we don t need fast feedback here also remove linux focal clang cmake continuous release note that only linux focal gcc cmake continuous release stays as continuous linux focal clang bazel continuous everything debug release remove we already have it in nightly and we don t need fast feedback here linux focal gcc bazel continuous everything debug remove we already have it in nightly and we don t need fast feedback here linux focal clang bazel continuous address leak sanitizer remove we already have it in nightly and we don t need fast feedback here the everything variant is still in continuous mac monterey clang cmake continuous release remove we already have it in nightly weekly and we don t need fast feedback here mac monterey unprovisioned clang bazel continuous snopt mosek packaging remove we already have it weekly and we don t use these tarballs for anything to change schedule linux focal gcc clang bazel nightly everything coverage switch to weekly instead of nightly this is unlikely to fail individually and is expensive | 0 |
351,573 | 32,010,428,755 | IssuesEvent | 2023-09-21 17:35:33 | elastic/kibana | https://api.github.com/repos/elastic/kibana | opened | Failing test: Serverless Security Functional Tests.x-pack/test_serverless/functional/test_suites/common/index_management/indices·ts - serverless common UI Index Management Indices "before all" hook for "renders the indices tab" | failed-test | A test failed on a tracked branch
```
Error: retry.try timeout: TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="indicesTab"])
Wait timed out after 10018ms
at /var/lib/buildkite-agent/builds/kb-n2-4-spot-aeb155f3ac0640a2/elastic/kibana-on-merge/kibana/node_modules/selenium-webdriver/lib/webdriver.js:929:17
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at onFailure (retry_for_success.ts:17:9)
at retryForSuccess (retry_for_success.ts:59:13)
at RetryService.try (retry.ts:31:12)
at Proxy.clickByCssSelector (find.ts:417:5)
at TestSubjects.click (test_subjects.ts:164:5)
at Object.changeTabs (index_management_page.ts:116:7)
at Context.<anonymous> (indices.ts:23:7)
at Object.apply (wrap_function.js:73:16)
```
First failure: [CI Build - main](https://buildkite.com/elastic/kibana-on-merge/builds/35702#018ab8a1-27c4-4216-b669-bc529c6c7e18)
<!-- kibanaCiData = {"failed-test":{"test.class":"Serverless Security Functional Tests.x-pack/test_serverless/functional/test_suites/common/index_management/indices·ts","test.name":"serverless common UI Index Management Indices \"before all\" hook for \"renders the indices tab\"","test.failCount":1}} --> | 1.0 | Failing test: Serverless Security Functional Tests.x-pack/test_serverless/functional/test_suites/common/index_management/indices·ts - serverless common UI Index Management Indices "before all" hook for "renders the indices tab" - A test failed on a tracked branch
```
Error: retry.try timeout: TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="indicesTab"])
Wait timed out after 10018ms
at /var/lib/buildkite-agent/builds/kb-n2-4-spot-aeb155f3ac0640a2/elastic/kibana-on-merge/kibana/node_modules/selenium-webdriver/lib/webdriver.js:929:17
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at onFailure (retry_for_success.ts:17:9)
at retryForSuccess (retry_for_success.ts:59:13)
at RetryService.try (retry.ts:31:12)
at Proxy.clickByCssSelector (find.ts:417:5)
at TestSubjects.click (test_subjects.ts:164:5)
at Object.changeTabs (index_management_page.ts:116:7)
at Context.<anonymous> (indices.ts:23:7)
at Object.apply (wrap_function.js:73:16)
```
First failure: [CI Build - main](https://buildkite.com/elastic/kibana-on-merge/builds/35702#018ab8a1-27c4-4216-b669-bc529c6c7e18)
<!-- kibanaCiData = {"failed-test":{"test.class":"Serverless Security Functional Tests.x-pack/test_serverless/functional/test_suites/common/index_management/indices·ts","test.name":"serverless common UI Index Management Indices \"before all\" hook for \"renders the indices tab\"","test.failCount":1}} --> | test | failing test serverless security functional tests x pack test serverless functional test suites common index management indices·ts serverless common ui index management indices before all hook for renders the indices tab a test failed on a tracked branch error retry try timeout timeouterror waiting for element to be located by css selector wait timed out after at var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules selenium webdriver lib webdriver js at processticksandrejections node internal process task queues at onfailure retry for success ts at retryforsuccess retry for success ts at retryservice try retry ts at proxy clickbycssselector find ts at testsubjects click test subjects ts at object changetabs index management page ts at context indices ts at object apply wrap function js first failure | 1 |
205,330 | 15,964,915,758 | IssuesEvent | 2021-04-16 07:01:32 | Maurice2n97/pe | https://api.github.com/repos/Maurice2n97/pe | opened | order of how the contacts are listed not specified | severity.Medium type.DocumentationBug | No details provided.

When editing meetings, notice the appointment schedule magically shifts to be reordered, as a result couldnt see where the meeting went. It would be more helpful to inform users in the user guide that the list is automatically sorted by etc.
<!--session: 1618552879044-420b0aa5-0cd9-4465-99b1-e5f995f2b681--> | 1.0 | order of how the contacts are listed not specified - No details provided.

When editing meetings, notice the appointment schedule magically shifts to be reordered, as a result couldnt see where the meeting went. It would be more helpful to inform users in the user guide that the list is automatically sorted by etc.
<!--session: 1618552879044-420b0aa5-0cd9-4465-99b1-e5f995f2b681--> | non_test | order of how the contacts are listed not specified no details provided when editing meetings notice the appointment schedule magically shifts to be reordered as a result couldnt see where the meeting went it would be more helpful to inform users in the user guide that the list is automatically sorted by etc | 0 |
135,518 | 30,303,381,661 | IssuesEvent | 2023-07-10 07:50:41 | WordPress/openverse | https://api.github.com/repos/WordPress/openverse | opened | Auckland Museum | 🟩 priority: low 🧹 status: ticket work required 🚦 status: awaiting triage 🌟 goal: addition 💻 aspect: code 🧱 stack: catalog ☁️ provider: any | ### Source Site
https://www.aucklandmuseum.com/discover/collections/our-data
### Value Provided
High quality collections and data
### Licenses Provided
Not everything is openly licensed but some things are PDM or CC: https://www.aucklandmuseum.com/legal/rights-and-permissions
### Implementation
- [ ] 🙋 I would be interested in implementing this feature. | 1.0 | Auckland Museum - ### Source Site
https://www.aucklandmuseum.com/discover/collections/our-data
### Value Provided
High quality collections and data
### Licenses Provided
Not everything is openly licensed but some things are PDM or CC: https://www.aucklandmuseum.com/legal/rights-and-permissions
### Implementation
- [ ] 🙋 I would be interested in implementing this feature. | non_test | auckland museum source site value provided high quality collections and data licenses provided not everything is openly licensed but some things are pdm or cc implementation 🙋 i would be interested in implementing this feature | 0 |
356,814 | 10,597,875,134 | IssuesEvent | 2019-10-10 02:29:50 | grpc/grpc | https://api.github.com/repos/grpc/grpc | opened | Error 12 in hello_world cpp example | kind/bug priority/P2 | <!--
This form is for bug reports and feature requests ONLY!
For general questions and troubleshooting, please ask/look for answers here:
- grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io
- StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc
Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new)
-->
### What version of gRPC and what language are you using?
Server: 1.24.1
Client: 1.19.1
### What operating system (Linux, Windows,...) and version?
Ubuntu 16.04
### What runtime / compiler are you using (e.g. python version or version of gcc)
gcc 5.4.0
### What did you do?
Was facing issues using TF-Serving with my C++ code to perform inference on a trained model. Both, the C++ code and TF-Serving are in separate docker containers on the same host machine. The gRPC requests would return Error 14: Name Resolution Failure. This did not seem reasonable, so I decided to test a few things.
- Tested and confirmed that if requests are sent from a Jupyter Notebook (using Python code similar to my C++ code) to the same TF-Serving container, then requests are fulfilled accurately and consistently.
- Testing hello_world example by running the `greeter_server` in the TF-Serving container and running `greeter_client` in my C++ docker container.
- This did not work reliably
- It would either work correctly and display "Hello World" or the RPC would fail with error code 12
- When using the asynchronous versions of the greeter client and server, in each run, either all requests would fail with error 12 or all requests would succeed.
- Tried with GRPC_DNS_RESOLVER="ares" and "native" to no avail
### What did you expect to see?
Expected all requests from `greeter_client` to succeed and respond with "Hello World"
### What did you see instead?
It would either work correctly and display "Hello World" or the RPC would fail with error code 12
Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs).
[Failure.txt](https://github.com/grpc/grpc/files/3710188/Failure.txt)
[Success.txt](https://github.com/grpc/grpc/files/3710189/Success.txt)
See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better.
### Anything else we should know about your project / environment? | 1.0 | Error 12 in hello_world cpp example - <!--
This form is for bug reports and feature requests ONLY!
For general questions and troubleshooting, please ask/look for answers here:
- grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io
- StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc
Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new)
-->
### What version of gRPC and what language are you using?
Server: 1.24.1
Client: 1.19.1
### What operating system (Linux, Windows,...) and version?
Ubuntu 16.04
### What runtime / compiler are you using (e.g. python version or version of gcc)
gcc 5.4.0
### What did you do?
Was facing issues using TF-Serving with my C++ code to perform inference on a trained model. Both, the C++ code and TF-Serving are in separate docker containers on the same host machine. The gRPC requests would return Error 14: Name Resolution Failure. This did not seem reasonable, so I decided to test a few things.
- Tested and confirmed that if requests are sent from a Jupyter Notebook (using Python code similar to my C++ code) to the same TF-Serving container, then requests are fulfilled accurately and consistently.
- Testing hello_world example by running the `greeter_server` in the TF-Serving container and running `greeter_client` in my C++ docker container.
- This did not work reliably
- It would either work correctly and display "Hello World" or the RPC would fail with error code 12
- When using the asynchronous versions of the greeter client and server, in each run, either all requests would fail with error 12 or all requests would succeed.
- Tried with GRPC_DNS_RESOLVER="ares" and "native" to no avail
### What did you expect to see?
Expected all requests from `greeter_client` to succeed and respond with "Hello World"
### What did you see instead?
It would either work correctly and display "Hello World" or the RPC would fail with error code 12
Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs).
[Failure.txt](https://github.com/grpc/grpc/files/3710188/Failure.txt)
[Success.txt](https://github.com/grpc/grpc/files/3710189/Success.txt)
See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better.
### Anything else we should know about your project / environment? | non_test | error in hello world cpp example this form is for bug reports and feature requests only for general questions and troubleshooting please ask look for answers here grpc io mailing list stackoverflow with grpc tag issues specific to grpc java grpc go grpc node grpc dart grpc web should be created in the repository they belong to e g what version of grpc and what language are you using server client what operating system linux windows and version ubuntu what runtime compiler are you using e g python version or version of gcc gcc what did you do was facing issues using tf serving with my c code to perform inference on a trained model both the c code and tf serving are in separate docker containers on the same host machine the grpc requests would return error name resolution failure this did not seem reasonable so i decided to test a few things tested and confirmed that if requests are sent from a jupyter notebook using python code similar to my c code to the same tf serving container then requests are fulfilled accurately and consistently testing hello world example by running the greeter server in the tf serving container and running greeter client in my c docker container this did not work reliably it would either work correctly and display hello world or the rpc would fail with error code when using the asynchronous versions of the greeter client and server in each run either all requests would fail with error or all requests would succeed tried with grpc dns resolver ares and native to no avail what did you expect to see expected all requests from greeter client to succeed and respond with hello world what did you see instead it would either work correctly and display hello world or the rpc would fail with error code make sure you include information that can help us debug full error message exception listing stack trace logs see for how to diagnose problems better anything else we should know about your project environment | 0 |
2,525 | 2,608,585,926 | IssuesEvent | 2015-02-26 08:14:15 | Encapsule/onm | https://api.github.com/repos/Encapsule/onm | closed | onm.Store constructor JSON de-serialize accepts bad input | bug test | I've come across a case where constructing an onm.Store instance using a incorrectly formed input JSON document succeeds, but subsequent requests on the Store object fail due to address binding errors. This should not be possible.
Tests + bug fixes are required.
In detail the issue manifests if you incorrectly JSON.stringify a data object clipping the root namespace in the process. The result is valid JSON, but not the same JSON as would have been obtained from onm.Store.toJSON call. onm.Store constructor should not accept the incorrect JSON string. | 1.0 | onm.Store constructor JSON de-serialize accepts bad input - I've come across a case where constructing an onm.Store instance using a incorrectly formed input JSON document succeeds, but subsequent requests on the Store object fail due to address binding errors. This should not be possible.
Tests + bug fixes are required.
In detail the issue manifests if you incorrectly JSON.stringify a data object clipping the root namespace in the process. The result is valid JSON, but not the same JSON as would have been obtained from onm.Store.toJSON call. onm.Store constructor should not accept the incorrect JSON string. | test | onm store constructor json de serialize accepts bad input i ve come across a case where constructing an onm store instance using a incorrectly formed input json document succeeds but subsequent requests on the store object fail due to address binding errors this should not be possible tests bug fixes are required in detail the issue manifests if you incorrectly json stringify a data object clipping the root namespace in the process the result is valid json but not the same json as would have been obtained from onm store tojson call onm store constructor should not accept the incorrect json string | 1 |
124,623 | 16,619,506,396 | IssuesEvent | 2021-06-02 21:40:54 | dotnet/csharpstandard | https://api.github.com/repos/dotnet/csharpstandard | closed | Spec incorrectly requires an enum base be a keyword | resolved: by-design | In C# 6 we relaxed the syntax of an enum base type to be a type syntax, but require that it bind to one of a specified set of types. So `System.Int32` is permitted. But the spec has not been updated; it still requires one of a set of keywords for the base. | 1.0 | Spec incorrectly requires an enum base be a keyword - In C# 6 we relaxed the syntax of an enum base type to be a type syntax, but require that it bind to one of a specified set of types. So `System.Int32` is permitted. But the spec has not been updated; it still requires one of a set of keywords for the base. | non_test | spec incorrectly requires an enum base be a keyword in c we relaxed the syntax of an enum base type to be a type syntax but require that it bind to one of a specified set of types so system is permitted but the spec has not been updated it still requires one of a set of keywords for the base | 0 |
96,346 | 8,607,006,158 | IssuesEvent | 2018-11-17 17:54:32 | nuxsmin/sysPass | https://api.github.com/repos/nuxsmin/sysPass | closed | v3 Tags filter and search | NeedTests v3 | A great feature would be to search by text and tag.
Example : url.com in text search and in tag drop down Prod selected
Will result :
- www.url.com / Prod
- cloud.url.com / Prod
- backoffice.url.com / Prod
If we check Prod and Dev in list, it'll result :
- same as previous
- dev.url.com / Dev
- devback.url.com / Dev
...
An other great feature would be to clic on tag to populate filter by clicked tag.
What do you think about it?
| 1.0 | v3 Tags filter and search - A great feature would be to search by text and tag.
Example : url.com in text search and in tag drop down Prod selected
Will result :
- www.url.com / Prod
- cloud.url.com / Prod
- backoffice.url.com / Prod
If we check Prod and Dev in list, it'll result :
- same as previous
- dev.url.com / Dev
- devback.url.com / Dev
...
An other great feature would be to clic on tag to populate filter by clicked tag.
What do you think about it?
| test | tags filter and search a great feature would be to search by text and tag example url com in text search and in tag drop down prod selected will result prod cloud url com prod backoffice url com prod if we check prod and dev in list it ll result same as previous dev url com dev devback url com dev an other great feature would be to clic on tag to populate filter by clicked tag what do you think about it | 1 |
168,948 | 13,108,647,859 | IssuesEvent | 2020-08-04 17:12:56 | istio/istio.io | https://api.github.com/repos/istio/istio.io | closed | Doc: Configure Citadel Service Account Secret Generation | area/security community/testing days lifecycle/needs-triage | Our documentation security task "[Configure Citadel Service Account Secret Generation](https://istio.io/docs/tasks/security/citadel-config/ca-namespace-targeting/)" has the user create secrets:
```
kubectl create ns foo
...
kubectl get secrets -n foo | grep istio.io
```
My understanding is that there are no long secrets. This page needs to be rewritten to show users what to expect with and without `ca.istio.io/override` labels on their namespaces.
The page https://preliminary.istio.io/docs/ops/configuration/mesh/secret-creation/ also discusses labels to control secret creation.
Related? https://github.com/istio/istio/issues/21407
If it matters, I installed Istio using `./bin/istioctl manifest apply --set values.global.sds.enabled=false --set values.global.imagePullPolicy=Always --set values.global.mtls.enabled=true` | 1.0 | Doc: Configure Citadel Service Account Secret Generation - Our documentation security task "[Configure Citadel Service Account Secret Generation](https://istio.io/docs/tasks/security/citadel-config/ca-namespace-targeting/)" has the user create secrets:
```
kubectl create ns foo
...
kubectl get secrets -n foo | grep istio.io
```
My understanding is that there are no long secrets. This page needs to be rewritten to show users what to expect with and without `ca.istio.io/override` labels on their namespaces.
The page https://preliminary.istio.io/docs/ops/configuration/mesh/secret-creation/ also discusses labels to control secret creation.
Related? https://github.com/istio/istio/issues/21407
If it matters, I installed Istio using `./bin/istioctl manifest apply --set values.global.sds.enabled=false --set values.global.imagePullPolicy=Always --set values.global.mtls.enabled=true` | test | doc configure citadel service account secret generation our documentation security task has the user create secrets kubectl create ns foo kubectl get secrets n foo grep istio io my understanding is that there are no long secrets this page needs to be rewritten to show users what to expect with and without ca istio io override labels on their namespaces the page also discusses labels to control secret creation related if it matters i installed istio using bin istioctl manifest apply set values global sds enabled false set values global imagepullpolicy always set values global mtls enabled true | 1 |
25,135 | 6,626,217,121 | IssuesEvent | 2017-09-22 18:35:59 | Microsoft/PTVS | https://api.github.com/repos/Microsoft/PTVS | closed | Completion DB is not up to date | area:Code Intelligence needs triage | Hi,
Under IntelliSense the Standard Library shows 0 modules, refreshing does not do anything. After reinstalling VS2015 it seemed to be started working, however after the parsing process completed all the files were deleted from the db (see attached log). Since then I tried to reinstall Python 3.5, Python 2.7.12 both 32 and 64 bit versions, but the symptoms are the same. There is also a weird intermittent behavior, sometimes a couple of libraries shows up with a exclamation mark then disappear when hitting refresh.
| 1.0 | Completion DB is not up to date - Hi,
Under IntelliSense the Standard Library shows 0 modules, refreshing does not do anything. After reinstalling VS2015 it seemed to be started working, however after the parsing process completed all the files were deleted from the db (see attached log). Since then I tried to reinstall Python 3.5, Python 2.7.12 both 32 and 64 bit versions, but the symptoms are the same. There is also a weird intermittent behavior, sometimes a couple of libraries shows up with a exclamation mark then disappear when hitting refresh.
| non_test | completion db is not up to date hi under intellisense the standard library shows modules refreshing does not do anything after reinstalling it seemed to be started working however after the parsing process completed all the files were deleted from the db see attached log since then i tried to reinstall python python both and bit versions but the symptoms are the same there is also a weird intermittent behavior sometimes a couple of libraries shows up with a exclamation mark then disappear when hitting refresh | 0 |
250,583 | 21,315,861,159 | IssuesEvent | 2022-04-16 09:01:31 | Sasha-hk/Alerki | https://api.github.com/repos/Sasha-hk/Alerki | closed | refactor: validation utility | enhancement wontfix api test bad written critical | **Describe the bug**
Required refactoring for validation utility in the case when fields has at least one or only one property but type or pattern validation still checking fields. In case when field not required other partial validation should not works.
**To Reproduce**
Steps to reproduce the behavior:
1. make validation config with not at least one properties
2. run the check
3. see error | 1.0 | refactor: validation utility - **Describe the bug**
Required refactoring for validation utility in the case when fields has at least one or only one property but type or pattern validation still checking fields. In case when field not required other partial validation should not works.
**To Reproduce**
Steps to reproduce the behavior:
1. make validation config with not at least one properties
2. run the check
3. see error | test | refactor validation utility describe the bug required refactoring for validation utility in the case when fields has at least one or only one property but type or pattern validation still checking fields in case when field not required other partial validation should not works to reproduce steps to reproduce the behavior make validation config with not at least one properties run the check see error | 1 |
76,978 | 9,976,025,649 | IssuesEvent | 2019-07-09 14:16:30 | numpy/numpy | https://api.github.com/repos/numpy/numpy | closed | Documentation for getbuffer, newbuffer | 04 - Documentation | The `numpy.getbuffer` and `numpy.newbuffer` functions are only present in python2 (https://github.com/numpy/numpy/commit/61d0bd66242a33da1f05364f45220e067e9e1b73). However the documentation tries to document them (https://github.com/numpy/numpy/blob/master/doc/source/reference/routines.other.rst) and fails because at least on python 3 they don't exist anymore.
I'm not sure if and how this could be fixed. | 1.0 | Documentation for getbuffer, newbuffer - The `numpy.getbuffer` and `numpy.newbuffer` functions are only present in python2 (https://github.com/numpy/numpy/commit/61d0bd66242a33da1f05364f45220e067e9e1b73). However the documentation tries to document them (https://github.com/numpy/numpy/blob/master/doc/source/reference/routines.other.rst) and fails because at least on python 3 they don't exist anymore.
I'm not sure if and how this could be fixed. | non_test | documentation for getbuffer newbuffer the numpy getbuffer and numpy newbuffer functions are only present in however the documentation tries to document them and fails because at least on python they don t exist anymore i m not sure if and how this could be fixed | 0 |
89,073 | 8,189,311,946 | IssuesEvent | 2018-08-30 06:59:18 | aspnet/Identity | https://api.github.com/repos/aspnet/Identity | closed | Test failure: CanExternalSignIn | Branch:master test-failure | This test [fails](http://aspnetci/viewLog.html?buildId=524284&buildTypeId=Releases_22xPublic_UbuntuUniverse) occasionally with the following error:
```
System.NullReferenceException : Object reference not set to an instance of an object.
at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)
at System.Collections.Generic.Dictionary`2.TryGetValue(TKey key, TValue& value)
at Castle.DynamicProxy.Generators.BaseProxyGenerator.ObtainProxyType(CacheKey cacheKey, Func`3 factory)
at Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, Object[] constructorArguments, IInterceptor[] interceptors)
at Moq.Proxy.CastleProxyFactory.CreateProxy(Type mockType, ICallInterceptor interceptor, Type[] interfaces, Object[] arguments)
at Moq.Mock`1.<InitializeInstance>b__20_0()
at Moq.Mock`1.OnGetObject()
at Moq.Mock`1.get_Object()
at Microsoft.AspNetCore.Identity.Test.MockHelpers.MockUserManager[TUser]() in /_/test/Shared/MockHelpers.cs:line 22
at Microsoft.AspNetCore.Identity.Test.SignInManagerTest.SetupUserManager(PocoUser user)
at Microsoft.AspNetCore.Identity.Test.SignInManagerTest.CanExternalSignIn(Boolean isPersistent, Boolean supportsLockout) in /_/test/Identity.Test/SignInManagerTest.cs:line 523
--- End of stack trace from previous location where exception was thrown ---
```
Other tests within that build may have failed with a similar message, but they are not listed here. Check the link above for more info.
CC @Eilon,@muratg,@mkArtakMSFT
This issue was made automatically. If there is a problem contact @ryanbrandenburg. | 1.0 | Test failure: CanExternalSignIn - This test [fails](http://aspnetci/viewLog.html?buildId=524284&buildTypeId=Releases_22xPublic_UbuntuUniverse) occasionally with the following error:
```
System.NullReferenceException : Object reference not set to an instance of an object.
at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)
at System.Collections.Generic.Dictionary`2.TryGetValue(TKey key, TValue& value)
at Castle.DynamicProxy.Generators.BaseProxyGenerator.ObtainProxyType(CacheKey cacheKey, Func`3 factory)
at Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, Object[] constructorArguments, IInterceptor[] interceptors)
at Moq.Proxy.CastleProxyFactory.CreateProxy(Type mockType, ICallInterceptor interceptor, Type[] interfaces, Object[] arguments)
at Moq.Mock`1.<InitializeInstance>b__20_0()
at Moq.Mock`1.OnGetObject()
at Moq.Mock`1.get_Object()
at Microsoft.AspNetCore.Identity.Test.MockHelpers.MockUserManager[TUser]() in /_/test/Shared/MockHelpers.cs:line 22
at Microsoft.AspNetCore.Identity.Test.SignInManagerTest.SetupUserManager(PocoUser user)
at Microsoft.AspNetCore.Identity.Test.SignInManagerTest.CanExternalSignIn(Boolean isPersistent, Boolean supportsLockout) in /_/test/Identity.Test/SignInManagerTest.cs:line 523
--- End of stack trace from previous location where exception was thrown ---
```
Other tests within that build may have failed with a similar message, but they are not listed here. Check the link above for more info.
CC @Eilon,@muratg,@mkArtakMSFT
This issue was made automatically. If there is a problem contact @ryanbrandenburg. | test | test failure canexternalsignin this test occasionally with the following error system nullreferenceexception object reference not set to an instance of an object at system collections generic dictionary findentry tkey key at system collections generic dictionary trygetvalue tkey key tvalue value at castle dynamicproxy generators baseproxygenerator obtainproxytype cachekey cachekey func factory at castle dynamicproxy proxygenerator createclassproxy type classtoproxy type additionalinterfacestoproxy proxygenerationoptions options object constructorarguments iinterceptor interceptors at moq proxy castleproxyfactory createproxy type mocktype icallinterceptor interceptor type interfaces object arguments at moq mock b at moq mock ongetobject at moq mock get object at microsoft aspnetcore identity test mockhelpers mockusermanager in test shared mockhelpers cs line at microsoft aspnetcore identity test signinmanagertest setupusermanager pocouser user at microsoft aspnetcore identity test signinmanagertest canexternalsignin boolean ispersistent boolean supportslockout in test identity test signinmanagertest cs line end of stack trace from previous location where exception was thrown other tests within that build may have failed with a similar message but they are not listed here check the link above for more info cc eilon muratg mkartakmsft this issue was made automatically if there is a problem contact ryanbrandenburg | 1 |
740,900 | 25,773,254,680 | IssuesEvent | 2022-12-09 09:47:37 | opensquare-network/subsquare | https://api.github.com/repos/opensquare-network/subsquare | closed | Fix UI | priority:high | - [x] Fix the blanket when popup window display #2416
Preview
<img width="640" alt="image" src="https://user-images.githubusercontent.com/59445675/205544927-8b461a36-6a8b-4dae-87b7-bde2a69cbb2c.png">
| 1.0 | Fix UI - - [x] Fix the blanket when popup window display #2416
Preview
<img width="640" alt="image" src="https://user-images.githubusercontent.com/59445675/205544927-8b461a36-6a8b-4dae-87b7-bde2a69cbb2c.png">
| non_test | fix ui fix the blanket when popup window display preview img width alt image src | 0 |
155,235 | 12,244,344,429 | IssuesEvent | 2020-05-05 10:56:54 | WoWManiaUK/Redemption | https://api.github.com/repos/WoWManiaUK/Redemption | closed | Taunt - Diminishing Returns | Fix - Tester Confirmed | >3.3.0
Taunt Diminishing Returns: We've revised the system for diminishing returns on Taunt so that creatures do not become immune to Taunt until after 5 Taunts have landed. The duration of the Taunt effect will be reduced by 35% instead of 50% for each taunt landed. In addition, most creatures in the world will not be affected by Taunt diminishing returns at all. Creatures will only have Taunt diminishing returns if they have been specifically flagged for that behavior based on the design of a given encounter.
I am positive that there are encounters that are missing this mechanic. However, I don't know which ones.
Please help me out if you know more about it! :D | 1.0 | Taunt - Diminishing Returns - >3.3.0
Taunt Diminishing Returns: We've revised the system for diminishing returns on Taunt so that creatures do not become immune to Taunt until after 5 Taunts have landed. The duration of the Taunt effect will be reduced by 35% instead of 50% for each taunt landed. In addition, most creatures in the world will not be affected by Taunt diminishing returns at all. Creatures will only have Taunt diminishing returns if they have been specifically flagged for that behavior based on the design of a given encounter.
I am positive that there are encounters that are missing this mechanic. However, I don't know which ones.
Please help me out if you know more about it! :D | test | taunt diminishing returns taunt diminishing returns we ve revised the system for diminishing returns on taunt so that creatures do not become immune to taunt until after taunts have landed the duration of the taunt effect will be reduced by instead of for each taunt landed in addition most creatures in the world will not be affected by taunt diminishing returns at all creatures will only have taunt diminishing returns if they have been specifically flagged for that behavior based on the design of a given encounter i am positive that there are encounters that are missing this mechanic however i don t know which ones please help me out if you know more about it d | 1 |
334,426 | 10,141,717,373 | IssuesEvent | 2019-08-03 16:44:28 | mit-cml/appinventor-sources | https://api.github.com/repos/mit-cml/appinventor-sources | opened | Bitwise operators not appearing in nb178 | affects: master issue: noted for future Work priority: high regression | The bitwise operator blocks no longer appear due to the way BlockSubset was implemented. The additional blocks need to be added to drawer.js | 1.0 | Bitwise operators not appearing in nb178 - The bitwise operator blocks no longer appear due to the way BlockSubset was implemented. The additional blocks need to be added to drawer.js | non_test | bitwise operators not appearing in the bitwise operator blocks no longer appear due to the way blocksubset was implemented the additional blocks need to be added to drawer js | 0 |
97,520 | 8,658,580,547 | IssuesEvent | 2018-11-28 01:41:19 | knative/serving | https://api.github.com/repos/knative/serving | closed | Rename e2e project | area/test-and-release kind/cleanup | <!--
/area test-and-release
/kind cleanup
-->
Right now this is: `gcr.io/elafros-e2e-tests/` (in `test/e2e-tests.sh`) we should grab one with the rename.
| 1.0 | Rename e2e project - <!--
/area test-and-release
/kind cleanup
-->
Right now this is: `gcr.io/elafros-e2e-tests/` (in `test/e2e-tests.sh`) we should grab one with the rename.
| test | rename project area test and release kind cleanup right now this is gcr io elafros tests in test tests sh we should grab one with the rename | 1 |
204,395 | 15,898,061,029 | IssuesEvent | 2021-04-11 23:45:26 | cloudflare/terraform-provider-cloudflare | https://api.github.com/repos/cloudflare/terraform-provider-cloudflare | closed | Automated Logpush challenge not working | kind/documentation triage/accepted | ### Confirmation
My issue isn't already found on the issue tracker.
I have replicated my issue using the latest version of the provider and it is still present.
### Terraform version
Terraform version: 0.14.9
Cloudflare provider version: 2.19.2
### Affected resource(s)
cloudflare_logpush_ownership_challenge
cloudflare_logpush_job
aws_s3_bucket_object
### Terraform configuration files
```
resource "cloudflare_logpush_ownership_challenge" "challenge" {
zone_id = var.cloudflare_zone_id
destination_conf = "s3://${var.logpush_bucket_name}/${local.zone_name}?region=${var.logpush_bucket_region}"
}
data "aws_s3_bucket_object" "challenge_file" {
bucket = var.logpush_bucket_name
key = cloudflare_logpush_ownership_challenge.challenge.ownership_challenge_filename
}
resource "cloudflare_logpush_job" "http_requests_job" {
enabled = true
zone_id = var.cloudflare_zone_id
name = local.zone_name
logpull_options = "fields=${join(",", var.logpush_fields)}×tamps=rfc3339"
destination_conf = "s3://${var.logpush_bucket_name}/${local.zone_name}/{DATE}?region=${var.logpush_bucket_region}"
ownership_challenge = data.aws_s3_bucket_object.challenge_file.body
dataset = "http_requests"
}
```
### Debug output
```
$ TF_LOG=DEBUG terraform apply
2021/04/09 15:14:34 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
Use TF_LOG=TRACE to see Terraform's internal logs.
----
2021/04/09 15:14:34 [INFO] Terraform version: 0.14.9
2021/04/09 15:14:34 [INFO] Go runtime version: go1.15.6
2021/04/09 15:14:34 [INFO] CLI args: []string{"/usr/local/Cellar/tfenv/2.2.0/versions/0.14.9/terraform", "apply"}
2021/04/09 15:14:34 [DEBUG] Attempting to open CLI config file: /Users/rosssimpson/.terraformrc
2021/04/09 15:14:34 Loading CLI configuration from /Users/rosssimpson/.terraformrc
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory /Users/rosssimpson/.terraform.d/plugins
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory /Users/rosssimpson/Library/Application Support/io.terraform/plugins
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2021/04/09 15:14:34 [INFO] CLI command args: []string{"apply"}
2021/04/09 15:14:34 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
Use TF_LOG=TRACE to see Terraform's internal logs.
----
2021/04/09 15:14:34 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
Use TF_LOG=TRACE to see Terraform's internal logs.
----
2021/04/09 15:14:34 [INFO] AWS Auth provider used: "EnvProvider"
2021/04/09 15:14:34 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2021/04/09 15:14:34 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031434Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------
2021/04/09 15:14:40 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:39 GMT
X-Amzn-Requestid: bae8bab4-f1e6-4601-b473-c5d37883b8f7
-----------------------------------------------------
2021/04/09 15:14:40 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>bae8bab4-f1e6-4601-b473-c5d37883b8f7</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>
2021/04/09 15:14:40 [DEBUG] checking for provisioner in "."
2021/04/09 15:14:40 [DEBUG] checking for provisioner in "/usr/local/Cellar/tfenv/2.2.0/versions/0.14.9"
2021/04/09 15:14:40 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2021/04/09 15:14:40 [INFO] backend/local: starting Apply operation
2021/04/09 15:14:40 [DEBUG] [aws-sdk-go] DEBUG: Request s3/ListObjects Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /?max-keys=1000&prefix=env%3A%2F HTTP/1.1
Host: [STATE_BUCKET].s3.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031440Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------
2021/04/09 15:14:41 [DEBUG] [aws-sdk-go] DEBUG: Response s3/ListObjects Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Transfer-Encoding: chunked
Content-Type: application/xml
Date: Fri, 09 Apr 2021 03:14:42 GMT
Server: AmazonS3
X-Amz-Bucket-Region: us-east-1
X-Amz-Id-2: vegU0bFywBFD2kKvdCKBObBxwVk70C/h311IL9pkqvQm+XvriVBp/4yN5AidS/zv4IR+nNOwaBc=
X-Amz-Request-Id: E110FHDC84C4EDJJ
-----------------------------------------------------
2021/04/09 15:14:41 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>[STATE_BUCKET]</Name><Prefix>env:/</Prefix><Marker></Marker><MaxKeys>1000</MaxKeys><IsTruncated>false</IsTruncated></ListBucketResult>
2021/04/09 15:14:41 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /logpush/[ZONE_NAME].tfstate HTTP/1.1
Host: [STATE_BUCKET].s3.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031441Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------
2021/04/09 15:14:42 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 157
Accept-Ranges: bytes
Content-Type: application/json
Date: Fri, 09 Apr 2021 03:14:43 GMT
Etag: "eeb97af2c389baf769253ee90cc7f65c"
Last-Modified: Fri, 09 Apr 2021 03:13:44 GMT
Server: AmazonS3
X-Amz-Id-2: HAQjAE1CEL5rJH9XXGCrVb/oJVOkcdZzIDeyf8xougOVwioR69veodSzgMuXI4DD5ApFBzregEE=
X-Amz-Request-Id: 67A5NAD1BHMGKYX1
X-Amz-Version-Id: NYejswgIlmgep.gm5IzzZohCN4Vdpzqx
-----------------------------------------------------
2021/04/09 15:14:42 [DEBUG] [aws-sdk-go]
2021-04-09T15:14:42.469+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:42.493+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:42.655+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33068
2021-04-09T15:14:42.655+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:42.674+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:42.674+1200
2021-04-09T15:14:42.709+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:42.709+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin542705651 network=unix timestamp=2021-04-09T15:14:42.709+1200
2021-04-09T15:14:42.766+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:42.769+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33068
2021-04-09T15:14:42.769+1200 [DEBUG] plugin: plugin exited
2021-04-09T15:14:42.769+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:42.798+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:44.065+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33069
2021-04-09T15:14:44.065+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:44.102+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:44.101+1200
2021-04-09T15:14:44.138+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:44.138+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin555216248 network=unix timestamp=2021-04-09T15:14:44.137+1200
2021-04-09T15:14:44.255+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:44.259+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33069
2021-04-09T15:14:44.259+1200 [DEBUG] plugin: plugin exited
2021/04/09 15:14:44 [INFO] terraform: building graph: GraphTypeValidate
2021/04/09 15:14:44 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/aws"], implied first by data.aws_s3_bucket_object.challenge_file
2021/04/09 15:14:44 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:44 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:44 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file" references: [var.logpush_bucket_name cloudflare_logpush_ownership_challenge.challenge]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.logpush_bucket_region" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.logpush_fields" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.cloudflare_zone_id" references: []
2021/04/09 15:14:44 [INFO] ReferenceTransformer: reference not found: "path.cwd"
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "local.zone_name (expand)" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge" references: [var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job" references: [var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.logpush_fields local.zone_name (expand) data.aws_s3_bucket_object.challenge_file]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.logpush_bucket_name" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2021/04/09 15:14:44 [DEBUG] Starting graph walk: walkValidate
2021-04-09T15:14:44.261+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:44.283+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:44.458+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33070
2021-04-09T15:14:44.458+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:44.472+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:44.471+1200
2021-04-09T15:14:44.504+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin338493445 network=unix timestamp=2021-04-09T15:14:44.504+1200
2021-04-09T15:14:44.504+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:44.550+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:44.573+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:45.930+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33071
2021-04-09T15:14:45.930+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:45.968+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:45.968+1200
2021-04-09T15:14:46.006+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin440312474 network=unix timestamp=2021-04-09T15:14:46.006+1200
2021-04-09T15:14:46.006+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:46.193+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:46.197+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33071
2021-04-09T15:14:46.197+1200 [DEBUG] plugin: plugin exited
2021-04-09T15:14:46.198+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:46.199+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33070
2021-04-09T15:14:46.199+1200 [DEBUG] plugin: plugin exited
2021/04/09 15:14:46 [INFO] backend/local: apply calling Plan
2021/04/09 15:14:46 [INFO] terraform: building graph: GraphTypePlan
2021/04/09 15:14:46 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/aws"], implied first by data.aws_s3_bucket_object.challenge_file (expand)
2021/04/09 15:14:46 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:46 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:46 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.cloudflare_zone_id" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.logpush_bucket_name" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.logpush_fields" references: []
2021/04/09 15:14:46 [INFO] ReferenceTransformer: reference not found: "path.cwd"
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "local.zone_name (expand)" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" references: [var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.cloudflare_zone_id]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job (expand)" references: [local.zone_name (expand) data.aws_s3_bucket_object.challenge_file (expand) var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.logpush_fields]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" references: [cloudflare_logpush_ownership_challenge.challenge (expand) var.logpush_bucket_name]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.logpush_bucket_region" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2021/04/09 15:14:46 [DEBUG] Starting graph walk: walkPlan
2021-04-09T15:14:46.203+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:46.226+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:47.564+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33072
2021-04-09T15:14:47.564+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:47.601+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:47.601+1200
2021-04-09T15:14:47.637+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin524742223 network=unix timestamp=2021-04-09T15:14:47.637+1200
2021-04-09T15:14:47.637+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:47.683+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:47.707+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:47.876+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33073
2021-04-09T15:14:47.876+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:47.888+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:47.888+1200
2021-04-09T15:14:47.921+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin189490788 network=unix timestamp=2021-04-09T15:14:47.921+1200
2021-04-09T15:14:47.921+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:47.967+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:47 [INFO] AWS Auth provider used: "EnvProvider": timestamp=2021-04-09T15:14:47.967+1200
2021-04-09T15:14:47.971+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:47 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:47.971+1200
2021-04-09T15:14:47.971+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:47 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031447Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:47.971+1200
2021-04-09T15:14:47.973+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:47 [INFO] Cloudflare Client configured for user:
2021/04/09 15:14:47 [DEBUG] Resource instance state not found for node "cloudflare_logpush_ownership_challenge.challenge", instance cloudflare_logpush_ownership_challenge.challenge
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_name"
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "local.zone_name"
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_region"
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "var.cloudflare_zone_id"
2021/04/09 15:14:47 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge" references: []
2021/04/09 15:14:47 [DEBUG] refresh: cloudflare_logpush_ownership_challenge.challenge: no state, so not refreshing
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:48 GMT
X-Amzn-Requestid: 6582b91f-d8d3-4c88-99ec-db0d6a6ef7eb
-----------------------------------------------------: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>6582b91f-d8d3-4c88-99ec-db0d6a6ef7eb</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031448Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:49.802+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:49 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:49 GMT
X-Amzn-Requestid: e845156f-9a1e-43b6-b4ab-478da0b4b8db
-----------------------------------------------------: timestamp=2021-04-09T15:14:49.802+1200
2021-04-09T15:14:49.802+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:49 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>e845156f-9a1e-43b6-b4ab-478da0b4b8db</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:49.802+1200
2021-04-09T15:14:49.807+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:49 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: ec2.us-east-1.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 87
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031449Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:49.807+1200
2021-04-09T15:14:51.038+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:51 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 540
Cache-Control: no-cache, no-store
Content-Type: text/xml;charset=UTF-8
Date: Fri, 09 Apr 2021 03:14:50 GMT
Server: AmazonEC2
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Amzn-Requestid: 824e146d-181f-48bf-ba84-2d20b8ecb0de
-----------------------------------------------------: timestamp=2021-04-09T15:14:51.038+1200
2021-04-09T15:14:51.038+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:51 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
<requestId>824e146d-181f-48bf-ba84-2d20b8ecb0de</requestId>
<accountAttributeSet>
<item>
<attributeName>supported-platforms</attributeName>
<attributeValueSet>
<item>
<attributeValue>VPC</attributeValue>
</item>
</attributeValueSet>
</item>
</accountAttributeSet>
</DescribeAccountAttributesResponse>: timestamp=2021-04-09T15:14:51.038+1200
2021/04/09 15:14:51 [DEBUG] Resource instance state not found for node "data.aws_s3_bucket_object.challenge_file", instance data.aws_s3_bucket_object.challenge_file
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_name"
2021/04/09 15:14:51 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file" references: []
2021/04/09 15:14:51 [DEBUG] Resource instance state not found for node "cloudflare_logpush_job.http_requests_job", instance cloudflare_logpush_job.http_requests_job
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.cloudflare_zone_id"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_name"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "local.zone_name"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_region"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_fields"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "local.zone_name"
2021/04/09 15:14:51 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job" references: []
2021-04-09T15:14:51.040+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:51.044+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33072
2021-04-09T15:14:51.044+1200 [DEBUG] plugin: plugin exited
2021/04/09 15:14:51 [DEBUG] refresh: cloudflare_logpush_job.http_requests_job: no state, so not refreshing
2021-04-09T15:14:51.046+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:51.048+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33073
2021-04-09T15:14:51.048+1200 [DEBUG] plugin: plugin exited
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
<= read (data resources)
Terraform will perform the following actions:
# data.aws_s3_bucket_object.challenge_file will be read during apply
# (config refers to values not yet known)
<= data "aws_s3_bucket_object" "challenge_file" {
2021/04/09 15:14:51 [DEBUG] command: asking for input: "Do you want to perform these actions?"
+ body = (known after apply)
+ bucket = "[BUCKET_NAME]"
+ cache_control = (known after apply)
+ content_disposition = (known after apply)
+ content_encoding = (known after apply)
+ content_language = (known after apply)
+ content_length = (known after apply)
+ content_type = (known after apply)
+ etag = (known after apply)
+ expiration = (known after apply)
+ expires = (known after apply)
+ id = (known after apply)
+ key = (known after apply)
+ last_modified = (known after apply)
+ metadata = (known after apply)
+ object_lock_legal_hold_status = (known after apply)
+ object_lock_mode = (known after apply)
+ object_lock_retain_until_date = (known after apply)
+ server_side_encryption = (known after apply)
+ sse_kms_key_id = (known after apply)
+ storage_class = (known after apply)
+ tags = (known after apply)
+ version_id = (known after apply)
+ website_redirect_location = (known after apply)
}
# cloudflare_logpush_job.http_requests_job will be created
+ resource "cloudflare_logpush_job" "http_requests_job" {
+ dataset = "http_requests"
+ destination_conf = "s3://[BUCKET_NAME]/[ZONE_NAME]/{DATE}?region=us-east-1"
+ enabled = true
+ id = (known after apply)
+ logpull_options = "fields=CacheCacheStatus,CacheResponseBytes,CacheResponseStatus,CacheTieredFill,ClientASN,ClientCountry,ClientDeviceType,ClientIP,ClientIPClass,ClientMTLSAuthCertFingerprint,ClientMTLSAuthStatus,ClientRequestBytes,ClientRequestHost,ClientRequestMethod,ClientRequestPath,ClientRequestProtocol,ClientRequestReferer,ClientRequestScheme,ClientRequestSource,ClientRequestURI,ClientRequestUserAgent,ClientSSLCipher,ClientSSLProtocol,ClientSrcPort,ClientTCPRTTMs,ClientXRequestedWith,EdgeCFConnectingO2O,EdgeColoCode,EdgeColoID,EdgeEndTimestamp,EdgePathingOp,EdgePathingSrc,EdgePathingStatus,EdgeRateLimitAction,EdgeRateLimitID,EdgeRequestHost,EdgeResponseBodyBytes,EdgeResponseBytes,EdgeResponseCompressionRatio,EdgeResponseContentType,EdgeResponseStatus,EdgeServerIP,EdgeStartTimestamp,EdgeTimeToFirstByteMs,FirewallMatchesActions,FirewallMatchesRuleIDs,FirewallMatchesSources,OriginDNSResponseTimeMs,OriginIP,OriginRequestHeaderSendDurationMs,OriginResponseBytes,OriginResponseDurationMs,OriginResponseHTTPExpires,OriginResponseHTTPLastModified,OriginResponseHeaderReceiveDurationMs,OriginResponseStatus,OriginResponseTime,OriginSSLProtocol,OriginTCPHandshakeDurationMs,OriginTLSHandshakeDurationMs,ParentRayID,RayID,SecurityLevel,SmartRouteColoID,UpperTierColoID,WAFAction,WAFFlags,WAFMatchedVar,WAFProfile,WAFRuleID,WAFRuleMessage,WorkerCPUTime,WorkerStatus,WorkerSubrequest,WorkerSubrequestCount,ZoneID,ZoneName×tamps=rfc3339"
+ name = "[ZONE_NAME]"
+ ownership_challenge = (known after apply)
+ zone_id = "[ZONE_ID]"
}
# cloudflare_logpush_ownership_challenge.challenge will be created
+ resource "cloudflare_logpush_ownership_challenge" "challenge" {
+ destination_conf = "s3://[BUCKET_NAME]/[ZONE_NAME]?region=us-east-1"
+ id = (known after apply)
+ ownership_challenge_filename = (known after apply)
+ zone_id = "[ZONE_ID]"
}
Plan: 2 to add, 0 to change, 0 to destroy.
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value: yes
2021/04/09 15:14:54 [INFO] backend/local: apply calling Apply
2021/04/09 15:14:54 [INFO] terraform: building graph: GraphTypeApply
2021/04/09 15:14:54 [DEBUG] Resource state not found for node "cloudflare_logpush_ownership_challenge.challenge", instance cloudflare_logpush_ownership_challenge.challenge
2021/04/09 15:14:54 [DEBUG] Resource state not found for node "data.aws_s3_bucket_object.challenge_file", instance data.aws_s3_bucket_object.challenge_file
2021/04/09 15:14:54 [DEBUG] Resource state not found for node "cloudflare_logpush_job.http_requests_job", instance cloudflare_logpush_job.http_requests_job
2021/04/09 15:14:54 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/aws"], implied first by data.aws_s3_bucket_object.challenge_file (expand)
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.logpush_bucket_region" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.logpush_fields" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge" references: [var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file" references: [var.logpush_bucket_name cloudflare_logpush_ownership_challenge.challenge (expand) cloudflare_logpush_ownership_challenge.challenge cloudflare_logpush_ownership_challenge.challenge]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.cloudflare_zone_id" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.logpush_bucket_name" references: []
2021/04/09 15:14:54 [INFO] ReferenceTransformer: reference not found: "path.cwd"
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "local.zone_name (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job" references: [data.aws_s3_bucket_object.challenge_file (expand) data.aws_s3_bucket_object.challenge_file data.aws_s3_bucket_object.challenge_file var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.logpush_fields local.zone_name (expand)]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2021/04/09 15:14:54 [DEBUG] Starting graph walk: walkApply
2021-04-09T15:14:54.319+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:54.343+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:55.590+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33074
2021-04-09T15:14:55.590+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:55.631+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:55.631+1200
2021-04-09T15:14:55.667+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:55.667+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin377293537 network=unix timestamp=2021-04-09T15:14:55.667+1200
2021-04-09T15:14:55.712+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:55.733+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:55.907+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33075
2021-04-09T15:14:55.907+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:55.920+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:55.920+1200
2021-04-09T15:14:55.953+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin109497206 network=unix timestamp=2021-04-09T15:14:55.953+1200
2021-04-09T15:14:55.953+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:55.999+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:55 [INFO] AWS Auth provider used: "EnvProvider": timestamp=2021-04-09T15:14:55.999+1200
2021-04-09T15:14:56.002+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:56.001+1200
2021-04-09T15:14:56.002+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031456Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:56.002+1200
2021-04-09T15:14:56.004+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:56 [INFO] Cloudflare Client configured for user:
cloudflare_logpush_ownership_challenge.challenge: Creating...
2021/04/09 15:14:56 [DEBUG] EvalApply: ProviderMeta config value set
2021/04/09 15:14:56 [DEBUG] cloudflare_logpush_ownership_challenge.challenge: applying the planned Create change
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:56 [DEBUG] Cloudflare API Request Details:
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ REQUEST ]---------------------------------------
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: POST /client/v4/zones/[ZONE_ID]/logpush/ownership HTTP/1.1
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Host: api.cloudflare.com
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: User-Agent: HashiCorp Terraform/0.14.9 (+https://www.terraform.io) Terraform Plugin SDK/1.16.0 terraform-provider-cloudflare/2.19.2
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Length: 92
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Authorization: Bearer [REDACTED]
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Accept-Encoding: gzip
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "destination_conf": "s3://[BUCKET_NAME]/[ZONE_NAME]?region=us-east-1"
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021-04-09T15:14:56.978+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:56 GMT
X-Amzn-Requestid: c99ccbf0-dc64-4cca-8929-9d73d4594bbf
-----------------------------------------------------: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:56.978+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>c99ccbf0-dc64-4cca-8929-9d73d4594bbf</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:56.978+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:56.979+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031456Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:57 [DEBUG] Cloudflare API Response Details:
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ RESPONSE ]--------------------------------------
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: HTTP/2.0 200 OK
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Cache-Status: DYNAMIC
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Ray: 63d0916d0f7fa42d-AKL
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Request-Id: 09563938220000a42d9611b000000001
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Version: 616-c3df1d9
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Date: Fri, 09 Apr 2021 03:14:57 GMT
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Expect-Ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Server: cloudflare
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfduid=[REDACTED]; expires=Sun, 09-May-21 03:14:56 GMT; path=/; domain=.api.cloudflare.com; HttpOnly; SameSite=Lax; Secure
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cflb=[REDACTED]; SameSite=Lax; path=/; expires=Fri, 09-Apr-21 05:44:58 GMT; HttpOnly
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfruid=[REDACTED]; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Vary: Accept-Encoding
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: X-Envoy-Upstream-Service-Time: 712
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "errors": [],
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "messages": [],
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "result": {
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "filename": "[ZONE_NAME]/ownership-challenge-2d648752.txt",
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "message": "",
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "valid": true
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: },
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "success": true
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:57 [INFO] Created Cloudflare Logpush Ownership Challenge: [REDACTED]
cloudflare_logpush_ownership_challenge.challenge: Creation complete after 1s [id=[REDACTED]]
2021-04-09T15:14:57.820+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:57 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:57 GMT
X-Amzn-Requestid: d2709400-3d6c-49cd-9f09-b3cfc38e287a
-----------------------------------------------------: timestamp=2021-04-09T15:14:57.820+1200
2021-04-09T15:14:57.820+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:57 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>d2709400-3d6c-49cd-9f09-b3cfc38e287a</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:57.820+1200
2021-04-09T15:14:57.824+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:57 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: ec2.us-east-1.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 87
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031457Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:57.824+1200
2021-04-09T15:14:58.702+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 540
Cache-Control: no-cache, no-store
Content-Type: text/xml;charset=UTF-8
Date: Fri, 09 Apr 2021 03:14:58 GMT
Server: AmazonEC2
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Amzn-Requestid: 1e56584e-97dc-494a-9dfe-6b9bd1e51fe2
-----------------------------------------------------: timestamp=2021-04-09T15:14:58.701+1200
data.aws_s3_bucket_object.challenge_file: Reading...
2021-04-09T15:14:58.702+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
<requestId>1e56584e-97dc-494a-9dfe-6b9bd1e51fe2</requestId>
<accountAttributeSet>
<item>
<attributeName>supported-platforms</attributeName>
<attributeValueSet>
<item>
<attributeValue>VPC</attributeValue>
</item>
</attributeValueSet>
</item>
</accountAttributeSet>
</DescribeAccountAttributesResponse>: timestamp=2021-04-09T15:14:58.702+1200
2021-04-09T15:14:58.703+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] Reading S3 Bucket Object: {
Bucket: "[BUCKET_NAME]",
Key: "[ZONE_NAME]/ownership-challenge-2d648752.txt"
}: timestamp=2021-04-09T15:14:58.703+1200
2021-04-09T15:14:58.703+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] [aws-sdk-go] DEBUG: Request s3/HeadObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
HEAD /[ZONE_NAME]/ownership-challenge-2d648752.txt HTTP/1.1
Host: [BUCKET_NAME].s3.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031458Z
X-Amz-Security-Token: [REDACTED]
-----------------------------------------------------: timestamp=2021-04-09T15:14:58.703+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] [aws-sdk-go] DEBUG: Response s3/HeadObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 400
Accept-Ranges: bytes
Content-Encoding: compress
Content-Type: text/plain
Date: Fri, 09 Apr 2021 03:15:00 GMT
Etag: "d6c2e5acff199508b99309162a956a4d"
Last-Modified: Fri, 09 Apr 2021 03:14:57 GMT
Server: AmazonS3
X-Amz-Expiration: expiry-date="Fri, 09 Apr 2027 00:00:00 GMT", rule-id="MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj"
X-Amz-Id-2: sMsyIzwFJjANhknDdlrvc1sP3TMoaxkRLkGpee4p+mOoMiGukdUWBWK9NyuAtWXAzys/fgASi2U=
X-Amz-Request-Id: Z0G9YNXCM4DKTCH6
X-Amz-Server-Side-Encryption: AES256
-----------------------------------------------------: timestamp=2021-04-09T15:14:59.586+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] [aws-sdk-go]: timestamp=2021-04-09T15:14:59.586+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] Received S3 object: {
AcceptRanges: "bytes",
ContentEncoding: "compress",
ContentLength: 400,
ContentType: "text/plain",
ETag: "\"d6c2e5acff199508b99309162a956a4d\"",
Expiration: "expiry-date=\"Fri, 09 Apr 2027 00:00:00 GMT\", rule-id=\"MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj\"",
LastModified: 2021-04-09 03:14:57 +0000 UTC,
ServerSideEncryption: "AES256"
}: timestamp=2021-04-09T15:14:59.587+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /[ZONE_NAME]/ownership-challenge-2d648752.txt HTTP/1.1
Host: [BUCKET_NAME].s3.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031459Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------: timestamp=2021-04-09T15:14:59.587+1200
2021-04-09T15:15:00.429+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 400
Accept-Ranges: bytes
Content-Encoding: compress
Content-Type: text/plain
Date: Fri, 09 Apr 2021 03:15:01 GMT
Etag: "d6c2e5acff199508b99309162a956a4d"
Last-Modified: Fri, 09 Apr 2021 03:14:57 GMT
Server: AmazonS3
X-Amz-Expiration: expiry-date="Fri, 09 Apr 2027 00:00:00 GMT", rule-id="MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj"
X-Amz-Id-2: K2pcv5QygaOQoxG07B+WeCEtLlSdi5r+/Vm+Yapcmfp7xrygdO+/ZcEXA04s2c3b/lbN2w6jRgo=
X-Amz-Request-Id: XJJJ9AT8EVESM2K3
X-Amz-Server-Side-Encryption: AES256
-----------------------------------------------------: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.429+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] [aws-sdk-go]: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.430+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [INFO] Saving 400 bytes from S3 object [BUCKET_NAME]/[ZONE_NAME]/ownership-challenge-2d648752.txt: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.430+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] Waiting for state to become: [success]: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.430+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObjectTagging Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /[ZONE_NAME]/ownership-challenge-2d648752.txt?tagging= HTTP/1.1
Host: [BUCKET_NAME].s3.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031500Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------: timestamp=2021-04-09T15:15:00.430+1200
2021-04-09T15:15:01.301+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:01 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObjectTagging Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Transfer-Encoding: chunked
Date: Fri, 09 Apr 2021 03:15:02 GMT
Server: AmazonS3
X-Amz-Id-2: tzU02yvTENQ3qpSQbYlFfAz3NmdyfJXhGwVICqHB2sHWBLe9Zt+6R+C9gOzxwgn/MKNba3bp3vM=
X-Amz-Request-Id: GQPW1G91ZM4REXB9
-----------------------------------------------------: timestamp=2021-04-09T15:15:01.301+1200
2021-04-09T15:15:01.301+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:01 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<Tagging xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><TagSet/></Tagging>: timestamp=2021-04-09T15:15:01.301+1200
data.aws_s3_bucket_object.challenge_file: Read complete after 2s [id=[BUCKET_NAME]/[ZONE_NAME]/ownership-challenge-2d648752.txt]
2021-04-09T15:15:01.305+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:15:01.309+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33074
2021-04-09T15:15:01.310+1200 [DEBUG] plugin: plugin exited
cloudflare_logpush_job.http_requests_job: Creating...
2021/04/09 15:15:01 [DEBUG] EvalApply: ProviderMeta config value set
2021/04/09 15:15:01 [DEBUG] cloudflare_logpush_job.http_requests_job: applying the planned Create change
[REDACTED] LastComplete:<nil> LastError:<nil> ErrorMessage:}
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:15:01 [DEBUG] Cloudflare API Request Details:
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ REQUEST ]---------------------------------------
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: POST /client/v4/zones/[ZONE_ID]/logpush/jobs HTTP/1.1
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Host: api.cloudflare.com
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: User-Agent: HashiCorp Terraform/0.14.9 (+https://www.terraform.io) Terraform Plugin SDK/1.16.0 terraform-provider-cloudflare/2.19.2
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Length: 2048
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Authorization: Bearer [REDACTED]
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Accept-Encoding: gzip
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "dataset": "http_requests",
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "enabled": true,
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "name": "[ZONE_NAME]",
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "logpull_options": "fields=CacheCacheStatus,CacheResponseBytes,CacheResponseStatus,CacheTieredFill,ClientASN,ClientCountry,ClientDeviceType,ClientIP,ClientIPClass,ClientMTLSAuthCertFingerprint,ClientMTLSAuthStatus,ClientRequestBytes,ClientRequestHost,ClientRequestMethod,ClientRequestPath,ClientRequestProtocol,ClientRequestReferer,ClientRequestScheme,ClientRequestSource,ClientRequestURI,ClientRequestUserAgent,ClientSSLCipher,ClientSSLProtocol,ClientSrcPort,ClientTCPRTTMs,ClientXRequestedWith,EdgeCFConnectingO2O,EdgeColoCode,EdgeColoID,EdgeEndTimestamp,EdgePathingOp,EdgePathingSrc,EdgePathingStatus,EdgeRateLimitAction,EdgeRateLimitID,EdgeRequestHost,EdgeResponseBodyBytes,EdgeResponseBytes,EdgeResponseCompressionRatio,EdgeResponseContentType,EdgeResponseStatus,EdgeServerIP,EdgeStartTimestamp,EdgeTimeToFirstByteMs,FirewallMatchesActions,FirewallMatchesRuleIDs,FirewallMatchesSources,OriginDNSResponseTimeMs,OriginIP,OriginRequestHeaderSendDurationMs,OriginResponseBytes,OriginResponseDurationMs,OriginResponseHTTPExpires,OriginResponseHTTPLastModified,OriginResponseHeaderReceiveDurationMs,OriginResponseStatus,OriginResponseTime,OriginSSLProtocol,OriginTCPHandshakeDurationMs,OriginTLSHandshakeDurationMs,ParentRayID,RayID,SecurityLevel,SmartRouteColoID,UpperTierColoID,WAFAction,WAFFlags,WAFMatchedVar,WAFProfile,WAFRuleID,WAFRuleMessage,WorkerCPUTime,WorkerStatus,WorkerSubrequest,WorkerSubrequestCount,ZoneID,ZoneName\u0026timestamps=rfc3339",
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "destination_conf": "s3://[BUCKET_NAME]/[ZONE_NAME]/{DATE}?region=us-east-1",
[REDACTED]"
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:15:02 [DEBUG] Cloudflare API Response Details:
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ RESPONSE ]--------------------------------------
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: HTTP/2.0 400 Bad Request
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Cache-Status: DYNAMIC
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Ray: 63d0918d6e52fb94-AKL
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Request-Id: 0956394c5e0000fb94700a8000000001
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Version: 616-c3df1d9
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Date: Fri, 09 Apr 2021 03:15:02 GMT
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Expect-Ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Server: cloudflare
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfduid=[REDACTED]; expires=Sun, 09-May-21 03:15:01 GMT; path=/; domain=.api.cloudflare.com; HttpOnly; SameSite=Lax; Secure
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cflb=[REDACTED]; SameSite=Lax; path=/; expires=Fri, 09-Apr-21 05:45:03 GMT; HttpOnly
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfruid=[REDACTED]; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Vary: Accept-Encoding
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: X-Envoy-Upstream-Service-Time: 1
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "errors": [
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "code": 1002,
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "message": "incorrect ownership challenge"
plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ],
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "messages": [],
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "result": null,
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "success": false
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021/04/09 15:15:02 [DEBUG] cloudflare_logpush_job.http_requests_job: apply errored, but we're indicating that via the Error pointer rather than returning it: error creating logpush job: HTTP status 400: incorrect ownership challenge (1002)
2021/04/09 15:15:02 [DEBUG] Uploading remote state to S3: {
Body: buffer(0xc0012b0d20),
Bucket: "[STATE_BUCKET]",
ContentLength: 2772,
ContentType: "application/json",
Key: "logpush/[ZONE_NAME].tfstate"
}
2021/04/09 15:15:02 [DEBUG] [aws-sdk-go] DEBUG: Request s3/PutObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
PUT /logpush/[ZONE_NAME].tfstate HTTP/1.1
Host: [STATE_BUCKET].s3.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Content-Length: 2772
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=content-length;content-md5;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Md5: LGJmymUow+aIW9VIVTi7KQ==
Content-Type: application/json
X-Amz-Content-Sha256: 715af62fa73122cb79a40e03fdaff989313f2c39fb55fcf2ea593f5f0b811428
X-Amz-Date: 20210409T031502Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
{
"version": 4,
"terraform_version": "0.14.9",
"serial": 14,
"lineage": "a6701f5b-6b49-e334-1bee-de8245a4e909",
"outputs": {},
"resources": [
{
"mode": "data",
"type": "aws_s3_bucket_object",
"name": "challenge_file",
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"body": "[CHALLENGE_VALUE]",
"bucket": "[BUCKET_NAME]",
"cache_control": "",
"content_disposition": "",
"content_encoding": "compress",
"content_language": "",
"content_length": 400,
"content_type": "text/plain",
"etag": "d6c2e5acff199508b99309162a956a4d",
"expiration": "expiry-date=\"Fri, 09 Apr 2027 00:00:00 GMT\", rule-id=\"MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj\"",
"expires": "",
"id": "[BUCKET_NAME]/[ZONE_NAME]/ownership-challenge-2d648752.txt",
"key": "[ZONE_NAME]/ownership-challenge-2d648752.txt",
"last_modified": "Fri, 09 Apr 2021 03:14:57 UTC",
"metadata": {},
"object_lock_legal_hold_status": "",
"object_lock_mode": "",
"object_lock_retain_until_date": "",
"range": null,
"server_side_encryption": "AES256",
"sse_kms_key_id": "",
"storage_class": "STANDARD",
"tags": {},
"version_id": "",
"website_redirect_location": ""
},
"sensitive_attributes": []
}
]
},
{
"mode": "managed",
"type": "cloudflare_logpush_ownership_challenge",
"name": "challenge",
"provider": "provider[\"registry.terraform.io/cloudflare/cloudflare\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"destination_conf": "s3://[BUCKET_NAME]/[ZONE_NAME]?region=us-east-1",
": "[REDACTED]",
"ownership_challenge_filename": "[ZONE_NAME]/ownership-challenge-2d648752.txt",
"zone_id": "[ZONE_ID]"
},
"sensitive_attributes": [],
"private": "bnVsbA=="
}
]
}
]
}
-----------------------------------------------------
2021/04/09 15:15:03 [DEBUG] [aws-sdk-go] DEBUG: Response s3/PutObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 0
Date: Fri, 09 Apr 2021 03:15:04 GMT
Etag: "2c6266ca6528c3e6885bd5485538bb29"
Server: AmazonS3
X-Amz-Id-2: V4Oc3JXJiGyneVZbybxjSSBWXIew0eESsQkUZ7eg4dTSeZd9rv27ydimEgFpz5EZ1ozDf4Kntm4=
X-Amz-Request-Id: 3S9676TR6PTSZPV3
X-Amz-Version-Id: iWHMYa02bJk2RJ_Ts61B3sraWCc__2n7
-----------------------------------------------------
2021/04/09 15:15:03 [DEBUG] [aws-sdk-go]
Error: error creating logpush job: HTTP status 400: incorrect ownership challenge (1002)
on [ZONE_NAME].tf line 19, in resource "cloudflare_logpush_job" "http_requests_job":
19: resource "cloudflare_logpush_job" "http_requests_job" {
2021-04-09T15:15:03.258+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:15:03.261+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33075
2021-04-09T15:15:03.261+1200 [DEBUG] plugin: plugin exited
```
### Panic output
None
### Expected output
The job to be created successfully.
### Actual output
An error was thrown:
```
Error: error creating logpush job: HTTP status 400: incorrect ownership challenge (1002)
on main.tf line 19, in resource "cloudflare_logpush_job" "http_requests_job":
19: resource "cloudflare_logpush_job" "http_requests_job" {
```
### Steps to reproduce
1. Apply the above config with appropriately configured S3 permissions.
2. Observe error.
### Additional factoids
I have confirmed that the `ownership_challenge` value sent in the job is identical to the value in the ownership challenge file written to S3.
I've come across two minor documentation issues while working on this:
1. The [example documentation](https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs/resources/logpush_job#example-usage-with-aws-provider) uses a `data` resource, but references it as if it were a standard resource:
`ownership_challenge = aws_s3_bucket_object.challenge_file.body`
should really read:
`ownership_challenge = data.aws_s3_bucket_object.challenge_file.body`
2. There is no mention of required S3 permissions for the ownership challenge. I've found that this code requires `GetObject`, `PutObject`, and `GetObjectTagging`. It would be helpful if these were documented somewhere.
### References
_No response_ | 1.0 | Automated Logpush challenge not working - ### Confirmation
My issue isn't already found on the issue tracker.
I have replicated my issue using the latest version of the provider and it is still present.
### Terraform version
Terraform version: 0.14.9
Cloudflare provider version: 2.19.2
### Affected resource(s)
cloudflare_logpush_ownership_challenge
cloudflare_logpush_job
aws_s3_bucket_object
### Terraform configuration files
```
resource "cloudflare_logpush_ownership_challenge" "challenge" {
zone_id = var.cloudflare_zone_id
destination_conf = "s3://${var.logpush_bucket_name}/${local.zone_name}?region=${var.logpush_bucket_region}"
}
data "aws_s3_bucket_object" "challenge_file" {
bucket = var.logpush_bucket_name
key = cloudflare_logpush_ownership_challenge.challenge.ownership_challenge_filename
}
resource "cloudflare_logpush_job" "http_requests_job" {
enabled = true
zone_id = var.cloudflare_zone_id
name = local.zone_name
logpull_options = "fields=${join(",", var.logpush_fields)}×tamps=rfc3339"
destination_conf = "s3://${var.logpush_bucket_name}/${local.zone_name}/{DATE}?region=${var.logpush_bucket_region}"
ownership_challenge = data.aws_s3_bucket_object.challenge_file.body
dataset = "http_requests"
}
```
### Debug output
```
$ TF_LOG=DEBUG terraform apply
2021/04/09 15:14:34 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
Use TF_LOG=TRACE to see Terraform's internal logs.
----
2021/04/09 15:14:34 [INFO] Terraform version: 0.14.9
2021/04/09 15:14:34 [INFO] Go runtime version: go1.15.6
2021/04/09 15:14:34 [INFO] CLI args: []string{"/usr/local/Cellar/tfenv/2.2.0/versions/0.14.9/terraform", "apply"}
2021/04/09 15:14:34 [DEBUG] Attempting to open CLI config file: /Users/rosssimpson/.terraformrc
2021/04/09 15:14:34 Loading CLI configuration from /Users/rosssimpson/.terraformrc
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory /Users/rosssimpson/.terraform.d/plugins
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory /Users/rosssimpson/Library/Application Support/io.terraform/plugins
2021/04/09 15:14:34 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2021/04/09 15:14:34 [INFO] CLI command args: []string{"apply"}
2021/04/09 15:14:34 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
Use TF_LOG=TRACE to see Terraform's internal logs.
----
2021/04/09 15:14:34 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
Use TF_LOG=TRACE to see Terraform's internal logs.
----
2021/04/09 15:14:34 [INFO] AWS Auth provider used: "EnvProvider"
2021/04/09 15:14:34 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2021/04/09 15:14:34 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031434Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------
2021/04/09 15:14:40 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:39 GMT
X-Amzn-Requestid: bae8bab4-f1e6-4601-b473-c5d37883b8f7
-----------------------------------------------------
2021/04/09 15:14:40 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>bae8bab4-f1e6-4601-b473-c5d37883b8f7</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>
2021/04/09 15:14:40 [DEBUG] checking for provisioner in "."
2021/04/09 15:14:40 [DEBUG] checking for provisioner in "/usr/local/Cellar/tfenv/2.2.0/versions/0.14.9"
2021/04/09 15:14:40 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2021/04/09 15:14:40 [INFO] backend/local: starting Apply operation
2021/04/09 15:14:40 [DEBUG] [aws-sdk-go] DEBUG: Request s3/ListObjects Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /?max-keys=1000&prefix=env%3A%2F HTTP/1.1
Host: [STATE_BUCKET].s3.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031440Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------
2021/04/09 15:14:41 [DEBUG] [aws-sdk-go] DEBUG: Response s3/ListObjects Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Transfer-Encoding: chunked
Content-Type: application/xml
Date: Fri, 09 Apr 2021 03:14:42 GMT
Server: AmazonS3
X-Amz-Bucket-Region: us-east-1
X-Amz-Id-2: vegU0bFywBFD2kKvdCKBObBxwVk70C/h311IL9pkqvQm+XvriVBp/4yN5AidS/zv4IR+nNOwaBc=
X-Amz-Request-Id: E110FHDC84C4EDJJ
-----------------------------------------------------
2021/04/09 15:14:41 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>[STATE_BUCKET]</Name><Prefix>env:/</Prefix><Marker></Marker><MaxKeys>1000</MaxKeys><IsTruncated>false</IsTruncated></ListBucketResult>
2021/04/09 15:14:41 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /logpush/[ZONE_NAME].tfstate HTTP/1.1
Host: [STATE_BUCKET].s3.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031441Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------
2021/04/09 15:14:42 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 157
Accept-Ranges: bytes
Content-Type: application/json
Date: Fri, 09 Apr 2021 03:14:43 GMT
Etag: "eeb97af2c389baf769253ee90cc7f65c"
Last-Modified: Fri, 09 Apr 2021 03:13:44 GMT
Server: AmazonS3
X-Amz-Id-2: HAQjAE1CEL5rJH9XXGCrVb/oJVOkcdZzIDeyf8xougOVwioR69veodSzgMuXI4DD5ApFBzregEE=
X-Amz-Request-Id: 67A5NAD1BHMGKYX1
X-Amz-Version-Id: NYejswgIlmgep.gm5IzzZohCN4Vdpzqx
-----------------------------------------------------
2021/04/09 15:14:42 [DEBUG] [aws-sdk-go]
2021-04-09T15:14:42.469+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:42.493+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:42.655+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33068
2021-04-09T15:14:42.655+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:42.674+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:42.674+1200
2021-04-09T15:14:42.709+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:42.709+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin542705651 network=unix timestamp=2021-04-09T15:14:42.709+1200
2021-04-09T15:14:42.766+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:42.769+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33068
2021-04-09T15:14:42.769+1200 [DEBUG] plugin: plugin exited
2021-04-09T15:14:42.769+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:42.798+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:44.065+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33069
2021-04-09T15:14:44.065+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:44.102+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:44.101+1200
2021-04-09T15:14:44.138+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:44.138+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin555216248 network=unix timestamp=2021-04-09T15:14:44.137+1200
2021-04-09T15:14:44.255+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:44.259+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33069
2021-04-09T15:14:44.259+1200 [DEBUG] plugin: plugin exited
2021/04/09 15:14:44 [INFO] terraform: building graph: GraphTypeValidate
2021/04/09 15:14:44 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/aws"], implied first by data.aws_s3_bucket_object.challenge_file
2021/04/09 15:14:44 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:44 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:44 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file" references: [var.logpush_bucket_name cloudflare_logpush_ownership_challenge.challenge]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.logpush_bucket_region" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.logpush_fields" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.cloudflare_zone_id" references: []
2021/04/09 15:14:44 [INFO] ReferenceTransformer: reference not found: "path.cwd"
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "local.zone_name (expand)" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge" references: [var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job" references: [var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.logpush_fields local.zone_name (expand) data.aws_s3_bucket_object.challenge_file]
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "var.logpush_bucket_name" references: []
2021/04/09 15:14:44 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2021/04/09 15:14:44 [DEBUG] Starting graph walk: walkValidate
2021-04-09T15:14:44.261+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:44.283+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:44.458+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33070
2021-04-09T15:14:44.458+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:44.472+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:44.471+1200
2021-04-09T15:14:44.504+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin338493445 network=unix timestamp=2021-04-09T15:14:44.504+1200
2021-04-09T15:14:44.504+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:44.550+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:44.573+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:45.930+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33071
2021-04-09T15:14:45.930+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:45.968+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:45.968+1200
2021-04-09T15:14:46.006+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin440312474 network=unix timestamp=2021-04-09T15:14:46.006+1200
2021-04-09T15:14:46.006+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:46.193+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:46.197+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33071
2021-04-09T15:14:46.197+1200 [DEBUG] plugin: plugin exited
2021-04-09T15:14:46.198+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:46.199+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33070
2021-04-09T15:14:46.199+1200 [DEBUG] plugin: plugin exited
2021/04/09 15:14:46 [INFO] backend/local: apply calling Plan
2021/04/09 15:14:46 [INFO] terraform: building graph: GraphTypePlan
2021/04/09 15:14:46 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/aws"], implied first by data.aws_s3_bucket_object.challenge_file (expand)
2021/04/09 15:14:46 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:46 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:46 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.cloudflare_zone_id" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.logpush_bucket_name" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.logpush_fields" references: []
2021/04/09 15:14:46 [INFO] ReferenceTransformer: reference not found: "path.cwd"
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "local.zone_name (expand)" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" references: [var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.cloudflare_zone_id]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job (expand)" references: [local.zone_name (expand) data.aws_s3_bucket_object.challenge_file (expand) var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.logpush_fields]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" references: [cloudflare_logpush_ownership_challenge.challenge (expand) var.logpush_bucket_name]
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "var.logpush_bucket_region" references: []
2021/04/09 15:14:46 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2021/04/09 15:14:46 [DEBUG] Starting graph walk: walkPlan
2021-04-09T15:14:46.203+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:46.226+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:47.564+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33072
2021-04-09T15:14:47.564+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:47.601+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:47.601+1200
2021-04-09T15:14:47.637+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin524742223 network=unix timestamp=2021-04-09T15:14:47.637+1200
2021-04-09T15:14:47.637+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:47.683+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:47.707+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:47.876+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33073
2021-04-09T15:14:47.876+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:47.888+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:47.888+1200
2021-04-09T15:14:47.921+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin189490788 network=unix timestamp=2021-04-09T15:14:47.921+1200
2021-04-09T15:14:47.921+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:47.967+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:47 [INFO] AWS Auth provider used: "EnvProvider": timestamp=2021-04-09T15:14:47.967+1200
2021-04-09T15:14:47.971+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:47 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:47.971+1200
2021-04-09T15:14:47.971+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:47 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031447Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:47.971+1200
2021-04-09T15:14:47.973+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:47 [INFO] Cloudflare Client configured for user:
2021/04/09 15:14:47 [DEBUG] Resource instance state not found for node "cloudflare_logpush_ownership_challenge.challenge", instance cloudflare_logpush_ownership_challenge.challenge
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_name"
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "local.zone_name"
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_region"
2021/04/09 15:14:47 [INFO] ReferenceTransformer: reference not found: "var.cloudflare_zone_id"
2021/04/09 15:14:47 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge" references: []
2021/04/09 15:14:47 [DEBUG] refresh: cloudflare_logpush_ownership_challenge.challenge: no state, so not refreshing
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:48 GMT
X-Amzn-Requestid: 6582b91f-d8d3-4c88-99ec-db0d6a6ef7eb
-----------------------------------------------------: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>6582b91f-d8d3-4c88-99ec-db0d6a6ef7eb</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:48.959+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:48 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031448Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:48.959+1200
2021-04-09T15:14:49.802+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:49 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:49 GMT
X-Amzn-Requestid: e845156f-9a1e-43b6-b4ab-478da0b4b8db
-----------------------------------------------------: timestamp=2021-04-09T15:14:49.802+1200
2021-04-09T15:14:49.802+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:49 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>e845156f-9a1e-43b6-b4ab-478da0b4b8db</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:49.802+1200
2021-04-09T15:14:49.807+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:49 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: ec2.us-east-1.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 87
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031449Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:49.807+1200
2021-04-09T15:14:51.038+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:51 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 540
Cache-Control: no-cache, no-store
Content-Type: text/xml;charset=UTF-8
Date: Fri, 09 Apr 2021 03:14:50 GMT
Server: AmazonEC2
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Amzn-Requestid: 824e146d-181f-48bf-ba84-2d20b8ecb0de
-----------------------------------------------------: timestamp=2021-04-09T15:14:51.038+1200
2021-04-09T15:14:51.038+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:51 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
<requestId>824e146d-181f-48bf-ba84-2d20b8ecb0de</requestId>
<accountAttributeSet>
<item>
<attributeName>supported-platforms</attributeName>
<attributeValueSet>
<item>
<attributeValue>VPC</attributeValue>
</item>
</attributeValueSet>
</item>
</accountAttributeSet>
</DescribeAccountAttributesResponse>: timestamp=2021-04-09T15:14:51.038+1200
2021/04/09 15:14:51 [DEBUG] Resource instance state not found for node "data.aws_s3_bucket_object.challenge_file", instance data.aws_s3_bucket_object.challenge_file
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_name"
2021/04/09 15:14:51 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file" references: []
2021/04/09 15:14:51 [DEBUG] Resource instance state not found for node "cloudflare_logpush_job.http_requests_job", instance cloudflare_logpush_job.http_requests_job
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.cloudflare_zone_id"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_name"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "local.zone_name"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_bucket_region"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "var.logpush_fields"
2021/04/09 15:14:51 [INFO] ReferenceTransformer: reference not found: "local.zone_name"
2021/04/09 15:14:51 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job" references: []
2021-04-09T15:14:51.040+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:51.044+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33072
2021-04-09T15:14:51.044+1200 [DEBUG] plugin: plugin exited
2021/04/09 15:14:51 [DEBUG] refresh: cloudflare_logpush_job.http_requests_job: no state, so not refreshing
2021-04-09T15:14:51.046+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:14:51.048+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33073
2021-04-09T15:14:51.048+1200 [DEBUG] plugin: plugin exited
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
<= read (data resources)
Terraform will perform the following actions:
# data.aws_s3_bucket_object.challenge_file will be read during apply
# (config refers to values not yet known)
<= data "aws_s3_bucket_object" "challenge_file" {
2021/04/09 15:14:51 [DEBUG] command: asking for input: "Do you want to perform these actions?"
+ body = (known after apply)
+ bucket = "[BUCKET_NAME]"
+ cache_control = (known after apply)
+ content_disposition = (known after apply)
+ content_encoding = (known after apply)
+ content_language = (known after apply)
+ content_length = (known after apply)
+ content_type = (known after apply)
+ etag = (known after apply)
+ expiration = (known after apply)
+ expires = (known after apply)
+ id = (known after apply)
+ key = (known after apply)
+ last_modified = (known after apply)
+ metadata = (known after apply)
+ object_lock_legal_hold_status = (known after apply)
+ object_lock_mode = (known after apply)
+ object_lock_retain_until_date = (known after apply)
+ server_side_encryption = (known after apply)
+ sse_kms_key_id = (known after apply)
+ storage_class = (known after apply)
+ tags = (known after apply)
+ version_id = (known after apply)
+ website_redirect_location = (known after apply)
}
# cloudflare_logpush_job.http_requests_job will be created
+ resource "cloudflare_logpush_job" "http_requests_job" {
+ dataset = "http_requests"
+ destination_conf = "s3://[BUCKET_NAME]/[ZONE_NAME]/{DATE}?region=us-east-1"
+ enabled = true
+ id = (known after apply)
+ logpull_options = "fields=CacheCacheStatus,CacheResponseBytes,CacheResponseStatus,CacheTieredFill,ClientASN,ClientCountry,ClientDeviceType,ClientIP,ClientIPClass,ClientMTLSAuthCertFingerprint,ClientMTLSAuthStatus,ClientRequestBytes,ClientRequestHost,ClientRequestMethod,ClientRequestPath,ClientRequestProtocol,ClientRequestReferer,ClientRequestScheme,ClientRequestSource,ClientRequestURI,ClientRequestUserAgent,ClientSSLCipher,ClientSSLProtocol,ClientSrcPort,ClientTCPRTTMs,ClientXRequestedWith,EdgeCFConnectingO2O,EdgeColoCode,EdgeColoID,EdgeEndTimestamp,EdgePathingOp,EdgePathingSrc,EdgePathingStatus,EdgeRateLimitAction,EdgeRateLimitID,EdgeRequestHost,EdgeResponseBodyBytes,EdgeResponseBytes,EdgeResponseCompressionRatio,EdgeResponseContentType,EdgeResponseStatus,EdgeServerIP,EdgeStartTimestamp,EdgeTimeToFirstByteMs,FirewallMatchesActions,FirewallMatchesRuleIDs,FirewallMatchesSources,OriginDNSResponseTimeMs,OriginIP,OriginRequestHeaderSendDurationMs,OriginResponseBytes,OriginResponseDurationMs,OriginResponseHTTPExpires,OriginResponseHTTPLastModified,OriginResponseHeaderReceiveDurationMs,OriginResponseStatus,OriginResponseTime,OriginSSLProtocol,OriginTCPHandshakeDurationMs,OriginTLSHandshakeDurationMs,ParentRayID,RayID,SecurityLevel,SmartRouteColoID,UpperTierColoID,WAFAction,WAFFlags,WAFMatchedVar,WAFProfile,WAFRuleID,WAFRuleMessage,WorkerCPUTime,WorkerStatus,WorkerSubrequest,WorkerSubrequestCount,ZoneID,ZoneName×tamps=rfc3339"
+ name = "[ZONE_NAME]"
+ ownership_challenge = (known after apply)
+ zone_id = "[ZONE_ID]"
}
# cloudflare_logpush_ownership_challenge.challenge will be created
+ resource "cloudflare_logpush_ownership_challenge" "challenge" {
+ destination_conf = "s3://[BUCKET_NAME]/[ZONE_NAME]?region=us-east-1"
+ id = (known after apply)
+ ownership_challenge_filename = (known after apply)
+ zone_id = "[ZONE_ID]"
}
Plan: 2 to add, 0 to change, 0 to destroy.
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value: yes
2021/04/09 15:14:54 [INFO] backend/local: apply calling Apply
2021/04/09 15:14:54 [INFO] terraform: building graph: GraphTypeApply
2021/04/09 15:14:54 [DEBUG] Resource state not found for node "cloudflare_logpush_ownership_challenge.challenge", instance cloudflare_logpush_ownership_challenge.challenge
2021/04/09 15:14:54 [DEBUG] Resource state not found for node "data.aws_s3_bucket_object.challenge_file", instance data.aws_s3_bucket_object.challenge_file
2021/04/09 15:14:54 [DEBUG] Resource state not found for node "cloudflare_logpush_job.http_requests_job", instance cloudflare_logpush_job.http_requests_job
2021/04/09 15:14:54 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/aws"], implied first by data.aws_s3_bucket_object.challenge_file (expand)
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_ownership_challenge.challenge" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "data.aws_s3_bucket_object.challenge_file" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2021/04/09 15:14:54 [DEBUG] ProviderTransformer: "cloudflare_logpush_job.http_requests_job" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.logpush_bucket_region" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.logpush_fields" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_ownership_challenge.challenge" references: [var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "data.aws_s3_bucket_object.challenge_file" references: [var.logpush_bucket_name cloudflare_logpush_ownership_challenge.challenge (expand) cloudflare_logpush_ownership_challenge.challenge cloudflare_logpush_ownership_challenge.challenge]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.cloudflare_zone_id" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "var.logpush_bucket_name" references: []
2021/04/09 15:14:54 [INFO] ReferenceTransformer: reference not found: "path.cwd"
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "local.zone_name (expand)" references: []
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "cloudflare_logpush_job.http_requests_job" references: [data.aws_s3_bucket_object.challenge_file (expand) data.aws_s3_bucket_object.challenge_file data.aws_s3_bucket_object.challenge_file var.cloudflare_zone_id var.logpush_bucket_name local.zone_name (expand) var.logpush_bucket_region var.logpush_fields local.zone_name (expand)]
2021/04/09 15:14:54 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: []
2021/04/09 15:14:54 [DEBUG] Starting graph walk: walkApply
2021-04-09T15:14:54.319+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:54.343+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5]
2021-04-09T15:14:55.590+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33074
2021-04-09T15:14:55.590+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5
2021-04-09T15:14:55.631+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: configuring server automatic mTLS: timestamp=2021-04-09T15:14:55.631+1200
2021-04-09T15:14:55.667+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:55.667+1200 [DEBUG] plugin.terraform-provider-aws_v3.35.0_x5: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin377293537 network=unix timestamp=2021-04-09T15:14:55.667+1200
2021-04-09T15:14:55.712+1200 [INFO] plugin: configuring client automatic mTLS
2021-04-09T15:14:55.733+1200 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2]
2021-04-09T15:14:55.907+1200 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33075
2021-04-09T15:14:55.907+1200 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2
2021-04-09T15:14:55.920+1200 [INFO] plugin.terraform-provider-cloudflare_v2.19.2: configuring server automatic mTLS: timestamp=2021-04-09T15:14:55.920+1200
2021-04-09T15:14:55.953+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: plugin address: address=/var/folders/hd/_1jqks_53ddd3j41f___mxw40000gn/T/plugin109497206 network=unix timestamp=2021-04-09T15:14:55.953+1200
2021-04-09T15:14:55.953+1200 [DEBUG] plugin: using plugin: version=5
2021-04-09T15:14:55.999+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:55 [INFO] AWS Auth provider used: "EnvProvider": timestamp=2021-04-09T15:14:55.999+1200
2021-04-09T15:14:56.002+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:56.001+1200
2021-04-09T15:14:56.002+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031456Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:56.002+1200
2021-04-09T15:14:56.004+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:56 [INFO] Cloudflare Client configured for user:
cloudflare_logpush_ownership_challenge.challenge: Creating...
2021/04/09 15:14:56 [DEBUG] EvalApply: ProviderMeta config value set
2021/04/09 15:14:56 [DEBUG] cloudflare_logpush_ownership_challenge.challenge: applying the planned Create change
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:56 [DEBUG] Cloudflare API Request Details:
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ REQUEST ]---------------------------------------
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: POST /client/v4/zones/[ZONE_ID]/logpush/ownership HTTP/1.1
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Host: api.cloudflare.com
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: User-Agent: HashiCorp Terraform/0.14.9 (+https://www.terraform.io) Terraform Plugin SDK/1.16.0 terraform-provider-cloudflare/2.19.2
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Length: 92
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Authorization: Bearer [REDACTED]
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Accept-Encoding: gzip
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "destination_conf": "s3://[BUCKET_NAME]/[ZONE_NAME]?region=us-east-1"
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:14:56.006+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021-04-09T15:14:56.978+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:56 GMT
X-Amzn-Requestid: c99ccbf0-dc64-4cca-8929-9d73d4594bbf
-----------------------------------------------------: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:56.978+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>c99ccbf0-dc64-4cca-8929-9d73d4594bbf</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:56.978+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] Trying to get account information via sts:GetCallerIdentity: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:56.979+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:56 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 43
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031456Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:56.978+1200
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:57 [DEBUG] Cloudflare API Response Details:
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ RESPONSE ]--------------------------------------
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: HTTP/2.0 200 OK
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Cache-Status: DYNAMIC
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Ray: 63d0916d0f7fa42d-AKL
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Request-Id: 09563938220000a42d9611b000000001
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Version: 616-c3df1d9
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Date: Fri, 09 Apr 2021 03:14:57 GMT
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Expect-Ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Server: cloudflare
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfduid=[REDACTED]; expires=Sun, 09-May-21 03:14:56 GMT; path=/; domain=.api.cloudflare.com; HttpOnly; SameSite=Lax; Secure
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cflb=[REDACTED]; SameSite=Lax; path=/; expires=Fri, 09-Apr-21 05:44:58 GMT; HttpOnly
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfruid=[REDACTED]; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Vary: Accept-Encoding
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: X-Envoy-Upstream-Service-Time: 712
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "errors": [],
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "messages": [],
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "result": {
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "filename": "[ZONE_NAME]/ownership-challenge-2d648752.txt",
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "message": "",
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "valid": true
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: },
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "success": true
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021-04-09T15:14:57.209+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:14:57 [INFO] Created Cloudflare Logpush Ownership Challenge: [REDACTED]
cloudflare_logpush_ownership_challenge.challenge: Creation complete after 1s [id=[REDACTED]]
2021-04-09T15:14:57.820+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:57 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 459
Content-Type: text/xml
Date: Fri, 09 Apr 2021 03:14:57 GMT
X-Amzn-Requestid: d2709400-3d6c-49cd-9f09-b3cfc38e287a
-----------------------------------------------------: timestamp=2021-04-09T15:14:57.820+1200
2021-04-09T15:14:57.820+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:57 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<GetCallerIdentityResult>
<Arn>arn:aws:sts::[ACCOUNT_ID]:assumed-role/cloudformation/1617937947818477000</Arn>
<UserId>[USER_ID]:1617937947818477000</UserId>
<Account>[ACCOUNT_ID]</Account>
</GetCallerIdentityResult>
<ResponseMetadata>
<RequestId>d2709400-3d6c-49cd-9f09-b3cfc38e287a</RequestId>
</ResponseMetadata>
</GetCallerIdentityResponse>: timestamp=2021-04-09T15:14:57.820+1200
2021-04-09T15:14:57.824+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:57 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: ec2.us-east-1.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Content-Length: 87
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20210409T031457Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
-----------------------------------------------------: timestamp=2021-04-09T15:14:57.824+1200
2021-04-09T15:14:58.702+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 540
Cache-Control: no-cache, no-store
Content-Type: text/xml;charset=UTF-8
Date: Fri, 09 Apr 2021 03:14:58 GMT
Server: AmazonEC2
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Amzn-Requestid: 1e56584e-97dc-494a-9dfe-6b9bd1e51fe2
-----------------------------------------------------: timestamp=2021-04-09T15:14:58.701+1200
data.aws_s3_bucket_object.challenge_file: Reading...
2021-04-09T15:14:58.702+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
<requestId>1e56584e-97dc-494a-9dfe-6b9bd1e51fe2</requestId>
<accountAttributeSet>
<item>
<attributeName>supported-platforms</attributeName>
<attributeValueSet>
<item>
<attributeValue>VPC</attributeValue>
</item>
</attributeValueSet>
</item>
</accountAttributeSet>
</DescribeAccountAttributesResponse>: timestamp=2021-04-09T15:14:58.702+1200
2021-04-09T15:14:58.703+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] Reading S3 Bucket Object: {
Bucket: "[BUCKET_NAME]",
Key: "[ZONE_NAME]/ownership-challenge-2d648752.txt"
}: timestamp=2021-04-09T15:14:58.703+1200
2021-04-09T15:14:58.703+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:58 [DEBUG] [aws-sdk-go] DEBUG: Request s3/HeadObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
HEAD /[ZONE_NAME]/ownership-challenge-2d648752.txt HTTP/1.1
Host: [BUCKET_NAME].s3.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031458Z
X-Amz-Security-Token: [REDACTED]
-----------------------------------------------------: timestamp=2021-04-09T15:14:58.703+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] [aws-sdk-go] DEBUG: Response s3/HeadObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 400
Accept-Ranges: bytes
Content-Encoding: compress
Content-Type: text/plain
Date: Fri, 09 Apr 2021 03:15:00 GMT
Etag: "d6c2e5acff199508b99309162a956a4d"
Last-Modified: Fri, 09 Apr 2021 03:14:57 GMT
Server: AmazonS3
X-Amz-Expiration: expiry-date="Fri, 09 Apr 2027 00:00:00 GMT", rule-id="MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj"
X-Amz-Id-2: sMsyIzwFJjANhknDdlrvc1sP3TMoaxkRLkGpee4p+mOoMiGukdUWBWK9NyuAtWXAzys/fgASi2U=
X-Amz-Request-Id: Z0G9YNXCM4DKTCH6
X-Amz-Server-Side-Encryption: AES256
-----------------------------------------------------: timestamp=2021-04-09T15:14:59.586+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] [aws-sdk-go]: timestamp=2021-04-09T15:14:59.586+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] Received S3 object: {
AcceptRanges: "bytes",
ContentEncoding: "compress",
ContentLength: 400,
ContentType: "text/plain",
ETag: "\"d6c2e5acff199508b99309162a956a4d\"",
Expiration: "expiry-date=\"Fri, 09 Apr 2027 00:00:00 GMT\", rule-id=\"MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj\"",
LastModified: 2021-04-09 03:14:57 +0000 UTC,
ServerSideEncryption: "AES256"
}: timestamp=2021-04-09T15:14:59.587+1200
2021-04-09T15:14:59.587+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:14:59 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /[ZONE_NAME]/ownership-challenge-2d648752.txt HTTP/1.1
Host: [BUCKET_NAME].s3.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031459Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------: timestamp=2021-04-09T15:14:59.587+1200
2021-04-09T15:15:00.429+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 400
Accept-Ranges: bytes
Content-Encoding: compress
Content-Type: text/plain
Date: Fri, 09 Apr 2021 03:15:01 GMT
Etag: "d6c2e5acff199508b99309162a956a4d"
Last-Modified: Fri, 09 Apr 2021 03:14:57 GMT
Server: AmazonS3
X-Amz-Expiration: expiry-date="Fri, 09 Apr 2027 00:00:00 GMT", rule-id="MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj"
X-Amz-Id-2: K2pcv5QygaOQoxG07B+WeCEtLlSdi5r+/Vm+Yapcmfp7xrygdO+/ZcEXA04s2c3b/lbN2w6jRgo=
X-Amz-Request-Id: XJJJ9AT8EVESM2K3
X-Amz-Server-Side-Encryption: AES256
-----------------------------------------------------: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.429+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] [aws-sdk-go]: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.430+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [INFO] Saving 400 bytes from S3 object [BUCKET_NAME]/[ZONE_NAME]/ownership-challenge-2d648752.txt: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.430+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] Waiting for state to become: [success]: timestamp=2021-04-09T15:15:00.429+1200
2021-04-09T15:15:00.430+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:00 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObjectTagging Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /[ZONE_NAME]/ownership-challenge-2d648752.txt?tagging= HTTP/1.1
Host: [BUCKET_NAME].s3.amazonaws.com
User-Agent: aws-sdk-go/1.38.6 (go1.16; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9 (+https://www.terraform.io) terraform-provider-aws/dev (+https://registry.terraform.io/providers/hashicorp/aws)
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20210409T031500Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
-----------------------------------------------------: timestamp=2021-04-09T15:15:00.430+1200
2021-04-09T15:15:01.301+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:01 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObjectTagging Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Transfer-Encoding: chunked
Date: Fri, 09 Apr 2021 03:15:02 GMT
Server: AmazonS3
X-Amz-Id-2: tzU02yvTENQ3qpSQbYlFfAz3NmdyfJXhGwVICqHB2sHWBLe9Zt+6R+C9gOzxwgn/MKNba3bp3vM=
X-Amz-Request-Id: GQPW1G91ZM4REXB9
-----------------------------------------------------: timestamp=2021-04-09T15:15:01.301+1200
2021-04-09T15:15:01.301+1200 [INFO] plugin.terraform-provider-aws_v3.35.0_x5: 2021/04/09 15:15:01 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<Tagging xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><TagSet/></Tagging>: timestamp=2021-04-09T15:15:01.301+1200
data.aws_s3_bucket_object.challenge_file: Read complete after 2s [id=[BUCKET_NAME]/[ZONE_NAME]/ownership-challenge-2d648752.txt]
2021-04-09T15:15:01.305+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:15:01.309+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/3.35.0/darwin_amd64/terraform-provider-aws_v3.35.0_x5 pid=33074
2021-04-09T15:15:01.310+1200 [DEBUG] plugin: plugin exited
cloudflare_logpush_job.http_requests_job: Creating...
2021/04/09 15:15:01 [DEBUG] EvalApply: ProviderMeta config value set
2021/04/09 15:15:01 [DEBUG] cloudflare_logpush_job.http_requests_job: applying the planned Create change
[REDACTED] LastComplete:<nil> LastError:<nil> ErrorMessage:}
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:15:01 [DEBUG] Cloudflare API Request Details:
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ REQUEST ]---------------------------------------
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: POST /client/v4/zones/[ZONE_ID]/logpush/jobs HTTP/1.1
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Host: api.cloudflare.com
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: User-Agent: HashiCorp Terraform/0.14.9 (+https://www.terraform.io) Terraform Plugin SDK/1.16.0 terraform-provider-cloudflare/2.19.2
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Length: 2048
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Authorization: Bearer [REDACTED]
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Accept-Encoding: gzip
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "dataset": "http_requests",
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "enabled": true,
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "name": "[ZONE_NAME]",
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "logpull_options": "fields=CacheCacheStatus,CacheResponseBytes,CacheResponseStatus,CacheTieredFill,ClientASN,ClientCountry,ClientDeviceType,ClientIP,ClientIPClass,ClientMTLSAuthCertFingerprint,ClientMTLSAuthStatus,ClientRequestBytes,ClientRequestHost,ClientRequestMethod,ClientRequestPath,ClientRequestProtocol,ClientRequestReferer,ClientRequestScheme,ClientRequestSource,ClientRequestURI,ClientRequestUserAgent,ClientSSLCipher,ClientSSLProtocol,ClientSrcPort,ClientTCPRTTMs,ClientXRequestedWith,EdgeCFConnectingO2O,EdgeColoCode,EdgeColoID,EdgeEndTimestamp,EdgePathingOp,EdgePathingSrc,EdgePathingStatus,EdgeRateLimitAction,EdgeRateLimitID,EdgeRequestHost,EdgeResponseBodyBytes,EdgeResponseBytes,EdgeResponseCompressionRatio,EdgeResponseContentType,EdgeResponseStatus,EdgeServerIP,EdgeStartTimestamp,EdgeTimeToFirstByteMs,FirewallMatchesActions,FirewallMatchesRuleIDs,FirewallMatchesSources,OriginDNSResponseTimeMs,OriginIP,OriginRequestHeaderSendDurationMs,OriginResponseBytes,OriginResponseDurationMs,OriginResponseHTTPExpires,OriginResponseHTTPLastModified,OriginResponseHeaderReceiveDurationMs,OriginResponseStatus,OriginResponseTime,OriginSSLProtocol,OriginTCPHandshakeDurationMs,OriginTLSHandshakeDurationMs,ParentRayID,RayID,SecurityLevel,SmartRouteColoID,UpperTierColoID,WAFAction,WAFFlags,WAFMatchedVar,WAFProfile,WAFRuleID,WAFRuleMessage,WorkerCPUTime,WorkerStatus,WorkerSubrequest,WorkerSubrequestCount,ZoneID,ZoneName\u0026timestamps=rfc3339",
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "destination_conf": "s3://[BUCKET_NAME]/[ZONE_NAME]/{DATE}?region=us-east-1",
[REDACTED]"
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:15:01.312+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: 2021/04/09 15:15:02 [DEBUG] Cloudflare API Response Details:
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ---[ RESPONSE ]--------------------------------------
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: HTTP/2.0 400 Bad Request
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Cache-Status: DYNAMIC
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Ray: 63d0918d6e52fb94-AKL
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Request-Id: 0956394c5e0000fb94700a8000000001
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Cf-Version: 616-c3df1d9
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Content-Type: application/json
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Date: Fri, 09 Apr 2021 03:15:02 GMT
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Expect-Ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Server: cloudflare
2021-04-09T15:15:02.138+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfduid=[REDACTED]; expires=Sun, 09-May-21 03:15:01 GMT; path=/; domain=.api.cloudflare.com; HttpOnly; SameSite=Lax; Secure
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cflb=[REDACTED]; SameSite=Lax; path=/; expires=Fri, 09-Apr-21 05:45:03 GMT; HttpOnly
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Set-Cookie: __cfruid=[REDACTED]; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: Vary: Accept-Encoding
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: X-Envoy-Upstream-Service-Time: 1
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2:
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "errors": [
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: {
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "code": 1002,
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "message": "incorrect ownership challenge"
plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: ],
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "messages": [],
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "result": null,
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: "success": false
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: }
2021-04-09T15:15:02.139+1200 [DEBUG] plugin.terraform-provider-cloudflare_v2.19.2: -----------------------------------------------------
2021/04/09 15:15:02 [DEBUG] cloudflare_logpush_job.http_requests_job: apply errored, but we're indicating that via the Error pointer rather than returning it: error creating logpush job: HTTP status 400: incorrect ownership challenge (1002)
2021/04/09 15:15:02 [DEBUG] Uploading remote state to S3: {
Body: buffer(0xc0012b0d20),
Bucket: "[STATE_BUCKET]",
ContentLength: 2772,
ContentType: "application/json",
Key: "logpush/[ZONE_NAME].tfstate"
}
2021/04/09 15:15:02 [DEBUG] [aws-sdk-go] DEBUG: Request s3/PutObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
PUT /logpush/[ZONE_NAME].tfstate HTTP/1.1
Host: [STATE_BUCKET].s3.amazonaws.com
User-Agent: aws-sdk-go/1.37.0 (go1.15.6; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.14.9
Content-Length: 2772
Authorization: AWS4-HMAC-SHA256 Credential=[REDACTED]/20210409/us-east-1/s3/aws4_request, SignedHeaders=content-length;content-md5;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-security-token, Signature=[REDACTED]
Content-Md5: LGJmymUow+aIW9VIVTi7KQ==
Content-Type: application/json
X-Amz-Content-Sha256: 715af62fa73122cb79a40e03fdaff989313f2c39fb55fcf2ea593f5f0b811428
X-Amz-Date: 20210409T031502Z
X-Amz-Security-Token: [REDACTED]
Accept-Encoding: gzip
{
"version": 4,
"terraform_version": "0.14.9",
"serial": 14,
"lineage": "a6701f5b-6b49-e334-1bee-de8245a4e909",
"outputs": {},
"resources": [
{
"mode": "data",
"type": "aws_s3_bucket_object",
"name": "challenge_file",
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"body": "[CHALLENGE_VALUE]",
"bucket": "[BUCKET_NAME]",
"cache_control": "",
"content_disposition": "",
"content_encoding": "compress",
"content_language": "",
"content_length": 400,
"content_type": "text/plain",
"etag": "d6c2e5acff199508b99309162a956a4d",
"expiration": "expiry-date=\"Fri, 09 Apr 2027 00:00:00 GMT\", rule-id=\"MjM4Mjc1YTYtYWUwOS00NzE5LWI0ODItMzg2NWRhYWVmY2Fj\"",
"expires": "",
"id": "[BUCKET_NAME]/[ZONE_NAME]/ownership-challenge-2d648752.txt",
"key": "[ZONE_NAME]/ownership-challenge-2d648752.txt",
"last_modified": "Fri, 09 Apr 2021 03:14:57 UTC",
"metadata": {},
"object_lock_legal_hold_status": "",
"object_lock_mode": "",
"object_lock_retain_until_date": "",
"range": null,
"server_side_encryption": "AES256",
"sse_kms_key_id": "",
"storage_class": "STANDARD",
"tags": {},
"version_id": "",
"website_redirect_location": ""
},
"sensitive_attributes": []
}
]
},
{
"mode": "managed",
"type": "cloudflare_logpush_ownership_challenge",
"name": "challenge",
"provider": "provider[\"registry.terraform.io/cloudflare/cloudflare\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"destination_conf": "s3://[BUCKET_NAME]/[ZONE_NAME]?region=us-east-1",
": "[REDACTED]",
"ownership_challenge_filename": "[ZONE_NAME]/ownership-challenge-2d648752.txt",
"zone_id": "[ZONE_ID]"
},
"sensitive_attributes": [],
"private": "bnVsbA=="
}
]
}
]
}
-----------------------------------------------------
2021/04/09 15:15:03 [DEBUG] [aws-sdk-go] DEBUG: Response s3/PutObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 0
Date: Fri, 09 Apr 2021 03:15:04 GMT
Etag: "2c6266ca6528c3e6885bd5485538bb29"
Server: AmazonS3
X-Amz-Id-2: V4Oc3JXJiGyneVZbybxjSSBWXIew0eESsQkUZ7eg4dTSeZd9rv27ydimEgFpz5EZ1ozDf4Kntm4=
X-Amz-Request-Id: 3S9676TR6PTSZPV3
X-Amz-Version-Id: iWHMYa02bJk2RJ_Ts61B3sraWCc__2n7
-----------------------------------------------------
2021/04/09 15:15:03 [DEBUG] [aws-sdk-go]
Error: error creating logpush job: HTTP status 400: incorrect ownership challenge (1002)
on [ZONE_NAME].tf line 19, in resource "cloudflare_logpush_job" "http_requests_job":
19: resource "cloudflare_logpush_job" "http_requests_job" {
2021-04-09T15:15:03.258+1200 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2021-04-09T15:15:03.261+1200 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/2.19.2/darwin_amd64/terraform-provider-cloudflare_v2.19.2 pid=33075
2021-04-09T15:15:03.261+1200 [DEBUG] plugin: plugin exited
```
### Panic output
None
### Expected output
The job to be created successfully.
### Actual output
An error was thrown:
```
Error: error creating logpush job: HTTP status 400: incorrect ownership challenge (1002)
on main.tf line 19, in resource "cloudflare_logpush_job" "http_requests_job":
19: resource "cloudflare_logpush_job" "http_requests_job" {
```
### Steps to reproduce
1. Apply the above config with appropriately configured S3 permissions.
2. Observe error.
### Additional factoids
I have confirmed that the `ownership_challenge` value sent in the job is identical to the value in the ownership challenge file written to S3.
I've come across two minor documentation issues while working on this:
1. The [example documentation](https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs/resources/logpush_job#example-usage-with-aws-provider) uses a `data` resource, but references it as if it were a standard resource:
`ownership_challenge = aws_s3_bucket_object.challenge_file.body`
should really read:
`ownership_challenge = data.aws_s3_bucket_object.challenge_file.body`
2. There is no mention of required S3 permissions for the ownership challenge. I've found that this code requires `GetObject`, `PutObject`, and `GetObjectTagging`. It would be helpful if these were documented somewhere.
### References
_No response_ | non_test | automated logpush challenge not working confirmation my issue isn t already found on the issue tracker i have replicated my issue using the latest version of the provider and it is still present terraform version terraform version cloudflare provider version affected resource s cloudflare logpush ownership challenge cloudflare logpush job aws bucket object terraform configuration files resource cloudflare logpush ownership challenge challenge zone id var cloudflare zone id destination conf var logpush bucket name local zone name region var logpush bucket region data aws bucket object challenge file bucket var logpush bucket name key cloudflare logpush ownership challenge challenge ownership challenge filename resource cloudflare logpush job http requests job enabled true zone id var cloudflare zone id name local zone name logpull options fields join var logpush fields timestamps destination conf var logpush bucket name local zone name date region var logpush bucket region ownership challenge data aws bucket object challenge file body dataset http requests debug output tf log debug terraform apply log levels other than trace are currently unreliable and are supported only for backward compatibility use tf log trace to see terraform s internal logs terraform version go runtime version cli args string usr local cellar tfenv versions terraform apply attempting to open cli config file users rosssimpson terraformrc loading cli configuration from users rosssimpson terraformrc ignoring non existing provider search directory terraform d plugins ignoring non existing provider search directory users rosssimpson terraform d plugins ignoring non existing provider search directory users rosssimpson library application support io terraform plugins ignoring non existing provider search directory library application support io terraform plugins cli command args string apply log levels other than trace are currently unreliable and are supported only for backward compatibility use tf log trace to see terraform s internal logs log levels other than trace are currently unreliable and are supported only for backward compatibility use tf log trace to see terraform s internal logs aws auth provider used envprovider trying to get account information via sts getcalleridentity debug request sts getcalleridentity details post http host sts amazonaws com user agent aws sdk go darwin apn hashicorp terraform content length authorization hmac credential us east sts request signedheaders content length content type host x amz date x amz security token signature content type application x www form urlencoded charset utf x amz date x amz security token accept encoding gzip action getcalleridentity version debug response sts getcalleridentity details http ok connection close content length content type text xml date fri apr gmt x amzn requestid getcalleridentityresponse xmlns arn aws sts assumed role cloudformation checking for provisioner in checking for provisioner in usr local cellar tfenv versions failed to read plugin lock file terraform plugins darwin lock json open terraform plugins darwin lock json no such file or directory backend local starting apply operation debug request listobjects details get max keys prefix env http host amazonaws com user agent aws sdk go darwin apn hashicorp terraform authorization hmac credential us east request signedheaders host x amz content x amz date x amz security token signature x amz content x amz date x amz security token accept encoding gzip debug response listobjects details http ok connection close transfer encoding chunked content type application xml date fri apr gmt server x amz bucket region us east x amz id xvrivbp nnowabc x amz request id env false debug request getobject details get logpush tfstate http host amazonaws com user agent aws sdk go darwin apn hashicorp terraform authorization hmac credential us east request signedheaders host x amz content x amz date x amz security token signature x amz content x amz date x amz security token accept encoding gzip debug response getobject details http ok connection close content length accept ranges bytes content type application json date fri apr gmt etag last modified fri apr gmt server x amz id x amz request id x amz version id nyejswgilmgep plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare args plugin plugin started path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin waiting for rpc address path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare plugin terraform provider cloudflare configuring server automatic mtls timestamp plugin using plugin version plugin terraform provider cloudflare plugin address address var folders hd t network unix timestamp plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin plugin exited plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io hashicorp aws darwin terraform provider aws args plugin plugin started path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin waiting for rpc address path terraform providers registry terraform io hashicorp aws darwin terraform provider aws plugin terraform provider aws configuring server automatic mtls timestamp plugin using plugin version plugin terraform provider aws plugin address address var folders hd t network unix timestamp plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin plugin exited terraform building graph graphtypevalidate adding implicit provider configuration provider implied first by data aws bucket object challenge file providertransformer cloudflare logpush ownership challenge challenge terraform nodevalidatableresource needs provider providertransformer cloudflare logpush job http requests job terraform nodevalidatableresource needs provider providertransformer data aws bucket object challenge file terraform nodevalidatableresource needs provider referencetransformer data aws bucket object challenge file references referencetransformer var logpush bucket region references referencetransformer var logpush fields references referencetransformer var cloudflare zone id references referencetransformer reference not found path cwd referencetransformer local zone name expand references referencetransformer cloudflare logpush ownership challenge challenge references referencetransformer cloudflare logpush job http requests job references referencetransformer provider references referencetransformer var logpush bucket name references referencetransformer provider references starting graph walk walkvalidate plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare args plugin plugin started path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin waiting for rpc address path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare plugin terraform provider cloudflare configuring server automatic mtls timestamp plugin terraform provider cloudflare plugin address address var folders hd t network unix timestamp plugin using plugin version plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io hashicorp aws darwin terraform provider aws args plugin plugin started path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin waiting for rpc address path terraform providers registry terraform io hashicorp aws darwin terraform provider aws plugin terraform provider aws configuring server automatic mtls timestamp plugin terraform provider aws plugin address address var folders hd t network unix timestamp plugin using plugin version plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin plugin exited plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin plugin exited backend local apply calling plan terraform building graph graphtypeplan adding implicit provider configuration provider implied first by data aws bucket object challenge file expand providertransformer data aws bucket object challenge file expand terraform nodeexpandplannableresource needs provider providertransformer cloudflare logpush ownership challenge challenge expand terraform nodeexpandplannableresource needs provider providertransformer cloudflare logpush job http requests job expand terraform nodeexpandplannableresource needs provider referencetransformer var cloudflare zone id references referencetransformer var logpush bucket name references referencetransformer var logpush fields references referencetransformer reference not found path cwd referencetransformer local zone name expand references referencetransformer provider references referencetransformer cloudflare logpush ownership challenge challenge expand references referencetransformer cloudflare logpush job http requests job expand references referencetransformer data aws bucket object challenge file expand references referencetransformer var logpush bucket region references referencetransformer provider references starting graph walk walkplan plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io hashicorp aws darwin terraform provider aws args plugin plugin started path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin waiting for rpc address path terraform providers registry terraform io hashicorp aws darwin terraform provider aws plugin terraform provider aws configuring server automatic mtls timestamp plugin terraform provider aws plugin address address var folders hd t network unix timestamp plugin using plugin version plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare args plugin plugin started path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin waiting for rpc address path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare plugin terraform provider cloudflare configuring server automatic mtls timestamp plugin terraform provider cloudflare plugin address address var folders hd t network unix timestamp plugin using plugin version plugin terraform provider aws aws auth provider used envprovider timestamp plugin terraform provider aws trying to get account information via sts getcalleridentity timestamp plugin terraform provider aws debug request sts getcalleridentity details post http host sts amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev content length authorization hmac credential us east sts request signedheaders content length content type host x amz date x amz security token signature content type application x www form urlencoded charset utf x amz date x amz security token accept encoding gzip action getcalleridentity version timestamp plugin terraform provider cloudflare cloudflare client configured for user resource instance state not found for node cloudflare logpush ownership challenge challenge instance cloudflare logpush ownership challenge challenge referencetransformer reference not found var logpush bucket name referencetransformer reference not found local zone name referencetransformer reference not found var logpush bucket region referencetransformer reference not found var cloudflare zone id referencetransformer cloudflare logpush ownership challenge challenge references refresh cloudflare logpush ownership challenge challenge no state so not refreshing plugin terraform provider aws debug response sts getcalleridentity details http ok connection close content length content type text xml date fri apr gmt x amzn requestid timestamp plugin terraform provider aws getcalleridentityresponse xmlns arn aws sts assumed role cloudformation timestamp plugin terraform provider aws trying to get account information via sts getcalleridentity timestamp plugin terraform provider aws debug request sts getcalleridentity details post http host sts amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev content length authorization hmac credential us east sts request signedheaders content length content type host x amz date x amz security token signature content type application x www form urlencoded charset utf x amz date x amz security token accept encoding gzip action getcalleridentity version timestamp plugin terraform provider aws debug response sts getcalleridentity details http ok connection close content length content type text xml date fri apr gmt x amzn requestid timestamp plugin terraform provider aws getcalleridentityresponse xmlns arn aws sts assumed role cloudformation timestamp plugin terraform provider aws debug request describeaccountattributes details post http host us east amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev content length authorization hmac credential us east request signedheaders content length content type host x amz date x amz security token signature content type application x www form urlencoded charset utf x amz date x amz security token accept encoding gzip action describeaccountattributes attributename supported platforms version timestamp plugin terraform provider aws debug response describeaccountattributes details http ok connection close content length cache control no cache no store content type text xml charset utf date fri apr gmt server strict transport security max age includesubdomains x amzn requestid timestamp plugin terraform provider aws describeaccountattributesresponse xmlns supported platforms vpc timestamp resource instance state not found for node data aws bucket object challenge file instance data aws bucket object challenge file referencetransformer reference not found var logpush bucket name referencetransformer data aws bucket object challenge file references resource instance state not found for node cloudflare logpush job http requests job instance cloudflare logpush job http requests job referencetransformer reference not found var cloudflare zone id referencetransformer reference not found var logpush bucket name referencetransformer reference not found local zone name referencetransformer reference not found var logpush bucket region referencetransformer reference not found var logpush fields referencetransformer reference not found local zone name referencetransformer cloudflare logpush job http requests job references plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin plugin exited refresh cloudflare logpush job http requests job no state so not refreshing plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin plugin exited an execution plan has been generated and is shown below resource actions are indicated with the following symbols create read data resources terraform will perform the following actions data aws bucket object challenge file will be read during apply config refers to values not yet known data aws bucket object challenge file command asking for input do you want to perform these actions body known after apply bucket cache control known after apply content disposition known after apply content encoding known after apply content language known after apply content length known after apply content type known after apply etag known after apply expiration known after apply expires known after apply id known after apply key known after apply last modified known after apply metadata known after apply object lock legal hold status known after apply object lock mode known after apply object lock retain until date known after apply server side encryption known after apply sse kms key id known after apply storage class known after apply tags known after apply version id known after apply website redirect location known after apply cloudflare logpush job http requests job will be created resource cloudflare logpush job http requests job dataset http requests destination conf date region us east enabled true id known after apply logpull options fields cachecachestatus cacheresponsebytes cacheresponsestatus cachetieredfill clientasn clientcountry clientdevicetype clientip clientipclass clientmtlsauthcertfingerprint clientmtlsauthstatus clientrequestbytes clientrequesthost clientrequestmethod clientrequestpath clientrequestprotocol clientrequestreferer clientrequestscheme clientrequestsource clientrequesturi clientrequestuseragent clientsslcipher clientsslprotocol clientsrcport clienttcprttms clientxrequestedwith edgecolocode edgecoloid edgeendtimestamp edgepathingop edgepathingsrc edgepathingstatus edgeratelimitaction edgeratelimitid edgerequesthost edgeresponsebodybytes edgeresponsebytes edgeresponsecompressionratio edgeresponsecontenttype edgeresponsestatus edgeserverip edgestarttimestamp edgetimetofirstbytems firewallmatchesactions firewallmatchesruleids firewallmatchessources origindnsresponsetimems originip originrequestheadersenddurationms originresponsebytes originresponsedurationms originresponsehttpexpires originresponsehttplastmodified originresponseheaderreceivedurationms originresponsestatus originresponsetime originsslprotocol origintcphandshakedurationms origintlshandshakedurationms parentrayid rayid securitylevel smartroutecoloid uppertiercoloid wafaction wafflags wafmatchedvar wafprofile wafruleid wafrulemessage workercputime workerstatus workersubrequest workersubrequestcount zoneid zonename timestamps name ownership challenge known after apply zone id cloudflare logpush ownership challenge challenge will be created resource cloudflare logpush ownership challenge challenge destination conf region us east id known after apply ownership challenge filename known after apply zone id plan to add to change to destroy do you want to perform these actions terraform will perform the actions described above only yes will be accepted to approve enter a value yes backend local apply calling apply terraform building graph graphtypeapply resource state not found for node cloudflare logpush ownership challenge challenge instance cloudflare logpush ownership challenge challenge resource state not found for node data aws bucket object challenge file instance data aws bucket object challenge file resource state not found for node cloudflare logpush job http requests job instance cloudflare logpush job http requests job adding implicit provider configuration provider implied first by data aws bucket object challenge file expand providertransformer cloudflare logpush ownership challenge challenge expand terraform nodeexpandapplyableresource needs provider providertransformer cloudflare logpush job http requests job expand terraform nodeexpandapplyableresource needs provider providertransformer data aws bucket object challenge file expand terraform nodeexpandapplyableresource needs provider providertransformer cloudflare logpush ownership challenge challenge terraform nodeapplyableresourceinstance needs provider providertransformer data aws bucket object challenge file terraform nodeapplyableresourceinstance needs provider providertransformer cloudflare logpush job http requests job terraform nodeapplyableresourceinstance needs provider referencetransformer provider references referencetransformer cloudflare logpush ownership challenge challenge expand references referencetransformer cloudflare logpush job http requests job expand references referencetransformer data aws bucket object challenge file expand references referencetransformer var logpush bucket region references referencetransformer var logpush fields references referencetransformer cloudflare logpush ownership challenge challenge references referencetransformer data aws bucket object challenge file references referencetransformer var cloudflare zone id references referencetransformer var logpush bucket name references referencetransformer reference not found path cwd referencetransformer local zone name expand references referencetransformer cloudflare logpush job http requests job references referencetransformer provider references starting graph walk walkapply plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io hashicorp aws darwin terraform provider aws args plugin plugin started path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin waiting for rpc address path terraform providers registry terraform io hashicorp aws darwin terraform provider aws plugin terraform provider aws configuring server automatic mtls timestamp plugin using plugin version plugin terraform provider aws plugin address address var folders hd t network unix timestamp plugin configuring client automatic mtls plugin starting plugin path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare args plugin plugin started path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin waiting for rpc address path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare plugin terraform provider cloudflare configuring server automatic mtls timestamp plugin terraform provider cloudflare plugin address address var folders hd t network unix timestamp plugin using plugin version plugin terraform provider aws aws auth provider used envprovider timestamp plugin terraform provider aws trying to get account information via sts getcalleridentity timestamp plugin terraform provider aws debug request sts getcalleridentity details post http host sts amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev content length authorization hmac credential us east sts request signedheaders content length content type host x amz date x amz security token signature content type application x www form urlencoded charset utf x amz date x amz security token accept encoding gzip action getcalleridentity version timestamp plugin terraform provider cloudflare cloudflare client configured for user cloudflare logpush ownership challenge challenge creating evalapply providermeta config value set cloudflare logpush ownership challenge challenge applying the planned create change plugin terraform provider cloudflare cloudflare api request details plugin terraform provider cloudflare plugin terraform provider cloudflare post client zones logpush ownership http plugin terraform provider cloudflare host api cloudflare com plugin terraform provider cloudflare user agent hashicorp terraform terraform plugin sdk terraform provider cloudflare plugin terraform provider cloudflare content length plugin terraform provider cloudflare authorization bearer plugin terraform provider cloudflare content type application json plugin terraform provider cloudflare accept encoding gzip plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider cloudflare destination conf region us east plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider aws debug response sts getcalleridentity details http ok connection close content length content type text xml date fri apr gmt x amzn requestid timestamp plugin terraform provider aws getcalleridentityresponse xmlns arn aws sts assumed role cloudformation timestamp plugin terraform provider aws trying to get account information via sts getcalleridentity timestamp plugin terraform provider aws debug request sts getcalleridentity details post http host sts amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev content length authorization hmac credential us east sts request signedheaders content length content type host x amz date x amz security token signature content type application x www form urlencoded charset utf x amz date x amz security token accept encoding gzip action getcalleridentity version timestamp plugin terraform provider cloudflare cloudflare api response details plugin terraform provider cloudflare plugin terraform provider cloudflare http ok plugin terraform provider cloudflare cf cache status dynamic plugin terraform provider cloudflare cf ray akl plugin terraform provider cloudflare cf request id plugin terraform provider cloudflare cf version plugin terraform provider cloudflare content type application json plugin terraform provider cloudflare date fri apr gmt plugin terraform provider cloudflare expect ct max age report uri plugin terraform provider cloudflare server cloudflare plugin terraform provider cloudflare set cookie cfduid expires sun may gmt path domain api cloudflare com httponly samesite lax secure plugin terraform provider cloudflare set cookie cflb samesite lax path expires fri apr gmt httponly plugin terraform provider cloudflare set cookie cfruid path domain api cloudflare com httponly secure samesite none plugin terraform provider cloudflare vary accept encoding plugin terraform provider cloudflare x envoy upstream service time plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider cloudflare errors plugin terraform provider cloudflare messages plugin terraform provider cloudflare result plugin terraform provider cloudflare filename ownership challenge txt plugin terraform provider cloudflare message plugin terraform provider cloudflare valid true plugin terraform provider cloudflare plugin terraform provider cloudflare success true plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider cloudflare created cloudflare logpush ownership challenge cloudflare logpush ownership challenge challenge creation complete after plugin terraform provider aws debug response sts getcalleridentity details http ok connection close content length content type text xml date fri apr gmt x amzn requestid timestamp plugin terraform provider aws getcalleridentityresponse xmlns arn aws sts assumed role cloudformation timestamp plugin terraform provider aws debug request describeaccountattributes details post http host us east amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev content length authorization hmac credential us east request signedheaders content length content type host x amz date x amz security token signature content type application x www form urlencoded charset utf x amz date x amz security token accept encoding gzip action describeaccountattributes attributename supported platforms version timestamp plugin terraform provider aws debug response describeaccountattributes details http ok connection close content length cache control no cache no store content type text xml charset utf date fri apr gmt server strict transport security max age includesubdomains x amzn requestid timestamp data aws bucket object challenge file reading plugin terraform provider aws describeaccountattributesresponse xmlns supported platforms vpc timestamp plugin terraform provider aws reading bucket object bucket key ownership challenge txt timestamp plugin terraform provider aws debug request headobject details head ownership challenge txt http host amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev authorization hmac credential us east request signedheaders host x amz content x amz date x amz security token signature x amz content x amz date x amz security token timestamp plugin terraform provider aws debug response headobject details http ok connection close content length accept ranges bytes content encoding compress content type text plain date fri apr gmt etag last modified fri apr gmt server x amz expiration expiry date fri apr gmt rule id x amz id x amz request id x amz server side encryption timestamp plugin terraform provider aws timestamp plugin terraform provider aws received object acceptranges bytes contentencoding compress contentlength contenttype text plain etag expiration expiry date fri apr gmt rule id lastmodified utc serversideencryption timestamp plugin terraform provider aws debug request getobject details get ownership challenge txt http host amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev authorization hmac credential us east request signedheaders host x amz content x amz date x amz security token signature x amz content x amz date x amz security token accept encoding gzip timestamp plugin terraform provider aws debug response getobject details http ok connection close content length accept ranges bytes content encoding compress content type text plain date fri apr gmt etag last modified fri apr gmt server x amz expiration expiry date fri apr gmt rule id x amz id vm x amz request id x amz server side encryption timestamp plugin terraform provider aws timestamp plugin terraform provider aws saving bytes from object ownership challenge txt timestamp plugin terraform provider aws waiting for state to become timestamp plugin terraform provider aws debug request getobjecttagging details get ownership challenge txt tagging http host amazonaws com user agent aws sdk go darwin apn hashicorp terraform terraform provider aws dev authorization hmac credential us east request signedheaders host x amz content x amz date x amz security token signature x amz content x amz date x amz security token accept encoding gzip timestamp plugin terraform provider aws debug response getobjecttagging details http ok connection close transfer encoding chunked date fri apr gmt server x amz id x amz request id timestamp plugin terraform provider aws tagging xmlns timestamp data aws bucket object challenge file read complete after ownership challenge txt plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io hashicorp aws darwin terraform provider aws pid plugin plugin exited cloudflare logpush job http requests job creating evalapply providermeta config value set cloudflare logpush job http requests job applying the planned create change lastcomplete lasterror errormessage plugin terraform provider cloudflare cloudflare api request details plugin terraform provider cloudflare plugin terraform provider cloudflare post client zones logpush jobs http plugin terraform provider cloudflare host api cloudflare com plugin terraform provider cloudflare user agent hashicorp terraform terraform plugin sdk terraform provider cloudflare plugin terraform provider cloudflare content length plugin terraform provider cloudflare authorization bearer plugin terraform provider cloudflare content type application json plugin terraform provider cloudflare accept encoding gzip plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider cloudflare dataset http requests plugin terraform provider cloudflare enabled true plugin terraform provider cloudflare name plugin terraform provider cloudflare logpull options fields cachecachestatus cacheresponsebytes cacheresponsestatus cachetieredfill clientasn clientcountry clientdevicetype clientip clientipclass clientmtlsauthcertfingerprint clientmtlsauthstatus clientrequestbytes clientrequesthost clientrequestmethod clientrequestpath clientrequestprotocol clientrequestreferer clientrequestscheme clientrequestsource clientrequesturi clientrequestuseragent clientsslcipher clientsslprotocol clientsrcport clienttcprttms clientxrequestedwith edgecolocode edgecoloid edgeendtimestamp edgepathingop edgepathingsrc edgepathingstatus edgeratelimitaction edgeratelimitid edgerequesthost edgeresponsebodybytes edgeresponsebytes edgeresponsecompressionratio edgeresponsecontenttype edgeresponsestatus edgeserverip edgestarttimestamp edgetimetofirstbytems firewallmatchesactions firewallmatchesruleids firewallmatchessources origindnsresponsetimems originip originrequestheadersenddurationms originresponsebytes originresponsedurationms originresponsehttpexpires originresponsehttplastmodified originresponseheaderreceivedurationms originresponsestatus originresponsetime originsslprotocol origintcphandshakedurationms origintlshandshakedurationms parentrayid rayid securitylevel smartroutecoloid uppertiercoloid wafaction wafflags wafmatchedvar wafprofile wafruleid wafrulemessage workercputime workerstatus workersubrequest workersubrequestcount zoneid zonename plugin terraform provider cloudflare destination conf date region us east plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider cloudflare cloudflare api response details plugin terraform provider cloudflare plugin terraform provider cloudflare http bad request plugin terraform provider cloudflare cf cache status dynamic plugin terraform provider cloudflare cf ray akl plugin terraform provider cloudflare cf request id plugin terraform provider cloudflare cf version plugin terraform provider cloudflare content type application json plugin terraform provider cloudflare date fri apr gmt plugin terraform provider cloudflare expect ct max age report uri plugin terraform provider cloudflare server cloudflare plugin terraform provider cloudflare set cookie cfduid expires sun may gmt path domain api cloudflare com httponly samesite lax secure plugin terraform provider cloudflare set cookie cflb samesite lax path expires fri apr gmt httponly plugin terraform provider cloudflare set cookie cfruid path domain api cloudflare com httponly secure samesite none plugin terraform provider cloudflare vary accept encoding plugin terraform provider cloudflare x envoy upstream service time plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider cloudflare errors plugin terraform provider cloudflare plugin terraform provider cloudflare code plugin terraform provider cloudflare message incorrect ownership challenge plugin terraform provider cloudflare plugin terraform provider cloudflare plugin terraform provider cloudflare messages plugin terraform provider cloudflare result null plugin terraform provider cloudflare success false plugin terraform provider cloudflare plugin terraform provider cloudflare cloudflare logpush job http requests job apply errored but we re indicating that via the error pointer rather than returning it error creating logpush job http status incorrect ownership challenge uploading remote state to body buffer bucket contentlength contenttype application json key logpush tfstate debug request putobject details put logpush tfstate http host amazonaws com user agent aws sdk go darwin apn hashicorp terraform content length authorization hmac credential us east request signedheaders content length content content type host x amz content x amz date x amz security token signature content lgjmymuow content type application json x amz content x amz date x amz security token accept encoding gzip version terraform version serial lineage outputs resources mode data type aws bucket object name challenge file provider provider instances schema version attributes body bucket cache control content disposition content encoding compress content language content length content type text plain etag expiration expiry date fri apr gmt rule id expires id ownership challenge txt key ownership challenge txt last modified fri apr utc metadata object lock legal hold status object lock mode object lock retain until date range null server side encryption sse kms key id storage class standard tags version id website redirect location sensitive attributes mode managed type cloudflare logpush ownership challenge name challenge provider provider instances schema version attributes destination conf region us east ownership challenge filename ownership challenge txt zone id sensitive attributes private bnvsba debug response putobject details http ok connection close content length date fri apr gmt etag server x amz id x amz request id x amz version id error error creating logpush job http status incorrect ownership challenge on tf line in resource cloudflare logpush job http requests job resource cloudflare logpush job http requests job plugin stdio received eof stopping recv loop err rpc error code unavailable desc transport is closing plugin plugin process exited path terraform providers registry terraform io cloudflare cloudflare darwin terraform provider cloudflare pid plugin plugin exited panic output none expected output the job to be created successfully actual output an error was thrown error error creating logpush job http status incorrect ownership challenge on main tf line in resource cloudflare logpush job http requests job resource cloudflare logpush job http requests job steps to reproduce apply the above config with appropriately configured permissions observe error additional factoids i have confirmed that the ownership challenge value sent in the job is identical to the value in the ownership challenge file written to i ve come across two minor documentation issues while working on this the uses a data resource but references it as if it were a standard resource ownership challenge aws bucket object challenge file body should really read ownership challenge data aws bucket object challenge file body there is no mention of required permissions for the ownership challenge i ve found that this code requires getobject putobject and getobjecttagging it would be helpful if these were documented somewhere references no response | 0 |
341,177 | 24,686,658,526 | IssuesEvent | 2022-10-19 04:25:39 | craeyeons/alpha | https://api.github.com/repos/craeyeons/alpha | opened | Dummy Bug 2 | type.DocumentationBug severity.Medium | # Trying out Github Markdown Syntax
## Heading 2
## Heading 3
<p> This is a paragraph </p>
**Bold text**
*Italic text*
`some code`
<!--session: 1666153166130-2aff1b87-0991-43ca-8f0f-e61e8575901d-->
<!--Version: Web v3.4.4--> | 1.0 | Dummy Bug 2 - # Trying out Github Markdown Syntax
## Heading 2
## Heading 3
<p> This is a paragraph </p>
**Bold text**
*Italic text*
`some code`
<!--session: 1666153166130-2aff1b87-0991-43ca-8f0f-e61e8575901d-->
<!--Version: Web v3.4.4--> | non_test | dummy bug trying out github markdown syntax heading heading this is a paragraph bold text italic text some code | 0 |
54,480 | 23,279,005,837 | IssuesEvent | 2022-08-05 10:04:48 | Azure/azure-cli | https://api.github.com/repos/Azure/azure-cli | closed | Error recommendation doesn't work for enum values | Service Attention Error Handling | **Describe the bug**
Error recommendation doesn't work for enum values.
**To Reproduce**
For example, when I provide `storage` for `--resource-type`:
```
> az account get-access-token --resource-type storage
az account get-access-token: 'storage' is not a valid value for '--resource-type'.
TRY THIS:
az account get-access-token
Get an access token for the current account
https://docs.microsoft.com/en-US/cli/azure/account#az_account_get_access_token
Read more about the command in reference docs
```
Instead of telling me the allowed values, the recommendation simply removes `--resource-type` which is not helpful.
**Expected behavior**
```
> az account get-access-token --resource-type storage
az account get-access-token: 'storage' is not a valid value for '--resource-type'.
Allowed values: aad-graph, arm, batch, data-lake, media, ms-graph, oss-rdbms.
TRY THIS:
az account get-access-token --resource-type arm
```
As there is a chance that the content of `TRY THIS:` is not helpful, so `TRY THIS:` should be changed:
```diff
- TRY THIS:
+ Examples from AI knowledge base:
```
**Additional context**
The more predicable approach is proposed by https://github.com/microsoft/knack/pull/237.
| 1.0 | Error recommendation doesn't work for enum values - **Describe the bug**
Error recommendation doesn't work for enum values.
**To Reproduce**
For example, when I provide `storage` for `--resource-type`:
```
> az account get-access-token --resource-type storage
az account get-access-token: 'storage' is not a valid value for '--resource-type'.
TRY THIS:
az account get-access-token
Get an access token for the current account
https://docs.microsoft.com/en-US/cli/azure/account#az_account_get_access_token
Read more about the command in reference docs
```
Instead of telling me the allowed values, the recommendation simply removes `--resource-type` which is not helpful.
**Expected behavior**
```
> az account get-access-token --resource-type storage
az account get-access-token: 'storage' is not a valid value for '--resource-type'.
Allowed values: aad-graph, arm, batch, data-lake, media, ms-graph, oss-rdbms.
TRY THIS:
az account get-access-token --resource-type arm
```
As there is a chance that the content of `TRY THIS:` is not helpful, so `TRY THIS:` should be changed:
```diff
- TRY THIS:
+ Examples from AI knowledge base:
```
**Additional context**
The more predicable approach is proposed by https://github.com/microsoft/knack/pull/237.
| non_test | error recommendation doesn t work for enum values describe the bug error recommendation doesn t work for enum values to reproduce for example when i provide storage for resource type az account get access token resource type storage az account get access token storage is not a valid value for resource type try this az account get access token get an access token for the current account read more about the command in reference docs instead of telling me the allowed values the recommendation simply removes resource type which is not helpful expected behavior az account get access token resource type storage az account get access token storage is not a valid value for resource type allowed values aad graph arm batch data lake media ms graph oss rdbms try this az account get access token resource type arm as there is a chance that the content of try this is not helpful so try this should be changed diff try this examples from ai knowledge base additional context the more predicable approach is proposed by | 0 |
602,046 | 18,447,282,416 | IssuesEvent | 2021-10-15 05:04:00 | DeFiCh/jellyfish | https://api.github.com/repos/DeFiCh/jellyfish | closed | Migrate salmon into the jellyfish monorepo | kind/feature triage/accepted priority/important-soon | <!-- Please only use this template for submitting enhancement/feature requests -->
#### What would you like to be added:
Migrate all of salmon's packages into the jellyfish monorepo.
#### Why is this needed:
Faster iteration and less overhead on dependency management | 1.0 | Migrate salmon into the jellyfish monorepo - <!-- Please only use this template for submitting enhancement/feature requests -->
#### What would you like to be added:
Migrate all of salmon's packages into the jellyfish monorepo.
#### Why is this needed:
Faster iteration and less overhead on dependency management | non_test | migrate salmon into the jellyfish monorepo what would you like to be added migrate all of salmon s packages into the jellyfish monorepo why is this needed faster iteration and less overhead on dependency management | 0 |
280,542 | 24,313,594,421 | IssuesEvent | 2022-09-30 02:39:07 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | sql/tests: TestRandomSyntaxGeneration failed [DROP OWNED BY timeout] | C-test-failure O-robot branch-master T-sql-schema | sql/tests.TestRandomSyntaxGeneration [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=4224430&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=4224430&tab=artifacts#/) on master @ [83e2df701688745fe7e7d8a0d0e5e7a4ba8633c8](https://github.com/cockroachdb/cockroach/commits/83e2df701688745fe7e7d8a0d0e5e7a4ba8633c8):
```
rsg_test.go:755: 1m20s of 5m0s: 42374 executions, 606 successful
rsg_test.go:755: 1m25s of 5m0s: 46534 executions, 661 successful
rsg_test.go:755: 1m30s of 5m0s: 48930 executions, 701 successful
rsg_test.go:755: 1m35s of 5m0s: 50146 executions, 720 successful
rsg_test.go:755: 1m40s of 5m0s: 51845 executions, 751 successful
rsg_test.go:755: 1m45s of 5m0s: 56463 executions, 810 successful
rsg_test.go:755: 1m50s of 5m0s: 62181 executions, 880 successful
rsg_test.go:755: 1m55s of 5m0s: 70478 executions, 987 successful
rsg_test.go:755: 2m0s of 5m0s: 71771 executions, 1006 successful
rsg_test.go:755: 2m5s of 5m0s: 75690 executions, 1067 successful
rsg_test.go:755: 2m10s of 5m0s: 77210 executions, 1094 successful
rsg_test.go:755: 2m15s of 5m0s: 77830 executions, 1099 successful
rsg_test.go:755: 2m20s of 5m0s: 78010 executions, 1101 successful
rsg_test.go:755: 2m25s of 5m0s: 80454 executions, 1145 successful
rsg_test.go:755: 2m30s of 5m0s: 82277 executions, 1170 successful
rsg_test.go:755: 2m35s of 5m0s: 87504 executions, 1249 successful
rsg_test.go:755: 2m40s of 5m0s: 88881 executions, 1270 successful
rsg_test.go:755: 2m45s of 5m0s: 90518 executions, 1287 successful
rsg_test.go:755: 2m50s of 5m0s: 91128 executions, 1297 successful
rsg_test.go:755: 2m55s of 5m0s: 93883 executions, 1336 successful
rsg_test.go:755: 3m0s of 5m0s: 95275 executions, 1352 successful
rsg_test.go:755: 3m5s of 5m0s: 97438 executions, 1377 successful
rsg_test.go:755: 3m10s of 5m0s: 98214 executions, 1388 successful
rsg_test.go:755: 3m15s of 5m0s: 104256 executions, 1466 successful
rsg_test.go:755: 3m20s of 5m0s: 107298 executions, 1506 successful
rsg_test.go:755: 3m25s of 5m0s: 108693 executions, 1525 successful
rsg_test.go:755: 3m30s of 5m0s: 110567 executions, 1563 successful
rsg_test.go:755: 3m35s of 5m0s: 111577 executions, 1581 successful
rsg_test.go:755: 3m40s of 5m0s: 115696 executions, 1632 successful
rsg_test.go:755: 3m45s of 5m0s: 118104 executions, 1655 successful
rsg_test.go:755: 3m50s of 5m0s: 121010 executions, 1689 successful
rsg_test.go:755: 3m55s of 5m0s: 129304 executions, 1801 successful
rsg_test.go:755: 4m0s of 5m0s: 130694 executions, 1815 successful
rsg_test.go:755: 4m5s of 5m0s: 133790 executions, 1849 successful
rsg_test.go:755: 4m10s of 5m0s: 142484 executions, 1961 successful
rsg_test.go:755: 4m15s of 5m0s: 143866 executions, 1972 successful
rsg_test.go:755: 4m20s of 5m0s: 144424 executions, 1973 successful
rsg_test.go:755: 4m25s of 5m0s: 147298 executions, 2021 successful
rsg_test.go:755: 4m30s of 5m0s: 151125 executions, 2064 successful
rsg_test.go:755: 4m35s of 5m0s: 158770 executions, 2135 successful
rsg_test.go:755: 4m40s of 5m0s: 162088 executions, 2173 successful
rsg_test.go:755: 4m45s of 5m0s: 163495 executions, 2188 successful
rsg_test.go:755: 4m50s of 5m0s: 168619 executions, 2254 successful
rsg_test.go:755: 4m55s of 5m0s: 171720 executions, 2313 successful
rsg_test.go:755: 5m0s of 5m0s: 172831 executions, 2327 successful
rsg_test.go:791: 172839 executions, 2333 successful
rsg_test.go:799: cannot parse output of Format: sql="EXPLAIN IMPORT INTO FAMILY . LC_CTYPE ( ident ) ident DATA ( 'string' , POSITION ) WITH OPTIONS ( BUCKET_COUNT = 'string' , 'string' = OWNED , 'string' = PLACEHOLDER )", formattedSQL="EXPLAIN IMPORT INTO \"family\".lc_ctype(ident) IDENT DATA ('string', 'position') WITH bucket_count = 'string', \"string\" = 'owned', \"string\" = 'placeholder'": at or near "with": syntax error
rsg_test.go:252: -- test log scope end --
test logs left over in: /go/src/github.com/cockroachdb/cockroach/artifacts/logTestRandomSyntaxGeneration2043379524
--- FAIL: TestRandomSyntaxGeneration (304.67s)
```
<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>
- #74271 sql/tests: TestRandomSyntaxGeneration failed [C-test-failure O-robot branch-release-21.2]
- #65210 sql/tests: TestRandomSyntaxGeneration failed [C-test-failure O-robot branch-release-21.1]
</p>
</details>
/cc @cockroachdb/sql-experience
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestRandomSyntaxGeneration.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-12739 | 1.0 | sql/tests: TestRandomSyntaxGeneration failed [DROP OWNED BY timeout] - sql/tests.TestRandomSyntaxGeneration [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=4224430&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=4224430&tab=artifacts#/) on master @ [83e2df701688745fe7e7d8a0d0e5e7a4ba8633c8](https://github.com/cockroachdb/cockroach/commits/83e2df701688745fe7e7d8a0d0e5e7a4ba8633c8):
```
rsg_test.go:755: 1m20s of 5m0s: 42374 executions, 606 successful
rsg_test.go:755: 1m25s of 5m0s: 46534 executions, 661 successful
rsg_test.go:755: 1m30s of 5m0s: 48930 executions, 701 successful
rsg_test.go:755: 1m35s of 5m0s: 50146 executions, 720 successful
rsg_test.go:755: 1m40s of 5m0s: 51845 executions, 751 successful
rsg_test.go:755: 1m45s of 5m0s: 56463 executions, 810 successful
rsg_test.go:755: 1m50s of 5m0s: 62181 executions, 880 successful
rsg_test.go:755: 1m55s of 5m0s: 70478 executions, 987 successful
rsg_test.go:755: 2m0s of 5m0s: 71771 executions, 1006 successful
rsg_test.go:755: 2m5s of 5m0s: 75690 executions, 1067 successful
rsg_test.go:755: 2m10s of 5m0s: 77210 executions, 1094 successful
rsg_test.go:755: 2m15s of 5m0s: 77830 executions, 1099 successful
rsg_test.go:755: 2m20s of 5m0s: 78010 executions, 1101 successful
rsg_test.go:755: 2m25s of 5m0s: 80454 executions, 1145 successful
rsg_test.go:755: 2m30s of 5m0s: 82277 executions, 1170 successful
rsg_test.go:755: 2m35s of 5m0s: 87504 executions, 1249 successful
rsg_test.go:755: 2m40s of 5m0s: 88881 executions, 1270 successful
rsg_test.go:755: 2m45s of 5m0s: 90518 executions, 1287 successful
rsg_test.go:755: 2m50s of 5m0s: 91128 executions, 1297 successful
rsg_test.go:755: 2m55s of 5m0s: 93883 executions, 1336 successful
rsg_test.go:755: 3m0s of 5m0s: 95275 executions, 1352 successful
rsg_test.go:755: 3m5s of 5m0s: 97438 executions, 1377 successful
rsg_test.go:755: 3m10s of 5m0s: 98214 executions, 1388 successful
rsg_test.go:755: 3m15s of 5m0s: 104256 executions, 1466 successful
rsg_test.go:755: 3m20s of 5m0s: 107298 executions, 1506 successful
rsg_test.go:755: 3m25s of 5m0s: 108693 executions, 1525 successful
rsg_test.go:755: 3m30s of 5m0s: 110567 executions, 1563 successful
rsg_test.go:755: 3m35s of 5m0s: 111577 executions, 1581 successful
rsg_test.go:755: 3m40s of 5m0s: 115696 executions, 1632 successful
rsg_test.go:755: 3m45s of 5m0s: 118104 executions, 1655 successful
rsg_test.go:755: 3m50s of 5m0s: 121010 executions, 1689 successful
rsg_test.go:755: 3m55s of 5m0s: 129304 executions, 1801 successful
rsg_test.go:755: 4m0s of 5m0s: 130694 executions, 1815 successful
rsg_test.go:755: 4m5s of 5m0s: 133790 executions, 1849 successful
rsg_test.go:755: 4m10s of 5m0s: 142484 executions, 1961 successful
rsg_test.go:755: 4m15s of 5m0s: 143866 executions, 1972 successful
rsg_test.go:755: 4m20s of 5m0s: 144424 executions, 1973 successful
rsg_test.go:755: 4m25s of 5m0s: 147298 executions, 2021 successful
rsg_test.go:755: 4m30s of 5m0s: 151125 executions, 2064 successful
rsg_test.go:755: 4m35s of 5m0s: 158770 executions, 2135 successful
rsg_test.go:755: 4m40s of 5m0s: 162088 executions, 2173 successful
rsg_test.go:755: 4m45s of 5m0s: 163495 executions, 2188 successful
rsg_test.go:755: 4m50s of 5m0s: 168619 executions, 2254 successful
rsg_test.go:755: 4m55s of 5m0s: 171720 executions, 2313 successful
rsg_test.go:755: 5m0s of 5m0s: 172831 executions, 2327 successful
rsg_test.go:791: 172839 executions, 2333 successful
rsg_test.go:799: cannot parse output of Format: sql="EXPLAIN IMPORT INTO FAMILY . LC_CTYPE ( ident ) ident DATA ( 'string' , POSITION ) WITH OPTIONS ( BUCKET_COUNT = 'string' , 'string' = OWNED , 'string' = PLACEHOLDER )", formattedSQL="EXPLAIN IMPORT INTO \"family\".lc_ctype(ident) IDENT DATA ('string', 'position') WITH bucket_count = 'string', \"string\" = 'owned', \"string\" = 'placeholder'": at or near "with": syntax error
rsg_test.go:252: -- test log scope end --
test logs left over in: /go/src/github.com/cockroachdb/cockroach/artifacts/logTestRandomSyntaxGeneration2043379524
--- FAIL: TestRandomSyntaxGeneration (304.67s)
```
<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>
- #74271 sql/tests: TestRandomSyntaxGeneration failed [C-test-failure O-robot branch-release-21.2]
- #65210 sql/tests: TestRandomSyntaxGeneration failed [C-test-failure O-robot branch-release-21.1]
</p>
</details>
/cc @cockroachdb/sql-experience
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestRandomSyntaxGeneration.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-12739 | test | sql tests testrandomsyntaxgeneration failed sql tests testrandomsyntaxgeneration with on master rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go of executions successful rsg test go executions successful rsg test go cannot parse output of format sql explain import into family lc ctype ident ident data string position with options bucket count string string owned string placeholder formattedsql explain import into family lc ctype ident ident data string position with bucket count string string owned string placeholder at or near with syntax error rsg test go test log scope end test logs left over in go src github com cockroachdb cockroach artifacts fail testrandomsyntaxgeneration help see also same failure on other branches sql tests testrandomsyntaxgeneration failed sql tests testrandomsyntaxgeneration failed cc cockroachdb sql experience jira issue crdb | 1 |
270,465 | 23,510,636,295 | IssuesEvent | 2022-08-18 16:11:28 | Princeton-CDH/ppa-django | https://api.github.com/repos/Princeton-CDH/ppa-django | closed | As an admin, I want to include book excerpts and articles as well as full volumes from Gale/ECCO, so that I can include material that is specifically about prosody from longer works about other subjects. | awaiting testing | Gale equivalent of #393
## dev notes
- [x] update `gale_page_index_data` to honor `page_span` ; equivalent to logic in `hathi_page_index_data`
- [x] add a unit test to confirm excerpt import logic
- [x] check that document details display the page range
- ~update gale link to reference the page if possible~
- [x] modify gale import to include excerpt page ranges, item type, and metadata
| 1.0 | As an admin, I want to include book excerpts and articles as well as full volumes from Gale/ECCO, so that I can include material that is specifically about prosody from longer works about other subjects. - Gale equivalent of #393
## dev notes
- [x] update `gale_page_index_data` to honor `page_span` ; equivalent to logic in `hathi_page_index_data`
- [x] add a unit test to confirm excerpt import logic
- [x] check that document details display the page range
- ~update gale link to reference the page if possible~
- [x] modify gale import to include excerpt page ranges, item type, and metadata
| test | as an admin i want to include book excerpts and articles as well as full volumes from gale ecco so that i can include material that is specifically about prosody from longer works about other subjects gale equivalent of dev notes update gale page index data to honor page span equivalent to logic in hathi page index data add a unit test to confirm excerpt import logic check that document details display the page range update gale link to reference the page if possible modify gale import to include excerpt page ranges item type and metadata | 1 |
132,686 | 28,305,817,415 | IssuesEvent | 2023-04-10 10:54:04 | anegostudios/VintageStory-Issues | https://api.github.com/repos/anegostudios/VintageStory-Issues | closed | Holding Alt doesn't allow you interact with blocks in certain cases | status: new department: code | **Game Version:** 1.14.8
**Platform:** Windows 10
**Modded:** No
### Description
`Igniting a firepit` / `tilling a farmland` holding Alt doesn't work if your actual cursor (not Alt's cursor) looking at `a ignited firepit` / `a tilled farmland`.
### How to reproduce
#### Firepit
1. Make two firepits and refuel them
2. Ignite one of them
3. Try to ignite second firepit while looking with actual cursor at ignited firepit holding Alt
4. The second firepit will not ignite
#### Farmland
1. Till a soil block
2. Try to till another soil block while looking with actual cursor at tilled soil block holding Alt
3. You can't till another block
### Expected behavior
Firepit is ignited, soil has been tilled
### Videos
https://user-images.githubusercontent.com/69315569/122205640-2924bb00-cea9-11eb-9baa-ef85497619c6.mp4
https://user-images.githubusercontent.com/69315569/122205729-3e014e80-cea9-11eb-8cdc-fb272cdc2e70.mp4 | 1.0 | Holding Alt doesn't allow you interact with blocks in certain cases - **Game Version:** 1.14.8
**Platform:** Windows 10
**Modded:** No
### Description
`Igniting a firepit` / `tilling a farmland` holding Alt doesn't work if your actual cursor (not Alt's cursor) looking at `a ignited firepit` / `a tilled farmland`.
### How to reproduce
#### Firepit
1. Make two firepits and refuel them
2. Ignite one of them
3. Try to ignite second firepit while looking with actual cursor at ignited firepit holding Alt
4. The second firepit will not ignite
#### Farmland
1. Till a soil block
2. Try to till another soil block while looking with actual cursor at tilled soil block holding Alt
3. You can't till another block
### Expected behavior
Firepit is ignited, soil has been tilled
### Videos
https://user-images.githubusercontent.com/69315569/122205640-2924bb00-cea9-11eb-9baa-ef85497619c6.mp4
https://user-images.githubusercontent.com/69315569/122205729-3e014e80-cea9-11eb-8cdc-fb272cdc2e70.mp4 | non_test | holding alt doesn t allow you interact with blocks in certain cases game version platform windows modded no description igniting a firepit tilling a farmland holding alt doesn t work if your actual cursor not alt s cursor looking at a ignited firepit a tilled farmland how to reproduce firepit make two firepits and refuel them ignite one of them try to ignite second firepit while looking with actual cursor at ignited firepit holding alt the second firepit will not ignite farmland till a soil block try to till another soil block while looking with actual cursor at tilled soil block holding alt you can t till another block expected behavior firepit is ignited soil has been tilled videos | 0 |
252,114 | 21,556,860,910 | IssuesEvent | 2022-04-30 15:16:01 | damccorm/test-migration-target | https://api.github.com/repos/damccorm/test-migration-target | opened | Flaky tests: Gradle build daemon disappeared unexpectedly | bug P1 test-failures | This happens to many of our tests. It looks like this is a common issue with Gradle and we will have to do more digging to determine the true cause. https://stackoverflow.com/questions/37171043/gradle-build-daemon-disappeared-unexpectedly-it-may-have-been-killed-or-may-hav/37171110
10:04:08 > Task :sdks:go:test:sparkValidatesRunner
10:04:08 Feb 02, 2022 6:04:08 PM org.apache.beam.sdk.expansion.service.ExpansionService loadRegisteredTransforms
10:04:08 INFO: Registering external transforms: [beam:transforms:xlang:test:cgbk, beam:transforms:xlang:test:flatten, beam:transforms:xlang:test:prefix, beam:transforms:xlang:test:multi, beam:transforms:xlang:test:gbk, beam:transforms:xlang:test:comgl, beam:transforms:xlang:test:compk, beam:transforms:xlang:count, beam:transforms:xlang:filter_less_than_eq, beam:transforms:xlang:test:partition, beam:transforms:xlang:test:parquet_write, beam:transforms:xlang:parquet_read, beam:transforms:xlang:textio_read, beam:external:java:generate_sequence:v1]
10:04:09 The message received from the daemon indicates that the daemon has disappeared.
10:04:09 Build request sent: Build
`id=37ea63c1-ec5f-492a-ad6a-f26c92fd7f7e, currentDir=/home/jenkins/jenkins-slave/workspace/beam_PostCommit_Go_VR_Spark/src`
10:04:09 Attempting to read last messages from the daemon log...
10:04:09 Daemon pid: 3299301
10:04:09 log file: /home/jenkins/.gradle/daemon/7.3.2/daemon-3299301.out.log
10:04:09 ----- Last 20 lines from daemon log file - daemon-3299301.out.log -----
10:04:09 2022-02-02T18:04:08.251+0000 [DEBUG] [org.gradle.launcher.daemon.registry.PersistentDaemonRegistry] Marking busy by address: [2bd8c084-af4c-4924-90f5-8b8a89f85fc5 port:32889, addresses:[localhost/127.0.0.1]]
10:04:09 2022-02-02T18:04:08.251+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Waiting to acquire exclusive lock on daemon addresses registry.
10:04:09 2022-02-02T18:04:08.251+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Lock acquired on daemon addresses registry.
10:04:09 2022-02-02T18:04:08.252+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Releasing lock on daemon addresses registry.
10:04:09 2022-02-02T18:04:08.252+0000 [DEBUG] [org.gradle.launcher.daemon.server.DaemonStateCoordinator] resetting idle timer
10:04:09 2022-02-02T18:04:08.252+0000 [DEBUG] [org.gradle.launcher.daemon.server.DaemonStateCoordinator] daemon is running. Sleeping until state changes.
10:04:09 2022-02-02T18:04:08.253+0000 [INFO] [org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy] Daemon is about to start building Build
`id=37ea63c1-ec5f-492a-ad6a-f26c92fd7f7e, currentDir=/home/jenkins/jenkins-slave/workspace/beam_PostCommit_Go_VR_Spark/src`. Dispatching build started information...
10:04:09 2022-02-02T18:04:08.253+0000 [DEBUG] [org.gradle.launcher.daemon.server.SynchronizedDispatchConnection] thread 266: dispatching org.gradle.launcher.daemon.protocol.BuildStarted@42569c28
10:04:09 2022-02-02T18:04:08.255+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment] Configuring env variables: [PATH, RUN_DISPLAY_URL, HUDSON_HOME, RUN_CHANGES_DISPLAY_URL, JOB_URL, HUDSON_COOKIE, MOTD_SHOWN, DBUS_SESSION_BUS_ADDRESS, JENKINS_SERVER_COOKIE, LOGNAME, PWD, RUN_TESTS_DISPLAY_URL, JENKINS_URL, SHELL, BUILD_TAG, ROOT_BUILD_CAUSE, BUILD_CAUSE_TIMERTRIGGER, OLDPWD, GIT_CHECKOUT_DIR, JENKINS_HOME, sha1, CODECOV_TOKEN, NODE_NAME, BUILD_DISPLAY_NAME, JOB_DISPLAY_URL, GIT_BRANCH, SETUPTOOLS_USE_DISTUTILS, SHLVL, WORKSPACE_TMP, GIT_PREVIOUS_COMMIT, JAVA_HOME, BUILD_ID, LANG, XDG_SESSION_ID, XDG_SESSION_TYPE, JOB_NAME, SPARK_LOCAL_IP, BUILD_CAUSE, GIT_PREVIOUS_SUCCESSFUL_COMMIT, NODE_LABELS, HUDSON_URL, WORKSPACE, ROOT_BUILD_CAUSE_TIMERTRIGGER, XDG_SESSION_CLASS, _, GIT_COMMIT, COVERALLS_REPO_TOKEN, CI, EXECUTOR_NUMBER, HUDSON_SERVER_COOKIE, SSH_CLIENT, JOB_BASE_NAME, USER, SSH_CONNECTION, BUILD_NUMBER, BUILD_URL, RUN_ARTIFACTS_DISPLAY_URL, GIT_URL, XDG_RUNTIME_DIR, HOME]
10:04:09 2022-02-02T18:04:08.256+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.LogToClient] About to start relaying all logs to the client via the connection.
10:04:09 2022-02-02T18:04:08.256+0000 [INFO] [org.gradle.launcher.daemon.server.exec.LogToClient] The client will now receive all logging from the daemon (pid: 3299301). The daemon log file: /home/jenkins/.gradle/daemon/7.3.2/daemon-3299301.out.log
10:04:09 2022-02-02T18:04:08.257+0000 [INFO] [org.gradle.launcher.daemon.server.exec.LogAndCheckHealth] Starting 2nd build in daemon [uptime: 3 mins 43.954 secs, performance: 98%]
10:04:09 2022-02-02T18:04:08.264+0000 [DEBUG] [org.gradle.launcher.daemon.server.SynchronizedDispatchConnection] thread 264: received class org.gradle.launcher.daemon.protocol.CloseInput
10:04:09 2022-02-02T18:04:08.264+0000 [DEBUG] [org.gradle.launcher.daemon.server.DefaultDaemonConnection] thread 264: Received IO message from client: org.gradle.launcher.daemon.protocol.CloseInput@3e111340
10:04:09 2022-02-02T18:04:08.271+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.ExecuteBuild] The daemon has started executing the build.
10:04:09 2022-02-02T18:04:08.271+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.ExecuteBuild] Executing build with daemon context: DefaultDaemonContext[uid=ca7e60a9-87d1-4beb-a056-dcf9ca91d510,javaHome=/usr/lib/jvm/java-8-openjdk-amd64,daemonRegistryDir=/home/jenkins/.gradle/daemon,pid=3299301,idleTimeout=10800000,priority=NORMAL,daemonOpts=-Xss10240k,-Dfile.encoding=UTF-8,-Duser.country=US,-Duser.language=en,-Duser.variant]
10:04:09 2022-02-02T18:04:08.271+0000 [INFO] [org.gradle.launcher.daemon.server.exec.ForwardClientInput] Closing daemon's stdin at end of input.
10:04:09 2022-02-02T18:04:08.271+0000 [INFO] [org.gradle.launcher.daemon.server.exec.ForwardClientInput] The daemon will no longer process any standard input.
10:04:09 Configuration on demand is an incubating feature.
10:04:09 Daemon vm is shutting down... The daemon has exited normally or was terminated in response to a user interrupt.
10:04:09 ----- End of the daemon log -----
Imported from Jira [BEAM-13810](https://issues.apache.org/jira/browse/BEAM-13810). Original Jira may contain additional context.
Reported by: ibzib. | 1.0 | Flaky tests: Gradle build daemon disappeared unexpectedly - This happens to many of our tests. It looks like this is a common issue with Gradle and we will have to do more digging to determine the true cause. https://stackoverflow.com/questions/37171043/gradle-build-daemon-disappeared-unexpectedly-it-may-have-been-killed-or-may-hav/37171110
10:04:08 > Task :sdks:go:test:sparkValidatesRunner
10:04:08 Feb 02, 2022 6:04:08 PM org.apache.beam.sdk.expansion.service.ExpansionService loadRegisteredTransforms
10:04:08 INFO: Registering external transforms: [beam:transforms:xlang:test:cgbk, beam:transforms:xlang:test:flatten, beam:transforms:xlang:test:prefix, beam:transforms:xlang:test:multi, beam:transforms:xlang:test:gbk, beam:transforms:xlang:test:comgl, beam:transforms:xlang:test:compk, beam:transforms:xlang:count, beam:transforms:xlang:filter_less_than_eq, beam:transforms:xlang:test:partition, beam:transforms:xlang:test:parquet_write, beam:transforms:xlang:parquet_read, beam:transforms:xlang:textio_read, beam:external:java:generate_sequence:v1]
10:04:09 The message received from the daemon indicates that the daemon has disappeared.
10:04:09 Build request sent: Build
`id=37ea63c1-ec5f-492a-ad6a-f26c92fd7f7e, currentDir=/home/jenkins/jenkins-slave/workspace/beam_PostCommit_Go_VR_Spark/src`
10:04:09 Attempting to read last messages from the daemon log...
10:04:09 Daemon pid: 3299301
10:04:09 log file: /home/jenkins/.gradle/daemon/7.3.2/daemon-3299301.out.log
10:04:09 ----- Last 20 lines from daemon log file - daemon-3299301.out.log -----
10:04:09 2022-02-02T18:04:08.251+0000 [DEBUG] [org.gradle.launcher.daemon.registry.PersistentDaemonRegistry] Marking busy by address: [2bd8c084-af4c-4924-90f5-8b8a89f85fc5 port:32889, addresses:[localhost/127.0.0.1]]
10:04:09 2022-02-02T18:04:08.251+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Waiting to acquire exclusive lock on daemon addresses registry.
10:04:09 2022-02-02T18:04:08.251+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Lock acquired on daemon addresses registry.
10:04:09 2022-02-02T18:04:08.252+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Releasing lock on daemon addresses registry.
10:04:09 2022-02-02T18:04:08.252+0000 [DEBUG] [org.gradle.launcher.daemon.server.DaemonStateCoordinator] resetting idle timer
10:04:09 2022-02-02T18:04:08.252+0000 [DEBUG] [org.gradle.launcher.daemon.server.DaemonStateCoordinator] daemon is running. Sleeping until state changes.
10:04:09 2022-02-02T18:04:08.253+0000 [INFO] [org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy] Daemon is about to start building Build
`id=37ea63c1-ec5f-492a-ad6a-f26c92fd7f7e, currentDir=/home/jenkins/jenkins-slave/workspace/beam_PostCommit_Go_VR_Spark/src`. Dispatching build started information...
10:04:09 2022-02-02T18:04:08.253+0000 [DEBUG] [org.gradle.launcher.daemon.server.SynchronizedDispatchConnection] thread 266: dispatching org.gradle.launcher.daemon.protocol.BuildStarted@42569c28
10:04:09 2022-02-02T18:04:08.255+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment] Configuring env variables: [PATH, RUN_DISPLAY_URL, HUDSON_HOME, RUN_CHANGES_DISPLAY_URL, JOB_URL, HUDSON_COOKIE, MOTD_SHOWN, DBUS_SESSION_BUS_ADDRESS, JENKINS_SERVER_COOKIE, LOGNAME, PWD, RUN_TESTS_DISPLAY_URL, JENKINS_URL, SHELL, BUILD_TAG, ROOT_BUILD_CAUSE, BUILD_CAUSE_TIMERTRIGGER, OLDPWD, GIT_CHECKOUT_DIR, JENKINS_HOME, sha1, CODECOV_TOKEN, NODE_NAME, BUILD_DISPLAY_NAME, JOB_DISPLAY_URL, GIT_BRANCH, SETUPTOOLS_USE_DISTUTILS, SHLVL, WORKSPACE_TMP, GIT_PREVIOUS_COMMIT, JAVA_HOME, BUILD_ID, LANG, XDG_SESSION_ID, XDG_SESSION_TYPE, JOB_NAME, SPARK_LOCAL_IP, BUILD_CAUSE, GIT_PREVIOUS_SUCCESSFUL_COMMIT, NODE_LABELS, HUDSON_URL, WORKSPACE, ROOT_BUILD_CAUSE_TIMERTRIGGER, XDG_SESSION_CLASS, _, GIT_COMMIT, COVERALLS_REPO_TOKEN, CI, EXECUTOR_NUMBER, HUDSON_SERVER_COOKIE, SSH_CLIENT, JOB_BASE_NAME, USER, SSH_CONNECTION, BUILD_NUMBER, BUILD_URL, RUN_ARTIFACTS_DISPLAY_URL, GIT_URL, XDG_RUNTIME_DIR, HOME]
10:04:09 2022-02-02T18:04:08.256+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.LogToClient] About to start relaying all logs to the client via the connection.
10:04:09 2022-02-02T18:04:08.256+0000 [INFO] [org.gradle.launcher.daemon.server.exec.LogToClient] The client will now receive all logging from the daemon (pid: 3299301). The daemon log file: /home/jenkins/.gradle/daemon/7.3.2/daemon-3299301.out.log
10:04:09 2022-02-02T18:04:08.257+0000 [INFO] [org.gradle.launcher.daemon.server.exec.LogAndCheckHealth] Starting 2nd build in daemon [uptime: 3 mins 43.954 secs, performance: 98%]
10:04:09 2022-02-02T18:04:08.264+0000 [DEBUG] [org.gradle.launcher.daemon.server.SynchronizedDispatchConnection] thread 264: received class org.gradle.launcher.daemon.protocol.CloseInput
10:04:09 2022-02-02T18:04:08.264+0000 [DEBUG] [org.gradle.launcher.daemon.server.DefaultDaemonConnection] thread 264: Received IO message from client: org.gradle.launcher.daemon.protocol.CloseInput@3e111340
10:04:09 2022-02-02T18:04:08.271+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.ExecuteBuild] The daemon has started executing the build.
10:04:09 2022-02-02T18:04:08.271+0000 [DEBUG] [org.gradle.launcher.daemon.server.exec.ExecuteBuild] Executing build with daemon context: DefaultDaemonContext[uid=ca7e60a9-87d1-4beb-a056-dcf9ca91d510,javaHome=/usr/lib/jvm/java-8-openjdk-amd64,daemonRegistryDir=/home/jenkins/.gradle/daemon,pid=3299301,idleTimeout=10800000,priority=NORMAL,daemonOpts=-Xss10240k,-Dfile.encoding=UTF-8,-Duser.country=US,-Duser.language=en,-Duser.variant]
10:04:09 2022-02-02T18:04:08.271+0000 [INFO] [org.gradle.launcher.daemon.server.exec.ForwardClientInput] Closing daemon's stdin at end of input.
10:04:09 2022-02-02T18:04:08.271+0000 [INFO] [org.gradle.launcher.daemon.server.exec.ForwardClientInput] The daemon will no longer process any standard input.
10:04:09 Configuration on demand is an incubating feature.
10:04:09 Daemon vm is shutting down... The daemon has exited normally or was terminated in response to a user interrupt.
10:04:09 ----- End of the daemon log -----
Imported from Jira [BEAM-13810](https://issues.apache.org/jira/browse/BEAM-13810). Original Jira may contain additional context.
Reported by: ibzib. | test | flaky tests gradle build daemon disappeared unexpectedly this happens to many of our tests it looks like this is a common issue with gradle and we will have to do more digging to determine the true cause task sdks go test sparkvalidatesrunner feb pm org apache beam sdk expansion service expansionservice loadregisteredtransforms info registering external transforms the message received from the daemon indicates that the daemon has disappeared build request sent build id currentdir home jenkins jenkins slave workspace beam postcommit go vr spark src attempting to read last messages from the daemon log daemon pid log file home jenkins gradle daemon daemon out log last lines from daemon log file daemon out log marking busy by address waiting to acquire exclusive lock on daemon addresses registry lock acquired on daemon addresses registry releasing lock on daemon addresses registry resetting idle timer daemon is running sleeping until state changes daemon is about to start building build id currentdir home jenkins jenkins slave workspace beam postcommit go vr spark src dispatching build started information thread dispatching org gradle launcher daemon protocol buildstarted configuring env variables about to start relaying all logs to the client via the connection the client will now receive all logging from the daemon pid the daemon log file home jenkins gradle daemon daemon out log starting build in daemon thread received class org gradle launcher daemon protocol closeinput thread received io message from client org gradle launcher daemon protocol closeinput the daemon has started executing the build executing build with daemon context defaultdaemoncontext closing daemon s stdin at end of input the daemon will no longer process any standard input configuration on demand is an incubating feature daemon vm is shutting down the daemon has exited normally or was terminated in response to a user interrupt end of the daemon log imported from jira original jira may contain additional context reported by ibzib | 1 |
334,912 | 10,147,245,109 | IssuesEvent | 2019-08-05 10:04:34 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | We should work on our defaults | NEED FAST REVIEW [Priority: MEDIUM] enhancement | Ideally, homepage, post, pages, Archives should be on,.
and other such defaults. | 1.0 | We should work on our defaults - Ideally, homepage, post, pages, Archives should be on,.
and other such defaults. | non_test | we should work on our defaults ideally homepage post pages archives should be on and other such defaults | 0 |
44,960 | 9,661,502,170 | IssuesEvent | 2019-05-20 18:12:45 | joomla/joomla-cms | https://api.github.com/repos/joomla/joomla-cms | closed | Upload image closes when I press enter | J3 Issue No Code Attached Yet | ### Steps to reproduce the issue
Go to upload an image from an article, I used the image button to produce the popup click on "upload" click "browse" select an image and hit enter.
### Expected result
The image will be available and I can press the upload button to upload the image
### Actual result
The window closes.
I can go through the same process and click the "open" button with my mouse and things work as expected. This is purely if I use the keyboard, and therefore, an accessibility problem.
I can double click on the file and things work as expected.
=============
System Information
=============
php: Linux squareballoon.gds.guru.net.uk 3.10.0-714.10.2.lve1.5.19.3.el7.x86_64 #1 SMP Tue Aug 7 21:33:29 EDT 2018 x86_64
dbserver: mysql
dbversion: 5.7.26
dbcollation: utf8_general_ci
dbconnectioncollation: utf8mb4_general_ci
phpversion: 7.2.18
server: LiteSpeed
sapi_name: litespeed
version: Joomla! 3.9.6 Stable [ Amani ] 7-May-2019 15:00 GMT
platform: Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT
useragent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0
### Additional comments
I suppose it's possible this is a browser issue, but even so it's one we should try to overcome.
| 1.0 | Upload image closes when I press enter - ### Steps to reproduce the issue
Go to upload an image from an article, I used the image button to produce the popup click on "upload" click "browse" select an image and hit enter.
### Expected result
The image will be available and I can press the upload button to upload the image
### Actual result
The window closes.
I can go through the same process and click the "open" button with my mouse and things work as expected. This is purely if I use the keyboard, and therefore, an accessibility problem.
I can double click on the file and things work as expected.
=============
System Information
=============
php: Linux squareballoon.gds.guru.net.uk 3.10.0-714.10.2.lve1.5.19.3.el7.x86_64 #1 SMP Tue Aug 7 21:33:29 EDT 2018 x86_64
dbserver: mysql
dbversion: 5.7.26
dbcollation: utf8_general_ci
dbconnectioncollation: utf8mb4_general_ci
phpversion: 7.2.18
server: LiteSpeed
sapi_name: litespeed
version: Joomla! 3.9.6 Stable [ Amani ] 7-May-2019 15:00 GMT
platform: Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT
useragent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0
### Additional comments
I suppose it's possible this is a browser issue, but even so it's one we should try to overcome.
| non_test | upload image closes when i press enter steps to reproduce the issue go to upload an image from an article i used the image button to produce the popup click on upload click browse select an image and hit enter expected result the image will be available and i can press the upload button to upload the image actual result the window closes i can go through the same process and click the open button with my mouse and things work as expected this is purely if i use the keyboard and therefore an accessibility problem i can double click on the file and things work as expected system information php linux squareballoon gds guru net uk smp tue aug edt dbserver mysql dbversion dbcollation general ci dbconnectioncollation general ci phpversion server litespeed sapi name litespeed version joomla stable may gmt platform joomla platform stable apr gmt useragent mozilla windows nt rv gecko firefox additional comments i suppose it s possible this is a browser issue but even so it s one we should try to overcome | 0 |
312,760 | 26,874,636,606 | IssuesEvent | 2023-02-04 22:10:52 | powbot/issues | https://api.github.com/repos/powbot/issues | closed | [BUG] Quiver cache not updating in bank | bug needs-test | **Describe the bug**
Equipment tab - more specifically the quiver updates using both the widgets and the cache which is literally a god send. However recently when equipping items directly in the bank, the cache either pulls the wrong number (gif 1) or doesn't update at all (gif 2).
```
Rendering.drawString("QUIVER ITEM: "+ Equipment.itemAt(Equipment.Slot.QUIVER).name()+" x"+ Equipment.itemAt(Equipment.Slot.QUIVER).stackSize(), 400, 400);
```
**Expected behaviour**
Equipment stream to pull the correct values from the cache.
For clarity, this was working a few weeks ago.
**Screenshots**
https://i.gyazo.com/cdeaaf96bb14c869c7e3377027471c41.mp4
https://i.gyazo.com/3959c70213277d17bcbc1f483860e186.mp4
**Emulator or device (please complete the following information):**
- Device/Emulator: BS
- OS: P64
- Arch: ARM
**Additional context**
This was working a few weeks ago so it's possible for it to work, just something recently would have broke it,
| 1.0 | [BUG] Quiver cache not updating in bank - **Describe the bug**
Equipment tab - more specifically the quiver updates using both the widgets and the cache which is literally a god send. However recently when equipping items directly in the bank, the cache either pulls the wrong number (gif 1) or doesn't update at all (gif 2).
```
Rendering.drawString("QUIVER ITEM: "+ Equipment.itemAt(Equipment.Slot.QUIVER).name()+" x"+ Equipment.itemAt(Equipment.Slot.QUIVER).stackSize(), 400, 400);
```
**Expected behaviour**
Equipment stream to pull the correct values from the cache.
For clarity, this was working a few weeks ago.
**Screenshots**
https://i.gyazo.com/cdeaaf96bb14c869c7e3377027471c41.mp4
https://i.gyazo.com/3959c70213277d17bcbc1f483860e186.mp4
**Emulator or device (please complete the following information):**
- Device/Emulator: BS
- OS: P64
- Arch: ARM
**Additional context**
This was working a few weeks ago so it's possible for it to work, just something recently would have broke it,
| test | quiver cache not updating in bank describe the bug equipment tab more specifically the quiver updates using both the widgets and the cache which is literally a god send however recently when equipping items directly in the bank the cache either pulls the wrong number gif or doesn t update at all gif rendering drawstring quiver item equipment itemat equipment slot quiver name x equipment itemat equipment slot quiver stacksize expected behaviour equipment stream to pull the correct values from the cache for clarity this was working a few weeks ago screenshots emulator or device please complete the following information device emulator bs os arch arm additional context this was working a few weeks ago so it s possible for it to work just something recently would have broke it | 1 |
19,621 | 3,776,970,378 | IssuesEvent | 2016-03-17 18:22:20 | rancher/rancher | https://api.github.com/repos/rancher/rancher | closed | When I go to containers/certificate details screen, right menu doesn't clear | area/ui kind/bug status/resolved status/to-test | version 0.56.0-rc1
Steps:
1. Go to Containers screen (make sure you have a couple of containers
2. Click on a specific container's right menu
3. With the right menu up, click on container name
4. Do the same in the Certificates screen
Results: The right menu stays up

Expected: Right menu should clear | 1.0 | When I go to containers/certificate details screen, right menu doesn't clear - version 0.56.0-rc1
Steps:
1. Go to Containers screen (make sure you have a couple of containers
2. Click on a specific container's right menu
3. With the right menu up, click on container name
4. Do the same in the Certificates screen
Results: The right menu stays up

Expected: Right menu should clear | test | when i go to containers certificate details screen right menu doesn t clear version steps go to containers screen make sure you have a couple of containers click on a specific container s right menu with the right menu up click on container name do the same in the certificates screen results the right menu stays up expected right menu should clear | 1 |
103,903 | 8,953,322,442 | IssuesEvent | 2019-01-25 19:06:43 | elastic/elasticsearch | https://api.github.com/repos/elastic/elasticsearch | opened | TransformIntegrationTests#testSearchTransform can fail with an assertion error | :Core/Features/Watcher >test-failure | Unfortunately the failure doesn't reproduce for me locally.
---
Link to the build: https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+6.x+intake/1189/console
Command to reproduce:
```
./gradlew :x-pack:plugin:watcher:unitTest \
-Dtests.seed=7025F52611D9E3C2 \
-Dtests.class=org.elasticsearch.xpack.watcher.transform.TransformIntegrationTests \
-Dtests.method="testSearchTransform" \
-Dtests.security.manager=true \
-Dtests.locale=el-CY \
-Dtests.timezone=US/Michigan \
-Dcompiler.java=11 \
-Druntime.java=8
```
Relevant excerpt from the logs:
```
09:57:34 FAILURE 1.65s J3 | TransformIntegrationTests.testSearchTransform <<< FAILURES!
09:57:34 > Throwable #1: java.lang.AssertionError: could not find watch [_id2] to trigger
09:57:34 > Expected: is <true>
09:57:34 > but: was <false>
09:57:34 > at __randomizedtesting.SeedInfo.seed([7025F52611D9E3C2:20E5361838A201DD]:0)
09:57:34 > at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
09:57:34 > at org.elasticsearch.xpack.watcher.test.AbstractWatcherIntegrationTestCase$TimeWarp.trigger(AbstractWatcherIntegrationTestCase.java:569)
09:57:34 > at org.elasticsearch.xpack.watcher.test.AbstractWatcherIntegrationTestCase$TimeWarp.trigger(AbstractWatcherIntegrationTestCase.java:559)
09:57:34 > at org.elasticsearch.xpack.watcher.transform.TransformIntegrationTests.testSearchTransform(TransformIntegrationTests.java:186)
09:57:34 > at java.lang.Thread.run(Thread.java:748)
``` | 1.0 | TransformIntegrationTests#testSearchTransform can fail with an assertion error - Unfortunately the failure doesn't reproduce for me locally.
---
Link to the build: https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+6.x+intake/1189/console
Command to reproduce:
```
./gradlew :x-pack:plugin:watcher:unitTest \
-Dtests.seed=7025F52611D9E3C2 \
-Dtests.class=org.elasticsearch.xpack.watcher.transform.TransformIntegrationTests \
-Dtests.method="testSearchTransform" \
-Dtests.security.manager=true \
-Dtests.locale=el-CY \
-Dtests.timezone=US/Michigan \
-Dcompiler.java=11 \
-Druntime.java=8
```
Relevant excerpt from the logs:
```
09:57:34 FAILURE 1.65s J3 | TransformIntegrationTests.testSearchTransform <<< FAILURES!
09:57:34 > Throwable #1: java.lang.AssertionError: could not find watch [_id2] to trigger
09:57:34 > Expected: is <true>
09:57:34 > but: was <false>
09:57:34 > at __randomizedtesting.SeedInfo.seed([7025F52611D9E3C2:20E5361838A201DD]:0)
09:57:34 > at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
09:57:34 > at org.elasticsearch.xpack.watcher.test.AbstractWatcherIntegrationTestCase$TimeWarp.trigger(AbstractWatcherIntegrationTestCase.java:569)
09:57:34 > at org.elasticsearch.xpack.watcher.test.AbstractWatcherIntegrationTestCase$TimeWarp.trigger(AbstractWatcherIntegrationTestCase.java:559)
09:57:34 > at org.elasticsearch.xpack.watcher.transform.TransformIntegrationTests.testSearchTransform(TransformIntegrationTests.java:186)
09:57:34 > at java.lang.Thread.run(Thread.java:748)
``` | test | transformintegrationtests testsearchtransform can fail with an assertion error unfortunately the failure doesn t reproduce for me locally link to the build command to reproduce gradlew x pack plugin watcher unittest dtests seed dtests class org elasticsearch xpack watcher transform transformintegrationtests dtests method testsearchtransform dtests security manager true dtests locale el cy dtests timezone us michigan dcompiler java druntime java relevant excerpt from the logs failure transformintegrationtests testsearchtransform failures throwable java lang assertionerror could not find watch to trigger expected is but was at randomizedtesting seedinfo seed at org hamcrest matcherassert assertthat matcherassert java at org elasticsearch xpack watcher test abstractwatcherintegrationtestcase timewarp trigger abstractwatcherintegrationtestcase java at org elasticsearch xpack watcher test abstractwatcherintegrationtestcase timewarp trigger abstractwatcherintegrationtestcase java at org elasticsearch xpack watcher transform transformintegrationtests testsearchtransform transformintegrationtests java at java lang thread run thread java | 1 |
290,526 | 25,073,477,478 | IssuesEvent | 2022-11-07 13:56:13 | dotnet/aspnetcore | https://api.github.com/repos/dotnet/aspnetcore | closed | ArgumentOutOfRangeException in ValueTaskSourceAsTask | test-failure area-blazor | ## Failing Test(s)
- Templates.Test.BlazorWasmTemplateTest.BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works
I have not quarantined this test because the error so strange that I can't tell if it's related to a specific test.
## Error Message
<!--
Provide the error message associated with the test failure, if applicable.
-->
```text
StdErr: Unhandled exception. System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'state')
```
## Stacktrace
<details>
<!--
Provide the stack trace associated with the test failure, if applicable.
-->
```text
at System.Threading.Tasks.ValueTask`1.ValueTaskSourceAsTask.<>c.<.cctor>b__4_0(Object state)
at System.Threading.ThreadPoolWorkQueue.Dispatch()
at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()
at System.Threading.Thread.StartCallback()
```
</details>
## Logs
<details>
<!--
Provide the (helix) logs associated with the test failure, if applicable.
-->
```text
[0.004s] [TestLifetime] [Information] Starting test BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works-Templates.Test.BlazorWasmTemplateTest+TemplateInstance at 2021-10-01T12:50:11
[0.686s] [Templates.Test.BlazorWasmTemplateTest] [Information] Acquired DotNetNewLock
[0.686s] [Templates.Test.BlazorWasmTemplateTest] [Information] Released DotNetNewLock
[0.686s] [Templates.Test.BlazorWasmTemplateTest] [Information] Acquired DotNetNewLock
[0.688s] [Templates.Test.BlazorWasmTemplateTest] [Information] ==> D:\h\w\A550096E\p\dotnet-cli\dotnet.exe new blazorwasm --debug:disable-sdk-templates --debug:custom-hive "D:\h\w\A550096E\w\A599095C\e\Hives\.templateEngine" -ho -au SingleOrg --calls-graph --domain my-domain --tenant-id tenantId --client-id clientId --default-scope full --app-id-uri ApiUri --api-client-id 1234123413241324 -o D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa [D:\h\w\A550096E\w\A599095C\e\]
[3.479s] [Templates.Test.BlazorWasmTemplateTest] [Information] The template "Blazor WebAssembly App" was created successfully.
[3.479s] [Templates.Test.BlazorWasmTemplateTest] [Information] This template contains technologies from parties other than Microsoft, see https://aka.ms/aspnetcore/6.0-third-party-notices for details.
[3.479s] [Templates.Test.BlazorWasmTemplateTest] [Information]
[3.480s] [Templates.Test.BlazorWasmTemplateTest] [Information] Processing post-creation actions...
[3.480s] [Templates.Test.BlazorWasmTemplateTest] [Information] Running 'dotnet restore' on D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\AspNet.r24o0bqicpa.sln...
[4.568s] [Templates.Test.BlazorWasmTemplateTest] [Information] Determining projects to restore...
[5.312s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restored D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\AspNet.r24o0bqicpa.Shared.csproj (in 246 ms).
[5.675s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restored D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Client\AspNet.r24o0bqicpa.Client.csproj (in 651 ms).
[10.510s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restored D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Server\AspNet.r24o0bqicpa.Server.csproj (in 5.47 sec).
[10.541s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restore succeeded.
[10.542s] [Templates.Test.BlazorWasmTemplateTest] [Information]
[10.604s] [Templates.Test.BlazorWasmTemplateTest] [Information] Process exited.
[10.604s] [Templates.Test.BlazorWasmTemplateTest] [Information] Released DotNetNewLock
[10.604s] [Templates.Test.BlazorWasmTemplateTest] [Information] Publishing ASP.NET Core application...
[10.605s] [Templates.Test.BlazorWasmTemplateTest] [Information] ==> D:\h\w\A550096E\p\dotnet-cli\dotnet.exe publish -c Release /bl [D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa]
[10.919s] [Templates.Test.BlazorWasmTemplateTest] [Information] Microsoft (R) Build Engine version 17.0.0-preview-21427-02+414393fc1 for .NET
[10.919s] [Templates.Test.BlazorWasmTemplateTest] [Information] Copyright (C) Microsoft Corporation. All rights reserved.
[10.919s] [Templates.Test.BlazorWasmTemplateTest] [Information]
[10.929s] [Templates.Test.BlazorWasmTemplateTest] [Information] D:\h\w\A550096E\p\dotnet-cli\sdk\7.0.100-alpha.1.21474.3\MSBuild.dll -maxcpucount -property:Configuration=Release -restore -target:Publish -verbosity:m /bl .\AspNet.r24o0bqicpa.sln
[12.115s] [Templates.Test.BlazorWasmTemplateTest] [Information] Determining projects to restore...
[12.864s] [Templates.Test.BlazorWasmTemplateTest] [Information] All projects are up-to-date for restore.
[13.047s] [Templates.Test.BlazorWasmTemplateTest] [Information] You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
[13.055s] [Templates.Test.BlazorWasmTemplateTest] [Information] You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
[13.323s] [Templates.Test.BlazorWasmTemplateTest] [Information] You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
[15.344s] [Templates.Test.BlazorWasmTemplateTest] [Information] AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\AspNet.r24o0bqicpa.Shared.dll
[15.369s] [Templates.Test.BlazorWasmTemplateTest] [Information] AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\publish\
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] Unhandled exception. System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'state')
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.Tasks.ValueTask`1.ValueTaskSourceAsTask.<>c.<.cctor>b__4_0(Object state)
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.ThreadPoolWorkQueue.Dispatch()
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.Thread.StartCallback()
[17.749s] [Templates.Test.BlazorWasmTemplateTest] [Information] Process exited.
[17.840s] [Templates.Test.BlazorWasmTemplateTest] [Error] Test threw an exception.
Xunit.Sdk.TrueException: Project new blazorwasm -ho -au SingleOrg --calls-graph --domain my-domain --tenant-id tenantId --client-id clientId --default-scope full --app-id-uri ApiUri --api-client-id 1234123413241324 failed to publish. Exit code -532462766.
D:\h\w\A550096E\p\dotnet-cli\dotnet.exe publish -c Release /bl \nStdErr: Unhandled exception. System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'state')
at System.Threading.Tasks.ValueTask`1.ValueTaskSourceAsTask.<>c.<.cctor>b__4_0(Object state)
at System.Threading.ThreadPoolWorkQueue.Dispatch()
at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()
at System.Threading.Thread.StartCallback()
\nStdOut: Microsoft (R) Build Engine version 17.0.0-preview-21427-02+414393fc1 for .NET
Copyright (C) Microsoft Corporation. All rights reserved.
D:\h\w\A550096E\p\dotnet-cli\sdk\7.0.100-alpha.1.21474.3\MSBuild.dll -maxcpucount -property:Configuration=Release -restore -target:Publish -verbosity:m /bl .\AspNet.r24o0bqicpa.sln
Determining projects to restore...
All projects are up-to-date for restore.
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\AspNet.r24o0bqicpa.Shared.dll
AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\publish\
Expected: True
Actual: False
at Xunit.Assert.True(Nullable`1 condition, String userMessage) in C:\Dev\xunit\xunit\src\xunit.assert\Asserts\BooleanAsserts.cs:line 95
at Templates.Test.BlazorTemplateTest.CreateBuildPublishAsync(String projectName, String auth, String[] args, String targetFramework, Boolean serverProject, Boolean onlyCreate) in /_/src/ProjectTemplates/test/BlazorTemplateTest.cs:line 67
at Xunit.Sdk.TestInvoker`1.<>c__DisplayClass48_1.<<InvokeTestMethodAsync>b__1>d.MoveNext() in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\Runners\TestInvoker.cs:line 273
--- End of stack trace from previous location ---
at Xunit.Sdk.ExecutionTimer.AggregateAsync(Func`1 asyncAction) in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\ExecutionTimer.cs:line 54
at Xunit.Sdk.ExceptionAggregator.RunAsync(Func`1 code) in C:\Dev\xunit\xunit\src\xunit.core\Sdk\ExceptionAggregator.cs:line 96
[17.840s] [TestLifetime] [Information] Finished test BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works-Templates.Test.BlazorWasmTemplateTest+TemplateInstance in 17.8368448s
```
</details>
## Build
https://dev.azure.com/dnceng/public/_build/results?buildId=1397715
| 1.0 | ArgumentOutOfRangeException in ValueTaskSourceAsTask - ## Failing Test(s)
- Templates.Test.BlazorWasmTemplateTest.BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works
I have not quarantined this test because the error so strange that I can't tell if it's related to a specific test.
## Error Message
<!--
Provide the error message associated with the test failure, if applicable.
-->
```text
StdErr: Unhandled exception. System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'state')
```
## Stacktrace
<details>
<!--
Provide the stack trace associated with the test failure, if applicable.
-->
```text
at System.Threading.Tasks.ValueTask`1.ValueTaskSourceAsTask.<>c.<.cctor>b__4_0(Object state)
at System.Threading.ThreadPoolWorkQueue.Dispatch()
at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()
at System.Threading.Thread.StartCallback()
```
</details>
## Logs
<details>
<!--
Provide the (helix) logs associated with the test failure, if applicable.
-->
```text
[0.004s] [TestLifetime] [Information] Starting test BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works-Templates.Test.BlazorWasmTemplateTest+TemplateInstance at 2021-10-01T12:50:11
[0.686s] [Templates.Test.BlazorWasmTemplateTest] [Information] Acquired DotNetNewLock
[0.686s] [Templates.Test.BlazorWasmTemplateTest] [Information] Released DotNetNewLock
[0.686s] [Templates.Test.BlazorWasmTemplateTest] [Information] Acquired DotNetNewLock
[0.688s] [Templates.Test.BlazorWasmTemplateTest] [Information] ==> D:\h\w\A550096E\p\dotnet-cli\dotnet.exe new blazorwasm --debug:disable-sdk-templates --debug:custom-hive "D:\h\w\A550096E\w\A599095C\e\Hives\.templateEngine" -ho -au SingleOrg --calls-graph --domain my-domain --tenant-id tenantId --client-id clientId --default-scope full --app-id-uri ApiUri --api-client-id 1234123413241324 -o D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa [D:\h\w\A550096E\w\A599095C\e\]
[3.479s] [Templates.Test.BlazorWasmTemplateTest] [Information] The template "Blazor WebAssembly App" was created successfully.
[3.479s] [Templates.Test.BlazorWasmTemplateTest] [Information] This template contains technologies from parties other than Microsoft, see https://aka.ms/aspnetcore/6.0-third-party-notices for details.
[3.479s] [Templates.Test.BlazorWasmTemplateTest] [Information]
[3.480s] [Templates.Test.BlazorWasmTemplateTest] [Information] Processing post-creation actions...
[3.480s] [Templates.Test.BlazorWasmTemplateTest] [Information] Running 'dotnet restore' on D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\AspNet.r24o0bqicpa.sln...
[4.568s] [Templates.Test.BlazorWasmTemplateTest] [Information] Determining projects to restore...
[5.312s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restored D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\AspNet.r24o0bqicpa.Shared.csproj (in 246 ms).
[5.675s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restored D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Client\AspNet.r24o0bqicpa.Client.csproj (in 651 ms).
[10.510s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restored D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Server\AspNet.r24o0bqicpa.Server.csproj (in 5.47 sec).
[10.541s] [Templates.Test.BlazorWasmTemplateTest] [Information] Restore succeeded.
[10.542s] [Templates.Test.BlazorWasmTemplateTest] [Information]
[10.604s] [Templates.Test.BlazorWasmTemplateTest] [Information] Process exited.
[10.604s] [Templates.Test.BlazorWasmTemplateTest] [Information] Released DotNetNewLock
[10.604s] [Templates.Test.BlazorWasmTemplateTest] [Information] Publishing ASP.NET Core application...
[10.605s] [Templates.Test.BlazorWasmTemplateTest] [Information] ==> D:\h\w\A550096E\p\dotnet-cli\dotnet.exe publish -c Release /bl [D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa]
[10.919s] [Templates.Test.BlazorWasmTemplateTest] [Information] Microsoft (R) Build Engine version 17.0.0-preview-21427-02+414393fc1 for .NET
[10.919s] [Templates.Test.BlazorWasmTemplateTest] [Information] Copyright (C) Microsoft Corporation. All rights reserved.
[10.919s] [Templates.Test.BlazorWasmTemplateTest] [Information]
[10.929s] [Templates.Test.BlazorWasmTemplateTest] [Information] D:\h\w\A550096E\p\dotnet-cli\sdk\7.0.100-alpha.1.21474.3\MSBuild.dll -maxcpucount -property:Configuration=Release -restore -target:Publish -verbosity:m /bl .\AspNet.r24o0bqicpa.sln
[12.115s] [Templates.Test.BlazorWasmTemplateTest] [Information] Determining projects to restore...
[12.864s] [Templates.Test.BlazorWasmTemplateTest] [Information] All projects are up-to-date for restore.
[13.047s] [Templates.Test.BlazorWasmTemplateTest] [Information] You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
[13.055s] [Templates.Test.BlazorWasmTemplateTest] [Information] You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
[13.323s] [Templates.Test.BlazorWasmTemplateTest] [Information] You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
[15.344s] [Templates.Test.BlazorWasmTemplateTest] [Information] AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\AspNet.r24o0bqicpa.Shared.dll
[15.369s] [Templates.Test.BlazorWasmTemplateTest] [Information] AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\publish\
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] Unhandled exception. System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'state')
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.Tasks.ValueTask`1.ValueTaskSourceAsTask.<>c.<.cctor>b__4_0(Object state)
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.ThreadPoolWorkQueue.Dispatch()
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()
[15.554s] [Templates.Test.BlazorWasmTemplateTest] [Information] [ERROR] at System.Threading.Thread.StartCallback()
[17.749s] [Templates.Test.BlazorWasmTemplateTest] [Information] Process exited.
[17.840s] [Templates.Test.BlazorWasmTemplateTest] [Error] Test threw an exception.
Xunit.Sdk.TrueException: Project new blazorwasm -ho -au SingleOrg --calls-graph --domain my-domain --tenant-id tenantId --client-id clientId --default-scope full --app-id-uri ApiUri --api-client-id 1234123413241324 failed to publish. Exit code -532462766.
D:\h\w\A550096E\p\dotnet-cli\dotnet.exe publish -c Release /bl \nStdErr: Unhandled exception. System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'state')
at System.Threading.Tasks.ValueTask`1.ValueTaskSourceAsTask.<>c.<.cctor>b__4_0(Object state)
at System.Threading.ThreadPoolWorkQueue.Dispatch()
at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()
at System.Threading.Thread.StartCallback()
\nStdOut: Microsoft (R) Build Engine version 17.0.0-preview-21427-02+414393fc1 for .NET
Copyright (C) Microsoft Corporation. All rights reserved.
D:\h\w\A550096E\p\dotnet-cli\sdk\7.0.100-alpha.1.21474.3\MSBuild.dll -maxcpucount -property:Configuration=Release -restore -target:Publish -verbosity:m /bl .\AspNet.r24o0bqicpa.sln
Determining projects to restore...
All projects are up-to-date for restore.
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\AspNet.r24o0bqicpa.Shared.dll
AspNet.r24o0bqicpa.Shared -> D:\h\w\A550096E\w\A599095C\e\Templates\BaseFolder\AspNet.r24o0bqicpa\Shared\bin\Release\net7.0\publish\
Expected: True
Actual: False
at Xunit.Assert.True(Nullable`1 condition, String userMessage) in C:\Dev\xunit\xunit\src\xunit.assert\Asserts\BooleanAsserts.cs:line 95
at Templates.Test.BlazorTemplateTest.CreateBuildPublishAsync(String projectName, String auth, String[] args, String targetFramework, Boolean serverProject, Boolean onlyCreate) in /_/src/ProjectTemplates/test/BlazorTemplateTest.cs:line 67
at Xunit.Sdk.TestInvoker`1.<>c__DisplayClass48_1.<<InvokeTestMethodAsync>b__1>d.MoveNext() in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\Runners\TestInvoker.cs:line 273
--- End of stack trace from previous location ---
at Xunit.Sdk.ExecutionTimer.AggregateAsync(Func`1 asyncAction) in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\ExecutionTimer.cs:line 54
at Xunit.Sdk.ExceptionAggregator.RunAsync(Func`1 code) in C:\Dev\xunit\xunit\src\xunit.core\Sdk\ExceptionAggregator.cs:line 96
[17.840s] [TestLifetime] [Information] Finished test BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works-Templates.Test.BlazorWasmTemplateTest+TemplateInstance in 17.8368448s
```
</details>
## Build
https://dev.azure.com/dnceng/public/_build/results?buildId=1397715
| test | argumentoutofrangeexception in valuetasksourceastask failing test s templates test blazorwasmtemplatetest blazorwasmhostedtemplate azureactivedirectorytemplate works i have not quarantined this test because the error so strange that i can t tell if it s related to a specific test error message provide the error message associated with the test failure if applicable text stderr unhandled exception system argumentoutofrangeexception specified argument was out of the range of valid values parameter state stacktrace provide the stack trace associated with the test failure if applicable text at system threading tasks valuetask valuetasksourceastask c b object state at system threading threadpoolworkqueue dispatch at system threading portablethreadpool workerthread workerthreadstart at system threading thread startcallback logs provide the helix logs associated with the test failure if applicable text starting test blazorwasmhostedtemplate azureactivedirectorytemplate works templates test blazorwasmtemplatetest templateinstance at acquired dotnetnewlock released dotnetnewlock acquired dotnetnewlock d h w p dotnet cli dotnet exe new blazorwasm debug disable sdk templates debug custom hive d h w w e hives templateengine ho au singleorg calls graph domain my domain tenant id tenantid client id clientid default scope full app id uri apiuri api client id o d h w w e templates basefolder aspnet the template blazor webassembly app was created successfully this template contains technologies from parties other than microsoft see for details processing post creation actions running dotnet restore on d h w w e templates basefolder aspnet aspnet sln determining projects to restore restored d h w w e templates basefolder aspnet shared aspnet shared csproj in ms restored d h w w e templates basefolder aspnet client aspnet client csproj in ms restored d h w w e templates basefolder aspnet server aspnet server csproj in sec restore succeeded process exited released dotnetnewlock publishing asp net core application d h w p dotnet cli dotnet exe publish c release bl microsoft r build engine version preview for net copyright c microsoft corporation all rights reserved d h w p dotnet cli sdk alpha msbuild dll maxcpucount property configuration release restore target publish verbosity m bl aspnet sln determining projects to restore all projects are up to date for restore you are using a preview version of net see you are using a preview version of net see you are using a preview version of net see aspnet shared d h w w e templates basefolder aspnet shared bin release aspnet shared dll aspnet shared d h w w e templates basefolder aspnet shared bin release publish unhandled exception system argumentoutofrangeexception specified argument was out of the range of valid values parameter state at system threading tasks valuetask valuetasksourceastask c b object state at system threading threadpoolworkqueue dispatch at system threading portablethreadpool workerthread workerthreadstart at system threading thread startcallback process exited test threw an exception xunit sdk trueexception project new blazorwasm ho au singleorg calls graph domain my domain tenant id tenantid client id clientid default scope full app id uri apiuri api client id failed to publish exit code d h w p dotnet cli dotnet exe publish c release bl nstderr unhandled exception system argumentoutofrangeexception specified argument was out of the range of valid values parameter state at system threading tasks valuetask valuetasksourceastask c b object state at system threading threadpoolworkqueue dispatch at system threading portablethreadpool workerthread workerthreadstart at system threading thread startcallback nstdout microsoft r build engine version preview for net copyright c microsoft corporation all rights reserved d h w p dotnet cli sdk alpha msbuild dll maxcpucount property configuration release restore target publish verbosity m bl aspnet sln determining projects to restore all projects are up to date for restore you are using a preview version of net see you are using a preview version of net see you are using a preview version of net see aspnet shared d h w w e templates basefolder aspnet shared bin release aspnet shared dll aspnet shared d h w w e templates basefolder aspnet shared bin release publish expected true actual false at xunit assert true nullable condition string usermessage in c dev xunit xunit src xunit assert asserts booleanasserts cs line at templates test blazortemplatetest createbuildpublishasync string projectname string auth string args string targetframework boolean serverproject boolean onlycreate in src projecttemplates test blazortemplatetest cs line at xunit sdk testinvoker c b d movenext in c dev xunit xunit src xunit execution sdk frameworks runners testinvoker cs line end of stack trace from previous location at xunit sdk executiontimer aggregateasync func asyncaction in c dev xunit xunit src xunit execution sdk frameworks executiontimer cs line at xunit sdk exceptionaggregator runasync func code in c dev xunit xunit src xunit core sdk exceptionaggregator cs line finished test blazorwasmhostedtemplate azureactivedirectorytemplate works templates test blazorwasmtemplatetest templateinstance in build | 1 |
315,564 | 27,085,370,881 | IssuesEvent | 2023-02-14 16:37:33 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | pkg/sql/logictest/tests/fakedist/fakedist_test: TestLogic_crdb_internal failed | C-test-failure O-robot T-sql-queries branch-release-22.2 | pkg/sql/logictest/tests/fakedist/fakedist_test.TestLogic_crdb_internal [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8700084?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8700084?buildTab=artifacts#/) on release-22.2 @ [9bbf9e626b4d159e0c19e1e78ef1923f79929920](https://github.com/cockroachdb/cockroach/commits/9bbf9e626b4d159e0c19e1e78ef1923f79929920):
```
=== RUN TestLogic_crdb_internal
test_log_scope.go:161: test logs captured to: /artifacts/tmp/_tmp/d549810e45034f43a9494d02b085e623/logTestLogic_crdb_internal1604178445
test_log_scope.go:79: use -show-logs to present logs inline
[11:17:02] setting distsql_workmem='19651B';
[11:17:02] rng seed: -9187594275497463700
logic.go:2762: let $testdb_id = 106
logic.go:2762: let $testdb_foo_id = 108
logic.go:2762: let $schema_bar_id = 111
=== CONT TestLogic_crdb_internal
logic.go:3927: -- test log scope end --
test logs left over in: /artifacts/tmp/_tmp/d549810e45034f43a9494d02b085e623/logTestLogic_crdb_internal1604178445
--- FAIL: TestLogic_crdb_internal (47.71s)
=== RUN TestLogic_crdb_internal/max_retry_counter
logic.go:2705:
/home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal:791: SELECT start_pretty, end_pretty FROM crdb_internal.ranges
WHERE split_enforced_until IS NOT NULL
AND (start_pretty LIKE '/Table/112/1%' OR start_pretty LIKE '/Table/112/2%')
expected:
/Table/112/1/1 /Table/112/1/2
/Table/112/1/2 /Table/112/1/3
/Table/112/1/3 /Table/112/2/1
/Table/112/2/1 /Table/112/2/2
/Table/112/2/2 /Table/112/2/3
/Table/112/2/3 /Table/112/3/1
but found (query options: "retry") :
[11:17:49] --- progress: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal: 107 statements
logic.go:2019:
/home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal:803: too many errors encountered, skipping the rest of the input
[11:17:49] --- done: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal with config fakedist: 107 tests, 2 failures
[11:17:49] --- total progress: 107 statements
--- total: 107 tests, 2 failures
--- FAIL: TestLogic_crdb_internal/max_retry_counter (45.83s)
```
<p>Parameters: <code>TAGS=bazel,gss</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>
/cc @cockroachdb/sql-queries
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestLogic_crdb_internal.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-24513 | 1.0 | pkg/sql/logictest/tests/fakedist/fakedist_test: TestLogic_crdb_internal failed - pkg/sql/logictest/tests/fakedist/fakedist_test.TestLogic_crdb_internal [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8700084?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8700084?buildTab=artifacts#/) on release-22.2 @ [9bbf9e626b4d159e0c19e1e78ef1923f79929920](https://github.com/cockroachdb/cockroach/commits/9bbf9e626b4d159e0c19e1e78ef1923f79929920):
```
=== RUN TestLogic_crdb_internal
test_log_scope.go:161: test logs captured to: /artifacts/tmp/_tmp/d549810e45034f43a9494d02b085e623/logTestLogic_crdb_internal1604178445
test_log_scope.go:79: use -show-logs to present logs inline
[11:17:02] setting distsql_workmem='19651B';
[11:17:02] rng seed: -9187594275497463700
logic.go:2762: let $testdb_id = 106
logic.go:2762: let $testdb_foo_id = 108
logic.go:2762: let $schema_bar_id = 111
=== CONT TestLogic_crdb_internal
logic.go:3927: -- test log scope end --
test logs left over in: /artifacts/tmp/_tmp/d549810e45034f43a9494d02b085e623/logTestLogic_crdb_internal1604178445
--- FAIL: TestLogic_crdb_internal (47.71s)
=== RUN TestLogic_crdb_internal/max_retry_counter
logic.go:2705:
/home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal:791: SELECT start_pretty, end_pretty FROM crdb_internal.ranges
WHERE split_enforced_until IS NOT NULL
AND (start_pretty LIKE '/Table/112/1%' OR start_pretty LIKE '/Table/112/2%')
expected:
/Table/112/1/1 /Table/112/1/2
/Table/112/1/2 /Table/112/1/3
/Table/112/1/3 /Table/112/2/1
/Table/112/2/1 /Table/112/2/2
/Table/112/2/2 /Table/112/2/3
/Table/112/2/3 /Table/112/3/1
but found (query options: "retry") :
[11:17:49] --- progress: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal: 107 statements
logic.go:2019:
/home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal:803: too many errors encountered, skipping the rest of the input
[11:17:49] --- done: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/2002/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/sql/logictest/tests/fakedist/fakedist_test_/fakedist_test.runfiles/com_github_cockroachdb_cockroach/pkg/sql/logictest/testdata/logic_test/crdb_internal with config fakedist: 107 tests, 2 failures
[11:17:49] --- total progress: 107 statements
--- total: 107 tests, 2 failures
--- FAIL: TestLogic_crdb_internal/max_retry_counter (45.83s)
```
<p>Parameters: <code>TAGS=bazel,gss</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>
/cc @cockroachdb/sql-queries
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestLogic_crdb_internal.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-24513 | test | pkg sql logictest tests fakedist fakedist test testlogic crdb internal failed pkg sql logictest tests fakedist fakedist test testlogic crdb internal with on release run testlogic crdb internal test log scope go test logs captured to artifacts tmp tmp logtestlogic crdb test log scope go use show logs to present logs inline setting distsql workmem rng seed logic go let testdb id logic go let testdb foo id logic go let schema bar id cont testlogic crdb internal logic go test log scope end test logs left over in artifacts tmp tmp logtestlogic crdb fail testlogic crdb internal run testlogic crdb internal max retry counter logic go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg sql logictest tests fakedist fakedist test fakedist test runfiles com github cockroachdb cockroach pkg sql logictest testdata logic test crdb internal select start pretty end pretty from crdb internal ranges where split enforced until is not null and start pretty like table or start pretty like table expected table table table table table table table table table table table table but found query options retry progress home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg sql logictest tests fakedist fakedist test fakedist test runfiles com github cockroachdb cockroach pkg sql logictest testdata logic test crdb internal statements logic go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg sql logictest tests fakedist fakedist test fakedist test runfiles com github cockroachdb cockroach pkg sql logictest testdata logic test crdb internal too many errors encountered skipping the rest of the input done home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg sql logictest tests fakedist fakedist test fakedist test runfiles com github cockroachdb cockroach pkg sql logictest testdata logic test crdb internal with config fakedist tests failures total progress statements total tests failures fail testlogic crdb internal max retry counter parameters tags bazel gss help see also cc cockroachdb sql queries jira issue crdb | 1 |
139,450 | 11,269,962,501 | IssuesEvent | 2020-01-14 09:57:57 | microsoft/AzureStorageExplorer | https://api.github.com/repos/microsoft/AzureStorageExplorer | closed | Update 'mean time' to 'meantime' in Release Notes Known Issues part | 🧪 testing | **Storage Explorer Version:** 1.12.0
**Build:** [20200113.2](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3379477)
**Branch:** rel/1.12.0
**Platform/OS:** Windows 10/ Linux Ubuntu 18.04/ MacOS High Sierra
**Architecture:** ia32/x64
**Regression From:** Not a regression
**Steps to reproduce:**
1. Launch Storage Explorer -> Open Release Notes.
2. Check the Known Issues part in Release Notes.
**Expect Experience:**
Show 'meantime' in the descriptions of the know issue.
**Actual Experience:**
Show 'mean time' in the descriptions of the know issue.

| 1.0 | Update 'mean time' to 'meantime' in Release Notes Known Issues part - **Storage Explorer Version:** 1.12.0
**Build:** [20200113.2](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3379477)
**Branch:** rel/1.12.0
**Platform/OS:** Windows 10/ Linux Ubuntu 18.04/ MacOS High Sierra
**Architecture:** ia32/x64
**Regression From:** Not a regression
**Steps to reproduce:**
1. Launch Storage Explorer -> Open Release Notes.
2. Check the Known Issues part in Release Notes.
**Expect Experience:**
Show 'meantime' in the descriptions of the know issue.
**Actual Experience:**
Show 'mean time' in the descriptions of the know issue.

| test | update mean time to meantime in release notes known issues part storage explorer version build branch rel platform os windows linux ubuntu macos high sierra architecture regression from not a regression steps to reproduce launch storage explorer open release notes check the known issues part in release notes expect experience show meantime in the descriptions of the know issue actual experience show mean time in the descriptions of the know issue | 1 |
320,662 | 9,784,418,096 | IssuesEvent | 2019-06-08 19:01:46 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Waterwheel Placement [0.7.3.0 staging-eb6e4ece] | Medium Priority | Having some problems with the waterwheel placement in 'staging'
Unable to place it in the water anymore. Can place on the side of a hill thats not close to the water/river though. 'Can't place there, Blocked'
| 1.0 | Waterwheel Placement [0.7.3.0 staging-eb6e4ece] - Having some problems with the waterwheel placement in 'staging'
Unable to place it in the water anymore. Can place on the side of a hill thats not close to the water/river though. 'Can't place there, Blocked'
| non_test | waterwheel placement having some problems with the waterwheel placement in staging unable to place it in the water anymore can place on the side of a hill thats not close to the water river though can t place there blocked | 0 |
1,866 | 2,603,972,669 | IssuesEvent | 2015-02-24 19:00:39 | chrsmith/nishazi6 | https://api.github.com/repos/chrsmith/nishazi6 | opened | 沈阳病毒疣体医院 | auto-migrated Priority-Medium Type-Defect | ```
沈阳病毒疣体医院〓沈陽軍區政治部醫院性病〓TEL:024-3102330
8〓成立于1946年,68年專注于性傳播疾病的研究和治療。位于�
��陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的歷�
��悠久、設備精良、技術權威、專家云集,是預防、保健、醫
療、科研康復為一體的綜合性醫院。是國家首批公立甲等部��
�醫院、全國首批醫療規范定點單位,是第四軍醫大學、東南�
��學等知名高等院校的教學醫院。曾被中國人民解放軍空軍后
勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二等��
�。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:01 | 1.0 | 沈阳病毒疣体医院 - ```
沈阳病毒疣体医院〓沈陽軍區政治部醫院性病〓TEL:024-3102330
8〓成立于1946年,68年專注于性傳播疾病的研究和治療。位于�
��陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的歷�
��悠久、設備精良、技術權威、專家云集,是預防、保健、醫
療、科研康復為一體的綜合性醫院。是國家首批公立甲等部��
�醫院、全國首批醫療規范定點單位,是第四軍醫大學、東南�
��學等知名高等院校的教學醫院。曾被中國人民解放軍空軍后
勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二等��
�。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:01 | non_test | 沈阳病毒疣体医院 沈阳病毒疣体医院〓沈陽軍區政治部醫院性病〓tel: 〓 , 。位于� �� 。是一所與新中國同建立共輝煌的歷� ��悠久、設備精良、技術權威、專家云集,是預防、保健、醫 療、科研康復為一體的綜合性醫院。是國家首批公立甲等部�� �醫院、全國首批醫療規范定點單位,是第四軍醫大學、東南� ��學等知名高等院校的教學醫院。曾被中國人民解放軍空軍后 勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二等�� �。 original issue reported on code google com by gmail com on jun at | 0 |
191,997 | 14,598,226,525 | IssuesEvent | 2020-12-20 23:52:17 | spack/spack | https://api.github.com/repos/spack/spack | closed | Does the position of @run_after matter during decoration? | tests | @alalazo
I was experimenting with adding an optional post-installation test to a package and noticed the following behavior.
```python
@run_after('install')
@on_package_attributes(run_tests=True)
def check_install(self):
```
works as expected. The test is run post-installation, but only when `--run-tests` is specified. However, if I do:
```python
@on_package_attributes(run_tests=True)
@run_after('install')
def check_install(self):
```
instead, the tests are always run regardless of whether or not I supply `--run-tests`. | 1.0 | Does the position of @run_after matter during decoration? - @alalazo
I was experimenting with adding an optional post-installation test to a package and noticed the following behavior.
```python
@run_after('install')
@on_package_attributes(run_tests=True)
def check_install(self):
```
works as expected. The test is run post-installation, but only when `--run-tests` is specified. However, if I do:
```python
@on_package_attributes(run_tests=True)
@run_after('install')
def check_install(self):
```
instead, the tests are always run regardless of whether or not I supply `--run-tests`. | test | does the position of run after matter during decoration alalazo i was experimenting with adding an optional post installation test to a package and noticed the following behavior python run after install on package attributes run tests true def check install self works as expected the test is run post installation but only when run tests is specified however if i do python on package attributes run tests true run after install def check install self instead the tests are always run regardless of whether or not i supply run tests | 1 |
136,529 | 11,049,425,668 | IssuesEvent | 2019-12-09 23:41:20 | rancher/rio | https://api.github.com/repos/rancher/rio | closed | Registering publicdomain to app does not work if there is no v0 version | [zube]: To Test bug | **Describe the bug**
Running `rio domain register foo.bar myapp` fails if I don't have a `v0` of `myapp`
**To Reproduce**
1. `rio run -n myapp@v1 -p 80 nginx`
2. `rio domain register foo.bar myapp`
**Expected behavior**
This should register the app to foo.bar. This only works if there exists a `v0` on the app.
| 1.0 | Registering publicdomain to app does not work if there is no v0 version - **Describe the bug**
Running `rio domain register foo.bar myapp` fails if I don't have a `v0` of `myapp`
**To Reproduce**
1. `rio run -n myapp@v1 -p 80 nginx`
2. `rio domain register foo.bar myapp`
**Expected behavior**
This should register the app to foo.bar. This only works if there exists a `v0` on the app.
| test | registering publicdomain to app does not work if there is no version describe the bug running rio domain register foo bar myapp fails if i don t have a of myapp to reproduce rio run n myapp p nginx rio domain register foo bar myapp expected behavior this should register the app to foo bar this only works if there exists a on the app | 1 |
231,882 | 18,817,326,776 | IssuesEvent | 2021-11-10 01:47:16 | dbt-labs/dbt-core | https://api.github.com/repos/dbt-labs/dbt-core | closed | test_name selection method should match schema test specification exactly | enhancement stale tests | ### Describe the feature
The `test_name` selection method should include the exact user-supplied schema test specification.
Given these properties:
```yml
version: 2
models:
- name: my_model
columns:
- name: my_columns
tests:
- unique
- dbt_utils.unique
- some_other_package.unique
```
Today, `dbt test -m test_name:unique` would match all three. We want to keep that behavior.
In addition, users should be able to match specific namespaced test macros by including their package name:
```
dbt test -m test_name:dbt.unique # matches tests that are "using" the builtin unique test macro
dbt test -m test_name:dbt_utils.unique # matches tests that are "using" the dbt_utils.unique macro
dbt test -m test_name:some_other_package.unique # matches tests that are "using" the test_name:some_other_package.unique macro
```
- While I wouldn't personally recommend using different definitions of the same schema test name, it shouldn't be for us to proscribe the possibility.
- Typing the same string in both resource property + selector feels more intuitive, but users should still be able to benefit from the convenience of typing the test macro name only if they want
~This change is breaking only in the sense that users who are currently using `dbt test -m test_name:unique_where` to address package-specified `unique_where` tests will need to add the package name to their selectors.~
### Describe alternatives you've considered
- ~Not doing this and keeping status quo~
- Doing this _and_ keeping the status quo
### Who will this benefit?
- All users of advanced selection syntax introduced in v0.18.0, since this would be more intuitive
- Projects with many installed packages
| 1.0 | test_name selection method should match schema test specification exactly - ### Describe the feature
The `test_name` selection method should include the exact user-supplied schema test specification.
Given these properties:
```yml
version: 2
models:
- name: my_model
columns:
- name: my_columns
tests:
- unique
- dbt_utils.unique
- some_other_package.unique
```
Today, `dbt test -m test_name:unique` would match all three. We want to keep that behavior.
In addition, users should be able to match specific namespaced test macros by including their package name:
```
dbt test -m test_name:dbt.unique # matches tests that are "using" the builtin unique test macro
dbt test -m test_name:dbt_utils.unique # matches tests that are "using" the dbt_utils.unique macro
dbt test -m test_name:some_other_package.unique # matches tests that are "using" the test_name:some_other_package.unique macro
```
- While I wouldn't personally recommend using different definitions of the same schema test name, it shouldn't be for us to proscribe the possibility.
- Typing the same string in both resource property + selector feels more intuitive, but users should still be able to benefit from the convenience of typing the test macro name only if they want
~This change is breaking only in the sense that users who are currently using `dbt test -m test_name:unique_where` to address package-specified `unique_where` tests will need to add the package name to their selectors.~
### Describe alternatives you've considered
- ~Not doing this and keeping status quo~
- Doing this _and_ keeping the status quo
### Who will this benefit?
- All users of advanced selection syntax introduced in v0.18.0, since this would be more intuitive
- Projects with many installed packages
| test | test name selection method should match schema test specification exactly describe the feature the test name selection method should include the exact user supplied schema test specification given these properties yml version models name my model columns name my columns tests unique dbt utils unique some other package unique today dbt test m test name unique would match all three we want to keep that behavior in addition users should be able to match specific namespaced test macros by including their package name dbt test m test name dbt unique matches tests that are using the builtin unique test macro dbt test m test name dbt utils unique matches tests that are using the dbt utils unique macro dbt test m test name some other package unique matches tests that are using the test name some other package unique macro while i wouldn t personally recommend using different definitions of the same schema test name it shouldn t be for us to proscribe the possibility typing the same string in both resource property selector feels more intuitive but users should still be able to benefit from the convenience of typing the test macro name only if they want this change is breaking only in the sense that users who are currently using dbt test m test name unique where to address package specified unique where tests will need to add the package name to their selectors describe alternatives you ve considered not doing this and keeping status quo doing this and keeping the status quo who will this benefit all users of advanced selection syntax introduced in since this would be more intuitive projects with many installed packages | 1 |
105,192 | 22,953,480,711 | IssuesEvent | 2022-07-19 09:27:51 | joomla/joomla-cms | https://api.github.com/repos/joomla/joomla-cms | closed | [4.2] Deprecated on login | No Code Attached Yet | ### Steps to reproduce the issue
Create a login menu item
Enable maximum error reporting
Visit login link in the front end
### Expected result
no notices etc
### Actual result
```
Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in components\com_users\tmpl\login\default_login.php on line 36
Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in components\com_users\tmpl\login\default_login.php on line 48
```
### System information (as much as possible)
php 8.1
### Additional comments
| 1.0 | [4.2] Deprecated on login - ### Steps to reproduce the issue
Create a login menu item
Enable maximum error reporting
Visit login link in the front end
### Expected result
no notices etc
### Actual result
```
Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in components\com_users\tmpl\login\default_login.php on line 36
Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in components\com_users\tmpl\login\default_login.php on line 48
```
### System information (as much as possible)
php 8.1
### Additional comments
| non_test | deprecated on login steps to reproduce the issue create a login menu item enable maximum error reporting visit login link in the front end expected result no notices etc actual result deprecated str replace passing null to parameter subject of type array string is deprecated in components com users tmpl login default login php on line deprecated str replace passing null to parameter subject of type array string is deprecated in components com users tmpl login default login php on line system information as much as possible php additional comments | 0 |
112,925 | 9,606,070,734 | IssuesEvent | 2019-05-11 06:47:51 | elgalu/docker-selenium | https://api.github.com/repos/elgalu/docker-selenium | closed | {{CONTAINER_IP}} have to be replaced by __CONTAINER_IP__ in yml files | waiting-retest | Hello,
in this files :
docker-compose.yml
docker-compose-tests.yml
docker-compose-scales.yml
{{CONTAINER_IP}} have to be replaced by __CONTAINER_IP__
If not, the node is not using the good network interface to communicate with the hub and the hub is very slow.
I tested on a swarm cluster.
Sorry, I'm not familiar with github to do it by myself ...
thanks. | 1.0 | {{CONTAINER_IP}} have to be replaced by __CONTAINER_IP__ in yml files - Hello,
in this files :
docker-compose.yml
docker-compose-tests.yml
docker-compose-scales.yml
{{CONTAINER_IP}} have to be replaced by __CONTAINER_IP__
If not, the node is not using the good network interface to communicate with the hub and the hub is very slow.
I tested on a swarm cluster.
Sorry, I'm not familiar with github to do it by myself ...
thanks. | test | container ip have to be replaced by container ip in yml files hello in this files docker compose yml docker compose tests yml docker compose scales yml container ip have to be replaced by container ip if not the node is not using the good network interface to communicate with the hub and the hub is very slow i tested on a swarm cluster sorry i m not familiar with github to do it by myself thanks | 1 |
23,514 | 4,020,976,496 | IssuesEvent | 2016-05-16 20:21:05 | phetsims/isotopes-and-atomic-mass | https://api.github.com/repos/phetsims/isotopes-and-atomic-mass | closed | Resetting on hydrogen doesn't return the atoms | priority:1-top status:ready-to-test type:bug | @aadish pressing the reset all button on the Mix Isotopes screen while playing with hydrogen will not return the atoms to the bucket. They just disappear;

Switching to slider view or resetting on a different element fixes the issue (seen in the above video).
Seen on all platforms in 1.0.0-dev.6. Needs to be fixed for #48, so high priority before tomorrow. | 1.0 | Resetting on hydrogen doesn't return the atoms - @aadish pressing the reset all button on the Mix Isotopes screen while playing with hydrogen will not return the atoms to the bucket. They just disappear;

Switching to slider view or resetting on a different element fixes the issue (seen in the above video).
Seen on all platforms in 1.0.0-dev.6. Needs to be fixed for #48, so high priority before tomorrow. | test | resetting on hydrogen doesn t return the atoms aadish pressing the reset all button on the mix isotopes screen while playing with hydrogen will not return the atoms to the bucket they just disappear switching to slider view or resetting on a different element fixes the issue seen in the above video seen on all platforms in dev needs to be fixed for so high priority before tomorrow | 1 |
18,647 | 3,398,025,993 | IssuesEvent | 2015-12-02 00:43:06 | dotnet/roslyn | https://api.github.com/repos/dotnet/roslyn | closed | (Proposal) Signed Integer Literals | Area-Language Design Discussion | Signed Integer Literals
------------------------
This proposal it the extend the specification, so that the sign of an integer can consider as part of the literal. Not as previously as a separate unary operator.
**Specification Changes**
**SignedIntLiteral**
```
SignedIntLiteral ::= Sign? IntLiteral
Sign ::= Negative | Positive
Negative ::= '-'
Positive ::= '+'
```
**IntegeralLiteralValue**
```
IntegeralLiteralValue ::= SignedIntLiteral | IntLiteral | HexLiteral | OctalLiteral
```
**Floating Point Literal**
```
DecimalPoint ::= '.'
FloatingPointLiteralValue ::= SignedIntLiteral DecimalPoint IntLiteral Exponent? |
Sign? DecimalPoint IntLiteral Exponent?
SignedIntLiteral Exponent
Exponent ::= 'E' SignedIntLiteral
```
----------------------------------------
**Implementation (partial)**
Modify the scanner so that information on whether the preceding token was / wasn't a Unary `MinusToken` or a unary `PlusToken`. So that this can be taken into account when determining the value for this literal, and if said valid is out of bounds.
How can we thread this sign information through the scanner and parser?
* Extend [ParseExpression](https://github.com/dotnet/roslyn/blob/a4e375b95953e471660e9686a46893c97db70b0e/src/Compilers/VisualBasic/Portable/Parser/ParseExpression.vb#L79)
So that in the `UnaryMinus` and `UnaryPlus` cases, sign information is passed down.
* Modify `ScanTokenCommon` to take an additional optional parameter, which indicates the sign.
* Modify `ScanIntLiteral` to take an additional optional parameter, which indicates the sign.
[ScanIntLiteral Scanner.vb](https://github.com/dotnet/roslyn/blob/master/src/Compilers/VisualBasic/Portable/Scanner/Scanner.vb#L2004)
```VB.net
Enum IntSign
Negative = -1
NotPresent = 0
Positive = +1
End Enum
Private Function ScanIntLiteral( ByRef ReturnValue As Integer,
ByRef Here As Integer,
Optional Sign As IntSign = IntSign.NotPresent
) As Boolean
Debug.Assert(Here >= 0)
If Not CanGet(Here) Then Return False
Dim ch = Peek(Here)
If Not IsDecimalDigit(ch) Then Return False
Dim IntegralValue As Integer = IntegralLiteralCharacterValue(ch)
Here += 1
While CanGet(Here)
ch = Peek(Here)
If Not IsDecimalDigit(ch) Then Exit While
Dim nextDigit = IntegralLiteralCharacterValue(ch)
If IntegralValue < 214748364 OrElse
(IntegralValue = 214748364 AndAlso nextDigit < 8) Then
IntegralValue = IntegralValue * 10 + nextDigit
Here += 1
Else
Return False
End If
End While
If Sign = IntSign.Negative Then IntegeralValue = -1 * IntegeralValue
ReturnValue = IntegralValue
Return True
End Function
```
| 1.0 | (Proposal) Signed Integer Literals - Signed Integer Literals
------------------------
This proposal it the extend the specification, so that the sign of an integer can consider as part of the literal. Not as previously as a separate unary operator.
**Specification Changes**
**SignedIntLiteral**
```
SignedIntLiteral ::= Sign? IntLiteral
Sign ::= Negative | Positive
Negative ::= '-'
Positive ::= '+'
```
**IntegeralLiteralValue**
```
IntegeralLiteralValue ::= SignedIntLiteral | IntLiteral | HexLiteral | OctalLiteral
```
**Floating Point Literal**
```
DecimalPoint ::= '.'
FloatingPointLiteralValue ::= SignedIntLiteral DecimalPoint IntLiteral Exponent? |
Sign? DecimalPoint IntLiteral Exponent?
SignedIntLiteral Exponent
Exponent ::= 'E' SignedIntLiteral
```
----------------------------------------
**Implementation (partial)**
Modify the scanner so that information on whether the preceding token was / wasn't a Unary `MinusToken` or a unary `PlusToken`. So that this can be taken into account when determining the value for this literal, and if said valid is out of bounds.
How can we thread this sign information through the scanner and parser?
* Extend [ParseExpression](https://github.com/dotnet/roslyn/blob/a4e375b95953e471660e9686a46893c97db70b0e/src/Compilers/VisualBasic/Portable/Parser/ParseExpression.vb#L79)
So that in the `UnaryMinus` and `UnaryPlus` cases, sign information is passed down.
* Modify `ScanTokenCommon` to take an additional optional parameter, which indicates the sign.
* Modify `ScanIntLiteral` to take an additional optional parameter, which indicates the sign.
[ScanIntLiteral Scanner.vb](https://github.com/dotnet/roslyn/blob/master/src/Compilers/VisualBasic/Portable/Scanner/Scanner.vb#L2004)
```VB.net
Enum IntSign
Negative = -1
NotPresent = 0
Positive = +1
End Enum
Private Function ScanIntLiteral( ByRef ReturnValue As Integer,
ByRef Here As Integer,
Optional Sign As IntSign = IntSign.NotPresent
) As Boolean
Debug.Assert(Here >= 0)
If Not CanGet(Here) Then Return False
Dim ch = Peek(Here)
If Not IsDecimalDigit(ch) Then Return False
Dim IntegralValue As Integer = IntegralLiteralCharacterValue(ch)
Here += 1
While CanGet(Here)
ch = Peek(Here)
If Not IsDecimalDigit(ch) Then Exit While
Dim nextDigit = IntegralLiteralCharacterValue(ch)
If IntegralValue < 214748364 OrElse
(IntegralValue = 214748364 AndAlso nextDigit < 8) Then
IntegralValue = IntegralValue * 10 + nextDigit
Here += 1
Else
Return False
End If
End While
If Sign = IntSign.Negative Then IntegeralValue = -1 * IntegeralValue
ReturnValue = IntegralValue
Return True
End Function
```
| non_test | proposal signed integer literals signed integer literals this proposal it the extend the specification so that the sign of an integer can consider as part of the literal not as previously as a separate unary operator specification changes signedintliteral signedintliteral sign intliteral sign negative positive negative positive integeralliteralvalue integeralliteralvalue signedintliteral intliteral hexliteral octalliteral floating point literal decimalpoint floatingpointliteralvalue signedintliteral decimalpoint intliteral exponent sign decimalpoint intliteral exponent signedintliteral exponent exponent e signedintliteral implementation partial modify the scanner so that information on whether the preceding token was wasn t a unary minustoken or a unary plustoken so that this can be taken into account when determining the value for this literal and if said valid is out of bounds how can we thread this sign information through the scanner and parser extend so that in the unaryminus and unaryplus cases sign information is passed down modify scantokencommon to take an additional optional parameter which indicates the sign modify scanintliteral to take an additional optional parameter which indicates the sign vb net enum intsign negative notpresent positive end enum private function scanintliteral byref returnvalue as integer byref here as integer optional sign as intsign intsign notpresent as boolean debug assert here if not canget here then return false dim ch peek here if not isdecimaldigit ch then return false dim integralvalue as integer integralliteralcharactervalue ch here while canget here ch peek here if not isdecimaldigit ch then exit while dim nextdigit integralliteralcharactervalue ch if integralvalue orelse integralvalue andalso nextdigit then integralvalue integralvalue nextdigit here else return false end if end while if sign intsign negative then integeralvalue integeralvalue returnvalue integralvalue return true end function | 0 |
388,540 | 11,488,922,709 | IssuesEvent | 2020-02-11 14:42:33 | DigitalCampus/oppia-mobile-android | https://api.github.com/repos/DigitalCampus/oppia-mobile-android | closed | When trying to update courses and not logged in gives connection error | Low priority bug | Should instead give a auth error
| 1.0 | When trying to update courses and not logged in gives connection error - Should instead give a auth error
| non_test | when trying to update courses and not logged in gives connection error should instead give a auth error | 0 |
813,125 | 30,446,199,738 | IssuesEvent | 2023-07-15 17:48:03 | ncssar/radiolog | https://api.github.com/repos/ncssar/radiolog | opened | generated log PDFs should be searchable | enhancement Priority:Medium | not so important for generated clue report PDFs, but all others - radio log, team logs, clue log - should be searchable (using e.g. acrobat reader); surprised to see that they are currently not searchable | 1.0 | generated log PDFs should be searchable - not so important for generated clue report PDFs, but all others - radio log, team logs, clue log - should be searchable (using e.g. acrobat reader); surprised to see that they are currently not searchable | non_test | generated log pdfs should be searchable not so important for generated clue report pdfs but all others radio log team logs clue log should be searchable using e g acrobat reader surprised to see that they are currently not searchable | 0 |
111,102 | 14,007,126,752 | IssuesEvent | 2020-10-28 21:03:16 | microsoft/vscode-cpptools | https://api.github.com/repos/microsoft/vscode-cpptools | closed | Not working left part | Language Service by design | Type: Debugger
<!----- Input information below ----->
<!--
**Prior to filing an issue, please review:**
- Existing issues at https://github.com/Microsoft/vscode-cpptools/issues
- Our documentation at https://code.visualstudio.com/docs/languages/cpp
- FAQs at https://code.visualstudio.com/docs/cpp/faq-cpp
-->
**Describe the bug**
- OS and Version: Windows_NT x64 10.0.19041
- VS Code Version:1.50.0
- C/C++ Extension Version: v1.0.1
- Other extensions you installed (and if the issue persists after disabling them):mingw
- A clear and concise description of what the bug is.
When I degugging the code, the left part did not show up for example variables and call stack things.
I runned very easy code
**To Reproduce**
*Please include a code sample and `launch.json` configuration.*
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
#include<stdio.h>
int main(){
int a=10;
int b=20;
int c;
c=a+b;
printf("%d + %d = %d\n",a,b,c);
printf("hello1\n");
printf("hello2\n");
printf("hello3\n");
printf("hello4\n");
return 0;
}--------------------------------------------------------------------------------------------------------
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "g++.exe - 활성 파일 빌드 및 디버그",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\MinGW\\bin\\gdb.exe",
"setupCommands": [
{
"description": "gdb에 자동 서식 지정 사용",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: g++.exe build active file"
}
]
}
[bandicam 2020-10-09 14-26-09-822.zip](https://github.com/microsoft/vscode-cpptools/files/5358314/bandicam.2020-10-09.14-26-09-822.zip)
**Additional context**
*If applicable, please include logging by adding "logging": { "engineLogging": true, "trace": true, "traceResponse": true } in your `launch.json`*
Add any other context about the problem here including log or error messages in your Debug Console or Output windows.
| 1.0 | Not working left part - Type: Debugger
<!----- Input information below ----->
<!--
**Prior to filing an issue, please review:**
- Existing issues at https://github.com/Microsoft/vscode-cpptools/issues
- Our documentation at https://code.visualstudio.com/docs/languages/cpp
- FAQs at https://code.visualstudio.com/docs/cpp/faq-cpp
-->
**Describe the bug**
- OS and Version: Windows_NT x64 10.0.19041
- VS Code Version:1.50.0
- C/C++ Extension Version: v1.0.1
- Other extensions you installed (and if the issue persists after disabling them):mingw
- A clear and concise description of what the bug is.
When I degugging the code, the left part did not show up for example variables and call stack things.
I runned very easy code
**To Reproduce**
*Please include a code sample and `launch.json` configuration.*
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
#include<stdio.h>
int main(){
int a=10;
int b=20;
int c;
c=a+b;
printf("%d + %d = %d\n",a,b,c);
printf("hello1\n");
printf("hello2\n");
printf("hello3\n");
printf("hello4\n");
return 0;
}--------------------------------------------------------------------------------------------------------
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "g++.exe - 활성 파일 빌드 및 디버그",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\MinGW\\bin\\gdb.exe",
"setupCommands": [
{
"description": "gdb에 자동 서식 지정 사용",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: g++.exe build active file"
}
]
}
[bandicam 2020-10-09 14-26-09-822.zip](https://github.com/microsoft/vscode-cpptools/files/5358314/bandicam.2020-10-09.14-26-09-822.zip)
**Additional context**
*If applicable, please include logging by adding "logging": { "engineLogging": true, "trace": true, "traceResponse": true } in your `launch.json`*
Add any other context about the problem here including log or error messages in your Debug Console or Output windows.
| non_test | not working left part type debugger prior to filing an issue please review existing issues at our documentation at faqs at describe the bug os and version windows nt vs code version c c extension version other extensions you installed and if the issue persists after disabling them mingw a clear and concise description of what the bug is when i degugging the code the left part did not show up for example variables and call stack things i runned very easy code to reproduce please include a code sample and launch json configuration steps to reproduce the behavior go to click on scroll down to see error include int main int a int b int c c a b printf d d d n a b c printf n printf n printf n printf n return use intellisense to learn about possible attributes hover to view descriptions of existing attributes for more information visit version configurations name g exe 활성 파일 빌드 및 디버그 type cppdbg request launch program filedirname filebasenamenoextension exe args stopatentry false cwd workspacefolder environment externalconsole true mimode gdb midebuggerpath c mingw bin gdb exe setupcommands description gdb에 자동 서식 지정 사용 text enable pretty printing ignorefailures true prelaunchtask c c g exe build active file additional context if applicable please include logging by adding logging enginelogging true trace true traceresponse true in your launch json add any other context about the problem here including log or error messages in your debug console or output windows | 0 |
5,526 | 2,789,313,643 | IssuesEvent | 2015-05-08 18:39:22 | mozilla/webmaker-app | https://api.github.com/repos/mozilla/webmaker-app | opened | UX - Comply with Creative Commons CC-by-SA | design | This is a complex topic, so let's debrief during our Beta kickoff on Tuesday and I'll add notes to this ticket. Assigning to self.
/cc @flukeout @xmatthewx | 1.0 | UX - Comply with Creative Commons CC-by-SA - This is a complex topic, so let's debrief during our Beta kickoff on Tuesday and I'll add notes to this ticket. Assigning to self.
/cc @flukeout @xmatthewx | non_test | ux comply with creative commons cc by sa this is a complex topic so let s debrief during our beta kickoff on tuesday and i ll add notes to this ticket assigning to self cc flukeout xmatthewx | 0 |
235,063 | 19,295,730,654 | IssuesEvent | 2021-12-12 15:01:54 | YCPRadioTelescope/YCP-RT-ControlRoom | https://api.github.com/repos/YCPRadioTelescope/YCP-RT-ControlRoom | opened | Fix semi-failing TestAddAppointment | bug Testing | TestAddAppointment under DatabaseOperationsTests will sometimes fail with the following error message:

Looking a little closer, it appears that two appointment objects are being added to the database in this test, and sometimes one will be inserted before the other, leading to a failing test. I thought this was only an issue with my machine, but another CR member stumbled upon it as well.
We need to figure out why this is happening and how to fix it. I suspect there is a race condition somewhere that may or may not be under our control. The race condition needs to be resolved, or the test must be modified to run correctly consistently. | 1.0 | Fix semi-failing TestAddAppointment - TestAddAppointment under DatabaseOperationsTests will sometimes fail with the following error message:

Looking a little closer, it appears that two appointment objects are being added to the database in this test, and sometimes one will be inserted before the other, leading to a failing test. I thought this was only an issue with my machine, but another CR member stumbled upon it as well.
We need to figure out why this is happening and how to fix it. I suspect there is a race condition somewhere that may or may not be under our control. The race condition needs to be resolved, or the test must be modified to run correctly consistently. | test | fix semi failing testaddappointment testaddappointment under databaseoperationstests will sometimes fail with the following error message looking a little closer it appears that two appointment objects are being added to the database in this test and sometimes one will be inserted before the other leading to a failing test i thought this was only an issue with my machine but another cr member stumbled upon it as well we need to figure out why this is happening and how to fix it i suspect there is a race condition somewhere that may or may not be under our control the race condition needs to be resolved or the test must be modified to run correctly consistently | 1 |
67,964 | 7,080,216,823 | IssuesEvent | 2018-01-10 12:41:44 | jmvanel/semantic_forms | https://api.github.com/repos/jmvanel/semantic_forms | closed | Traiter le multi-type dans la génération de formulaire | To be tested | Par multi-type, on entend une instance `<s>` ayant plusieurs types, par exemple :
` <s> a foaf:Person , fam:FamilyRelations .`
Actuellement, SF "choisit" *une* des deux classes pour générer le formulaire.
Il faudrait tenir compte de toutes les classes.
Visuellement , on peut activer l'affichage des champs par groupes .
| 1.0 | Traiter le multi-type dans la génération de formulaire - Par multi-type, on entend une instance `<s>` ayant plusieurs types, par exemple :
` <s> a foaf:Person , fam:FamilyRelations .`
Actuellement, SF "choisit" *une* des deux classes pour générer le formulaire.
Il faudrait tenir compte de toutes les classes.
Visuellement , on peut activer l'affichage des champs par groupes .
| test | traiter le multi type dans la génération de formulaire par multi type on entend une instance ayant plusieurs types par exemple a foaf person fam familyrelations actuellement sf choisit une des deux classes pour générer le formulaire il faudrait tenir compte de toutes les classes visuellement on peut activer l affichage des champs par groupes | 1 |
504,897 | 14,623,404,271 | IssuesEvent | 2020-12-23 03:15:07 | sct/overseerr | https://api.github.com/repos/sct/overseerr | closed | Release Date info in Detail View | priority:medium topic:ux type:enhancement | **Is your feature request related to a problem? Please describe.**
There isn't any release date information for Shows/Movies in the details view. When looking at the media, can't tell when it was released.
**Describe the solution you'd like**
Very helpful when browsing through items in the request queue or others, to see the date of release in the right bar along with ratings and such. Years are good to get the right era versions, but dates are useful for helping identify if maybe you have an indexer or download problem to investigate when its December, but the media was released in January.
| 1.0 | Release Date info in Detail View - **Is your feature request related to a problem? Please describe.**
There isn't any release date information for Shows/Movies in the details view. When looking at the media, can't tell when it was released.
**Describe the solution you'd like**
Very helpful when browsing through items in the request queue or others, to see the date of release in the right bar along with ratings and such. Years are good to get the right era versions, but dates are useful for helping identify if maybe you have an indexer or download problem to investigate when its December, but the media was released in January.
| non_test | release date info in detail view is your feature request related to a problem please describe there isn t any release date information for shows movies in the details view when looking at the media can t tell when it was released describe the solution you d like very helpful when browsing through items in the request queue or others to see the date of release in the right bar along with ratings and such years are good to get the right era versions but dates are useful for helping identify if maybe you have an indexer or download problem to investigate when its december but the media was released in january | 0 |
101,785 | 31,592,929,338 | IssuesEvent | 2023-09-05 01:25:18 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | reopened | Build fails with "eng/common/tools.sh: line 474: 537 Segmentation fault" | area-VM-coreclr Known Build Error | ```
2022-10-07T15:14:51.2484448Z Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
2022-10-07T15:14:51.2485788Z --------------------------------------------------------------------------------------
2022-10-07T15:14:51.6083403Z /__w/1/s/.dotnet/sdk/7.0.100-rc.1.22431.12/MSBuild.dll /nologo -maxcpucount /m -verbosity:m /v:minimal /bl:/__w/1/s/artifacts/log/Release/ToolsetRestore.binlog /clp:Summary /clp:ErrorsOnly;NoSummary /nr:false /p:TreatWarningsAsErrors=true /p:ContinuousIntegrationBuild=true /p:__ToolsetLocationOutputFile=/__w/1/s/artifacts/toolset/8.0.0-beta.22503.1.txt /t:__WriteToolsetLocation /warnaserror /__w/1/s/artifacts/toolset/restore.proj
2022-10-07T15:14:55.6156152Z /__w/1/s/eng/common/tools.sh: line 474: 537 Segmentation fault (core dumped) "$_InitializeBuildTool" "$@"
2022-10-07T15:14:55.6156978Z Build failed with exit code 139. Check errors above.
```
Failed in #76737. Full log: https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/44249/logs/166
<!-- Error message template -->
```json
{
"ErrorPattern": "eng/common/tools.sh: line [0-9]+: [0-9]+ Segmentation fault",
"BuildRetry": true
}
```
<!--Known issue error report start -->
### Report
|Build|Definition|Step Name|Console log|Pull Request|
|---|---|---|---|---|
|[2240100](https://dev.azure.com/dnceng/internal/_build/results?buildId=2240100)|dotnet-runtime|Restore internal tools|[Log](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/2240100/logs/860)||
|[367113](https://dev.azure.com/dnceng-public/public/_build/results?buildId=367113)|dotnet/runtime|Restore and Build Product|[Log](https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/367113/logs/190)|dotnet/runtime#90107|
|[357811](https://dev.azure.com/dnceng-public/public/_build/results?buildId=357811)|dotnet/runtime|Build and generate native prerequisites|[Log](https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/357811/logs/270)|dotnet/runtime#89655|
|[353249](https://dev.azure.com/dnceng-public/public/_build/results?buildId=353249)|dotnet/runtime|Restore and Build Product|[Log](https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/353249/logs/227)|dotnet/runtime#89535|
#### Summary
|24-Hour Hit Count|7-Day Hit Count|1-Month Count|
|---|---|---|
|0|0|4|
<!--Known issue error report end -->
<!-- Known issue validation start -->
### Known issue validation
**Build: :mag_right:**
**Result validation: :warning:** Validation could not be done without an Azure DevOps build URL on the issue. Please add it to the "**Build: :mag_right:**" line.
<!-- Known issue validation end --> | 1.0 | Build fails with "eng/common/tools.sh: line 474: 537 Segmentation fault" - ```
2022-10-07T15:14:51.2484448Z Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
2022-10-07T15:14:51.2485788Z --------------------------------------------------------------------------------------
2022-10-07T15:14:51.6083403Z /__w/1/s/.dotnet/sdk/7.0.100-rc.1.22431.12/MSBuild.dll /nologo -maxcpucount /m -verbosity:m /v:minimal /bl:/__w/1/s/artifacts/log/Release/ToolsetRestore.binlog /clp:Summary /clp:ErrorsOnly;NoSummary /nr:false /p:TreatWarningsAsErrors=true /p:ContinuousIntegrationBuild=true /p:__ToolsetLocationOutputFile=/__w/1/s/artifacts/toolset/8.0.0-beta.22503.1.txt /t:__WriteToolsetLocation /warnaserror /__w/1/s/artifacts/toolset/restore.proj
2022-10-07T15:14:55.6156152Z /__w/1/s/eng/common/tools.sh: line 474: 537 Segmentation fault (core dumped) "$_InitializeBuildTool" "$@"
2022-10-07T15:14:55.6156978Z Build failed with exit code 139. Check errors above.
```
Failed in #76737. Full log: https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/44249/logs/166
<!-- Error message template -->
```json
{
"ErrorPattern": "eng/common/tools.sh: line [0-9]+: [0-9]+ Segmentation fault",
"BuildRetry": true
}
```
<!--Known issue error report start -->
### Report
|Build|Definition|Step Name|Console log|Pull Request|
|---|---|---|---|---|
|[2240100](https://dev.azure.com/dnceng/internal/_build/results?buildId=2240100)|dotnet-runtime|Restore internal tools|[Log](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/2240100/logs/860)||
|[367113](https://dev.azure.com/dnceng-public/public/_build/results?buildId=367113)|dotnet/runtime|Restore and Build Product|[Log](https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/367113/logs/190)|dotnet/runtime#90107|
|[357811](https://dev.azure.com/dnceng-public/public/_build/results?buildId=357811)|dotnet/runtime|Build and generate native prerequisites|[Log](https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/357811/logs/270)|dotnet/runtime#89655|
|[353249](https://dev.azure.com/dnceng-public/public/_build/results?buildId=353249)|dotnet/runtime|Restore and Build Product|[Log](https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_apis/build/builds/353249/logs/227)|dotnet/runtime#89535|
#### Summary
|24-Hour Hit Count|7-Day Hit Count|1-Month Count|
|---|---|---|
|0|0|4|
<!--Known issue error report end -->
<!-- Known issue validation start -->
### Known issue validation
**Build: :mag_right:**
**Result validation: :warning:** Validation could not be done without an Azure DevOps build URL on the issue. Please add it to the "**Build: :mag_right:**" line.
<!-- Known issue validation end --> | non_test | build fails with eng common tools sh line segmentation fault use dotnet help to see available commands or visit w s dotnet sdk rc msbuild dll nologo maxcpucount m verbosity m v minimal bl w s artifacts log release toolsetrestore binlog clp summary clp errorsonly nosummary nr false p treatwarningsaserrors true p continuousintegrationbuild true p toolsetlocationoutputfile w s artifacts toolset beta txt t writetoolsetlocation warnaserror w s artifacts toolset restore proj w s eng common tools sh line segmentation fault core dumped initializebuildtool build failed with exit code check errors above failed in full log json errorpattern eng common tools sh line segmentation fault buildretry true report build definition step name console log pull request internal tools and build product and generate native prerequisites and build product summary hour hit count day hit count month count known issue validation build mag right result validation warning validation could not be done without an azure devops build url on the issue please add it to the build mag right line | 0 |
13,199 | 3,316,615,213 | IssuesEvent | 2015-11-06 17:41:26 | coreos/rkt | https://api.github.com/repos/coreos/rkt | opened | install unit and functional tests with --enable-installed-tests | area/distribution area/testing | rkt has unit tests and functional tests that can be executed from the source tree with `make check`. But it is (at the moment) not possible to install the tests and have Linux distributions to package them in a `-test` package.
Debian (#1307) has Continuous Integration on http://ci.debian.net/ for testing new versions in package. Ubuntu has http://ci.ubuntu.com/. But as far as I understand, it requires the tests to be installed. So adding a `--enable-installed-tests` option would allow distributions to plug rkt upstream tests into their CI.
Another benefit is with reverse dependencies in autopkgtest: in Debian/Ubuntu, the rkt package will have a dependency on systemd. So when a new version of systemd is packaged (with Debian-specific patches), it could triggered the rkt tests in Debian's CI.
Would distributions be interested in that?
/cc @onlyjob @krnowak
| 1.0 | install unit and functional tests with --enable-installed-tests - rkt has unit tests and functional tests that can be executed from the source tree with `make check`. But it is (at the moment) not possible to install the tests and have Linux distributions to package them in a `-test` package.
Debian (#1307) has Continuous Integration on http://ci.debian.net/ for testing new versions in package. Ubuntu has http://ci.ubuntu.com/. But as far as I understand, it requires the tests to be installed. So adding a `--enable-installed-tests` option would allow distributions to plug rkt upstream tests into their CI.
Another benefit is with reverse dependencies in autopkgtest: in Debian/Ubuntu, the rkt package will have a dependency on systemd. So when a new version of systemd is packaged (with Debian-specific patches), it could triggered the rkt tests in Debian's CI.
Would distributions be interested in that?
/cc @onlyjob @krnowak
| test | install unit and functional tests with enable installed tests rkt has unit tests and functional tests that can be executed from the source tree with make check but it is at the moment not possible to install the tests and have linux distributions to package them in a test package debian has continuous integration on for testing new versions in package ubuntu has but as far as i understand it requires the tests to be installed so adding a enable installed tests option would allow distributions to plug rkt upstream tests into their ci another benefit is with reverse dependencies in autopkgtest in debian ubuntu the rkt package will have a dependency on systemd so when a new version of systemd is packaged with debian specific patches it could triggered the rkt tests in debian s ci would distributions be interested in that cc onlyjob krnowak | 1 |
62,051 | 3,167,801,942 | IssuesEvent | 2015-09-22 00:08:30 | CDOT-EDX/Project | https://api.github.com/repos/CDOT-EDX/Project | closed | change all instances of activeIndex | bug priority | activeIndex has to differentiate between mediaActiveIndex and contentActiveIndex (besides altMediaIndex) | 1.0 | change all instances of activeIndex - activeIndex has to differentiate between mediaActiveIndex and contentActiveIndex (besides altMediaIndex) | non_test | change all instances of activeindex activeindex has to differentiate between mediaactiveindex and contentactiveindex besides altmediaindex | 0 |
745,578 | 25,989,906,111 | IssuesEvent | 2022-12-20 06:20:01 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | opened | [YSQL] Unexpected transaction conflicts for colocated tables | kind/bug area/ysql priority/medium status/awaiting-triage | Jira Link: [DB-4513](https://yugabyte.atlassian.net/browse/DB-4513)
### Description
Ran `org.yb.pgsql.TestPgSavepoints#testSavepointCommitWithAbort` for colocation.
Found the following transaction conflict issue happened on colocated tables.
Repro:
```
CREATE DATABASE col WITH COLOCATION = true;
\c col
CREATE TABLE t (k INT, v INT);
SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL SERIALIZABLE;
BEGIN;
INSERT INTO t VALUES (1, 2);
SAVEPOINT a;
INSERT INTO t VALUES (3, 4);
ROLLBACK TO a;
INSERT INTO t VALUES (5, 6);
COMMIT;
BEGIN;
SELECT * FROM t;
TRUNCATE t;
COMMIT;
ERROR: Operation expired: Heartbeat: Transaction [17, 81, 175, 75, 126, 157, 77, 230, 190, 11, 121, 34, 214, 79, 135, 81] expired or aborted by a conflict: 40001
``` | 1.0 | [YSQL] Unexpected transaction conflicts for colocated tables - Jira Link: [DB-4513](https://yugabyte.atlassian.net/browse/DB-4513)
### Description
Ran `org.yb.pgsql.TestPgSavepoints#testSavepointCommitWithAbort` for colocation.
Found the following transaction conflict issue happened on colocated tables.
Repro:
```
CREATE DATABASE col WITH COLOCATION = true;
\c col
CREATE TABLE t (k INT, v INT);
SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL SERIALIZABLE;
BEGIN;
INSERT INTO t VALUES (1, 2);
SAVEPOINT a;
INSERT INTO t VALUES (3, 4);
ROLLBACK TO a;
INSERT INTO t VALUES (5, 6);
COMMIT;
BEGIN;
SELECT * FROM t;
TRUNCATE t;
COMMIT;
ERROR: Operation expired: Heartbeat: Transaction [17, 81, 175, 75, 126, 157, 77, 230, 190, 11, 121, 34, 214, 79, 135, 81] expired or aborted by a conflict: 40001
``` | non_test | unexpected transaction conflicts for colocated tables jira link description ran org yb pgsql testpgsavepoints testsavepointcommitwithabort for colocation found the following transaction conflict issue happened on colocated tables repro create database col with colocation true c col create table t k int v int set session characteristics as transaction isolation level serializable begin insert into t values savepoint a insert into t values rollback to a insert into t values commit begin select from t truncate t commit error operation expired heartbeat transaction expired or aborted by a conflict | 0 |
151,265 | 12,026,248,970 | IssuesEvent | 2020-04-12 13:19:51 | Skatta/Aapoon-Support-Feedback-Tracker | https://api.github.com/repos/Skatta/Aapoon-Support-Feedback-Tracker | reopened | Ethereum Wallet Address | Android Main App Fixed in QA Priority Medium To be Tested by QA enhancement | Enhancement
We are not supporting cryptocurrency therefore Ethereum Wallet Address needs to be hide under my account page.
**To Reproduce**
Not Applicable
**Expected behavior**
Once the Ethereum Wallet Address field is hidden, user can't see.
**Screenshots**
Not Applicable
**Desktop (please complete the following information):**
Needs to be fixed in Web Application
**Smartphone (please complete the following information):**
Needs to be fixed in native Android and iOS (iPhone)
**Additional context**
Not Applicable
| 1.0 | Ethereum Wallet Address - Enhancement
We are not supporting cryptocurrency therefore Ethereum Wallet Address needs to be hide under my account page.
**To Reproduce**
Not Applicable
**Expected behavior**
Once the Ethereum Wallet Address field is hidden, user can't see.
**Screenshots**
Not Applicable
**Desktop (please complete the following information):**
Needs to be fixed in Web Application
**Smartphone (please complete the following information):**
Needs to be fixed in native Android and iOS (iPhone)
**Additional context**
Not Applicable
| test | ethereum wallet address enhancement we are not supporting cryptocurrency therefore ethereum wallet address needs to be hide under my account page to reproduce not applicable expected behavior once the ethereum wallet address field is hidden user can t see screenshots not applicable desktop please complete the following information needs to be fixed in web application smartphone please complete the following information needs to be fixed in native android and ios iphone additional context not applicable | 1 |
278,390 | 21,075,981,091 | IssuesEvent | 2022-04-02 06:18:37 | Krukov/cashews | https://api.github.com/repos/Krukov/cashews | closed | Support soft ttl | documentation enhancement | along the lines of: https://github.com/aio-libs/aiocache/issues/256
and as a use case: when the cached operation has a transient failure (for example when fetching data from a 3rd party). In this case I may want to return the prior value if it is within a more generous ttl.
As an example:
```python
cached_value, age = read_from_cache(key)
if cached_value and age < ttl_soft:
return cached_value
try:
new_value = expensive_operation(key)
save_cache(new_value, now)
return new_value
except ex:
if age < ttl:
return cached_value
raise ex
``` | 1.0 | Support soft ttl - along the lines of: https://github.com/aio-libs/aiocache/issues/256
and as a use case: when the cached operation has a transient failure (for example when fetching data from a 3rd party). In this case I may want to return the prior value if it is within a more generous ttl.
As an example:
```python
cached_value, age = read_from_cache(key)
if cached_value and age < ttl_soft:
return cached_value
try:
new_value = expensive_operation(key)
save_cache(new_value, now)
return new_value
except ex:
if age < ttl:
return cached_value
raise ex
``` | non_test | support soft ttl along the lines of and as a use case when the cached operation has a transient failure for example when fetching data from a party in this case i may want to return the prior value if it is within a more generous ttl as an example python cached value age read from cache key if cached value and age ttl soft return cached value try new value expensive operation key save cache new value now return new value except ex if age ttl return cached value raise ex | 0 |
154,482 | 12,216,085,448 | IssuesEvent | 2020-05-01 14:25:11 | longhorn/longhorn | https://api.github.com/repos/longhorn/longhorn | opened | [BUG]Nightly test failure on `longhorn-tests` job | area/test bug priority/1 | Our nightly test failed or timed out without reason since about two weeks ago. We need to fix that | 1.0 | [BUG]Nightly test failure on `longhorn-tests` job - Our nightly test failed or timed out without reason since about two weeks ago. We need to fix that | test | nightly test failure on longhorn tests job our nightly test failed or timed out without reason since about two weeks ago we need to fix that | 1 |
297,386 | 22,353,993,201 | IssuesEvent | 2022-06-15 14:16:18 | cmb69/setup-php-sdk | https://api.github.com/repos/cmb69/setup-php-sdk | closed | Output seems to be missing/wrong in PHP 7.1 | documentation | Running on PHP 7.1 results in the subsequent `ilammy/msvc-dev-cmd` being unhappy, I'm guessing it's the `toolset` output is not acceptable perhaps?
Example build: https://github.com/scoutapp/scout-apm-php-ext/runs/6881900710?check_suite_focus=true
```
Run ilammy/msvc-dev-cmd@v1
Found with vswhere: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat
Error: Could not setup Developer Command Prompt: invalid parameters
[ERROR:vcvars140.bat] VC++ 14.0 Toolset Installation was not found. Init did not complete successfully.
[ERROR:VsDevCmd.bat] *** VsDevCmd.bat encountered errors. Environment may be incomplete and/or incorrect. ***
[ERROR:VsDevCmd.bat] In an uninitialized command prompt, please 'set VSCMD_DEBUG=[value]' and then re-run
[ERROR:VsDevCmd.bat] vsdevcmd.bat [args] for additional details.
[ERROR:VsDevCmd.bat] Where [value] is:
[ERROR:VsDevCmd.bat] 1 : basic debug logging
[ERROR:VsDevCmd.bat] 2 : detailed debug logging
[ERROR:VsDevCmd.bat] 3 : trace level logging. Redirection of output to a file when using this level is recommended.
[ERROR:VsDevCmd.bat] Example: set VSCMD_DEBUG=3
[ERROR:VsDevCmd.bat] vsdevcmd.bat > vsdevcmd.trace.txt 2>&1
```
Example usage:
```yaml
jobs:
windows-test:
name: "Build and test on Windows"
defaults:
run:
shell: cmd
strategy:
fail-fast: false
matrix:
version: [ "8.1", "8.0", "7.4", "7.3", "7.2", "7.1" ]
arch: [ x64, x86 ]
ts: [ ts, nts ]
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP SDK
id: setup-php
uses: cmb69/setup-php-sdk@v0.5
with:
version: ${{matrix.version}}
arch: ${{matrix.arch}}
ts: ${{matrix.ts}}
- name: Enable Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{matrix.arch}}
toolset: ${{steps.setup-php.outputs.toolset}}
``` | 1.0 | Output seems to be missing/wrong in PHP 7.1 - Running on PHP 7.1 results in the subsequent `ilammy/msvc-dev-cmd` being unhappy, I'm guessing it's the `toolset` output is not acceptable perhaps?
Example build: https://github.com/scoutapp/scout-apm-php-ext/runs/6881900710?check_suite_focus=true
```
Run ilammy/msvc-dev-cmd@v1
Found with vswhere: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat
Error: Could not setup Developer Command Prompt: invalid parameters
[ERROR:vcvars140.bat] VC++ 14.0 Toolset Installation was not found. Init did not complete successfully.
[ERROR:VsDevCmd.bat] *** VsDevCmd.bat encountered errors. Environment may be incomplete and/or incorrect. ***
[ERROR:VsDevCmd.bat] In an uninitialized command prompt, please 'set VSCMD_DEBUG=[value]' and then re-run
[ERROR:VsDevCmd.bat] vsdevcmd.bat [args] for additional details.
[ERROR:VsDevCmd.bat] Where [value] is:
[ERROR:VsDevCmd.bat] 1 : basic debug logging
[ERROR:VsDevCmd.bat] 2 : detailed debug logging
[ERROR:VsDevCmd.bat] 3 : trace level logging. Redirection of output to a file when using this level is recommended.
[ERROR:VsDevCmd.bat] Example: set VSCMD_DEBUG=3
[ERROR:VsDevCmd.bat] vsdevcmd.bat > vsdevcmd.trace.txt 2>&1
```
Example usage:
```yaml
jobs:
windows-test:
name: "Build and test on Windows"
defaults:
run:
shell: cmd
strategy:
fail-fast: false
matrix:
version: [ "8.1", "8.0", "7.4", "7.3", "7.2", "7.1" ]
arch: [ x64, x86 ]
ts: [ ts, nts ]
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP SDK
id: setup-php
uses: cmb69/setup-php-sdk@v0.5
with:
version: ${{matrix.version}}
arch: ${{matrix.arch}}
ts: ${{matrix.ts}}
- name: Enable Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{matrix.arch}}
toolset: ${{steps.setup-php.outputs.toolset}}
``` | non_test | output seems to be missing wrong in php running on php results in the subsequent ilammy msvc dev cmd being unhappy i m guessing it s the toolset output is not acceptable perhaps example build run ilammy msvc dev cmd found with vswhere c program files microsoft visual studio enterprise vc auxiliary build vcvarsall bat error could not setup developer command prompt invalid parameters vc toolset installation was not found init did not complete successfully vsdevcmd bat encountered errors environment may be incomplete and or incorrect in an uninitialized command prompt please set vscmd debug and then re run vsdevcmd bat for additional details where is basic debug logging detailed debug logging trace level logging redirection of output to a file when using this level is recommended example set vscmd debug vsdevcmd bat vsdevcmd trace txt example usage yaml jobs windows test name build and test on windows defaults run shell cmd strategy fail fast false matrix version arch ts runs on windows latest steps uses actions checkout name setup php sdk id setup php uses setup php sdk with version matrix version arch matrix arch ts matrix ts name enable developer command prompt uses ilammy msvc dev cmd with arch matrix arch toolset steps setup php outputs toolset | 0 |
80,363 | 23,179,294,547 | IssuesEvent | 2022-07-31 22:05:56 | apple/swift | https://api.github.com/repos/apple/swift | opened | libcxxshim's CMake has trouble copying modulemap and header to resource | bug C++ Interop build | When building Swift using a unified CMake build setup the cmake commands (in stdlib/public/Cxx/cxxshim/CMakeLists.txt):
`"${CMAKE_COMMAND}" "-E" "copy_if_different" "${CMAKE_CURRENT_SOURCE_DIR}/${libcxxshim_modulemap}" "${libcxxshim_modulemap_out}"`
and
`"${CMAKE_COMMAND}" "-E" "copy_if_different" "${CMAKE_CURRENT_SOURCE_DIR}/${libcxxshim_header}" "${libcxxshim_header_out}"`
at
https://github.com/apple/swift/blob/main/stdlib/public/Cxx/cxxshim/CMakeLists.txt#L27-L39
don't seem to actually copy the header and modulemap to the expected location when doing a unified CMake build (non-build-script build).
Instead the build hits an CMake Error like the following:
```
CMake Error at tools/swift/stdlib/public/Cxx/cxxshim/cmake_install.cmake:45 (file):
file INSTALL cannot find
"/Users/plotfi/Local/S/build/BinaryCache/toolchain/./lib/swift/macosx/x86_64/libcxxshim.h":
No such file or directory.
```
However if the cmake commands for the copies are manually run like so then running the build subsequently succeeds:
```
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.h ./build/BinaryCache/toolchain/./lib/swift/macosx/arm64/libcxxshim.h
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.modulemap ./build/BinaryCache/toolchain/./lib/swift/macosx/arm64/libcxxshim.modulemap
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.h ./build/BinaryCache/toolchain/./lib/swift/macosx/x86_64/libcxxshim.h\n
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.modulemap ./build/BinaryCache/toolchain/./lib/swift/macosx/x86_64/libcxxshim.modulemap
```
I have a repo with the CMake invocation I use to do a unified cmake build at:
https://github.com/plotfi/swift-build-darwin/blob/main/build.sh#L31-L61 | 1.0 | libcxxshim's CMake has trouble copying modulemap and header to resource - When building Swift using a unified CMake build setup the cmake commands (in stdlib/public/Cxx/cxxshim/CMakeLists.txt):
`"${CMAKE_COMMAND}" "-E" "copy_if_different" "${CMAKE_CURRENT_SOURCE_DIR}/${libcxxshim_modulemap}" "${libcxxshim_modulemap_out}"`
and
`"${CMAKE_COMMAND}" "-E" "copy_if_different" "${CMAKE_CURRENT_SOURCE_DIR}/${libcxxshim_header}" "${libcxxshim_header_out}"`
at
https://github.com/apple/swift/blob/main/stdlib/public/Cxx/cxxshim/CMakeLists.txt#L27-L39
don't seem to actually copy the header and modulemap to the expected location when doing a unified CMake build (non-build-script build).
Instead the build hits an CMake Error like the following:
```
CMake Error at tools/swift/stdlib/public/Cxx/cxxshim/cmake_install.cmake:45 (file):
file INSTALL cannot find
"/Users/plotfi/Local/S/build/BinaryCache/toolchain/./lib/swift/macosx/x86_64/libcxxshim.h":
No such file or directory.
```
However if the cmake commands for the copies are manually run like so then running the build subsequently succeeds:
```
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.h ./build/BinaryCache/toolchain/./lib/swift/macosx/arm64/libcxxshim.h
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.modulemap ./build/BinaryCache/toolchain/./lib/swift/macosx/arm64/libcxxshim.modulemap
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.h ./build/BinaryCache/toolchain/./lib/swift/macosx/x86_64/libcxxshim.h\n
cmake -E copy ./swift/stdlib/public/Cxx/cxxshim/libcxxshim.modulemap ./build/BinaryCache/toolchain/./lib/swift/macosx/x86_64/libcxxshim.modulemap
```
I have a repo with the CMake invocation I use to do a unified cmake build at:
https://github.com/plotfi/swift-build-darwin/blob/main/build.sh#L31-L61 | non_test | libcxxshim s cmake has trouble copying modulemap and header to resource when building swift using a unified cmake build setup the cmake commands in stdlib public cxx cxxshim cmakelists txt cmake command e copy if different cmake current source dir libcxxshim modulemap libcxxshim modulemap out and cmake command e copy if different cmake current source dir libcxxshim header libcxxshim header out at don t seem to actually copy the header and modulemap to the expected location when doing a unified cmake build non build script build instead the build hits an cmake error like the following cmake error at tools swift stdlib public cxx cxxshim cmake install cmake file file install cannot find users plotfi local s build binarycache toolchain lib swift macosx libcxxshim h no such file or directory however if the cmake commands for the copies are manually run like so then running the build subsequently succeeds cmake e copy swift stdlib public cxx cxxshim libcxxshim h build binarycache toolchain lib swift macosx libcxxshim h cmake e copy swift stdlib public cxx cxxshim libcxxshim modulemap build binarycache toolchain lib swift macosx libcxxshim modulemap cmake e copy swift stdlib public cxx cxxshim libcxxshim h build binarycache toolchain lib swift macosx libcxxshim h n cmake e copy swift stdlib public cxx cxxshim libcxxshim modulemap build binarycache toolchain lib swift macosx libcxxshim modulemap i have a repo with the cmake invocation i use to do a unified cmake build at | 0 |
651,571 | 21,482,069,634 | IssuesEvent | 2022-04-26 18:46:46 | GoogleCloudPlatform/cloud-code-intellij | https://api.github.com/repos/GoogleCloudPlatform/cloud-code-intellij | closed | ConcurrentModificationException in KubectlTimeoutPanel | kind/bug priority/p3 area/settings | Plugin 21.5.1
IDEA 2021.1
```
com.intellij.diagnostic.PluginException: Cannot create class com.google.cloud.tools.intellij.kubernetes.settings.KubernetesSettingsConfigurable (classloader=PluginClassLoader(plugin=PluginDescriptor(name=Cloud Code, id=com.google.gct.core, descriptorPath=plugin.xml, path=***, version=21.5.1, package=null), packagePrefix=null, instanceId=168, state=active))
at com.intellij.serviceContainer.ComponentManagerImpl.instantiateClass(ComponentManagerImpl.kt:763)
at com.intellij.serviceContainer.ComponentManagerImpl.instantiateClass(ComponentManagerImpl.kt:781)
at com.intellij.openapi.options.ConfigurableEP$ClassProducer.createElement(ConfigurableEP.java:440)
at com.intellij.openapi.options.ConfigurableEP.createConfigurable(ConfigurableEP.java:346)
at com.intellij.openapi.options.ex.ConfigurableWrapper.createConfigurable(ConfigurableWrapper.java:42)
at com.intellij.openapi.options.ex.ConfigurableWrapper.getConfigurable(ConfigurableWrapper.java:116)
at com.intellij.openapi.options.ex.ConfigurableWrapper.cast(ConfigurableWrapper.java:91)
at com.intellij.openapi.options.ex.ConfigurableWrapper.getDisplayName(ConfigurableWrapper.java:137)
at com.intellij.ide.util.gotoByName.GotoActionModel.lambda$new$0(GotoActionModel.java:90)
at com.intellij.openapi.util.NotNullLazyValue$3.compute(NotNullLazyValue.java:80)
at com.intellij.openapi.util.VolatileNotNullLazyValue.getValue(VolatileNotNullLazyValue.java:19)
at com.intellij.ide.util.gotoByName.GotoActionModel.getConfigurablesNames(GotoActionModel.java:379)
at com.intellij.ide.util.gotoByName.GotoActionItemProvider.processOptions(GotoActionItemProvider.java:166)
at com.intellij.ide.util.gotoByName.GotoActionItemProvider.filterElements(GotoActionItemProvider.java:116)
at com.intellij.ide.actions.searcheverywhere.ActionSearchEverywhereContributor.fetchWeightedElements(ActionSearchEverywhereContributor.java:97)
at com.intellij.ide.actions.searcheverywhere.MixedResultsSearcher$ContributorSearchTask.run(MixedResultsSearcher.java:177)
at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:213)
at com.intellij.util.ConcurrencyUtil.lambda$underThreadNameRunnable$3(ConcurrencyUtil.java:201)
at com.intellij.util.RunnableCallable.call(RunnableCallable.java:20)
at com.intellij.util.RunnableCallable.call(RunnableCallable.java:11)
at com.intellij.openapi.application.impl.ApplicationImpl$1.call(ApplicationImpl.java:265)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
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.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:668)
at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:665)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:665)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: java.lang.reflect.InvocationTargetException
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
at com.intellij.serviceContainer.ComponentManagerImpl.instantiateClass(ComponentManagerImpl.kt:722)
... 28 more
Caused by: java.util.ConcurrentModificationException
at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1134)
at ****
at java.desktop/javax.swing.JLabel.setText(JLabel.java)
at com.intellij.ui.components.JBLabel.setText(JBLabel.java:151)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.setCommentText(ComponentPanelBuilder.java:335)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.createCommentComponent(ComponentPanelBuilder.java:303)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.createCommentComponent(ComponentPanelBuilder.java:287)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.createCommentComponent(ComponentPanelBuilder.java:274)
at com.google.cloud.tools.intellij.kubernetes.settings.KubectlTimeoutPanel.<init>(KubectlTimeoutPanel.kt:53)
at com.google.cloud.tools.intellij.kubernetes.settings.KubernetesSettingsConfigurable.<init>(KubernetesSettingsConfigurable.kt:35)
... 33 more
``` | 1.0 | ConcurrentModificationException in KubectlTimeoutPanel - Plugin 21.5.1
IDEA 2021.1
```
com.intellij.diagnostic.PluginException: Cannot create class com.google.cloud.tools.intellij.kubernetes.settings.KubernetesSettingsConfigurable (classloader=PluginClassLoader(plugin=PluginDescriptor(name=Cloud Code, id=com.google.gct.core, descriptorPath=plugin.xml, path=***, version=21.5.1, package=null), packagePrefix=null, instanceId=168, state=active))
at com.intellij.serviceContainer.ComponentManagerImpl.instantiateClass(ComponentManagerImpl.kt:763)
at com.intellij.serviceContainer.ComponentManagerImpl.instantiateClass(ComponentManagerImpl.kt:781)
at com.intellij.openapi.options.ConfigurableEP$ClassProducer.createElement(ConfigurableEP.java:440)
at com.intellij.openapi.options.ConfigurableEP.createConfigurable(ConfigurableEP.java:346)
at com.intellij.openapi.options.ex.ConfigurableWrapper.createConfigurable(ConfigurableWrapper.java:42)
at com.intellij.openapi.options.ex.ConfigurableWrapper.getConfigurable(ConfigurableWrapper.java:116)
at com.intellij.openapi.options.ex.ConfigurableWrapper.cast(ConfigurableWrapper.java:91)
at com.intellij.openapi.options.ex.ConfigurableWrapper.getDisplayName(ConfigurableWrapper.java:137)
at com.intellij.ide.util.gotoByName.GotoActionModel.lambda$new$0(GotoActionModel.java:90)
at com.intellij.openapi.util.NotNullLazyValue$3.compute(NotNullLazyValue.java:80)
at com.intellij.openapi.util.VolatileNotNullLazyValue.getValue(VolatileNotNullLazyValue.java:19)
at com.intellij.ide.util.gotoByName.GotoActionModel.getConfigurablesNames(GotoActionModel.java:379)
at com.intellij.ide.util.gotoByName.GotoActionItemProvider.processOptions(GotoActionItemProvider.java:166)
at com.intellij.ide.util.gotoByName.GotoActionItemProvider.filterElements(GotoActionItemProvider.java:116)
at com.intellij.ide.actions.searcheverywhere.ActionSearchEverywhereContributor.fetchWeightedElements(ActionSearchEverywhereContributor.java:97)
at com.intellij.ide.actions.searcheverywhere.MixedResultsSearcher$ContributorSearchTask.run(MixedResultsSearcher.java:177)
at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:213)
at com.intellij.util.ConcurrencyUtil.lambda$underThreadNameRunnable$3(ConcurrencyUtil.java:201)
at com.intellij.util.RunnableCallable.call(RunnableCallable.java:20)
at com.intellij.util.RunnableCallable.call(RunnableCallable.java:11)
at com.intellij.openapi.application.impl.ApplicationImpl$1.call(ApplicationImpl.java:265)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
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.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:668)
at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:665)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:665)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: java.lang.reflect.InvocationTargetException
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
at com.intellij.serviceContainer.ComponentManagerImpl.instantiateClass(ComponentManagerImpl.kt:722)
... 28 more
Caused by: java.util.ConcurrentModificationException
at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1134)
at ****
at java.desktop/javax.swing.JLabel.setText(JLabel.java)
at com.intellij.ui.components.JBLabel.setText(JBLabel.java:151)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.setCommentText(ComponentPanelBuilder.java:335)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.createCommentComponent(ComponentPanelBuilder.java:303)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.createCommentComponent(ComponentPanelBuilder.java:287)
at com.intellij.openapi.ui.panel.ComponentPanelBuilder.createCommentComponent(ComponentPanelBuilder.java:274)
at com.google.cloud.tools.intellij.kubernetes.settings.KubectlTimeoutPanel.<init>(KubectlTimeoutPanel.kt:53)
at com.google.cloud.tools.intellij.kubernetes.settings.KubernetesSettingsConfigurable.<init>(KubernetesSettingsConfigurable.kt:35)
... 33 more
``` | non_test | concurrentmodificationexception in kubectltimeoutpanel plugin idea com intellij diagnostic pluginexception cannot create class com google cloud tools intellij kubernetes settings kubernetessettingsconfigurable classloader pluginclassloader plugin plugindescriptor name cloud code id com google gct core descriptorpath plugin xml path version package null packageprefix null instanceid state active at com intellij servicecontainer componentmanagerimpl instantiateclass componentmanagerimpl kt at com intellij servicecontainer componentmanagerimpl instantiateclass componentmanagerimpl kt at com intellij openapi options configurableep classproducer createelement configurableep java at com intellij openapi options configurableep createconfigurable configurableep java at com intellij openapi options ex configurablewrapper createconfigurable configurablewrapper java at com intellij openapi options ex configurablewrapper getconfigurable configurablewrapper java at com intellij openapi options ex configurablewrapper cast configurablewrapper java at com intellij openapi options ex configurablewrapper getdisplayname configurablewrapper java at com intellij ide util gotobyname gotoactionmodel lambda new gotoactionmodel java at com intellij openapi util notnulllazyvalue compute notnulllazyvalue java at com intellij openapi util volatilenotnulllazyvalue getvalue volatilenotnulllazyvalue java at com intellij ide util gotobyname gotoactionmodel getconfigurablesnames gotoactionmodel java at com intellij ide util gotobyname gotoactionitemprovider processoptions gotoactionitemprovider java at com intellij ide util gotobyname gotoactionitemprovider filterelements gotoactionitemprovider java at com intellij ide actions searcheverywhere actionsearcheverywherecontributor fetchweightedelements actionsearcheverywherecontributor java at com intellij ide actions searcheverywhere mixedresultssearcher contributorsearchtask run mixedresultssearcher java at com intellij util concurrencyutil rununderthreadname concurrencyutil java at com intellij util concurrencyutil lambda underthreadnamerunnable concurrencyutil java at com intellij util runnablecallable call runnablecallable java at com intellij util runnablecallable call runnablecallable java at com intellij openapi application impl applicationimpl call applicationimpl java at java base java util concurrent futuretask run futuretask 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 util concurrent executors privilegedthreadfactory run executors java at java base java util concurrent executors privilegedthreadfactory run executors java at java base java security accesscontroller doprivileged native method at java base java util concurrent executors privilegedthreadfactory run executors java at java base java lang thread run thread java caused by java lang reflect invocationtargetexception at java base jdk internal reflect nativeconstructoraccessorimpl native method at java base jdk internal reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at java base jdk internal reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java base java lang reflect constructor newinstance constructor java at com intellij servicecontainer componentmanagerimpl instantiateclass componentmanagerimpl kt more caused by java util concurrentmodificationexception at java base java util hashmap computeifabsent hashmap java at at java desktop javax swing jlabel settext jlabel java at com intellij ui components jblabel settext jblabel java at com intellij openapi ui panel componentpanelbuilder setcommenttext componentpanelbuilder java at com intellij openapi ui panel componentpanelbuilder createcommentcomponent componentpanelbuilder java at com intellij openapi ui panel componentpanelbuilder createcommentcomponent componentpanelbuilder java at com intellij openapi ui panel componentpanelbuilder createcommentcomponent componentpanelbuilder java at com google cloud tools intellij kubernetes settings kubectltimeoutpanel kubectltimeoutpanel kt at com google cloud tools intellij kubernetes settings kubernetessettingsconfigurable kubernetessettingsconfigurable kt more | 0 |
77,215 | 21,700,408,738 | IssuesEvent | 2022-05-10 02:58:44 | ClickHouse/ClickHouse | https://api.github.com/repos/ClickHouse/ClickHouse | closed | Power build is throwing libcxx error and binaries from ci pipeline also throws the error. | build | Hello there,
As part of a system porting requirement we need to port **clickhouse** along with some other datasources to **PPC64LE**.
We were port clickhouse for a long time now as we ran into several issues, it got delayed. We are now stuck in a problem where we are able to build it from source but not able to run it.
We are using **master** branch.
compiler **CLANG-LLVM-13**
**Operating system**
> PPC64le ubuntu focal
inside docker container with base image ubuntu:focal itself
**Dockerfile**
> FROM ubuntu:focal
> ARG DEBIAN_FRONTEND=noninteractive
> RUN apt update
> RUN apt install -y git cmake ninja-build python
> RUN git clone --recursive https://github.com/ClickHouse/ClickHouse.git
> RUN apt update -y && apt install -y build-essential gcc wget xz-utils
> RUN wget https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.1/clang+llvm-13.0.1-powerpc64le-linux-ubuntu-18.04.5.tar.xz
> RUN tar -xf clang+llvm-13.0.1-powerpc64le-linux-ubuntu-18.04.5.tar.xz
> RUN mv clang+llvm-13.0.1-powerpc64le-linux-ubuntu-18.04.5 clang-13-ppc64le && \
> cd clang-13-ppc64le && \
> cp -R * /usr/local/
> RUN apt install -y libncurses5
> RUN clang --version
> RUN export CMAKE_PREFIX_PATH=/clang-13-ppc64le/bin/
>
> WORKDIR ClickHouse
>
> RUN apt install -y ninja-build
>
> RUN mkdir build-ppc64le
> RUN CC=/clang-13-ppc64le/bin/clang \
> CXX=/clang-13-ppc64le/bin/clang++ \
> cmake . -Bbuild-ppc64le \
> -DCMAKE_TOOLCHAIN_FILE=cmake/linux/toolchain-ppc64le.cmake \
> -DCMAKE_C_COMPILER=/clang-13-ppc64le/bin/clang \
> -DCMAKE_CXX_COMPILER=/clang-13-ppc64le/bin/clang++ && \
> ninja -C build-ppc64le
>
> RUN cd build-ppc64le && \
> echo ' set(CMAKE_INSTALL_PREFIX "/usr") ' | cat - cmake_install.cmake > temp && mv temp cmake_install.cmake && \
> cat cmake_install.cmake && \
> cmake -P \
> cmake_install.cmake -DCMAKE_INSTALL_PREFIX=/usr
>
>
> CMD clickhouse start
### Error ###
The image is built successfully but when doing docker run ie.
When trying to run **clickhouse start**, throwing an
> Illegal instruction (core dumped)
while debugging with **gdb** got the following trace.
> Program received signal SIGILL, Illegal instruction.
0x00000000275a71b8 in _GLOBAL__sub_I_db_impl_open.cc () at ../contrib/libcxx/include/vector:650
650 ../contrib/libcxx/include/vector: No such file or directory.
tried to copy **libxx** files (from clang libcxx using _cp -R /clang-13-ppc64le/include/c++/v1/* ClickHouse/contrib/libcxx_) to **contrib/include** but nothing worked.
#### We tried dowloading [binaries (from S3) ](https://s3.amazonaws.com/clickhouse-builds/22.4/71fb04ea4ad17432baba7934a10217f5f6a1bde3/binary_ppc64le/clickhouse)built on [CI Pipeline](https://github.com/ClickHouse/ClickHouse/runs/5654128277?check_suite_focus=true) and running it threw the same error.
### Any help will be much helpful and appreciated.
_ Thank you _
| 1.0 | Power build is throwing libcxx error and binaries from ci pipeline also throws the error. - Hello there,
As part of a system porting requirement we need to port **clickhouse** along with some other datasources to **PPC64LE**.
We were port clickhouse for a long time now as we ran into several issues, it got delayed. We are now stuck in a problem where we are able to build it from source but not able to run it.
We are using **master** branch.
compiler **CLANG-LLVM-13**
**Operating system**
> PPC64le ubuntu focal
inside docker container with base image ubuntu:focal itself
**Dockerfile**
> FROM ubuntu:focal
> ARG DEBIAN_FRONTEND=noninteractive
> RUN apt update
> RUN apt install -y git cmake ninja-build python
> RUN git clone --recursive https://github.com/ClickHouse/ClickHouse.git
> RUN apt update -y && apt install -y build-essential gcc wget xz-utils
> RUN wget https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.1/clang+llvm-13.0.1-powerpc64le-linux-ubuntu-18.04.5.tar.xz
> RUN tar -xf clang+llvm-13.0.1-powerpc64le-linux-ubuntu-18.04.5.tar.xz
> RUN mv clang+llvm-13.0.1-powerpc64le-linux-ubuntu-18.04.5 clang-13-ppc64le && \
> cd clang-13-ppc64le && \
> cp -R * /usr/local/
> RUN apt install -y libncurses5
> RUN clang --version
> RUN export CMAKE_PREFIX_PATH=/clang-13-ppc64le/bin/
>
> WORKDIR ClickHouse
>
> RUN apt install -y ninja-build
>
> RUN mkdir build-ppc64le
> RUN CC=/clang-13-ppc64le/bin/clang \
> CXX=/clang-13-ppc64le/bin/clang++ \
> cmake . -Bbuild-ppc64le \
> -DCMAKE_TOOLCHAIN_FILE=cmake/linux/toolchain-ppc64le.cmake \
> -DCMAKE_C_COMPILER=/clang-13-ppc64le/bin/clang \
> -DCMAKE_CXX_COMPILER=/clang-13-ppc64le/bin/clang++ && \
> ninja -C build-ppc64le
>
> RUN cd build-ppc64le && \
> echo ' set(CMAKE_INSTALL_PREFIX "/usr") ' | cat - cmake_install.cmake > temp && mv temp cmake_install.cmake && \
> cat cmake_install.cmake && \
> cmake -P \
> cmake_install.cmake -DCMAKE_INSTALL_PREFIX=/usr
>
>
> CMD clickhouse start
### Error ###
The image is built successfully but when doing docker run ie.
When trying to run **clickhouse start**, throwing an
> Illegal instruction (core dumped)
while debugging with **gdb** got the following trace.
> Program received signal SIGILL, Illegal instruction.
0x00000000275a71b8 in _GLOBAL__sub_I_db_impl_open.cc () at ../contrib/libcxx/include/vector:650
650 ../contrib/libcxx/include/vector: No such file or directory.
tried to copy **libxx** files (from clang libcxx using _cp -R /clang-13-ppc64le/include/c++/v1/* ClickHouse/contrib/libcxx_) to **contrib/include** but nothing worked.
#### We tried dowloading [binaries (from S3) ](https://s3.amazonaws.com/clickhouse-builds/22.4/71fb04ea4ad17432baba7934a10217f5f6a1bde3/binary_ppc64le/clickhouse)built on [CI Pipeline](https://github.com/ClickHouse/ClickHouse/runs/5654128277?check_suite_focus=true) and running it threw the same error.
### Any help will be much helpful and appreciated.
_ Thank you _
| non_test | power build is throwing libcxx error and binaries from ci pipeline also throws the error hello there as part of a system porting requirement we need to port clickhouse along with some other datasources to we were port clickhouse for a long time now as we ran into several issues it got delayed we are now stuck in a problem where we are able to build it from source but not able to run it we are using master branch compiler clang llvm operating system ubuntu focal inside docker container with base image ubuntu focal itself dockerfile from ubuntu focal arg debian frontend noninteractive run apt update run apt install y git cmake ninja build python run git clone recursive run apt update y apt install y build essential gcc wget xz utils run wget run tar xf clang llvm linux ubuntu tar xz run mv clang llvm linux ubuntu clang cd clang cp r usr local run apt install y run clang version run export cmake prefix path clang bin workdir clickhouse run apt install y ninja build run mkdir build run cc clang bin clang cxx clang bin clang cmake bbuild dcmake toolchain file cmake linux toolchain cmake dcmake c compiler clang bin clang dcmake cxx compiler clang bin clang ninja c build run cd build echo set cmake install prefix usr cat cmake install cmake temp mv temp cmake install cmake cat cmake install cmake cmake p cmake install cmake dcmake install prefix usr cmd clickhouse start error the image is built successfully but when doing docker run ie when trying to run clickhouse start throwing an illegal instruction core dumped while debugging with gdb got the following trace program received signal sigill illegal instruction in global sub i db impl open cc at contrib libcxx include vector contrib libcxx include vector no such file or directory tried to copy libxx files from clang libcxx using cp r clang include c clickhouse contrib libcxx to contrib include but nothing worked we tried dowloading on and running it threw the same error any help will be much helpful and appreciated thank you | 0 |
826,291 | 31,563,938,640 | IssuesEvent | 2023-09-03 15:33:12 | NikkelM/Outlook-Mail-Notes | https://api.github.com/repos/NikkelM/Outlook-Mail-Notes | closed | Export notes to CSV | UI feature Priority: Normal | It would be best if users could decide to export all notes, or just those specific to the current mail, conversation or sender. | 1.0 | Export notes to CSV - It would be best if users could decide to export all notes, or just those specific to the current mail, conversation or sender. | non_test | export notes to csv it would be best if users could decide to export all notes or just those specific to the current mail conversation or sender | 0 |
33,370 | 4,827,218,109 | IssuesEvent | 2016-11-07 12:54:23 | apinf/platform | https://api.github.com/repos/apinf/platform | closed | Verify issues with bug label | testing | Go through open issues with the label [bug](https://github.com/apinf/platform/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and that are either in icebox or in backlog. Start from the oldest open bug reports, which most likely to be closed and non-reproducable.
Definition of done
- [x] Verify each reported bug in nightly.apinf.io
- [x] If you don't know how to reproduce the bug, ask for more information from original reporter.
- [x] Make a comment about the result of the verification in issue comments.
- [x] ping @bajiat in the comment | 1.0 | Verify issues with bug label - Go through open issues with the label [bug](https://github.com/apinf/platform/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and that are either in icebox or in backlog. Start from the oldest open bug reports, which most likely to be closed and non-reproducable.
Definition of done
- [x] Verify each reported bug in nightly.apinf.io
- [x] If you don't know how to reproduce the bug, ask for more information from original reporter.
- [x] Make a comment about the result of the verification in issue comments.
- [x] ping @bajiat in the comment | test | verify issues with bug label go through open issues with the label and that are either in icebox or in backlog start from the oldest open bug reports which most likely to be closed and non reproducable definition of done verify each reported bug in nightly apinf io if you don t know how to reproduce the bug ask for more information from original reporter make a comment about the result of the verification in issue comments ping bajiat in the comment | 1 |
18,132 | 3,670,031,597 | IssuesEvent | 2016-02-21 16:25:09 | The-Compiler/qutebrowser | https://api.github.com/repos/The-Compiler/qutebrowser | closed | geolocation issues with test_prompt.py | component: tests priority: 0 - high | I have some issues with `test_prompts.py` locally (but only sometimes), which seems to run fine on the CI.
```
tests/integration/features/test_prompts.py ...............F
________________________________________________________________________________________________ test_geolocation_with_ask__false _________________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_geolocation_with_ask__false'>>
> ???
tests/integration/features/test_prompts.py:101:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py F
________________________________________________________________________________________________ test_geolocation_with_ask__abort _________________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_geolocation_with_ask__abort'>>
> ???
tests/integration/features/test_prompts.py:105:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py F
_______________________________________________________________________________________________ test_always_rejecting_notifications _______________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_always_rejecting_notifications'>>
> ???
tests/integration/features/test_prompts.py:109:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py F
_______________________________________________________________________________________________ test_always_accepting_notifications _______________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_always_accepting_notifications'>>
> ???
tests/integration/features/test_prompts.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py .E
_____________________________________________________________________________________ ERROR at teardown of test_notifications_with_ask__false _____________________________________________________________________________________
quteproc_process = <quteprocess.QuteProc object at 0x7f4d210d5828>, httpbin = <webserver.WebserverProcess object at 0x7f4d210d5678>, request = <SubRequest 'quteproc' for <Function 'test_notifications_with_ask__false'>>
@pytest.yield_fixture
def quteproc(quteproc_process, httpbin, request):
"""Per-test qutebrowser fixture which uses the per-file process."""
request.node._quteproc_log = quteproc_process.captured_log
quteproc_process.before_test()
yield quteproc_process
> quteproc_process.after_test(did_fail=request.node.rep_call.failed)
E Failed: Logged unexpected errors:
E
E LogLine('06:17:28 ERROR qt Unknown module:none:0 Geoclue error: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.')
tests/integration/quteprocess.py:412: Failed
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
[...]
06:17:28 DEBUG commands command:run:490 command called: prompt-no
06:17:28 DEBUG commands command:run:504 Calling qutebrowser.mainwindow.statusbar.prompter.Prompter.prompt_no(<qutebrowser.mainwindow.statusbar.prompter.Prompter busy=True loops=0 question=<qutebrowser.utils.usertypes.Question default=None mode=<PromptMode.yesno: 1> text='Allow the website at localhost to sh…)
[...]
06:17:28 DEBUG js webpage:javaScriptConsoleMessage:532 [http://localhost:45194/data/prompt/notifications.html:12] notification permission denied
[...]
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
{"path": "/data/prompt/notifications.html", "verb": "GET", "status": 200}
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"content\\" \\"notifications\\" \\"ask\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":open -t http://localhost:45194/data/prompt/notifications.html"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":hint"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":follow-hint a"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":prompt-no"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
```
The first three failures don't have any qutebrowser output... does qutebrowser hang with that Geoclue error for some seconds?
| 1.0 | geolocation issues with test_prompt.py - I have some issues with `test_prompts.py` locally (but only sometimes), which seems to run fine on the CI.
```
tests/integration/features/test_prompts.py ...............F
________________________________________________________________________________________________ test_geolocation_with_ask__false _________________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_geolocation_with_ask__false'>>
> ???
tests/integration/features/test_prompts.py:101:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py F
________________________________________________________________________________________________ test_geolocation_with_ask__abort _________________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_geolocation_with_ask__abort'>>
> ???
tests/integration/features/test_prompts.py:105:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py F
_______________________________________________________________________________________________ test_always_rejecting_notifications _______________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_always_rejecting_notifications'>>
> ???
tests/integration/features/test_prompts.py:109:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py F
_______________________________________________________________________________________________ test_always_accepting_notifications _______________________________________________________________________________________________
request = <FixtureRequest for <Function 'test_always_accepting_notifications'>>
> ???
tests/integration/features/test_prompts.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[...]
tests/integration/features/conftest.py:47: in set_setting_given
quteproc.set_setting(sect, opt, value)
tests/integration/quteprocess.py:311: in set_setting
self.send_cmd(':set "{}" "{}" "{}"'.format(sect, opt, value))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <quteprocess.QuteProc object at 0x7f4d210d5828>, command = ':set "general" "log-javascript-console" "debug"', count = None
def send_cmd(self, command, count=None):
[...]
self.wait_for(category='commands', module='command', function='run',
> message='command called: *')
E testprocess.WaitForTimeout: Timed out after 5000ms waiting for {'message': 'command called: *', 'module': 'command', 'category': 'commands', 'function': 'run'}.
tests/integration/quteprocess.py:301: WaitForTimeout
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
tests/integration/features/test_prompts.py .E
_____________________________________________________________________________________ ERROR at teardown of test_notifications_with_ask__false _____________________________________________________________________________________
quteproc_process = <quteprocess.QuteProc object at 0x7f4d210d5828>, httpbin = <webserver.WebserverProcess object at 0x7f4d210d5678>, request = <SubRequest 'quteproc' for <Function 'test_notifications_with_ask__false'>>
@pytest.yield_fixture
def quteproc(quteproc_process, httpbin, request):
"""Per-test qutebrowser fixture which uses the per-file process."""
request.node._quteproc_log = quteproc_process.captured_log
quteproc_process.before_test()
yield quteproc_process
> quteproc_process.after_test(did_fail=request.node.rep_call.failed)
E Failed: Logged unexpected errors:
E
E LogLine('06:17:28 ERROR qt Unknown module:none:0 Geoclue error: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.')
tests/integration/quteprocess.py:412: Failed
------------------------------------------------------------------------------------------------------- qutebrowser output --------------------------------------------------------------------------------------------------------
[...]
06:17:28 DEBUG commands command:run:490 command called: prompt-no
06:17:28 DEBUG commands command:run:504 Calling qutebrowser.mainwindow.statusbar.prompter.Prompter.prompt_no(<qutebrowser.mainwindow.statusbar.prompter.Prompter busy=True loops=0 question=<qutebrowser.utils.usertypes.Question default=None mode=<PromptMode.yesno: 1> text='Allow the website at localhost to sh…)
[...]
06:17:28 DEBUG js webpage:javaScriptConsoleMessage:532 [http://localhost:45194/data/prompt/notifications.html:12] notification permission denied
[...]
--------------------------------------------------------------------------------------------------------- httpbin output ----------------------------------------------------------------------------------------------------------
{"path": "/data/prompt/notifications.html", "verb": "GET", "status": 200}
-------------------------------------------------------------------------------------------------------- Captured log call --------------------------------------------------------------------------------------------------------
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"general\\" \\"log-javascript-console\\" \\"debug\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":set \\"content\\" \\"notifications\\" \\"ask\\""], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":open -t http://localhost:45194/data/prompt/notifications.html"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":hint"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":follow-hint a"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
ipc.py 454 DEBUG Connecting to /run/user/1000/qutebrowser/ipc-ed0b977fa9a8d9d131b91fcb6476382d
ipc.py 459 INFO Opening in existing instance
ipc.py 471 DEBUG Writing: b'{"args": [":prompt-no"], "protocol_version": 1, "cwd": "/home/florian/proj/qutebrowser/git", "version": "0.5.1", "target_arg": ""}\n'
```
The first three failures don't have any qutebrowser output... does qutebrowser hang with that Geoclue error for some seconds?
| test | geolocation issues with test prompt py i have some issues with test prompts py locally but only sometimes which seems to run fine on the ci tests integration features test prompts py f test geolocation with ask false request tests integration features test prompts py tests integration features conftest py in set setting given quteproc set setting sect opt value tests integration quteprocess py in set setting self send cmd set format sect opt value self command set general log javascript console debug count none def send cmd self command count none self wait for category commands module command function run message command called e testprocess waitfortimeout timed out after waiting for message command called module command category commands function run tests integration quteprocess py waitfortimeout qutebrowser output httpbin output captured log call ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n tests integration features test prompts py f test geolocation with ask abort request tests integration features test prompts py tests integration features conftest py in set setting given quteproc set setting sect opt value tests integration quteprocess py in set setting self send cmd set format sect opt value self command set general log javascript console debug count none def send cmd self command count none self wait for category commands module command function run message command called e testprocess waitfortimeout timed out after waiting for message command called module command category commands function run tests integration quteprocess py waitfortimeout qutebrowser output httpbin output captured log call ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n tests integration features test prompts py f test always rejecting notifications request tests integration features test prompts py tests integration features conftest py in set setting given quteproc set setting sect opt value tests integration quteprocess py in set setting self send cmd set format sect opt value self command set general log javascript console debug count none def send cmd self command count none self wait for category commands module command function run message command called e testprocess waitfortimeout timed out after waiting for message command called module command category commands function run tests integration quteprocess py waitfortimeout qutebrowser output httpbin output captured log call ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n tests integration features test prompts py f test always accepting notifications request tests integration features test prompts py tests integration features conftest py in set setting given quteproc set setting sect opt value tests integration quteprocess py in set setting self send cmd set format sect opt value self command set general log javascript console debug count none def send cmd self command count none self wait for category commands module command function run message command called e testprocess waitfortimeout timed out after waiting for message command called module command category commands function run tests integration quteprocess py waitfortimeout qutebrowser output httpbin output captured log call ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n tests integration features test prompts py e error at teardown of test notifications with ask false quteproc process httpbin request pytest yield fixture def quteproc quteproc process httpbin request per test qutebrowser fixture which uses the per file process request node quteproc log quteproc process captured log quteproc process before test yield quteproc process quteproc process after test did fail request node rep call failed e failed logged unexpected errors e e logline error qt unknown module none geoclue error did not receive a reply possible causes include the remote application did not send a reply the message bus security policy blocked the reply the reply timeout expired or the network connection was broken tests integration quteprocess py failed qutebrowser output debug commands command run command called prompt no debug commands command run calling qutebrowser mainwindow statusbar prompter prompter prompt no text allow the website at localhost to sh… debug js webpage javascriptconsolemessage notification permission denied httpbin output path data prompt notifications html verb get status captured log call ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n ipc py debug connecting to run user qutebrowser ipc ipc py info opening in existing instance ipc py debug writing b args protocol version cwd home florian proj qutebrowser git version target arg n the first three failures don t have any qutebrowser output does qutebrowser hang with that geoclue error for some seconds | 1 |
17,467 | 9,785,430,219 | IssuesEvent | 2019-06-09 07:05:47 | LMMS/lmms | https://api.github.com/repos/LMMS/lmms | closed | Change handling of base64 encoding/decoding | core enhancement performance | # Intro
Currently, we use our `base64` module, which is a wrapper around `QByteArray::fromBase64` and `QByteArray::toBase64`. This method is very inefficient and could really slow saving / loading of large objects. Since we also use it for undo/redo, it is a very important it'll be as efficient as possible.
# What's wrong with the current method
## Encoding
```
inline void encode( const char * _data, const int _size,
QString & _dst )
{
_dst = QByteArray( _data, _size ).toBase64();
}
```
In order to encode data, we'll have to convert it to a QByteArray, convert it into a base64 string, and then copy the string to the `_dst` argument.
## Decoding
```
template<class T>
inline void decode( const QString & _b64, T * * _data, int * _size )
{
QByteArray data = QByteArray::fromBase64( _b64.toUtf8() );
*_size = data.size();
*_data = new T[*_size / sizeof(T)];
memcpy( *_data, data.constData(), *_size );
}
```
Decode the string to a bytearray, and copy the result to the `_data` argument.
# Solution
There are a lot of existing implementations of base64 so there is no need to use QByteArray. And therefore, we could eliminate this huge overhead.
| True | Change handling of base64 encoding/decoding - # Intro
Currently, we use our `base64` module, which is a wrapper around `QByteArray::fromBase64` and `QByteArray::toBase64`. This method is very inefficient and could really slow saving / loading of large objects. Since we also use it for undo/redo, it is a very important it'll be as efficient as possible.
# What's wrong with the current method
## Encoding
```
inline void encode( const char * _data, const int _size,
QString & _dst )
{
_dst = QByteArray( _data, _size ).toBase64();
}
```
In order to encode data, we'll have to convert it to a QByteArray, convert it into a base64 string, and then copy the string to the `_dst` argument.
## Decoding
```
template<class T>
inline void decode( const QString & _b64, T * * _data, int * _size )
{
QByteArray data = QByteArray::fromBase64( _b64.toUtf8() );
*_size = data.size();
*_data = new T[*_size / sizeof(T)];
memcpy( *_data, data.constData(), *_size );
}
```
Decode the string to a bytearray, and copy the result to the `_data` argument.
# Solution
There are a lot of existing implementations of base64 so there is no need to use QByteArray. And therefore, we could eliminate this huge overhead.
| non_test | change handling of encoding decoding intro currently we use our module which is a wrapper around qbytearray and qbytearray this method is very inefficient and could really slow saving loading of large objects since we also use it for undo redo it is a very important it ll be as efficient as possible what s wrong with the current method encoding inline void encode const char data const int size qstring dst dst qbytearray data size in order to encode data we ll have to convert it to a qbytearray convert it into a string and then copy the string to the dst argument decoding template inline void decode const qstring t data int size qbytearray data qbytearray size data size data new t memcpy data data constdata size decode the string to a bytearray and copy the result to the data argument solution there are a lot of existing implementations of so there is no need to use qbytearray and therefore we could eliminate this huge overhead | 0 |
278,401 | 30,702,307,981 | IssuesEvent | 2023-07-27 01:19:16 | AlexRogalskiy/javascript-patterns | https://api.github.com/repos/AlexRogalskiy/javascript-patterns | closed | CVE-2019-10744 (Critical) detected in lodash-2.4.2.tgz - autoclosed | Mend: dependency security vulnerability | ## CVE-2019-10744 - Critical Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-2.4.2.tgz</b></p></summary>
<p>A utility library delivering consistency, customization, performance, & extras.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz">https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz</a></p>
<p>
Dependency Hierarchy:
- dockerfile_lint-0.3.4.tgz (Root Library)
- :x: **lodash-2.4.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/AlexRogalskiy/javascript-patterns/commit/47aa89ce804fd2b85cc9925fb7fcc36f8cf971fb">47aa89ce804fd2b85cc9925fb7fcc36f8cf971fb</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
Versions of lodash lower than 4.17.12 are vulnerable to Prototype Pollution. The function defaultsDeep could be tricked into adding or modifying properties of Object.prototype using a constructor payload.
<p>Publish Date: 2019-07-26
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-10744>CVE-2019-10744</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.1</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: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-jf85-cpcp-j695">https://github.com/advisories/GHSA-jf85-cpcp-j695</a></p>
<p>Release Date: 2019-07-26</p>
<p>Fix Resolution: lodash-4.17.12, lodash-amd-4.17.12, lodash-es-4.17.12, lodash.defaultsdeep-4.6.1, lodash.merge- 4.6.2, lodash.mergewith-4.6.2, lodash.template-4.5.0</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-2019-10744 (Critical) detected in lodash-2.4.2.tgz - autoclosed - ## CVE-2019-10744 - Critical Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-2.4.2.tgz</b></p></summary>
<p>A utility library delivering consistency, customization, performance, & extras.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz">https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz</a></p>
<p>
Dependency Hierarchy:
- dockerfile_lint-0.3.4.tgz (Root Library)
- :x: **lodash-2.4.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/AlexRogalskiy/javascript-patterns/commit/47aa89ce804fd2b85cc9925fb7fcc36f8cf971fb">47aa89ce804fd2b85cc9925fb7fcc36f8cf971fb</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
Versions of lodash lower than 4.17.12 are vulnerable to Prototype Pollution. The function defaultsDeep could be tricked into adding or modifying properties of Object.prototype using a constructor payload.
<p>Publish Date: 2019-07-26
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-10744>CVE-2019-10744</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.1</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: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-jf85-cpcp-j695">https://github.com/advisories/GHSA-jf85-cpcp-j695</a></p>
<p>Release Date: 2019-07-26</p>
<p>Fix Resolution: lodash-4.17.12, lodash-amd-4.17.12, lodash-es-4.17.12, lodash.defaultsdeep-4.6.1, lodash.merge- 4.6.2, lodash.mergewith-4.6.2, lodash.template-4.5.0</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 critical detected in lodash tgz autoclosed cve critical severity vulnerability vulnerable library lodash tgz a utility library delivering consistency customization performance extras library home page a href dependency hierarchy dockerfile lint tgz root library x lodash tgz vulnerable library found in head commit a href found in base branch master vulnerability details versions of lodash lower than are vulnerable to prototype pollution the function defaultsdeep could be tricked into adding or modifying properties of object prototype using a constructor payload 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 high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution lodash lodash amd lodash es lodash defaultsdeep lodash merge lodash mergewith lodash template step up your open source security game with mend | 0 |
62,032 | 6,774,007,864 | IssuesEvent | 2017-10-27 08:45:29 | locdb/locdb-frend | https://api.github.com/repos/locdb/locdb-frend | closed | Bug uploading monographs | testing | After choosing a monograph PDF file (filename just the ppn) in the file upload component, I can't upload the file, because there is a pop up window that says the file is not ready. If I fill in the page numbers (which are not needed for monographs) the file changes to ready, but after clicking upload I just see a lot of mysterious hieroglyphics:
> [ { "ppn": "493223657", "firstpage": 127, "lastpage": 128, "file": {}, "filecontent": "%PDF-1.5\n%§ãññ\n2 0 obj\n<<\n/Type /Catalog\n/Version /1#2E5\n/Pages 4 0 R\n/PieceInfo 5 0 R\n>>\nendobj\n14 0 obj\n<<\n/Filter /FlateDecode\n/Length 34\n>>\nstream\r\nx+ä210W0\u0000B3SS0Ë¥ïk àÏ\u0015È\u0005\u0000b¶\u0006^\r\nendstream\nendobj\n16 0 obj\n<<\n/Filter /FlateDecode\n/Length 34\n>>\nstream\r\nx+ä214S0\u0000B3\u0013S0Ë¥ïk àÏ\u0015È\u0005\u0000b£\u0006]\r\nendstream\nendobj\n18 0 obj\n<<\n/Filter /FlateDecode\n/Length 34\n>>\nstream\r\nx+ä21°P0\u0000B3\u0013S0Ë¥ïk àÏ\u0015È\u0005\u0000b½\u0006^\r\nendstream\nendobj\n20 0 obj\n<<\n/Filter
And so on | 1.0 | Bug uploading monographs - After choosing a monograph PDF file (filename just the ppn) in the file upload component, I can't upload the file, because there is a pop up window that says the file is not ready. If I fill in the page numbers (which are not needed for monographs) the file changes to ready, but after clicking upload I just see a lot of mysterious hieroglyphics:
> [ { "ppn": "493223657", "firstpage": 127, "lastpage": 128, "file": {}, "filecontent": "%PDF-1.5\n%§ãññ\n2 0 obj\n<<\n/Type /Catalog\n/Version /1#2E5\n/Pages 4 0 R\n/PieceInfo 5 0 R\n>>\nendobj\n14 0 obj\n<<\n/Filter /FlateDecode\n/Length 34\n>>\nstream\r\nx+ä210W0\u0000B3SS0Ë¥ïk àÏ\u0015È\u0005\u0000b¶\u0006^\r\nendstream\nendobj\n16 0 obj\n<<\n/Filter /FlateDecode\n/Length 34\n>>\nstream\r\nx+ä214S0\u0000B3\u0013S0Ë¥ïk àÏ\u0015È\u0005\u0000b£\u0006]\r\nendstream\nendobj\n18 0 obj\n<<\n/Filter /FlateDecode\n/Length 34\n>>\nstream\r\nx+ä21°P0\u0000B3\u0013S0Ë¥ïk àÏ\u0015È\u0005\u0000b½\u0006^\r\nendstream\nendobj\n20 0 obj\n<<\n/Filter
And so on | test | bug uploading monographs after choosing a monograph pdf file filename just the ppn in the file upload component i can t upload the file because there is a pop up window that says the file is not ready if i fill in the page numbers which are not needed for monographs the file changes to ready but after clicking upload i just see a lot of mysterious hieroglyphics r nendstream nendobj obj n nstream r nx ° ë¥ïk àï r nendstream nendobj obj n n filter and so on | 1 |
657,421 | 21,793,687,782 | IssuesEvent | 2022-05-15 09:52:11 | bounswe/bounswe2022group1 | https://api.github.com/repos/bounswe/bounswe2022group1 | closed | Softwate Design: Class Diagram - Reviewing and completing deficiencies | Priority: Medium Type: Task Status: Completed | **Issue Description**
There are still missing places in the class diagram and these places will be reviewed and corrected.
**Step Details**
1. Doing research on the class diagram and identifying the missing places in the class diagram we have created.
2. Adding the missing places.
3. Editing all incorrect diagrams
**Deadline of the Issue**
14.04.2022 05.00 | 1.0 | Softwate Design: Class Diagram - Reviewing and completing deficiencies - **Issue Description**
There are still missing places in the class diagram and these places will be reviewed and corrected.
**Step Details**
1. Doing research on the class diagram and identifying the missing places in the class diagram we have created.
2. Adding the missing places.
3. Editing all incorrect diagrams
**Deadline of the Issue**
14.04.2022 05.00 | non_test | softwate design class diagram reviewing and completing deficiencies issue description there are still missing places in the class diagram and these places will be reviewed and corrected step details doing research on the class diagram and identifying the missing places in the class diagram we have created adding the missing places editing all incorrect diagrams deadline of the issue | 0 |
223,611 | 17,612,059,746 | IssuesEvent | 2021-08-18 03:38:46 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | [test][kernel][lpcxpresso55s69_ns] kernel cases meet ESF could not be retrieved successfully | bug priority: low platform: NXP area: Tests | **Describe the bug**
kernel test case: kernel.memory_protection.gap_filling reports
ESF could not be retrieved successfully
**To Reproduce**
Steps to reproduce the behavior:
1. mkdir build; cd build
2. cmake -DBOARD=lpxxpresso55s69_ns -D
3. make flash
**Expected behavior**
ALL test pass
**Impact**
non-security core may have problem
**Screenshots or console output**
```
*** Booting Zephyr OS version 2.3.0-rc1 ***
Running test suite memory_protection_test_suite
===================================================================
starting test - test_permission_inheritance
PASS - test_permission_inheritance
===================================================================
starting test - test_mem_domain_valid_access
PASS - test_mem_domain_valid_access
===================================================================
starting test - test_mem_domain_invalid_access
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:945
ESF could not be retrieved successfully. Shall never occur.
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core
```
**Environment (please complete the following information):**
- OS: (Linux)
- Toolchain ( Zephyr SDK)
- v2.3.0-rc1
**Additional context**
many other kernel test report same error:
kernel.memory_protection.syscalls
kernel.memory_protection.userspace
kernel.memory_protection.userspace.gap_filling
kernel.common.stack_protection_arm_fpu_sharing
kernel.common.stack_protection_armv8m_mpu_stack_guard
kernel.common.stack_protection_no_userspace
| 1.0 | [test][kernel][lpcxpresso55s69_ns] kernel cases meet ESF could not be retrieved successfully - **Describe the bug**
kernel test case: kernel.memory_protection.gap_filling reports
ESF could not be retrieved successfully
**To Reproduce**
Steps to reproduce the behavior:
1. mkdir build; cd build
2. cmake -DBOARD=lpxxpresso55s69_ns -D
3. make flash
**Expected behavior**
ALL test pass
**Impact**
non-security core may have problem
**Screenshots or console output**
```
*** Booting Zephyr OS version 2.3.0-rc1 ***
Running test suite memory_protection_test_suite
===================================================================
starting test - test_permission_inheritance
PASS - test_permission_inheritance
===================================================================
starting test - test_mem_domain_valid_access
PASS - test_mem_domain_valid_access
===================================================================
starting test - test_mem_domain_invalid_access
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:945
ESF could not be retrieved successfully. Shall never occur.
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core
```
**Environment (please complete the following information):**
- OS: (Linux)
- Toolchain ( Zephyr SDK)
- v2.3.0-rc1
**Additional context**
many other kernel test report same error:
kernel.memory_protection.syscalls
kernel.memory_protection.userspace
kernel.memory_protection.userspace.gap_filling
kernel.common.stack_protection_arm_fpu_sharing
kernel.common.stack_protection_armv8m_mpu_stack_guard
kernel.common.stack_protection_no_userspace
| test | kernel cases meet esf could not be retrieved successfully describe the bug kernel test case kernel memory protection gap filling reports esf could not be retrieved successfully to reproduce steps to reproduce the behavior mkdir build cd build cmake dboard ns d make flash expected behavior all test pass impact non security core may have problem screenshots or console output booting zephyr os version running test suite memory protection test suite starting test test permission inheritance pass test permission inheritance starting test test mem domain valid access pass test mem domain valid access starting test test mem domain invalid access assertion fail west topdir zephyr arch arm core cortex m fault c esf could not be retrieved successfully shall never occur assertion fail west topdir zephyr arch arm core environment please complete the following information os linux toolchain zephyr sdk additional context many other kernel test report same error kernel memory protection syscalls kernel memory protection userspace kernel memory protection userspace gap filling kernel common stack protection arm fpu sharing kernel common stack protection mpu stack guard kernel common stack protection no userspace | 1 |
303,598 | 26,218,076,295 | IssuesEvent | 2023-01-04 12:43:31 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | roachtest: follower-reads/survival=region/locality=regional/reads=exact-staleness failed | C-test-failure O-robot X-duplicate O-roachtest release-blocker T-kv branch-release-22.2 | roachtest.follower-reads/survival=region/locality=regional/reads=exact-staleness [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8147282?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8147282?buildTab=artifacts#/follower-reads/survival=region/locality=regional/reads=exact-staleness) on release-22.2 @ [07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1](https://github.com/cockroachdb/cockroach/commits/07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1):
```
test artifacts and logs in: /artifacts/follower-reads/survival=region/locality=regional/reads=exact-staleness/run_1
(test_impl.go:309).Errorf:
Error Trace: /go/src/github.com/cockroachdb/cockroach/follower_reads.go:445
/go/src/github.com/cockroachdb/cockroach/follower_reads.go:73
/go/src/github.com/cockroachdb/cockroach/test_runner.go:923
/go/src/github.com/cockroachdb/cockroach/asm_amd64.s:1594
Error: Received unexpected error:
pq: Use of multi-region features requires an enterprise license. Your evaluation license expired on December 30, 2022. If you're interested in getting a new license, please contact subscriptions@cockroachlabs.com and we can help you out.
Test: follower-reads/survival=region/locality=regional/reads=exact-staleness
(test_impl.go:298).FailNow: FailNow called
```
<p>Parameters: <code>ROACHTEST_cloud=gce</code>
, <code>ROACHTEST_cpu=4</code>
, <code>ROACHTEST_encrypted=false</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>
- #94511 roachtest: follower-reads/survival=region/locality=regional/reads=exact-staleness failed [C-test-failure O-roachtest O-robot T-kv branch-release-22.1 release-blocker]
- #94368 roachtest: follower-reads/survival=region/locality=regional/reads=exact-staleness failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker]
</p>
</details>
/cc @cockroachdb/kv-triage
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*follower-reads/survival=region/locality=regional/reads=exact-staleness.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-22966 | 2.0 | roachtest: follower-reads/survival=region/locality=regional/reads=exact-staleness failed - roachtest.follower-reads/survival=region/locality=regional/reads=exact-staleness [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8147282?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8147282?buildTab=artifacts#/follower-reads/survival=region/locality=regional/reads=exact-staleness) on release-22.2 @ [07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1](https://github.com/cockroachdb/cockroach/commits/07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1):
```
test artifacts and logs in: /artifacts/follower-reads/survival=region/locality=regional/reads=exact-staleness/run_1
(test_impl.go:309).Errorf:
Error Trace: /go/src/github.com/cockroachdb/cockroach/follower_reads.go:445
/go/src/github.com/cockroachdb/cockroach/follower_reads.go:73
/go/src/github.com/cockroachdb/cockroach/test_runner.go:923
/go/src/github.com/cockroachdb/cockroach/asm_amd64.s:1594
Error: Received unexpected error:
pq: Use of multi-region features requires an enterprise license. Your evaluation license expired on December 30, 2022. If you're interested in getting a new license, please contact subscriptions@cockroachlabs.com and we can help you out.
Test: follower-reads/survival=region/locality=regional/reads=exact-staleness
(test_impl.go:298).FailNow: FailNow called
```
<p>Parameters: <code>ROACHTEST_cloud=gce</code>
, <code>ROACHTEST_cpu=4</code>
, <code>ROACHTEST_encrypted=false</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>
- #94511 roachtest: follower-reads/survival=region/locality=regional/reads=exact-staleness failed [C-test-failure O-roachtest O-robot T-kv branch-release-22.1 release-blocker]
- #94368 roachtest: follower-reads/survival=region/locality=regional/reads=exact-staleness failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker]
</p>
</details>
/cc @cockroachdb/kv-triage
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*follower-reads/survival=region/locality=regional/reads=exact-staleness.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-22966 | test | roachtest follower reads survival region locality regional reads exact staleness failed roachtest follower reads survival region locality regional reads exact staleness with on release test artifacts and logs in artifacts follower reads survival region locality regional reads exact staleness run test impl go errorf error trace go src github com cockroachdb cockroach follower reads go go src github com cockroachdb cockroach follower reads go go src github com cockroachdb cockroach test runner go go src github com cockroachdb cockroach asm s error received unexpected error pq use of multi region features requires an enterprise license your evaluation license expired on december if you re interested in getting a new license please contact subscriptions cockroachlabs com and we can help you out test follower reads survival region locality regional reads exact staleness test impl go failnow failnow called parameters roachtest cloud gce roachtest cpu roachtest encrypted false roachtest fs roachtest localssd true roachtest ssd help see see same failure on other branches roachtest follower reads survival region locality regional reads exact staleness failed roachtest follower reads survival region locality regional reads exact staleness failed cc cockroachdb kv triage jira issue crdb | 1 |
217,195 | 16,848,834,624 | IssuesEvent | 2021-06-20 04:12:13 | hakehuang/infoflow | https://api.github.com/repos/hakehuang/infoflow | opened |
tests-ci :kernel.memory_protection.userspace.write_kernel_data : zephyr-v2.6.0-286-g46029914a7ac: lpcxpresso55s28: test Timeout
| area: Tests |
**Describe the bug**
kernel.memory_protection.userspace.write_kernel_data test is Timeout on zephyr-v2.6.0-286-g46029914a7ac on lpcxpresso55s28
see logs for details
**To Reproduce**
1.
```
scripts/twister --device-testing --device-serial /dev/ttyACM0 -p lpcxpresso55s28 --testcase-root tests --sub-test kernel.memory_protection
```
2. See error
**Expected behavior**
test pass
**Impact**
**Logs and console output**
```
*** Booting Zephyr OS build zephyr-v2.6.0-286-g46029914a7ac ***
Running test suite userspace
===================================================================
START - test_is_usermode
PASS - test_is_usermode in 0.1 seconds
===================================================================
START - test_write_control
PASS - test_write_control in 0.1 seconds
===================================================================
START - test_disable_mmu_mpu
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993
ESF could not be retrieved successfully. Shall never occur.
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993
ESF could not be retrieved successfully. Shall never occur.
```
**Environment (please complete the following information):**
- OS: (e.g. Linux )
- Toolchain (e.g Zephyr SDK)
- Commit SHA or Version used: zephyr-v2.6.0-286-g46029914a7ac
| 1.0 |
tests-ci :kernel.memory_protection.userspace.write_kernel_data : zephyr-v2.6.0-286-g46029914a7ac: lpcxpresso55s28: test Timeout
-
**Describe the bug**
kernel.memory_protection.userspace.write_kernel_data test is Timeout on zephyr-v2.6.0-286-g46029914a7ac on lpcxpresso55s28
see logs for details
**To Reproduce**
1.
```
scripts/twister --device-testing --device-serial /dev/ttyACM0 -p lpcxpresso55s28 --testcase-root tests --sub-test kernel.memory_protection
```
2. See error
**Expected behavior**
test pass
**Impact**
**Logs and console output**
```
*** Booting Zephyr OS build zephyr-v2.6.0-286-g46029914a7ac ***
Running test suite userspace
===================================================================
START - test_is_usermode
PASS - test_is_usermode in 0.1 seconds
===================================================================
START - test_write_control
PASS - test_write_control in 0.1 seconds
===================================================================
START - test_disable_mmu_mpu
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993
ESF could not be retrieved successfully. Shall never occur.
ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993
ESF could not be retrieved successfully. Shall never occur.
```
**Environment (please complete the following information):**
- OS: (e.g. Linux )
- Toolchain (e.g Zephyr SDK)
- Commit SHA or Version used: zephyr-v2.6.0-286-g46029914a7ac
| test | tests ci kernel memory protection userspace write kernel data zephyr test timeout describe the bug kernel memory protection userspace write kernel data test is timeout on zephyr on see logs for details to reproduce scripts twister device testing device serial dev p testcase root tests sub test kernel memory protection see error expected behavior test pass impact logs and console output booting zephyr os build zephyr running test suite userspace start test is usermode pass test is usermode in seconds start test write control pass test write control in seconds start test disable mmu mpu assertion fail west topdir zephyr arch arm core cortex m fault c esf could not be retrieved successfully shall never occur assertion fail west topdir zephyr arch arm core cortex m fault c esf could not be retrieved successfully shall never occur environment please complete the following information os e g linux toolchain e g zephyr sdk commit sha or version used zephyr | 1 |
348,076 | 31,465,362,969 | IssuesEvent | 2023-08-30 01:15:02 | instill-ai/community | https://api.github.com/repos/instill-ai/community | closed | Test all supported destinations | test | - [x] gRPC
- [x] HTTP
- [x] MySQL
- [x] Postgres
- [x] Local CSV
- [x] Local JSON | 1.0 | Test all supported destinations - - [x] gRPC
- [x] HTTP
- [x] MySQL
- [x] Postgres
- [x] Local CSV
- [x] Local JSON | test | test all supported destinations grpc http mysql postgres local csv local json | 1 |
119,808 | 10,072,940,091 | IssuesEvent | 2019-07-24 08:30:02 | hazelcast/hazelcast | https://api.github.com/repos/hazelcast/hazelcast | closed | HazelcastStarterTest.testHazelcastInstanceCompatibility_withStarterInstance | Source: Internal Team: Core Type: Test-Failure | - Fails on `Hazelcast-3.x-IbmJDK8-fips-nightly`, `Hazelcast-3.x-sonar` and `Hazelcast-3.x-nightly`
- Starting from [this Build #45](http://jenkins.hazelcast.com/view/Official%20Builds/job/Hazelcast-3.x-IbmJDK8-fips-nightly/45/)
- Seems from commit: 6531b52
- Error Message
```
java.lang.ClassNotFoundException: com.hazelcast.instance.impl.HazelcastInstanceProxy
```
- Stack trace
```
com.hazelcast.test.starter.GuardianException: java.lang.ClassNotFoundException: com.hazelcast.instance.impl.HazelcastInstanceProxy
at com.hazelcast.test.starter.HazelcastStarterUtils.rethrowGuardianException(HazelcastStarterUtils.java:53)
at com.hazelcast.test.starter.HazelcastStarter.getNode(HazelcastStarter.java:127)
at com.hazelcast.instance.impl.TestUtil.getNode(TestUtil.java:74)
at com.hazelcast.test.HazelcastTestSupport.getNode(HazelcastTestSupport.java:258)
at com.hazelcast.test.HazelcastTestSupport.getNodeEngineImpl(HazelcastTestSupport.java:266)
at com.hazelcast.test.starter.constructor.test.MergePolicyProviderConstructorTest.testConstructor(MergePolicyProviderConstructorTest.java:62)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55)
at java.lang.reflect.Method.invoke(Method.java:508)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:114)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:106)
at java.util.concurrent.FutureTask.run(FutureTask.java:277)
at java.lang.Thread.run(Thread.java:811)
Caused by: java.lang.ClassNotFoundException: com.hazelcast.instance.impl.HazelcastInstanceProxy
at java.net.URLClassLoader.findClass(URLClassLoader.java:609)
at com.hazelcast.test.starter.HazelcastAPIDelegatingClassloader.loadClass(HazelcastAPIDelegatingClassloader.java:118)
at java.lang.ClassLoader.loadClass(ClassLoader.java:853)
at com.hazelcast.test.starter.HazelcastStarter.getHazelcastInstanceImpl(HazelcastStarter.java:162)
at com.hazelcast.test.starter.HazelcastStarter.getNode(HazelcastStarter.java:120)
... 16 more
``` | 1.0 | HazelcastStarterTest.testHazelcastInstanceCompatibility_withStarterInstance - - Fails on `Hazelcast-3.x-IbmJDK8-fips-nightly`, `Hazelcast-3.x-sonar` and `Hazelcast-3.x-nightly`
- Starting from [this Build #45](http://jenkins.hazelcast.com/view/Official%20Builds/job/Hazelcast-3.x-IbmJDK8-fips-nightly/45/)
- Seems from commit: 6531b52
- Error Message
```
java.lang.ClassNotFoundException: com.hazelcast.instance.impl.HazelcastInstanceProxy
```
- Stack trace
```
com.hazelcast.test.starter.GuardianException: java.lang.ClassNotFoundException: com.hazelcast.instance.impl.HazelcastInstanceProxy
at com.hazelcast.test.starter.HazelcastStarterUtils.rethrowGuardianException(HazelcastStarterUtils.java:53)
at com.hazelcast.test.starter.HazelcastStarter.getNode(HazelcastStarter.java:127)
at com.hazelcast.instance.impl.TestUtil.getNode(TestUtil.java:74)
at com.hazelcast.test.HazelcastTestSupport.getNode(HazelcastTestSupport.java:258)
at com.hazelcast.test.HazelcastTestSupport.getNodeEngineImpl(HazelcastTestSupport.java:266)
at com.hazelcast.test.starter.constructor.test.MergePolicyProviderConstructorTest.testConstructor(MergePolicyProviderConstructorTest.java:62)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55)
at java.lang.reflect.Method.invoke(Method.java:508)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:114)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:106)
at java.util.concurrent.FutureTask.run(FutureTask.java:277)
at java.lang.Thread.run(Thread.java:811)
Caused by: java.lang.ClassNotFoundException: com.hazelcast.instance.impl.HazelcastInstanceProxy
at java.net.URLClassLoader.findClass(URLClassLoader.java:609)
at com.hazelcast.test.starter.HazelcastAPIDelegatingClassloader.loadClass(HazelcastAPIDelegatingClassloader.java:118)
at java.lang.ClassLoader.loadClass(ClassLoader.java:853)
at com.hazelcast.test.starter.HazelcastStarter.getHazelcastInstanceImpl(HazelcastStarter.java:162)
at com.hazelcast.test.starter.HazelcastStarter.getNode(HazelcastStarter.java:120)
... 16 more
``` | test | hazelcaststartertest testhazelcastinstancecompatibility withstarterinstance fails on hazelcast x fips nightly hazelcast x sonar and hazelcast x nightly starting from seems from commit error message java lang classnotfoundexception com hazelcast instance impl hazelcastinstanceproxy stack trace com hazelcast test starter guardianexception java lang classnotfoundexception com hazelcast instance impl hazelcastinstanceproxy at com hazelcast test starter hazelcaststarterutils rethrowguardianexception hazelcaststarterutils java at com hazelcast test starter hazelcaststarter getnode hazelcaststarter java at com hazelcast instance impl testutil getnode testutil java at com hazelcast test hazelcasttestsupport getnode hazelcasttestsupport java at com hazelcast test hazelcasttestsupport getnodeengineimpl hazelcasttestsupport java at com hazelcast test starter constructor test mergepolicyproviderconstructortest testconstructor mergepolicyproviderconstructortest 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 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 util concurrent futuretask run futuretask java at java lang thread run thread java caused by java lang classnotfoundexception com hazelcast instance impl hazelcastinstanceproxy at java net urlclassloader findclass urlclassloader java at com hazelcast test starter hazelcastapidelegatingclassloader loadclass hazelcastapidelegatingclassloader java at java lang classloader loadclass classloader java at com hazelcast test starter hazelcaststarter gethazelcastinstanceimpl hazelcaststarter java at com hazelcast test starter hazelcaststarter getnode hazelcaststarter java more | 1 |
286,851 | 24,790,363,093 | IssuesEvent | 2022-10-24 13:20:24 | microsoft/vscode | https://api.github.com/repos/microsoft/vscode | opened | Test verifying signed extensions | testplan-item | Refs: https://github.com/microsoft/vscode/issues/162284
- [ ] mac
- [ ] win
- [ ] linux
Complexity: 3
---
| 1.0 | Test verifying signed extensions - Refs: https://github.com/microsoft/vscode/issues/162284
- [ ] mac
- [ ] win
- [ ] linux
Complexity: 3
---
| test | test verifying signed extensions refs mac win linux complexity | 1 |
69,186 | 7,126,563,737 | IssuesEvent | 2018-01-20 11:56:19 | Pleio/pleio_template | https://api.github.com/repos/Pleio/pleio_template | closed | Groep: Oneindig scrollen bij groepsleden toevoegen [0.5] | getest kia prio 1 | Dit werkt nu nog niet waardoor je alleen de eerste 10 resultaten ziet | 1.0 | Groep: Oneindig scrollen bij groepsleden toevoegen [0.5] - Dit werkt nu nog niet waardoor je alleen de eerste 10 resultaten ziet | test | groep oneindig scrollen bij groepsleden toevoegen dit werkt nu nog niet waardoor je alleen de eerste resultaten ziet | 1 |
309,618 | 26,670,569,020 | IssuesEvent | 2023-01-26 09:54:46 | packit/packit-service | https://api.github.com/repos/packit/packit-service | closed | Provide a way to pass `pool` to Testing Farm | feature testing-farm | In some cases, the user would like to route requests to a specific infrastructure pool. We want to use this with `tmt` to run a test job against internal Openstack which has `/dev/kvm` available for a bunch of tests.
It is environments[0].pool in the requests POST API endpoint: https://testing-farm.gitlab.io/api/#operation/requestsPost
@TomasTomecek added TODO:
* [x] Add `extra_tf_params` field to test job definition
* [x] Let content be freeform
* [ ] Update our documentation, point to the TF's API docs above
* [ ] Make a test case & good user experience when user provides some invalid values in there: check TF's response and make sure we provide a sensible error message
* [ ] Resolve #1797 | 1.0 | Provide a way to pass `pool` to Testing Farm - In some cases, the user would like to route requests to a specific infrastructure pool. We want to use this with `tmt` to run a test job against internal Openstack which has `/dev/kvm` available for a bunch of tests.
It is environments[0].pool in the requests POST API endpoint: https://testing-farm.gitlab.io/api/#operation/requestsPost
@TomasTomecek added TODO:
* [x] Add `extra_tf_params` field to test job definition
* [x] Let content be freeform
* [ ] Update our documentation, point to the TF's API docs above
* [ ] Make a test case & good user experience when user provides some invalid values in there: check TF's response and make sure we provide a sensible error message
* [ ] Resolve #1797 | test | provide a way to pass pool to testing farm in some cases the user would like to route requests to a specific infrastructure pool we want to use this with tmt to run a test job against internal openstack which has dev kvm available for a bunch of tests it is environments pool in the requests post api endpoint tomastomecek added todo add extra tf params field to test job definition let content be freeform update our documentation point to the tf s api docs above make a test case good user experience when user provides some invalid values in there check tf s response and make sure we provide a sensible error message resolve | 1 |
286,543 | 24,760,413,487 | IssuesEvent | 2022-10-21 23:01:42 | dotnet/maui | https://api.github.com/repos/dotnet/maui | closed | [Windows] Connectivity changed on throws an exception and sometimes crashes the app | t/bug platform/windows 🪟 s/needs-info area/essentials 🍞 high s/triaged s/no-recent-activity s/try-latest-version | ### Description
When I switch between airplane mode and non-airplane mode in the train (train wifi is available) first ConnectivityChanged works well.
Every subsequent change of the connectivity throws this exception:
```
Exception thrown: 'System.Runtime.InteropServices.COMException' in WinRT.Runtime.dll
WinRT information: The application called an interface that was marshalled for a different thread.
The application called an interface that was marshalled for a different thread. (0x8001010E (RPC_E_WRONG_THREAD))
```
Also, when this happens, the `Connectivity.ConnectivityChanged` event handler is usually (not regularly) not hit again (I print current connection status in this event handler).
Sometimes, the app crashes with this exception and sometimes it does not. The application crashes when ConnectivityChanged eventhandler is executed. The application however sometimes still crashes without entering the event handler at all.
There is no issue on Android.
### Steps to Reproduce
MAUI Blazor app Debug mode
- change internet connectivity
### Version with bug
Release Candidate 3 (current)
### Last version that worked well
RC 2 I think
### Affected platforms
Windows
### Affected platform versions
Windows 10 21H1
### Did you find any workaround?
no
### Relevant log output
_No response_ | 1.0 | [Windows] Connectivity changed on throws an exception and sometimes crashes the app - ### Description
When I switch between airplane mode and non-airplane mode in the train (train wifi is available) first ConnectivityChanged works well.
Every subsequent change of the connectivity throws this exception:
```
Exception thrown: 'System.Runtime.InteropServices.COMException' in WinRT.Runtime.dll
WinRT information: The application called an interface that was marshalled for a different thread.
The application called an interface that was marshalled for a different thread. (0x8001010E (RPC_E_WRONG_THREAD))
```
Also, when this happens, the `Connectivity.ConnectivityChanged` event handler is usually (not regularly) not hit again (I print current connection status in this event handler).
Sometimes, the app crashes with this exception and sometimes it does not. The application crashes when ConnectivityChanged eventhandler is executed. The application however sometimes still crashes without entering the event handler at all.
There is no issue on Android.
### Steps to Reproduce
MAUI Blazor app Debug mode
- change internet connectivity
### Version with bug
Release Candidate 3 (current)
### Last version that worked well
RC 2 I think
### Affected platforms
Windows
### Affected platform versions
Windows 10 21H1
### Did you find any workaround?
no
### Relevant log output
_No response_ | test | connectivity changed on throws an exception and sometimes crashes the app description when i switch between airplane mode and non airplane mode in the train train wifi is available first connectivitychanged works well every subsequent change of the connectivity throws this exception exception thrown system runtime interopservices comexception in winrt runtime dll winrt information the application called an interface that was marshalled for a different thread the application called an interface that was marshalled for a different thread rpc e wrong thread also when this happens the connectivity connectivitychanged event handler is usually not regularly not hit again i print current connection status in this event handler sometimes the app crashes with this exception and sometimes it does not the application crashes when connectivitychanged eventhandler is executed the application however sometimes still crashes without entering the event handler at all there is no issue on android steps to reproduce maui blazor app debug mode change internet connectivity version with bug release candidate current last version that worked well rc i think affected platforms windows affected platform versions windows did you find any workaround no relevant log output no response | 1 |
190,975 | 14,590,340,044 | IssuesEvent | 2020-12-19 07:12:00 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | opened | roachtest: sqlsmith/setup=empty/setting=no-ddl failed | C-test-failure O-roachtest O-robot branch-master release-blocker | [(roachtest).sqlsmith/setup=empty/setting=no-ddl failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2530481&tab=buildLog) on [master@a782ee8d93a23fc53eedada3c51893c19f7bb41e](https://github.com/cockroachdb/cockroach/commits/a782ee8d93a23fc53eedada3c51893c19f7bb41e):
```
(
VALUES
(('{"test": "json"}':::JSONB, 127:::INT8)),
((e'"9_6k\'znaI$"':::JSONB, (-420066748):::INT8)),
(
('[{"/2x": [[[], {}], ["baz"], "}Ggmd<"]}, {"bar": "foo"}, false]':::JSONB, 1465065305:::INT8)
),
(
(e'{"QE,c Uar": {"baz": [1.4781402497486573], "c": [false]}, "jFGsjA%+w.O9": [{"a": null, "foo": {}}, [3.9072583351118126]], "u]d8\\"i": [[[[]], "*[AR"]]}':::JSONB, (-1160494946):::INT8)
),
(
(e'{"=a?F": {"e-*yH*Py": {}}, "U;G\\\\%`cCI45": {"$i,@*MJ@": [{}, null], "baz": {" ^2GS}ia": [], "a": true, "foobar": {}}, "foo": 2.9960921051042018}, "foobar": {"A3pLoqHnT{k": null, "STyG1l+suCN": null, "mki": []}}':::JSONB, (-480345104):::INT8)
)
)
AS tab_1295 (col_2315)
INTERSECT ALL
SELECT
*
FROM
(
VALUES
(NULL),
(
(e'[{"*3KBCk)j\\\\a": [], "T]x!-?BKP^*`": {"baz": null, "c": "PSh", "eBSP": "8##iTfFsRX"}}, false, false]':::JSONB, 2116807010:::INT8)
),
(
('[{"J@9": [], "c": "K;BuSGo`CZwT", "ef:TDKh: eJ": [[]]}, true, {"),[+U": 4.418350769936543, "]8W(0Xb?": true, "baz": null, "foobar": {}, "wo,ot+~s": "bar"}, []]':::JSONB, 1087537152:::INT8)
),
(
CASE
WHEN true
THEN ('{"foo": {"bar": [], "foobar": {"A7&q2hm8": null, "a": [[]], "c": null, "fia~": {}}}, "nEwH^=G`7:": false}':::JSONB, (-893091740):::INT8)
ELSE ('[[], {"?GA": {"b": {}}, "INDwd!A": ["nMp^L%qS"]}, {"b": null, "foobar": "foo"}, {"foobar": [2.2541233725083414]}, [], {}]':::JSONB, 1544780594:::INT8)
END
),
(
(e'{"N_-g^E)<6|": 1.4910088674487487, "a": {"JfP~^7": {"b": false, "foo": []}, "foo": {"%]\\\\Zp>;j(": {}}}, "bar": []}':::JSONB, (-213476031):::INT8)
),
(NULL)
)
AS tab_1296 (col_2316)
)
SELECT
cte_ref_126.col_2315 AS col_2317
FROM
with_440 AS cte_ref_126
GROUP BY
cte_ref_126.col_2315
LIMIT
40:::INT8;
```
<details><summary>More</summary><p>
Artifacts: [/sqlsmith/setup=empty/setting=no-ddl](https://teamcity.cockroachdb.com/viewLog.html?buildId=2530481&tab=artifacts#/sqlsmith/setup=empty/setting=no-ddl)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Asqlsmith%2Fsetup%3Dempty%2Fsetting%3Dno-ddl.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| 2.0 | roachtest: sqlsmith/setup=empty/setting=no-ddl failed - [(roachtest).sqlsmith/setup=empty/setting=no-ddl failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2530481&tab=buildLog) on [master@a782ee8d93a23fc53eedada3c51893c19f7bb41e](https://github.com/cockroachdb/cockroach/commits/a782ee8d93a23fc53eedada3c51893c19f7bb41e):
```
(
VALUES
(('{"test": "json"}':::JSONB, 127:::INT8)),
((e'"9_6k\'znaI$"':::JSONB, (-420066748):::INT8)),
(
('[{"/2x": [[[], {}], ["baz"], "}Ggmd<"]}, {"bar": "foo"}, false]':::JSONB, 1465065305:::INT8)
),
(
(e'{"QE,c Uar": {"baz": [1.4781402497486573], "c": [false]}, "jFGsjA%+w.O9": [{"a": null, "foo": {}}, [3.9072583351118126]], "u]d8\\"i": [[[[]], "*[AR"]]}':::JSONB, (-1160494946):::INT8)
),
(
(e'{"=a?F": {"e-*yH*Py": {}}, "U;G\\\\%`cCI45": {"$i,@*MJ@": [{}, null], "baz": {" ^2GS}ia": [], "a": true, "foobar": {}}, "foo": 2.9960921051042018}, "foobar": {"A3pLoqHnT{k": null, "STyG1l+suCN": null, "mki": []}}':::JSONB, (-480345104):::INT8)
)
)
AS tab_1295 (col_2315)
INTERSECT ALL
SELECT
*
FROM
(
VALUES
(NULL),
(
(e'[{"*3KBCk)j\\\\a": [], "T]x!-?BKP^*`": {"baz": null, "c": "PSh", "eBSP": "8##iTfFsRX"}}, false, false]':::JSONB, 2116807010:::INT8)
),
(
('[{"J@9": [], "c": "K;BuSGo`CZwT", "ef:TDKh: eJ": [[]]}, true, {"),[+U": 4.418350769936543, "]8W(0Xb?": true, "baz": null, "foobar": {}, "wo,ot+~s": "bar"}, []]':::JSONB, 1087537152:::INT8)
),
(
CASE
WHEN true
THEN ('{"foo": {"bar": [], "foobar": {"A7&q2hm8": null, "a": [[]], "c": null, "fia~": {}}}, "nEwH^=G`7:": false}':::JSONB, (-893091740):::INT8)
ELSE ('[[], {"?GA": {"b": {}}, "INDwd!A": ["nMp^L%qS"]}, {"b": null, "foobar": "foo"}, {"foobar": [2.2541233725083414]}, [], {}]':::JSONB, 1544780594:::INT8)
END
),
(
(e'{"N_-g^E)<6|": 1.4910088674487487, "a": {"JfP~^7": {"b": false, "foo": []}, "foo": {"%]\\\\Zp>;j(": {}}}, "bar": []}':::JSONB, (-213476031):::INT8)
),
(NULL)
)
AS tab_1296 (col_2316)
)
SELECT
cte_ref_126.col_2315 AS col_2317
FROM
with_440 AS cte_ref_126
GROUP BY
cte_ref_126.col_2315
LIMIT
40:::INT8;
```
<details><summary>More</summary><p>
Artifacts: [/sqlsmith/setup=empty/setting=no-ddl](https://teamcity.cockroachdb.com/viewLog.html?buildId=2530481&tab=artifacts#/sqlsmith/setup=empty/setting=no-ddl)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Asqlsmith%2Fsetup%3Dempty%2Fsetting%3Dno-ddl.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| test | roachtest sqlsmith setup empty setting no ddl failed on values test json jsonb e znai jsonb ggmd bar foo false jsonb e qe c uar baz c jfgsja w u i jsonb e a f e yh py u g i mj baz ia a true foobar foo foobar k null sucn null mki jsonb as tab col intersect all select from values null e t x bkp baz null c psh ebsp itffsrx false false jsonb c k busgo czwt ef tdkh ej true true baz null foobar wo ot s bar jsonb case when true then foo bar foobar null a c null fia newh g false jsonb else ga b indwd a b null foobar foo foobar jsonb end e n g e j bar jsonb null as tab col select cte ref col as col from with as cte ref group by cte ref col limit more artifacts powered by | 1 |
53,696 | 6,341,653,467 | IssuesEvent | 2017-07-27 13:59:26 | Microsoft/vscode | https://api.github.com/repos/Microsoft/vscode | closed | Test: multi root debug | debug testplan-item | Refs: https://github.com/Microsoft/vscode/issues/29245
- [x] win - **@egamma**
- [x] mac - **@jrieken**
- [x] linux - **@michelkaporin**
Complexity: 4
We have made debug multi root aware. First quickly verify you can debug a no folder workspace and a single folder workspace as before.
Open a multi root workspace where there are multiple `launch.json` files, verify:
* All configurations from every workspace are shown
* It is possible to add configuraitons to each of the `launch.json` from the dropdown
* Clicking on the configure action opens the appropriate `launch.json`
* Variables in the `launch.json` get resolved depending on where the `launch.json` is located, for example `${workspaceRoot}` resolves to the fs path of the root containg that `launch.json`
* Be creative and check if the UI behaves as one would expect | 1.0 | Test: multi root debug - Refs: https://github.com/Microsoft/vscode/issues/29245
- [x] win - **@egamma**
- [x] mac - **@jrieken**
- [x] linux - **@michelkaporin**
Complexity: 4
We have made debug multi root aware. First quickly verify you can debug a no folder workspace and a single folder workspace as before.
Open a multi root workspace where there are multiple `launch.json` files, verify:
* All configurations from every workspace are shown
* It is possible to add configuraitons to each of the `launch.json` from the dropdown
* Clicking on the configure action opens the appropriate `launch.json`
* Variables in the `launch.json` get resolved depending on where the `launch.json` is located, for example `${workspaceRoot}` resolves to the fs path of the root containg that `launch.json`
* Be creative and check if the UI behaves as one would expect | test | test multi root debug refs win egamma mac jrieken linux michelkaporin complexity we have made debug multi root aware first quickly verify you can debug a no folder workspace and a single folder workspace as before open a multi root workspace where there are multiple launch json files verify all configurations from every workspace are shown it is possible to add configuraitons to each of the launch json from the dropdown clicking on the configure action opens the appropriate launch json variables in the launch json get resolved depending on where the launch json is located for example workspaceroot resolves to the fs path of the root containg that launch json be creative and check if the ui behaves as one would expect | 1 |
99,354 | 8,698,309,884 | IssuesEvent | 2018-12-04 22:56:58 | istio/istio | https://api.github.com/repos/istio/istio | closed | [test-framework] Use kube client everywhere | area/test and release | For k8s, the test framework is still using a mix of kube client and kubectl from the command line. We should move to having the test framework use kube client exclusively. | 1.0 | [test-framework] Use kube client everywhere - For k8s, the test framework is still using a mix of kube client and kubectl from the command line. We should move to having the test framework use kube client exclusively. | test | use kube client everywhere for the test framework is still using a mix of kube client and kubectl from the command line we should move to having the test framework use kube client exclusively | 1 |
163,431 | 6,198,211,732 | IssuesEvent | 2017-07-05 18:38:05 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio] Error message in logs when browsing for components for drag and drop | bug Priority: Low | 1. Use a website_editorial bp site
2. Click on the wrench at the top right to view the Preview tools
3. Click on **Page Components**
4. Click on **Browse Features**, look in the Catalina logs and notice the error messages
```
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-1] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/sed-magna-finibus.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-2] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/sapien-veroeros.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-8] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/quam-lorem-ipsum.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-6] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/portitor-ullamcorper.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
``` | 1.0 | [studio] Error message in logs when browsing for components for drag and drop - 1. Use a website_editorial bp site
2. Click on the wrench at the top right to view the Preview tools
3. Click on **Page Components**
4. Click on **Browse Features**, look in the Catalina logs and notice the error messages
```
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-1] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/sed-magna-finibus.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-2] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/sapien-veroeros.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-8] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/quam-lorem-ipsum.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
[ERROR] 2017-06-30 11:13:34,036 [http-nio-8080-exec-6] [site] [impl.DefaultExceptionHandler] | GET http://localhost:8080/site/components/features/portitor-ullamcorper.xml failed
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.scripting.impl.ScriptFilter.doFilter(ScriptFilter.java:89)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.security.servlet.filters.RequestSecurityFilter$1.processRequest(RequestSecurityFilter.java:193)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.UrlAccessRestrictionCheckingProcessor.processRequest(UrlAccessRestrictionCheckingProcessor.java:148)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SecurityExceptionProcessor.processRequest(SecurityExceptionProcessor.java:82)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.SavedRequestAwareProcessor.processRequest(SavedRequestAwareProcessor.java:70)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.MellonAutoLoginProcessor.processRequest(MellonAutoLoginProcessor.java:108)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.RememberMeAutoLoginProcessor.processRequest(RememberMeAutoLoginProcessor.java:38)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LogoutProcessor.processRequest(LogoutProcessor.java:104)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.LoginProcessor.processRequest(LoginProcessor.java:168)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.ReturnCurrentAuthenticationProcessor.processRequest(ReturnCurrentAuthenticationProcessor.java:59)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.CurrentAuthenticationResolvingProcessor.processRequest(CurrentAuthenticationResolvingProcessor.java:86)
at org.craftercms.engine.security.PreviewCurrentAuthenticationResolvingProcessor.processRequest(PreviewCurrentAuthenticationResolvingProcessor.java:83)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.processors.impl.AddSecurityCookiesProcessor.processRequest(AddSecurityCookiesProcessor.java:74)
at org.craftercms.security.processors.impl.RequestSecurityProcessorChainImpl.processRequest(RequestSecurityProcessorChainImpl.java:59)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilterInternal(RequestSecurityFilter.java:139)
at org.craftercms.security.servlet.filters.RequestSecurityFilter.doFilter(RequestSecurityFilter.java:110)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.ExceptionHandlingFilter.doFilter(ExceptionHandlingFilter.java:56)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.engine.servlet.filter.SiteContextResolvingFilter.doFilter(SiteContextResolvingFilter.java:46)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.craftercms.commons.http.RequestContextBindingFilter.doFilter(RequestContextBindingFilter.java:79)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:784)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:802)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1410)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalStateException: Unable to locate object to be marshalled in model: {}
at org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:105)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:303)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1282)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1037)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
... 77 more
``` | non_test | error message in logs when browsing for components for drag and drop use a website editorial bp site click on the wrench at the top right to view the preview tools click on page components click on browse features look in the catalina logs and notice the error messages get failed org springframework web util nestedservletexception request processing failed nested exception is java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet frameworkservlet processrequest frameworkservlet java at org springframework web servlet frameworkservlet doget frameworkservlet java at javax servlet http httpservlet service httpservlet java at org springframework web servlet frameworkservlet service frameworkservlet java at javax servlet http httpservlet service httpservlet java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache tomcat websocket server wsfilter dofilter wsfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine scripting impl scriptfilter dofilter scriptfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms security servlet filters requestsecurityfilter processrequest requestsecurityfilter java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl urlaccessrestrictioncheckingprocessor processrequest urlaccessrestrictioncheckingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl securityexceptionprocessor processrequest securityexceptionprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl savedrequestawareprocessor processrequest savedrequestawareprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl mellonautologinprocessor processrequest mellonautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl remembermeautologinprocessor processrequest remembermeautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl logoutprocessor processrequest logoutprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl loginprocessor processrequest loginprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl returncurrentauthenticationprocessor processrequest returncurrentauthenticationprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl currentauthenticationresolvingprocessor processrequest currentauthenticationresolvingprocessor java at org craftercms engine security previewcurrentauthenticationresolvingprocessor processrequest previewcurrentauthenticationresolvingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl addsecuritycookiesprocessor processrequest addsecuritycookiesprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security servlet filters requestsecurityfilter dofilterinternal requestsecurityfilter java at org craftercms security servlet filters requestsecurityfilter dofilter requestsecurityfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter exceptionhandlingfilter dofilter exceptionhandlingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter sitecontextresolvingfilter dofilter sitecontextresolvingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms commons http requestcontextbindingfilter dofilter requestcontextbindingfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org springframework web filter characterencodingfilter dofilterinternal characterencodingfilter java at org springframework web filter onceperrequestfilter dofilter onceperrequestfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina core standardwrappervalve invoke standardwrappervalve java at org apache catalina core standardcontextvalve invoke standardcontextvalve java at org apache catalina authenticator authenticatorbase invoke authenticatorbase java at org apache catalina core standardhostvalve invoke standardhostvalve java at org apache catalina valves errorreportvalve invoke errorreportvalve java at org apache catalina valves abstractaccesslogvalve invoke abstractaccesslogvalve java at org apache catalina core standardenginevalve invoke standardenginevalve java at org apache catalina connector coyoteadapter service coyoteadapter java at org apache coyote service java at org apache coyote abstractprocessorlight process abstractprocessorlight java at org apache coyote abstractprotocol connectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net socketprocessorbase run socketprocessorbase java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java caused by java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet view xml marshallingview rendermergedoutputmodel marshallingview java at org springframework web servlet view abstractview render abstractview java at org springframework web servlet dispatcherservlet render dispatcherservlet java at org springframework web servlet dispatcherservlet processdispatchresult dispatcherservlet java at org springframework web servlet dispatcherservlet dodispatch dispatcherservlet java at org springframework web servlet dispatcherservlet doservice dispatcherservlet java at org springframework web servlet frameworkservlet processrequest frameworkservlet java more get failed org springframework web util nestedservletexception request processing failed nested exception is java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet frameworkservlet processrequest frameworkservlet java at org springframework web servlet frameworkservlet doget frameworkservlet java at javax servlet http httpservlet service httpservlet java at org springframework web servlet frameworkservlet service frameworkservlet java at javax servlet http httpservlet service httpservlet java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache tomcat websocket server wsfilter dofilter wsfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine scripting impl scriptfilter dofilter scriptfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms security servlet filters requestsecurityfilter processrequest requestsecurityfilter java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl urlaccessrestrictioncheckingprocessor processrequest urlaccessrestrictioncheckingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl securityexceptionprocessor processrequest securityexceptionprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl savedrequestawareprocessor processrequest savedrequestawareprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl mellonautologinprocessor processrequest mellonautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl remembermeautologinprocessor processrequest remembermeautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl logoutprocessor processrequest logoutprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl loginprocessor processrequest loginprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl returncurrentauthenticationprocessor processrequest returncurrentauthenticationprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl currentauthenticationresolvingprocessor processrequest currentauthenticationresolvingprocessor java at org craftercms engine security previewcurrentauthenticationresolvingprocessor processrequest previewcurrentauthenticationresolvingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl addsecuritycookiesprocessor processrequest addsecuritycookiesprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security servlet filters requestsecurityfilter dofilterinternal requestsecurityfilter java at org craftercms security servlet filters requestsecurityfilter dofilter requestsecurityfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter exceptionhandlingfilter dofilter exceptionhandlingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter sitecontextresolvingfilter dofilter sitecontextresolvingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms commons http requestcontextbindingfilter dofilter requestcontextbindingfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org springframework web filter characterencodingfilter dofilterinternal characterencodingfilter java at org springframework web filter onceperrequestfilter dofilter onceperrequestfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina core standardwrappervalve invoke standardwrappervalve java at org apache catalina core standardcontextvalve invoke standardcontextvalve java at org apache catalina authenticator authenticatorbase invoke authenticatorbase java at org apache catalina core standardhostvalve invoke standardhostvalve java at org apache catalina valves errorreportvalve invoke errorreportvalve java at org apache catalina valves abstractaccesslogvalve invoke abstractaccesslogvalve java at org apache catalina core standardenginevalve invoke standardenginevalve java at org apache catalina connector coyoteadapter service coyoteadapter java at org apache coyote service java at org apache coyote abstractprocessorlight process abstractprocessorlight java at org apache coyote abstractprotocol connectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net socketprocessorbase run socketprocessorbase java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java caused by java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet view xml marshallingview rendermergedoutputmodel marshallingview java at org springframework web servlet view abstractview render abstractview java at org springframework web servlet dispatcherservlet render dispatcherservlet java at org springframework web servlet dispatcherservlet processdispatchresult dispatcherservlet java at org springframework web servlet dispatcherservlet dodispatch dispatcherservlet java at org springframework web servlet dispatcherservlet doservice dispatcherservlet java at org springframework web servlet frameworkservlet processrequest frameworkservlet java more get failed org springframework web util nestedservletexception request processing failed nested exception is java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet frameworkservlet processrequest frameworkservlet java at org springframework web servlet frameworkservlet doget frameworkservlet java at javax servlet http httpservlet service httpservlet java at org springframework web servlet frameworkservlet service frameworkservlet java at javax servlet http httpservlet service httpservlet java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache tomcat websocket server wsfilter dofilter wsfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine scripting impl scriptfilter dofilter scriptfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms security servlet filters requestsecurityfilter processrequest requestsecurityfilter java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl urlaccessrestrictioncheckingprocessor processrequest urlaccessrestrictioncheckingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl securityexceptionprocessor processrequest securityexceptionprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl savedrequestawareprocessor processrequest savedrequestawareprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl mellonautologinprocessor processrequest mellonautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl remembermeautologinprocessor processrequest remembermeautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl logoutprocessor processrequest logoutprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl loginprocessor processrequest loginprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl returncurrentauthenticationprocessor processrequest returncurrentauthenticationprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl currentauthenticationresolvingprocessor processrequest currentauthenticationresolvingprocessor java at org craftercms engine security previewcurrentauthenticationresolvingprocessor processrequest previewcurrentauthenticationresolvingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl addsecuritycookiesprocessor processrequest addsecuritycookiesprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security servlet filters requestsecurityfilter dofilterinternal requestsecurityfilter java at org craftercms security servlet filters requestsecurityfilter dofilter requestsecurityfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter exceptionhandlingfilter dofilter exceptionhandlingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter sitecontextresolvingfilter dofilter sitecontextresolvingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms commons http requestcontextbindingfilter dofilter requestcontextbindingfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org springframework web filter characterencodingfilter dofilterinternal characterencodingfilter java at org springframework web filter onceperrequestfilter dofilter onceperrequestfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina core standardwrappervalve invoke standardwrappervalve java at org apache catalina core standardcontextvalve invoke standardcontextvalve java at org apache catalina authenticator authenticatorbase invoke authenticatorbase java at org apache catalina core standardhostvalve invoke standardhostvalve java at org apache catalina valves errorreportvalve invoke errorreportvalve java at org apache catalina valves abstractaccesslogvalve invoke abstractaccesslogvalve java at org apache catalina core standardenginevalve invoke standardenginevalve java at org apache catalina connector coyoteadapter service coyoteadapter java at org apache coyote service java at org apache coyote abstractprocessorlight process abstractprocessorlight java at org apache coyote abstractprotocol connectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net socketprocessorbase run socketprocessorbase java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java caused by java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet view xml marshallingview rendermergedoutputmodel marshallingview java at org springframework web servlet view abstractview render abstractview java at org springframework web servlet dispatcherservlet render dispatcherservlet java at org springframework web servlet dispatcherservlet processdispatchresult dispatcherservlet java at org springframework web servlet dispatcherservlet dodispatch dispatcherservlet java at org springframework web servlet dispatcherservlet doservice dispatcherservlet java at org springframework web servlet frameworkservlet processrequest frameworkservlet java more get failed org springframework web util nestedservletexception request processing failed nested exception is java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet frameworkservlet processrequest frameworkservlet java at org springframework web servlet frameworkservlet doget frameworkservlet java at javax servlet http httpservlet service httpservlet java at org springframework web servlet frameworkservlet service frameworkservlet java at javax servlet http httpservlet service httpservlet java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache tomcat websocket server wsfilter dofilter wsfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine scripting impl scriptfilter dofilter scriptfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms security servlet filters requestsecurityfilter processrequest requestsecurityfilter java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl urlaccessrestrictioncheckingprocessor processrequest urlaccessrestrictioncheckingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl securityexceptionprocessor processrequest securityexceptionprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl savedrequestawareprocessor processrequest savedrequestawareprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl mellonautologinprocessor processrequest mellonautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl remembermeautologinprocessor processrequest remembermeautologinprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl logoutprocessor processrequest logoutprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl loginprocessor processrequest loginprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl returncurrentauthenticationprocessor processrequest returncurrentauthenticationprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl currentauthenticationresolvingprocessor processrequest currentauthenticationresolvingprocessor java at org craftercms engine security previewcurrentauthenticationresolvingprocessor processrequest previewcurrentauthenticationresolvingprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security processors impl addsecuritycookiesprocessor processrequest addsecuritycookiesprocessor java at org craftercms security processors impl requestsecurityprocessorchainimpl processrequest requestsecurityprocessorchainimpl java at org craftercms security servlet filters requestsecurityfilter dofilterinternal requestsecurityfilter java at org craftercms security servlet filters requestsecurityfilter dofilter requestsecurityfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter exceptionhandlingfilter dofilter exceptionhandlingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms engine servlet filter sitecontextresolvingfilter dofilter sitecontextresolvingfilter java at org springframework web filter delegatingfilterproxy invokedelegate delegatingfilterproxy java at org springframework web filter delegatingfilterproxy dofilter delegatingfilterproxy java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org craftercms commons http requestcontextbindingfilter dofilter requestcontextbindingfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org springframework web filter characterencodingfilter dofilterinternal characterencodingfilter java at org springframework web filter onceperrequestfilter dofilter onceperrequestfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina core standardwrappervalve invoke standardwrappervalve java at org apache catalina core standardcontextvalve invoke standardcontextvalve java at org apache catalina authenticator authenticatorbase invoke authenticatorbase java at org apache catalina core standardhostvalve invoke standardhostvalve java at org apache catalina valves errorreportvalve invoke errorreportvalve java at org apache catalina valves abstractaccesslogvalve invoke abstractaccesslogvalve java at org apache catalina core standardenginevalve invoke standardenginevalve java at org apache catalina connector coyoteadapter service coyoteadapter java at org apache coyote service java at org apache coyote abstractprocessorlight process abstractprocessorlight java at org apache coyote abstractprotocol connectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net socketprocessorbase run socketprocessorbase java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java caused by java lang illegalstateexception unable to locate object to be marshalled in model at org springframework web servlet view xml marshallingview rendermergedoutputmodel marshallingview java at org springframework web servlet view abstractview render abstractview java at org springframework web servlet dispatcherservlet render dispatcherservlet java at org springframework web servlet dispatcherservlet processdispatchresult dispatcherservlet java at org springframework web servlet dispatcherservlet dodispatch dispatcherservlet java at org springframework web servlet dispatcherservlet doservice dispatcherservlet java at org springframework web servlet frameworkservlet processrequest frameworkservlet java more | 0 |
116,704 | 9,880,766,530 | IssuesEvent | 2019-06-24 13:21:58 | WordPress/gutenberg | https://api.github.com/repos/WordPress/gutenberg | closed | Not able to publish posts in certain cases on a sub-domain. | Needs Testing [Status] Needs More Info | Took me a while to figure this one out. I assumed it was a problem with Advanced Custom Fields 5.8.0 Beta 1 & 2. But it turns out that it's not caused by ACF at all. I have been investigating the issue with Elliot & ACF and we've come to the conclusion that Gutenberg can't publish posts on a sub-domain if a plugin that handle meta fields is activated. I tried a different plugin to see if I could replicate the issue (I could). We tried using this on a regular domain with and without www and everything works as intended.
This error did not occur in Wordpress 4.9.8 with Gutenberg plugin.
**Info:**
Wordpress 5.0 Beta 2.
Advanced Custom Fields 5.8.0 Beta 1 & Beta 2.
Meta Box 4.15.6 (Tried to replicate with this one).
PHP Version 7.15
twentynineteen theme.
**Error that occurs:**
500 Internal Server Error when trying to POST to:
/wp-json/wp/v2/posts/27?_locale=user
/wp-json/wp/v2/posts/27/autosaves?_locale=user
**How to "circumvent":**
Commenting out row 137-143 in wp-includes/l10n.php
**_Edit: Added theme to info._** | 1.0 | Not able to publish posts in certain cases on a sub-domain. - Took me a while to figure this one out. I assumed it was a problem with Advanced Custom Fields 5.8.0 Beta 1 & 2. But it turns out that it's not caused by ACF at all. I have been investigating the issue with Elliot & ACF and we've come to the conclusion that Gutenberg can't publish posts on a sub-domain if a plugin that handle meta fields is activated. I tried a different plugin to see if I could replicate the issue (I could). We tried using this on a regular domain with and without www and everything works as intended.
This error did not occur in Wordpress 4.9.8 with Gutenberg plugin.
**Info:**
Wordpress 5.0 Beta 2.
Advanced Custom Fields 5.8.0 Beta 1 & Beta 2.
Meta Box 4.15.6 (Tried to replicate with this one).
PHP Version 7.15
twentynineteen theme.
**Error that occurs:**
500 Internal Server Error when trying to POST to:
/wp-json/wp/v2/posts/27?_locale=user
/wp-json/wp/v2/posts/27/autosaves?_locale=user
**How to "circumvent":**
Commenting out row 137-143 in wp-includes/l10n.php
**_Edit: Added theme to info._** | test | not able to publish posts in certain cases on a sub domain took me a while to figure this one out i assumed it was a problem with advanced custom fields beta but it turns out that it s not caused by acf at all i have been investigating the issue with elliot acf and we ve come to the conclusion that gutenberg can t publish posts on a sub domain if a plugin that handle meta fields is activated i tried a different plugin to see if i could replicate the issue i could we tried using this on a regular domain with and without www and everything works as intended this error did not occur in wordpress with gutenberg plugin info wordpress beta advanced custom fields beta beta meta box tried to replicate with this one php version twentynineteen theme error that occurs internal server error when trying to post to wp json wp posts locale user wp json wp posts autosaves locale user how to circumvent commenting out row in wp includes php edit added theme to info | 1 |
83,326 | 7,868,664,690 | IssuesEvent | 2018-06-24 02:00:14 | linnovate/root | https://api.github.com/repos/linnovate/root | closed | permissions client - double click will open medium editor on title | testing week | A double click will open medium editor (bar to edit title) on entites where the title change is not permitted to user. (commenter/viewer)

| 1.0 | permissions client - double click will open medium editor on title - A double click will open medium editor (bar to edit title) on entites where the title change is not permitted to user. (commenter/viewer)

| test | permissions client double click will open medium editor on title a double click will open medium editor bar to edit title on entites where the title change is not permitted to user commenter viewer | 1 |
143,535 | 11,568,707,593 | IssuesEvent | 2020-02-20 16:18:25 | spring-projects/spring-framework | https://api.github.com/repos/spring-projects/spring-framework | closed | WebFluxTest cannot read URL with matrix variable | in: test in: web status: feedback-provided status: waiting-for-triage | Hi, I notice WebFluxTest cannot test with a URL with matrix variable.
For example I have a test:
```java
@Autowired
WebTestClient webTestClient;
@Test
public void exampleTest(){
webTestClient.get().uri("http://localhost:8080/example/employees/id=1")
.exchange()
.expectBody().consumeWith(response -> assertTrue(new String(response.getResponseBody(),
StandardCharsets.UTF_8).contains(expected)));
}
```
The code to test is:
```java
@Controller
public class Example {
@GetMapping("/example/employees/{id}")
@ResponseBody
public String example(@MatrixVariable("id") int id) {
....
}
```
And there is a config here:
```java
@Configuration
public class MyConfig implements WebMvcConfigurer {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
UrlPathHelper urlPathHelper = new UrlPathHelper();
urlPathHelper.setRemoveSemicolonContent(false); // <---
configurer.setUrlPathHelper(urlPathHelper);
} ...
}
```
Output:
```
"status":400,"error":"Bad Request","message":"Missing matrix variable 'id' for method parameter of type int"}
``` | 1.0 | WebFluxTest cannot read URL with matrix variable - Hi, I notice WebFluxTest cannot test with a URL with matrix variable.
For example I have a test:
```java
@Autowired
WebTestClient webTestClient;
@Test
public void exampleTest(){
webTestClient.get().uri("http://localhost:8080/example/employees/id=1")
.exchange()
.expectBody().consumeWith(response -> assertTrue(new String(response.getResponseBody(),
StandardCharsets.UTF_8).contains(expected)));
}
```
The code to test is:
```java
@Controller
public class Example {
@GetMapping("/example/employees/{id}")
@ResponseBody
public String example(@MatrixVariable("id") int id) {
....
}
```
And there is a config here:
```java
@Configuration
public class MyConfig implements WebMvcConfigurer {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
UrlPathHelper urlPathHelper = new UrlPathHelper();
urlPathHelper.setRemoveSemicolonContent(false); // <---
configurer.setUrlPathHelper(urlPathHelper);
} ...
}
```
Output:
```
"status":400,"error":"Bad Request","message":"Missing matrix variable 'id' for method parameter of type int"}
``` | test | webfluxtest cannot read url with matrix variable hi i notice webfluxtest cannot test with a url with matrix variable for example i have a test java autowired webtestclient webtestclient test public void exampletest webtestclient get uri exchange expectbody consumewith response asserttrue new string response getresponsebody standardcharsets utf contains expected the code to test is java controller public class example getmapping example employees id responsebody public string example matrixvariable id int id and there is a config here java configuration public class myconfig implements webmvcconfigurer override public void configurepathmatch pathmatchconfigurer configurer urlpathhelper urlpathhelper new urlpathhelper urlpathhelper setremovesemicoloncontent false configurer seturlpathhelper urlpathhelper output status error bad request message missing matrix variable id for method parameter of type int | 1 |
232,870 | 18,920,476,374 | IssuesEvent | 2021-11-17 00:38:47 | Bwc9876/CodeReview | https://api.github.com/repos/Bwc9876/CodeReview | closed | Loading env overrides settings | bug tests | When testing, @override_settings() is overridden by load_env() this causes issues for testing as LDAP_URL will not be overridden to "bad-server" and therefore the cant_connect tests fail. | 1.0 | Loading env overrides settings - When testing, @override_settings() is overridden by load_env() this causes issues for testing as LDAP_URL will not be overridden to "bad-server" and therefore the cant_connect tests fail. | test | loading env overrides settings when testing override settings is overridden by load env this causes issues for testing as ldap url will not be overridden to bad server and therefore the cant connect tests fail | 1 |
272,920 | 29,795,132,090 | IssuesEvent | 2023-06-16 01:13:38 | billmcchesney1/pacbot | https://api.github.com/repos/billmcchesney1/pacbot | closed | CVE-2022-4244 (Medium) detected in plexus-utils-3.0.22.jar - autoclosed | Mend: dependency security vulnerability | ## CVE-2022-4244 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>plexus-utils-3.0.22.jar</b></p></summary>
<p>A collection of various utility classes to ease working with strings, files, command lines, XML and
more.</p>
<p>Path to dependency file: /api/pacman-api-compliance/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar,/home/wss-scanner/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar</p>
<p>
Dependency Hierarchy:
- maven-artifact-3.3.9.jar (Root Library)
- :x: **plexus-utils-3.0.22.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/pacbot/commit/acf9a0620c1a37cee4f2896d71e1c3731c5c7b06">acf9a0620c1a37cee4f2896d71e1c3731c5c7b06</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
CVE-2022-4244 codehaus-plexus: Directory Traversal
<p>Publish Date: 2022-12-01
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-4244>CVE-2022-4244</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2022-12-01</p>
<p>Fix Resolution: org.codehaus.plexus:plexus-utils:3.0.24</p>
</p>
</details>
<p></p>
| True | CVE-2022-4244 (Medium) detected in plexus-utils-3.0.22.jar - autoclosed - ## CVE-2022-4244 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>plexus-utils-3.0.22.jar</b></p></summary>
<p>A collection of various utility classes to ease working with strings, files, command lines, XML and
more.</p>
<p>Path to dependency file: /api/pacman-api-compliance/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar,/home/wss-scanner/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar</p>
<p>
Dependency Hierarchy:
- maven-artifact-3.3.9.jar (Root Library)
- :x: **plexus-utils-3.0.22.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/pacbot/commit/acf9a0620c1a37cee4f2896d71e1c3731c5c7b06">acf9a0620c1a37cee4f2896d71e1c3731c5c7b06</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
CVE-2022-4244 codehaus-plexus: Directory Traversal
<p>Publish Date: 2022-12-01
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-4244>CVE-2022-4244</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2022-12-01</p>
<p>Fix Resolution: org.codehaus.plexus:plexus-utils:3.0.24</p>
</p>
</details>
<p></p>
| non_test | cve medium detected in plexus utils jar autoclosed cve medium severity vulnerability vulnerable library plexus utils jar a collection of various utility classes to ease working with strings files command lines xml and more path to dependency file api pacman api compliance pom xml path to vulnerable library home wss scanner repository org codehaus plexus plexus utils plexus utils jar home wss scanner repository org codehaus plexus plexus utils plexus utils jar dependency hierarchy maven artifact jar root library x plexus utils jar vulnerable library found in head commit a href found in base branch master vulnerability details cve codehaus plexus directory traversal publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version release date fix resolution org codehaus plexus plexus utils | 0 |
177,012 | 13,673,960,571 | IssuesEvent | 2020-09-29 10:34:04 | elastic/elasticsearch | https://api.github.com/repos/elastic/elasticsearch | opened | [CI] BulkProcessorIT.testBulkProcessorConcurrentRequestsReadOnlyIndex | :Core/Features/Java High Level REST Client >test-failure | <!--
Please fill out the following information, and ensure you have attempted
to reproduce locally
-->
**Build scan**:
https://gradle-enterprise.elastic.co/s/k77zfxjlbccki
**Repro line**:
```
./gradlew ':client:rest-high-level:asyncIntegTest' --tests "org.elasticsearch.client.BulkProcessorIT.testBulkProcessorConcurrentRequestsReadOnlyIndex" \
-Dtests.seed=E2CF2B7CFC578FF \
-Dtests.security.manager=true \
-Dtests.locale=it-IT \
-Dtests.timezone=Etc/GMT-7 \
-Druntime.java=11
```
**Reproduces locally?**:
Yes
**Applicable branches**:
`master`
**Failure history**:
<!--
Link to build stats and possible indication of when this started failing and how often it fails
<https://build-stats.elastic.co/app/kibana>
-->
**Failure excerpt**:
```
org.elasticsearch.client.BulkProcessorIT > testBulkProcessorConcurrentRequestsReadOnlyIndex FAILED
org.elasticsearch.action.ActionRequestValidationException: Validation Failed: 1: no documents to get;
at __randomizedtesting.SeedInfo.seed([E2CF2B7CFC578FF:8887DDCB6306302F]:0)
at org.elasticsearch.action.ValidateActions.addValidationError(ValidateActions.java:26)
at org.elasticsearch.action.get.MultiGetRequest.validate(MultiGetRequest.java:277)
at org.elasticsearch.client.RestHighLevelClient.performRequest(RestHighLevelClient.java:1594)
at org.elasticsearch.client.RestHighLevelClient.performRequestAndParseEntity(RestHighLevelClient.java:1568)
at org.elasticsearch.client.RestHighLevelClient.mget(RestHighLevelClient.java:831)
at org.elasticsearch.client.BulkProcessorIT.testBulkProcessorConcurrentRequestsReadOnlyIndex(BulkProcessorIT.java:278)
```
| 1.0 | [CI] BulkProcessorIT.testBulkProcessorConcurrentRequestsReadOnlyIndex - <!--
Please fill out the following information, and ensure you have attempted
to reproduce locally
-->
**Build scan**:
https://gradle-enterprise.elastic.co/s/k77zfxjlbccki
**Repro line**:
```
./gradlew ':client:rest-high-level:asyncIntegTest' --tests "org.elasticsearch.client.BulkProcessorIT.testBulkProcessorConcurrentRequestsReadOnlyIndex" \
-Dtests.seed=E2CF2B7CFC578FF \
-Dtests.security.manager=true \
-Dtests.locale=it-IT \
-Dtests.timezone=Etc/GMT-7 \
-Druntime.java=11
```
**Reproduces locally?**:
Yes
**Applicable branches**:
`master`
**Failure history**:
<!--
Link to build stats and possible indication of when this started failing and how often it fails
<https://build-stats.elastic.co/app/kibana>
-->
**Failure excerpt**:
```
org.elasticsearch.client.BulkProcessorIT > testBulkProcessorConcurrentRequestsReadOnlyIndex FAILED
org.elasticsearch.action.ActionRequestValidationException: Validation Failed: 1: no documents to get;
at __randomizedtesting.SeedInfo.seed([E2CF2B7CFC578FF:8887DDCB6306302F]:0)
at org.elasticsearch.action.ValidateActions.addValidationError(ValidateActions.java:26)
at org.elasticsearch.action.get.MultiGetRequest.validate(MultiGetRequest.java:277)
at org.elasticsearch.client.RestHighLevelClient.performRequest(RestHighLevelClient.java:1594)
at org.elasticsearch.client.RestHighLevelClient.performRequestAndParseEntity(RestHighLevelClient.java:1568)
at org.elasticsearch.client.RestHighLevelClient.mget(RestHighLevelClient.java:831)
at org.elasticsearch.client.BulkProcessorIT.testBulkProcessorConcurrentRequestsReadOnlyIndex(BulkProcessorIT.java:278)
```
| test | bulkprocessorit testbulkprocessorconcurrentrequestsreadonlyindex please fill out the following information and ensure you have attempted to reproduce locally build scan repro line gradlew client rest high level asyncintegtest tests org elasticsearch client bulkprocessorit testbulkprocessorconcurrentrequestsreadonlyindex dtests seed dtests security manager true dtests locale it it dtests timezone etc gmt druntime java reproduces locally yes applicable branches master failure history link to build stats and possible indication of when this started failing and how often it fails failure excerpt org elasticsearch client bulkprocessorit testbulkprocessorconcurrentrequestsreadonlyindex failed org elasticsearch action actionrequestvalidationexception validation failed no documents to get at randomizedtesting seedinfo seed at org elasticsearch action validateactions addvalidationerror validateactions java at org elasticsearch action get multigetrequest validate multigetrequest java at org elasticsearch client resthighlevelclient performrequest resthighlevelclient java at org elasticsearch client resthighlevelclient performrequestandparseentity resthighlevelclient java at org elasticsearch client resthighlevelclient mget resthighlevelclient java at org elasticsearch client bulkprocessorit testbulkprocessorconcurrentrequestsreadonlyindex bulkprocessorit java | 1 |
58,164 | 14,242,215,977 | IssuesEvent | 2020-11-19 01:14:28 | jgeraigery/angular-breadcrumb | https://api.github.com/repos/jgeraigery/angular-breadcrumb | closed | CVE-2018-1109 (High) detected in braces-0.1.5.tgz, braces-1.8.5.tgz - autoclosed | security vulnerability | ## CVE-2018-1109 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>braces-0.1.5.tgz</b>, <b>braces-1.8.5.tgz</b></p></summary>
<p>
<details><summary><b>braces-0.1.5.tgz</b></p></summary>
<p>Fastest brace expansion lib. Typically used with file paths, but can be used with any string. Expands comma-separated values (e.g. `foo/{a,b,c}/bar`) and alphabetical or numerical ranges (e.g. `{1..9}`)</p>
<p>Library home page: <a href="https://registry.npmjs.org/braces/-/braces-0.1.5.tgz">https://registry.npmjs.org/braces/-/braces-0.1.5.tgz</a></p>
<p>Path to dependency file: angular-breadcrumb/package.json</p>
<p>Path to vulnerable library: angular-breadcrumb/node_modules/expand-braces/node_modules/braces/package.json</p>
<p>
Dependency Hierarchy:
- karma-1.7.1.tgz (Root Library)
- expand-braces-0.1.2.tgz
- :x: **braces-0.1.5.tgz** (Vulnerable Library)
</details>
<details><summary><b>braces-1.8.5.tgz</b></p></summary>
<p>Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.</p>
<p>Library home page: <a href="https://registry.npmjs.org/braces/-/braces-1.8.5.tgz">https://registry.npmjs.org/braces/-/braces-1.8.5.tgz</a></p>
<p>Path to dependency file: angular-breadcrumb/package.json</p>
<p>Path to vulnerable library: angular-breadcrumb/node_modules/braces/package.json</p>
<p>
Dependency Hierarchy:
- compiler-cli-7.2.3.tgz (Root Library)
- chokidar-1.7.0.tgz
- anymatch-1.3.2.tgz
- micromatch-2.3.11.tgz
- :x: **braces-1.8.5.tgz** (Vulnerable Library)
</details>
<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>
Braces before 1.4.2 and 2.17.2 is vulnerable to ReDoS. It used a regular expression (^\{(,+(?:(\{,+\})*),*|,*(?:(\{,+\})*),+)\}) in order to detects empty braces. This can cause an impact of about 10 seconds matching time for data 50K characters long.
<p>Publish Date: 2020-07-21
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-1109>CVE-2018-1109</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://bugzilla.redhat.com/show_bug.cgi?id=1547272">https://bugzilla.redhat.com/show_bug.cgi?id=1547272</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 2.3.1</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"braces","packageVersion":"0.1.5","isTransitiveDependency":true,"dependencyTree":"karma:1.7.1;expand-braces:0.1.2;braces:0.1.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.3.1"},{"packageType":"javascript/Node.js","packageName":"braces","packageVersion":"1.8.5","isTransitiveDependency":true,"dependencyTree":"@angular/compiler-cli:7.2.3;chokidar:1.7.0;anymatch:1.3.2;micromatch:2.3.11;braces:1.8.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.3.1"}],"vulnerabilityIdentifier":"CVE-2018-1109","vulnerabilityDetails":"Braces before 1.4.2 and 2.17.2 is vulnerable to ReDoS. It used a regular expression (^\\{(,+(?:(\\{,+\\})*),*|,*(?:(\\{,+\\})*),+)\\}) in order to detects empty braces. This can cause an impact of about 10 seconds matching time for data 50K characters long.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-1109","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2018-1109 (High) detected in braces-0.1.5.tgz, braces-1.8.5.tgz - autoclosed - ## CVE-2018-1109 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>braces-0.1.5.tgz</b>, <b>braces-1.8.5.tgz</b></p></summary>
<p>
<details><summary><b>braces-0.1.5.tgz</b></p></summary>
<p>Fastest brace expansion lib. Typically used with file paths, but can be used with any string. Expands comma-separated values (e.g. `foo/{a,b,c}/bar`) and alphabetical or numerical ranges (e.g. `{1..9}`)</p>
<p>Library home page: <a href="https://registry.npmjs.org/braces/-/braces-0.1.5.tgz">https://registry.npmjs.org/braces/-/braces-0.1.5.tgz</a></p>
<p>Path to dependency file: angular-breadcrumb/package.json</p>
<p>Path to vulnerable library: angular-breadcrumb/node_modules/expand-braces/node_modules/braces/package.json</p>
<p>
Dependency Hierarchy:
- karma-1.7.1.tgz (Root Library)
- expand-braces-0.1.2.tgz
- :x: **braces-0.1.5.tgz** (Vulnerable Library)
</details>
<details><summary><b>braces-1.8.5.tgz</b></p></summary>
<p>Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.</p>
<p>Library home page: <a href="https://registry.npmjs.org/braces/-/braces-1.8.5.tgz">https://registry.npmjs.org/braces/-/braces-1.8.5.tgz</a></p>
<p>Path to dependency file: angular-breadcrumb/package.json</p>
<p>Path to vulnerable library: angular-breadcrumb/node_modules/braces/package.json</p>
<p>
Dependency Hierarchy:
- compiler-cli-7.2.3.tgz (Root Library)
- chokidar-1.7.0.tgz
- anymatch-1.3.2.tgz
- micromatch-2.3.11.tgz
- :x: **braces-1.8.5.tgz** (Vulnerable Library)
</details>
<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>
Braces before 1.4.2 and 2.17.2 is vulnerable to ReDoS. It used a regular expression (^\{(,+(?:(\{,+\})*),*|,*(?:(\{,+\})*),+)\}) in order to detects empty braces. This can cause an impact of about 10 seconds matching time for data 50K characters long.
<p>Publish Date: 2020-07-21
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-1109>CVE-2018-1109</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://bugzilla.redhat.com/show_bug.cgi?id=1547272">https://bugzilla.redhat.com/show_bug.cgi?id=1547272</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 2.3.1</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"braces","packageVersion":"0.1.5","isTransitiveDependency":true,"dependencyTree":"karma:1.7.1;expand-braces:0.1.2;braces:0.1.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.3.1"},{"packageType":"javascript/Node.js","packageName":"braces","packageVersion":"1.8.5","isTransitiveDependency":true,"dependencyTree":"@angular/compiler-cli:7.2.3;chokidar:1.7.0;anymatch:1.3.2;micromatch:2.3.11;braces:1.8.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.3.1"}],"vulnerabilityIdentifier":"CVE-2018-1109","vulnerabilityDetails":"Braces before 1.4.2 and 2.17.2 is vulnerable to ReDoS. It used a regular expression (^\\{(,+(?:(\\{,+\\})*),*|,*(?:(\\{,+\\})*),+)\\}) in order to detects empty braces. This can cause an impact of about 10 seconds matching time for data 50K characters long.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-1109","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_test | cve high detected in braces tgz braces tgz autoclosed cve high severity vulnerability vulnerable libraries braces tgz braces tgz braces tgz fastest brace expansion lib typically used with file paths but can be used with any string expands comma separated values e g foo a b c bar and alphabetical or numerical ranges e g library home page a href path to dependency file angular breadcrumb package json path to vulnerable library angular breadcrumb node modules expand braces node modules braces package json dependency hierarchy karma tgz root library expand braces tgz x braces tgz vulnerable library braces tgz fastest brace expansion for node js with the most complete support for the bash braces specification library home page a href path to dependency file angular breadcrumb package json path to vulnerable library angular breadcrumb node modules braces package json dependency hierarchy compiler cli tgz root library chokidar tgz anymatch tgz micromatch tgz x braces tgz vulnerable library found in base branch master vulnerability details braces before and is vulnerable to redos it used a regular expression in order to detects empty braces this can cause an impact of about seconds matching time for data characters long 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 isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails braces before and is vulnerable to redos it used a regular expression in order to detects empty braces this can cause an impact of about seconds matching time for data characters long vulnerabilityurl | 0 |
814,511 | 30,509,751,079 | IssuesEvent | 2023-07-18 19:49:09 | GoogleCloudPlatform/professional-services-data-validator | https://api.github.com/repos/GoogleCloudPlatform/professional-services-data-validator | closed | Issue in Generating Table Partitions | priority: p2 | Facing issue in Generating Table Partitions for Comparison between SQL server and Big query of large tables.
**Command used :**
data-validation generate-table-partitions
-sc MSSQL_CONN \
-tc BQ_CONN \
-tbls tempdb.dbo.dvt_prices=paras-sandbox-364713.dlp.dvt_prices \
--primary-keys sr_no \
-comp-fields symbol,log_date,close_stock,volume,adjusted,stock_load_date,is_active \
-cdir `/home/madhujain` \
-pn 10 \
-partkey sr_no \
--bq-result-handler paras-sandbox-364713.data_validator.results
**Error :**
data-validation: error: argument command: invalid choice: 'generate-table-partitions' (choose from 'validate', 'run-config', 'configs', 'connections', 'find-tables', 'query', 'beta') | 1.0 | Issue in Generating Table Partitions - Facing issue in Generating Table Partitions for Comparison between SQL server and Big query of large tables.
**Command used :**
data-validation generate-table-partitions
-sc MSSQL_CONN \
-tc BQ_CONN \
-tbls tempdb.dbo.dvt_prices=paras-sandbox-364713.dlp.dvt_prices \
--primary-keys sr_no \
-comp-fields symbol,log_date,close_stock,volume,adjusted,stock_load_date,is_active \
-cdir `/home/madhujain` \
-pn 10 \
-partkey sr_no \
--bq-result-handler paras-sandbox-364713.data_validator.results
**Error :**
data-validation: error: argument command: invalid choice: 'generate-table-partitions' (choose from 'validate', 'run-config', 'configs', 'connections', 'find-tables', 'query', 'beta') | non_test | issue in generating table partitions facing issue in generating table partitions for comparison between sql server and big query of large tables command used data validation generate table partitions sc mssql conn tc bq conn tbls tempdb dbo dvt prices paras sandbox dlp dvt prices primary keys sr no comp fields symbol log date close stock volume adjusted stock load date is active cdir home madhujain pn partkey sr no bq result handler paras sandbox data validator results error data validation error argument command invalid choice generate table partitions choose from validate run config configs connections find tables query beta | 0 |
198,520 | 14,983,803,563 | IssuesEvent | 2021-01-28 17:42:06 | elastic/kibana | https://api.github.com/repos/elastic/kibana | opened | Failing test: Jest Tests.src/core/server/http - Cookie based SessionStorage #options #SameSite sets and parses SameSite = Lax correctly | failed-test | A test failed on a tracked branch
```
Error: connect ECONNRESET 127.0.0.1:44913
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/11474/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Jest Tests.src/core/server/http","test.name":"Cookie based SessionStorage #options #SameSite sets and parses SameSite = Lax correctly","test.failCount":1}} --> | 1.0 | Failing test: Jest Tests.src/core/server/http - Cookie based SessionStorage #options #SameSite sets and parses SameSite = Lax correctly - A test failed on a tracked branch
```
Error: connect ECONNRESET 127.0.0.1:44913
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/11474/)
<!-- kibanaCiData = {"failed-test":{"test.class":"Jest Tests.src/core/server/http","test.name":"Cookie based SessionStorage #options #SameSite sets and parses SameSite = Lax correctly","test.failCount":1}} --> | test | failing test jest tests src core server http cookie based sessionstorage options samesite sets and parses samesite lax correctly a test failed on a tracked branch error connect econnreset at tcpconnectwrap afterconnect net js first failure | 1 |
303,407 | 23,019,259,782 | IssuesEvent | 2022-07-22 02:15:42 | scipy/scipy | https://api.github.com/repos/scipy/scipy | closed | scipy.signal.filter_design.zpk2sos doctests fail (values different in arrays) | scipy.signal Documentation | <!--
Thank you for taking the time to file a bug report.
Please fill in the fields below, deleting the sections that
don't apply to your issue. You can view the final output
by clicking the preview button above.
Note: This is a comment, and won't appear in the output.
-->
My issue is about the doctests of ``scipy.signal.filter_design.zpk2sos`` which fail.
The issue was identified when running the CI on ObsPy, for which we had backported ``zpk2sos`` originally (https://github.com/obspy/obspy/issues/2865), it didn't happen with scipy 1.6.3 and it appeared first with 1.7.0.
#### Error message:
Running doctests on scipy 1.7.0 installed via conda on Win64:
```python
**********************************************************************
File "C:/Users/thlec/Miniconda3/envs/ms2/Lib/site-packages/scipy/signal/filter_design.py", line 1379, in zpk2sos
Failed example:
sos[:, :3]
Expected:
array([[ 0.0014154 , 0.00248707, 0.0014154 ],
[ 1. , 0.72965193, 1. ],
[ 1. , 0.17594966, 1. ]])
Got:
array([[0.0014152 , 0.00248677, 0.0014152 ],
[1. , 0.72976874, 1. ],
[1. , 0.17607852, 1. ]])
**********************************************************************
File "C:/Users/thlec/Miniconda3/envs/ms2/Lib/site-packages/scipy/signal/filter_design.py", line 1389, in zpk2sos
Failed example:
sos[:, 3:]
Expected:
array([[ 1. , -1.32543251, 0.46989499],
[ 1. , -1.26117915, 0.6262586 ],
[ 1. , -1.25707217, 0.86199667]])
Got:
array([[ 1. , -1.32544025, 0.46989976],
[ 1. , -1.26118294, 0.62625924],
[ 1. , -1.2570723 , 0.8619958 ]])
```
#### Scipy/Numpy/Python version information:
```
>>> import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info)
1.7.0 1.21.1 sys.version_info(major=3, minor=8, micro=8, releaselevel='final', serial=0)
```
| 1.0 | scipy.signal.filter_design.zpk2sos doctests fail (values different in arrays) - <!--
Thank you for taking the time to file a bug report.
Please fill in the fields below, deleting the sections that
don't apply to your issue. You can view the final output
by clicking the preview button above.
Note: This is a comment, and won't appear in the output.
-->
My issue is about the doctests of ``scipy.signal.filter_design.zpk2sos`` which fail.
The issue was identified when running the CI on ObsPy, for which we had backported ``zpk2sos`` originally (https://github.com/obspy/obspy/issues/2865), it didn't happen with scipy 1.6.3 and it appeared first with 1.7.0.
#### Error message:
Running doctests on scipy 1.7.0 installed via conda on Win64:
```python
**********************************************************************
File "C:/Users/thlec/Miniconda3/envs/ms2/Lib/site-packages/scipy/signal/filter_design.py", line 1379, in zpk2sos
Failed example:
sos[:, :3]
Expected:
array([[ 0.0014154 , 0.00248707, 0.0014154 ],
[ 1. , 0.72965193, 1. ],
[ 1. , 0.17594966, 1. ]])
Got:
array([[0.0014152 , 0.00248677, 0.0014152 ],
[1. , 0.72976874, 1. ],
[1. , 0.17607852, 1. ]])
**********************************************************************
File "C:/Users/thlec/Miniconda3/envs/ms2/Lib/site-packages/scipy/signal/filter_design.py", line 1389, in zpk2sos
Failed example:
sos[:, 3:]
Expected:
array([[ 1. , -1.32543251, 0.46989499],
[ 1. , -1.26117915, 0.6262586 ],
[ 1. , -1.25707217, 0.86199667]])
Got:
array([[ 1. , -1.32544025, 0.46989976],
[ 1. , -1.26118294, 0.62625924],
[ 1. , -1.2570723 , 0.8619958 ]])
```
#### Scipy/Numpy/Python version information:
```
>>> import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info)
1.7.0 1.21.1 sys.version_info(major=3, minor=8, micro=8, releaselevel='final', serial=0)
```
| non_test | scipy signal filter design doctests fail values different in arrays thank you for taking the time to file a bug report please fill in the fields below deleting the sections that don t apply to your issue you can view the final output by clicking the preview button above note this is a comment and won t appear in the output my issue is about the doctests of scipy signal filter design which fail the issue was identified when running the ci on obspy for which we had backported originally it didn t happen with scipy and it appeared first with error message running doctests on scipy installed via conda on python file c users thlec envs lib site packages scipy signal filter design py line in failed example sos expected array got array file c users thlec envs lib site packages scipy signal filter design py line in failed example sos expected array got array scipy numpy python version information import sys scipy numpy print scipy version numpy version sys version info sys version info major minor micro releaselevel final serial | 0 |
68,092 | 13,078,612,830 | IssuesEvent | 2020-08-01 00:06:48 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | closed | CA1063: Remove IDisposable from the list of interfaces | code-analyzer untriaged | <!--This is just a template - feel free to delete any and all of it and replace as appropriate.-->
### Description
CA1063: Microsoft.Design : Remove IDisposable from the list of interfaces implemented by 'XXXXX and override the base class Dispose implementation instead.
Ok, so after reading the documentation Microsoft about this rule:
"Every unsealed type that declares and implements the IDisposable interface must provide its own protected virtual void Dispose(bool) method. Dispose() should call Dispose(true), and the finalizer should call Dispose(false). If you create an unsealed type that declares and implements the IDisposable interface, you must define Dispose(bool) and call it. For more information, see Clean up unmanaged resources (.NET guide) and Dispose pattern."
Is a basic set of rules that can and to some extent are easy to adopt among developers.
### Configuration
1) Define a base class MyBase that implements an interface such as IMyInterface;
2) IMyInterface implements IDisposable
3) Define a derived class MyDerive which inherits from MyBase class
4) Define a virtual implementation of Dispose() method in MyBase class
5) Do not override Dispose method on MyDerive class
### Regression?
No, it has been like this since day 1
### Other information
It shouldn't raise any CA1063 error for a scenario like the one described before, right ? | 1.0 | CA1063: Remove IDisposable from the list of interfaces - <!--This is just a template - feel free to delete any and all of it and replace as appropriate.-->
### Description
CA1063: Microsoft.Design : Remove IDisposable from the list of interfaces implemented by 'XXXXX and override the base class Dispose implementation instead.
Ok, so after reading the documentation Microsoft about this rule:
"Every unsealed type that declares and implements the IDisposable interface must provide its own protected virtual void Dispose(bool) method. Dispose() should call Dispose(true), and the finalizer should call Dispose(false). If you create an unsealed type that declares and implements the IDisposable interface, you must define Dispose(bool) and call it. For more information, see Clean up unmanaged resources (.NET guide) and Dispose pattern."
Is a basic set of rules that can and to some extent are easy to adopt among developers.
### Configuration
1) Define a base class MyBase that implements an interface such as IMyInterface;
2) IMyInterface implements IDisposable
3) Define a derived class MyDerive which inherits from MyBase class
4) Define a virtual implementation of Dispose() method in MyBase class
5) Do not override Dispose method on MyDerive class
### Regression?
No, it has been like this since day 1
### Other information
It shouldn't raise any CA1063 error for a scenario like the one described before, right ? | non_test | remove idisposable from the list of interfaces description microsoft design remove idisposable from the list of interfaces implemented by xxxxx and override the base class dispose implementation instead ok so after reading the documentation microsoft about this rule every unsealed type that declares and implements the idisposable interface must provide its own protected virtual void dispose bool method dispose should call dispose true and the finalizer should call dispose false if you create an unsealed type that declares and implements the idisposable interface you must define dispose bool and call it for more information see clean up unmanaged resources net guide and dispose pattern is a basic set of rules that can and to some extent are easy to adopt among developers configuration define a base class mybase that implements an interface such as imyinterface imyinterface implements idisposable define a derived class myderive which inherits from mybase class define a virtual implementation of dispose method in mybase class do not override dispose method on myderive class regression no it has been like this since day other information it shouldn t raise any error for a scenario like the one described before right | 0 |
274,150 | 23,813,283,981 | IssuesEvent | 2022-09-05 02:02:12 | WordPress/gutenberg | https://api.github.com/repos/WordPress/gutenberg | closed | [Flaky Test] should navigate correctly with multi selection | [Status] Stale [Type] Flaky Test | <!-- __META_DATA__:{} -->
**Flaky test detected. This is an auto-generated issue by GitHub Actions. Please do NOT edit this manually.**
## Test title
should navigate correctly with multi selection
## Test path
`specs/editor/various/keyboard-navigable-blocks.test.js`
## Errors
<!-- __TEST_RESULTS_LIST__ -->
<!-- __TEST_RESULT__ --><time datetime="2022-06-08T17:58:56.070Z"><code>[2022-06-08T17:58:56.070Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2463280771"><code>trunk</code></a>.<!-- /__TEST_RESULT__ -->
<br/>
<!-- __TEST_RESULT__ --><details>
<summary>
<time datetime="2022-09-03T14:17:34.953Z"><code>[2022-09-03T14:17:34.953Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2984612136"><code>trunk</code></a>.
</summary>
```
● Order of block keyboard navigation › should navigate correctly with multi selection
expect(received).toBe(expected) // Object.is equality
Expected: "Post"
Received: "Open document settings"
194 |
195 | await page.keyboard.press( 'Tab' );
> 196 | await expect( await getActiveLabel() ).toBe( 'Post' );
| ^
197 |
198 | await pressKeyWithModifier( 'shift', 'Tab' );
199 | await expect( await getActiveLabel() ).toBe(
at Object.<anonymous> (specs/editor/various/keyboard-navigable-blocks.test.js:196:42)
at runMicrotasks (<anonymous>)
```
</details><!-- /__TEST_RESULT__ -->
<!-- /__TEST_RESULTS_LIST__ -->
| 1.0 | [Flaky Test] should navigate correctly with multi selection - <!-- __META_DATA__:{} -->
**Flaky test detected. This is an auto-generated issue by GitHub Actions. Please do NOT edit this manually.**
## Test title
should navigate correctly with multi selection
## Test path
`specs/editor/various/keyboard-navigable-blocks.test.js`
## Errors
<!-- __TEST_RESULTS_LIST__ -->
<!-- __TEST_RESULT__ --><time datetime="2022-06-08T17:58:56.070Z"><code>[2022-06-08T17:58:56.070Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2463280771"><code>trunk</code></a>.<!-- /__TEST_RESULT__ -->
<br/>
<!-- __TEST_RESULT__ --><details>
<summary>
<time datetime="2022-09-03T14:17:34.953Z"><code>[2022-09-03T14:17:34.953Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2984612136"><code>trunk</code></a>.
</summary>
```
● Order of block keyboard navigation › should navigate correctly with multi selection
expect(received).toBe(expected) // Object.is equality
Expected: "Post"
Received: "Open document settings"
194 |
195 | await page.keyboard.press( 'Tab' );
> 196 | await expect( await getActiveLabel() ).toBe( 'Post' );
| ^
197 |
198 | await pressKeyWithModifier( 'shift', 'Tab' );
199 | await expect( await getActiveLabel() ).toBe(
at Object.<anonymous> (specs/editor/various/keyboard-navigable-blocks.test.js:196:42)
at runMicrotasks (<anonymous>)
```
</details><!-- /__TEST_RESULT__ -->
<!-- /__TEST_RESULTS_LIST__ -->
| test | should navigate correctly with multi selection flaky test detected this is an auto generated issue by github actions please do not edit this manually test title should navigate correctly with multi selection test path specs editor various keyboard navigable blocks test js errors test passed after failed attempt on test passed after failed attempt on a href ● order of block keyboard navigation › should navigate correctly with multi selection expect received tobe expected object is equality expected post received open document settings await page keyboard press tab await expect await getactivelabel tobe post await presskeywithmodifier shift tab await expect await getactivelabel tobe at object specs editor various keyboard navigable blocks test js at runmicrotasks | 1 |
322,908 | 27,643,045,103 | IssuesEvent | 2023-03-10 19:54:38 | harvester/harvester | https://api.github.com/repos/harvester/harvester | closed | [BUG] Cluster Flow Ouptut Selection UI Tag Gets Overfilled | kind/bug area/ui severity/4 reproduce/always not-require/test-plan | **Describe the bug**
When building a Cluster Flow, selecting an output that has the length of 42 characters, cross-reference:
```python
Python 3.8.13 (default, Mar 28 2022, 17:40:36)
[GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> x = "sample-had-to-use-embbeded-to-build-secret"
>>> len(x)
42
```
The tag created overfills the "tag"'s allowed "space" and overwhelms the selection area.
<div> id: vs212__combobox
<div> class: vs__selected-options
<span> class: vs__selected
**To Reproduce**
Steps to reproduce the behavior:
1. Create a cluster output that's name contains 42 characters
1. Create a cluster flow -> select "Outputs" -> select previously created cluster output
**Expected behavior**
The tag not to be overfilled.
**Environment**
- Harvester ISO version: v1.1.2-rc1
- Underlying Infrastructure: qemu/kvm
**Additional context**

| 1.0 | [BUG] Cluster Flow Ouptut Selection UI Tag Gets Overfilled - **Describe the bug**
When building a Cluster Flow, selecting an output that has the length of 42 characters, cross-reference:
```python
Python 3.8.13 (default, Mar 28 2022, 17:40:36)
[GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> x = "sample-had-to-use-embbeded-to-build-secret"
>>> len(x)
42
```
The tag created overfills the "tag"'s allowed "space" and overwhelms the selection area.
<div> id: vs212__combobox
<div> class: vs__selected-options
<span> class: vs__selected
**To Reproduce**
Steps to reproduce the behavior:
1. Create a cluster output that's name contains 42 characters
1. Create a cluster flow -> select "Outputs" -> select previously created cluster output
**Expected behavior**
The tag not to be overfilled.
**Environment**
- Harvester ISO version: v1.1.2-rc1
- Underlying Infrastructure: qemu/kvm
**Additional context**

| test | cluster flow ouptut selection ui tag gets overfilled describe the bug when building a cluster flow selecting an output that has the length of characters cross reference python python default mar on linux type help copyright credits or license for more information x sample had to use embbeded to build secret len x the tag created overfills the tag s allowed space and overwhelms the selection area id combobox class vs selected options class vs selected to reproduce steps to reproduce the behavior create a cluster output that s name contains characters create a cluster flow select outputs select previously created cluster output expected behavior the tag not to be overfilled environment harvester iso version underlying infrastructure qemu kvm additional context | 1 |
420,111 | 28,236,766,562 | IssuesEvent | 2023-04-06 01:43:29 | DataONEorg/hashstore-java | https://api.github.com/repos/DataONEorg/hashstore-java | closed | create stub for java project and github repo | documentation | Create a github repo for `hashstore-java` and setup a stub maven project with associated infrastructure:
- [x] github repo
- [x] template maven java package for `hashstore`
- [x] VS Code project for formatting and linting
- [x] Github Action to build and test
- [x] Edit initial README.md
- [x] Edit initial CONTRIBUTING.md doc | 1.0 | create stub for java project and github repo - Create a github repo for `hashstore-java` and setup a stub maven project with associated infrastructure:
- [x] github repo
- [x] template maven java package for `hashstore`
- [x] VS Code project for formatting and linting
- [x] Github Action to build and test
- [x] Edit initial README.md
- [x] Edit initial CONTRIBUTING.md doc | non_test | create stub for java project and github repo create a github repo for hashstore java and setup a stub maven project with associated infrastructure github repo template maven java package for hashstore vs code project for formatting and linting github action to build and test edit initial readme md edit initial contributing md doc | 0 |
521,032 | 15,100,364,902 | IssuesEvent | 2021-02-08 05:20:00 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | Refactor Identity Db data source config | 5.12.0-bug-fixing Complexity/Low Priority/Low config good first issue improvement | **Describe the issue:**
Currently, in the master datasources j2 template, the config for Identity Db looks as follows.
```
<name>WSO2_IDENTITY_DB</name>
<description>Shared database for identity data</description>
<jndiConfig>
<name>jdbc/WSO2IdentityDB</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>{{database.identity_db.url}}</url>
<username>{{database.identity_db.username}}</username>
<password>{{database.identity_db.password}}</password>
<driverClassName>{{database.identity_db.driver}}</driverClassName>
{% for property_name,property_value in database.identity_db.pool_options.items() %}
<{{property_name}}>{{property_value}}</{{property_name}}>
{% endfor %}
</configuration>
</definition>
</datasource>
</datasources>
```
After starting the server the `master-datasources.xml` looks like below. Notice that formating is not done.
```
<name>WSO2_IDENTITY_DB</name>
<description>Shared database for identity data</description>
<jndiConfig>
<name>jdbc/WSO2IdentityDB</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:sqlserver://localhost:1433;databaseName=primary1;SendStringParametersAsUnicode=false</url>
<username>SA</username>
<password>MyPassword001</password>
<driverClassName>com.microsoft.sqlserver.jdbc.SQLServerDriver</driverClassName>
<maxWait>60000</maxWait>
<defaultAutoCommit>true</defaultAutoCommit>
<maxActive>50</maxActive>
<testOnBorrow>true</testOnBorrow>
<validationInterval>30000</validationInterval>
</configuration>
</definition>
</datasource>
</datasources>
```
**Expected behavior:**
It is nice with the alignments are fixed.
**Environment information**
- Product Version: 5.12.0
| 1.0 | Refactor Identity Db data source config - **Describe the issue:**
Currently, in the master datasources j2 template, the config for Identity Db looks as follows.
```
<name>WSO2_IDENTITY_DB</name>
<description>Shared database for identity data</description>
<jndiConfig>
<name>jdbc/WSO2IdentityDB</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>{{database.identity_db.url}}</url>
<username>{{database.identity_db.username}}</username>
<password>{{database.identity_db.password}}</password>
<driverClassName>{{database.identity_db.driver}}</driverClassName>
{% for property_name,property_value in database.identity_db.pool_options.items() %}
<{{property_name}}>{{property_value}}</{{property_name}}>
{% endfor %}
</configuration>
</definition>
</datasource>
</datasources>
```
After starting the server the `master-datasources.xml` looks like below. Notice that formating is not done.
```
<name>WSO2_IDENTITY_DB</name>
<description>Shared database for identity data</description>
<jndiConfig>
<name>jdbc/WSO2IdentityDB</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:sqlserver://localhost:1433;databaseName=primary1;SendStringParametersAsUnicode=false</url>
<username>SA</username>
<password>MyPassword001</password>
<driverClassName>com.microsoft.sqlserver.jdbc.SQLServerDriver</driverClassName>
<maxWait>60000</maxWait>
<defaultAutoCommit>true</defaultAutoCommit>
<maxActive>50</maxActive>
<testOnBorrow>true</testOnBorrow>
<validationInterval>30000</validationInterval>
</configuration>
</definition>
</datasource>
</datasources>
```
**Expected behavior:**
It is nice with the alignments are fixed.
**Environment information**
- Product Version: 5.12.0
| non_test | refactor identity db data source config describe the issue currently in the master datasources template the config for identity db looks as follows identity db shared database for identity data jdbc database identity db url database identity db username database identity db password database identity db driver for property name property value in database identity db pool options items property value endfor after starting the server the master datasources xml looks like below notice that formating is not done identity db shared database for identity data jdbc jdbc sqlserver localhost databasename sendstringparametersasunicode false sa com microsoft sqlserver jdbc sqlserverdriver true true expected behavior it is nice with the alignments are fixed environment information product version | 0 |
310,277 | 26,708,929,448 | IssuesEvent | 2023-01-27 21:06:30 | benthevining/Limes | https://api.github.com/repos/benthevining/Limes | closed | How to test FileWatcher class? | enhancement help wanted Testing stale | How should we test that the FileWatcher class is correctly firing its callbacks? | 1.0 | How to test FileWatcher class? - How should we test that the FileWatcher class is correctly firing its callbacks? | test | how to test filewatcher class how should we test that the filewatcher class is correctly firing its callbacks | 1 |
153,028 | 5,873,409,858 | IssuesEvent | 2017-05-15 13:58:35 | moby/moby | https://api.github.com/repos/moby/moby | closed | Named volume incorrectly removed after engine upgrade | area/volumes kind/bug priority/P1 version/17.04 | **Description**
A named volume associated to a container before a Docker Engine upgrade will be removed by `docker rm -v <container>` after the upgrade.
**Steps to reproduce the issue:**
1. Downgrade to Docker Engine 1.12.6: `sudo apt install docker-engine=1.12.6-0~ubuntu-xenial`
1. Create a named volume: `docker volume create --name foo`
2. Create a container mounting the newly created volume: `docker run --name repro -v foo:/foomnt alpine true`
3. Upgrade Docker Engine to the latest version: `sudo apt upgrade`
3. Remove the container created earlier with the `--volumes` option: `docker rm -v repro`
**Describe the results you received:**
The named volume is removed alongside the container.
**Describe the results you expected:**
The named volume remains after the container is removed.
**Additional information you deem important (e.g. issue happens only occasionally):**
Originally reported here: https://github.com/docker/compose/issues/4607
Note that the volume isn't removed if it was created with the same engine version.
**Output of `docker version`:**
```
$ docker version
Client:
Version: 17.04.0-ce
API version: 1.28
Go version: go1.7.5
Git commit: 4845c56
Built: Mon Apr 3 18:07:42 2017
OS/Arch: linux/amd64
Server:
Version: 17.04.0-ce
API version: 1.28 (minimum version 1.12)
Go version: go1.7.5
Git commit: 4845c56
Built: Mon Apr 3 18:07:42 2017
OS/Arch: linux/amd64
Experimental: false
```
**Output of `docker info`:**
```
Containers: 4
Running: 0
Paused: 0
Stopped: 4
Images: 109
Server Version: 17.04.0-ce
Storage Driver: aufs
Root Dir: /var/lib/docker/aufs
Backing Filesystem: extfs
Dirs: 249
Dirperm1 Supported: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Swarm: active
NodeID: sg2ufch61oe8j2ndv2vwqtehp
Is Manager: true
ClusterID: xhbxxpaiwazbnrfy0ms860ia8
Managers: 1
Nodes: 1
Orchestration:
Task History Retention Limit: 5
Raft:
Snapshot Interval: 10000
Number of Old Snapshots to Retain: 0
Heartbeat Tick: 1
Election Tick: 3
Dispatcher:
Heartbeat Period: 5 seconds
CA Configuration:
Expiry Duration: 3 months
Node Address: 192.168.100.237
Manager Addresses:
192.168.100.237:2377
Runtimes: runc
Default Runtime: runc
Init Binary:
containerd version: 422e31ce907fd9c3833a38d7b8fdd023e5a76e73
runc version: 9c2d8d184e5da67c95d601382adf14862e4f2228
init version: 949e6fa
Security Options:
apparmor
seccomp
Profile: default
Kernel Version: 4.4.0-72-generic
Operating System: Ubuntu 16.04.2 LTS
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 7.499GiB
Name: yuna
ID: YZQG:AKYJ:JQXJ:CEHT:62DP:PMWA:S43W:5X47:SSOE:UXGG:XHWS:555F
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
```
| 1.0 | Named volume incorrectly removed after engine upgrade - **Description**
A named volume associated to a container before a Docker Engine upgrade will be removed by `docker rm -v <container>` after the upgrade.
**Steps to reproduce the issue:**
1. Downgrade to Docker Engine 1.12.6: `sudo apt install docker-engine=1.12.6-0~ubuntu-xenial`
1. Create a named volume: `docker volume create --name foo`
2. Create a container mounting the newly created volume: `docker run --name repro -v foo:/foomnt alpine true`
3. Upgrade Docker Engine to the latest version: `sudo apt upgrade`
3. Remove the container created earlier with the `--volumes` option: `docker rm -v repro`
**Describe the results you received:**
The named volume is removed alongside the container.
**Describe the results you expected:**
The named volume remains after the container is removed.
**Additional information you deem important (e.g. issue happens only occasionally):**
Originally reported here: https://github.com/docker/compose/issues/4607
Note that the volume isn't removed if it was created with the same engine version.
**Output of `docker version`:**
```
$ docker version
Client:
Version: 17.04.0-ce
API version: 1.28
Go version: go1.7.5
Git commit: 4845c56
Built: Mon Apr 3 18:07:42 2017
OS/Arch: linux/amd64
Server:
Version: 17.04.0-ce
API version: 1.28 (minimum version 1.12)
Go version: go1.7.5
Git commit: 4845c56
Built: Mon Apr 3 18:07:42 2017
OS/Arch: linux/amd64
Experimental: false
```
**Output of `docker info`:**
```
Containers: 4
Running: 0
Paused: 0
Stopped: 4
Images: 109
Server Version: 17.04.0-ce
Storage Driver: aufs
Root Dir: /var/lib/docker/aufs
Backing Filesystem: extfs
Dirs: 249
Dirperm1 Supported: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Swarm: active
NodeID: sg2ufch61oe8j2ndv2vwqtehp
Is Manager: true
ClusterID: xhbxxpaiwazbnrfy0ms860ia8
Managers: 1
Nodes: 1
Orchestration:
Task History Retention Limit: 5
Raft:
Snapshot Interval: 10000
Number of Old Snapshots to Retain: 0
Heartbeat Tick: 1
Election Tick: 3
Dispatcher:
Heartbeat Period: 5 seconds
CA Configuration:
Expiry Duration: 3 months
Node Address: 192.168.100.237
Manager Addresses:
192.168.100.237:2377
Runtimes: runc
Default Runtime: runc
Init Binary:
containerd version: 422e31ce907fd9c3833a38d7b8fdd023e5a76e73
runc version: 9c2d8d184e5da67c95d601382adf14862e4f2228
init version: 949e6fa
Security Options:
apparmor
seccomp
Profile: default
Kernel Version: 4.4.0-72-generic
Operating System: Ubuntu 16.04.2 LTS
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 7.499GiB
Name: yuna
ID: YZQG:AKYJ:JQXJ:CEHT:62DP:PMWA:S43W:5X47:SSOE:UXGG:XHWS:555F
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
```
| non_test | named volume incorrectly removed after engine upgrade description a named volume associated to a container before a docker engine upgrade will be removed by docker rm v after the upgrade steps to reproduce the issue downgrade to docker engine sudo apt install docker engine ubuntu xenial create a named volume docker volume create name foo create a container mounting the newly created volume docker run name repro v foo foomnt alpine true upgrade docker engine to the latest version sudo apt upgrade remove the container created earlier with the volumes option docker rm v repro describe the results you received the named volume is removed alongside the container describe the results you expected the named volume remains after the container is removed additional information you deem important e g issue happens only occasionally originally reported here note that the volume isn t removed if it was created with the same engine version output of docker version docker version client version ce api version go version git commit built mon apr os arch linux server version ce api version minimum version go version git commit built mon apr os arch linux experimental false output of docker info containers running paused stopped images server version ce storage driver aufs root dir var lib docker aufs backing filesystem extfs dirs supported true logging driver json file cgroup driver cgroupfs plugins volume local network bridge host macvlan null overlay swarm active nodeid is manager true clusterid managers nodes orchestration task history retention limit raft snapshot interval number of old snapshots to retain heartbeat tick election tick dispatcher heartbeat period seconds ca configuration expiry duration months node address manager addresses runtimes runc default runtime runc init binary containerd version runc version init version security options apparmor seccomp profile default kernel version generic operating system ubuntu lts ostype linux architecture cpus total memory name yuna id yzqg akyj jqxj ceht pmwa ssoe uxgg xhws docker root dir var lib docker debug mode client false debug mode server false registry experimental false insecure registries live restore enabled false warning no swap limit support | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.