CoolFace
Modelpublic

karths/binary_classification_train_main

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes13downloads
test_data_for_future_evaluation.csv81322 linesDownload Raw Back to root
1Unnamed: 0,id,type,created_at,repo,repo_url,action,title,labels,body,index,text_combine,label,text,binary_label2620985,19575120983.0,IssuesEvent,2022-01-04 14:38:56,CDCgov/prime-reportstream,https://api.github.com/repos/CDCgov/prime-reportstream,reopened,IL - OBX-23.1 Org Name truncate to 50 chars,onboarding-ops blocked receiver High Priority support,"Illinois is having a problem with the length of the organization name in OBX 23.1. The maximum character sizing limit for this subfield is 50, and quite often more than 50 characters are being sent.3 4![image.png](https://images.zenhubusercontent.com/60d1eba7caf0775fd79203f8/19c24e5d-a744-461b-917a-7df14402fc25)5 6",1.0,"IL - OBX-23.1 Org Name truncate to 50 chars - Illinois is having a problem with the length of the organization name in OBX 23.1. The maximum character sizing limit for this subfield is 50, and quite often more than 50 characters are being sent.7 8![image.png](https://images.zenhubusercontent.com/60d1eba7caf0775fd79203f8/19c24e5d-a744-461b-917a-7df14402fc25)9 10",0,il   obx     org name truncate to   chars   illinois is having a problem with the length of the organization name in obx      the maximum character sizing limit for this subfield is    and quite often more than   characters are being sent         ,0111493,6461248458.0,IssuesEvent,2017-08-16 07:35:07,ansible/ansible-modules-core,https://api.github.com/repos/ansible/ansible-modules-core,closed,Yum can't downgrade packages,affects_2.3 bug_report waiting_on_maintainer,"As of 1.9.1, the yum module can't downgrade packages.12 13I saw a 77e66cb01e9121e5fcbdc08e87d248c21bdad497 attempting to fix this, but it had to be reverted in d77f1976a6cbf30cd2284817e92a838f7f7e47ef .14 15(I don't know the story behind the revert, and I couldn't find an open bug or public discussion.. so I'm opening an issue!)16",True,"Yum can't downgrade packages - As of 1.9.1, the yum module can't downgrade packages.17 18I saw a 77e66cb01e9121e5fcbdc08e87d248c21bdad497 attempting to fix this, but it had to be reverted in d77f1976a6cbf30cd2284817e92a838f7f7e47ef .19 20(I don't know the story behind the revert, and I couldn't find an open bug or public discussion.. so I'm opening an issue!)21",1,yum can t downgrade packages   as of        the yum module can t downgrade packages   i saw a   attempting to fix this  but it had to be reverted in       i don t know the story behind the revert  and i couldn t find an open bug or public discussion   so i m opening an issue   ,12267793,28048486038.0,IssuesEvent,2023-03-29 02:21:00,MicrosoftDocs/live-share,https://api.github.com/repos/MicrosoftDocs/live-share,closed,[VS][C++] Error list not working,bug client: vs area: language services needs-repro,Error list on the guest in a Live Share session is not synced with host's error list.,1.0,[VS][C++] Error list not working - Error list on the guest in a Live Share session is not synced with host's error list.,0,   error list not working   error list on the guest in a live share session is not synced with host s error list ,023683072,23367631212.0,IssuesEvent,2022-08-10 16:43:53,ASSETS-Conference/assets2022,https://api.github.com/repos/ASSETS-Conference/assets2022,closed,Adding table of content for long pages,medium priority,Potentially using https://tscanlin.github.io/tocbot/ for the long pages. Look into it and check if it is accessible. ,1.0,Adding table of content for long pages - Potentially using https://tscanlin.github.io/tocbot/ for the long pages. Look into it and check if it is accessible. ,0,adding table of content for long pages   potentially using   for the long pages  look into it and check if it is accessible  ,0245219,26479630348.0,IssuesEvent,2023-01-17 13:49:16,OpenRefine/OpenRefine,https://api.github.com/repos/OpenRefine/OpenRefine,closed,Simplify the CI/CD workflows to use the builtin Maven cache feature in setup-java action that now supports it,bug maintainability CI/CD,"We can now remove the actions/cache steps and replace them with a config setting under `setup-java` action.  It automatically uses actions/cache already under the hood and will create the fileHash for the Maven `**/pom.xml` automatically.
25Documention: https://github.com/actions/setup-java/blob/main/README.md#caching-packages-dependencies
26
27Usage such as:
28```
29steps:
30- uses: actions/checkout@v3
31- uses: actions/setup-java@v3
32  with:
33    distribution: 'temurin'
34    java-version: '17'
35    cache: 'maven'
36- name: Build with Maven
37  run: mvn -B package --file pom.xml
38```
39
40### To Reproduce
41Steps to reproduce the behavior:
421. Run a PR workflow.
43
44### Current Results
45Extra steps not need for `actions/cache` separately.
46
47### Expected Behavior
48cleaner and less verbose build/test output in logs.
49
50",True,"Simplify the CI/CD workflows to use the builtin Maven cache feature in setup-java action that now supports it - We can now remove the actions/cache steps and replace them with a config setting under `setup-java` action.  It automatically uses actions/cache already under the hood and will create the fileHash for the Maven `**/pom.xml` automatically.
51Documention: https://github.com/actions/setup-java/blob/main/README.md#caching-packages-dependencies
52
53Usage such as:
54```
55steps:
56- uses: actions/checkout@v3
57- uses: actions/setup-java@v3
58  with:
59    distribution: 'temurin'
60    java-version: '17'
61    cache: 'maven'
62- name: Build with Maven
63  run: mvn -B package --file pom.xml
64```
65
66### To Reproduce
67Steps to reproduce the behavior:
681. Run a PR workflow.
69
70### Current Results
71Extra steps not need for `actions/cache` separately.
72
73### Expected Behavior
74cleaner and less verbose build/test output in logs.
75
76",1,simplify the ci cd workflows to use the builtin maven cache feature in setup java action that now supports it   we can now remove the actions cache steps and replace them with a config setting under  setup java  action   it automatically uses actions cache already under the hood and will create the filehash for the maven     pom xml  automatically   documention       usage such as        steps     uses  actions checkout      uses  actions setup java      with       distribution   temurin       java version           cache   maven     name  build with maven    run  mvn  b package   file pom xml             to reproduce  steps to reproduce the behavior      run a pr workflow         current results  extra steps not need for  actions cache  separately         expected behavior  cleaner and less verbose build test output in logs     ,177458,3636010678.0,IssuesEvent,2016-02-12 00:24:04,antigenomics/vdjdb-db,https://api.github.com/repos/antigenomics/vdjdb-db,closed,"Combine extra columns to a single ""comment"" column",maintainance,"- Covert table of additional columns to a single column with JSON data. For example
78
79tissue | cell type
80--------|-----------
81 ``spleen``  | ``cd8``
82
83changes to
84
85
86comment| 
87--------|
88``{ ""tissue"":""spleen"", ""cell type"":""cd8""  }``| 
89
90- Do it automatically upon database assembly.",True,"Combine extra columns to a single ""comment"" column - - Covert table of additional columns to a single column with JSON data. For example
91
92tissue | cell type
93--------|-----------
94 ``spleen``  | ``cd8``
95
96changes to
97
98
99comment| 
100--------|
101``{ ""tissue"":""spleen"", ""cell type"":""cd8""  }``| 
102
103- Do it automatically upon database assembly.",1,combine extra columns to a single  comment  column     covert table of additional columns to a single column with json data  for example    tissue   cell type                           spleen               changes to      comment                    tissue   spleen    cell type                  do it automatically upon database assembly ,110417607,4174961541.0,IssuesEvent,2016-06-21 15:29:06,telerik/kendo-ui-core,https://api.github.com/repos/telerik/kendo-ui-core,opened,Document limited touch gesture support when multiple Grid features rely on it,Documentation,1043467 (Drawer + virtual Grid),1.0,Document limited touch gesture support when multiple Grid features rely on it - 1043467 (Drawer + virtual Grid),0,document limited touch gesture support when multiple grid features rely on it      drawer   virtual grid ,010545435,12799854314.0,IssuesEvent,2020-07-02 16:02:57,snowplow/snowplow-android-tracker,https://api.github.com/repos/snowplow/snowplow-android-tracker,closed,Fix importing of kotlin on gradle,priority:medium status:completed type:defect,"This project is written 100% in Java, however the SDK ships with a dependency on [the Kotlin stdlib](https://github.com/snowplow/snowplow-android-tracker/blob/master/snowplow-tracker/build.gradle#L85) and [Kotlin Android extensions](https://github.com/snowplow/snowplow-android-tracker/blob/master/snowplow-tracker/build.gradle#L7). Kotlin was added in [this PR](https://github.com/snowplow/snowplow-android-tracker/pull/358), but seems unrelated?
106
107Also as an aside it would be great if this library added nullability annotations to make Kotlin interoperability nicer! I can open up a separate issue for this if you'd prefer.",1.0,"Fix importing of kotlin on gradle - This project is written 100% in Java, however the SDK ships with a dependency on [the Kotlin stdlib](https://github.com/snowplow/snowplow-android-tracker/blob/master/snowplow-tracker/build.gradle#L85) and [Kotlin Android extensions](https://github.com/snowplow/snowplow-android-tracker/blob/master/snowplow-tracker/build.gradle#L7). Kotlin was added in [this PR](https://github.com/snowplow/snowplow-android-tracker/pull/358), but seems unrelated?
108
109Also as an aside it would be great if this library added nullability annotations to make Kotlin interoperability nicer! I can open up a separate issue for this if you'd prefer.",0,fix importing of kotlin on gradle   this project is written    in java  however the sdk ships with a dependency on     and     kotlin was added in     but seems unrelated     also as an aside it would be great if this library added nullability annotations to make kotlin interoperability nicer  i can open up a separate issue for this if you d prefer ,011015153,5071987968.0,IssuesEvent,2016-12-26 18:04:53,exercism/xjava,https://api.github.com/repos/exercism/xjava,closed,raindrops: make test failures easier to troubleshoot,code good first patch,"[`raindrops`](https://github.com/exercism/xjava/blob/master/exercises/raindrops/src/test/java/RaindropsTest.java) uses the JUnit [`Parameterized`](https://github.com/junit-team/junit4/wiki/parameterized-tests) test runner.  This was done to make the test more compact (and once you learn how the mechanism works, easier to read).
111
112However, when a test fails, the error message does not indicate which value failed.  This makes it really difficult to know why the test failed.
113
114Test failures should clearly indicate what failed.
115
116**To Do:**
117- [x] ensure that this exercise is using JUnit 4.12 or later
118- [ ] add a format string to the `@Parameters` annotation.
119
120_(ref: #147)_
121",1.0,"raindrops: make test failures easier to troubleshoot - [`raindrops`](https://github.com/exercism/xjava/blob/master/exercises/raindrops/src/test/java/RaindropsTest.java) uses the JUnit [`Parameterized`](https://github.com/junit-team/junit4/wiki/parameterized-tests) test runner.  This was done to make the test more compact (and once you learn how the mechanism works, easier to read).
122
123However, when a test fails, the error message does not indicate which value failed.  This makes it really difficult to know why the test failed.
124
125Test failures should clearly indicate what failed.
126
127**To Do:**
128- [x] ensure that this exercise is using JUnit 4.12 or later
129- [ ] add a format string to the `@Parameters` annotation.
130
131_(ref: #147)_
132",0,raindrops  make test failures easier to troubleshoot       uses the junit     test runner   this was done to make the test more compact  and once you learn how the mechanism works  easier to read      however  when a test fails  the error message does not indicate which value failed   this makes it really difficult to know why the test failed     test failures should clearly indicate what failed       to do         ensure that this exercise is using junit     or later      add a format string to the   parameters  annotation       ref        ,0133162666,12685190237.0,IssuesEvent,2020-06-20 02:42:24,cockroachdb/cockroach,https://api.github.com/repos/cockroachdb/cockroach,closed,roachtest: no volatility for cast sqlsmith/setup=empty/setting=default failed,C-test-failure O-roachtest O-robot branch-master release-blocker,"[(roachtest).sqlsmith/setup=empty/setting=default failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2013639&tab=buildLog) on [master@9eea0be192499fa7d29b5eca5ed14173982b25f0](https://github.com/cockroachdb/cockroach/commits/9eea0be192499fa7d29b5eca5ed14173982b25f0):134 135```136											)137										),138										(('41 years 10 mons 278 days 15:41:21.695483':::INTERVAL, '':::STRING)),139										(('37 years 127 days 10:37:18.966288':::INTERVAL, e'\x17>!`o':::STRING)),140										(('62 years 777 days 20:47:52.335967':::INTERVAL, e'O.\x04\x1a\x18\x11I':::STRING))141								)142									AS tab_165 (col_284)143								RIGHT JOIN (VALUES ('06:08:31.712812':::TIME)) AS tab_166 (col_285)144									FULL JOIN (145											VALUES146												('01:13:19.05808+13:29:00':::TIMETZ),147												('06:13:39.013972+14:52:00':::TIMETZ),148												('01:10:09.06268-05:06:00':::TIMETZ),149												('22:21:23.701203+10:28:00':::TIMETZ),150												(NULL),151												(152													COALESCE(153														'15:24:24.193463+01:58:00':::TIMETZ,154														'06:47:25.508601+10:50:00':::TIMETZ155													)156												)157										)158											AS tab_167 (col_286) ON true ON NULL,159								(160									VALUES161										(162											COALESCE(3565973807:::OID, 3506951745:::OID),163											ARRAY['-45 years -3 mons -734 days -22:27:05.203906':::INTERVAL,'57 years 9 mons 464 days 02:58:02.027105':::INTERVAL,'-71 years -1 mons -219 days -15:52:43.39243':::INTERVAL,'290 years':::INTERVAL,'46 years 11 mons 740 days 05:39:54.14459':::INTERVAL,'12 years 438 days 11:51:30.856446':::INTERVAL]164										),165										(166											259206075:::OID,167											(NULL::INTERVAL[] || ARRAY['-29 years -6 mons -142 days -16:12:31.810018':::INTERVAL,'58 years 11 mons 529 days 06:07:51.173242':::INTERVAL,'52 years 930 days 17:33:56.673499':::INTERVAL,'1 day':::INTERVAL]::INTERVAL[])::INTERVAL[]168										),169										(170											55508376:::OID,171											ARRAY['10 years 3 mons 845 days 16:45:18.378939':::INTERVAL,'67 years 5 mons 761 days 23:18:58.917765':::INTERVAL]172										),173										(1736996154:::OID, ARRAY[]:::INTERVAL[])174								)175									AS tab_168 (col_287, col_288)176							LIMIT177								1:::INT8178						)179					)180			)181				AS tab_169 (col_290, col_291)182		WHERE183			false184		LIMIT185			39:::INT8;186 187```188 189<details><summary>More</summary><p>190 191 192Artifacts: [/sqlsmith/setup=empty/setting=default](https://teamcity.cockroachdb.com/viewLog.html?buildId=2013639&tab=artifacts#/sqlsmith/setup=empty/setting=default)193Related:194- #47541 roachtest: sqlsmith/setup=empty/setting=default failed  [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [branch-release-20.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.1) [release-blocker](https://api.github.com/repos/cockroachdb/cockroach/labels/release-blocker)195 196[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Asqlsmith%2Fsetup%3Dempty%2Fsetting%3Ddefault.%2A&sort=title&restgroup=false&display=lastcommented+project)197<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>198",2.0,"roachtest: no volatility for cast sqlsmith/setup=empty/setting=default failed - [(roachtest).sqlsmith/setup=empty/setting=default failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2013639&tab=buildLog) on [master@9eea0be192499fa7d29b5eca5ed14173982b25f0](https://github.com/cockroachdb/cockroach/commits/9eea0be192499fa7d29b5eca5ed14173982b25f0):199 200```201											)202										),203										(('41 years 10 mons 278 days 15:41:21.695483':::INTERVAL, '':::STRING)),204										(('37 years 127 days 10:37:18.966288':::INTERVAL, e'\x17>!`o':::STRING)),205										(('62 years 777 days 20:47:52.335967':::INTERVAL, e'O.\x04\x1a\x18\x11I':::STRING))206								)207									AS tab_165 (col_284)208								RIGHT JOIN (VALUES ('06:08:31.712812':::TIME)) AS tab_166 (col_285)209									FULL JOIN (210											VALUES211												('01:13:19.05808+13:29:00':::TIMETZ),212												('06:13:39.013972+14:52:00':::TIMETZ),213												('01:10:09.06268-05:06:00':::TIMETZ),214												('22:21:23.701203+10:28:00':::TIMETZ),215												(NULL),216												(217													COALESCE(218														'15:24:24.193463+01:58:00':::TIMETZ,219														'06:47:25.508601+10:50:00':::TIMETZ220													)221												)222										)223											AS tab_167 (col_286) ON true ON NULL,224								(225									VALUES226										(227											COALESCE(3565973807:::OID, 3506951745:::OID),228											ARRAY['-45 years -3 mons -734 days -22:27:05.203906':::INTERVAL,'57 years 9 mons 464 days 02:58:02.027105':::INTERVAL,'-71 years -1 mons -219 days -15:52:43.39243':::INTERVAL,'290 years':::INTERVAL,'46 years 11 mons 740 days 05:39:54.14459':::INTERVAL,'12 years 438 days 11:51:30.856446':::INTERVAL]229										),230										(231											259206075:::OID,232											(NULL::INTERVAL[] || ARRAY['-29 years -6 mons -142 days -16:12:31.810018':::INTERVAL,'58 years 11 mons 529 days 06:07:51.173242':::INTERVAL,'52 years 930 days 17:33:56.673499':::INTERVAL,'1 day':::INTERVAL]::INTERVAL[])::INTERVAL[]233										),234										(235											55508376:::OID,236											ARRAY['10 years 3 mons 845 days 16:45:18.378939':::INTERVAL,'67 years 5 mons 761 days 23:18:58.917765':::INTERVAL]237										),238										(1736996154:::OID, ARRAY[]:::INTERVAL[])239								)240									AS tab_168 (col_287, col_288)241							LIMIT242								1:::INT8243						)244					)245			)246				AS tab_169 (col_290, col_291)247		WHERE248			false249		LIMIT250			39:::INT8;251 252```253 254<details><summary>More</summary><p>255 256 257Artifacts: [/sqlsmith/setup=empty/setting=default](https://teamcity.cockroachdb.com/viewLog.html?buildId=2013639&tab=artifacts#/sqlsmith/setup=empty/setting=default)258Related:259- #47541 roachtest: sqlsmith/setup=empty/setting=default failed  [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [branch-release-20.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.1) [release-blocker](https://api.github.com/repos/cockroachdb/cockroach/labels/release-blocker)260 261[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Asqlsmith%2Fsetup%3Dempty%2Fsetting%3Ddefault.%2A&sort=title&restgroup=false&display=lastcommented+project)262<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>263",0,roachtest  no volatility for cast sqlsmith setup empty setting default failed       on          											  										   										     years   mons   days            interval       string    										     years   days            interval  e      o    string    										     years   days            interval  e o             string   								  									as tab    col    								right join  values              time   as tab    col    									full join   											values 												                   timetz   												                   timetz   												                   timetz   												                   timetz   												 null   												  													coalesce  														                  timetz  														                  timetz 													  												  										  											as tab    col    on true on null  								  									values 										  											coalesce     oid      oid   											array  										   										  											    oid  											 null  interval     array   interval    interval  										   										  											    oid  											array  										   										     oid  array    interval   								  									as tab    col    col    							limit 								      						  					  			  				as tab    col    col    		where 			false 		limit 			               more     artifacts      related       roachtest  sqlsmith setup empty setting default failed                            powered by     ,02645707,8367726522.0,IssuesEvent,2018-10-04 13:05:10,SAEONData/ckanext-metadata,https://api.github.com/repos/SAEONData/ckanext-metadata,closed,Metadata record uniqueness,requirement,"An attempt to create a metadata record with the same DOI and download link as an existing one, should be processed as an update to that existing record.
265
266A match on DOI but not on download link, or vice versa, should be interpreted as an error.",1.0,"Metadata record uniqueness - An attempt to create a metadata record with the same DOI and download link as an existing one, should be processed as an update to that existing record.
267
268A match on DOI but not on download link, or vice versa, should be interpreted as an error.",0,metadata record uniqueness   an attempt to create a metadata record with the same doi and download link as an existing one  should be processed as an update to that existing record     a match on doi but not on download link  or vice versa  should be interpreted as an error ,02691671,6574093737.0,IssuesEvent,2017-09-11 11:27:28,ansible/ansible-modules-core,https://api.github.com/repos/ansible/ansible-modules-core,closed,docker_network: unable to deal with network IDs,affects_2.2 bug_report cloud docker waiting_on_maintainer,"##### ISSUE TYPE
270 - Bug Report
271
272##### COMPONENT NAME
273- `docker_network`
274
275##### ANSIBLE VERSION
276```
277ansible 2.2.0.0
278  config file = /home/schwarz/code/infrastructure/ansible.cfg
279  configured module search path = Default w/o overrides
280```
281
282##### CONFIGURATION
283N/A
284
285##### OS / ENVIRONMENT
286Debian GNU/Linux
287
288##### SUMMARY
289`docker` allows addressing networks by ID. Ansible should do the same. For the sake of consistency with the `docker` CLI and other modules.
290
291##### STEPS TO REPRODUCE
292
293``` sh
294$ docker network create foo
295f22618292b2d841267b21a1fe9629ecbe2f4b4262d9baf080491f53846465f93
296$ ansible -m docker_network -a 'name=f22618292b2d841267b21a1fe9629ecbe2f4b4262d9baf080491f53846465f93 state=absent' localhost
297
298```
299
300##### EXPECTED RESULTS
301The output should be the same as from `ansible -m docker_network -a 'name=foo state=absent' localhost`.
302
303```
304localhost | SUCCESS => {                      
305    ""actions"": [
306        ""Removed network f22618292b2d841267b21a1fe9629ecbe2f4b4262d9baf080491f53846465f93""
307    ], 
308    ""changed"": true
309}
310```
311
312##### ACTUAL RESULTS
313Instead no network is deleted.
314
315```
316localhost | SUCCESS => {
317    ""actions"": [], 
318    ""changed"": false
319}
320```
321",True,"docker_network: unable to deal with network IDs - ##### ISSUE TYPE
322 - Bug Report
323
324##### COMPONENT NAME
325- `docker_network`
326
327##### ANSIBLE VERSION
328```
329ansible 2.2.0.0
330  config file = /home/schwarz/code/infrastructure/ansible.cfg
331  configured module search path = Default w/o overrides
332```
333
334##### CONFIGURATION
335N/A
336
337##### OS / ENVIRONMENT
338Debian GNU/Linux
339
340##### SUMMARY
341`docker` allows addressing networks by ID. Ansible should do the same. For the sake of consistency with the `docker` CLI and other modules.
342
343##### STEPS TO REPRODUCE
344
345``` sh
346$ docker network create foo
347f22618292b2d841267b21a1fe9629ecbe2f4b4262d9baf080491f53846465f93
348$ ansible -m docker_network -a 'name=f22618292b2d841267b21a1fe9629ecbe2f4b4262d9baf080491f53846465f93 state=absent' localhost
349
350```
351
352##### EXPECTED RESULTS
353The output should be the same as from `ansible -m docker_network -a 'name=foo state=absent' localhost`.
354
355```
356localhost | SUCCESS => {                      
357    ""actions"": [
358        ""Removed network f22618292b2d841267b21a1fe9629ecbe2f4b4262d9baf080491f53846465f93""
359    ], 
360    ""changed"": true
361}
362```
363
364##### ACTUAL RESULTS
365Instead no network is deleted.
366
367```
368localhost | SUCCESS => {
369    ""actions"": [], 
370    ""changed"": false
371}
372```
373",1,docker network  unable to deal with network ids         issue type     bug report          component name     docker network           ansible version       ansible            config file    home schwarz code infrastructure ansible cfg    configured module search path   default w o overrides               configuration  n a          os   environment  debian gnu linux          summary   docker  allows addressing networks by id  ansible should do the same  for the sake of consistency with the  docker  cli and other modules           steps to reproduce        sh    docker network create foo       ansible  m docker network  a  name   state absent  localhost                 expected results  the output should be the same as from  ansible  m docker network  a  name foo state absent  localhost           localhost   success                                  actions               removed network                   changed   true                  actual results  instead no network is deleted          localhost   success            actions             changed   false          ,137438315,5173562276.0,IssuesEvent,2017-01-18 16:22:47,ngageoint/hootenanny-ui,https://api.github.com/repos/ngageoint/hootenanny-ui,closed,Issue with Cookie Cutter Conflation,Category: Test Identified During Regression Test Status: Ready for Test Type: Bug,"Attempted the following method:
375
376**Cookie Cutter & Horizontal** 
377For this example we’ll need to create two custom translations, one for the DC Street Centerline Data* described in and a second simple translation to ensure that the OSM highway data for DC maintains the correct osm tags.  
378
379Ingest DC Street datasets using the recently created custom translation files. Note the different Translation Schema files used to import each dataset. 
380- district_of_columbia_highway.zip
381- Street_Centerline_Light.shp
382Return to Map and select the Street Centerlines Light as the Reference Dataset, dc highway osm as the Secondary dataset.
383Click ‘Conflate’
384Change the value for Type to Cookie Cutter & Horizontal.
385Hit Conflate. Note the conflation time will vary depending on the specs of the machine. This example took about 10-15 min to run locally.
38650+ reviews should appear.  ----> Instead of launching into review mode, it kicks back an error (will be happy to include the log upon request due to length)
387
388Hypothesized it could be any issue with the data, but I attempted the above cookie cut conflation on Hoot NOME with zero issues. Would somebody mind trying to replicate the results on hoot release? ",3.0,"Issue with Cookie Cutter Conflation - Attempted the following method:
389
390**Cookie Cutter & Horizontal** 
391For this example we’ll need to create two custom translations, one for the DC Street Centerline Data* described in and a second simple translation to ensure that the OSM highway data for DC maintains the correct osm tags.  
392
393Ingest DC Street datasets using the recently created custom translation files. Note the different Translation Schema files used to import each dataset. 
394- district_of_columbia_highway.zip
395- Street_Centerline_Light.shp
396Return to Map and select the Street Centerlines Light as the Reference Dataset, dc highway osm as the Secondary dataset.
397Click ‘Conflate’
398Change the value for Type to Cookie Cutter & Horizontal.
399Hit Conflate. Note the conflation time will vary depending on the specs of the machine. This example took about 10-15 min to run locally.
40050+ reviews should appear.  ----> Instead of launching into review mode, it kicks back an error (will be happy to include the log upon request due to length)
401
402Hypothesized it could be any issue with the data, but I attempted the above cookie cut conflation on Hoot NOME with zero issues. Would somebody mind trying to replicate the results on hoot release? ",0,issue with cookie cutter conflation   attempted the following method       cookie cutter   horizontal     for this example we’ll need to create two custom translations  one for the dc street centerline data  described in and a second simple translation to ensure that the osm highway data for dc maintains the correct osm tags       ingest dc street datasets using the recently created custom translation files  note the different translation schema files used to import each dataset      district of columbia highway zip    street centerline light shp  return to map and select the street centerlines light as the reference dataset  dc highway osm as the secondary dataset   click ‘conflate’  change the value for type to cookie cutter   horizontal   hit conflate  note the conflation time will vary depending on the specs of the machine  this example took about     min to run locally      reviews should appear         instead of launching into review mode  it kicks back an error  will be happy to include the log upon request due to length     hypothesized it could be any issue with the data  but i attempted the above cookie cut conflation on hoot nome with zero issues  would somebody mind trying to replicate the results on hoot release  ,04031513,6543951398.0,IssuesEvent,2017-09-03 09:02:53,cucumber/aruba,https://api.github.com/repos/cucumber/aruba,closed,Improve branch-model,needs-feedback/by-maintainer,"## Summary404 405Improve branch-model to make contributing easier.406 407<!--- Provide a general summary of the issue in the Title above -->408## Expected Behavior409 410Taken from [here](https://gitter.im/cucumber/aruba?at=56fd558f76b6f9de194cefef).411 412it's mostly bugfixes and new features (like Docker), so there shouldn't be any conflicts. If that's an issue, it's best to switch master to 1.x, branch off 0.14 for backporting, and just focus on releasing 1.x ASAP. It's no problem to then work on 2.x a month from now - no one will complain because of ""too many major releases"". Aruba is complex, so learning is expected. And if learning is reflected in ""multiple major releases"", that's just an indication of how much learning (or rework) was needed, nothing else. I'm guessing it's actually more useful to just skip to 2.x (master - without releasing), branch off 1.x as unreleased as ""work in progress"" (too keep the branches). E.g. I'm (as a contributor) only interested in master and not backward compatibility or deprecations - so it makes no sense to add an artificial ""burden"" on master. You can always work on a ""transition release"" - but only if there's a genuine need in the community. Master branch should be optimized for quickly accepting PRs. (If PRs don't have priority over other work, contributing feels very discouraging - as if there's a ton of ""bureaucracy""). It doesn't make sense to expect contributors to make backports of their own fixes (that they don't need themselves).413 414<!--- If you're describing a bug, tell us what should happen -->415 416<!--- If you're suggesting a change/improvement, tell us how it should work -->417## Current Behavior418 419It takes a long time to release a major release.420 421<!--- If describing a bug, tell us what happens instead of the expected behavior -->422 423<!--- If suggesting a change/improvement, explain the difference from current behavior -->424## Possible Solution425 426Release faster.427 428<!--- Not obligatory, but suggest a fix/reason for the bug, -->429 430<!--- or ideas how to implement the addition or change -->431",True,"Improve branch-model - ## Summary432 433Improve branch-model to make contributing easier.434 435<!--- Provide a general summary of the issue in the Title above -->436## Expected Behavior437 438Taken from [here](https://gitter.im/cucumber/aruba?at=56fd558f76b6f9de194cefef).439 440it's mostly bugfixes and new features (like Docker), so there shouldn't be any conflicts. If that's an issue, it's best to switch master to 1.x, branch off 0.14 for backporting, and just focus on releasing 1.x ASAP. It's no problem to then work on 2.x a month from now - no one will complain because of ""too many major releases"". Aruba is complex, so learning is expected. And if learning is reflected in ""multiple major releases"", that's just an indication of how much learning (or rework) was needed, nothing else. I'm guessing it's actually more useful to just skip to 2.x (master - without releasing), branch off 1.x as unreleased as ""work in progress"" (too keep the branches). E.g. I'm (as a contributor) only interested in master and not backward compatibility or deprecations - so it makes no sense to add an artificial ""burden"" on master. You can always work on a ""transition release"" - but only if there's a genuine need in the community. Master branch should be optimized for quickly accepting PRs. (If PRs don't have priority over other work, contributing feels very discouraging - as if there's a ton of ""bureaucracy""). It doesn't make sense to expect contributors to make backports of their own fixes (that they don't need themselves).441 442<!--- If you're describing a bug, tell us what should happen -->443 444<!--- If you're suggesting a change/improvement, tell us how it should work -->445## Current Behavior446 447It takes a long time to release a major release.448 449<!--- If describing a bug, tell us what happens instead of the expected behavior -->450 451<!--- If suggesting a change/improvement, explain the difference from current behavior -->452## Possible Solution453 454Release faster.455 456<!--- Not obligatory, but suggest a fix/reason for the bug, -->457 458<!--- or ideas how to implement the addition or change -->459",1,improve branch model      summary  improve branch model to make contributing easier        expected behavior  taken from      it s mostly bugfixes and new features  like docker   so there shouldn t be any conflicts  if that s an issue  it s best to switch master to   x  branch off     for backporting  and just focus on releasing   x asap  it s no problem to then work on   x a month from now   no one will complain because of  too many major releases   aruba is complex  so learning is expected  and if learning is reflected in  multiple major releases   that s just an indication of how much learning  or rework  was needed  nothing else  i m guessing it s actually more useful to just skip to   x  master   without releasing   branch off   x as unreleased as  work in progress   too keep the branches   e g  i m  as a contributor  only interested in master and not backward compatibility or deprecations   so it makes no sense to add an artificial  burden  on master  you can always work on a  transition release    but only if there s a genuine need in the community  master branch should be optimized for quickly accepting prs   if prs don t have priority over other work  contributing feels very discouraging   as if there s a ton of  bureaucracy    it doesn t make sense to expect contributors to make backports of their own fixes  that they don t need themselves            current behavior  it takes a long time to release a major release           possible solution  release faster        ,146041568,16813157032.0,IssuesEvent,2021-06-17 02:18:45,MicrosoftDocs/azure-docs,https://api.github.com/repos/MicrosoftDocs/azure-docs,closed,Is there a log that contains Unauthorized access to the service bus,Pri2 cxp product-question service-bus-messaging/svc triaged,"We have a problem that when connection made with Azure Service Bus from VS2019, with Azure Authentication Account set, that on machine A it works fine and on machine B it doesn't work. Exactly the same code and same settings.
461
462On the machine that doesn't work we receive the following exception:
463`Unauthorized access. 'Listen,Manage,SubscriptionRuleRead' claim(s) are required to perform this operation. Resource: 'sb://sbn-xxx-dev-001.servicebus.windows.net/xxxtopic/subscriptions/xxxsubscription/$management'.`
464
465`Microsoft.Azure.ServiceBus.UnauthorizedException: Unauthorized access. 'Listen' claim(s) are required to perform this operation. Resource: 'sb://sbn-xxx-dev-001.servicebus.windows.net/xxxtopic/subscriptions/xxxsubscription'`
466
467Where can I track which account/username/SAS/etc is used to contact the service bus?
468
469Code
470---
471#### Document Details
472
473⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
474
475* ID: 23735779-3536-079f-9d5c-1b5780924dfc
476* Version Independent ID: 9f358dfa-8bfc-38cd-4bf7-b04f0acad5b7
477* Content: [Azure Service Bus diagnostics logs - Azure Service Bus](https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-diagnostic-logs)
478* Content Source: [articles/service-bus-messaging/service-bus-diagnostic-logs.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/service-bus-messaging/service-bus-diagnostic-logs.md)
479* Service: **service-bus-messaging**
480* GitHub Login: @spelluru
481* Microsoft Alias: **spelluru**",1.0,"Is there a log that contains Unauthorized access to the service bus - We have a problem that when connection made with Azure Service Bus from VS2019, with Azure Authentication Account set, that on machine A it works fine and on machine B it doesn't work. Exactly the same code and same settings.
482
483On the machine that doesn't work we receive the following exception:
484`Unauthorized access. 'Listen,Manage,SubscriptionRuleRead' claim(s) are required to perform this operation. Resource: 'sb://sbn-xxx-dev-001.servicebus.windows.net/xxxtopic/subscriptions/xxxsubscription/$management'.`
485
486`Microsoft.Azure.ServiceBus.UnauthorizedException: Unauthorized access. 'Listen' claim(s) are required to perform this operation. Resource: 'sb://sbn-xxx-dev-001.servicebus.windows.net/xxxtopic/subscriptions/xxxsubscription'`
487
488Where can I track which account/username/SAS/etc is used to contact the service bus?
489
490Code
491---
492#### Document Details
493
494⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
495
496* ID: 23735779-3536-079f-9d5c-1b5780924dfc
497* Version Independent ID: 9f358dfa-8bfc-38cd-4bf7-b04f0acad5b7
498* Content: [Azure Service Bus diagnostics logs - Azure Service Bus](https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-diagnostic-logs)
499* Content Source: [articles/service-bus-messaging/service-bus-diagnostic-logs.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/service-bus-messaging/service-bus-diagnostic-logs.md)
500* Service: **service-bus-messaging**
501* GitHub Login: @spelluru
502* Microsoft Alias: **spelluru**",0,is there a log that contains unauthorized access to the service bus   we have a problem that when connection made with azure service bus from    with azure authentication account set  that on machine a it works fine and on machine b it doesn t work  exactly the same code and same settings     on the machine that doesn t work we receive the following exception    unauthorized access   listen manage subscriptionruleread  claim s  are required to perform this operation  resource   sb   sbn xxx dev   servicebus windows net xxxtopic subscriptions xxxsubscription  management        microsoft azure servicebus unauthorizedexception  unauthorized access   listen  claim s  are required to perform this operation  resource   sb   sbn xxx dev   servicebus windows net xxxtopic subscriptions xxxsubscription      where can i track which account username sas etc is used to contact the service bus     code            document details    ⚠  do not edit this section  it is required for docs microsoft com ➟ github issue linking        id               version independent id               content         content source         service    service bus messaging      github login   spelluru    microsoft alias    spelluru  ,0503283843,21334860577.0,IssuesEvent,2022-04-18 13:25:42,jcubic/jquery.terminal,https://api.github.com/repos/jcubic/jquery.terminal,reopened,Multi-word commands,question documentation,"### I have question related to jQuery Terminal
504
505<!-- add your question here -->
506How do you make commands multiple words? I'm trying to make a joke ""sudo rm -rf"" command but when I try it, it only says ""command sudo not fount""",1.0,"Multi-word commands - ### I have question related to jQuery Terminal
507
508<!-- add your question here -->
509How do you make commands multiple words? I'm trying to make a joke ""sudo rm -rf"" command but when I try it, it only says ""command sudo not fount""",0,multi word commands       i have question related to jquery terminal       how do you make commands multiple words  i m trying to make a joke  sudo rm  rf  command but when i try it  it only says  command sudo not fount ,0510309478,23296933918.0,IssuesEvent,2022-08-06 18:25:08,openscientia/terraform-provider-atlassian,https://api.github.com/repos/openscientia/terraform-provider-atlassian,closed,Update YAML frontmatter in `atlassian_jira_issue_type_scheme` markdown template,documentation enhancement jira/issuetypeschemes,"### Terraform CLI and Provider Versions511 512v0.1.0513 514### New or Affected Resource(s)515 516- atlassian_jira_issue_type_scheme
517 518 519### Use Cases or Problem Statement520 521The [markdown template](https://github.com/openscientia/terraform-provider-atlassian/blob/main/templates/resources/jira_issue_type_scheme.md.tmpl) used to generate documentation for `atlassian_jira_issue_type_scheme` resources contains an incorrect `description` in the YAML frontmatter.
522
523```yaml
524description: |-
525  Manages {{ .Type }}.
526---
527``` 528 529### Proposal530 531The `description` in the YAML frontmatter should be as follows:
532
533```yaml
534description: |-
535  Manages {{ .Name }}.
536---
537```538 539### How much impact is this issue causing?540 541Low542 543### Additional Information544 545_No response_546 547### Code of Conduct548 549- [X] I agree to follow this project's Code of Conduct",1.0,"Update YAML frontmatter in `atlassian_jira_issue_type_scheme` markdown template - ### Terraform CLI and Provider Versions550 551v0.1.0552 553### New or Affected Resource(s)554 555- atlassian_jira_issue_type_scheme
556 557 558### Use Cases or Problem Statement559 560The [markdown template](https://github.com/openscientia/terraform-provider-atlassian/blob/main/templates/resources/jira_issue_type_scheme.md.tmpl) used to generate documentation for `atlassian_jira_issue_type_scheme` resources contains an incorrect `description` in the YAML frontmatter.
561
562```yaml
563description: |-
564  Manages {{ .Type }}.
565---
566``` 567 568### Proposal569 570The `description` in the YAML frontmatter should be as follows:
571
572```yaml
573description: |-
574  Manages {{ .Name }}.
575---
576```577 578### How much impact is this issue causing?579 580Low581 582### Additional Information583 584_No response_585 586### Code of Conduct587 588- [X] I agree to follow this project's Code of Conduct",0,update yaml frontmatter in  atlassian jira issue type scheme  markdown template       terraform cli and provider versions             new or affected resource s     atlassian jira issue type scheme        use cases or problem statement  the     used to generate documentation for  atlassian jira issue type scheme  resources contains an incorrect  description  in the yaml frontmatter        yaml  description        manages     type                     proposal  the  description  in the yaml frontmatter should be as follows        yaml  description        manages     name                    how much impact is this issue causing   low      additional information   no response       code of conduct      i agree to follow this project s code of conduct,05892717,9548733665.0,IssuesEvent,2019-05-02 06:50:01,RalfKoban/MiKo-Analyzers,https://api.github.com/repos/RalfKoban/MiKo-Analyzers,reopened,Test classes are in same namespace as Type under Test,Area: analyzer Area: maintainability feature,Its a good practice to place the tests for a type in the exact same namespace as the type's namespace.,True,Test classes are in same namespace as Type under Test - Its a good practice to place the tests for a type in the exact same namespace as the type's namespace.,1,test classes are in same namespace as type under test   its a good practice to place the tests for a type in the exact same namespace as the type s namespace ,1590670,4212800213.0,IssuesEvent,2016-06-29 17:14:26,duckduckgo/zeroclickinfo-goodies,https://api.github.com/repos/duckduckgo/zeroclickinfo-goodies,closed,Tips IA maintainer request,Maintainer Input Requested,"There has been several maintainer timeouts for the Tips IA. If @mattlehning does not have any objections I would like to takeover as maintainer. Thanks!
591
592https://duck.co/ia/view/tips
593
594cc @moollaza @edgesince84 @zekiel ",True,"Tips IA maintainer request - There has been several maintainer timeouts for the Tips IA. If @mattlehning does not have any objections I would like to takeover as maintainer. Thanks!
595
596https://duck.co/ia/view/tips
597
598cc @moollaza @edgesince84 @zekiel ",1,tips ia maintainer request   there has been several maintainer timeouts for the tips ia  if  mattlehning does not have any objections i would like to takeover as maintainer  thanks          cc  moollaza     zekiel ,1599536327,15707591943.0,IssuesEvent,2021-03-26 19:07:33,itslupus/gamersnet,https://api.github.com/repos/itslupus/gamersnet,closed,Game based search,high priority user story,"**Description**:  
600As a user, I want to be able to search for posts to find players that are playing my game
601
602**Acceptance Criteria**:  
603Search posts by name of games
604
605**Dev Tasks**: 
606[Backend endpoint to fetch posts](https://github.com/itslupus/gamersnet/issues/15)
607[Frontend UI to select games](https://github.com/itslupus/gamersnet/issues/16)
608[Frontend UI to display posts by games](https://github.com/itslupus/gamersnet/issues/17)
609
610**Story Points (1 - 5**): 3",1.0,"Game based search - **Description**:  
611As a user, I want to be able to search for posts to find players that are playing my game
612
613**Acceptance Criteria**:  
614Search posts by name of games
615
616**Dev Tasks**: 
617[Backend endpoint to fetch posts](https://github.com/itslupus/gamersnet/issues/15)
618[Frontend UI to select games](https://github.com/itslupus/gamersnet/issues/16)
619[Frontend UI to display posts by games](https://github.com/itslupus/gamersnet/issues/17)
620
621**Story Points (1 - 5**): 3",0,game based search     description       as a user  i want to be able to search for posts to find players that are playing my game      acceptance criteria       search posts by name of games      dev tasks                         story points             ,06221063,4889233518.0,IssuesEvent,2016-11-18 09:31:24,ansible/ansible-modules-core,https://api.github.com/repos/ansible/ansible-modules-core,closed,Wrong variable resolution when multiple parents role call the same child role,affects_2.2 bug_report waiting_on_maintainer,"
623
624##### ISSUE TYPE
625 - Bug Report
626
627
628##### COMPONENT NAME
629include_role
630
631##### ANSIBLE VERSION
632<!--- Paste verbatim output from “ansible --version” between quotes below -->
633```
634ansible 2.2.0.0
635  config file = /etc/ansible/ansible.cfg
636  configured module search path = Default w/o overrides
637```
638
639##### CONFIGURATION
640<!---
641Mention any settings you have changed/added/removed in ansible.cfg
642(or using the ANSIBLE_* environment variables).
643-->
644None specific
645
646##### OS / ENVIRONMENT
647<!---
648Mention the OS you are running Ansible from, and the OS you are
649managing, or say “N/A” for anything that is not platform-specific.
650-->
651CentOS Linux release 7.2.1511 (Core) - Ansible host and server
652
653##### SUMMARY
654When multiple parents includes the same child role but override some variables, the variable resolution is wrong.
655
656##### STEPS TO REPRODUCE
657<!---
658For bugs, show exactly how to reproduce the problem.
659For new features, show how the feature would be used.
660-->
661
662<!--- Paste example playbooks or commands between quotes below -->
663```
664./playbook.yml
665 666---
667- hosts: localhost
668  gather_facts: no
669  roles:
670    - parent1
671    - parent2
672./roles/child/defaults/main.yml
673 674---
675childTestValue: ChildRoleDefault
676./roles/child/tasks/main.yml
677- debug: var=childTestValue
678./roles/parent1/defaults/main.yml
679 680---
681parentTestValue: Parent1RoleDefault
682./roles/parent1/tasks/main.yml
683- debug: var=parentTestValue
684
685- include_role:
686    name: child
687  vars:
688    childTestValue: ""{{ parentTestValue }}""
689
690./roles/parent2/defaults/main.yml
691 692---
693parentTestValue: Parent2RoleDefault
694./roles/parent2/tasks/main.yml
695- debug: var=parentTestValue
696
697- include_role:
698    name: child
699  vars:
700    childTestValue: ""{{ parentTestValue }}""
701```
702
703<!--- You can also paste gist.github.com links for larger files -->
704
705##### EXPECTED RESULTS
706<!--- What did you expect to happen when running the steps above? -->
707I was expecting the child role to be called twice with 2 differents value of childTestValue. Once With Parent1RoleDefault and an other with Parent2RoleDefault
708
709##### ACTUAL RESULTS
710<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
711
712<!--- Paste verbatim command output between quotes below -->
713
714Instead, the child role is called twice with the same value for childTestValue
715```
716[root@localhost debug]# ansible-playbook -vvvv /vagrant/ansible/debug/playbook.yml
717Using /etc/ansible/ansible.cfg as config file
718 [WARNING]: provided hosts list is empty, only localhost is available
719
720Loading callback plugin default of type stdout, v2.0 from /usr/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc
721
722PLAYBOOK: playbook.yml *********************************************************
7231 plays in /vagrant/ansible/debug/playbook.yml
724
725PLAY [localhost] ***************************************************************
726
727TASK [parent1 : debug] *********************************************************
728task path: /vagrant/ansible/debug/roles/parent1/tasks/main.yml:1
729ok: [localhost] => {
730    ""parentTestValue"": ""Parent1RoleDefault""
731}
732
733TASK [child : debug] ***********************************************************
734task path: /vagrant/ansible/debug/roles/child/tasks/main.yml:1
735ok: [localhost] => {
736    ""childTestValue"": ""Parent2RoleDefault""
737}
738
739TASK [parent2 : debug] *********************************************************
740task path: /vagrant/ansible/debug/roles/parent2/tasks/main.yml:1
741ok: [localhost] => {
742    ""parentTestValue"": ""Parent2RoleDefault""
743}
744
745TASK [child : debug] ***********************************************************
746task path: /vagrant/ansible/debug/roles/child/tasks/main.yml:1
747ok: [localhost] => {
748    ""childTestValue"": ""Parent2RoleDefault""
749}
750
751PLAY RECAP *********************************************************************
752localhost                  : ok=4    changed=0    unreachable=0    failed=0
753
754```
755",True,"Wrong variable resolution when multiple parents role call the same child role - 
756
757##### ISSUE TYPE
758 - Bug Report
759
760
761##### COMPONENT NAME
762include_role
763
764##### ANSIBLE VERSION
765<!--- Paste verbatim output from “ansible --version” between quotes below -->
766```
767ansible 2.2.0.0
768  config file = /etc/ansible/ansible.cfg
769  configured module search path = Default w/o overrides
770```
771
772##### CONFIGURATION
773<!---
774Mention any settings you have changed/added/removed in ansible.cfg
775(or using the ANSIBLE_* environment variables).
776-->
777None specific
778
779##### OS / ENVIRONMENT
780<!---
781Mention the OS you are running Ansible from, and the OS you are
782managing, or say “N/A” for anything that is not platform-specific.
783-->
784CentOS Linux release 7.2.1511 (Core) - Ansible host and server
785
786##### SUMMARY
787When multiple parents includes the same child role but override some variables, the variable resolution is wrong.
788
789##### STEPS TO REPRODUCE
790<!---
791For bugs, show exactly how to reproduce the problem.
792For new features, show how the feature would be used.
793-->
794
795<!--- Paste example playbooks or commands between quotes below -->
796```
797./playbook.yml
798 799---
800- hosts: localhost
801  gather_facts: no
802  roles:
803    - parent1
804    - parent2
805./roles/child/defaults/main.yml
806 807---
808childTestValue: ChildRoleDefault
809./roles/child/tasks/main.yml
810- debug: var=childTestValue
811./roles/parent1/defaults/main.yml
812 813---
814parentTestValue: Parent1RoleDefault
815./roles/parent1/tasks/main.yml
816- debug: var=parentTestValue
817
818- include_role:
819    name: child
820  vars:
821    childTestValue: ""{{ parentTestValue }}""
822
823./roles/parent2/defaults/main.yml
824 825---
826parentTestValue: Parent2RoleDefault
827./roles/parent2/tasks/main.yml
828- debug: var=parentTestValue
829
830- include_role:
831    name: child
832  vars:
833    childTestValue: ""{{ parentTestValue }}""
834```
835
836<!--- You can also paste gist.github.com links for larger files -->
837
838##### EXPECTED RESULTS
839<!--- What did you expect to happen when running the steps above? -->
840I was expecting the child role to be called twice with 2 differents value of childTestValue. Once With Parent1RoleDefault and an other with Parent2RoleDefault
841
842##### ACTUAL RESULTS
843<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
844
845<!--- Paste verbatim command output between quotes below -->
846
847Instead, the child role is called twice with the same value for childTestValue
848```
849[root@localhost debug]# ansible-playbook -vvvv /vagrant/ansible/debug/playbook.yml
850Using /etc/ansible/ansible.cfg as config file
851 [WARNING]: provided hosts list is empty, only localhost is available
852
853Loading callback plugin default of type stdout, v2.0 from /usr/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc
854
855PLAYBOOK: playbook.yml *********************************************************
8561 plays in /vagrant/ansible/debug/playbook.yml
857
858PLAY [localhost] ***************************************************************
859
860TASK [parent1 : debug] *********************************************************
861task path: /vagrant/ansible/debug/roles/parent1/tasks/main.yml:1
862ok: [localhost] => {
863    ""parentTestValue"": ""Parent1RoleDefault""
864}
865
866TASK [child : debug] ***********************************************************
867task path: /vagrant/ansible/debug/roles/child/tasks/main.yml:1
868ok: [localhost] => {
869    ""childTestValue"": ""Parent2RoleDefault""
870}
871
872TASK [parent2 : debug] *********************************************************
873task path: /vagrant/ansible/debug/roles/parent2/tasks/main.yml:1
874ok: [localhost] => {
875    ""parentTestValue"": ""Parent2RoleDefault""
876}
877
878TASK [child : debug] ***********************************************************
879task path: /vagrant/ansible/debug/roles/child/tasks/main.yml:1
880ok: [localhost] => {
881    ""childTestValue"": ""Parent2RoleDefault""
882}
883
884PLAY RECAP *********************************************************************
885localhost                  : ok=4    changed=0    unreachable=0    failed=0
886
887```
888",1,wrong variable resolution when multiple parents role call the same child role             issue type     bug report            component name  include role          ansible version          ansible            config file    etc ansible ansible cfg    configured module search path   default w o overrides               configuration         mention any settings you have changed added removed in ansible cfg   or using the ansible   environment variables         none specific          os   environment         mention the os you are running ansible from  and the os you are  managing  or say “n a” for anything that is not platform specific        centos linux release        core    ansible host and server          summary  when multiple parents includes the same child role but override some variables  the variable resolution is wrong           steps to reproduce         for bugs  show exactly how to reproduce the problem   for new features  show how the feature would be used                    playbook yml          hosts  localhost    gather facts  no    roles                       roles child defaults main yml        childtestvalue  childroledefault    roles child tasks main yml    debug  var childtestvalue    roles   defaults main yml        parenttestvalue       roles   tasks main yml    debug  var parenttestvalue      include role       name  child    vars       childtestvalue      parenttestvalue          roles   defaults main yml        parenttestvalue       roles   tasks main yml    debug  var parenttestvalue      include role       name  child    vars       childtestvalue      parenttestvalue                        expected results     i was expecting the child role to be called twice with   differents value of childtestvalue  once with   and an other with            actual results            instead  the child role is called twice with the same value for childtestvalue          ansible playbook  vvvv  vagrant ansible debug playbook yml  using  etc ansible ansible cfg as config file      provided hosts list is empty  only localhost is available    loading callback plugin default of type stdout      from  usr lib     site packages ansible plugins callback   init   pyc    playbook  playbook yml                                                              plays in  vagrant ansible debug playbook yml    play                                                                      task                                                              task path   vagrant ansible debug roles   tasks main yml    ok               parenttestvalue             task                                                                task path   vagrant ansible debug roles child tasks main yml    ok               childtestvalue             task                                                              task path   vagrant ansible debug roles   tasks main yml    ok               parenttestvalue             task                                                                task path   vagrant ansible debug roles child tasks main yml    ok               childtestvalue             play recap                                                                        localhost                    ok      changed      unreachable      failed           ,1889941,4662885819.0,IssuesEvent,2016-10-05 06:56:20,ansible/ansible-modules-core,https://api.github.com/repos/ansible/ansible-modules-core,closed,docker_service not creating docker image,affects_2.3 bug_report cloud docker in progress waiting_on_maintainer,"<!--- Verify first that your issue/request is not already reported in GitHub -->
890
891##### ISSUE TYPE
892<!--- Pick one below and delete the rest: -->
893 - Bug Report
894
895##### COMPONENT NAME
896<!--- Name of the plugin/module/task -->
897docker_service 
898
899##### ANSIBLE VERSION
900<!--- Paste verbatim output from “ansible --version” between quotes below -->
901```
902ansible 2.3.0 (devel d09f57fb3a) last updated 2016/10/04 08:46:08 (GMT +000)
903  lib/ansible/modules/core: (devel 0ee774ff15) last updated 2016/10/04 09:19:29 (GMT +000)
904  lib/ansible/modules/extras: (devel 5cc72c3f06) last updated 2016/10/04 09:20:09 (GMT +000)
905  config file = /etc/ansible/roles/myrole/ansible.cfg
906  configured module search path = Default w/o overrides
907
908```
909
910##### CONFIGURATION
911<!---
912Mention any settings you have changed/added/removed in ansible.cfg
913(or using the ANSIBLE_* environment variables).
914-->
915
916##### OS / ENVIRONMENT
917<!---
918Mention the OS you are running Ansible from, and the OS you are
919managing, or say “N/A” for anything that is not platform-specific.
920-->
921Ubuntu 14.04
922
923##### SUMMARY
924<!--- Explain the problem briefly -->
925
926docker_service module doesn't create a docker image from the docker-compose file, it gives an error and crashes.  The error was: compose.service.NoSuchImageError: Image 'myproject_web' not found.  
927  However, if a docker image is present, it will proceed without error.
928
929On the other hand, what is expected from docker-compose (and also docker_service) is it will create an image if one isn't there.  Especially if the --build flag is present.    During testing, ""docker-compose up"" does this successfully, whether an image exists or not.   
930
931##### STEPS TO REPRODUCE
932<!---
933For bugs, show exactly how to reproduce the problem.
934For new features, show how the feature would be used.
935-->
936
937<!--- Paste example playbooks or commands between quotes below -->
938```
939- name: start with docker-compose
940  docker_service:
941    project_src: ""{{ deploy_dir }}""
942    build: yes
943    state: present
944```
945
946check the current docker images:
947```
948docker images
949```
950
951make a backup copy of the relevant image, if desired, and then delete the image.   
952
953```
954docker tag image_name image_name.bck
955docker rmi image_name
956```
957
958then run ansible-playbook.   
959
960<!--- You can also paste gist.github.com links for larger files -->
961
962##### EXPECTED RESULTS
963<!--- What did you expect to happen when running the steps above? -->
964TASK [djangoapp_docker : start with docker-compose] ****************************
965changed: [appserver]
966
967PLAY RECAP *********************************************************************
968appserver                  : ok=4    changed=1    unreachable=0    failed=0
969
970##### ACTUAL RESULTS
971<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
972
973<!--- Paste verbatim command output between quotes below -->
974```
975TASK [djangoapp_docker : start with docker-compose] ****************************
976task path: /etc/ansible/roles/myrole/roles/djangoapp_docker/tasks/main.yml:9
977Using module file /opt/github/ansible/lib/ansible/modules/core/cloud/docker/docker_service.py
978<localhost> ESTABLISH LOCAL CONNECTION FOR USER: root
979<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p ""` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `"" && echo ansible-tmp-1475573103.01-30232119310425=""` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `"" ) && sleep 0'
980<localhost> PUT /tmp/tmpai39S1 TO /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py
981<localhost> EXEC /bin/sh -c 'chmod u+x /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/ /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py && sleep 0'
982<localhost> EXEC /bin/sh -c '/usr/bin/python /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py; rm -rf ""/root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/"" > /dev/null 2>&1 && sleep 0'
983An exception occurred during task execution. The full traceback is:
984Traceback (most recent call last):
985  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 929, in <module>
986    main()
987  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 924, in main
988    result = ContainerManager(client).exec_module()
989  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 575, in exec_module
990    result = self.cmd_up()
991  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 630, in cmd_up
992    result.update(self.cmd_build())
993  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 773, in cmd_build
994    image = service.image()
995  File ""/usr/local/lib/python2.7/dist-packages/compose/service.py"", line 316, in image
996    raise NoSuchImageError(""Image '{}' not found"".format(self.image_name))
997compose.service.NoSuchImageError: Image 'myproject_web' not found
998
999fatal: [appserver]: FAILED! => {
1000    ""changed"": false,
1001    ""failed"": true,
1002    ""invocation"": {
1003        ""module_name"": ""docker_service""
1004    },
1005    ""module_stderr"": ""Traceback (most recent call last):\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 929, in <module>\n    main()\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 924, in main\n    result = ContainerManager(client).exec_module()\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 575, in exec_module\n    result = self.cmd_up()\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 630, in cmd_up\n    result.update(self.cmd_build())\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 773, in cmd_build\n    image = service.image()\n  File \""/usr/local/lib/python2.7/dist-packages/compose/service.py\"", line 316, in image\n    raise NoSuchImageError(\""Image '{}' not found\"".format(self.image_name))\ncompose.service.NoSuchImageError: Image 'myrole_web' not found\n"",
1006    ""module_stdout"": """",
1007    ""msg"": ""MODULE FAILURE""
1008}
1009        to retry, use: --limit @/etc/ansible/roles/myrole/deploy_docker.retry
1010
1011```
1012",True,"docker_service not creating docker image - <!--- Verify first that your issue/request is not already reported in GitHub -->
1013
1014##### ISSUE TYPE
1015<!--- Pick one below and delete the rest: -->
1016 - Bug Report
1017
1018##### COMPONENT NAME
1019<!--- Name of the plugin/module/task -->
1020docker_service 
1021
1022##### ANSIBLE VERSION
1023<!--- Paste verbatim output from “ansible --version” between quotes below -->
1024```
1025ansible 2.3.0 (devel d09f57fb3a) last updated 2016/10/04 08:46:08 (GMT +000)
1026  lib/ansible/modules/core: (devel 0ee774ff15) last updated 2016/10/04 09:19:29 (GMT +000)
1027  lib/ansible/modules/extras: (devel 5cc72c3f06) last updated 2016/10/04 09:20:09 (GMT +000)
1028  config file = /etc/ansible/roles/myrole/ansible.cfg
1029  configured module search path = Default w/o overrides
1030
1031```
1032
1033##### CONFIGURATION
1034<!---
1035Mention any settings you have changed/added/removed in ansible.cfg
1036(or using the ANSIBLE_* environment variables).
1037-->
1038
1039##### OS / ENVIRONMENT
1040<!---
1041Mention the OS you are running Ansible from, and the OS you are
1042managing, or say “N/A” for anything that is not platform-specific.
1043-->
1044Ubuntu 14.04
1045
1046##### SUMMARY
1047<!--- Explain the problem briefly -->
1048
1049docker_service module doesn't create a docker image from the docker-compose file, it gives an error and crashes.  The error was: compose.service.NoSuchImageError: Image 'myproject_web' not found.  
1050  However, if a docker image is present, it will proceed without error.
1051
1052On the other hand, what is expected from docker-compose (and also docker_service) is it will create an image if one isn't there.  Especially if the --build flag is present.    During testing, ""docker-compose up"" does this successfully, whether an image exists or not.   
1053
1054##### STEPS TO REPRODUCE
1055<!---
1056For bugs, show exactly how to reproduce the problem.
1057For new features, show how the feature would be used.
1058-->
1059
1060<!--- Paste example playbooks or commands between quotes below -->
1061```
1062- name: start with docker-compose
1063  docker_service:
1064    project_src: ""{{ deploy_dir }}""
1065    build: yes
1066    state: present
1067```
1068
1069check the current docker images:
1070```
1071docker images
1072```
1073
1074make a backup copy of the relevant image, if desired, and then delete the image.   
1075
1076```
1077docker tag image_name image_name.bck
1078docker rmi image_name
1079```
1080
1081then run ansible-playbook.   
1082
1083<!--- You can also paste gist.github.com links for larger files -->
1084
1085##### EXPECTED RESULTS
1086<!--- What did you expect to happen when running the steps above? -->
1087TASK [djangoapp_docker : start with docker-compose] ****************************
1088changed: [appserver]
1089
1090PLAY RECAP *********************************************************************
1091appserver                  : ok=4    changed=1    unreachable=0    failed=0
1092
1093##### ACTUAL RESULTS
1094<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
1095
1096<!--- Paste verbatim command output between quotes below -->
1097```
1098TASK [djangoapp_docker : start with docker-compose] ****************************
1099task path: /etc/ansible/roles/myrole/roles/djangoapp_docker/tasks/main.yml:9
1100Using module file /opt/github/ansible/lib/ansible/modules/core/cloud/docker/docker_service.py
1101<localhost> ESTABLISH LOCAL CONNECTION FOR USER: root
1102<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p ""` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `"" && echo ansible-tmp-1475573103.01-30232119310425=""` echo $HOME/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425 `"" ) && sleep 0'
1103<localhost> PUT /tmp/tmpai39S1 TO /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py
1104<localhost> EXEC /bin/sh -c 'chmod u+x /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/ /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py && sleep 0'
1105<localhost> EXEC /bin/sh -c '/usr/bin/python /root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/docker_service.py; rm -rf ""/root/.ansible/tmp/ansible-tmp-1475573103.01-30232119310425/"" > /dev/null 2>&1 && sleep 0'
1106An exception occurred during task execution. The full traceback is:
1107Traceback (most recent call last):
1108  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 929, in <module>
1109    main()
1110  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 924, in main
1111    result = ContainerManager(client).exec_module()
1112  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 575, in exec_module
1113    result = self.cmd_up()
1114  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 630, in cmd_up
1115    result.update(self.cmd_build())
1116  File ""/tmp/ansible_zG7JHD/ansible_module_docker_service.py"", line 773, in cmd_build
1117    image = service.image()
1118  File ""/usr/local/lib/python2.7/dist-packages/compose/service.py"", line 316, in image
1119    raise NoSuchImageError(""Image '{}' not found"".format(self.image_name))
1120compose.service.NoSuchImageError: Image 'myproject_web' not found
1121
1122fatal: [appserver]: FAILED! => {
1123    ""changed"": false,
1124    ""failed"": true,
1125    ""invocation"": {
1126        ""module_name"": ""docker_service""
1127    },
1128    ""module_stderr"": ""Traceback (most recent call last):\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 929, in <module>\n    main()\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 924, in main\n    result = ContainerManager(client).exec_module()\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 575, in exec_module\n    result = self.cmd_up()\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 630, in cmd_up\n    result.update(self.cmd_build())\n  File \""/tmp/ansible_zG7JHD/ansible_module_docker_service.py\"", line 773, in cmd_build\n    image = service.image()\n  File \""/usr/local/lib/python2.7/dist-packages/compose/service.py\"", line 316, in image\n    raise NoSuchImageError(\""Image '{}' not found\"".format(self.image_name))\ncompose.service.NoSuchImageError: Image 'myrole_web' not found\n"",
1129    ""module_stdout"": """",
1130    ""msg"": ""MODULE FAILURE""
1131}
1132        to retry, use: --limit @/etc/ansible/roles/myrole/deploy_docker.retry
1133
1134```
1135",1,docker service not creating docker image              issue type        bug report          component name     docker service           ansible version          ansible        devel    last updated              gmt        lib ansible modules core   devel    last updated              gmt        lib ansible modules extras   devel    last updated              gmt        config file    etc ansible roles myrole ansible cfg    configured module search path   default w o overrides                 configuration         mention any settings you have changed added removed in ansible cfg   or using the ansible   environment variables                 os   environment         mention the os you are running ansible from  and the os you are  managing  or say “n a” for anything that is not platform specific        ubuntu              summary       docker service module doesn t create a docker image from the docker compose file  it gives an error and crashes   the error was  compose service nosuchimageerror  image  myproject web  not found       however  if a docker image is present  it will proceed without error     on the other hand  what is expected from docker compose  and also docker service  is it will create an image if one isn t there   especially if the   build flag is present     during testing   docker compose up  does this successfully  whether an image exists or not              steps to reproduce         for bugs  show exactly how to reproduce the problem   for new features  show how the feature would be used                    name  start with docker compose    docker service       project src      deploy dir          build  yes      state  present         check the current docker images        docker images         make a backup copy of the relevant image  if desired  and then delete the image             docker tag image name image name bck  docker rmi image name         then run ansible playbook                   expected results     task                                 changed       play recap                                                                        appserver                    ok      changed      unreachable      failed            actual results               task                                 task path   etc ansible roles myrole roles djangoapp docker tasks main yml    using module file  opt github ansible lib ansible modules core cloud docker docker service py    establish local connection for user  root    exec  bin sh  c    umask      mkdir  p    echo  home  ansible tmp ansible tmp             echo ansible tmp          echo  home  ansible tmp ansible tmp               sleep       put  tmp   to  root  ansible tmp ansible tmp       docker service py    exec  bin sh  c  chmod u x  root  ansible tmp ansible tmp         root  ansible tmp ansible tmp       docker service py    sleep       exec  bin sh  c   usr bin python  root  ansible tmp ansible tmp       docker service py  rm  rf   root  ansible tmp ansible tmp            dev null         sleep     an exception occurred during task execution  the full traceback is   traceback  most recent call last      file   tmp ansible   ansible module docker service py   line    in        main      file   tmp ansible   ansible module docker service py   line    in main      result   containermanager client  exec module      file   tmp ansible   ansible module docker service py   line    in exec module      result   self cmd up      file   tmp ansible   ansible module docker service py   line    in cmd up      result update self cmd build       file   tmp ansible   ansible module docker service py   line    in cmd build      image   service image      file   usr local lib     dist packages compose service py   line    in image      raise nosuchimageerror  image      not found  format self image name    compose service nosuchimageerror  image  myproject web  not found    fatal     failed             changed   false        failed   true        invocation               module name    docker service                module stderr    traceback  most recent call last   n  file    tmp ansible   ansible module docker service py    line    in   n    main   n  file    tmp ansible   ansible module docker service py    line    in main n    result   containermanager client  exec module   n  file    tmp ansible   ansible module docker service py    line    in exec module n    result   self cmd up   n  file    tmp ansible   ansible module docker service py    line    in cmd up n    result update self cmd build    n  file    tmp ansible   ansible module docker service py    line    in cmd build n    image   service image   n  file    usr local lib     dist packages compose service py    line    in image n    raise nosuchimageerror   image      not found   format self image name   ncompose service nosuchimageerror  image  myrole web  not found n         module stdout             msg    module failure              to retry  use    limit   etc ansible roles myrole deploy docker retry         ,111363248,12371555415.0,IssuesEvent,2020-05-18 18:46:34,cloud-gov/product,https://api.github.com/repos/cloud-gov/product,closed,"As an operator, I want to remove cg-dashboard (5/18)",contractor-3-maintainability operations,"A bug in stratos is currently requiring us to continue to run cg-dashboard: https://github.com/cloudfoundry/stratos/issues/4103
1137
1138Once this issue is fixed, deployed and validated in cg, we should remove cg-dashboard.
1139
1140## Acceptance Criteria
1141* [x] GIVEN The stratos bug is fixed
1142  AND stratos is updated in production with the bug fix
1143  WHEN a user accesses dashboard-deprecated.fr.cloud.gov
1144  AND looks in the docs for user management information
1145  THEN they are redirected to stratos
1146  AND the docs match stratos
1147
1148--- 
1149
1150## Security considerations
1151
1152be sure the stratos fix meets our needs. For example, a user should not be able to see and search for all users in a system. Instead, they should have to enter an exact username when setting a role.
1153
1154## Implementation sketch
1155
1156* [x] Remove CircleCI access to the cg-dashboard repo (remove the webhook)
1157* [x] Archive the cg-dashboard repo
1158* [x] Update docs and remove references to dashboard-deprecated
1159* [x] Add a redirect for the legacy dashboard to the current Stratos dashboard
1160* [x] Validate Stratos dashboard docs on docs.cloud.gov show the correct procedure to manage users",True,"As an operator, I want to remove cg-dashboard (5/18) - A bug in stratos is currently requiring us to continue to run cg-dashboard: https://github.com/cloudfoundry/stratos/issues/4103
1161
1162Once this issue is fixed, deployed and validated in cg, we should remove cg-dashboard.
1163
1164## Acceptance Criteria
1165* [x] GIVEN The stratos bug is fixed
1166  AND stratos is updated in production with the bug fix
1167  WHEN a user accesses dashboard-deprecated.fr.cloud.gov
1168  AND looks in the docs for user management information
1169  THEN they are redirected to stratos
1170  AND the docs match stratos
1171
1172--- 
1173
1174## Security considerations
1175
1176be sure the stratos fix meets our needs. For example, a user should not be able to see and search for all users in a system. Instead, they should have to enter an exact username when setting a role.
1177
1178## Implementation sketch
1179
1180* [x] Remove CircleCI access to the cg-dashboard repo (remove the webhook)
1181* [x] Archive the cg-dashboard repo
1182* [x] Update docs and remove references to dashboard-deprecated
1183* [x] Add a redirect for the legacy dashboard to the current Stratos dashboard
1184* [x] Validate Stratos dashboard docs on docs.cloud.gov show the correct procedure to manage users",1,as an operator  i want to remove cg dashboard         a bug in stratos is currently requiring us to continue to run cg dashboard       once this issue is fixed  deployed and validated in cg  we should remove cg dashboard        acceptance criteria      given the stratos bug is fixed    and stratos is updated in production with the bug fix    when a user accesses dashboard deprecated fr cloud gov    and looks in the docs for user management information    then they are redirected to stratos    and the docs match stratos               security considerations    be sure the stratos fix meets our needs  for example  a user should not be able to see and search for all users in a system  instead  they should have to enter an exact username when setting a role        implementation sketch        remove circleci access to the cg dashboard repo  remove the webhook       archive the cg dashboard repo      update docs and remove references to dashboard deprecated      add a redirect for the legacy dashboard to the current stratos dashboard      validate stratos dashboard docs on docs cloud gov show the correct procedure to manage users,11185110807,9477936354.0,IssuesEvent,2019-04-19 20:32:26,cerner/terra-core,https://api.github.com/repos/cerner/terra-core,closed,Improve icon visual regression test coverage,Orion Reviewed icon intermediate issue testing,"# Feature Request
1186
1187## Description
1188Currently, our icon visual regression coverage is very minimal. We should expand it to better capture the full icon set. We've had a couple bugs slip through related to how the SVGs have been formatted that we can catch if we set up visual regression tests for the entire icon set.",1.0,"Improve icon visual regression test coverage - # Feature Request
1189
1190## Description
1191Currently, our icon visual regression coverage is very minimal. We should expand it to better capture the full icon set. We've had a couple bugs slip through related to how the SVGs have been formatted that we can catch if we set up visual regression tests for the entire icon set.",0,improve icon visual regression test coverage     feature request       description  currently  our icon visual regression coverage is very minimal  we should expand it to better capture the full icon set  we ve had a couple bugs slip through related to how the svgs have been formatted that we can catch if we set up visual regression tests for the entire icon set ,01192199047,6980255775.0,IssuesEvent,2017-12-13 00:39:48,kubernetes-incubator/cri-containerd,https://api.github.com/repos/kubernetes-incubator/cri-containerd,closed,Add containerd/cri-containerd monitor.,priority/P2,"In our current kube-up.sh integration, we don't have a [`kube-docker-monitor.service`](https://github.com/kubernetes/kubernetes/blob/master/cluster/gce/gci/node.yaml#L42) like health monitor for cri-containerd/containerd.
1193
1194We should add one.",1.0,"Add containerd/cri-containerd monitor. - In our current kube-up.sh integration, we don't have a [`kube-docker-monitor.service`](https://github.com/kubernetes/kubernetes/blob/master/cluster/gce/gci/node.yaml#L42) like health monitor for cri-containerd/containerd.
1195
1196We should add one.",0,add containerd cri containerd monitor    in our current kube up sh integration  we don t have a     like health monitor for cri containerd containerd     we should add one ,01197178199,14663632931.0,IssuesEvent,2020-12-29 10:08:05,vchain-us/vcn,https://api.github.com/repos/vchain-us/vcn,closed,vcn documentation (LC use cases),documentation,"We should add instructions for using the CI/CD plugin in the Markdown file at path `client/pages/resources/plugins/cicd.md`in the `ledger-compliance` repository.
1198
1199Here is a sample page with different kind of formatting: https://raw.githubusercontent.com/vchain-us/ledger-compliance/9412f038089e495702c0e3f677117143380ca298/client/pages/help/index.md?token=AAZFDZP2PCRYM2MD4G3E4IK7ZZWNM",1.0,"vcn documentation (LC use cases) - We should add instructions for using the CI/CD plugin in the Markdown file at path `client/pages/resources/plugins/cicd.md`in the `ledger-compliance` repository.
1200

Showing the first 1,200 of 81322 lines. Download the file for the rest.