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
378,495
11,203,178,722
IssuesEvent
2020-01-04 18:01:13
JustBru00/RenamePlugin
https://api.github.com/repos/JustBru00/RenamePlugin
closed
Add configuration option to add a single space character to the end of all /rename names
Addition Request Medium Priority Possible TODO
Requested by @JHarris12345 on spigotmc.org via private message. Would like a configuration option to add a single space to the end of every /rename name to prevent players from creating crate keys etc. He was notified of EpicRename's blacklist features, but apparently has too many different types of items to blacklist.
1.0
Add configuration option to add a single space character to the end of all /rename names - Requested by @JHarris12345 on spigotmc.org via private message. Would like a configuration option to add a single space to the end of every /rename name to prevent players from creating crate keys etc. He was notified of EpicRename's blacklist features, but apparently has too many different types of items to blacklist.
non_test
add configuration option to add a single space character to the end of all rename names requested by on spigotmc org via private message would like a configuration option to add a single space to the end of every rename name to prevent players from creating crate keys etc he was notified of epicrename s blacklist features but apparently has too many different types of items to blacklist
0
72,930
9,632,630,654
IssuesEvent
2019-05-15 16:38:19
golang/go
https://api.github.com/repos/golang/go
opened
cmd/go: replace directives are not thoroughly documented
Documentation GoCommand modules
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version devel +f0c383b833 Wed May 1 16:53:19 2019 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What did you do? Read `go help modules` and `go help go.mod`. ### What did you expect to see? Some discussion of what replacements are and what they do. ### What did you see instead? The only documentation I can find is these lines in `go help go.mod`: ``` replace bad/thing v1.4.5 => good/thing v1.4.5 ``` ``` replace, to replace a module version with a different module version. Exclude and replace apply only in the main module's go.mod and are ignored in dependencies. See https://research.swtch.com/vgo-mvs for details. ``` I think there's probably more to say about how replace works. For example, it doesn't explicitly state that the thing to replace is on the left side of the arrow. It also doesn't mention that the version on the left is optional.
1.0
cmd/go: replace directives are not thoroughly documented - <!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version devel +f0c383b833 Wed May 1 16:53:19 2019 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What did you do? Read `go help modules` and `go help go.mod`. ### What did you expect to see? Some discussion of what replacements are and what they do. ### What did you see instead? The only documentation I can find is these lines in `go help go.mod`: ``` replace bad/thing v1.4.5 => good/thing v1.4.5 ``` ``` replace, to replace a module version with a different module version. Exclude and replace apply only in the main module's go.mod and are ignored in dependencies. See https://research.swtch.com/vgo-mvs for details. ``` I think there's probably more to say about how replace works. For example, it doesn't explicitly state that the thing to replace is on the left side of the arrow. It also doesn't mention that the version on the left is optional.
non_test
cmd go replace directives are not thoroughly documented what version of go are you using go version go version go version devel wed may linux does this issue reproduce with the latest release yes what did you do read go help modules and go help go mod what did you expect to see some discussion of what replacements are and what they do what did you see instead the only documentation i can find is these lines in go help go mod replace bad thing good thing replace to replace a module version with a different module version exclude and replace apply only in the main module s go mod and are ignored in dependencies see for details i think there s probably more to say about how replace works for example it doesn t explicitly state that the thing to replace is on the left side of the arrow it also doesn t mention that the version on the left is optional
0
345,930
30,853,997,898
IssuesEvent
2023-08-02 19:00:45
swyddfa/lsp-devtools
https://api.github.com/repos/swyddfa/lsp-devtools
opened
It should be possible to request other pytest fixtures from `@pytest_lsp.fixture`
enhancement pytest-lsp
Consider the following fixture definition ```python @pytest_lsp.fixture( scope="session", params=["visual_studio_code", "neovim"], config=ClientServerConfig( server_command=[sys.executable, *SERVER_CMD], ), ) async def client(request, uri_for, lsp_client: LanguageClient): workspace = uri_for("sphinx-default", "workspace") await lsp_client.initialize_session( types.InitializeParams( capabilities=client_capabilities(request.param), workspace_folders=[ types.WorkspaceFolder(uri=str(workspace), name="sphinx-default"), ], ) ) yield # Teardown await lsp_client.shutdown_session() ``` Which results in the following error ``` @pytest_asyncio.fixture(**kwargs) async def the_fixture(request): client_server = make_client_server(config) await client_server.start() kwargs = get_fixture_arguments(fn, client_server.client, request) > result = fn(**kwargs) E TypeError: client() missing 1 required positional argument: 'uri_for' ```
1.0
It should be possible to request other pytest fixtures from `@pytest_lsp.fixture` - Consider the following fixture definition ```python @pytest_lsp.fixture( scope="session", params=["visual_studio_code", "neovim"], config=ClientServerConfig( server_command=[sys.executable, *SERVER_CMD], ), ) async def client(request, uri_for, lsp_client: LanguageClient): workspace = uri_for("sphinx-default", "workspace") await lsp_client.initialize_session( types.InitializeParams( capabilities=client_capabilities(request.param), workspace_folders=[ types.WorkspaceFolder(uri=str(workspace), name="sphinx-default"), ], ) ) yield # Teardown await lsp_client.shutdown_session() ``` Which results in the following error ``` @pytest_asyncio.fixture(**kwargs) async def the_fixture(request): client_server = make_client_server(config) await client_server.start() kwargs = get_fixture_arguments(fn, client_server.client, request) > result = fn(**kwargs) E TypeError: client() missing 1 required positional argument: 'uri_for' ```
test
it should be possible to request other pytest fixtures from pytest lsp fixture consider the following fixture definition python pytest lsp fixture scope session params config clientserverconfig server command async def client request uri for lsp client languageclient workspace uri for sphinx default workspace await lsp client initialize session types initializeparams capabilities client capabilities request param workspace folders types workspacefolder uri str workspace name sphinx default yield teardown await lsp client shutdown session which results in the following error pytest asyncio fixture kwargs async def the fixture request client server make client server config await client server start kwargs get fixture arguments fn client server client request result fn kwargs e typeerror client missing required positional argument uri for
1
123,461
12,198,775,527
IssuesEvent
2020-04-29 23:44:12
chartjs/Chart.js
https://api.github.com/repos/chartjs/Chart.js
opened
Logarithmic Axes does not support a ticks.min value of 0 (Zero)
type: documentation
Documentation Is: <!-- Please place an x (no spaces!) in all [ ] that apply --> - [x] Missing or needed - [ ] Confusing - [ ] Not Sure? ### Please Explain in Detail... I needed to produce a number of charts with a consistent yAxes logarithmic scale so that users can compare between charts. I tried setting the same yAxes config settings for each chart: beginAtZero = true ticks.min = 0 ticks.max = <maximum-possible-value> However the scale varied between charts depending on the data values. See example. After much searching and trial and error it appears that the ticks.min=0 setting is ignored (probably because the logarithm of zero is not defined). ### Your Proposal for Changes In tick Configuration (https://www.chartjs.org/docs/latest/axes/cartesian/#tick-configuration) for 'min' description add a note such as: (Note: logarithmic scales do not support minimum value of zero) ### Example https://codepen.io/phil-howell/pen/KKdvoKW
1.0
Logarithmic Axes does not support a ticks.min value of 0 (Zero) - Documentation Is: <!-- Please place an x (no spaces!) in all [ ] that apply --> - [x] Missing or needed - [ ] Confusing - [ ] Not Sure? ### Please Explain in Detail... I needed to produce a number of charts with a consistent yAxes logarithmic scale so that users can compare between charts. I tried setting the same yAxes config settings for each chart: beginAtZero = true ticks.min = 0 ticks.max = <maximum-possible-value> However the scale varied between charts depending on the data values. See example. After much searching and trial and error it appears that the ticks.min=0 setting is ignored (probably because the logarithm of zero is not defined). ### Your Proposal for Changes In tick Configuration (https://www.chartjs.org/docs/latest/axes/cartesian/#tick-configuration) for 'min' description add a note such as: (Note: logarithmic scales do not support minimum value of zero) ### Example https://codepen.io/phil-howell/pen/KKdvoKW
non_test
logarithmic axes does not support a ticks min value of zero documentation is missing or needed confusing not sure please explain in detail i needed to produce a number of charts with a consistent yaxes logarithmic scale so that users can compare between charts i tried setting the same yaxes config settings for each chart beginatzero true ticks min ticks max however the scale varied between charts depending on the data values see example after much searching and trial and error it appears that the ticks min setting is ignored probably because the logarithm of zero is not defined your proposal for changes in tick configuration for min description add a note such as note logarithmic scales do not support minimum value of zero example
0
45,414
7,181,647,866
IssuesEvent
2018-02-01 06:22:01
ropensci/drake
https://api.github.com/repos/ropensci/drake
closed
README.md badges do not render properly on a mobile device.
documentation help wanted
I like organizing badges in a table rather than mashing them all together, but that messes up the rendering. See badges/shields#1470. ![35483075-b7c90418-040b-11e8-9f80-6f4952eb7c28](https://user-images.githubusercontent.com/1580860/35574736-9a7724c8-05a8-11e8-9d38-4d7d1f2c8c55.png)
1.0
README.md badges do not render properly on a mobile device. - I like organizing badges in a table rather than mashing them all together, but that messes up the rendering. See badges/shields#1470. ![35483075-b7c90418-040b-11e8-9f80-6f4952eb7c28](https://user-images.githubusercontent.com/1580860/35574736-9a7724c8-05a8-11e8-9d38-4d7d1f2c8c55.png)
non_test
readme md badges do not render properly on a mobile device i like organizing badges in a table rather than mashing them all together but that messes up the rendering see badges shields
0
293,913
25,333,054,179
IssuesEvent
2022-11-18 14:43:09
anoma/namada
https://api.github.com/repos/anoma/namada
closed
Have a better way to turn off the Ethereum bridge componentry in e2e tests
testing ethereum-bridge
Currently we turn off Ethereum bridge componentry for commands that run in e2e tests using a hardcoded envvar e.g. `ANOMA_LEDGER__ETHEREUM__MODE` https://github.com/anoma/namada/blob/bbe70ecc569e5744d2a0fda3f3fe2001501a0c9f/tests/src/e2e/setup.rs#L666-L671 We should at least derive this envvar from the appropriate `Config` struct, or set it in ledgers' `config.toml`s rather than setting it via an envvar.
1.0
Have a better way to turn off the Ethereum bridge componentry in e2e tests - Currently we turn off Ethereum bridge componentry for commands that run in e2e tests using a hardcoded envvar e.g. `ANOMA_LEDGER__ETHEREUM__MODE` https://github.com/anoma/namada/blob/bbe70ecc569e5744d2a0fda3f3fe2001501a0c9f/tests/src/e2e/setup.rs#L666-L671 We should at least derive this envvar from the appropriate `Config` struct, or set it in ledgers' `config.toml`s rather than setting it via an envvar.
test
have a better way to turn off the ethereum bridge componentry in tests currently we turn off ethereum bridge componentry for commands that run in tests using a hardcoded envvar e g anoma ledger ethereum mode we should at least derive this envvar from the appropriate config struct or set it in ledgers config toml s rather than setting it via an envvar
1
35,590
4,997,156,929
IssuesEvent
2016-12-09 16:00:01
GoogleCloudPlatform/google-cloud-intellij
https://api.github.com/repos/GoogleCloudPlatform/google-cloud-intellij
opened
Seeing unit test failures running from Windows
bug google-cloud-tools-plugin testing
com.google.cloud.tools.intellij.appengine.cloud.CloudSdkAppEngineHelperTest > testCreateDeployRunnerInvalidSdk FAILED org.mockito.exceptions.verification.junit.ArgumentsAreDifferent at CloudSdkAppEngineHelperTest.java:143 com.google.cloud.tools.intellij.appengine.cloud.CloudSdkAppEngineHelperTest > testCreateApplicationDefaultCredentials FAILED java.nio.file.FileSystemException at CloudSdkAppEngineHelperTest.java:98
1.0
Seeing unit test failures running from Windows - com.google.cloud.tools.intellij.appengine.cloud.CloudSdkAppEngineHelperTest > testCreateDeployRunnerInvalidSdk FAILED org.mockito.exceptions.verification.junit.ArgumentsAreDifferent at CloudSdkAppEngineHelperTest.java:143 com.google.cloud.tools.intellij.appengine.cloud.CloudSdkAppEngineHelperTest > testCreateApplicationDefaultCredentials FAILED java.nio.file.FileSystemException at CloudSdkAppEngineHelperTest.java:98
test
seeing unit test failures running from windows com google cloud tools intellij appengine cloud cloudsdkappenginehelpertest testcreatedeployrunnerinvalidsdk failed org mockito exceptions verification junit argumentsaredifferent at cloudsdkappenginehelpertest java com google cloud tools intellij appengine cloud cloudsdkappenginehelpertest testcreateapplicationdefaultcredentials failed java nio file filesystemexception at cloudsdkappenginehelpertest java
1
292,549
25,222,474,431
IssuesEvent
2022-11-14 13:48:49
Moonshine-IDE/Moonshine-IDE
https://api.github.com/repos/Moonshine-IDE/Moonshine-IDE
closed
Update MoonshineGUICore build instructions
enhancement test ready
Update README.md in MoonshineGUICore with proper build instructions
1.0
Update MoonshineGUICore build instructions - Update README.md in MoonshineGUICore with proper build instructions
test
update moonshineguicore build instructions update readme md in moonshineguicore with proper build instructions
1
169,878
13,164,165,215
IssuesEvent
2020-08-11 02:47:50
Tencent/bk-ci
https://api.github.com/repos/Tencent/bk-ci
closed
bugfix: log服务指定Lucene依赖版本避免全局版本影响
area/ci/backend stage/test test/passed
问题: 全局依赖的lucene-core升级为8.6.0导致log的client加载的6.6.1版本被覆盖 解决方法: 暂时调整为指定6.6.1版本,后续升级log为高版本的http方式连接es
2.0
bugfix: log服务指定Lucene依赖版本避免全局版本影响 - 问题: 全局依赖的lucene-core升级为8.6.0导致log的client加载的6.6.1版本被覆盖 解决方法: 暂时调整为指定6.6.1版本,后续升级log为高版本的http方式连接es
test
bugfix log服务指定lucene依赖版本避免全局版本影响 问题: 全局依赖的lucene 解决方法: ,后续升级log为高版本的http方式连接es
1
349,996
10,477,044,078
IssuesEvent
2019-09-23 19:59:31
pravega/pravega
https://api.github.com/repos/pravega/pravega
closed
Observing "OutOfDirectMemoryError" exception in Bookkeeper
kind/question priority/P2 status/needs-attention version/0.6.0
**Observing `OutOfDirectMemoryError` exception -- ERROR - [bookie-io-1-2:BookieRequestHandler@70] - Unhandled exception occurred in I/O thread or handler io.netty.util.internal.OutOfDirectMemoryError: failed to allocate 16777216 byte(s) of direct memory (used: 1073741824, max: 1073741824) while running moderate IO workload with ( 12 readers and 7 writers )** Environment details: PKS / K8 with medium cluster: ``` 3 master: xlarge: 4 CPU, 16 GB Ram, 32 GB Disk 5 worker: 2xlarge: 8 CPU, 32 GB Ram, 64 GB Disk Tier-1 storage is from VSAN datastore Tier-2 storage curved on NFS Client provisioner using Isilon as backend ``` ``` Pravega version : 0.5.0-2284.8c6c176 Zookeeper Operator : pravega/zookeeper-operator:0.2.2 Pravega Operator: pravega/pravega-operator:0.3.2 ``` **Snip of error:** [Bookkeeper_log.zip](https://github.com/pravega/pravega/files/3346101/Bookkeeper_log.zip) ``` 2019-06-28 19:02:05,308 - ERROR - [bookie-io-1-2:BookieRequestHandler@70] - Unhandled exception occurred in I/O thread or handler io.netty.util.internal.OutOfDirectMemoryError: failed to allocate 16777216 byte(s) of direct memory (used: 1073741824, max: 1073741824) at io.netty.util.internal.PlatformDependent.incrementMemoryCounter(PlatformDependent.java:640) at io.netty.util.internal.PlatformDependent.allocateDirectNoCleaner(PlatformDependent.java:594) at io.netty.buffer.PoolArena$DirectArena.allocateDirect(PoolArena.java:764) at io.netty.buffer.PoolArena$DirectArena.newChunk(PoolArena.java:740) at io.netty.buffer.PoolArena.allocateNormal(PoolArena.java:244) at io.netty.buffer.PoolArena.allocate(PoolArena.java:226) at io.netty.buffer.PoolArena.allocate(PoolArena.java:146) at io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(PooledByteBufAllocator.java:324) at io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:185) at io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:176) at io.netty.buffer.AbstractByteBufAllocator.ioBuffer(AbstractByteBufAllocator.java:137) at io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(DefaultMaxMessagesRecvByteBufAllocator.java:114) at io.netty.channel.epoll.EpollRecvByteAllocatorHandle.allocate(EpollRecvByteAllocatorHandle.java:71) at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:791) at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:404) at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:304) at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:886) at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) at java.lang.Thread.run(Thread.java:748) ```
1.0
Observing "OutOfDirectMemoryError" exception in Bookkeeper - **Observing `OutOfDirectMemoryError` exception -- ERROR - [bookie-io-1-2:BookieRequestHandler@70] - Unhandled exception occurred in I/O thread or handler io.netty.util.internal.OutOfDirectMemoryError: failed to allocate 16777216 byte(s) of direct memory (used: 1073741824, max: 1073741824) while running moderate IO workload with ( 12 readers and 7 writers )** Environment details: PKS / K8 with medium cluster: ``` 3 master: xlarge: 4 CPU, 16 GB Ram, 32 GB Disk 5 worker: 2xlarge: 8 CPU, 32 GB Ram, 64 GB Disk Tier-1 storage is from VSAN datastore Tier-2 storage curved on NFS Client provisioner using Isilon as backend ``` ``` Pravega version : 0.5.0-2284.8c6c176 Zookeeper Operator : pravega/zookeeper-operator:0.2.2 Pravega Operator: pravega/pravega-operator:0.3.2 ``` **Snip of error:** [Bookkeeper_log.zip](https://github.com/pravega/pravega/files/3346101/Bookkeeper_log.zip) ``` 2019-06-28 19:02:05,308 - ERROR - [bookie-io-1-2:BookieRequestHandler@70] - Unhandled exception occurred in I/O thread or handler io.netty.util.internal.OutOfDirectMemoryError: failed to allocate 16777216 byte(s) of direct memory (used: 1073741824, max: 1073741824) at io.netty.util.internal.PlatformDependent.incrementMemoryCounter(PlatformDependent.java:640) at io.netty.util.internal.PlatformDependent.allocateDirectNoCleaner(PlatformDependent.java:594) at io.netty.buffer.PoolArena$DirectArena.allocateDirect(PoolArena.java:764) at io.netty.buffer.PoolArena$DirectArena.newChunk(PoolArena.java:740) at io.netty.buffer.PoolArena.allocateNormal(PoolArena.java:244) at io.netty.buffer.PoolArena.allocate(PoolArena.java:226) at io.netty.buffer.PoolArena.allocate(PoolArena.java:146) at io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(PooledByteBufAllocator.java:324) at io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:185) at io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:176) at io.netty.buffer.AbstractByteBufAllocator.ioBuffer(AbstractByteBufAllocator.java:137) at io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(DefaultMaxMessagesRecvByteBufAllocator.java:114) at io.netty.channel.epoll.EpollRecvByteAllocatorHandle.allocate(EpollRecvByteAllocatorHandle.java:71) at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:791) at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:404) at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:304) at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:886) at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) at java.lang.Thread.run(Thread.java:748) ```
non_test
observing outofdirectmemoryerror exception in bookkeeper observing outofdirectmemoryerror exception error unhandled exception occurred in i o thread or handler io netty util internal outofdirectmemoryerror failed to allocate byte s of direct memory used max while running moderate io workload with readers and writers environment details pks with medium cluster master xlarge cpu gb ram gb disk worker cpu gb ram gb disk tier storage is from vsan datastore tier storage curved on nfs client provisioner using isilon as backend pravega version zookeeper operator pravega zookeeper operator pravega operator pravega pravega operator snip of error error unhandled exception occurred in i o thread or handler io netty util internal outofdirectmemoryerror failed to allocate byte s of direct memory used max at io netty util internal platformdependent incrementmemorycounter platformdependent java at io netty util internal platformdependent allocatedirectnocleaner platformdependent java at io netty buffer poolarena directarena allocatedirect poolarena java at io netty buffer poolarena directarena newchunk poolarena java at io netty buffer poolarena allocatenormal poolarena java at io netty buffer poolarena allocate poolarena java at io netty buffer poolarena allocate poolarena java at io netty buffer pooledbytebufallocator newdirectbuffer pooledbytebufallocator java at io netty buffer abstractbytebufallocator directbuffer abstractbytebufallocator java at io netty buffer abstractbytebufallocator directbuffer abstractbytebufallocator java at io netty buffer abstractbytebufallocator iobuffer abstractbytebufallocator java at io netty channel defaultmaxmessagesrecvbytebufallocator maxmessagehandle allocate defaultmaxmessagesrecvbytebufallocator java at io netty channel epoll epollrecvbyteallocatorhandle allocate epollrecvbyteallocatorhandle java at io netty channel epoll abstractepollstreamchannel epollstreamunsafe epollinready abstractepollstreamchannel java at io netty channel epoll epolleventloop processready epolleventloop java at io netty channel epoll epolleventloop run epolleventloop java at io netty util concurrent singlethreadeventexecutor run singlethreadeventexecutor java at io netty util concurrent fastthreadlocalrunnable run fastthreadlocalrunnable java at java lang thread run thread java
0
226,542
18,026,192,763
IssuesEvent
2021-09-17 05:06:50
MohistMC/Mohist
https://api.github.com/repos/MohistMC/Mohist
closed
[1.16.5] Unknown Title
Bug 1.16.5 More Info Needed Needs Testing
<!-- ISSUE_TEMPLATE_3 -> IMPORTANT: DO NOT DELETE THIS LINE.--> <!-- Thank you for reporting ! Please note that issues can take a lot of time to be fixed and there is no eta.--> <!-- If you don't know where to upload your logs and crash reports, you can use these websites : --> <!-- https://paste.ubuntu.com/ (recommended) --> <!-- https://mclo.gs --> <!-- https://haste.mohistmc.com --> <!-- https://pastebin.com --> <!-- TO FILL THIS TEMPLATE, YOU NEED TO REPLACE THE {} BY WHAT YOU WANT --> **Minecraft Version :**1.16.5 **Mohist Version :**769 **Operating System :** Linux **Logs :** https://mclo.gs/bPZWfrn **Debug:** https://mclo.gs/N0fQ0gM **Image error:** https://images-ext-2.discordapp.net/external/ODdFhf7uiz71RRoFOIP3s1s__2TKr2y_qjq5AFjECRY/%3Fwidth%3D1440%26height%3D247/https/media.discordapp.net/attachments/811309971793772574/884865354193580102/unknown.png **Mod list :** MODS: [18:32:47 INFO]: 154 [rsrequestify, kubejs, astralsorcery, netherportalfix, eidolon, extendedcrafting, kubejs_mekanism, chineseworkshop, uppers, autooredictconv, envirocore, bambooeverything, thermal, ironjetpacks, rftoolsbase, envirotech, controlling, cookingforblockheads, jrftl, xnet, dankstorage, placebo, powah, ftbguilibrary, mdecore, bookshelf, randompatches, buildinggadgets, darkutils, apotheosis, twerkitmeal, mekanismgenerators, kubejs_blood_magic, xnetgases, absentbydesign, supplementaries, exnihiloae, refinedstorage, upgradednetherite, cuneiform, industrialforegoing, farmersdelight, resourcefulbees, thermal_innovation, biomesoplenty, botanytrees, mekanismadditions, valkyrielib, lollipop, silentgear, botania, simplybackpacks, curios, patchouli, collective, rftoolsstorage, angelring, rftoolscontrol, ceramics, thermal_expansion, elevatorid, usrg, runelic, starterkit, mekanismtools, constructionwand, architectury, observerlib, globalxp, productivebees, cloth-config, trashcans, the_bumblezone, bwncr, customwindowtitle, fastleafdecay, codechickenlib, quantumstorage, geckolib3, kiwi, rhino, cucumber, torchslabmod, craftingstation, itemfilters, druidcraft, terraincognita, tesseract, mekanism, reap, create, clumps, enviromats, appliedenergistics2, framedcompactdrawers, libx, dimstorage, decorative_blocks, botanypots, engineerstools, cofh_core, travel_anchors, mcjtylib, jeitweaker, enderstorage, crafttweaker, ars_nouveau, rftoolspower, mysticalworld, extradisks, immersivepetroleum, forge, bloodmagic, selene, ironchest, minecraft, rftoolsutility, theoneprobe, swingthroughgrass, titanium, ftbquests, immersiveengineering, silentlib, forbidden_arcanus, wpbmod, exnihilomekanism, ceramicshears, rftoolsbuilder, jeiintegration, enviroenergy, flywheel, mantle, quark, jaopca, itemcollectors, gravestone, thermal_cultivation, fastbench, autoreglib, storagedrawers, fluxnetworks, brickhopper, globaldataandresourcepacks, kubejs_create, engineersdecor, solcarrot, moredragoneggs, modularrouters, byg, kubejs_immersive_engineering, refinedstorageaddons, exnihilosequentia, cosmeticarmorreworked, valhelsia_core, chiselsandbits, createaddition] **Plugin list :**Plugins: [18:32:52 INFO]: Plugins (44): LuckPerms, PluginConstructorAPI, JoinCommands, BetterReports, PlaceholderAPI, ClearLag, PlugMan, ProtocolLib, CommandAlias, SkinsRestorer, eZProtector, DeluxeTags, BCommons, NoteBlockAPI, TabListPro, NBTAPI, Vault, ChatManager, JukeBox, WorldEdit, PlayerKits, CustomEnderChest, System, HolographicDisplays, WorldGuard, Citizens, TimedRewards, CrazyAuctions, DeluxeMenus, PlayerVaults, WorldGuardExtraFlags, CrazyEnchantments, CrazyCrates, Skript, BlockRegen, FabledSkyBlock, Multiverse-Core, CitizensCMD, DiscordSRV, BlockParticles, AuthMe, RedProtect, DisplayShops, ProtectionLib **Description of issue :**I have several players complaining that they make a mistake from time to time. Only resolve when restarted the server.
1.0
[1.16.5] Unknown Title - <!-- ISSUE_TEMPLATE_3 -> IMPORTANT: DO NOT DELETE THIS LINE.--> <!-- Thank you for reporting ! Please note that issues can take a lot of time to be fixed and there is no eta.--> <!-- If you don't know where to upload your logs and crash reports, you can use these websites : --> <!-- https://paste.ubuntu.com/ (recommended) --> <!-- https://mclo.gs --> <!-- https://haste.mohistmc.com --> <!-- https://pastebin.com --> <!-- TO FILL THIS TEMPLATE, YOU NEED TO REPLACE THE {} BY WHAT YOU WANT --> **Minecraft Version :**1.16.5 **Mohist Version :**769 **Operating System :** Linux **Logs :** https://mclo.gs/bPZWfrn **Debug:** https://mclo.gs/N0fQ0gM **Image error:** https://images-ext-2.discordapp.net/external/ODdFhf7uiz71RRoFOIP3s1s__2TKr2y_qjq5AFjECRY/%3Fwidth%3D1440%26height%3D247/https/media.discordapp.net/attachments/811309971793772574/884865354193580102/unknown.png **Mod list :** MODS: [18:32:47 INFO]: 154 [rsrequestify, kubejs, astralsorcery, netherportalfix, eidolon, extendedcrafting, kubejs_mekanism, chineseworkshop, uppers, autooredictconv, envirocore, bambooeverything, thermal, ironjetpacks, rftoolsbase, envirotech, controlling, cookingforblockheads, jrftl, xnet, dankstorage, placebo, powah, ftbguilibrary, mdecore, bookshelf, randompatches, buildinggadgets, darkutils, apotheosis, twerkitmeal, mekanismgenerators, kubejs_blood_magic, xnetgases, absentbydesign, supplementaries, exnihiloae, refinedstorage, upgradednetherite, cuneiform, industrialforegoing, farmersdelight, resourcefulbees, thermal_innovation, biomesoplenty, botanytrees, mekanismadditions, valkyrielib, lollipop, silentgear, botania, simplybackpacks, curios, patchouli, collective, rftoolsstorage, angelring, rftoolscontrol, ceramics, thermal_expansion, elevatorid, usrg, runelic, starterkit, mekanismtools, constructionwand, architectury, observerlib, globalxp, productivebees, cloth-config, trashcans, the_bumblezone, bwncr, customwindowtitle, fastleafdecay, codechickenlib, quantumstorage, geckolib3, kiwi, rhino, cucumber, torchslabmod, craftingstation, itemfilters, druidcraft, terraincognita, tesseract, mekanism, reap, create, clumps, enviromats, appliedenergistics2, framedcompactdrawers, libx, dimstorage, decorative_blocks, botanypots, engineerstools, cofh_core, travel_anchors, mcjtylib, jeitweaker, enderstorage, crafttweaker, ars_nouveau, rftoolspower, mysticalworld, extradisks, immersivepetroleum, forge, bloodmagic, selene, ironchest, minecraft, rftoolsutility, theoneprobe, swingthroughgrass, titanium, ftbquests, immersiveengineering, silentlib, forbidden_arcanus, wpbmod, exnihilomekanism, ceramicshears, rftoolsbuilder, jeiintegration, enviroenergy, flywheel, mantle, quark, jaopca, itemcollectors, gravestone, thermal_cultivation, fastbench, autoreglib, storagedrawers, fluxnetworks, brickhopper, globaldataandresourcepacks, kubejs_create, engineersdecor, solcarrot, moredragoneggs, modularrouters, byg, kubejs_immersive_engineering, refinedstorageaddons, exnihilosequentia, cosmeticarmorreworked, valhelsia_core, chiselsandbits, createaddition] **Plugin list :**Plugins: [18:32:52 INFO]: Plugins (44): LuckPerms, PluginConstructorAPI, JoinCommands, BetterReports, PlaceholderAPI, ClearLag, PlugMan, ProtocolLib, CommandAlias, SkinsRestorer, eZProtector, DeluxeTags, BCommons, NoteBlockAPI, TabListPro, NBTAPI, Vault, ChatManager, JukeBox, WorldEdit, PlayerKits, CustomEnderChest, System, HolographicDisplays, WorldGuard, Citizens, TimedRewards, CrazyAuctions, DeluxeMenus, PlayerVaults, WorldGuardExtraFlags, CrazyEnchantments, CrazyCrates, Skript, BlockRegen, FabledSkyBlock, Multiverse-Core, CitizensCMD, DiscordSRV, BlockParticles, AuthMe, RedProtect, DisplayShops, ProtectionLib **Description of issue :**I have several players complaining that they make a mistake from time to time. Only resolve when restarted the server.
test
unknown title important do not delete this line minecraft version mohist version operating system linux logs debug image error mod list mods plugin list plugins plugins luckperms pluginconstructorapi joincommands betterreports placeholderapi clearlag plugman protocollib commandalias skinsrestorer ezprotector deluxetags bcommons noteblockapi tablistpro nbtapi vault chatmanager jukebox worldedit playerkits customenderchest system holographicdisplays worldguard citizens timedrewards crazyauctions deluxemenus playervaults worldguardextraflags crazyenchantments crazycrates skript blockregen fabledskyblock multiverse core citizenscmd discordsrv blockparticles authme redprotect displayshops protectionlib description of issue i have several players complaining that they make a mistake from time to time only resolve when restarted the server
1
213,644
16,528,944,211
IssuesEvent
2021-05-27 01:31:41
google/knative-gcp
https://api.github.com/repos/google/knative-gcp
closed
Test post install in upgrade test
area/test-and-release kind/feature-request lifecycle/stale priority/2
**Problem** The existing upgrade test does not test post install jobs of release version or head. So if there is a need for post install job, the upgrade test will fail. Ideally we should do as closely to what the operator do as possible: run the corresponding post-install jobs after upgrade and downgrade. **[Persona:](https://github.com/knative/eventing/blob/master/docs/personas.md)** Developers **Exit Criteria** Post install jobs will be used during upgrade and downgrade.
1.0
Test post install in upgrade test - **Problem** The existing upgrade test does not test post install jobs of release version or head. So if there is a need for post install job, the upgrade test will fail. Ideally we should do as closely to what the operator do as possible: run the corresponding post-install jobs after upgrade and downgrade. **[Persona:](https://github.com/knative/eventing/blob/master/docs/personas.md)** Developers **Exit Criteria** Post install jobs will be used during upgrade and downgrade.
test
test post install in upgrade test problem the existing upgrade test does not test post install jobs of release version or head so if there is a need for post install job the upgrade test will fail ideally we should do as closely to what the operator do as possible run the corresponding post install jobs after upgrade and downgrade developers exit criteria post install jobs will be used during upgrade and downgrade
1
207,378
23,441,884,282
IssuesEvent
2022-08-15 15:38:03
KaterinaOrg/WebGoat
https://api.github.com/repos/KaterinaOrg/WebGoat
closed
CVE-2019-11358 (Medium) detected in jquery-2.1.4.min.js - autoclosed
security vulnerability
## CVE-2019-11358 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-2.1.4.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js</a></p> <p>Path to vulnerable library: /webgoat-container/src/main/resources/static/js/libs/jquery-2.1.4.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-2.1.4.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/KaterinaOrg/WebGoat/commit/f18e43fbc2d56c28b38b6d440d202f7327efd240">f18e43fbc2d56c28b38b6d440d202f7327efd240</a></p> <p>Found in base branch: <b>develop</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype. <p>Publish Date: 2019-04-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p> <p>Release Date: 2019-04-20</p> <p>Fix Resolution: 3.4.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"jquery","packageVersion":"2.1.4","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"jquery:2.1.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"}],"baseBranches":["develop"],"vulnerabilityIdentifier":"CVE-2019-11358","vulnerabilityDetails":"jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
True
CVE-2019-11358 (Medium) detected in jquery-2.1.4.min.js - autoclosed - ## CVE-2019-11358 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-2.1.4.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js</a></p> <p>Path to vulnerable library: /webgoat-container/src/main/resources/static/js/libs/jquery-2.1.4.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-2.1.4.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/KaterinaOrg/WebGoat/commit/f18e43fbc2d56c28b38b6d440d202f7327efd240">f18e43fbc2d56c28b38b6d440d202f7327efd240</a></p> <p>Found in base branch: <b>develop</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype. <p>Publish Date: 2019-04-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p> <p>Release Date: 2019-04-20</p> <p>Fix Resolution: 3.4.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"jquery","packageVersion":"2.1.4","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"jquery:2.1.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"}],"baseBranches":["develop"],"vulnerabilityIdentifier":"CVE-2019-11358","vulnerabilityDetails":"jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
non_test
cve medium detected in jquery min js autoclosed cve medium severity vulnerability vulnerable library jquery min js javascript library for dom operations library home page a href path to vulnerable library webgoat container src main resources static js libs jquery min js dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch develop vulnerability details jquery before as used in drupal backdrop cms and other products mishandles jquery extend true because of object prototype pollution if an unsanitized source object contained an enumerable proto property it could extend the native object prototype publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree jquery isminimumfixversionavailable true minimumfixversion basebranches vulnerabilityidentifier cve vulnerabilitydetails jquery before as used in drupal backdrop cms and other products mishandles jquery extend true because of object prototype pollution if an unsanitized source object contained an enumerable proto property it could extend the native object prototype vulnerabilityurl
0
45,476
5,717,518,044
IssuesEvent
2017-04-19 17:25:22
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
System.Security.Cryptography.X509Certificates.Tests.ChainTests.BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores failed with "System.Security.Cryptography.CryptographicException"
area-System.Security blocking-clean-ci os-linux test-run-core
Failed test: System.Security.Cryptography.X509Certificates.Tests.ChainTests.BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores Configuration: outerloop_netcoreapp_fedora24_debug Detail: https://ci.dot.net/job/dotnet_corefx/job/master/job/outerloop_netcoreapp_fedora24_debug/26/testReport/System.Security.Cryptography.X509Certificates.Tests/ChainTests/BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores/ MESSAGE: ~~~ System.Security.Cryptography.CryptographicException : Invalid file permissions. The file '/mnt/resource/j/workspace/dotnet_corefx/master/outerloop_netcoreapp_fedora24_debug/tempHome/.dotnet/corefx/cryptography/x509stores/root/4EB6D578499B1CCF5F581EAD56BE3D9B6744A5E5.pfx' must readable and writable by the current owner and by no one else, and the permissions could not be changed to meet that criteria. ~~~ STACK TRACE: ~~~ at Internal.Cryptography.Pal.DirectoryBasedStoreProvider.EnsureFilePermissions(FileStream stream, UInt32 userId) at Internal.Cryptography.Pal.DirectoryBasedStoreProvider.Add(ICertificatePal certPal) at System.Security.Cryptography.X509Certificates.X509Store.Add(X509Certificate2 certificate) at System.Security.Cryptography.X509Certificates.Tests.ChainTests.BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores() ~~~
1.0
System.Security.Cryptography.X509Certificates.Tests.ChainTests.BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores failed with "System.Security.Cryptography.CryptographicException" - Failed test: System.Security.Cryptography.X509Certificates.Tests.ChainTests.BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores Configuration: outerloop_netcoreapp_fedora24_debug Detail: https://ci.dot.net/job/dotnet_corefx/job/master/job/outerloop_netcoreapp_fedora24_debug/26/testReport/System.Security.Cryptography.X509Certificates.Tests/ChainTests/BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores/ MESSAGE: ~~~ System.Security.Cryptography.CryptographicException : Invalid file permissions. The file '/mnt/resource/j/workspace/dotnet_corefx/master/outerloop_netcoreapp_fedora24_debug/tempHome/.dotnet/corefx/cryptography/x509stores/root/4EB6D578499B1CCF5F581EAD56BE3D9B6744A5E5.pfx' must readable and writable by the current owner and by no one else, and the permissions could not be changed to meet that criteria. ~~~ STACK TRACE: ~~~ at Internal.Cryptography.Pal.DirectoryBasedStoreProvider.EnsureFilePermissions(FileStream stream, UInt32 userId) at Internal.Cryptography.Pal.DirectoryBasedStoreProvider.Add(ICertificatePal certPal) at System.Security.Cryptography.X509Certificates.X509Store.Add(X509Certificate2 certificate) at System.Security.Cryptography.X509Certificates.Tests.ChainTests.BuildChain_MicrosoftDotCom_WithRootCertInUserAndSystemRootCertStores() ~~~
test
system security cryptography tests chaintests buildchain microsoftdotcom withrootcertinuserandsystemrootcertstores failed with system security cryptography cryptographicexception failed test system security cryptography tests chaintests buildchain microsoftdotcom withrootcertinuserandsystemrootcertstores configuration outerloop netcoreapp debug detail message system security cryptography cryptographicexception invalid file permissions the file mnt resource j workspace dotnet corefx master outerloop netcoreapp debug temphome dotnet corefx cryptography root pfx must readable and writable by the current owner and by no one else and the permissions could not be changed to meet that criteria stack trace at internal cryptography pal directorybasedstoreprovider ensurefilepermissions filestream stream userid at internal cryptography pal directorybasedstoreprovider add icertificatepal certpal at system security cryptography add certificate at system security cryptography tests chaintests buildchain microsoftdotcom withrootcertinuserandsystemrootcertstores
1
319,332
9,742,338,003
IssuesEvent
2019-06-02 16:17:57
jsheroes/jsheroes.io
https://api.github.com/repos/jsheroes/jsheroes.io
opened
Prepare site for 2020
high-priority
A few changes needed on the website while preparing for 2020: - [ ] banner image should be updated (see #383) - [ ] new data folders need to be added for 2020 (no speakers, sponsors, partners, communities for now, I will fill that up later) - [ ] the aftermovie (https://www.youtube.com/watch?v=jdr9eQGq97g) should be added as an embed after the image, I think we already had the component from last year when we did something similar. - [ ] **mission** section should be hidden from the main page and removed from the menu for now - [ ] **schedule** should display: "coming soon" or can be removed like mission - [ ] **stats** section should be added with new numbers - @danielmocan can you help here? - [ ] two new rows of images should be added in the photos section - with the photos from 2019 and the videos from 2019 as links - [ ] a 2019 pages should be added and linked in the header, same layout as 2018
1.0
Prepare site for 2020 - A few changes needed on the website while preparing for 2020: - [ ] banner image should be updated (see #383) - [ ] new data folders need to be added for 2020 (no speakers, sponsors, partners, communities for now, I will fill that up later) - [ ] the aftermovie (https://www.youtube.com/watch?v=jdr9eQGq97g) should be added as an embed after the image, I think we already had the component from last year when we did something similar. - [ ] **mission** section should be hidden from the main page and removed from the menu for now - [ ] **schedule** should display: "coming soon" or can be removed like mission - [ ] **stats** section should be added with new numbers - @danielmocan can you help here? - [ ] two new rows of images should be added in the photos section - with the photos from 2019 and the videos from 2019 as links - [ ] a 2019 pages should be added and linked in the header, same layout as 2018
non_test
prepare site for a few changes needed on the website while preparing for banner image should be updated see new data folders need to be added for no speakers sponsors partners communities for now i will fill that up later the aftermovie should be added as an embed after the image i think we already had the component from last year when we did something similar mission section should be hidden from the main page and removed from the menu for now schedule should display coming soon or can be removed like mission stats section should be added with new numbers danielmocan can you help here two new rows of images should be added in the photos section with the photos from and the videos from as links a pages should be added and linked in the header same layout as
0
346,783
31,024,028,227
IssuesEvent
2023-08-10 07:54:17
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
Failing test: Security Solution Cypress.x-pack/plugins/security_solution/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications·cy·ts - Detection rules, Prebuilt Rules Installation and Update Notifications Notifications Rule installation available and rule update available notifications should notify user about prebuilt rules available for installation and for upgrade should notify user about prebuilt rules available for installation and for upgrade
failed-test
A test failed on a tracked branch ``` AssertionError: Timed out retrying after 150000ms: expected '<button#install-prebuilt-rules-anchor.euiButtonEmpty.css-9ywwuh-euiButtonDisplay-euiButtonEmpty-m-empty-primary>' to have text 'Add Elastic rules1', but the text was 'Add Elastic rules' at Context.eval (webpack:///./e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications.cy.ts:176:38) ``` First failure: [CI Build - main](https://buildkite.com/elastic/kibana-on-merge-unsupported-ftrs/builds/5349#0189de32-5c4d-4561-9897-3467ef83a860) <!-- kibanaCiData = {"failed-test":{"test.class":"Security Solution Cypress.x-pack/plugins/security_solution/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications·cy·ts","test.name":"Detection rules, Prebuilt Rules Installation and Update Notifications Notifications Rule installation available and rule update available notifications should notify user about prebuilt rules available for installation and for upgrade should notify user about prebuilt rules available for installation and for upgrade","test.failCount":1}} -->
1.0
Failing test: Security Solution Cypress.x-pack/plugins/security_solution/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications·cy·ts - Detection rules, Prebuilt Rules Installation and Update Notifications Notifications Rule installation available and rule update available notifications should notify user about prebuilt rules available for installation and for upgrade should notify user about prebuilt rules available for installation and for upgrade - A test failed on a tracked branch ``` AssertionError: Timed out retrying after 150000ms: expected '<button#install-prebuilt-rules-anchor.euiButtonEmpty.css-9ywwuh-euiButtonDisplay-euiButtonEmpty-m-empty-primary>' to have text 'Add Elastic rules1', but the text was 'Add Elastic rules' at Context.eval (webpack:///./e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications.cy.ts:176:38) ``` First failure: [CI Build - main](https://buildkite.com/elastic/kibana-on-merge-unsupported-ftrs/builds/5349#0189de32-5c4d-4561-9897-3467ef83a860) <!-- kibanaCiData = {"failed-test":{"test.class":"Security Solution Cypress.x-pack/plugins/security_solution/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications·cy·ts","test.name":"Detection rules, Prebuilt Rules Installation and Update Notifications Notifications Rule installation available and rule update available notifications should notify user about prebuilt rules available for installation and for upgrade should notify user about prebuilt rules available for installation and for upgrade","test.failCount":1}} -->
test
failing test security solution cypress x pack plugins security solution cypress detection response prebuilt rules prebuilt rules notifications·cy·ts detection rules prebuilt rules installation and update notifications notifications rule installation available and rule update available notifications should notify user about prebuilt rules available for installation and for upgrade should notify user about prebuilt rules available for installation and for upgrade a test failed on a tracked branch assertionerror timed out retrying after expected to have text add elastic but the text was add elastic rules at context eval webpack detection response prebuilt rules prebuilt rules notifications cy ts first failure
1
156,600
12,323,904,513
IssuesEvent
2020-05-13 12:56:32
whamcloud/integrated-manager-for-lustre
https://api.github.com/repos/whamcloud/integrated-manager-for-lustre
closed
Detect Filesystem Command Hangs
failing tests
Occasionally the **Detect Filesystem** command will hang indefinitely. It looks like this happens due to an RPC not returning. Interestingly, if the iml-storage-server.target is restarted on the affected node the rpc will complete and the filesystem will be detected successfully. The cause for the incomplete RPC is currently unknown. To help determine the cause, I will be adding a patch that sets the python services to run in debug mode.
1.0
Detect Filesystem Command Hangs - Occasionally the **Detect Filesystem** command will hang indefinitely. It looks like this happens due to an RPC not returning. Interestingly, if the iml-storage-server.target is restarted on the affected node the rpc will complete and the filesystem will be detected successfully. The cause for the incomplete RPC is currently unknown. To help determine the cause, I will be adding a patch that sets the python services to run in debug mode.
test
detect filesystem command hangs occasionally the detect filesystem command will hang indefinitely it looks like this happens due to an rpc not returning interestingly if the iml storage server target is restarted on the affected node the rpc will complete and the filesystem will be detected successfully the cause for the incomplete rpc is currently unknown to help determine the cause i will be adding a patch that sets the python services to run in debug mode
1
350,378
10,483,220,491
IssuesEvent
2019-09-24 13:38:03
jenkins-x/jx
https://api.github.com/repos/jenkins-x/jx
closed
JX Boot can duplicate env variables when running the master build
area/boot kind/bug priority/important-soon
### Summary When running jx boot to apply changes to the cluster, its possible to get duplicate environment variables added to the jenkins-x.yml (GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL), this can lead to a local commit existing that breaks the `verify env` step
1.0
JX Boot can duplicate env variables when running the master build - ### Summary When running jx boot to apply changes to the cluster, its possible to get duplicate environment variables added to the jenkins-x.yml (GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL), this can lead to a local commit existing that breaks the `verify env` step
non_test
jx boot can duplicate env variables when running the master build summary when running jx boot to apply changes to the cluster its possible to get duplicate environment variables added to the jenkins x yml git author name git author email this can lead to a local commit existing that breaks the verify env step
0
368,725
10,883,752,584
IssuesEvent
2019-11-18 06:11:29
wso2/product-ei
https://api.github.com/repos/wso2/product-ei
closed
[Tooling]Main config fields for set httpStatusVariable, errorMessageVariable registration for bpmn rest task
6.6.0 Priority/High
**Description:** Add config properties to set the HTTP status, error message for the BPMN Rest Task in EI tooling **Suggested Labels:** <!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels--> **Suggested Assignees:** Improvement **Affected Product Version:** EI 6.5.0 onwards **OS, DB, other environment details and versions:** **Steps to reproduce:** **Related Issues:** <!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
1.0
[Tooling]Main config fields for set httpStatusVariable, errorMessageVariable registration for bpmn rest task - **Description:** Add config properties to set the HTTP status, error message for the BPMN Rest Task in EI tooling **Suggested Labels:** <!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels--> **Suggested Assignees:** Improvement **Affected Product Version:** EI 6.5.0 onwards **OS, DB, other environment details and versions:** **Steps to reproduce:** **Related Issues:** <!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
non_test
main config fields for set httpstatusvariable errormessagevariable registration for bpmn rest task description add config properties to set the http status error message for the bpmn rest task in ei tooling suggested labels suggested assignees improvement affected product version ei onwards os db other environment details and versions steps to reproduce related issues
0
285,703
24,690,149,908
IssuesEvent
2022-10-19 07:56:56
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
opened
[CI] CoreWithMappedRuntimeFieldsIT test {yaml=aggregations/painless_execute/MovingFunctions are available in the default context} failing
:Analytics/Aggregations >test-failure
**Build scan:** https://gradle-enterprise.elastic.co/s/fttvujm6nvun4/tests/:x-pack:qa:runtime-fields:core-with-mapped:yamlRestTest/org.elasticsearch.xpack.runtimefields.test.mapped.CoreWithMappedRuntimeFieldsIT/test%20%7Byaml=aggregations%2Fpainless_execute%2FMovingFunctions%20are%20available%20in%20the%20default%20context%7D **Reproduction line:** `./gradlew ':x-pack:qa:runtime-fields:core-with-mapped:yamlRestTest' --tests "org.elasticsearch.xpack.runtimefields.test.mapped.CoreWithMappedRuntimeFieldsIT.test {yaml=aggregations/painless_execute/MovingFunctions are available in the default context}" -Dtests.seed=649E37F001339F57 -Dtests.locale=nn-NO -Dtests.timezone=ACT -Druntime.java=17` **Applicable branches:** main **Reproduces locally?:** Didn't try **Failure history:** https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.xpack.runtimefields.test.mapped.CoreWithMappedRuntimeFieldsIT&tests.test=test%20%7Byaml%3Daggregations/painless_execute/MovingFunctions%20are%20available%20in%20the%20default%20context%7D **Failure excerpt:** ``` java.lang.RuntimeException: Failure at [aggregations/painless_execute:3]: Rest api [scripts_painless_execute] cannot be found in the rest spec. Either it doesn't exist or is missing from the test classpath. Check the 'restResources' block of your project's build.gradle file. at __randomizedtesting.SeedInfo.seed([649E37F001339F57:ECCA082AAFCFF2AF]:0) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.executeSection(ESClientYamlSuiteTestCase.java:512) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.test(ESClientYamlSuiteTestCase.java:479) at jdk.internal.reflect.GeneratedMethodAccessor11.invoke(null:-1) at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:568) at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1758) at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:946) at com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(RandomizedRunner.java:982) at com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(RandomizedRunner.java:996) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:44) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:45) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:843) at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:490) at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:955) at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:840) at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:891) at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:902) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:38) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:47) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.lambda$forkTimeoutingTask$0(ThreadLeakControl.java:850) at java.lang.Thread.run(Thread.java:833) Caused by: java.lang.IllegalArgumentException: Rest api [scripts_painless_execute] cannot be found in the rest spec. Either it doesn't exist or is missing from the test classpath. Check the 'restResources' block of your project's build.gradle file. at org.elasticsearch.test.rest.yaml.ClientYamlTestClient.restApi(ClientYamlTestClient.java:276) at org.elasticsearch.test.rest.yaml.ClientYamlTestClient.callApi(ClientYamlTestClient.java:113) at org.elasticsearch.test.rest.yaml.ClientYamlTestExecutionContext.callApiInternal(ClientYamlTestExecutionContext.java:186) at org.elasticsearch.test.rest.yaml.ClientYamlTestExecutionContext.callApi(ClientYamlTestExecutionContext.java:106) at org.elasticsearch.test.rest.yaml.section.DoSection.execute(DoSection.java:344) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.executeSection(ESClientYamlSuiteTestCase.java:499) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.test(ESClientYamlSuiteTestCase.java:479) at jdk.internal.reflect.GeneratedMethodAccessor11.invoke(null:-1) at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:568) at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1758) at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:946) at com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(RandomizedRunner.java:982) at com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(RandomizedRunner.java:996) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:44) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:45) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:843) at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:490) at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:955) at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:840) at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:891) at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:902) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:38) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:47) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.lambda$forkTimeoutingTask$0(ThreadLeakControl.java:850) at java.lang.Thread.run(Thread.java:833) ```
1.0
[CI] CoreWithMappedRuntimeFieldsIT test {yaml=aggregations/painless_execute/MovingFunctions are available in the default context} failing - **Build scan:** https://gradle-enterprise.elastic.co/s/fttvujm6nvun4/tests/:x-pack:qa:runtime-fields:core-with-mapped:yamlRestTest/org.elasticsearch.xpack.runtimefields.test.mapped.CoreWithMappedRuntimeFieldsIT/test%20%7Byaml=aggregations%2Fpainless_execute%2FMovingFunctions%20are%20available%20in%20the%20default%20context%7D **Reproduction line:** `./gradlew ':x-pack:qa:runtime-fields:core-with-mapped:yamlRestTest' --tests "org.elasticsearch.xpack.runtimefields.test.mapped.CoreWithMappedRuntimeFieldsIT.test {yaml=aggregations/painless_execute/MovingFunctions are available in the default context}" -Dtests.seed=649E37F001339F57 -Dtests.locale=nn-NO -Dtests.timezone=ACT -Druntime.java=17` **Applicable branches:** main **Reproduces locally?:** Didn't try **Failure history:** https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.xpack.runtimefields.test.mapped.CoreWithMappedRuntimeFieldsIT&tests.test=test%20%7Byaml%3Daggregations/painless_execute/MovingFunctions%20are%20available%20in%20the%20default%20context%7D **Failure excerpt:** ``` java.lang.RuntimeException: Failure at [aggregations/painless_execute:3]: Rest api [scripts_painless_execute] cannot be found in the rest spec. Either it doesn't exist or is missing from the test classpath. Check the 'restResources' block of your project's build.gradle file. at __randomizedtesting.SeedInfo.seed([649E37F001339F57:ECCA082AAFCFF2AF]:0) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.executeSection(ESClientYamlSuiteTestCase.java:512) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.test(ESClientYamlSuiteTestCase.java:479) at jdk.internal.reflect.GeneratedMethodAccessor11.invoke(null:-1) at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:568) at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1758) at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:946) at com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(RandomizedRunner.java:982) at com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(RandomizedRunner.java:996) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:44) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:45) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:843) at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:490) at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:955) at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:840) at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:891) at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:902) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:38) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:47) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.lambda$forkTimeoutingTask$0(ThreadLeakControl.java:850) at java.lang.Thread.run(Thread.java:833) Caused by: java.lang.IllegalArgumentException: Rest api [scripts_painless_execute] cannot be found in the rest spec. Either it doesn't exist or is missing from the test classpath. Check the 'restResources' block of your project's build.gradle file. at org.elasticsearch.test.rest.yaml.ClientYamlTestClient.restApi(ClientYamlTestClient.java:276) at org.elasticsearch.test.rest.yaml.ClientYamlTestClient.callApi(ClientYamlTestClient.java:113) at org.elasticsearch.test.rest.yaml.ClientYamlTestExecutionContext.callApiInternal(ClientYamlTestExecutionContext.java:186) at org.elasticsearch.test.rest.yaml.ClientYamlTestExecutionContext.callApi(ClientYamlTestExecutionContext.java:106) at org.elasticsearch.test.rest.yaml.section.DoSection.execute(DoSection.java:344) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.executeSection(ESClientYamlSuiteTestCase.java:499) at org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase.test(ESClientYamlSuiteTestCase.java:479) at jdk.internal.reflect.GeneratedMethodAccessor11.invoke(null:-1) at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:568) at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1758) at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:946) at com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(RandomizedRunner.java:982) at com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(RandomizedRunner.java:996) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:44) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:45) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:843) at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:490) at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:955) at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:840) at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:891) at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:902) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:38) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.tests.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.tests.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:43) at org.apache.lucene.tests.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:44) at org.apache.lucene.tests.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:60) at org.apache.lucene.tests.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:47) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:390) at com.carrotsearch.randomizedtesting.ThreadLeakControl.lambda$forkTimeoutingTask$0(ThreadLeakControl.java:850) at java.lang.Thread.run(Thread.java:833) ```
test
corewithmappedruntimefieldsit test yaml aggregations painless execute movingfunctions are available in the default context failing build scan reproduction line gradlew x pack qa runtime fields core with mapped yamlresttest tests org elasticsearch xpack runtimefields test mapped corewithmappedruntimefieldsit test yaml aggregations painless execute movingfunctions are available in the default context dtests seed dtests locale nn no dtests timezone act druntime java applicable branches main reproduces locally didn t try failure history failure excerpt java lang runtimeexception failure at rest api cannot be found in the rest spec either it doesn t exist or is missing from the test classpath check the restresources block of your project s build gradle file at randomizedtesting seedinfo seed at org elasticsearch test rest yaml esclientyamlsuitetestcase executesection esclientyamlsuitetestcase java at org elasticsearch test rest yaml esclientyamlsuitetestcase test esclientyamlsuitetestcase java at jdk internal reflect invoke null at jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at com carrotsearch randomizedtesting randomizedrunner invoke randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testrulesetupteardownchained evaluate testrulesetupteardownchained java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at org apache lucene tests util testrulethreadandtestname evaluate testrulethreadandtestname java at org apache lucene tests util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene tests util testrulemarkfailure evaluate testrulemarkfailure java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting threadleakcontrol statementrunner run threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol forktimeoutingtask threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol evaluate threadleakcontrol java at com carrotsearch randomizedtesting randomizedrunner runsingletest randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testrulestoreclassname evaluate testrulestoreclassname java at com carrotsearch randomizedtesting rules noshadowingoroverridesonmethodsrule evaluate noshadowingoroverridesonmethodsrule java at com carrotsearch randomizedtesting rules noshadowingoroverridesonmethodsrule evaluate noshadowingoroverridesonmethodsrule java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testruleassertionsrequired evaluate testruleassertionsrequired java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at org apache lucene tests util testrulemarkfailure evaluate testrulemarkfailure java at org apache lucene tests util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene tests util testruleignoretestsuites evaluate testruleignoretestsuites java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting threadleakcontrol statementrunner run threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol lambda forktimeoutingtask threadleakcontrol java at java lang thread run thread java caused by java lang illegalargumentexception rest api cannot be found in the rest spec either it doesn t exist or is missing from the test classpath check the restresources block of your project s build gradle file at org elasticsearch test rest yaml clientyamltestclient restapi clientyamltestclient java at org elasticsearch test rest yaml clientyamltestclient callapi clientyamltestclient java at org elasticsearch test rest yaml clientyamltestexecutioncontext callapiinternal clientyamltestexecutioncontext java at org elasticsearch test rest yaml clientyamltestexecutioncontext callapi clientyamltestexecutioncontext java at org elasticsearch test rest yaml section dosection execute dosection java at org elasticsearch test rest yaml esclientyamlsuitetestcase executesection esclientyamlsuitetestcase java at org elasticsearch test rest yaml esclientyamlsuitetestcase test esclientyamlsuitetestcase java at jdk internal reflect invoke null at jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at com carrotsearch randomizedtesting randomizedrunner invoke randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testrulesetupteardownchained evaluate testrulesetupteardownchained java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at org apache lucene tests util testrulethreadandtestname evaluate testrulethreadandtestname java at org apache lucene tests util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene tests util testrulemarkfailure evaluate testrulemarkfailure java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting threadleakcontrol statementrunner run threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol forktimeoutingtask threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol evaluate threadleakcontrol java at com carrotsearch randomizedtesting randomizedrunner runsingletest randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at com carrotsearch randomizedtesting randomizedrunner evaluate randomizedrunner java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testrulestoreclassname evaluate testrulestoreclassname java at com carrotsearch randomizedtesting rules noshadowingoroverridesonmethodsrule evaluate noshadowingoroverridesonmethodsrule java at com carrotsearch randomizedtesting rules noshadowingoroverridesonmethodsrule evaluate noshadowingoroverridesonmethodsrule java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene tests util testruleassertionsrequired evaluate testruleassertionsrequired java at org apache lucene tests util abstractbeforeafterrule evaluate abstractbeforeafterrule java at org apache lucene tests util testrulemarkfailure evaluate testrulemarkfailure java at org apache lucene tests util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene tests util testruleignoretestsuites evaluate testruleignoretestsuites java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at com carrotsearch randomizedtesting threadleakcontrol statementrunner run threadleakcontrol java at com carrotsearch randomizedtesting threadleakcontrol lambda forktimeoutingtask threadleakcontrol java at java lang thread run thread java
1
193,759
22,216,325,401
IssuesEvent
2022-06-08 02:18:35
maddyCode23/linux-4.1.15
https://api.github.com/repos/maddyCode23/linux-4.1.15
reopened
CVE-2020-28974 (Medium) detected in linux-stable-rtv4.1.33
security vulnerability
## CVE-2020-28974 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/tty/vt/vt.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A slab-out-of-bounds read in fbcon in the Linux kernel before 5.9.7 could be used by local attackers to read privileged information or potentially crash the kernel, aka CID-3c4e0dff2095. This occurs because KD_FONT_OP_COPY in drivers/tty/vt/vt.c can be used for manipulations such as font height. <p>Publish Date: 2020-11-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28974>CVE-2020-28974</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.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Physical - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - 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://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.9.7">https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.9.7</a></p> <p>Release Date: 2020-11-20</p> <p>Fix Resolution: v5.9.7</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-28974 (Medium) detected in linux-stable-rtv4.1.33 - ## CVE-2020-28974 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/tty/vt/vt.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A slab-out-of-bounds read in fbcon in the Linux kernel before 5.9.7 could be used by local attackers to read privileged information or potentially crash the kernel, aka CID-3c4e0dff2095. This occurs because KD_FONT_OP_COPY in drivers/tty/vt/vt.c can be used for manipulations such as font height. <p>Publish Date: 2020-11-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28974>CVE-2020-28974</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.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Physical - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - 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://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.9.7">https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.9.7</a></p> <p>Release Date: 2020-11-20</p> <p>Fix Resolution: v5.9.7</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in linux stable cve medium severity vulnerability vulnerable library linux stable julia cartwright s fork of linux stable rt git library home page a href found in head commit a href found in base branch master vulnerable source files drivers tty vt vt c vulnerability details a slab out of bounds read in fbcon in the linux kernel before could be used by local attackers to read privileged information or potentially crash the kernel aka cid this occurs because kd font op copy in drivers tty vt vt c can be used for manipulations such as font height publish date url a href cvss score details base score metrics exploitability metrics attack vector physical attack complexity low privileges required high user interaction none scope unchanged impact metrics confidentiality impact low integrity impact low availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
39,939
5,257,316,729
IssuesEvent
2017-02-02 20:13:39
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
UserID, GroupID and File Mode should only allow numbers
area/secrets area/ui kind/bug status/resolved status/to-test
**Rancher Versions:** v1.4.0-rc6 **Steps to Reproduce:** 1. Create a service and go to secrets tab 2. Put letters and extra characters into the user, group, and file mode fields **Results:** Should only allow numbers
1.0
UserID, GroupID and File Mode should only allow numbers - **Rancher Versions:** v1.4.0-rc6 **Steps to Reproduce:** 1. Create a service and go to secrets tab 2. Put letters and extra characters into the user, group, and file mode fields **Results:** Should only allow numbers
test
userid groupid and file mode should only allow numbers rancher versions steps to reproduce create a service and go to secrets tab put letters and extra characters into the user group and file mode fields results should only allow numbers
1
120,962
10,143,782,671
IssuesEvent
2019-08-04 15:07:41
zio/zio
https://api.github.com/repos/zio/zio
opened
Improve organization of core tests
enhancement good first issue tests
Currently, there is no convention to relate a test to the thing it is testing. This trips up new contributors to the code base, and makes maintenance harder for existing contributors. In order to simplify the situation, we should adopt a simple convention that provides a definitive answer to the question, _"Where should a test for XYZ be placed?"_ I propose that if we are testing a method of a class / companion object "XYZ", then we should place that test inside a spec called "XYZSpec", in the test source directory. For example: - Test of `ZIO#map` should go into `ZIOSpec` - Test of `Fiber#join` should go into `FiberSpec` - Etc. This provides a very easy and definitive (if imperfect) way to relate tests to the code they are testing. This ticket is to reorganize all the tests according to the above convention. This does not involve adding any new tests or changing them, per se, just consolidating tests, renaming files, and so forth. Note that this will make some specs very large (e.g. `ZIOSpec`), but with _ZIO Test_, we will regain the ability to be modular even with this convention, by breaking one suite down into sub-suites. **Note**: This ticket refers to the core tests, which are in the `core-tests` directory of the top level project structure.
1.0
Improve organization of core tests - Currently, there is no convention to relate a test to the thing it is testing. This trips up new contributors to the code base, and makes maintenance harder for existing contributors. In order to simplify the situation, we should adopt a simple convention that provides a definitive answer to the question, _"Where should a test for XYZ be placed?"_ I propose that if we are testing a method of a class / companion object "XYZ", then we should place that test inside a spec called "XYZSpec", in the test source directory. For example: - Test of `ZIO#map` should go into `ZIOSpec` - Test of `Fiber#join` should go into `FiberSpec` - Etc. This provides a very easy and definitive (if imperfect) way to relate tests to the code they are testing. This ticket is to reorganize all the tests according to the above convention. This does not involve adding any new tests or changing them, per se, just consolidating tests, renaming files, and so forth. Note that this will make some specs very large (e.g. `ZIOSpec`), but with _ZIO Test_, we will regain the ability to be modular even with this convention, by breaking one suite down into sub-suites. **Note**: This ticket refers to the core tests, which are in the `core-tests` directory of the top level project structure.
test
improve organization of core tests currently there is no convention to relate a test to the thing it is testing this trips up new contributors to the code base and makes maintenance harder for existing contributors in order to simplify the situation we should adopt a simple convention that provides a definitive answer to the question where should a test for xyz be placed i propose that if we are testing a method of a class companion object xyz then we should place that test inside a spec called xyzspec in the test source directory for example test of zio map should go into ziospec test of fiber join should go into fiberspec etc this provides a very easy and definitive if imperfect way to relate tests to the code they are testing this ticket is to reorganize all the tests according to the above convention this does not involve adding any new tests or changing them per se just consolidating tests renaming files and so forth note that this will make some specs very large e g ziospec but with zio test we will regain the ability to be modular even with this convention by breaking one suite down into sub suites note this ticket refers to the core tests which are in the core tests directory of the top level project structure
1
8,679
5,914,731,369
IssuesEvent
2017-05-22 04:39:51
broesamle/clip_8
https://api.github.com/repos/broesamle/clip_8
closed
Improve instruction highlighting for initial and control flow elements
high-prio Tutorial + Getting Started usability
the first getting started tutorial with only an initial and a terminal element should have a nice flashing!
True
Improve instruction highlighting for initial and control flow elements - the first getting started tutorial with only an initial and a terminal element should have a nice flashing!
non_test
improve instruction highlighting for initial and control flow elements the first getting started tutorial with only an initial and a terminal element should have a nice flashing
0
186,995
14,426,874,599
IssuesEvent
2020-12-06 00:30:38
kalexmills/github-vet-tests-dec2020
https://api.github.com/repos/kalexmills/github-vet-tests-dec2020
closed
box/error-reporting-with-kubernetes-events: vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go; 3 LoC
fresh test tiny vendored
Found a possible issue in [box/error-reporting-with-kubernetes-events](https://www.github.com/box/error-reporting-with-kubernetes-events) at [vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go](https://github.com/box/error-reporting-with-kubernetes-events/blob/8ae23931850d5b2ee820bd407afaac36826d5c75/vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go#L273-L275) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to item at line 274 may start a goroutine [Click here to see the code in its original context.](https://github.com/box/error-reporting-with-kubernetes-events/blob/8ae23931850d5b2ee820bd407afaac36826d5c75/vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go#L273-L275) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for name, item := range table { testItem(name, &item) } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 8ae23931850d5b2ee820bd407afaac36826d5c75
1.0
box/error-reporting-with-kubernetes-events: vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go; 3 LoC - Found a possible issue in [box/error-reporting-with-kubernetes-events](https://www.github.com/box/error-reporting-with-kubernetes-events) at [vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go](https://github.com/box/error-reporting-with-kubernetes-events/blob/8ae23931850d5b2ee820bd407afaac36826d5c75/vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go#L273-L275) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > function call which takes a reference to item at line 274 may start a goroutine [Click here to see the code in its original context.](https://github.com/box/error-reporting-with-kubernetes-events/blob/8ae23931850d5b2ee820bd407afaac36826d5c75/vendor/k8s.io/apimachinery/pkg/util/proxy/transport_test.go#L273-L275) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for name, item := range table { testItem(name, &item) } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 8ae23931850d5b2ee820bd407afaac36826d5c75
test
box error reporting with kubernetes events vendor io apimachinery pkg util proxy transport test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call which takes a reference to item at line may start a goroutine click here to show the line s of go which triggered the analyzer go for name item range table testitem name item leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
678,636
23,204,345,131
IssuesEvent
2022-08-02 02:40:41
City-Bureau/city-scrapers-atl
https://api.github.com/repos/City-Bureau/city-scrapers-atl
closed
New Scraper: Atlanta City Council (Public Safety Committee)
priority-high
Create a new scraper for Atlanta City Council (Public Safety Committee) Website: https://citycouncil.atlantaga.gov/standing-committees/meeting-agendas/agenda Jurisdiction: City of Atlanta Classification: Policing Deals with public safety, police, fire, corrections, EMS, police licenses, municipal courts, solicitors, public defenders, city Law department
1.0
New Scraper: Atlanta City Council (Public Safety Committee) - Create a new scraper for Atlanta City Council (Public Safety Committee) Website: https://citycouncil.atlantaga.gov/standing-committees/meeting-agendas/agenda Jurisdiction: City of Atlanta Classification: Policing Deals with public safety, police, fire, corrections, EMS, police licenses, municipal courts, solicitors, public defenders, city Law department
non_test
new scraper atlanta city council public safety committee create a new scraper for atlanta city council public safety committee website jurisdiction city of atlanta classification policing deals with public safety police fire corrections ems police licenses municipal courts solicitors public defenders city law department
0
343,158
30,653,317,251
IssuesEvent
2023-07-25 10:21:04
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
reopened
Fix jax_numpy_statistical.test_jax_average
JAX Frontend Sub Task Failing Test
| | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5490419197"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5495148577"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5494558434"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5475588308"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5477523919"><img src=https://img.shields.io/badge/-success-success></a>
1.0
Fix jax_numpy_statistical.test_jax_average - | | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5490419197"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5495148577"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5494558434"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5475588308"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5477523919"><img src=https://img.shields.io/badge/-success-success></a>
test
fix jax numpy statistical test jax average tensorflow a href src paddle a href src torch a href src numpy a href src jax a href src
1
62,254
6,787,312,781
IssuesEvent
2017-10-31 03:14:38
fga-gpp-mds/2017.2-QueroCultura
https://api.github.com/repos/fga-gpp-mds/2017.2-QueroCultura
closed
US11 - Visualizar Indicadores culturais de Eventos [Frontend]
javascript test user history
Eu como usuário, desejo visualizar gráficos que apresentem os dados dos indicadores de eventos da plataforma. - [x] Os gráficos não podem ser poluídos demais. - [ ] Legendas e textos que expliquem a origem do indicador - [ ] 80% de cobertura nos testes
1.0
US11 - Visualizar Indicadores culturais de Eventos [Frontend] - Eu como usuário, desejo visualizar gráficos que apresentem os dados dos indicadores de eventos da plataforma. - [x] Os gráficos não podem ser poluídos demais. - [ ] Legendas e textos que expliquem a origem do indicador - [ ] 80% de cobertura nos testes
test
visualizar indicadores culturais de eventos eu como usuário desejo visualizar gráficos que apresentem os dados dos indicadores de eventos da plataforma os gráficos não podem ser poluídos demais legendas e textos que expliquem a origem do indicador de cobertura nos testes
1
13,179
22,266,581,834
IssuesEvent
2022-06-10 08:04:36
4l3x-suvnet/todo_calendar
https://api.github.com/repos/4l3x-suvnet/todo_calendar
closed
Add sidebar
requirement
Sidebar should contain - Detailed information for todo's for the selected day - Current day - Current date
1.0
Add sidebar - Sidebar should contain - Detailed information for todo's for the selected day - Current day - Current date
non_test
add sidebar sidebar should contain detailed information for todo s for the selected day current day current date
0
460,068
13,204,095,630
IssuesEvent
2020-08-14 15:17:23
Haivision/srt
https://api.github.com/repos/Haivision/srt
closed
[FR] Add SO_BINDTODEVICE UDP socket option
Priority: Medium Type: Enhancement [core]
Why it is not possible to use the ADAPTER setting in the CALLER mode? The ADAPTER setting is working for LISTENER and RENDEVOUS, but I would like to use the ADAPTER setting also in the CALLER mode to specify an interface for the outgoing datagrams. So at the moment I have to use the RENDEVOUS mode instead of the CALLER mode, but why?
1.0
[FR] Add SO_BINDTODEVICE UDP socket option - Why it is not possible to use the ADAPTER setting in the CALLER mode? The ADAPTER setting is working for LISTENER and RENDEVOUS, but I would like to use the ADAPTER setting also in the CALLER mode to specify an interface for the outgoing datagrams. So at the moment I have to use the RENDEVOUS mode instead of the CALLER mode, but why?
non_test
add so bindtodevice udp socket option why it is not possible to use the adapter setting in the caller mode the adapter setting is working for listener and rendevous but i would like to use the adapter setting also in the caller mode to specify an interface for the outgoing datagrams so at the moment i have to use the rendevous mode instead of the caller mode but why
0
246,440
20,865,117,462
IssuesEvent
2022-03-22 05:58:43
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: alterpk-bank failed
C-test-failure O-robot O-roachtest branch-master T-sql-schema
roachtest.alterpk-bank [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=3564395&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=3564395&tab=artifacts#/alterpk-bank) on master @ [fffd9274a986fcbff880b9d503334f117ba17515](https://github.com/cockroachdb/cockroach/commits/fffd9274a986fcbff880b9d503334f117ba17515): ``` | stdout: | _elapsed___errors__ops/sec(inst)___ops/sec(cum)__p50(ms)__p95(ms)__p99(ms)_pMax(ms) | 1.0s 0 2120.2 2124.4 3.5 6.3 7.9 23.1 transfer | 2.0s 0 2133.5 2128.9 3.5 6.3 9.4 13.6 transfer | 3.0s 0 2053.2 2103.7 3.7 6.6 10.5 13.6 transfer | 4.0s 0 2160.5 2117.9 3.7 6.0 8.4 11.0 transfer | 5.0s 0 2042.3 2102.7 3.7 6.6 10.5 24.1 transfer | 6.0s 0 1786.9 2050.1 4.2 7.6 13.1 16.8 transfer | 7.0s 0 965.7 1895.2 5.8 24.1 44.0 83.9 transfer | 8.0s 0 360.3 1703.5 13.6 88.1 117.4 159.4 transfer | 9.0s 0 321.9 1550.0 18.9 67.1 104.9 134.2 transfer | 10.0s 0 595.7 1454.5 10.5 33.6 58.7 88.1 transfer | 11.0s 0 687.5 1384.8 9.4 27.3 58.7 92.3 transfer | 12.0s 0 726.6 1329.9 9.4 23.1 60.8 75.5 transfer | 13.0s 0 512.0 1267.0 9.4 31.5 142.6 251.7 transfer | 14.0s 0 388.2 1204.3 9.4 142.6 243.3 260.0 transfer | 15.0s 0 641.5 1166.7 8.9 31.5 58.7 75.5 transfer | 16.0s 0 457.4 1122.4 9.4 46.1 113.2 352.3 transfer Wraps: (4) exit status 20 Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *cluster.WithCommandDetails (4) *exec.ExitError monitor.go:128,alterpk.go:92,test_runner.go:777: monitor failure: monitor task failed: t.Fatal() was called (1) attached stack trace -- stack trace: | main.(*monitorImpl).WaitE | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:116 | main.(*monitorImpl).Wait | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:124 | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests.registerAlterPK.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests/alterpk.go:92 | main.(*testRunner).runTest.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/test_runner.go:777 Wraps: (2) monitor failure Wraps: (3) attached stack trace -- stack trace: | main.(*monitorImpl).wait.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:172 Wraps: (4) monitor task failed Wraps: (5) attached stack trace -- stack trace: | main.init | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:81 | runtime.doInit | /usr/local/go/src/runtime/proc.go:6309 | runtime.main | /usr/local/go/src/runtime/proc.go:208 | runtime.goexit | /usr/local/go/src/runtime/asm_amd64.s:1371 Wraps: (6) t.Fatal() was called Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.withPrefix (5) *withstack.withStack (6) *errutil.leafError ``` <details><summary>Reproduce</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) </p> </details> /cc @cockroachdb/sql-schema <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*alterpk-bank.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-10546
2.0
roachtest: alterpk-bank failed - roachtest.alterpk-bank [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=3564395&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=3564395&tab=artifacts#/alterpk-bank) on master @ [fffd9274a986fcbff880b9d503334f117ba17515](https://github.com/cockroachdb/cockroach/commits/fffd9274a986fcbff880b9d503334f117ba17515): ``` | stdout: | _elapsed___errors__ops/sec(inst)___ops/sec(cum)__p50(ms)__p95(ms)__p99(ms)_pMax(ms) | 1.0s 0 2120.2 2124.4 3.5 6.3 7.9 23.1 transfer | 2.0s 0 2133.5 2128.9 3.5 6.3 9.4 13.6 transfer | 3.0s 0 2053.2 2103.7 3.7 6.6 10.5 13.6 transfer | 4.0s 0 2160.5 2117.9 3.7 6.0 8.4 11.0 transfer | 5.0s 0 2042.3 2102.7 3.7 6.6 10.5 24.1 transfer | 6.0s 0 1786.9 2050.1 4.2 7.6 13.1 16.8 transfer | 7.0s 0 965.7 1895.2 5.8 24.1 44.0 83.9 transfer | 8.0s 0 360.3 1703.5 13.6 88.1 117.4 159.4 transfer | 9.0s 0 321.9 1550.0 18.9 67.1 104.9 134.2 transfer | 10.0s 0 595.7 1454.5 10.5 33.6 58.7 88.1 transfer | 11.0s 0 687.5 1384.8 9.4 27.3 58.7 92.3 transfer | 12.0s 0 726.6 1329.9 9.4 23.1 60.8 75.5 transfer | 13.0s 0 512.0 1267.0 9.4 31.5 142.6 251.7 transfer | 14.0s 0 388.2 1204.3 9.4 142.6 243.3 260.0 transfer | 15.0s 0 641.5 1166.7 8.9 31.5 58.7 75.5 transfer | 16.0s 0 457.4 1122.4 9.4 46.1 113.2 352.3 transfer Wraps: (4) exit status 20 Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *cluster.WithCommandDetails (4) *exec.ExitError monitor.go:128,alterpk.go:92,test_runner.go:777: monitor failure: monitor task failed: t.Fatal() was called (1) attached stack trace -- stack trace: | main.(*monitorImpl).WaitE | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:116 | main.(*monitorImpl).Wait | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:124 | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests.registerAlterPK.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests/alterpk.go:92 | main.(*testRunner).runTest.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/test_runner.go:777 Wraps: (2) monitor failure Wraps: (3) attached stack trace -- stack trace: | main.(*monitorImpl).wait.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:172 Wraps: (4) monitor task failed Wraps: (5) attached stack trace -- stack trace: | main.init | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/monitor.go:81 | runtime.doInit | /usr/local/go/src/runtime/proc.go:6309 | runtime.main | /usr/local/go/src/runtime/proc.go:208 | runtime.goexit | /usr/local/go/src/runtime/asm_amd64.s:1371 Wraps: (6) t.Fatal() was called Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.withPrefix (5) *withstack.withStack (6) *errutil.leafError ``` <details><summary>Reproduce</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) </p> </details> /cc @cockroachdb/sql-schema <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*alterpk-bank.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-10546
test
roachtest alterpk bank failed roachtest alterpk bank with on master stdout elapsed errors ops sec inst ops sec cum ms ms ms pmax ms transfer transfer transfer transfer transfer transfer transfer transfer transfer transfer transfer transfer transfer transfer transfer transfer wraps exit status error types withstack withstack errutil withprefix cluster withcommanddetails exec exiterror monitor go alterpk go test runner go monitor failure monitor task failed t fatal was called attached stack trace stack trace main monitorimpl waite home agent work go src github com cockroachdb cockroach pkg cmd roachtest monitor go main monitorimpl wait home agent work go src github com cockroachdb cockroach pkg cmd roachtest monitor go github com cockroachdb cockroach pkg cmd roachtest tests registeralterpk home agent work go src github com cockroachdb cockroach pkg cmd roachtest tests alterpk go main testrunner runtest home agent work go src github com cockroachdb cockroach pkg cmd roachtest test runner go wraps monitor failure wraps attached stack trace stack trace main monitorimpl wait home agent work go src github com cockroachdb cockroach pkg cmd roachtest monitor go wraps monitor task failed wraps attached stack trace stack trace main init home agent work go src github com cockroachdb cockroach pkg cmd roachtest monitor go runtime doinit usr local go src runtime proc go runtime main usr local go src runtime proc go runtime goexit usr local go src runtime asm s wraps t fatal was called error types withstack withstack errutil withprefix withstack withstack errutil withprefix withstack withstack errutil leaferror reproduce see cc cockroachdb sql schema jira issue crdb
1
25,586
4,162,685,097
IssuesEvent
2016-06-17 21:24:38
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
make test consistently fails on `plugin/pkg/auth/authenticator/token/oidc`
area/test team/none
This issue has existed for some time now on my f23 env. https://paste.fedoraproject.org/315507/14539328/ go1.5.3 /cc @yifan-gu @liggitt (also seen on latest origin rebase as well)
1.0
make test consistently fails on `plugin/pkg/auth/authenticator/token/oidc` - This issue has existed for some time now on my f23 env. https://paste.fedoraproject.org/315507/14539328/ go1.5.3 /cc @yifan-gu @liggitt (also seen on latest origin rebase as well)
test
make test consistently fails on plugin pkg auth authenticator token oidc this issue has existed for some time now on my env cc yifan gu liggitt also seen on latest origin rebase as well
1
170,343
13,184,294,603
IssuesEvent
2020-08-12 19:07:42
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: psycopg failed
C-test-failure O-roachtest O-robot branch-release-20.1 release-blocker
[(roachtest).psycopg failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2081789&tab=buildLog) on [release-20.1@a36656a9f66ef1bd61873cfbaed6d1ea8e4b75a8](https://github.com/cockroachdb/cockroach/commits/a36656a9f66ef1bd61873cfbaed6d1ea8e4b75a8): ``` The test failed on branch=release-20.1, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/psycopg/run_1 orm_helpers.go:214,orm_helpers.go:144,psycopg.go:137,psycopg.go:150,test_runner.go:757: Tests run on Cockroach v20.1.3-43-ga36656a Tests run against psycopg cecff195fc17a83d593dd62c239aa188883a844e 675 Total Tests Run 470 tests passed 205 tests failed 96 tests skipped 2 tests ignored 2 tests passed unexpectedly 1 test failed unexpectedly 0 tests expected failed but skipped 0 tests expected failed but not run --- --- FAIL: tests.test_cursor.CursorTests.test_description_slice (unexpected) --- PASS: tests.test_connection.TransactionControlTests.test_idempotence_check - https://github.com/cockroachdb/cockroach/issues/35879 (unexpected) --- PASS: tests.test_connection.TransactionControlTests.test_mixing_session_attribs - https://github.com/cockroachdb/cockroach/issues/35879 (unexpected) For a full summary look at the psycopg artifacts An updated blocklist (psycopgBlockList20_1) is available in the artifacts' psycopg log ``` <details><summary>More</summary><p> Artifacts: [/psycopg](https://teamcity.cockroachdb.com/viewLog.html?buildId=2081789&tab=artifacts#/psycopg) Related: - #51325 roachtest: psycopg 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-provisional_202007081918_v20.2.0-alpha.2](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-provisional_202007081918_v20.2.0-alpha.2) [release-blocker](https://api.github.com/repos/cockroachdb/cockroach/labels/release-blocker) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Apsycopg.%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: psycopg failed - [(roachtest).psycopg failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2081789&tab=buildLog) on [release-20.1@a36656a9f66ef1bd61873cfbaed6d1ea8e4b75a8](https://github.com/cockroachdb/cockroach/commits/a36656a9f66ef1bd61873cfbaed6d1ea8e4b75a8): ``` The test failed on branch=release-20.1, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/psycopg/run_1 orm_helpers.go:214,orm_helpers.go:144,psycopg.go:137,psycopg.go:150,test_runner.go:757: Tests run on Cockroach v20.1.3-43-ga36656a Tests run against psycopg cecff195fc17a83d593dd62c239aa188883a844e 675 Total Tests Run 470 tests passed 205 tests failed 96 tests skipped 2 tests ignored 2 tests passed unexpectedly 1 test failed unexpectedly 0 tests expected failed but skipped 0 tests expected failed but not run --- --- FAIL: tests.test_cursor.CursorTests.test_description_slice (unexpected) --- PASS: tests.test_connection.TransactionControlTests.test_idempotence_check - https://github.com/cockroachdb/cockroach/issues/35879 (unexpected) --- PASS: tests.test_connection.TransactionControlTests.test_mixing_session_attribs - https://github.com/cockroachdb/cockroach/issues/35879 (unexpected) For a full summary look at the psycopg artifacts An updated blocklist (psycopgBlockList20_1) is available in the artifacts' psycopg log ``` <details><summary>More</summary><p> Artifacts: [/psycopg](https://teamcity.cockroachdb.com/viewLog.html?buildId=2081789&tab=artifacts#/psycopg) Related: - #51325 roachtest: psycopg 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-provisional_202007081918_v20.2.0-alpha.2](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-provisional_202007081918_v20.2.0-alpha.2) [release-blocker](https://api.github.com/repos/cockroachdb/cockroach/labels/release-blocker) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Apsycopg.%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 psycopg failed on the test failed on branch release cloud gce test artifacts and logs in home agent work go src github com cockroachdb cockroach artifacts psycopg run orm helpers go orm helpers go psycopg go psycopg go test runner go tests run on cockroach tests run against psycopg total tests run tests passed tests failed tests skipped tests ignored tests passed unexpectedly test failed unexpectedly tests expected failed but skipped tests expected failed but not run fail tests test cursor cursortests test description slice unexpected pass tests test connection transactioncontroltests test idempotence check unexpected pass tests test connection transactioncontroltests test mixing session attribs unexpected for a full summary look at the psycopg artifacts an updated blocklist is available in the artifacts psycopg log more artifacts related roachtest psycopg failed powered by
1
17,515
12,404,428,055
IssuesEvent
2020-05-21 15:31:10
pulibrary/dspace-cli
https://api.github.com/repos/pulibrary/dspace-cli
opened
Status of the OAR QA environment (oar-dev.princeton.edu)
infrastructure
Following the discovery at https://github.com/pulibrary/dspace-cli/issues/52#issuecomment-632149639, I strongly suspect that the OAR QA has not been often used for testing JRuby and dspace-cli procedures. Should this server be decommissioned once we have a new GCP environment?
1.0
Status of the OAR QA environment (oar-dev.princeton.edu) - Following the discovery at https://github.com/pulibrary/dspace-cli/issues/52#issuecomment-632149639, I strongly suspect that the OAR QA has not been often used for testing JRuby and dspace-cli procedures. Should this server be decommissioned once we have a new GCP environment?
non_test
status of the oar qa environment oar dev princeton edu following the discovery at i strongly suspect that the oar qa has not been often used for testing jruby and dspace cli procedures should this server be decommissioned once we have a new gcp environment
0
289,516
24,995,053,663
IssuesEvent
2022-11-02 22:51:24
SETI/pds-opus
https://api.github.com/repos/SETI/pds-opus
closed
Results API: Tests needed
A-Enhancement Effort 2 Medium B-OPUS Django B-Tests Priority 5 Minor
There are no or insufficient tests for: __api/dataimages.json api/images/(?P<size>thumb|small|med|full).(?P<fmt>json|zip|html|csv) api/images.(?P<fmt>json|zip|html|csv) api/image/(?P<size>thumb|small|med|full)/(?P<opus_id>[-\w]+).(?P<fmt>json|zip|html|csv) api/files/(?P<opus_id>[-\w]+).json api/files.json api/categories/(?P<opus_id>[-\w]+).json api/categories.json
1.0
Results API: Tests needed - There are no or insufficient tests for: __api/dataimages.json api/images/(?P<size>thumb|small|med|full).(?P<fmt>json|zip|html|csv) api/images.(?P<fmt>json|zip|html|csv) api/image/(?P<size>thumb|small|med|full)/(?P<opus_id>[-\w]+).(?P<fmt>json|zip|html|csv) api/files/(?P<opus_id>[-\w]+).json api/files.json api/categories/(?P<opus_id>[-\w]+).json api/categories.json
test
results api tests needed there are no or insufficient tests for api dataimages json api images p thumb small med full p json zip html csv api images p json zip html csv api image p thumb small med full p p json zip html csv api files p json api files json api categories p json api categories json
1
231,925
18,820,439,426
IssuesEvent
2021-11-10 07:35:06
flutter-simulator/dffp3
https://api.github.com/repos/flutter-simulator/dffp3
opened
02_DashboardPage
android portrait dark customer v1.0.1 DFFP 3.1.9 DAFS 3.1.9 DAFP 3.1.9 TEST ERROR Motorola G7 360.0 x 720.0 02_DashboardPage
# 02_DashboardPage ## 0 - This is not nice! Kommentar: ```#0 mainPrototypingTest.<anonymous closure> (package:dotup_flutter_private/src/modules/test/main_prototyping_test.dart:33:9) #1 mainPrototypingTest.<anonymous closure> (package:dotup_flutter_private/src/modules/test/main_prototyping_test.dart:32:16) #2 TestDescriptor.run (package:dotup_flutter_private/src/modules/test/test_case.dart:59:19) #3 TestController.run (package:dotup_flutter_private/src/modules/test/test_controller.dart:67:28) <asynchronous suspension> ``` ![2021-11-10T08_33_38_853368.jpg](https://raw.githubusercontent.com/flutter-simulator/dffp3/main/2021-11-10T08_33_38_853368.jpg)
1.0
02_DashboardPage - # 02_DashboardPage ## 0 - This is not nice! Kommentar: ```#0 mainPrototypingTest.<anonymous closure> (package:dotup_flutter_private/src/modules/test/main_prototyping_test.dart:33:9) #1 mainPrototypingTest.<anonymous closure> (package:dotup_flutter_private/src/modules/test/main_prototyping_test.dart:32:16) #2 TestDescriptor.run (package:dotup_flutter_private/src/modules/test/test_case.dart:59:19) #3 TestController.run (package:dotup_flutter_private/src/modules/test/test_controller.dart:67:28) <asynchronous suspension> ``` ![2021-11-10T08_33_38_853368.jpg](https://raw.githubusercontent.com/flutter-simulator/dffp3/main/2021-11-10T08_33_38_853368.jpg)
test
dashboardpage dashboardpage this is not nice kommentar mainprototypingtest package dotup flutter private src modules test main prototyping test dart mainprototypingtest package dotup flutter private src modules test main prototyping test dart testdescriptor run package dotup flutter private src modules test test case dart testcontroller run package dotup flutter private src modules test test controller dart
1
505,522
14,635,182,319
IssuesEvent
2020-12-24 07:33:11
gnosis/conditional-tokens-explorer
https://api.github.com/repos/gnosis/conditional-tokens-explorer
reopened
Positions list: Page settings are not reset when change testnet from the Mainnet to the Rinkeby
Low priority bug
Related to #725 1. Connect to a wallet in the Mainnet 2. Apply changes for columns in the positions list 3. Switch to the Rinkeby **AR**: the changes are not reset **ER**: the changes are reset **Note**: the changes are reset when change testnet from the Rinkeby to the Mainnet
1.0
Positions list: Page settings are not reset when change testnet from the Mainnet to the Rinkeby - Related to #725 1. Connect to a wallet in the Mainnet 2. Apply changes for columns in the positions list 3. Switch to the Rinkeby **AR**: the changes are not reset **ER**: the changes are reset **Note**: the changes are reset when change testnet from the Rinkeby to the Mainnet
non_test
positions list page settings are not reset when change testnet from the mainnet to the rinkeby related to connect to a wallet in the mainnet apply changes for columns in the positions list switch to the rinkeby ar the changes are not reset er the changes are reset note the changes are reset when change testnet from the rinkeby to the mainnet
0
204,268
15,436,114,915
IssuesEvent
2021-03-07 11:46:18
bebbo/binutils-gdb
https://api.github.com/repos/bebbo/binutils-gdb
closed
m68k-amigaos-objdump disassemble is broken
please test
I've tried any .o or executable I get the first disassembly line and then m68k-amigaos-objdump: disassemble_fn returned length 0
1.0
m68k-amigaos-objdump disassemble is broken - I've tried any .o or executable I get the first disassembly line and then m68k-amigaos-objdump: disassemble_fn returned length 0
test
amigaos objdump disassemble is broken i ve tried any o or executable i get the first disassembly line and then amigaos objdump disassemble fn returned length
1
207,691
15,831,842,374
IssuesEvent
2021-04-06 14:02:19
apache/skywalking
https://api.github.com/repos/apache/skywalking
opened
[Test] adopt the Agent Image in the Agent Java JDK E2E test cases
test
according to https://github.com/apache/skywalking/pull/6686#issuecomment-814144172 , we can adopt the agent image for conveniency
1.0
[Test] adopt the Agent Image in the Agent Java JDK E2E test cases - according to https://github.com/apache/skywalking/pull/6686#issuecomment-814144172 , we can adopt the agent image for conveniency
test
adopt the agent image in the agent java jdk test cases according to we can adopt the agent image for conveniency
1
272,255
20,739,674,718
IssuesEvent
2022-03-14 16:32:13
Interactions-HSG/docs
https://api.github.com/repos/Interactions-HSG/docs
opened
Use this repository to integrate all the useful (administrative) information for the team
documentation
@jhasanjiv5 said, can we use GitHub to organize the administrative information about PhD regulations, course taking, dealing with the HR, ordering furniture, setting up the profile. I agree with @jhasanjiv5 how about using this repo?
1.0
Use this repository to integrate all the useful (administrative) information for the team - @jhasanjiv5 said, can we use GitHub to organize the administrative information about PhD regulations, course taking, dealing with the HR, ordering furniture, setting up the profile. I agree with @jhasanjiv5 how about using this repo?
non_test
use this repository to integrate all the useful administrative information for the team said can we use github to organize the administrative information about phd regulations course taking dealing with the hr ordering furniture setting up the profile i agree with how about using this repo
0
297,914
25,773,807,973
IssuesEvent
2022-12-09 10:12:57
Joystream/pioneer
https://api.github.com/repos/Joystream/pioneer
closed
[USERSNAP] Tried to resubmit candidacy, transaction failed
bug enhancement low-prio to-triage qa-tested-ready-for-prod
**Taken at**: https://dao.joystream.org/#/election **Fields**: - Houston, we have a problem.: Tried to resubmit candidacy, transaction failed - Comment: A previous submissed was interrupted due to another pioneer issue. I just resubmitted it without deleting the other candidacy. Would be great if pioneer could pick up where it got interrupted last - just place the candidacy with the second transaction and skipping the first if member already submitted a candidacy. ``` Transaction error: ExtrinsicFailed on network: wss://rpc.joystream.org:9944 in block: 0xbb49fd3958ad0974ab47d520cf4abf27752c0ceac0bcf7cd986bd6e5418aabde ``` - Feedback: l1dev ![SCREENSHOT](https://resources.usersnap.com/company/f9f719df-a929-4461-bb6e-46dbfbceffb7/datapoint_screenshot/3f0f95b2-3e58-4a2e-81b3-d88553d18ab9-annotated_651d75cb-4a6e-44b2-97c3-320e58ae03d8.png?etag=11e716db2d18969d206ce00acac8fa17) *[Download original image](https://resources.usersnap.com/company/f9f719df-a929-4461-bb6e-46dbfbceffb7/datapoint_screenshot/3f0f95b2-3e58-4a2e-81b3-d88553d18ab9-annotated_651d75cb-4a6e-44b2-97c3-320e58ae03d8.png?etag=11e716db2d18969d206ce00acac8fa17)* **Browser**: Chrome 102 (Linux) **Screen size**: 1920x1080 **Browser size**: 2160x1429 **[Open #286 in Usersnap](https://app.usersnap.com/l/feedback/0282a947-158b-4d7c-8ea5-22874d5336e1?utm_medium=integration&utm_campaign=integration&utm_content=open)** Powered by **[Usersnap](https://usersnap.com/?utm_source=product&amp;utm_medium=poweredbylink&amp;utm_campaign=github_entry)**.
1.0
[USERSNAP] Tried to resubmit candidacy, transaction failed - **Taken at**: https://dao.joystream.org/#/election **Fields**: - Houston, we have a problem.: Tried to resubmit candidacy, transaction failed - Comment: A previous submissed was interrupted due to another pioneer issue. I just resubmitted it without deleting the other candidacy. Would be great if pioneer could pick up where it got interrupted last - just place the candidacy with the second transaction and skipping the first if member already submitted a candidacy. ``` Transaction error: ExtrinsicFailed on network: wss://rpc.joystream.org:9944 in block: 0xbb49fd3958ad0974ab47d520cf4abf27752c0ceac0bcf7cd986bd6e5418aabde ``` - Feedback: l1dev ![SCREENSHOT](https://resources.usersnap.com/company/f9f719df-a929-4461-bb6e-46dbfbceffb7/datapoint_screenshot/3f0f95b2-3e58-4a2e-81b3-d88553d18ab9-annotated_651d75cb-4a6e-44b2-97c3-320e58ae03d8.png?etag=11e716db2d18969d206ce00acac8fa17) *[Download original image](https://resources.usersnap.com/company/f9f719df-a929-4461-bb6e-46dbfbceffb7/datapoint_screenshot/3f0f95b2-3e58-4a2e-81b3-d88553d18ab9-annotated_651d75cb-4a6e-44b2-97c3-320e58ae03d8.png?etag=11e716db2d18969d206ce00acac8fa17)* **Browser**: Chrome 102 (Linux) **Screen size**: 1920x1080 **Browser size**: 2160x1429 **[Open #286 in Usersnap](https://app.usersnap.com/l/feedback/0282a947-158b-4d7c-8ea5-22874d5336e1?utm_medium=integration&utm_campaign=integration&utm_content=open)** Powered by **[Usersnap](https://usersnap.com/?utm_source=product&amp;utm_medium=poweredbylink&amp;utm_campaign=github_entry)**.
test
tried to resubmit candidacy transaction failed taken at fields houston we have a problem tried to resubmit candidacy transaction failed comment a previous submissed was interrupted due to another pioneer issue i just resubmitted it without deleting the other candidacy would be great if pioneer could pick up where it got interrupted last just place the candidacy with the second transaction and skipping the first if member already submitted a candidacy transaction error extrinsicfailed on network wss rpc joystream org in block feedback browser chrome linux screen size browser size powered by
1
4,411
2,610,093,641
IssuesEvent
2015-02-26 18:28:16
chrsmith/dsdsdaadf
https://api.github.com/repos/chrsmith/dsdsdaadf
opened
深圳孩子脸上有青春痘怎么办
auto-migrated Priority-Medium Type-Defect
``` 深圳孩子脸上有青春痘怎么办【深圳韩方科颜全国热线400-869- 1818,24小时QQ4008691818】深圳韩方科颜专业祛痘连锁机构,机�� �以韩国秘方——韩方科颜这一国妆准字号治疗型权威,祛痘� ��品,韩方科颜专业祛痘连锁机构,采用韩国秘方配合专业“ 不反弹”健康祛痘技术并结合先进“先进豪华彩光”仪,开�� �国内专业治疗粉刺、痤疮签约包治先河,成功消除了许多顾� ��脸上的痘痘。 ``` ----- Original issue reported on code.google.com by `szft...@163.com` on 14 May 2014 at 8:09
1.0
深圳孩子脸上有青春痘怎么办 - ``` 深圳孩子脸上有青春痘怎么办【深圳韩方科颜全国热线400-869- 1818,24小时QQ4008691818】深圳韩方科颜专业祛痘连锁机构,机�� �以韩国秘方——韩方科颜这一国妆准字号治疗型权威,祛痘� ��品,韩方科颜专业祛痘连锁机构,采用韩国秘方配合专业“ 不反弹”健康祛痘技术并结合先进“先进豪华彩光”仪,开�� �国内专业治疗粉刺、痤疮签约包治先河,成功消除了许多顾� ��脸上的痘痘。 ``` ----- Original issue reported on code.google.com by `szft...@163.com` on 14 May 2014 at 8:09
non_test
深圳孩子脸上有青春痘怎么办 深圳孩子脸上有青春痘怎么办【 , 】深圳韩方科颜专业祛痘连锁机构,机�� �以韩国秘方——韩方科颜这一国妆准字号治疗型权威,祛痘� ��品,韩方科颜专业祛痘连锁机构,采用韩国秘方配合专业“ 不反弹”健康祛痘技术并结合先进“先进豪华彩光”仪,开�� �国内专业治疗粉刺、痤疮签约包治先河,成功消除了许多顾� ��脸上的痘痘。 original issue reported on code google com by szft com on may at
0
139,761
11,276,996,020
IssuesEvent
2020-01-15 01:09:31
streamnative/bookkeeper
https://api.github.com/repos/streamnative/bookkeeper
opened
ISSUE-1219: Improve tests for ledger storage based test cases
area/tests triage/week-33
Original Issue: apache/bookkeeper#1219 --- *Motivation* In #1218 , we test multiple features (e.g. piggyback lac, explicit lac, long poll) with different ledger storage implementation. However those tests are fully end-to-end tests, which is kind of expensive and redundant. It would be good to think of how to improve them.
1.0
ISSUE-1219: Improve tests for ledger storage based test cases - Original Issue: apache/bookkeeper#1219 --- *Motivation* In #1218 , we test multiple features (e.g. piggyback lac, explicit lac, long poll) with different ledger storage implementation. However those tests are fully end-to-end tests, which is kind of expensive and redundant. It would be good to think of how to improve them.
test
issue improve tests for ledger storage based test cases original issue apache bookkeeper motivation in we test multiple features e g piggyback lac explicit lac long poll with different ledger storage implementation however those tests are fully end to end tests which is kind of expensive and redundant it would be good to think of how to improve them
1
15,236
9,523,159,064
IssuesEvent
2019-04-27 15:02:38
henriquecarv/randomquotes
https://api.github.com/repos/henriquecarv/randomquotes
closed
CVE-2018-11695 High Severity Vulnerability detected by WhiteSource
security vulnerability
## CVE-2018-11695 - High Severity Vulnerability <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sassv4.11.0</b></p></summary> <p> <p>:rainbow: Node.js bindings to libsass</p> <p>Library home page: <a href=https://github.com/sass/node-sass.git>https://github.com/sass/node-sass.git</a></p> </p> </details> </p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Library Source Files (125)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /randomquotes/node_modules/node-sass/src/libsass/src/expand.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/color_maps.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_util.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/utf8/unchecked.h - /randomquotes/node_modules/node-sass/src/libsass/src/output.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_values.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/util.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/emitter.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/lexer.cpp - /randomquotes/node_modules/node-sass/src/libsass/test/test_node.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/plugins.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/base.h - /randomquotes/node_modules/node-sass/src/libsass/src/position.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/subset_map.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/operation.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/remove_placeholders.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/error_handling.hpp - /randomquotes/node_modules/node-sass/src/custom_importer_bridge.cpp - /randomquotes/node_modules/node-sass/src/libsass/contrib/plugin.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/functions.hpp - /randomquotes/node_modules/node-sass/src/libsass/test/test_superselector.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/eval.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/utf8_string.hpp - /randomquotes/node_modules/node-sass/src/sass_context_wrapper.h - /randomquotes/node_modules/node-sass/src/libsass/src/error_handling.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/node.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/parser.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/subset_map.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/emitter.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/listize.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_functions.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/memory/SharedPtr.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/output.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/check_nesting.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast_def_macros.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/functions.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/cssize.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/prelexer.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/paths.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast_fwd_decl.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/inspect.hpp - /randomquotes/node_modules/node-sass/src/sass_types/color.cpp - /randomquotes/node_modules/node-sass/src/libsass/test/test_unification.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/values.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_util.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/source_map.hpp - /randomquotes/node_modules/node-sass/src/sass_types/list.h - /randomquotes/node_modules/node-sass/src/libsass/src/check_nesting.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/json.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/units.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/units.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/context.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/utf8/checked.h - /randomquotes/node_modules/node-sass/src/libsass/src/listize.hpp - /randomquotes/node_modules/node-sass/src/sass_types/string.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/prelexer.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/context.hpp - /randomquotes/node_modules/node-sass/src/sass_types/boolean.h - /randomquotes/node_modules/node-sass/src/libsass/include/sass2scss.h - /randomquotes/node_modules/node-sass/src/libsass/src/eval.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/expand.cpp - /randomquotes/node_modules/node-sass/src/sass_types/factory.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/operators.cpp - /randomquotes/node_modules/node-sass/src/sass_types/boolean.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/source_map.cpp - /randomquotes/node_modules/node-sass/src/sass_types/value.h - /randomquotes/node_modules/node-sass/src/libsass/src/utf8_string.cpp - /randomquotes/node_modules/node-sass/src/callback_bridge.h - /randomquotes/node_modules/node-sass/src/libsass/src/file.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/node.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/environment.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/extend.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_context.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/operators.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/constants.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast_fwd_decl.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/parser.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/constants.cpp - /randomquotes/node_modules/node-sass/src/sass_types/list.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/cssize.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/functions.h - /randomquotes/node_modules/node-sass/src/libsass/src/util.cpp - /randomquotes/node_modules/node-sass/src/custom_function_bridge.cpp - /randomquotes/node_modules/node-sass/src/custom_importer_bridge.h - /randomquotes/node_modules/node-sass/src/libsass/src/bind.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/inspect.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_functions.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/backtrace.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/extend.cpp - /randomquotes/node_modules/node-sass/src/sass_types/sass_value_wrapper.h - /randomquotes/node_modules/node-sass/src/libsass/src/debugger.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/cencode.c - /randomquotes/node_modules/node-sass/src/libsass/src/base64vlq.cpp - /randomquotes/node_modules/node-sass/src/sass_types/number.cpp - /randomquotes/node_modules/node-sass/src/sass_types/color.h - /randomquotes/node_modules/node-sass/src/libsass/src/c99func.c - /randomquotes/node_modules/node-sass/src/libsass/src/position.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/remove_placeholders.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_values.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/values.h - /randomquotes/node_modules/node-sass/src/libsass/test/test_subset_map.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass2scss.cpp - /randomquotes/node_modules/node-sass/src/sass_types/null.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/context.h - /randomquotes/node_modules/node-sass/src/libsass/src/to_c.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/to_value.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/color_maps.hpp - /randomquotes/node_modules/node-sass/src/sass_context_wrapper.cpp - /randomquotes/node_modules/node-sass/src/libsass/script/test-leaks.pl - /randomquotes/node_modules/node-sass/src/libsass/src/lexer.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/memory/SharedPtr.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/to_c.hpp - /randomquotes/node_modules/node-sass/src/sass_types/map.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/to_value.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/b64/encode.h - /randomquotes/node_modules/node-sass/src/libsass/src/file.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/environment.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/plugins.hpp - /randomquotes/node_modules/node-sass/src/binding.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_context.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/debug.hpp </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in LibSass through 3.5.2. A NULL pointer dereference was found in the function Sass::Expand::operator which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact. <p>Publish Date: 2018-06-04 <p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-11695>CVE-2018-11695</a></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2018-11695 High Severity Vulnerability detected by WhiteSource - ## CVE-2018-11695 - High Severity Vulnerability <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sassv4.11.0</b></p></summary> <p> <p>:rainbow: Node.js bindings to libsass</p> <p>Library home page: <a href=https://github.com/sass/node-sass.git>https://github.com/sass/node-sass.git</a></p> </p> </details> </p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/vulnerability_details.png' width=19 height=20> Library Source Files (125)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /randomquotes/node_modules/node-sass/src/libsass/src/expand.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/color_maps.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_util.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/utf8/unchecked.h - /randomquotes/node_modules/node-sass/src/libsass/src/output.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_values.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/util.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/emitter.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/lexer.cpp - /randomquotes/node_modules/node-sass/src/libsass/test/test_node.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/plugins.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/base.h - /randomquotes/node_modules/node-sass/src/libsass/src/position.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/subset_map.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/operation.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/remove_placeholders.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/error_handling.hpp - /randomquotes/node_modules/node-sass/src/custom_importer_bridge.cpp - /randomquotes/node_modules/node-sass/src/libsass/contrib/plugin.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/functions.hpp - /randomquotes/node_modules/node-sass/src/libsass/test/test_superselector.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/eval.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/utf8_string.hpp - /randomquotes/node_modules/node-sass/src/sass_context_wrapper.h - /randomquotes/node_modules/node-sass/src/libsass/src/error_handling.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/node.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/parser.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/subset_map.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/emitter.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/listize.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_functions.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/memory/SharedPtr.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/output.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/check_nesting.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast_def_macros.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/functions.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/cssize.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/prelexer.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/paths.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast_fwd_decl.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/inspect.hpp - /randomquotes/node_modules/node-sass/src/sass_types/color.cpp - /randomquotes/node_modules/node-sass/src/libsass/test/test_unification.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/values.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_util.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/source_map.hpp - /randomquotes/node_modules/node-sass/src/sass_types/list.h - /randomquotes/node_modules/node-sass/src/libsass/src/check_nesting.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/json.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/units.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/units.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/context.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/utf8/checked.h - /randomquotes/node_modules/node-sass/src/libsass/src/listize.hpp - /randomquotes/node_modules/node-sass/src/sass_types/string.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/prelexer.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/context.hpp - /randomquotes/node_modules/node-sass/src/sass_types/boolean.h - /randomquotes/node_modules/node-sass/src/libsass/include/sass2scss.h - /randomquotes/node_modules/node-sass/src/libsass/src/eval.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/expand.cpp - /randomquotes/node_modules/node-sass/src/sass_types/factory.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/operators.cpp - /randomquotes/node_modules/node-sass/src/sass_types/boolean.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/source_map.cpp - /randomquotes/node_modules/node-sass/src/sass_types/value.h - /randomquotes/node_modules/node-sass/src/libsass/src/utf8_string.cpp - /randomquotes/node_modules/node-sass/src/callback_bridge.h - /randomquotes/node_modules/node-sass/src/libsass/src/file.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/node.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/environment.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/extend.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_context.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/operators.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/constants.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast_fwd_decl.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/parser.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/constants.cpp - /randomquotes/node_modules/node-sass/src/sass_types/list.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/cssize.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/functions.h - /randomquotes/node_modules/node-sass/src/libsass/src/util.cpp - /randomquotes/node_modules/node-sass/src/custom_function_bridge.cpp - /randomquotes/node_modules/node-sass/src/custom_importer_bridge.h - /randomquotes/node_modules/node-sass/src/libsass/src/bind.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/inspect.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_functions.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/backtrace.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/extend.cpp - /randomquotes/node_modules/node-sass/src/sass_types/sass_value_wrapper.h - /randomquotes/node_modules/node-sass/src/libsass/src/debugger.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/cencode.c - /randomquotes/node_modules/node-sass/src/libsass/src/base64vlq.cpp - /randomquotes/node_modules/node-sass/src/sass_types/number.cpp - /randomquotes/node_modules/node-sass/src/sass_types/color.h - /randomquotes/node_modules/node-sass/src/libsass/src/c99func.c - /randomquotes/node_modules/node-sass/src/libsass/src/position.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/remove_placeholders.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_values.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/values.h - /randomquotes/node_modules/node-sass/src/libsass/test/test_subset_map.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass2scss.cpp - /randomquotes/node_modules/node-sass/src/sass_types/null.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/ast.cpp - /randomquotes/node_modules/node-sass/src/libsass/include/sass/context.h - /randomquotes/node_modules/node-sass/src/libsass/src/to_c.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/to_value.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/color_maps.hpp - /randomquotes/node_modules/node-sass/src/sass_context_wrapper.cpp - /randomquotes/node_modules/node-sass/src/libsass/script/test-leaks.pl - /randomquotes/node_modules/node-sass/src/libsass/src/lexer.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/memory/SharedPtr.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/to_c.hpp - /randomquotes/node_modules/node-sass/src/sass_types/map.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/to_value.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/b64/encode.h - /randomquotes/node_modules/node-sass/src/libsass/src/file.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/environment.hpp - /randomquotes/node_modules/node-sass/src/libsass/src/plugins.hpp - /randomquotes/node_modules/node-sass/src/binding.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/sass_context.cpp - /randomquotes/node_modules/node-sass/src/libsass/src/debug.hpp </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in LibSass through 3.5.2. A NULL pointer dereference was found in the function Sass::Expand::operator which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact. <p>Publish Date: 2018-06-04 <p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-11695>CVE-2018-11695</a></p> </p> </details> <p></p> <details><summary><img src='https://www.whitesourcesoftware.com/wp-content/uploads/2018/10/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve high severity vulnerability detected by whitesource cve high severity vulnerability vulnerable library node rainbow node js bindings to libsass library home page a href library source files the source files were matched to this source library based on a best effort match source libraries are selected from a list of probable public libraries randomquotes node modules node sass src libsass src expand hpp randomquotes node modules node sass src libsass src color maps cpp randomquotes node modules node sass src libsass src sass util hpp randomquotes node modules node sass src libsass src unchecked h randomquotes node modules node sass src libsass src output hpp randomquotes node modules node sass src libsass src sass values hpp randomquotes node modules node sass src libsass src util hpp randomquotes node modules node sass src libsass src emitter hpp randomquotes node modules node sass src libsass src lexer cpp randomquotes node modules node sass src libsass test test node cpp randomquotes node modules node sass src libsass src plugins cpp randomquotes node modules node sass src libsass include sass base h randomquotes node modules node sass src libsass src position hpp randomquotes node modules node sass src libsass src subset map hpp randomquotes node modules node sass src libsass src operation hpp randomquotes node modules node sass src libsass src remove placeholders cpp randomquotes node modules node sass src libsass src error handling hpp randomquotes node modules node sass src custom importer bridge cpp randomquotes node modules node sass src libsass contrib plugin cpp randomquotes node modules node sass src libsass src functions hpp randomquotes node modules node sass src libsass test test superselector cpp randomquotes node modules node sass src libsass src eval hpp randomquotes node modules node sass src libsass src string hpp randomquotes node modules node sass src sass context wrapper h randomquotes node modules node sass src libsass src error handling cpp randomquotes node modules node sass src libsass src node cpp randomquotes node modules node sass src libsass src parser cpp randomquotes node modules node sass src libsass src subset map cpp randomquotes node modules node sass src libsass src emitter cpp randomquotes node modules node sass src libsass src listize cpp randomquotes node modules node sass src libsass src ast hpp randomquotes node modules node sass src libsass src sass functions hpp randomquotes node modules node sass src libsass src memory sharedptr cpp randomquotes node modules node sass src libsass src output cpp randomquotes node modules node sass src libsass src check nesting cpp randomquotes node modules node sass src libsass src ast def macros hpp randomquotes node modules node sass src libsass src functions cpp randomquotes node modules node sass src libsass src cssize hpp randomquotes node modules node sass src libsass src prelexer cpp randomquotes node modules node sass src libsass src paths hpp randomquotes node modules node sass src libsass src ast fwd decl hpp randomquotes node modules node sass src libsass src inspect hpp randomquotes node modules node sass src sass types color cpp randomquotes node modules node sass src libsass test test unification cpp randomquotes node modules node sass src libsass src values cpp randomquotes node modules node sass src libsass src sass util cpp randomquotes node modules node sass src libsass src source map hpp randomquotes node modules node sass src sass types list h randomquotes node modules node sass src libsass src check nesting hpp randomquotes node modules node sass src libsass src json cpp randomquotes node modules node sass src libsass src units cpp randomquotes node modules node sass src libsass src units hpp randomquotes node modules node sass src libsass src context cpp randomquotes node modules node sass src libsass src checked h randomquotes node modules node sass src libsass src listize hpp randomquotes node modules node sass src sass types string cpp randomquotes node modules node sass src libsass src prelexer hpp randomquotes node modules node sass src libsass src context hpp randomquotes node modules node sass src sass types boolean h randomquotes node modules node sass src libsass include h randomquotes node modules node sass src libsass src eval cpp randomquotes node modules node sass src libsass src expand cpp randomquotes node modules node sass src sass types factory cpp randomquotes node modules node sass src libsass src operators cpp randomquotes node modules node sass src sass types boolean cpp randomquotes node modules node sass src libsass src source map cpp randomquotes node modules node sass src sass types value h randomquotes node modules node sass src libsass src string cpp randomquotes node modules node sass src callback bridge h randomquotes node modules node sass src libsass src file cpp randomquotes node modules node sass src libsass src sass cpp randomquotes node modules node sass src libsass src node hpp randomquotes node modules node sass src libsass src environment cpp randomquotes node modules node sass src libsass src extend hpp randomquotes node modules node sass src libsass src sass context hpp randomquotes node modules node sass src libsass src operators hpp randomquotes node modules node sass src libsass src constants hpp randomquotes node modules node sass src libsass src sass hpp randomquotes node modules node sass src libsass src ast fwd decl cpp randomquotes node modules node sass src libsass src parser hpp randomquotes node modules node sass src libsass src constants cpp randomquotes node modules node sass src sass types list cpp randomquotes node modules node sass src libsass src cssize cpp randomquotes node modules node sass src libsass include sass functions h randomquotes node modules node sass src libsass src util cpp randomquotes node modules node sass src custom function bridge cpp randomquotes node modules node sass src custom importer bridge h randomquotes node modules node sass src libsass src bind cpp randomquotes node modules node sass src libsass src inspect cpp randomquotes node modules node sass src libsass src sass functions cpp randomquotes node modules node sass src libsass src backtrace cpp randomquotes node modules node sass src libsass src extend cpp randomquotes node modules node sass src sass types sass value wrapper h randomquotes node modules node sass src libsass src debugger hpp randomquotes node modules node sass src libsass src cencode c randomquotes node modules node sass src libsass src cpp randomquotes node modules node sass src sass types number cpp randomquotes node modules node sass src sass types color h randomquotes node modules node sass src libsass src c randomquotes node modules node sass src libsass src position cpp randomquotes node modules node sass src libsass src remove placeholders hpp randomquotes node modules node sass src libsass src sass values cpp randomquotes node modules node sass src libsass include sass values h randomquotes node modules node sass src libsass test test subset map cpp randomquotes node modules node sass src libsass src cpp randomquotes node modules node sass src sass types null cpp randomquotes node modules node sass src libsass src ast cpp randomquotes node modules node sass src libsass include sass context h randomquotes node modules node sass src libsass src to c cpp randomquotes node modules node sass src libsass src to value hpp randomquotes node modules node sass src libsass src color maps hpp randomquotes node modules node sass src sass context wrapper cpp randomquotes node modules node sass src libsass script test leaks pl randomquotes node modules node sass src libsass src lexer hpp randomquotes node modules node sass src libsass src memory sharedptr hpp randomquotes node modules node sass src libsass src to c hpp randomquotes node modules node sass src sass types map cpp randomquotes node modules node sass src libsass src to value cpp randomquotes node modules node sass src libsass src encode h randomquotes node modules node sass src libsass src file hpp randomquotes node modules node sass src libsass src environment hpp randomquotes node modules node sass src libsass src plugins hpp randomquotes node modules node sass src binding cpp randomquotes node modules node sass src libsass src sass context cpp randomquotes node modules node sass src libsass src debug hpp vulnerability details an issue was discovered in libsass through a null pointer dereference was found in the function sass expand operator which could be leveraged by an attacker to cause a denial of service application crash or possibly have unspecified other impact publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href step up your open source security game with whitesource
0
245,072
20,743,201,486
IssuesEvent
2022-03-14 19:50:08
microsoft/playwright
https://api.github.com/repos/microsoft/playwright
closed
[Feature] Allow to start external proxy server
triaging feature-test-runner
Currently there is an option to start an external web server before the tests are executed, see: https://playwright.dev/docs/test-advanced#launching-a-development-web-server-during-the-tests I would like to propose to offer a similar functionality or maybe a best practice documentation item, to allow to start an external proxy server which then can be leveraged by browser instances created by Playwright. The idea to have a proxy server can useful when you want to execute Playwright tests against remote targets that are protected behind Google Identity-Aware Proxy or maybe Azure AD Application Proxy.
1.0
[Feature] Allow to start external proxy server - Currently there is an option to start an external web server before the tests are executed, see: https://playwright.dev/docs/test-advanced#launching-a-development-web-server-during-the-tests I would like to propose to offer a similar functionality or maybe a best practice documentation item, to allow to start an external proxy server which then can be leveraged by browser instances created by Playwright. The idea to have a proxy server can useful when you want to execute Playwright tests against remote targets that are protected behind Google Identity-Aware Proxy or maybe Azure AD Application Proxy.
test
allow to start external proxy server currently there is an option to start an external web server before the tests are executed see i would like to propose to offer a similar functionality or maybe a best practice documentation item to allow to start an external proxy server which then can be leveraged by browser instances created by playwright the idea to have a proxy server can useful when you want to execute playwright tests against remote targets that are protected behind google identity aware proxy or maybe azure ad application proxy
1
104,418
11,406,694,650
IssuesEvent
2020-01-31 14:48:59
sa-mw-dach/manuela
https://api.github.com/repos/sa-mw-dach/manuela
closed
Intro part of demo presentation #38
Task documentation
WIP Slides: https://docs.google.com/presentation/d/1XRQ_mn8VBWQkYkouFtYs21gCGLxtWJCPLstybYY8cE4/edit ----------- Intro: 1-6 1) Create slide deck Wireframe/TOC/Flow 2) Leverage existing RH Edge Slide for context/intro section. 3) Create Persona Slide 4) Create GitOps Intro Slide 5) Create Demo Setup Slide 6) Describe problem/solution/benefits in one Slide ------ 7) Describe how to setup a demo environment. a) Sprint 1 demo b) Sprint 2 demo ----- 8) Describe demo flows (what to demo, values/benefits) a) Sprint 1 demo b) Sprint 2 demo ------ 9) Make a proposal for a master deck and sprint specific decks to avoid duplication and slide sprawl. ---- WIP Deck: https://docs.google.com/presentation/d/1XRQ_mn8VBWQkYkouFtYs21gCGLxtWJCPLstybYY8cE4/edit#slide=id.g547716335e_0_260 ---------
1.0
Intro part of demo presentation #38 - WIP Slides: https://docs.google.com/presentation/d/1XRQ_mn8VBWQkYkouFtYs21gCGLxtWJCPLstybYY8cE4/edit ----------- Intro: 1-6 1) Create slide deck Wireframe/TOC/Flow 2) Leverage existing RH Edge Slide for context/intro section. 3) Create Persona Slide 4) Create GitOps Intro Slide 5) Create Demo Setup Slide 6) Describe problem/solution/benefits in one Slide ------ 7) Describe how to setup a demo environment. a) Sprint 1 demo b) Sprint 2 demo ----- 8) Describe demo flows (what to demo, values/benefits) a) Sprint 1 demo b) Sprint 2 demo ------ 9) Make a proposal for a master deck and sprint specific decks to avoid duplication and slide sprawl. ---- WIP Deck: https://docs.google.com/presentation/d/1XRQ_mn8VBWQkYkouFtYs21gCGLxtWJCPLstybYY8cE4/edit#slide=id.g547716335e_0_260 ---------
non_test
intro part of demo presentation wip slides intro create slide deck wireframe toc flow leverage existing rh edge slide for context intro section create persona slide create gitops intro slide create demo setup slide describe problem solution benefits in one slide describe how to setup a demo environment a sprint demo b sprint demo describe demo flows what to demo values benefits a sprint demo b sprint demo make a proposal for a master deck and sprint specific decks to avoid duplication and slide sprawl wip deck
0
733,485
25,307,835,358
IssuesEvent
2022-11-17 15:21:11
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
Do not save white spaces in SMTP data
Type:Bug Status:Fix Proposed Priority:Important Area: Emails:Config
#### Issue The CRM allows you to enter blank spaces in the fields related to SMTP connections, causing subsequent failures due to these blank spaces. #### Expected Behavior That the values that the CRM allows to enter do not cause errors #### Actual Behavior Connection errors occur if any of the SMTP-related fields contain blanks #### Possible Fix Use the trim() function before storing the values of these fields. #### Steps to Reproduce 1. Create an SMTP account, from Email Settings, Outbound Email and Outgoing SMTP Mail Servers in user configuration, whose fields have spaces before or after them from the different parts of the CRM where they can be created. 2. Edit the registry again and check that the spaces have not disappeared. #### Your Environment SuiteCRM Version used: Version 7.12.6 Browser name and version: Versión 100.0.4896.88 (Build oficial) (64 bit Environment name and version: MySQL, PHP 7 Operating System and version: Ubuntu 20.04
1.0
Do not save white spaces in SMTP data - #### Issue The CRM allows you to enter blank spaces in the fields related to SMTP connections, causing subsequent failures due to these blank spaces. #### Expected Behavior That the values that the CRM allows to enter do not cause errors #### Actual Behavior Connection errors occur if any of the SMTP-related fields contain blanks #### Possible Fix Use the trim() function before storing the values of these fields. #### Steps to Reproduce 1. Create an SMTP account, from Email Settings, Outbound Email and Outgoing SMTP Mail Servers in user configuration, whose fields have spaces before or after them from the different parts of the CRM where they can be created. 2. Edit the registry again and check that the spaces have not disappeared. #### Your Environment SuiteCRM Version used: Version 7.12.6 Browser name and version: Versión 100.0.4896.88 (Build oficial) (64 bit Environment name and version: MySQL, PHP 7 Operating System and version: Ubuntu 20.04
non_test
do not save white spaces in smtp data issue the crm allows you to enter blank spaces in the fields related to smtp connections causing subsequent failures due to these blank spaces expected behavior that the values that the crm allows to enter do not cause errors actual behavior connection errors occur if any of the smtp related fields contain blanks possible fix use the trim function before storing the values of these fields steps to reproduce create an smtp account from email settings outbound email and outgoing smtp mail servers in user configuration whose fields have spaces before or after them from the different parts of the crm where they can be created edit the registry again and check that the spaces have not disappeared your environment suitecrm version used version browser name and version versión build oficial bit environment name and version mysql php operating system and version ubuntu
0
5,020
3,899,288,958
IssuesEvent
2016-04-17 17:01:25
lionheart/openradar-mirror
https://api.github.com/repos/lionheart/openradar-mirror
opened
13565236: Xcode 4.6.1: Fonts drawn with incorrect size/style in code editor
classification:ui/usability reproducible:always status:open
#### Description Summary: Xcode's code editor draws fonts with the incorrect size or style in the code editor, when the theme is configured to use different sizes and/or styles for different syntax elements. Steps to Reproduce: 1. To to the Fonts & Colors tab in Xcode preferences window (Cmd-,) 2. Click the + button to duplicate one of the built-in themes 3. Change the font size and/or style for one or more of the syntax elements 4. Open a .h or .m file which contains code that includes the syntax element 5. Observe that the size/style does not match the specified size/style in the preferences window 6. Hold the Option key and mouse over a line which contains the modified syntax element 7. Observe that the font/style changes as the mouse cursor passes over the line of code 8. Click another line of code which is being drawn incorrectly 9. Make any change to that line of code 10. Observe that the font/style changes as soon as the line is changed (as in step #7) Expected Results: Expect the font size/style to always match what is defined in the theme in the Fonts & Colors tab in Xcode preferences Actual Results: Font size/style seems to be based on Plain Text, and not on the size/style defined for the specific syntax element Regression: Tested on Xcode 4.x on MacBook Air, with System 10.8.x. Notes: No workaround found so far. - Product Version: Xcode 4.6.1 (4H512) Created: 2013-04-03T08:37:42.823549 Originated: 2013-04-03T01:37:00 Open Radar Link: http://www.openradar.me/13565236
True
13565236: Xcode 4.6.1: Fonts drawn with incorrect size/style in code editor - #### Description Summary: Xcode's code editor draws fonts with the incorrect size or style in the code editor, when the theme is configured to use different sizes and/or styles for different syntax elements. Steps to Reproduce: 1. To to the Fonts & Colors tab in Xcode preferences window (Cmd-,) 2. Click the + button to duplicate one of the built-in themes 3. Change the font size and/or style for one or more of the syntax elements 4. Open a .h or .m file which contains code that includes the syntax element 5. Observe that the size/style does not match the specified size/style in the preferences window 6. Hold the Option key and mouse over a line which contains the modified syntax element 7. Observe that the font/style changes as the mouse cursor passes over the line of code 8. Click another line of code which is being drawn incorrectly 9. Make any change to that line of code 10. Observe that the font/style changes as soon as the line is changed (as in step #7) Expected Results: Expect the font size/style to always match what is defined in the theme in the Fonts & Colors tab in Xcode preferences Actual Results: Font size/style seems to be based on Plain Text, and not on the size/style defined for the specific syntax element Regression: Tested on Xcode 4.x on MacBook Air, with System 10.8.x. Notes: No workaround found so far. - Product Version: Xcode 4.6.1 (4H512) Created: 2013-04-03T08:37:42.823549 Originated: 2013-04-03T01:37:00 Open Radar Link: http://www.openradar.me/13565236
non_test
xcode fonts drawn with incorrect size style in code editor description summary xcode s code editor draws fonts with the incorrect size or style in the code editor when the theme is configured to use different sizes and or styles for different syntax elements steps to reproduce to to the fonts colors tab in xcode preferences window cmd click the button to duplicate one of the built in themes change the font size and or style for one or more of the syntax elements open a h or m file which contains code that includes the syntax element observe that the size style does not match the specified size style in the preferences window hold the option key and mouse over a line which contains the modified syntax element observe that the font style changes as the mouse cursor passes over the line of code click another line of code which is being drawn incorrectly make any change to that line of code observe that the font style changes as soon as the line is changed as in step expected results expect the font size style to always match what is defined in the theme in the fonts colors tab in xcode preferences actual results font size style seems to be based on plain text and not on the size style defined for the specific syntax element regression tested on xcode x on macbook air with system x notes no workaround found so far product version xcode created originated open radar link
0
301,386
22,753,168,704
IssuesEvent
2022-07-07 14:33:55
CrunchyData/postgres-operator
https://api.github.com/repos/CrunchyData/postgres-operator
closed
Add existing namespace to operator
question documentation
**Which example are you working with?** hyppo **What is the current behavior?** `pgo create mycluster -n mynamespace` returns > namespace [mynamespace] is not part of the Operator installation and `pgo create namespace mynamespace` returns > namespaces "mynamespace" already exists **What is the expected behavior?** Being able to add a cluster to an existing namespace. **Other information** (e.g. detailed explanation, related issues, etc) The namespace on which I want to add the cluster can't be deleted. It already host another Postgresql solution that I want to migrate to CrunchyData solution. **Please tell us about your environment:** * Where is this running ( Local , Cloud Provider): Cloud (GKE) * Storage being used (NFS, Hostpath, Gluster, etc): GKE default storage * Platform (Docker, Kubernetes, OpenShift): Kubernetes * Platform Version: 4.6.2 Thank you.
1.0
Add existing namespace to operator - **Which example are you working with?** hyppo **What is the current behavior?** `pgo create mycluster -n mynamespace` returns > namespace [mynamespace] is not part of the Operator installation and `pgo create namespace mynamespace` returns > namespaces "mynamespace" already exists **What is the expected behavior?** Being able to add a cluster to an existing namespace. **Other information** (e.g. detailed explanation, related issues, etc) The namespace on which I want to add the cluster can't be deleted. It already host another Postgresql solution that I want to migrate to CrunchyData solution. **Please tell us about your environment:** * Where is this running ( Local , Cloud Provider): Cloud (GKE) * Storage being used (NFS, Hostpath, Gluster, etc): GKE default storage * Platform (Docker, Kubernetes, OpenShift): Kubernetes * Platform Version: 4.6.2 Thank you.
non_test
add existing namespace to operator which example are you working with hyppo what is the current behavior pgo create mycluster n mynamespace returns namespace is not part of the operator installation and pgo create namespace mynamespace returns namespaces mynamespace already exists what is the expected behavior being able to add a cluster to an existing namespace other information e g detailed explanation related issues etc the namespace on which i want to add the cluster can t be deleted it already host another postgresql solution that i want to migrate to crunchydata solution please tell us about your environment where is this running local cloud provider cloud gke storage being used nfs hostpath gluster etc gke default storage platform docker kubernetes openshift kubernetes platform version thank you
0
27,795
4,329,719,918
IssuesEvent
2016-07-26 17:42:56
phetsims/energy-skate-park-basics
https://api.github.com/repos/phetsims/energy-skate-park-basics
closed
Automated Testing Sim Error (7/26/2016 10:00 AM)
type:automated-testing
``` TypeError: TNumber is not a function at new EnergySkateParkBasicsModel (http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics/model/EnergySkateParkBasicsModel.js?bust=1469549940743:154:19) at EnergySkateParkBasicsScreen.Screen.call.navigationBarIcon.TandemImage.tandem [as createModel] (http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics/EnergySkateParkBasicsScreen.js?bust=1469549940743:33:27) at EnergySkateParkBasicsScreen.initializeModel (http://phettest.colorado.edu/joist/js/Screen.js?bust=1469549940743:124:26) at EnergySkateParkBasicsScreen.initializeModelAndView (http://phettest.colorado.edu/joist/js/Screen.js?bust=1469549940743:150:12) at initializeScreen (http://phettest.colorado.edu/joist/js/Sim.js?bust=1469549940743:443:14) at Array.forEach (native) at EnergySkateParkBasicsSim.Sim [as constructor] (http://phettest.colorado.edu/joist/js/Sim.js?bust=1469549940743:441:13) at new EnergySkateParkBasicsSim (http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics/EnergySkateParkBasicsSim.js?bust=1469549940743:46:9) at http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics-main.js?bust=1469549940743:22:5 at window.phetLaunchSimulation (http://phettest.colorado.edu/joist/js/SimLauncher.js?bust=1469549940743:49:11) ```
1.0
Automated Testing Sim Error (7/26/2016 10:00 AM) - ``` TypeError: TNumber is not a function at new EnergySkateParkBasicsModel (http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics/model/EnergySkateParkBasicsModel.js?bust=1469549940743:154:19) at EnergySkateParkBasicsScreen.Screen.call.navigationBarIcon.TandemImage.tandem [as createModel] (http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics/EnergySkateParkBasicsScreen.js?bust=1469549940743:33:27) at EnergySkateParkBasicsScreen.initializeModel (http://phettest.colorado.edu/joist/js/Screen.js?bust=1469549940743:124:26) at EnergySkateParkBasicsScreen.initializeModelAndView (http://phettest.colorado.edu/joist/js/Screen.js?bust=1469549940743:150:12) at initializeScreen (http://phettest.colorado.edu/joist/js/Sim.js?bust=1469549940743:443:14) at Array.forEach (native) at EnergySkateParkBasicsSim.Sim [as constructor] (http://phettest.colorado.edu/joist/js/Sim.js?bust=1469549940743:441:13) at new EnergySkateParkBasicsSim (http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics/EnergySkateParkBasicsSim.js?bust=1469549940743:46:9) at http://phettest.colorado.edu/energy-skate-park-basics/js/energy-skate-park-basics-main.js?bust=1469549940743:22:5 at window.phetLaunchSimulation (http://phettest.colorado.edu/joist/js/SimLauncher.js?bust=1469549940743:49:11) ```
test
automated testing sim error am typeerror tnumber is not a function at new energyskateparkbasicsmodel at energyskateparkbasicsscreen screen call navigationbaricon tandemimage tandem at energyskateparkbasicsscreen initializemodel at energyskateparkbasicsscreen initializemodelandview at initializescreen at array foreach native at energyskateparkbasicssim sim at new energyskateparkbasicssim at at window phetlaunchsimulation
1
179,102
13,823,193,264
IssuesEvent
2020-10-13 06:38:05
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
roachtest: sqlsmith/setup=seed/setting=no-mutations failed
C-test-failure O-roachtest O-robot branch-release-20.2 release-blocker
[(roachtest).sqlsmith/setup=seed/setting=no-mutations failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2359532&tab=buildLog) on [release-20.2@8c603a116644b518ee79a333c2e67f6d0f10743f](https://github.com/cockroachdb/cockroach/commits/8c603a116644b518ee79a333c2e67f6d0f10743f): ``` The test failed on branch=release-20.2, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/sqlsmith/setup=seed/setting=no-mutations/run_1 sqlsmith.go:110,sqlsmith.go:207,test_runner.go:755: pq: unrecognized configuration parameter "testing_vectorize_inject_panics" ``` <details><summary>More</summary><p> Artifacts: [/sqlsmith/setup=seed/setting=no-mutations](https://teamcity.cockroachdb.com/viewLog.html?buildId=2359532&tab=artifacts#/sqlsmith/setup=seed/setting=no-mutations) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Asqlsmith%2Fsetup%3Dseed%2Fsetting%3Dno-mutations.%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=seed/setting=no-mutations failed - [(roachtest).sqlsmith/setup=seed/setting=no-mutations failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2359532&tab=buildLog) on [release-20.2@8c603a116644b518ee79a333c2e67f6d0f10743f](https://github.com/cockroachdb/cockroach/commits/8c603a116644b518ee79a333c2e67f6d0f10743f): ``` The test failed on branch=release-20.2, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/sqlsmith/setup=seed/setting=no-mutations/run_1 sqlsmith.go:110,sqlsmith.go:207,test_runner.go:755: pq: unrecognized configuration parameter "testing_vectorize_inject_panics" ``` <details><summary>More</summary><p> Artifacts: [/sqlsmith/setup=seed/setting=no-mutations](https://teamcity.cockroachdb.com/viewLog.html?buildId=2359532&tab=artifacts#/sqlsmith/setup=seed/setting=no-mutations) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Asqlsmith%2Fsetup%3Dseed%2Fsetting%3Dno-mutations.%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 seed setting no mutations failed on the test failed on branch release cloud gce test artifacts and logs in home agent work go src github com cockroachdb cockroach artifacts sqlsmith setup seed setting no mutations run sqlsmith go sqlsmith go test runner go pq unrecognized configuration parameter testing vectorize inject panics more artifacts powered by
1
126,358
4,989,179,598
IssuesEvent
2016-12-08 10:55:19
dmwm/WMCore
https://api.github.com/repos/dmwm/WMCore
closed
Adding tasks info into RC fails silently
Low Priority
Hi @ticoann , @lucacopa that's the second time that I try to add site and tasks/thresholds into resource-control and later on, when I check the thresholds, some of the tasks are not there. Here is my log [1]. My summary is that when one provides the "--priority=X" in the command line, it fails with no error message. Could you fix it please? Thanks, Alan. [1] cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 --priority=5 Executing wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 --priority=5 ... cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control -p --site-name=T2_US_Nebraska Executing wmagent-resource-control -p --site-name=T2_US_Nebraska ... Thresholds and current status for all sites: T2_US_Nebraska - 0 running, 0 pending, 1000 running slots total, 500 pending slots total, Site is Normal: Skim - 0 running, 0 pending, 50 max running, 50 max pending, priority 3 Production - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0 Processing - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0 ### TRYING AGAIN WITH NO PRIORITY cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 Executing wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 ... cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control -p --site-name=T2_US_Nebraska Executing wmagent-resource-control -p --site-name=T2_US_Nebraska ... Thresholds and current status for all sites: T2_US_Nebraska - 0 running, 0 pending, 1000 running slots total, 500 pending slots total, Site is Normal: Merge - 0 running, 0 pending, 50 max running, 50 max pending, priority 5 Skim - 0 running, 0 pending, 50 max running, 50 max pending, priority 3 Production - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0 Processing - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0
1.0
Adding tasks info into RC fails silently - Hi @ticoann , @lucacopa that's the second time that I try to add site and tasks/thresholds into resource-control and later on, when I check the thresholds, some of the tasks are not there. Here is my log [1]. My summary is that when one provides the "--priority=X" in the command line, it fails with no error message. Could you fix it please? Thanks, Alan. [1] cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 --priority=5 Executing wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 --priority=5 ... cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control -p --site-name=T2_US_Nebraska Executing wmagent-resource-control -p --site-name=T2_US_Nebraska ... Thresholds and current status for all sites: T2_US_Nebraska - 0 running, 0 pending, 1000 running slots total, 500 pending slots total, Site is Normal: Skim - 0 running, 0 pending, 50 max running, 50 max pending, priority 3 Production - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0 Processing - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0 ### TRYING AGAIN WITH NO PRIORITY cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 Executing wmagent-resource-control --site-name=T2_US_Nebraska --task-type=Merge --pending-slots=50 --running-slots=50 ... cmsdataops@cmssrv113:/data/srv/wmagent/current > $manage execute-agent wmagent-resource-control -p --site-name=T2_US_Nebraska Executing wmagent-resource-control -p --site-name=T2_US_Nebraska ... Thresholds and current status for all sites: T2_US_Nebraska - 0 running, 0 pending, 1000 running slots total, 500 pending slots total, Site is Normal: Merge - 0 running, 0 pending, 50 max running, 50 max pending, priority 5 Skim - 0 running, 0 pending, 50 max running, 50 max pending, priority 3 Production - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0 Processing - 0 running, 0 pending, 1000 max running, 500 max pending, priority 0
non_test
adding tasks info into rc fails silently hi ticoann lucacopa that s the second time that i try to add site and tasks thresholds into resource control and later on when i check the thresholds some of the tasks are not there here is my log my summary is that when one provides the priority x in the command line it fails with no error message could you fix it please thanks alan cmsdataops data srv wmagent current manage execute agent wmagent resource control site name us nebraska task type merge pending slots running slots priority executing wmagent resource control site name us nebraska task type merge pending slots running slots priority cmsdataops data srv wmagent current manage execute agent wmagent resource control p site name us nebraska executing wmagent resource control p site name us nebraska thresholds and current status for all sites us nebraska running pending running slots total pending slots total site is normal skim running pending max running max pending priority production running pending max running max pending priority processing running pending max running max pending priority trying again with no priority cmsdataops data srv wmagent current manage execute agent wmagent resource control site name us nebraska task type merge pending slots running slots executing wmagent resource control site name us nebraska task type merge pending slots running slots cmsdataops data srv wmagent current manage execute agent wmagent resource control p site name us nebraska executing wmagent resource control p site name us nebraska thresholds and current status for all sites us nebraska running pending running slots total pending slots total site is normal merge running pending max running max pending priority skim running pending max running max pending priority production running pending max running max pending priority processing running pending max running max pending priority
0
239,322
26,223,055,053
IssuesEvent
2023-01-04 16:16:24
samq-ghdemo/ori-kit
https://api.github.com/repos/samq-ghdemo/ori-kit
reopened
CVE-2020-11023 (Medium) detected in jquery-2.1.4.min.js, jquery-2.2.4.min.js
security vulnerability
## CVE-2020-11023 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-2.1.4.min.js</b>, <b>jquery-2.2.4.min.js</b></p></summary> <p> <details><summary><b>jquery-2.1.4.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js</a></p> <p>Path to dependency file: /frontend/node_modules/flag-icon-css/index.html</p> <p>Path to vulnerable library: /frontend/node_modules/flag-icon-css/index.html</p> <p> Dependency Hierarchy: - :x: **jquery-2.1.4.min.js** (Vulnerable Library) </details> <details><summary><b>jquery-2.2.4.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js</a></p> <p>Path to dependency file: /frontend/dist/frontend/index.html</p> <p>Path to vulnerable library: /frontend/dist/frontend/index.html,/frontend/src/index.html</p> <p> Dependency Hierarchy: - :x: **jquery-2.2.4.min.js** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/samq-ghdemo/ori-kit/commit/ba236fd18ec3e6450d68d675bce1609d2e5d3230">ba236fd18ec3e6450d68d675bce1609d2e5d3230</a></p> <p>Found in base branch: <b>main</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> In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-11023>CVE-2020-11023</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440">https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jquery - 3.5.0;jquery-rails - 4.4.0</p> </p> </details> <p></p>
True
CVE-2020-11023 (Medium) detected in jquery-2.1.4.min.js, jquery-2.2.4.min.js - ## CVE-2020-11023 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-2.1.4.min.js</b>, <b>jquery-2.2.4.min.js</b></p></summary> <p> <details><summary><b>jquery-2.1.4.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js</a></p> <p>Path to dependency file: /frontend/node_modules/flag-icon-css/index.html</p> <p>Path to vulnerable library: /frontend/node_modules/flag-icon-css/index.html</p> <p> Dependency Hierarchy: - :x: **jquery-2.1.4.min.js** (Vulnerable Library) </details> <details><summary><b>jquery-2.2.4.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js</a></p> <p>Path to dependency file: /frontend/dist/frontend/index.html</p> <p>Path to vulnerable library: /frontend/dist/frontend/index.html,/frontend/src/index.html</p> <p> Dependency Hierarchy: - :x: **jquery-2.2.4.min.js** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/samq-ghdemo/ori-kit/commit/ba236fd18ec3e6450d68d675bce1609d2e5d3230">ba236fd18ec3e6450d68d675bce1609d2e5d3230</a></p> <p>Found in base branch: <b>main</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> In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-11023>CVE-2020-11023</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440">https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jquery - 3.5.0;jquery-rails - 4.4.0</p> </p> </details> <p></p>
non_test
cve medium detected in jquery min js jquery min js cve medium severity vulnerability vulnerable libraries jquery min js jquery min js jquery min js javascript library for dom operations library home page a href path to dependency file frontend node modules flag icon css index html path to vulnerable library frontend node modules flag icon css index html dependency hierarchy x jquery min js vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file frontend dist frontend index html path to vulnerable library frontend dist frontend index html frontend src index html dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch main vulnerability details in jquery versions greater than or equal to and before passing html containing elements from untrusted sources even after sanitizing it to one of jquery s dom manipulation methods i e html append and others may execute untrusted code this problem is patched in jquery publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery jquery rails
0
32,504
4,773,979,009
IssuesEvent
2016-10-27 03:49:31
Kademi/kademi-dev
https://api.github.com/repos/Kademi/kademi-dev
closed
Improve manage user page loading time, but only loading tabs when opened
enhancement Ready to Test - Dev
The manage user page should still be able to use the manage user page as before, but it should be faster to load now because tab content is only loaded when the user views it
1.0
Improve manage user page loading time, but only loading tabs when opened - The manage user page should still be able to use the manage user page as before, but it should be faster to load now because tab content is only loaded when the user views it
test
improve manage user page loading time but only loading tabs when opened the manage user page should still be able to use the manage user page as before but it should be faster to load now because tab content is only loaded when the user views it
1
40,157
12,750,678,618
IssuesEvent
2020-06-27 06:12:41
LucasZuk/Carrosserie
https://api.github.com/repos/LucasZuk/Carrosserie
closed
CVE-2019-6283 (Medium) detected in node-sass-0bd48bbad6fccb0da16d3bdf76ad541f5f45ec70, node-sass-4.12.0.tgz
security vulnerability
## CVE-2019-6283 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-sass-4.12.0.tgz</b></p></summary> <p> <details><summary><b>node-sass-4.12.0.tgz</b></p></summary> <p>Wrapper around libsass</p> <p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/Carrosserie/wp-content/themes/twentynineteen/package.json</p> <p>Path to vulnerable library: /Carrosserie/wp-content/themes/twentynineteen/node_modules/node-sass/package.json</p> <p> Dependency Hierarchy: - :x: **node-sass-4.12.0.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/LucasZuk/Carrosserie/commit/343ec17a4a454a6b094b442cb759631cd6ac5c4c">343ec17a4a454a6b094b442cb759631cd6ac5c4c</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::parenthese_scope in prelexer.hpp. <p>Publish Date: 2019-01-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6283>CVE-2019-6283</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284</a></p> <p>Release Date: 2019-08-06</p> <p>Fix Resolution: LibSass - 3.6.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-6283 (Medium) detected in node-sass-0bd48bbad6fccb0da16d3bdf76ad541f5f45ec70, node-sass-4.12.0.tgz - ## CVE-2019-6283 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>node-sass-4.12.0.tgz</b></p></summary> <p> <details><summary><b>node-sass-4.12.0.tgz</b></p></summary> <p>Wrapper around libsass</p> <p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/Carrosserie/wp-content/themes/twentynineteen/package.json</p> <p>Path to vulnerable library: /Carrosserie/wp-content/themes/twentynineteen/node_modules/node-sass/package.json</p> <p> Dependency Hierarchy: - :x: **node-sass-4.12.0.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/LucasZuk/Carrosserie/commit/343ec17a4a454a6b094b442cb759631cd6ac5c4c">343ec17a4a454a6b094b442cb759631cd6ac5c4c</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In LibSass 3.5.5, a heap-based buffer over-read exists in Sass::Prelexer::parenthese_scope in prelexer.hpp. <p>Publish Date: 2019-01-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-6283>CVE-2019-6283</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6284</a></p> <p>Release Date: 2019-08-06</p> <p>Fix Resolution: LibSass - 3.6.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in node sass node sass tgz cve medium severity vulnerability vulnerable libraries node sass tgz node sass tgz wrapper around libsass library home page a href path to dependency file tmp ws scm carrosserie wp content themes twentynineteen package json path to vulnerable library carrosserie wp content themes twentynineteen node modules node sass package json dependency hierarchy x node sass tgz vulnerable library found in head commit a href vulnerability details in libsass a heap based buffer over read exists in sass prelexer parenthese scope in prelexer hpp publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution libsass step up your open source security game with whitesource
0
440,124
30,730,332,056
IssuesEvent
2023-07-28 00:35:18
medplum/medplum
https://api.github.com/repos/medplum/medplum
closed
Document how to represent a formulary
documentation medications
Document how to represent Formulary items in FHIR, including: - How to use Medication vs. MedicationKnowledge - Relevant ontologies (RXNorm, NDC) - How to represent drug-drug interactions
1.0
Document how to represent a formulary - Document how to represent Formulary items in FHIR, including: - How to use Medication vs. MedicationKnowledge - Relevant ontologies (RXNorm, NDC) - How to represent drug-drug interactions
non_test
document how to represent a formulary document how to represent formulary items in fhir including how to use medication vs medicationknowledge relevant ontologies rxnorm ndc how to represent drug drug interactions
0
139,145
11,252,777,655
IssuesEvent
2020-01-11 11:26:39
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
Failing test: X-Pack Jest Tests.x-pack/legacy/plugins/apm/public/components/shared/useDelayedVisibility - useFetcher is true for minimum 1000ms
failed-test
A test failed on a tracked branch ``` Error: expect(received).toEqual(expected) // deep equality Expected: true Received: false at Object.it (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/x-pack/legacy/plugins/apm/public/components/shared/useDelayedVisibility/index.test.tsx:76:33) at Object.asyncJestTest (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/jasmineAsyncInstall.js:102:37) at resolve (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/queueRunner.js:43:12) at new Promise (<anonymous>) at mapper (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/queueRunner.js:26:19) at promise.then (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/queueRunner.js:73:41) ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/2182/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Jest Tests.x-pack/legacy/plugins/apm/public/components/shared/useDelayedVisibility","test.name":"useFetcher is true for minimum 1000ms","test.failCount":1}} -->
1.0
Failing test: X-Pack Jest Tests.x-pack/legacy/plugins/apm/public/components/shared/useDelayedVisibility - useFetcher is true for minimum 1000ms - A test failed on a tracked branch ``` Error: expect(received).toEqual(expected) // deep equality Expected: true Received: false at Object.it (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/x-pack/legacy/plugins/apm/public/components/shared/useDelayedVisibility/index.test.tsx:76:33) at Object.asyncJestTest (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/jasmineAsyncInstall.js:102:37) at resolve (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/queueRunner.js:43:12) at new Promise (<anonymous>) at mapper (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/queueRunner.js:26:19) at promise.then (/var/lib/jenkins/workspace/elastic+kibana+7.x/kibana/node_modules/jest-jasmine2/build/queueRunner.js:73:41) ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/2182/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Jest Tests.x-pack/legacy/plugins/apm/public/components/shared/useDelayedVisibility","test.name":"useFetcher is true for minimum 1000ms","test.failCount":1}} -->
test
failing test x pack jest tests x pack legacy plugins apm public components shared usedelayedvisibility usefetcher is true for minimum a test failed on a tracked branch error expect received toequal expected deep equality expected true received false at object it var lib jenkins workspace elastic kibana x kibana x pack legacy plugins apm public components shared usedelayedvisibility index test tsx at object asyncjesttest var lib jenkins workspace elastic kibana x kibana node modules jest build jasmineasyncinstall js at resolve var lib jenkins workspace elastic kibana x kibana node modules jest build queuerunner js at new promise at mapper var lib jenkins workspace elastic kibana x kibana node modules jest build queuerunner js at promise then var lib jenkins workspace elastic kibana x kibana node modules jest build queuerunner js first failure
1
235,882
25,962,072,168
IssuesEvent
2022-12-19 01:03:27
meroflash132/inventory
https://api.github.com/repos/meroflash132/inventory
opened
CVE-2022-23515 (Medium) detected in loofah-2.7.0.gem
security vulnerability
## CVE-2022-23515 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>loofah-2.7.0.gem</b></p></summary> <p>Loofah is a general library for manipulating and transforming HTML/XML documents and fragments, built on top of Nokogiri. Loofah excels at HTML sanitization (XSS prevention). It includes some nice HTML sanitizers, which are based on HTML5lib's safelist, so it most likely won't make your codes less secure. (These statements have not been evaluated by Netexperts.) ActiveRecord extensions for sanitization are available in the [`loofah-activerecord` gem](https://github.com/flavorjones/loofah-activerecord).</p> <p>Library home page: <a href="https://rubygems.org/gems/loofah-2.7.0.gem">https://rubygems.org/gems/loofah-2.7.0.gem</a></p> <p> Dependency Hierarchy: - sass-rails-6.0.0.gem (Root Library) - sassc-rails-2.1.2.gem - sprockets-rails-3.2.1.gem - actionpack-6.0.3.2.gem - actionview-6.0.3.2.gem - rails-html-sanitizer-1.3.0.gem - :x: **loofah-2.7.0.gem** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Loofah is a general library for manipulating and transforming HTML/XML documents and fragments, built on top of Nokogiri. Loofah >= 2.1.0, < 2.19.1 is vulnerable to cross-site scripting via the image/svg+xml media type in data URIs. This issue is patched in version 2.19.1. <p>Publish Date: 2022-12-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23515>CVE-2022-23515</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/flavorjones/loofah/security/advisories/GHSA-228g-948r-83gx">https://github.com/flavorjones/loofah/security/advisories/GHSA-228g-948r-83gx</a></p> <p>Release Date: 2022-12-14</p> <p>Fix Resolution: loofah - 2.19.1</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-2022-23515 (Medium) detected in loofah-2.7.0.gem - ## CVE-2022-23515 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>loofah-2.7.0.gem</b></p></summary> <p>Loofah is a general library for manipulating and transforming HTML/XML documents and fragments, built on top of Nokogiri. Loofah excels at HTML sanitization (XSS prevention). It includes some nice HTML sanitizers, which are based on HTML5lib's safelist, so it most likely won't make your codes less secure. (These statements have not been evaluated by Netexperts.) ActiveRecord extensions for sanitization are available in the [`loofah-activerecord` gem](https://github.com/flavorjones/loofah-activerecord).</p> <p>Library home page: <a href="https://rubygems.org/gems/loofah-2.7.0.gem">https://rubygems.org/gems/loofah-2.7.0.gem</a></p> <p> Dependency Hierarchy: - sass-rails-6.0.0.gem (Root Library) - sassc-rails-2.1.2.gem - sprockets-rails-3.2.1.gem - actionpack-6.0.3.2.gem - actionview-6.0.3.2.gem - rails-html-sanitizer-1.3.0.gem - :x: **loofah-2.7.0.gem** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Loofah is a general library for manipulating and transforming HTML/XML documents and fragments, built on top of Nokogiri. Loofah >= 2.1.0, < 2.19.1 is vulnerable to cross-site scripting via the image/svg+xml media type in data URIs. This issue is patched in version 2.19.1. <p>Publish Date: 2022-12-14 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23515>CVE-2022-23515</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/flavorjones/loofah/security/advisories/GHSA-228g-948r-83gx">https://github.com/flavorjones/loofah/security/advisories/GHSA-228g-948r-83gx</a></p> <p>Release Date: 2022-12-14</p> <p>Fix Resolution: loofah - 2.19.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in loofah gem cve medium severity vulnerability vulnerable library loofah gem loofah is a general library for manipulating and transforming html xml documents and fragments built on top of nokogiri loofah excels at html sanitization xss prevention it includes some nice html sanitizers which are based on s safelist so it most likely won t make your codes less secure these statements have not been evaluated by netexperts activerecord extensions for sanitization are available in the library home page a href dependency hierarchy sass rails gem root library sassc rails gem sprockets rails gem actionpack gem actionview gem rails html sanitizer gem x loofah gem vulnerable library found in base branch master vulnerability details loofah is a general library for manipulating and transforming html xml documents and fragments built on top of nokogiri loofah is vulnerable to cross site scripting via the image svg xml media type in data uris this issue is patched in version publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution loofah step up your open source security game with mend
0
185,523
14,358,736,767
IssuesEvent
2020-11-30 14:47:34
MD-Anderson-Bioinformatics/ScatterPlotPlugin3D
https://api.github.com/repos/MD-Anderson-Bioinformatics/ScatterPlotPlugin3D
closed
Rotation and zoom level of plot should be maintained when other panes nearby are opened or closed
ready for testing
Opening a new pane to right or below existing Scatterplot or closing a pane that causes the scatterplot to be redrawn resets view of old scatterplot to default rotation and zoom level.
1.0
Rotation and zoom level of plot should be maintained when other panes nearby are opened or closed - Opening a new pane to right or below existing Scatterplot or closing a pane that causes the scatterplot to be redrawn resets view of old scatterplot to default rotation and zoom level.
test
rotation and zoom level of plot should be maintained when other panes nearby are opened or closed opening a new pane to right or below existing scatterplot or closing a pane that causes the scatterplot to be redrawn resets view of old scatterplot to default rotation and zoom level
1
34,159
28,374,457,412
IssuesEvent
2023-04-12 19:38:20
CDCgov/data-exchange-hl7
https://api.github.com/repos/CDCgov/data-exchange-hl7
opened
Service Transport File Upload Process using Postman
infrastructure
Need to create a documentation for the Service Transport File Upload Process using Postman.
1.0
Service Transport File Upload Process using Postman - Need to create a documentation for the Service Transport File Upload Process using Postman.
non_test
service transport file upload process using postman need to create a documentation for the service transport file upload process using postman
0
187,026
14,426,916,090
IssuesEvent
2020-12-06 00:45:42
kalexmills/github-vet-tests-dec2020
https://api.github.com/repos/kalexmills/github-vet-tests-dec2020
closed
futurewei-cloud/global-scheduler: staging/src/k8s.io/client-go/rest/watch/decoder_test.go; 51 LoC
fresh medium test
Found a possible issue in [futurewei-cloud/global-scheduler](https://www.github.com/futurewei-cloud/global-scheduler) at [staging/src/k8s.io/client-go/rest/watch/decoder_test.go](https://github.com/futurewei-cloud/global-scheduler/blob/b9329a9fbcd5ca571c8acc498b9d42f5e8b9c19e/staging/src/k8s.io/client-go/rest/watch/decoder_test.go#L47-L97) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > range-loop variable eventType used in defer or goroutine at line 60 [Click here to see the code in its original context.](https://github.com/futurewei-cloud/global-scheduler/blob/b9329a9fbcd5ca571c8acc498b9d42f5e8b9c19e/staging/src/k8s.io/client-go/rest/watch/decoder_test.go#L47-L97) <details> <summary>Click here to show the 51 line(s) of Go which triggered the analyzer.</summary> ```go for _, eventType := range table { out, in := io.Pipe() decoder := restclientwatch.NewDecoder(streaming.NewDecoder(out, getDecoder()), getDecoder()) expect := &v1.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo"}} encoder := json.NewEncoder(in) go func() { data, err := runtime.Encode(scheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), expect) if err != nil { t.Fatalf("Unexpected error %v", err) } event := metav1.WatchEvent{ Type: string(eventType), Object: runtime.RawExtension{Raw: json.RawMessage(data)}, } if err := encoder.Encode(&event); err != nil { t.Errorf("Unexpected error %v", err) } in.Close() }() done := make(chan struct{}) go func() { action, got, err := decoder.Decode() if err != nil { t.Fatalf("Unexpected error %v", err) } if e, a := eventType, action; e != a { t.Errorf("Expected %v, got %v", e, a) } if e, a := expect, got; !apiequality.Semantic.DeepDerivative(e, a) { t.Errorf("Expected %v, got %v", e, a) } t.Logf("Exited read") close(done) }() <-done done = make(chan struct{}) go func() { _, _, err := decoder.Decode() if err == nil { t.Errorf("Unexpected nil error") } close(done) }() <-done decoder.Close() } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: b9329a9fbcd5ca571c8acc498b9d42f5e8b9c19e
1.0
futurewei-cloud/global-scheduler: staging/src/k8s.io/client-go/rest/watch/decoder_test.go; 51 LoC - Found a possible issue in [futurewei-cloud/global-scheduler](https://www.github.com/futurewei-cloud/global-scheduler) at [staging/src/k8s.io/client-go/rest/watch/decoder_test.go](https://github.com/futurewei-cloud/global-scheduler/blob/b9329a9fbcd5ca571c8acc498b9d42f5e8b9c19e/staging/src/k8s.io/client-go/rest/watch/decoder_test.go#L47-L97) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > range-loop variable eventType used in defer or goroutine at line 60 [Click here to see the code in its original context.](https://github.com/futurewei-cloud/global-scheduler/blob/b9329a9fbcd5ca571c8acc498b9d42f5e8b9c19e/staging/src/k8s.io/client-go/rest/watch/decoder_test.go#L47-L97) <details> <summary>Click here to show the 51 line(s) of Go which triggered the analyzer.</summary> ```go for _, eventType := range table { out, in := io.Pipe() decoder := restclientwatch.NewDecoder(streaming.NewDecoder(out, getDecoder()), getDecoder()) expect := &v1.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo"}} encoder := json.NewEncoder(in) go func() { data, err := runtime.Encode(scheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), expect) if err != nil { t.Fatalf("Unexpected error %v", err) } event := metav1.WatchEvent{ Type: string(eventType), Object: runtime.RawExtension{Raw: json.RawMessage(data)}, } if err := encoder.Encode(&event); err != nil { t.Errorf("Unexpected error %v", err) } in.Close() }() done := make(chan struct{}) go func() { action, got, err := decoder.Decode() if err != nil { t.Fatalf("Unexpected error %v", err) } if e, a := eventType, action; e != a { t.Errorf("Expected %v, got %v", e, a) } if e, a := expect, got; !apiequality.Semantic.DeepDerivative(e, a) { t.Errorf("Expected %v, got %v", e, a) } t.Logf("Exited read") close(done) }() <-done done = make(chan struct{}) go func() { _, _, err := decoder.Decode() if err == nil { t.Errorf("Unexpected nil error") } close(done) }() <-done decoder.Close() } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: b9329a9fbcd5ca571c8acc498b9d42f5e8b9c19e
test
futurewei cloud global scheduler staging src io client go rest watch decoder test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message range loop variable eventtype used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for eventtype range table out in io pipe decoder restclientwatch newdecoder streaming newdecoder out getdecoder getdecoder expect pod objectmeta objectmeta name foo encoder json newencoder in go func data err runtime encode scheme codecs legacycodec schemegroupversion expect if err nil t fatalf unexpected error v err event watchevent type string eventtype object runtime rawextension raw json rawmessage data if err encoder encode event err nil t errorf unexpected error v err in close done make chan struct go func action got err decoder decode if err nil t fatalf unexpected error v err if e a eventtype action e a t errorf expected v got v e a if e a expect got apiequality semantic deepderivative e a t errorf expected v got v e a t logf exited read close done done done make chan struct go func err decoder decode if err nil t errorf unexpected nil error close done done decoder close leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
358,971
10,652,285,042
IssuesEvent
2019-10-17 12:18:18
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
m.facebook.com - site is not usable
ML Correct ML ON browser-firefox-mobile engine-gecko priority-critical
<!-- @browser: Firefox Mobile 68.0 --> <!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 --> <!-- @reported_with: mobile-reporter --> **URL**: https://m.facebook.com/ **Browser / Version**: Firefox Mobile 68.0 **Operating System**: Android **Tested Another Browser**: Yes **Problem type**: Site is not usable **Description**: phone phone the shifting different sites **Steps to Reproduce**: [![Screenshot Description](https://webcompat.com/uploads/2019/10/1f7c0521-3f1a-49d7-a9d3-6594609dfc45-thumb.jpeg)](https://webcompat.com/uploads/2019/10/1f7c0521-3f1a-49d7-a9d3-6594609dfc45.jpeg) <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20190909131947</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> <p>Console Messages:</p> <pre> ['[console.timeStamp(t_start) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_domcontent) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_tti) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_layout) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_paint) https://m.facebook.com/:24:1205]'] </pre> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
m.facebook.com - site is not usable - <!-- @browser: Firefox Mobile 68.0 --> <!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 --> <!-- @reported_with: mobile-reporter --> **URL**: https://m.facebook.com/ **Browser / Version**: Firefox Mobile 68.0 **Operating System**: Android **Tested Another Browser**: Yes **Problem type**: Site is not usable **Description**: phone phone the shifting different sites **Steps to Reproduce**: [![Screenshot Description](https://webcompat.com/uploads/2019/10/1f7c0521-3f1a-49d7-a9d3-6594609dfc45-thumb.jpeg)](https://webcompat.com/uploads/2019/10/1f7c0521-3f1a-49d7-a9d3-6594609dfc45.jpeg) <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20190909131947</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> <p>Console Messages:</p> <pre> ['[console.timeStamp(t_start) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_domcontent) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_tti) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_layout) https://m.facebook.com/:24:1205]', '[console.timeStamp(t_paint) https://m.facebook.com/:24:1205]'] </pre> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
non_test
m facebook com site is not usable url browser version firefox mobile operating system android tested another browser yes problem type site is not usable description phone phone the shifting different sites steps to reproduce browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false console messages from with ❤️
0
120,780
10,134,876,390
IssuesEvent
2019-08-02 08:44:53
raiden-network/raiden
https://api.github.com/repos/raiden-network/raiden
closed
Address the way geth v >= 1.9 handles unlocking for our tests
testing
## Problem Definition I noticed this while running our smoke tests with geth v1.9. I got the following error: `Fatal: Account unlock with HTTP access is forbidden! ` Apparently Geth v>= 1.9 does not allows us to unlock an account via the personal RPC API in the following conditions according to the [PR](https://github.com/ethereum/go-ethereum/pull/17037#issuecomment-477950848) that implemented this. > - If you call unlock via CLI, it fails the unlock if ws or rpc is enabled, > - If you call personal.unlock via rpc, it fails it if ws or http-rpc is enanbled This can be be bypassed by using the following argument `allow-insecure-unlock` but they don't recommend it. Instead they suggest to use [Clef](https://geth.ethereum.org/clef/Overview) which is I guess the account management moved out of the client. ## Task Since we don't really use `personal.unlockAccount` apart from [here](https://github.com/raiden-network/raiden/blob/8d2dc8d0803d2fe1e6feed09c79cdecadd385b0d/raiden/tests/utils/smoketest.py#L176) in the smoketests to deploy the contracts we can safely add the `--allow-insecure-unlock` argument to geth in our tests when we decided to switch to 1.9
1.0
Address the way geth v >= 1.9 handles unlocking for our tests - ## Problem Definition I noticed this while running our smoke tests with geth v1.9. I got the following error: `Fatal: Account unlock with HTTP access is forbidden! ` Apparently Geth v>= 1.9 does not allows us to unlock an account via the personal RPC API in the following conditions according to the [PR](https://github.com/ethereum/go-ethereum/pull/17037#issuecomment-477950848) that implemented this. > - If you call unlock via CLI, it fails the unlock if ws or rpc is enabled, > - If you call personal.unlock via rpc, it fails it if ws or http-rpc is enanbled This can be be bypassed by using the following argument `allow-insecure-unlock` but they don't recommend it. Instead they suggest to use [Clef](https://geth.ethereum.org/clef/Overview) which is I guess the account management moved out of the client. ## Task Since we don't really use `personal.unlockAccount` apart from [here](https://github.com/raiden-network/raiden/blob/8d2dc8d0803d2fe1e6feed09c79cdecadd385b0d/raiden/tests/utils/smoketest.py#L176) in the smoketests to deploy the contracts we can safely add the `--allow-insecure-unlock` argument to geth in our tests when we decided to switch to 1.9
test
address the way geth v handles unlocking for our tests problem definition i noticed this while running our smoke tests with geth i got the following error fatal account unlock with http access is forbidden apparently geth v does not allows us to unlock an account via the personal rpc api in the following conditions according to the that implemented this if you call unlock via cli it fails the unlock if ws or rpc is enabled if you call personal unlock via rpc it fails it if ws or http rpc is enanbled this can be be bypassed by using the following argument allow insecure unlock but they don t recommend it instead they suggest to use which is i guess the account management moved out of the client task since we don t really use personal unlockaccount apart from in the smoketests to deploy the contracts we can safely add the allow insecure unlock argument to geth in our tests when we decided to switch to
1
249,470
26,939,595,500
IssuesEvent
2023-02-08 00:23:53
GoogleCloudPlatform/buildpacks
https://api.github.com/repos/GoogleCloudPlatform/buildpacks
closed
A lot of security issues found via vulnerability scanning on Google Cloud for a python app image created with google builder
security
When building the python application image via Buildpacks on Google cloud and pushing it to the artifact registry for scanning, a lot of security issues are detected. I'm assuming these are related to the base image ubuntu 18.04. Is there a way to enforce the latest image, to prevent these security issues? High severity issues reported: CVE-2021-3711 , CVE-2021-3449, CVE-2022-0778. There are 20 medium CVEs as well and many have fixes available. Can you please update the python dependencies to avoid this issue? Building method: pack build --builder=gcr.io/buildpacks/builder <IMAGE_NAME> Pack version - "https://github.com/buildpacks/pack/releases/download/v0.27.0/pack-v0.27.0-linux.tgz"
True
A lot of security issues found via vulnerability scanning on Google Cloud for a python app image created with google builder - When building the python application image via Buildpacks on Google cloud and pushing it to the artifact registry for scanning, a lot of security issues are detected. I'm assuming these are related to the base image ubuntu 18.04. Is there a way to enforce the latest image, to prevent these security issues? High severity issues reported: CVE-2021-3711 , CVE-2021-3449, CVE-2022-0778. There are 20 medium CVEs as well and many have fixes available. Can you please update the python dependencies to avoid this issue? Building method: pack build --builder=gcr.io/buildpacks/builder <IMAGE_NAME> Pack version - "https://github.com/buildpacks/pack/releases/download/v0.27.0/pack-v0.27.0-linux.tgz"
non_test
a lot of security issues found via vulnerability scanning on google cloud for a python app image created with google builder when building the python application image via buildpacks on google cloud and pushing it to the artifact registry for scanning a lot of security issues are detected i m assuming these are related to the base image ubuntu is there a way to enforce the latest image to prevent these security issues high severity issues reported cve cve cve there are medium cves as well and many have fixes available can you please update the python dependencies to avoid this issue building method pack build builder gcr io buildpacks builder pack version
0
235,414
18,049,122,412
IssuesEvent
2021-09-19 12:33:05
girlscript/winter-of-contributing
https://api.github.com/repos/girlscript/winter-of-contributing
closed
Sets : STL in C++
documentation GWOC21 Assigned C/CPP
<hr> ## Description 📜 Describing the SETS container and it's respective functions in the form of code and documentation <hr> ## Domain of Contribution 📊 <!----Please delete options that are not relevant.And in order to tick the check box just but x inside them for example [x] like this-----> - [x] C/CPP <hr>
1.0
Sets : STL in C++ - <hr> ## Description 📜 Describing the SETS container and it's respective functions in the form of code and documentation <hr> ## Domain of Contribution 📊 <!----Please delete options that are not relevant.And in order to tick the check box just but x inside them for example [x] like this-----> - [x] C/CPP <hr>
non_test
sets stl in c description 📜 describing the sets container and it s respective functions in the form of code and documentation domain of contribution 📊 c cpp
0
370,230
10,927,171,984
IssuesEvent
2019-11-22 16:08:24
forseti-security/forseti-security
https://api.github.com/repos/forseti-security/forseti-security
closed
Group settings unauthorized_client warning should log only once
1 - Planning Size - 3 module: inventory priority: p3 triaged: yes
- [ ] Fail if the unauth client error is hit and do not retry --- it's being logged multiple times now and we should follow what we did for gsuite member and group, to log only once if there is an unauthorized_client error and not attempt to retrieve groups settings any more. ![image](https://user-images.githubusercontent.com/5330393/55264271-0d359000-5231-11e9-9105-40e0db0c9a74.png)
1.0
Group settings unauthorized_client warning should log only once - - [ ] Fail if the unauth client error is hit and do not retry --- it's being logged multiple times now and we should follow what we did for gsuite member and group, to log only once if there is an unauthorized_client error and not attempt to retrieve groups settings any more. ![image](https://user-images.githubusercontent.com/5330393/55264271-0d359000-5231-11e9-9105-40e0db0c9a74.png)
non_test
group settings unauthorized client warning should log only once fail if the unauth client error is hit and do not retry it s being logged multiple times now and we should follow what we did for gsuite member and group to log only once if there is an unauthorized client error and not attempt to retrieve groups settings any more
0
208,748
7,158,020,841
IssuesEvent
2018-01-26 22:17:22
CityOfPhiladelphia/parks-rec-finder
https://api.github.com/repos/CityOfPhiladelphia/parks-rec-finder
opened
Location name should be included in mobile activity category list
Mobile bug priority - high
Location name should be included in mobile activity category list ### Expected Behavior [ref testing protocol 14.1.6.](https://docs.google.com/document/d/1duzm6Nj914sYiUyMSUSoKMWFETPy3C5XSajTEyI5pAs/edit#) - View individual card, each contains - Name of activity - Location name - Age range - Gender - Cost ### Observed Behavior > Steps to Reproduce http://localhost:8080/parks-rec-finder/#/activities/athletic ![screencapture-localhost-8080-parks-rec-finder-1517004904263](https://user-images.githubusercontent.com/10891276/35463027-9ff11592-02bc-11e8-9c97-47ce6bcb7735.png) #### Proposed Solution Include location name ![mobile_program-category list](https://user-images.githubusercontent.com/10891276/35463032-ab501e74-02bc-11e8-9d37-94f23e136d89.png)
1.0
Location name should be included in mobile activity category list - Location name should be included in mobile activity category list ### Expected Behavior [ref testing protocol 14.1.6.](https://docs.google.com/document/d/1duzm6Nj914sYiUyMSUSoKMWFETPy3C5XSajTEyI5pAs/edit#) - View individual card, each contains - Name of activity - Location name - Age range - Gender - Cost ### Observed Behavior > Steps to Reproduce http://localhost:8080/parks-rec-finder/#/activities/athletic ![screencapture-localhost-8080-parks-rec-finder-1517004904263](https://user-images.githubusercontent.com/10891276/35463027-9ff11592-02bc-11e8-9c97-47ce6bcb7735.png) #### Proposed Solution Include location name ![mobile_program-category list](https://user-images.githubusercontent.com/10891276/35463032-ab501e74-02bc-11e8-9d37-94f23e136d89.png)
non_test
location name should be included in mobile activity category list location name should be included in mobile activity category list expected behavior view individual card each contains name of activity location name age range gender cost observed behavior steps to reproduce proposed solution include location name
0
757,580
26,518,963,397
IssuesEvent
2023-01-18 23:52:27
MSRevive/MasterSwordRebirth
https://api.github.com/repos/MSRevive/MasterSwordRebirth
opened
Refactor item handling.
enhancement 🔧 high priority game
Currently all items in your inventory is spawned in the world at 0,0,0 which contributes to the entity limit. We should find a way to only spawn the items that are being used and make the items in the inventory just be data instead of being spawned entities, this would probably allow players to have a lot more items in their inventory and save up on used entity limit. The galat chest items are not handled this way though. We should also investigate a way to convert string names of items to some kind of short hand like an ID and way to convert them back to script name so players won't loose any items by us changing the script name.
1.0
Refactor item handling. - Currently all items in your inventory is spawned in the world at 0,0,0 which contributes to the entity limit. We should find a way to only spawn the items that are being used and make the items in the inventory just be data instead of being spawned entities, this would probably allow players to have a lot more items in their inventory and save up on used entity limit. The galat chest items are not handled this way though. We should also investigate a way to convert string names of items to some kind of short hand like an ID and way to convert them back to script name so players won't loose any items by us changing the script name.
non_test
refactor item handling currently all items in your inventory is spawned in the world at which contributes to the entity limit we should find a way to only spawn the items that are being used and make the items in the inventory just be data instead of being spawned entities this would probably allow players to have a lot more items in their inventory and save up on used entity limit the galat chest items are not handled this way though we should also investigate a way to convert string names of items to some kind of short hand like an id and way to convert them back to script name so players won t loose any items by us changing the script name
0
319,787
27,400,515,216
IssuesEvent
2023-03-01 00:02:30
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
opened
Fix manipulation.test_zero_pad
Sub Task Failing Test
| | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/4296783117/jobs/7488941998" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/4296783117/jobs/7488949537" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> <details> <summary>Not found</summary> Not found </details>
1.0
Fix manipulation.test_zero_pad - | | | |---|---| |tensorflow|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/4296783117/jobs/7488941998" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/4296783117/jobs/7488949537" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a> <details> <summary>Not found</summary> Not found </details>
test
fix manipulation test zero pad tensorflow img src torch img src numpy img src jax img src not found not found
1
327,482
9,976,248,220
IssuesEvent
2019-07-09 14:41:49
CESARBR/knot-gateway-buildroot
https://api.github.com/repos/CESARBR/knot-gateway-buildroot
closed
Add reset to factory
area: Usability enhancement priority: medium
Add a mechanism to allow users to clear apps, network and system settings.
1.0
Add reset to factory - Add a mechanism to allow users to clear apps, network and system settings.
non_test
add reset to factory add a mechanism to allow users to clear apps network and system settings
0
194,031
6,890,811,494
IssuesEvent
2017-11-22 15:10:18
OpenEMS/openems
https://api.github.com/repos/OpenEMS/openems
closed
Energymonitor arrows wrong calculation
Component: UI Priority: Medium Type: Bug
<!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION YOUR ISSUE MIGHT BE CLOSED WITHOUT INVESTIGATING --> ### Bug Report or Feature Request (mark with an `x`) ``` - [x] bug report -> please search issues before submitting - [ ] feature request ``` ### Bug description or desired functionality. <!-- What would like to see implemented? What is the usecase? --> In certain cases the arrows in the energy monitor are calculated wrongly. ![grafik](https://user-images.githubusercontent.com/3515268/32826373-6af1035a-c9e8-11e7-8624-ebd55b4aac37.png)
1.0
Energymonitor arrows wrong calculation - <!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION YOUR ISSUE MIGHT BE CLOSED WITHOUT INVESTIGATING --> ### Bug Report or Feature Request (mark with an `x`) ``` - [x] bug report -> please search issues before submitting - [ ] feature request ``` ### Bug description or desired functionality. <!-- What would like to see implemented? What is the usecase? --> In certain cases the arrows in the energy monitor are calculated wrongly. ![grafik](https://user-images.githubusercontent.com/3515268/32826373-6af1035a-c9e8-11e7-8624-ebd55b4aac37.png)
non_test
energymonitor arrows wrong calculation if you don t fill out the following information your issue might be closed without investigating bug report or feature request mark with an x bug report please search issues before submitting feature request bug description or desired functionality what would like to see implemented what is the usecase in certain cases the arrows in the energy monitor are calculated wrongly
0
170,034
13,171,213,590
IssuesEvent
2020-08-11 16:17:54
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: tpcc/mixed-headroom/n5cpu16 failed
C-test-failure O-roachtest O-robot branch-master release-blocker
[(roachtest).tpcc/mixed-headroom/n5cpu16 failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2149913&tab=buildLog) on [master@d50061568013bce3646069c79c117abc65a49f56](https://github.com/cockroachdb/cockroach/commits/d50061568013bce3646069c79c117abc65a49f56): ``` The test failed on branch=master, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/tpcc/mixed-headroom/n5cpu16/run_1 test_runner.go:801: test timed out (10h0m0s) cluster.go:2126,tpcc.go:147,tpcc.go:157,tpcc.go:168,tpcc.go:286,test_runner.go:754: output in run_123211.688_n5_workload_fixtures_load_tpcc: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod run teamcity-2149913-1596610502-83-n5cpu16:5 -- ./workload fixtures load tpcc --warehouses=1000 {pgurl:1} returned: context canceled (1) attached stack trace | main.(*cluster).RunE | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/cluster.go:2204 | main.(*cluster).Run | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/cluster.go:2124 | main.setupTPCC.func1 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:147 | main.setupTPCC | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:157 | main.runTPCC | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:168 | main.registerTPCC.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:286 | main.(*testRunner).runTest.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/test_runner.go:754 | runtime.goexit | /usr/local/go/src/runtime/asm_amd64.s:1373 Wraps: (2) 2 safe details enclosed Wraps: (3) output in run_123211.688_n5_workload_fixtures_load_tpcc Wraps: (4) /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod run teamcity-2149913-1596610502-83-n5cpu16:5 -- ./workload fixtures load tpcc --warehouses=1000 {pgurl:1} returned | stderr: | I200805 12:32:13.560261 1 ccl/workloadccl/cliccl/fixtures.go:279 starting restore of 9 tables | I200805 12:32:13.865057 89 ccl/workloadccl/fixture.go:586 loaded 53 KiB table warehouse in 296.317889ms (1000 rows, 0 index entries, 179 KiB) | I200805 12:33:02.409695 94 ccl/workloadccl/fixture.go:586 loaded 126 MiB table new_order in 48.840931133s (9000000 rows, 0 index entries, 2.6 MiB) | I200805 12:33:25.286172 95 ccl/workloadccl/fixture.go:586 loaded 7.8 MiB table item in 1m11.717443543s (100000 rows, 0 index entries, 111 KiB) | I200805 12:33:54.284801 90 ccl/workloadccl/fixture.go:586 loaded 1006 KiB table district in 1m40.716221502s (10000 rows, 0 index entries, 10 KiB) | I200805 12:39:08.943251 92 ccl/workloadccl/fixture.go:586 loaded 4.3 GiB table history in 6m55.374567898s (30000000 rows, 60000000 index entries, 10 MiB) | | stdout: Wraps: (5) secondary error attachment | signal: killed | (1) signal: killed | Error types: (1) *exec.ExitError Wraps: (6) context canceled Error types: (1) *withstack.withStack (2) *safedetails.withSafeDetails (3) *errutil.withMessage (4) *main.withCommandDetails (5) *secondary.withSecondaryError (6) *errors.errorString ``` <details><summary>More</summary><p> Artifacts: [/tpcc/mixed-headroom/n5cpu16](https://teamcity.cockroachdb.com/viewLog.html?buildId=2149913&tab=artifacts#/tpcc/mixed-headroom/n5cpu16) Related: - #52186 roachtest: tpcc/mixed-headroom/n5cpu16 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) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpcc%2Fmixed-headroom%2Fn5cpu16.%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: tpcc/mixed-headroom/n5cpu16 failed - [(roachtest).tpcc/mixed-headroom/n5cpu16 failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2149913&tab=buildLog) on [master@d50061568013bce3646069c79c117abc65a49f56](https://github.com/cockroachdb/cockroach/commits/d50061568013bce3646069c79c117abc65a49f56): ``` The test failed on branch=master, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/tpcc/mixed-headroom/n5cpu16/run_1 test_runner.go:801: test timed out (10h0m0s) cluster.go:2126,tpcc.go:147,tpcc.go:157,tpcc.go:168,tpcc.go:286,test_runner.go:754: output in run_123211.688_n5_workload_fixtures_load_tpcc: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod run teamcity-2149913-1596610502-83-n5cpu16:5 -- ./workload fixtures load tpcc --warehouses=1000 {pgurl:1} returned: context canceled (1) attached stack trace | main.(*cluster).RunE | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/cluster.go:2204 | main.(*cluster).Run | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/cluster.go:2124 | main.setupTPCC.func1 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:147 | main.setupTPCC | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:157 | main.runTPCC | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:168 | main.registerTPCC.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tpcc.go:286 | main.(*testRunner).runTest.func2 | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachtest/test_runner.go:754 | runtime.goexit | /usr/local/go/src/runtime/asm_amd64.s:1373 Wraps: (2) 2 safe details enclosed Wraps: (3) output in run_123211.688_n5_workload_fixtures_load_tpcc Wraps: (4) /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod run teamcity-2149913-1596610502-83-n5cpu16:5 -- ./workload fixtures load tpcc --warehouses=1000 {pgurl:1} returned | stderr: | I200805 12:32:13.560261 1 ccl/workloadccl/cliccl/fixtures.go:279 starting restore of 9 tables | I200805 12:32:13.865057 89 ccl/workloadccl/fixture.go:586 loaded 53 KiB table warehouse in 296.317889ms (1000 rows, 0 index entries, 179 KiB) | I200805 12:33:02.409695 94 ccl/workloadccl/fixture.go:586 loaded 126 MiB table new_order in 48.840931133s (9000000 rows, 0 index entries, 2.6 MiB) | I200805 12:33:25.286172 95 ccl/workloadccl/fixture.go:586 loaded 7.8 MiB table item in 1m11.717443543s (100000 rows, 0 index entries, 111 KiB) | I200805 12:33:54.284801 90 ccl/workloadccl/fixture.go:586 loaded 1006 KiB table district in 1m40.716221502s (10000 rows, 0 index entries, 10 KiB) | I200805 12:39:08.943251 92 ccl/workloadccl/fixture.go:586 loaded 4.3 GiB table history in 6m55.374567898s (30000000 rows, 60000000 index entries, 10 MiB) | | stdout: Wraps: (5) secondary error attachment | signal: killed | (1) signal: killed | Error types: (1) *exec.ExitError Wraps: (6) context canceled Error types: (1) *withstack.withStack (2) *safedetails.withSafeDetails (3) *errutil.withMessage (4) *main.withCommandDetails (5) *secondary.withSecondaryError (6) *errors.errorString ``` <details><summary>More</summary><p> Artifacts: [/tpcc/mixed-headroom/n5cpu16](https://teamcity.cockroachdb.com/viewLog.html?buildId=2149913&tab=artifacts#/tpcc/mixed-headroom/n5cpu16) Related: - #52186 roachtest: tpcc/mixed-headroom/n5cpu16 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) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpcc%2Fmixed-headroom%2Fn5cpu16.%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 tpcc mixed headroom failed on the test failed on branch master cloud gce test artifacts and logs in home agent work go src github com cockroachdb cockroach artifacts tpcc mixed headroom run test runner go test timed out cluster go tpcc go tpcc go tpcc go tpcc go test runner go output in run workload fixtures load tpcc home agent work go src github com cockroachdb cockroach bin roachprod run teamcity workload fixtures load tpcc warehouses pgurl returned context canceled attached stack trace main cluster rune home agent work go src github com cockroachdb cockroach pkg cmd roachtest cluster go main cluster run home agent work go src github com cockroachdb cockroach pkg cmd roachtest cluster go main setuptpcc home agent work go src github com cockroachdb cockroach pkg cmd roachtest tpcc go main setuptpcc home agent work go src github com cockroachdb cockroach pkg cmd roachtest tpcc go main runtpcc home agent work go src github com cockroachdb cockroach pkg cmd roachtest tpcc go main registertpcc home agent work go src github com cockroachdb cockroach pkg cmd roachtest tpcc go main testrunner runtest home agent work go src github com cockroachdb cockroach pkg cmd roachtest test runner go runtime goexit usr local go src runtime asm s wraps safe details enclosed wraps output in run workload fixtures load tpcc wraps home agent work go src github com cockroachdb cockroach bin roachprod run teamcity workload fixtures load tpcc warehouses pgurl returned stderr ccl workloadccl cliccl fixtures go starting restore of tables ccl workloadccl fixture go loaded kib table warehouse in rows index entries kib ccl workloadccl fixture go loaded mib table new order in rows index entries mib ccl workloadccl fixture go loaded mib table item in rows index entries kib ccl workloadccl fixture go loaded kib table district in rows index entries kib ccl workloadccl fixture go loaded gib table history in rows index entries mib stdout wraps secondary error attachment signal killed signal killed error types exec exiterror wraps context canceled error types withstack withstack safedetails withsafedetails errutil withmessage main withcommanddetails secondary withsecondaryerror errors errorstring more artifacts related roachtest tpcc mixed headroom failed powered by
1
152,558
13,460,507,806
IssuesEvent
2020-09-09 13:42:26
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
ListView positioned in Stack isn't scrolling unless both boundaries of the Positioned widget are set
documentation f: scrolling framework
Hey, the title is basically self-explanatory. If I specify any position attribute (top, left, etc... ) the ListView inside the widget no longer scrolls. Widget in question is the one with top property = 0. ```dart import 'package:flutter/material.dart'; import 'dart:ui'; class WorkoutStore extends StatefulWidget { @override State<StatefulWidget> createState() => _WorkoutStoreState(); } class _WorkoutStoreState extends State<WorkoutStore> { final Map<String, dynamic> _textThemes = { "TileTitle": TextStyle(color: Colors.white, fontSize: 24.0, fontFamily: 'Neighbor'), "TileSubTitle": TextStyle(color: Colors.white70, fontSize: 12.0, fontFamily: 'Neighbor') }; @override Widget build(BuildContext context) { return SingleChildScrollView( child: Column( mainAxisSize: MainAxisSize.min, children: <Widget>[ Container( decoration: BoxDecoration( gradient: LinearGradient( begin: Alignment.topLeft, end: Alignment.bottomRight, colors: [Colors.blue.shade900, Colors.red.shade900])), height: 200, child: Stack( children: <Widget>[ Container( child: ClipRect( child: BackdropFilter( filter: ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0), child: Container( decoration: BoxDecoration( color: Colors.grey.shade500 .withOpacity(0.15)))))), Positioned( top: 0, child: SizedBox( height: 100, child: ListView( shrinkWrap: true, scrollDirection: Axis.horizontal, children: <Widget>[ ClipRRect( borderRadius: BorderRadius.circular(5), child: Container( height: 100, width: 200, color: Colors.white70, )), ClipRRect( borderRadius: BorderRadius.circular(5), child: Container( height: 100, width: 200, color: Colors.white70, )), ClipRRect( borderRadius: BorderRadius.circular(5), child: Container( height: 100, width: 200, color: Colors.white70, )) ], ))), Positioned( top: 20, left: 20, child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Text('Featured Workout', style: _textThemes["TileTitle"]), Padding( child: Text('Hottest workouts right now', style: _textThemes["TileSubTitle"]), padding: EdgeInsets.only(top: 5)), Padding( padding: EdgeInsets.only(top: 10), child: Container()) ], )), ], ), ) ], )); } } flutter doctor is fine: [√] Flutter (Channel stable, v1.5.4-hotfix.2, on Microsoft Windows [Version 10.0.18362.239], locale en-GB) [√] Android toolchain - develop for Android devices (Android SDK version 29.0.0) [√] Android Studio (version 3.4) [√] Connected device (2 available) • No issues found!
1.0
ListView positioned in Stack isn't scrolling unless both boundaries of the Positioned widget are set - Hey, the title is basically self-explanatory. If I specify any position attribute (top, left, etc... ) the ListView inside the widget no longer scrolls. Widget in question is the one with top property = 0. ```dart import 'package:flutter/material.dart'; import 'dart:ui'; class WorkoutStore extends StatefulWidget { @override State<StatefulWidget> createState() => _WorkoutStoreState(); } class _WorkoutStoreState extends State<WorkoutStore> { final Map<String, dynamic> _textThemes = { "TileTitle": TextStyle(color: Colors.white, fontSize: 24.0, fontFamily: 'Neighbor'), "TileSubTitle": TextStyle(color: Colors.white70, fontSize: 12.0, fontFamily: 'Neighbor') }; @override Widget build(BuildContext context) { return SingleChildScrollView( child: Column( mainAxisSize: MainAxisSize.min, children: <Widget>[ Container( decoration: BoxDecoration( gradient: LinearGradient( begin: Alignment.topLeft, end: Alignment.bottomRight, colors: [Colors.blue.shade900, Colors.red.shade900])), height: 200, child: Stack( children: <Widget>[ Container( child: ClipRect( child: BackdropFilter( filter: ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0), child: Container( decoration: BoxDecoration( color: Colors.grey.shade500 .withOpacity(0.15)))))), Positioned( top: 0, child: SizedBox( height: 100, child: ListView( shrinkWrap: true, scrollDirection: Axis.horizontal, children: <Widget>[ ClipRRect( borderRadius: BorderRadius.circular(5), child: Container( height: 100, width: 200, color: Colors.white70, )), ClipRRect( borderRadius: BorderRadius.circular(5), child: Container( height: 100, width: 200, color: Colors.white70, )), ClipRRect( borderRadius: BorderRadius.circular(5), child: Container( height: 100, width: 200, color: Colors.white70, )) ], ))), Positioned( top: 20, left: 20, child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Text('Featured Workout', style: _textThemes["TileTitle"]), Padding( child: Text('Hottest workouts right now', style: _textThemes["TileSubTitle"]), padding: EdgeInsets.only(top: 5)), Padding( padding: EdgeInsets.only(top: 10), child: Container()) ], )), ], ), ) ], )); } } flutter doctor is fine: [√] Flutter (Channel stable, v1.5.4-hotfix.2, on Microsoft Windows [Version 10.0.18362.239], locale en-GB) [√] Android toolchain - develop for Android devices (Android SDK version 29.0.0) [√] Android Studio (version 3.4) [√] Connected device (2 available) • No issues found!
non_test
listview positioned in stack isn t scrolling unless both boundaries of the positioned widget are set hey the title is basically self explanatory if i specify any position attribute top left etc the listview inside the widget no longer scrolls widget in question is the one with top property dart import package flutter material dart import dart ui class workoutstore extends statefulwidget override state createstate workoutstorestate class workoutstorestate extends state final map textthemes tiletitle textstyle color colors white fontsize fontfamily neighbor tilesubtitle textstyle color colors fontsize fontfamily neighbor override widget build buildcontext context return singlechildscrollview child column mainaxissize mainaxissize min children container decoration boxdecoration gradient lineargradient begin alignment topleft end alignment bottomright colors height child stack children container child cliprect child backdropfilter filter imagefilter blur sigmax sigmay child container decoration boxdecoration color colors grey withopacity positioned top child sizedbox height child listview shrinkwrap true scrolldirection axis horizontal children cliprrect borderradius borderradius circular child container height width color colors cliprrect borderradius borderradius circular child container height width color colors cliprrect borderradius borderradius circular child container height width color colors positioned top left child column crossaxisalignment crossaxisalignment start children text featured workout style textthemes padding child text hottest workouts right now style textthemes padding edgeinsets only top padding padding edgeinsets only top child container flutter doctor is fine flutter channel stable hotfix on microsoft windows locale en gb android toolchain develop for android devices android sdk version android studio version connected device available • no issues found
0
119,051
10,023,942,331
IssuesEvent
2019-07-16 20:31:23
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: drop/tpcc/w=100,nodes=9 failed
C-test-failure O-roachtest O-robot
SHA: https://github.com/cockroachdb/cockroach/commits/ca1ef4d4f8296b213c0b2b140f16e4a97931e6e7 Parameters: To repro, try: ``` # Don't forget to check out a clean suitable branch and experiment with the # stress invocation until the desired results present themselves. For example, # using stress instead of stressrace and passing the '-p' stressflag which # controls concurrency. ./scripts/gceworker.sh start && ./scripts/gceworker.sh mosh cd ~/go/src/github.com/cockroachdb/cockroach && \ stdbuf -oL -eL \ make stressrace TESTS=drop/tpcc/w=100,nodes=9 PKG=roachtest TESTTIMEOUT=5m STRESSFLAGS='-maxtime 20m -timeout 10m' 2>&1 | tee /tmp/stress.log ``` Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=1368144&tab=buildLog ``` The test failed on branch=master, cloud=gce: test.go:1235: test timed out (11h49m4.055844493s) cluster.go:1511,drop.go:40,cluster.go:1849,errgroup.go:57: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod run teamcity-1368144-drop-tpcc-w-100-nodes-9:1 -- ./workload fixtures load tpcc --warehouses=100 --db tpcc {pgurl:1} returned: stderr: stdout: I190701 07:24:17.640607 1 ccl/workloadccl/cliccl/fixtures.go:293 starting load of 9 tables I190701 07:24:18.414077 76 ccl/workloadccl/fixture.go:476 loaded 99 KiB table district in 773.043695ms (1000 rows, 0 index entries, 128 KiB) I190701 07:24:19.334812 81 ccl/workloadccl/fixture.go:476 loaded 7.8 MiB table item in 1.69388799s (100000 rows, 0 index entries, 4.6 MiB) I190701 07:24:28.800286 80 ccl/workloadccl/fixture.go:476 loaded 11 MiB table new_order in 11.159537527s (900000 rows, 0 index entries, 1024 KiB) I190701 07:24:49.599845 75 ccl/workloadccl/fixture.go:476 loaded 5.1 KiB table warehouse in 31.959002734s (100 rows, 0 index entries, 164 B) I190701 07:24:50.548505 79 ccl/workloadccl/fixture.go:476 loaded 126 MiB table order in 32.907393765s (3000000 rows, 3000000 index entries, 3.8 MiB) : signal: killed cluster.go:1870,drop.go:158,drop.go:182,test.go:1249: Goexit() was called ```
2.0
roachtest: drop/tpcc/w=100,nodes=9 failed - SHA: https://github.com/cockroachdb/cockroach/commits/ca1ef4d4f8296b213c0b2b140f16e4a97931e6e7 Parameters: To repro, try: ``` # Don't forget to check out a clean suitable branch and experiment with the # stress invocation until the desired results present themselves. For example, # using stress instead of stressrace and passing the '-p' stressflag which # controls concurrency. ./scripts/gceworker.sh start && ./scripts/gceworker.sh mosh cd ~/go/src/github.com/cockroachdb/cockroach && \ stdbuf -oL -eL \ make stressrace TESTS=drop/tpcc/w=100,nodes=9 PKG=roachtest TESTTIMEOUT=5m STRESSFLAGS='-maxtime 20m -timeout 10m' 2>&1 | tee /tmp/stress.log ``` Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=1368144&tab=buildLog ``` The test failed on branch=master, cloud=gce: test.go:1235: test timed out (11h49m4.055844493s) cluster.go:1511,drop.go:40,cluster.go:1849,errgroup.go:57: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod run teamcity-1368144-drop-tpcc-w-100-nodes-9:1 -- ./workload fixtures load tpcc --warehouses=100 --db tpcc {pgurl:1} returned: stderr: stdout: I190701 07:24:17.640607 1 ccl/workloadccl/cliccl/fixtures.go:293 starting load of 9 tables I190701 07:24:18.414077 76 ccl/workloadccl/fixture.go:476 loaded 99 KiB table district in 773.043695ms (1000 rows, 0 index entries, 128 KiB) I190701 07:24:19.334812 81 ccl/workloadccl/fixture.go:476 loaded 7.8 MiB table item in 1.69388799s (100000 rows, 0 index entries, 4.6 MiB) I190701 07:24:28.800286 80 ccl/workloadccl/fixture.go:476 loaded 11 MiB table new_order in 11.159537527s (900000 rows, 0 index entries, 1024 KiB) I190701 07:24:49.599845 75 ccl/workloadccl/fixture.go:476 loaded 5.1 KiB table warehouse in 31.959002734s (100 rows, 0 index entries, 164 B) I190701 07:24:50.548505 79 ccl/workloadccl/fixture.go:476 loaded 126 MiB table order in 32.907393765s (3000000 rows, 3000000 index entries, 3.8 MiB) : signal: killed cluster.go:1870,drop.go:158,drop.go:182,test.go:1249: Goexit() was called ```
test
roachtest drop tpcc w nodes failed sha parameters to repro try don t forget to check out a clean suitable branch and experiment with the stress invocation until the desired results present themselves for example using stress instead of stressrace and passing the p stressflag which controls concurrency scripts gceworker sh start scripts gceworker sh mosh cd go src github com cockroachdb cockroach stdbuf ol el make stressrace tests drop tpcc w nodes pkg roachtest testtimeout stressflags maxtime timeout tee tmp stress log failed test the test failed on branch master cloud gce test go test timed out cluster go drop go cluster go errgroup go home agent work go src github com cockroachdb cockroach bin roachprod run teamcity drop tpcc w nodes workload fixtures load tpcc warehouses db tpcc pgurl returned stderr stdout ccl workloadccl cliccl fixtures go starting load of tables ccl workloadccl fixture go loaded kib table district in rows index entries kib ccl workloadccl fixture go loaded mib table item in rows index entries mib ccl workloadccl fixture go loaded mib table new order in rows index entries kib ccl workloadccl fixture go loaded kib table warehouse in rows index entries b ccl workloadccl fixture go loaded mib table order in rows index entries mib signal killed cluster go drop go drop go test go goexit was called
1
289,610
24,999,468,076
IssuesEvent
2022-11-03 06:04:54
microsoft/AzureStorageExplorer
https://api.github.com/repos/microsoft/AzureStorageExplorer
closed
The 'Preview' action is disabled under the tag query mode for one blob with file extension .csv/.png
🧪 testing :gear: blobs
**Storage Explorer Version**: 1.27.0-dev **Build Number**: 20221102.1 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 22.04/MacOS Ventura 13.0 (Apple M1 Pro) **Architecture**: ia32/x64 **How Found**: Ad-hoc testing **Regression From**: Not a regression ## Steps to Reproduce ## 1. Expand one storage account ->Blob Containers. 2. Create a blob container -> Upload a blob with .csv file extension. 3. Right click the blob -> The action 'Preview' is enabled. 4. Add one tag for the blob -> Apply the tag to query. 5. Right click the blob under the tag query mode. 6. Check whether the action 'Preview' is enabled or not. ## Expected Experience ## The action 'Preview' is enabled. ## Actual Experience ## The action 'Preview' is disabled. ![image](https://user-images.githubusercontent.com/41351993/199423856-6d8770b2-e60f-407b-ac0e-e2a5cdd042db.png) ## Additional Context ## This issue does not reproduce for file extensions “.txt”, “.js”, “.html”, “.json”, “.avif”, “.bmp”, “.gif”, “.ico”, “.jpeg”, “.jpg”, “.svg”, “.webp”.
1.0
The 'Preview' action is disabled under the tag query mode for one blob with file extension .csv/.png - **Storage Explorer Version**: 1.27.0-dev **Build Number**: 20221102.1 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 22.04/MacOS Ventura 13.0 (Apple M1 Pro) **Architecture**: ia32/x64 **How Found**: Ad-hoc testing **Regression From**: Not a regression ## Steps to Reproduce ## 1. Expand one storage account ->Blob Containers. 2. Create a blob container -> Upload a blob with .csv file extension. 3. Right click the blob -> The action 'Preview' is enabled. 4. Add one tag for the blob -> Apply the tag to query. 5. Right click the blob under the tag query mode. 6. Check whether the action 'Preview' is enabled or not. ## Expected Experience ## The action 'Preview' is enabled. ## Actual Experience ## The action 'Preview' is disabled. ![image](https://user-images.githubusercontent.com/41351993/199423856-6d8770b2-e60f-407b-ac0e-e2a5cdd042db.png) ## Additional Context ## This issue does not reproduce for file extensions “.txt”, “.js”, “.html”, “.json”, “.avif”, “.bmp”, “.gif”, “.ico”, “.jpeg”, “.jpg”, “.svg”, “.webp”.
test
the preview action is disabled under the tag query mode for one blob with file extension csv png storage explorer version dev build number branch main platform os windows linux ubuntu macos ventura apple pro architecture how found ad hoc testing regression from not a regression steps to reproduce expand one storage account blob containers create a blob container upload a blob with csv file extension right click the blob the action preview is enabled add one tag for the blob apply the tag to query right click the blob under the tag query mode check whether the action preview is enabled or not expected experience the action preview is enabled actual experience the action preview is disabled additional context this issue does not reproduce for file extensions “ txt” “ js” “ html” “ json” “ avif” “ bmp” “ gif” “ ico” “ jpeg” “ jpg” “ svg” “ webp”
1
66,594
7,007,871,170
IssuesEvent
2017-12-19 13:57:57
chamilo/chamilo-lms
https://api.github.com/repos/chamilo/chamilo-lms
closed
Test generates a lot of errors in the end, question bug
Requires testing/validation
Taking a test by a learner generates a lot of errors also one anwsered questions are marked as correct (green) see on 11.chamilo.org Login here as: test123/test123 https://11.chamilo.org/main/exercise/exercise.php?cidReq=TEST123&id_session=0&gidReq=0&gradebook=0&origin=& ![obraz](https://user-images.githubusercontent.com/32258255/34158305-193ed918-e4c5-11e7-9e3a-6b2c913dc0b7.png)
1.0
Test generates a lot of errors in the end, question bug - Taking a test by a learner generates a lot of errors also one anwsered questions are marked as correct (green) see on 11.chamilo.org Login here as: test123/test123 https://11.chamilo.org/main/exercise/exercise.php?cidReq=TEST123&id_session=0&gidReq=0&gradebook=0&origin=& ![obraz](https://user-images.githubusercontent.com/32258255/34158305-193ed918-e4c5-11e7-9e3a-6b2c913dc0b7.png)
test
test generates a lot of errors in the end question bug taking a test by a learner generates a lot of errors also one anwsered questions are marked as correct green see on chamilo org login here as
1
210,099
16,087,046,689
IssuesEvent
2021-04-26 12:35:54
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: tpccbench/nodes=9/cpu=4/multi-region failed
C-test-failure O-roachtest O-robot branch-release-21.1 release-blocker
[(roachtest).tpccbench/nodes=9/cpu=4/multi-region failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2921836&tab=buildLog) on [release-21.1@affd857ffc05591f5898701690b8a9136859ab1b](https://github.com/cockroachdb/cockroach/commits/affd857ffc05591f5898701690b8a9136859ab1b): ``` The test failed on branch=release-21.1, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/tpccbench/nodes=9/cpu=4/multi-region/run_1 cluster.go:2220,tpcc.go:807,search.go:43,search.go:173,tpcc.go:803,tpcc.go:617,test_runner.go:767: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod stop teamcity-2921836-1619377807-44-n12cpu4-geo:1-3,5-7,9-11 returned: exit status 1 (1) /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod stop teamcity-2921836-1619377807-44-n12cpu4-geo:1-3,5-7,9-11 returned | stderr: | | stdout: | teamcity-2921836-1619377807-44-n12cpu4-geo: stopping and waiting...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... | 5: exit status 255: | I210426 01:29:33.001518 1 (gostd) cluster_synced.go:1732 [-] 1 command failed Wraps: (2) exit status 1 Error types: (1) *main.withCommandDetails (2) *exec.ExitError ``` <details><summary>More</summary><p> Artifacts: [/tpccbench/nodes=9/cpu=4/multi-region](https://teamcity.cockroachdb.com/viewLog.html?buildId=2921836&tab=artifacts#/tpccbench/nodes=9/cpu=4/multi-region) Related: - #61981 roachtest: tpccbench/nodes=9/cpu=4/multi-region failed [overload,closed ts regressing from X to Y] [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-master](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-master) - #61181 roachtest: tpccbench/nodes=9/cpu=4/multi-region failed [attempt to create load generator 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.2](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.2) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpccbench%2Fnodes%3D9%2Fcpu%3D4%2Fmulti-region.%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: tpccbench/nodes=9/cpu=4/multi-region failed - [(roachtest).tpccbench/nodes=9/cpu=4/multi-region failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2921836&tab=buildLog) on [release-21.1@affd857ffc05591f5898701690b8a9136859ab1b](https://github.com/cockroachdb/cockroach/commits/affd857ffc05591f5898701690b8a9136859ab1b): ``` The test failed on branch=release-21.1, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/tpccbench/nodes=9/cpu=4/multi-region/run_1 cluster.go:2220,tpcc.go:807,search.go:43,search.go:173,tpcc.go:803,tpcc.go:617,test_runner.go:767: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod stop teamcity-2921836-1619377807-44-n12cpu4-geo:1-3,5-7,9-11 returned: exit status 1 (1) /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod stop teamcity-2921836-1619377807-44-n12cpu4-geo:1-3,5-7,9-11 returned | stderr: | | stdout: | teamcity-2921836-1619377807-44-n12cpu4-geo: stopping and waiting...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... | 5: exit status 255: | I210426 01:29:33.001518 1 (gostd) cluster_synced.go:1732 [-] 1 command failed Wraps: (2) exit status 1 Error types: (1) *main.withCommandDetails (2) *exec.ExitError ``` <details><summary>More</summary><p> Artifacts: [/tpccbench/nodes=9/cpu=4/multi-region](https://teamcity.cockroachdb.com/viewLog.html?buildId=2921836&tab=artifacts#/tpccbench/nodes=9/cpu=4/multi-region) Related: - #61981 roachtest: tpccbench/nodes=9/cpu=4/multi-region failed [overload,closed ts regressing from X to Y] [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-master](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-master) - #61181 roachtest: tpccbench/nodes=9/cpu=4/multi-region failed [attempt to create load generator 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.2](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.2) [See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpccbench%2Fnodes%3D9%2Fcpu%3D4%2Fmulti-region.%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 tpccbench nodes cpu multi region failed on the test failed on branch release cloud gce test artifacts and logs in home agent work go src github com cockroachdb cockroach artifacts tpccbench nodes cpu multi region run cluster go tpcc go search go search go tpcc go tpcc go test runner go home agent work go src github com cockroachdb cockroach bin roachprod stop teamcity geo returned exit status home agent work go src github com cockroachdb cockroach bin roachprod stop teamcity geo returned stderr stdout teamcity geo stopping and waiting exit status gostd cluster synced go command failed wraps exit status error types main withcommanddetails exec exiterror more artifacts related roachtest tpccbench nodes cpu multi region failed roachtest tpccbench nodes cpu multi region failed powered by
1
176,931
13,670,760,329
IssuesEvent
2020-09-29 05:38:18
BRI-EES-House/heat_load_calc
https://api.github.com/repos/BRI-EES-House/heat_load_calc
closed
core test 定常状態想定での手計算との比較(steady06_透過日射)
test
# 概要 相当外気温度0℃、透過日射100W、換気なし、内部発熱なしでの室温、表面温度、表面熱流を手計算と比較する # タスク - [ ] steady01にあわせてテストコードを更新する - [ ] (ここにタスクを記す) # 参考情報 (ここに添付ファイル・画像・URL等を貼り付ける)
1.0
core test 定常状態想定での手計算との比較(steady06_透過日射) - # 概要 相当外気温度0℃、透過日射100W、換気なし、内部発熱なしでの室温、表面温度、表面熱流を手計算と比較する # タスク - [ ] steady01にあわせてテストコードを更新する - [ ] (ここにタスクを記す) # 参考情報 (ここに添付ファイル・画像・URL等を貼り付ける)
test
core test 定常状態想定での手計算との比較( 透過日射) 概要 ℃、 、換気なし、内部発熱なしでの室温、表面温度、表面熱流を手計算と比較する タスク (ここにタスクを記す) 参考情報 (ここに添付ファイル・画像・url等を貼り付ける)
1
784,869
27,587,607,986
IssuesEvent
2023-03-08 21:07:41
orbeon/orbeon-forms
https://api.github.com/repos/orbeon/orbeon-forms
closed
Outside of Form Runner, `fr:number` not initialized, not storing new value in data
Priority: Regression Area: XBL Components
With the example below, the field shows empty when the form is loaded, and changing the value of the field doesn't updated the data. [+1 from user](https://groups.google.com/g/orbeon/c/Ex880YIuZxA) ```xml <xh:html xmlns:xh="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:xxf="http://orbeon.org/oxf/xml/xforms" xmlns:fr="http://orbeon.org/oxf/xml/form-runner"> <xh:head> <xf:model xxf:function-library="org.orbeon.oxf.fr.library.FormRunnerFunctionLibrary"> <xf:instance> <_>42</_> </xf:instance> </xf:model> </xh:head> <xh:body> <fr:number ref="."> <xf:label>fr:number:</xf:label> </fr:number> <xf:output value="."> <xf:label>Value in data:</xf:label> </xf:output> </xh:body> </xh:html> ```
1.0
Outside of Form Runner, `fr:number` not initialized, not storing new value in data - With the example below, the field shows empty when the form is loaded, and changing the value of the field doesn't updated the data. [+1 from user](https://groups.google.com/g/orbeon/c/Ex880YIuZxA) ```xml <xh:html xmlns:xh="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:xxf="http://orbeon.org/oxf/xml/xforms" xmlns:fr="http://orbeon.org/oxf/xml/form-runner"> <xh:head> <xf:model xxf:function-library="org.orbeon.oxf.fr.library.FormRunnerFunctionLibrary"> <xf:instance> <_>42</_> </xf:instance> </xf:model> </xh:head> <xh:body> <fr:number ref="."> <xf:label>fr:number:</xf:label> </fr:number> <xf:output value="."> <xf:label>Value in data:</xf:label> </xf:output> </xh:body> </xh:html> ```
non_test
outside of form runner fr number not initialized not storing new value in data with the example below the field shows empty when the form is loaded and changing the value of the field doesn t updated the data xml xh html xmlns xh xmlns xf xmlns xxf xmlns fr fr number value in data
0
9,724
3,963,992,951
IssuesEvent
2016-05-02 22:32:10
teotidev/guide
https://api.github.com/repos/teotidev/guide
closed
Export - as Sounds
code work
- checkbox list holding machines - TextInput for prefix on file names ([TemplateName] for default) - TextInput for postfix on file names ("" for default) - screen footer action items - Select All, Deselect All, Export Figure out away to let the user edit individual machine names as well. Plus, there is going to have to be a metadata editor that can edit the individual machine metadata to allow for pro kits exported this way
1.0
Export - as Sounds - - checkbox list holding machines - TextInput for prefix on file names ([TemplateName] for default) - TextInput for postfix on file names ("" for default) - screen footer action items - Select All, Deselect All, Export Figure out away to let the user edit individual machine names as well. Plus, there is going to have to be a metadata editor that can edit the individual machine metadata to allow for pro kits exported this way
non_test
export as sounds checkbox list holding machines textinput for prefix on file names for default textinput for postfix on file names for default screen footer action items select all deselect all export figure out away to let the user edit individual machine names as well plus there is going to have to be a metadata editor that can edit the individual machine metadata to allow for pro kits exported this way
0
193,298
14,648,104,017
IssuesEvent
2020-12-27 00:16:45
github-vet/rangeloop-pointer-findings
https://api.github.com/repos/github-vet/rangeloop-pointer-findings
closed
evanlinjin/kittiverse: vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go; 3 LoC
fresh test tiny vendored
Found a possible issue in [evanlinjin/kittiverse](https://www.github.com/evanlinjin/kittiverse) at [vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go](https://github.com/evanlinjin/kittiverse/blob/7ec50e22291d77a08c265c4347f7058c62ecd5a7/vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go#L87-L89) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > [Click here to see the code in its original context.](https://github.com/evanlinjin/kittiverse/blob/7ec50e22291d77a08c265c4347f7058c62ecd5a7/vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go#L87-L89) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for _, tx := range txs[:2] { require.Nil(t, txsBkt.Add(&tx)) } ``` </details> <details> <summary>Click here to show extra information the analyzer produced.</summary> ``` No path was found through the callgraph that could lead to a function which writes a pointer argument. No path was found through the callgraph that could lead to a function which passes a pointer to third-party code. root signature {Add 1} was not found in the callgraph; reference was passed directly to third-party code ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 7ec50e22291d77a08c265c4347f7058c62ecd5a7
1.0
evanlinjin/kittiverse: vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go; 3 LoC - Found a possible issue in [evanlinjin/kittiverse](https://www.github.com/evanlinjin/kittiverse) at [vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go](https://github.com/evanlinjin/kittiverse/blob/7ec50e22291d77a08c265c4347f7058c62ecd5a7/vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go#L87-L89) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > [Click here to see the code in its original context.](https://github.com/evanlinjin/kittiverse/blob/7ec50e22291d77a08c265c4347f7058c62ecd5a7/vendor/github.com/skycoin/skycoin/src/visor/historydb/transaction_test.go#L87-L89) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for _, tx := range txs[:2] { require.Nil(t, txsBkt.Add(&tx)) } ``` </details> <details> <summary>Click here to show extra information the analyzer produced.</summary> ``` No path was found through the callgraph that could lead to a function which writes a pointer argument. No path was found through the callgraph that could lead to a function which passes a pointer to third-party code. root signature {Add 1} was not found in the callgraph; reference was passed directly to third-party code ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 7ec50e22291d77a08c265c4347f7058c62ecd5a7
test
evanlinjin kittiverse vendor github com skycoin skycoin src visor historydb transaction test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message click here to show the line s of go which triggered the analyzer go for tx range txs require nil t txsbkt add tx click here to show extra information the analyzer produced no path was found through the callgraph that could lead to a function which writes a pointer argument no path was found through the callgraph that could lead to a function which passes a pointer to third party code root signature add was not found in the callgraph reference was passed directly to third party code leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
335,387
30,026,894,849
IssuesEvent
2023-06-27 06:56:16
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
opened
Fix paddle_tensor.test_paddle_isfinite
Sub Task Failing Test Paddle Frontend
| | | |---|---| |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="null"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a>
1.0
Fix paddle_tensor.test_paddle_isfinite - | | | |---|---| |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="null"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5373533173/jobs/9748005115"><img src=https://img.shields.io/badge/-success-success></a>
test
fix paddle tensor test paddle isfinite paddle a href src tensorflow a href src numpy img src torch a href src jax a href src
1
187,299
15,096,091,561
IssuesEvent
2021-02-07 13:47:23
bottomless-archive-project/library-of-alexandria
https://api.github.com/repos/bottomless-archive-project/library-of-alexandria
closed
The documentation still mentions Java 14 while the requirement is Java 15
bug documentation
The documentation still mentions Java 14 while the requirement is Java 15.
1.0
The documentation still mentions Java 14 while the requirement is Java 15 - The documentation still mentions Java 14 while the requirement is Java 15.
non_test
the documentation still mentions java while the requirement is java the documentation still mentions java while the requirement is java
0
316,681
23,643,234,967
IssuesEvent
2022-08-25 19:12:08
TomerPacific/ProjectChecker
https://api.github.com/repos/TomerPacific/ProjectChecker
opened
Replacement For Heroku
documentation
At the end November 2022, Heroku will stop it's free plan. Find an alternative to host the server for this project. Alternatives: - [Render](https://render.com/docs/free) - [Google App Engine](https://cloud.google.com/appengine) - [Netlify](https://www.netlify.com/)
1.0
Replacement For Heroku - At the end November 2022, Heroku will stop it's free plan. Find an alternative to host the server for this project. Alternatives: - [Render](https://render.com/docs/free) - [Google App Engine](https://cloud.google.com/appengine) - [Netlify](https://www.netlify.com/)
non_test
replacement for heroku at the end november heroku will stop it s free plan find an alternative to host the server for this project alternatives
0
9,864
3,075,793,692
IssuesEvent
2015-08-20 15:16:33
webcompat/webcompat.com
https://api.github.com/repos/webcompat/webcompat.com
closed
[http] JSON errors for APIs communications
bug good-first-patch in progress needs-test site-development
Tested locally. ``` → http GET http://localhost:5000/api/issues/100/labels 'Accept: application/json' ``` When doing this call, we receive in return a `404 Not Found`, which is fine except for the body which is a full HTML file. Unnecessary bytes on the wire. We might want to send either nothing in the body `Content-Length: 0` or a very simple JSON body explaining the error.
1.0
[http] JSON errors for APIs communications - Tested locally. ``` → http GET http://localhost:5000/api/issues/100/labels 'Accept: application/json' ``` When doing this call, we receive in return a `404 Not Found`, which is fine except for the body which is a full HTML file. Unnecessary bytes on the wire. We might want to send either nothing in the body `Content-Length: 0` or a very simple JSON body explaining the error.
test
json errors for apis communications tested locally → http get accept application json when doing this call we receive in return a not found which is fine except for the body which is a full html file unnecessary bytes on the wire we might want to send either nothing in the body content length or a very simple json body explaining the error
1
38,124
5,166,848,824
IssuesEvent
2017-01-17 17:12:15
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
github.com/cockroachdb/cockroach/pkg/storage: TestRefreshPendingCommands/#01 failed under stress
Robot test-failure
SHA: https://github.com/cockroachdb/cockroach/commits/ffc0c336351e06b68e7982b5ac6008ba75aa0a66 Parameters: ``` COCKROACH_PROPOSER_EVALUATED_KV=false TAGS=deadlock GOFLAGS= ``` Stress build found a failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=120283&tab=buildLog ``` soon.go:43: storage/client_test.go:885, condition failed to evaluate within 45s: node not live client_test.go:351: timed out during shutdown ```
1.0
github.com/cockroachdb/cockroach/pkg/storage: TestRefreshPendingCommands/#01 failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/ffc0c336351e06b68e7982b5ac6008ba75aa0a66 Parameters: ``` COCKROACH_PROPOSER_EVALUATED_KV=false TAGS=deadlock GOFLAGS= ``` Stress build found a failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=120283&tab=buildLog ``` soon.go:43: storage/client_test.go:885, condition failed to evaluate within 45s: node not live client_test.go:351: timed out during shutdown ```
test
github com cockroachdb cockroach pkg storage testrefreshpendingcommands failed under stress sha parameters cockroach proposer evaluated kv false tags deadlock goflags stress build found a failed test soon go storage client test go condition failed to evaluate within node not live client test go timed out during shutdown
1
239,720
19,911,112,898
IssuesEvent
2022-01-25 17:14:57
rstudio/rstudio
https://api.github.com/repos/rstudio/rstudio
closed
Default datum in R markdown template as ISO
enhancement r markdown test good first issue
When a R markdown document is created, header of the .Rmd file includes a `date` field. For example: ``` --- title: "Untitled" author: "Roman Luštrik" date: "11/29/2021" output: html_document --- ``` Would it be possible to have this date in ISO format, i.e. `2021-11-29` by default?
1.0
Default datum in R markdown template as ISO - When a R markdown document is created, header of the .Rmd file includes a `date` field. For example: ``` --- title: "Untitled" author: "Roman Luštrik" date: "11/29/2021" output: html_document --- ``` Would it be possible to have this date in ISO format, i.e. `2021-11-29` by default?
test
default datum in r markdown template as iso when a r markdown document is created header of the rmd file includes a date field for example title untitled author roman luštrik date output html document would it be possible to have this date in iso format i e by default
1
158,073
12,401,466,976
IssuesEvent
2020-05-21 09:55:52
markpolyak/lab-grader
https://api.github.com/repos/markpolyak/lab-grader
opened
Prepare a test environment
testing
Create new Google & GitHub accounts for test purposes. Set up integration (API keys) with lab-grader. Travis CI & AppVeyor access will be through GitHub account. Open question: how to store API keys & credentials in a public repository?
1.0
Prepare a test environment - Create new Google & GitHub accounts for test purposes. Set up integration (API keys) with lab-grader. Travis CI & AppVeyor access will be through GitHub account. Open question: how to store API keys & credentials in a public repository?
test
prepare a test environment create new google github accounts for test purposes set up integration api keys with lab grader travis ci appveyor access will be through github account open question how to store api keys credentials in a public repository
1
154,978
12,235,369,432
IssuesEvent
2020-05-04 14:47:44
IBM/kui
https://api.github.com/repos/IBM/kui
closed
pty-copy-paste test is unstable on linux
tests
after hitting escape, it looks for an empty string in the vim status line. but on linux, vim may have other information, such as the line and column number, in the status line -- even when not in INSERT mode.
1.0
pty-copy-paste test is unstable on linux - after hitting escape, it looks for an empty string in the vim status line. but on linux, vim may have other information, such as the line and column number, in the status line -- even when not in INSERT mode.
test
pty copy paste test is unstable on linux after hitting escape it looks for an empty string in the vim status line but on linux vim may have other information such as the line and column number in the status line even when not in insert mode
1
16,822
2,948,317,412
IssuesEvent
2015-07-06 01:25:22
Winetricks/winetricks
https://api.github.com/repos/Winetricks/winetricks
closed
the dot net runtime optimization is started and pause when install dot net frame work 3.5
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1.Use Wine to install dot net framework 3.5 2.Setup error with message: the dot net runtime optimization is started and pause What version of the product are you using? On what operating system? I'm using Wine 1.4 on Ubuntu 12.04 Pls help me to fix this error. ``` Original issue reported on code.google.com by `quangnn...@gmail.com` on 12 Oct 2012 at 10:34
1.0
the dot net runtime optimization is started and pause when install dot net frame work 3.5 - ``` What steps will reproduce the problem? 1.Use Wine to install dot net framework 3.5 2.Setup error with message: the dot net runtime optimization is started and pause What version of the product are you using? On what operating system? I'm using Wine 1.4 on Ubuntu 12.04 Pls help me to fix this error. ``` Original issue reported on code.google.com by `quangnn...@gmail.com` on 12 Oct 2012 at 10:34
non_test
the dot net runtime optimization is started and pause when install dot net frame work what steps will reproduce the problem use wine to install dot net framework setup error with message the dot net runtime optimization is started and pause what version of the product are you using on what operating system i m using wine on ubuntu pls help me to fix this error original issue reported on code google com by quangnn gmail com on oct at
0
817,427
30,640,747,814
IssuesEvent
2023-07-24 21:44:06
elastic/security-docs
https://api.github.com/repos/elastic/security-docs
closed
Interactive investigation guides enhancements in 8.9
Team: Threat Hunting v8.9.0 Priority: Medium Effort: Small
Document the latest enhancements or changes to the interactive investigation guides feature (ongoing work done in 8.6 with https://github.com/elastic/security-docs/issues/2696 and in 8.7 with https://github.com/elastic/security-docs/issues/2955). Also, the interactive investigation guide feature is set to go GA in the future, and will probably have some licensing/subscription requirements. Exact release TBA. Related: - https://github.com/elastic/kibana/issues/153377 From issue description: > Scope of this feature will now include 3 parts: > 1. hardening of the rendered button, so that we optimistically use fields from old versions with sensible defaults, > 2. ability to delete timeline notes so in the event that invalid markdown is saved as a note, it can be removed by users > 3. wrapping the markdown renderer in a React ErrorBoundary, to prevent any rendering exceptions and also display any relevant parsing errors to the user. - Epic: https://github.com/elastic/security-team/issues/4824 ## To Do - [x] Add info on backwards compatibility, any other new developments - [x] Update screenshot with new icon in editor - [x] Remove "technical preview" badge from screenshots - [x] Relocate page out of [Technical preview](https://www.elastic.co/guide/en/security/master/sec-experimental-intro.html) section
1.0
Interactive investigation guides enhancements in 8.9 - Document the latest enhancements or changes to the interactive investigation guides feature (ongoing work done in 8.6 with https://github.com/elastic/security-docs/issues/2696 and in 8.7 with https://github.com/elastic/security-docs/issues/2955). Also, the interactive investigation guide feature is set to go GA in the future, and will probably have some licensing/subscription requirements. Exact release TBA. Related: - https://github.com/elastic/kibana/issues/153377 From issue description: > Scope of this feature will now include 3 parts: > 1. hardening of the rendered button, so that we optimistically use fields from old versions with sensible defaults, > 2. ability to delete timeline notes so in the event that invalid markdown is saved as a note, it can be removed by users > 3. wrapping the markdown renderer in a React ErrorBoundary, to prevent any rendering exceptions and also display any relevant parsing errors to the user. - Epic: https://github.com/elastic/security-team/issues/4824 ## To Do - [x] Add info on backwards compatibility, any other new developments - [x] Update screenshot with new icon in editor - [x] Remove "technical preview" badge from screenshots - [x] Relocate page out of [Technical preview](https://www.elastic.co/guide/en/security/master/sec-experimental-intro.html) section
non_test
interactive investigation guides enhancements in document the latest enhancements or changes to the interactive investigation guides feature ongoing work done in with and in with also the interactive investigation guide feature is set to go ga in the future and will probably have some licensing subscription requirements exact release tba related from issue description scope of this feature will now include parts hardening of the rendered button so that we optimistically use fields from old versions with sensible defaults ability to delete timeline notes so in the event that invalid markdown is saved as a note it can be removed by users wrapping the markdown renderer in a react errorboundary to prevent any rendering exceptions and also display any relevant parsing errors to the user epic to do add info on backwards compatibility any other new developments update screenshot with new icon in editor remove technical preview badge from screenshots relocate page out of section
0
71,956
8,692,366,656
IssuesEvent
2018-12-04 06:00:21
Microsoft/vscode
https://api.github.com/repos/Microsoft/vscode
closed
"Source" line in a notification can get truncated down to "Sour..."
*as-designed
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> The "Source:" section of a notification is can get heavily truncated, to the point that it says "Sour.." which at that point is obstructing what the text is representing. ![image](https://user-images.githubusercontent.com/54418/47325618-91983d00-d619-11e8-9f36-4cd580baed5d.png) Not sure if there is much to do here, but it is a slight usability issue as I was demoing this feature to a PM and they asked "what's sour?" <!-- Use Help > Report Issue to prefill these. --> Version: 1.29.0-insider (user setup) Commit: 4d9f1d23a556dccd2c0fd5203923a24b21e41209 Date: 2018-10-22T05:18:34.128Z Electron: 2.0.11 Chrome: 61.0.3163.100 Node.js: 8.9.3 V8: 6.1.534.41 Architecture: x64 - OS Version: Windows 10 Steps to Reproduce: 1. Have PowerShell set as your terminal 1. Create a conda environment 1. Launch the Python extension for VS Code 1. Open a fresh terminal which will trigger the notification <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes
1.0
"Source" line in a notification can get truncated down to "Sour..." - <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> The "Source:" section of a notification is can get heavily truncated, to the point that it says "Sour.." which at that point is obstructing what the text is representing. ![image](https://user-images.githubusercontent.com/54418/47325618-91983d00-d619-11e8-9f36-4cd580baed5d.png) Not sure if there is much to do here, but it is a slight usability issue as I was demoing this feature to a PM and they asked "what's sour?" <!-- Use Help > Report Issue to prefill these. --> Version: 1.29.0-insider (user setup) Commit: 4d9f1d23a556dccd2c0fd5203923a24b21e41209 Date: 2018-10-22T05:18:34.128Z Electron: 2.0.11 Chrome: 61.0.3163.100 Node.js: 8.9.3 V8: 6.1.534.41 Architecture: x64 - OS Version: Windows 10 Steps to Reproduce: 1. Have PowerShell set as your terminal 1. Create a conda environment 1. Launch the Python extension for VS Code 1. Open a fresh terminal which will trigger the notification <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes
non_test
source line in a notification can get truncated down to sour the source section of a notification is can get heavily truncated to the point that it says sour which at that point is obstructing what the text is representing not sure if there is much to do here but it is a slight usability issue as i was demoing this feature to a pm and they asked what s sour report issue to prefill these version insider user setup commit date electron chrome node js architecture os version windows steps to reproduce have powershell set as your terminal create a conda environment launch the python extension for vs code open a fresh terminal which will trigger the notification does this issue occur when all extensions are disabled yes
0
25,199
12,228,040,646
IssuesEvent
2020-05-03 17:42:39
terraform-providers/terraform-provider-aws
https://api.github.com/repos/terraform-providers/terraform-provider-aws
closed
Terraform plans for additional resources with unchanged developer provided configuration.
bug service/ecs stale upstream-terraform
_This issue was originally opened by @spy-tech as hashicorp/terraform#11596. It was migrated here as part of the [provider split](https://www.hashicorp.com/blog/upcoming-provider-changes-in-terraform-0-10/). The original body of the issue is below._ <hr> The below might be a lot to swallow. I am applying the exact same configuration twice, but Terraform claims two times that it plans to add an additional resource. According to the semantics of Terraform, this should be impossible. That is, search for `Apply complete! Resources: 1 added, 0 changed, 0 destroyed.` in the below output. The only correct output would have been one run in which one resource was added and another in which nothing needed to be done, both with green output. I would not be surprised if this is due to the new `distinctInstances` feature. ``` -/+ aws_ecs_service.whatever cluster: "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" => "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "200" => "200" deployment_minimum_healthy_percent: "50" => "50" desired_count: "0" => "2" iam_role: "arn:aws:iam::100000000000:role/ecsServiceRole-test" => "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "1" => "1" load_balancer.2144512820.container_name: "foobar_container-test" => "foobar_container-test" load_balancer.2144512820.container_port: "80" => "80" load_balancer.2144512820.elb_name: "" => "" load_balancer.2144512820.target_group_arn: "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" => "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "foobar-service-tf-test" => "foobar-service-tf-test" placement_constraints.#: "0" => "1" (forces new resource) placement_constraints.2067840941.expression: "" => "" placement_constraints.2067840941.type: "" => "distinctInstance" (forces new resource) task_definition: "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" => "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" Plan: 1 to add, 0 to change, 1 to destroy. This plan was generated by Terraform v0.9.0-dev (bd5a5b0b2983de2b1b2c6c2c9d3faf4cf6c80a3d)+ /terraform/terraform/bin/terraform apply -parallelism=50 /terraform/terraform/test/plan-for-environment-test aws_ecs_service.whatever: Creating... cluster: "" => "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "" => "200" deployment_minimum_healthy_percent: "" => "50" desired_count: "" => "2" iam_role: "" => "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "" => "1" load_balancer.2144512820.container_name: "" => "foobar_container-test" load_balancer.2144512820.container_port: "" => "80" load_balancer.2144512820.elb_name: "" => "" load_balancer.2144512820.target_group_arn: "" => "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "" => "foobar-service-tf-test" placement_constraints.#: "" => "1" placement_constraints.2067840941.expression: "" => "" placement_constraints.2067840941.type: "" => "distinctInstance" task_definition: "" => "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" aws_ecs_service.whatever: Still creating... (10s elapsed) aws_ecs_service.whatever: Still creating... (20s elapsed) aws_ecs_service.whatever: Still creating... (30s elapsed) aws_ecs_service.whatever: Still creating... (40s elapsed) aws_ecs_service.whatever: Still creating... (50s elapsed) aws_ecs_service.whatever: Still creating... (1m0s elapsed) aws_ecs_service.whatever: Still creating... (1m10s elapsed) aws_ecs_service.whatever: Still creating... (1m20s elapsed) aws_ecs_service.whatever: Still creating... (1m30s elapsed) aws_ecs_service.whatever: Still creating... (1m40s elapsed) aws_ecs_service.whatever: Creation complete aws_ecs_service.whatever (deposed #0): Destroying... aws_ecs_service.whatever (deposed #0): Destruction complete Apply complete! Resources: 1 added, 0 changed, 1 destroyed. The state of your infrastructure has been saved to the path below. This state is required to modify and destroy your infrastructure, so keep it safe. To inspect the complete state use the `terraform show` command. State path: terraform.tfstate $ ./deploy-test Refreshing Terraform state in-memory prior to plan... aws_ecs_task_definition.omg-task-test: Refreshing state... (ID: omg-task-test) aws_iam_policy.S3MyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/S3MyAccess_mine-test) aws_kinesis_stream.whatever-janestream: Refreshing state... (ID: arn:aws:kinesis:eu-west-1:100000000000:stream/whatever-janestream-test) aws_iam_role.ecsInstanceRole: Refreshing state... (ID: ecsInstanceRole-test) aws_ecs_task_definition.ct-test: Refreshing state... (ID: ct-test) aws_vpc.whatever: Refreshing state... (ID: vpc-5dcc8439) aws_eip.nat.0: Refreshing state... (ID: eipalloc-f0a69194) aws_iam_policy.kinesis: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonKinesisAnalyticsMyAccess-test) aws_iam_policy.alb_register_deregister: Refreshing state... (ID: arn:aws:iam::100000000000:policy/alb_register_deregister-test) aws_iam_policy.container_service_for_ec2_role: Refreshing state... (ID: arn:aws:iam::100000000000:policy/container_service_for_ec2_role-test) aws_iam_policy.CloudWatchMyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/CloudWatchMyAccess_mine-test) aws_dynamodb_table.whatever-wowa-queue-state: Refreshing state... (ID: SSSS-whatever-wanadu-stream-test) data.aws_availability_zones.available: Refreshing state... aws_iam_policy.AmazonEC2ContainerServiceMyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonEC2ContainerServiceMyAccess_mine-test) aws_eip.nat.1: Refreshing state... (ID: eipalloc-9ab98efe) aws_key_pair.whatever-test: Refreshing state... (ID: whatever-test) aws_iam_policy.AmazonEC2ContainerServiceRole_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonEC2ContainerServiceRole_mine-test) aws_kinesis_stream.whatever-wanadu-stream: Refreshing state... (ID: arn:aws:kinesis:eu-west-1:100000000000:stream/whatever-wanadu-stream-test) aws_iam_role.ecsServiceRole: Refreshing state... (ID: ecsServiceRole-test) aws_iam_policy.AmazonDynamoDBMyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonDynamoDBMyAccess_mine-test) aws_kinesis_stream.whatever-s3-process-bob-stream: Refreshing state... (ID: arn:aws:kinesis:eu-west-1:100000000000:stream/whatever-s3-process-bob-stream-test) data.aws_ecs_container_definition.ecs-whatever: Refreshing state... aws_ecs_task_definition.wowa-task-test: Refreshing state... (ID: wowa-task-test) aws_iam_policy_attachment.kinesis: Refreshing state... (ID: kinesis-test) aws_iam_instance_profile.ecsInstanceRole: Refreshing state... (ID: ecsInstanceRole-test) aws_iam_policy_attachment.CloudWatchMyAccess_mine: Refreshing state... (ID: CloudWatchMyAccess_mine-test) aws_iam_policy_attachment.AmazonEC2ContainerServiceMyAccess_mine: Refreshing state... (ID: AmazonEC2ContainerServiceMyAccess_mine-test) aws_iam_policy_attachment.alb_register_deregister: Refreshing state... (ID: alb_register_deregister-test) aws_iam_policy_attachment.container_service_for_ec2_role: Refreshing state... (ID: container_service_for_ec2_role-test) aws_iam_instance_profile.ecsServiceRole: Refreshing state... (ID: ecsServiceRole-test) aws_iam_role_policy.ecsServiceRolePolicy: Refreshing state... (ID: ecsServiceRole-test:ecsServiceRolePolicy-test) aws_iam_policy_attachment.S3MyAccess_mine: Refreshing state... (ID: S3MyAccess_mine-test) aws_iam_policy_attachment.AmazonEC2ContainerServiceRole_mine: Refreshing state... (ID: AmazonEC2ContainerServiceRole_mine-test) aws_security_group.ecs_node: Refreshing state... (ID: sg-eabdd88c) aws_internet_gateway.whatever: Refreshing state... (ID: igw-1f8c437b) aws_security_group.castle: Refreshing state... (ID: sg-ebbdd88d) aws_subnet.public.0: Refreshing state... (ID: subnet-a25a3afa) aws_subnet.public.1: Refreshing state... (ID: subnet-9dac8bf9) aws_subnet.private.1: Refreshing state... (ID: subnet-9eac8bfa) aws_subnet.private.0: Refreshing state... (ID: subnet-bc5a3ae4) aws_security_group.load_balancer: Refreshing state... (ID: sg-e8bdd88e) aws_iam_policy_attachment.AmazonDynamoDBMyAccess_mine: Refreshing state... (ID: AmazonDynamoDBMyAccess_mine-test) aws_route_table.public: Refreshing state... (ID: rtb-8d4f54e9) aws_security_group.allow_access_from_castle: Refreshing state... (ID: sg-bbbdd8dd) aws_instance.castle: Refreshing state... (ID: i-04b2264b56a1c8c55) aws_nat_gateway.nat.0: Refreshing state... (ID: nat-0e14574959f44f541) aws_security_group.nat.1: Refreshing state... (ID: sg-abbdd8cd) aws_nat_gateway.nat.1: Refreshing state... (ID: nat-05dc0ac6ad30eebd5) aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-31df9156) aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-30df9157) aws_security_group.nat.0: Refreshing state... (ID: sg-aabdd8cc) aws_alb.foobar: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:loadbalancer/app/foobar-alb-test/057bf288e01ce3d1) aws_route_table.private.1: Refreshing state... (ID: rtb-054e5561) aws_route_table.private.0: Refreshing state... (ID: rtb-044e5560) aws_ecs_cluster.whatever: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test) aws_launch_configuration.ecs: Refreshing state... (ID: ecs-test-003f2fe63849114786555a343f) aws_ecs_service.whatever-wowa-queue: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:service/whatever-wowa-queue-test) aws_launch_configuration.ecs-wow: Refreshing state... (ID: ecs-wow-test-003f2fe63849114786555a343e) aws_ecs_service.whatever-omg: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:service/whatever-omg-test) aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-8fdf91e8) aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-8edf91e9) aws_autoscaling_group.ecs-wow: Refreshing state... (ID: ecs-asg-wow-test-ecs-wow-test-003f2fe63849114786555a343e) aws_alb_target_group.foobar: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f) aws_route53_record.whatever: Refreshing state... (ID: Z1234512345123_whatever-test.test.example.com_A) aws_alb_listener.foobar_https: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:listener/app/foobar-alb-test/057bf288e01ce3d1/2c6779d6f5819d72) aws_ecs_service.whatever: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:service/foobar-service-tf-test) aws_alb_listener.foobar_http: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:listener/app/foobar-alb-test/057bf288e01ce3d1/fc70486d9bdb982b) aws_autoscaling_group.ecs: Refreshing state... (ID: ecs-asg-test-ecs-test-003f2fe63849114786555a343f) The Terraform execution plan has been generated and is shown below. Resources are shown in alphabetical order for quick scanning. Green resources will be created (or destroyed and then created if an existing resource exists), yellow resources are being changed in-place, and red resources will be destroyed. Cyan entries are data sources to be read. Your plan was also saved to the path below. Call the "apply" subcommand with this plan file and Terraform will exactly execute this execution plan. Path: /terraform/terraform/test/plan-for-environment-test cluster: "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "200" deployment_minimum_healthy_percent: "50" desired_count: "2" iam_role: "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "1" load_balancer.2144512820.container_name: "foobar_container-test" load_balancer.2144512820.container_port: "80" load_balancer.2144512820.elb_name: "" load_balancer.2144512820.target_group_arn: "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "foobar-service-tf-test" placement_constraints.#: "1" placement_constraints.2067840941.expression: "" placement_constraints.2067840941.type: "distinctInstance" task_definition: "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" Plan: 1 to add, 0 to change, 0 to destroy. This plan was generated by Terraform v0.9.0-dev (bd5a5b0b2983de2b1b2c6c2c9d3faf4cf6c80a3d)+ /terraform/terraform/bin/terraform apply -parallelism=50 /terraform/terraform/test/plan-for-environment-test aws_ecs_service.whatever: Creating... cluster: "" => "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "" => "200" deployment_minimum_healthy_percent: "" => "50" desired_count: "" => "2" iam_role: "" => "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "" => "1" load_balancer.2144512820.container_name: "" => "foobar_container-test" load_balancer.2144512820.container_port: "" => "80" load_balancer.2144512820.elb_name: "" => "" load_balancer.2144512820.target_group_arn: "" => "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "" => "foobar-service-tf-test" placement_constraints.#: "" => "1" placement_constraints.2067840941.expression: "" => "" placement_constraints.2067840941.type: "" => "distinctInstance" task_definition: "" => "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" aws_ecs_service.whatever: Creation complete Apply complete! Resources: 1 added, 0 changed, 0 destroyed. The state of your infrastructure has been saved to the path below. This state is required to modify and destroy your infrastructure, so keep it safe. To inspect the complete state use the `terraform show` command. State path: terraform.tfstate ```
1.0
Terraform plans for additional resources with unchanged developer provided configuration. - _This issue was originally opened by @spy-tech as hashicorp/terraform#11596. It was migrated here as part of the [provider split](https://www.hashicorp.com/blog/upcoming-provider-changes-in-terraform-0-10/). The original body of the issue is below._ <hr> The below might be a lot to swallow. I am applying the exact same configuration twice, but Terraform claims two times that it plans to add an additional resource. According to the semantics of Terraform, this should be impossible. That is, search for `Apply complete! Resources: 1 added, 0 changed, 0 destroyed.` in the below output. The only correct output would have been one run in which one resource was added and another in which nothing needed to be done, both with green output. I would not be surprised if this is due to the new `distinctInstances` feature. ``` -/+ aws_ecs_service.whatever cluster: "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" => "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "200" => "200" deployment_minimum_healthy_percent: "50" => "50" desired_count: "0" => "2" iam_role: "arn:aws:iam::100000000000:role/ecsServiceRole-test" => "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "1" => "1" load_balancer.2144512820.container_name: "foobar_container-test" => "foobar_container-test" load_balancer.2144512820.container_port: "80" => "80" load_balancer.2144512820.elb_name: "" => "" load_balancer.2144512820.target_group_arn: "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" => "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "foobar-service-tf-test" => "foobar-service-tf-test" placement_constraints.#: "0" => "1" (forces new resource) placement_constraints.2067840941.expression: "" => "" placement_constraints.2067840941.type: "" => "distinctInstance" (forces new resource) task_definition: "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" => "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" Plan: 1 to add, 0 to change, 1 to destroy. This plan was generated by Terraform v0.9.0-dev (bd5a5b0b2983de2b1b2c6c2c9d3faf4cf6c80a3d)+ /terraform/terraform/bin/terraform apply -parallelism=50 /terraform/terraform/test/plan-for-environment-test aws_ecs_service.whatever: Creating... cluster: "" => "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "" => "200" deployment_minimum_healthy_percent: "" => "50" desired_count: "" => "2" iam_role: "" => "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "" => "1" load_balancer.2144512820.container_name: "" => "foobar_container-test" load_balancer.2144512820.container_port: "" => "80" load_balancer.2144512820.elb_name: "" => "" load_balancer.2144512820.target_group_arn: "" => "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "" => "foobar-service-tf-test" placement_constraints.#: "" => "1" placement_constraints.2067840941.expression: "" => "" placement_constraints.2067840941.type: "" => "distinctInstance" task_definition: "" => "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" aws_ecs_service.whatever: Still creating... (10s elapsed) aws_ecs_service.whatever: Still creating... (20s elapsed) aws_ecs_service.whatever: Still creating... (30s elapsed) aws_ecs_service.whatever: Still creating... (40s elapsed) aws_ecs_service.whatever: Still creating... (50s elapsed) aws_ecs_service.whatever: Still creating... (1m0s elapsed) aws_ecs_service.whatever: Still creating... (1m10s elapsed) aws_ecs_service.whatever: Still creating... (1m20s elapsed) aws_ecs_service.whatever: Still creating... (1m30s elapsed) aws_ecs_service.whatever: Still creating... (1m40s elapsed) aws_ecs_service.whatever: Creation complete aws_ecs_service.whatever (deposed #0): Destroying... aws_ecs_service.whatever (deposed #0): Destruction complete Apply complete! Resources: 1 added, 0 changed, 1 destroyed. The state of your infrastructure has been saved to the path below. This state is required to modify and destroy your infrastructure, so keep it safe. To inspect the complete state use the `terraform show` command. State path: terraform.tfstate $ ./deploy-test Refreshing Terraform state in-memory prior to plan... aws_ecs_task_definition.omg-task-test: Refreshing state... (ID: omg-task-test) aws_iam_policy.S3MyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/S3MyAccess_mine-test) aws_kinesis_stream.whatever-janestream: Refreshing state... (ID: arn:aws:kinesis:eu-west-1:100000000000:stream/whatever-janestream-test) aws_iam_role.ecsInstanceRole: Refreshing state... (ID: ecsInstanceRole-test) aws_ecs_task_definition.ct-test: Refreshing state... (ID: ct-test) aws_vpc.whatever: Refreshing state... (ID: vpc-5dcc8439) aws_eip.nat.0: Refreshing state... (ID: eipalloc-f0a69194) aws_iam_policy.kinesis: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonKinesisAnalyticsMyAccess-test) aws_iam_policy.alb_register_deregister: Refreshing state... (ID: arn:aws:iam::100000000000:policy/alb_register_deregister-test) aws_iam_policy.container_service_for_ec2_role: Refreshing state... (ID: arn:aws:iam::100000000000:policy/container_service_for_ec2_role-test) aws_iam_policy.CloudWatchMyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/CloudWatchMyAccess_mine-test) aws_dynamodb_table.whatever-wowa-queue-state: Refreshing state... (ID: SSSS-whatever-wanadu-stream-test) data.aws_availability_zones.available: Refreshing state... aws_iam_policy.AmazonEC2ContainerServiceMyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonEC2ContainerServiceMyAccess_mine-test) aws_eip.nat.1: Refreshing state... (ID: eipalloc-9ab98efe) aws_key_pair.whatever-test: Refreshing state... (ID: whatever-test) aws_iam_policy.AmazonEC2ContainerServiceRole_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonEC2ContainerServiceRole_mine-test) aws_kinesis_stream.whatever-wanadu-stream: Refreshing state... (ID: arn:aws:kinesis:eu-west-1:100000000000:stream/whatever-wanadu-stream-test) aws_iam_role.ecsServiceRole: Refreshing state... (ID: ecsServiceRole-test) aws_iam_policy.AmazonDynamoDBMyAccess_mine: Refreshing state... (ID: arn:aws:iam::100000000000:policy/AmazonDynamoDBMyAccess_mine-test) aws_kinesis_stream.whatever-s3-process-bob-stream: Refreshing state... (ID: arn:aws:kinesis:eu-west-1:100000000000:stream/whatever-s3-process-bob-stream-test) data.aws_ecs_container_definition.ecs-whatever: Refreshing state... aws_ecs_task_definition.wowa-task-test: Refreshing state... (ID: wowa-task-test) aws_iam_policy_attachment.kinesis: Refreshing state... (ID: kinesis-test) aws_iam_instance_profile.ecsInstanceRole: Refreshing state... (ID: ecsInstanceRole-test) aws_iam_policy_attachment.CloudWatchMyAccess_mine: Refreshing state... (ID: CloudWatchMyAccess_mine-test) aws_iam_policy_attachment.AmazonEC2ContainerServiceMyAccess_mine: Refreshing state... (ID: AmazonEC2ContainerServiceMyAccess_mine-test) aws_iam_policy_attachment.alb_register_deregister: Refreshing state... (ID: alb_register_deregister-test) aws_iam_policy_attachment.container_service_for_ec2_role: Refreshing state... (ID: container_service_for_ec2_role-test) aws_iam_instance_profile.ecsServiceRole: Refreshing state... (ID: ecsServiceRole-test) aws_iam_role_policy.ecsServiceRolePolicy: Refreshing state... (ID: ecsServiceRole-test:ecsServiceRolePolicy-test) aws_iam_policy_attachment.S3MyAccess_mine: Refreshing state... (ID: S3MyAccess_mine-test) aws_iam_policy_attachment.AmazonEC2ContainerServiceRole_mine: Refreshing state... (ID: AmazonEC2ContainerServiceRole_mine-test) aws_security_group.ecs_node: Refreshing state... (ID: sg-eabdd88c) aws_internet_gateway.whatever: Refreshing state... (ID: igw-1f8c437b) aws_security_group.castle: Refreshing state... (ID: sg-ebbdd88d) aws_subnet.public.0: Refreshing state... (ID: subnet-a25a3afa) aws_subnet.public.1: Refreshing state... (ID: subnet-9dac8bf9) aws_subnet.private.1: Refreshing state... (ID: subnet-9eac8bfa) aws_subnet.private.0: Refreshing state... (ID: subnet-bc5a3ae4) aws_security_group.load_balancer: Refreshing state... (ID: sg-e8bdd88e) aws_iam_policy_attachment.AmazonDynamoDBMyAccess_mine: Refreshing state... (ID: AmazonDynamoDBMyAccess_mine-test) aws_route_table.public: Refreshing state... (ID: rtb-8d4f54e9) aws_security_group.allow_access_from_castle: Refreshing state... (ID: sg-bbbdd8dd) aws_instance.castle: Refreshing state... (ID: i-04b2264b56a1c8c55) aws_nat_gateway.nat.0: Refreshing state... (ID: nat-0e14574959f44f541) aws_security_group.nat.1: Refreshing state... (ID: sg-abbdd8cd) aws_nat_gateway.nat.1: Refreshing state... (ID: nat-05dc0ac6ad30eebd5) aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-31df9156) aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-30df9157) aws_security_group.nat.0: Refreshing state... (ID: sg-aabdd8cc) aws_alb.foobar: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:loadbalancer/app/foobar-alb-test/057bf288e01ce3d1) aws_route_table.private.1: Refreshing state... (ID: rtb-054e5561) aws_route_table.private.0: Refreshing state... (ID: rtb-044e5560) aws_ecs_cluster.whatever: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test) aws_launch_configuration.ecs: Refreshing state... (ID: ecs-test-003f2fe63849114786555a343f) aws_ecs_service.whatever-wowa-queue: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:service/whatever-wowa-queue-test) aws_launch_configuration.ecs-wow: Refreshing state... (ID: ecs-wow-test-003f2fe63849114786555a343e) aws_ecs_service.whatever-omg: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:service/whatever-omg-test) aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-8fdf91e8) aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-8edf91e9) aws_autoscaling_group.ecs-wow: Refreshing state... (ID: ecs-asg-wow-test-ecs-wow-test-003f2fe63849114786555a343e) aws_alb_target_group.foobar: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f) aws_route53_record.whatever: Refreshing state... (ID: Z1234512345123_whatever-test.test.example.com_A) aws_alb_listener.foobar_https: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:listener/app/foobar-alb-test/057bf288e01ce3d1/2c6779d6f5819d72) aws_ecs_service.whatever: Refreshing state... (ID: arn:aws:ecs:eu-west-1:100000000000:service/foobar-service-tf-test) aws_alb_listener.foobar_http: Refreshing state... (ID: arn:aws:elasticloadbalancing:eu-west-1:100000000000:listener/app/foobar-alb-test/057bf288e01ce3d1/fc70486d9bdb982b) aws_autoscaling_group.ecs: Refreshing state... (ID: ecs-asg-test-ecs-test-003f2fe63849114786555a343f) The Terraform execution plan has been generated and is shown below. Resources are shown in alphabetical order for quick scanning. Green resources will be created (or destroyed and then created if an existing resource exists), yellow resources are being changed in-place, and red resources will be destroyed. Cyan entries are data sources to be read. Your plan was also saved to the path below. Call the "apply" subcommand with this plan file and Terraform will exactly execute this execution plan. Path: /terraform/terraform/test/plan-for-environment-test cluster: "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "200" deployment_minimum_healthy_percent: "50" desired_count: "2" iam_role: "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "1" load_balancer.2144512820.container_name: "foobar_container-test" load_balancer.2144512820.container_port: "80" load_balancer.2144512820.elb_name: "" load_balancer.2144512820.target_group_arn: "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "foobar-service-tf-test" placement_constraints.#: "1" placement_constraints.2067840941.expression: "" placement_constraints.2067840941.type: "distinctInstance" task_definition: "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" Plan: 1 to add, 0 to change, 0 to destroy. This plan was generated by Terraform v0.9.0-dev (bd5a5b0b2983de2b1b2c6c2c9d3faf4cf6c80a3d)+ /terraform/terraform/bin/terraform apply -parallelism=50 /terraform/terraform/test/plan-for-environment-test aws_ecs_service.whatever: Creating... cluster: "" => "arn:aws:ecs:eu-west-1:100000000000:cluster/whatever-test" deployment_maximum_percent: "" => "200" deployment_minimum_healthy_percent: "" => "50" desired_count: "" => "2" iam_role: "" => "arn:aws:iam::100000000000:role/ecsServiceRole-test" load_balancer.#: "" => "1" load_balancer.2144512820.container_name: "" => "foobar_container-test" load_balancer.2144512820.container_port: "" => "80" load_balancer.2144512820.elb_name: "" => "" load_balancer.2144512820.target_group_arn: "" => "arn:aws:elasticloadbalancing:eu-west-1:100000000000:targetgroup/foobar-target-group-tf-test/916b6ecbca276a5f" name: "" => "foobar-service-tf-test" placement_constraints.#: "" => "1" placement_constraints.2067840941.expression: "" => "" placement_constraints.2067840941.type: "" => "distinctInstance" task_definition: "" => "arn:aws:ecs:eu-west-1:100000000000:task-definition/ct-test:35" aws_ecs_service.whatever: Creation complete Apply complete! Resources: 1 added, 0 changed, 0 destroyed. The state of your infrastructure has been saved to the path below. This state is required to modify and destroy your infrastructure, so keep it safe. To inspect the complete state use the `terraform show` command. State path: terraform.tfstate ```
non_test
terraform plans for additional resources with unchanged developer provided configuration this issue was originally opened by spy tech as hashicorp terraform it was migrated here as part of the the original body of the issue is below the below might be a lot to swallow i am applying the exact same configuration twice but terraform claims two times that it plans to add an additional resource according to the semantics of terraform this should be impossible that is search for apply complete resources added changed destroyed in the below output the only correct output would have been one run in which one resource was added and another in which nothing needed to be done both with green output i would not be surprised if this is due to the new distinctinstances feature aws ecs service whatever cluster arn aws ecs eu west cluster whatever test arn aws ecs eu west cluster whatever test deployment maximum percent deployment minimum healthy percent desired count iam role arn aws iam role ecsservicerole test arn aws iam role ecsservicerole test load balancer load balancer container name foobar container test foobar container test load balancer container port load balancer elb name load balancer target group arn arn aws elasticloadbalancing eu west targetgroup foobar target group tf test arn aws elasticloadbalancing eu west targetgroup foobar target group tf test name foobar service tf test foobar service tf test placement constraints forces new resource placement constraints expression placement constraints type distinctinstance forces new resource task definition arn aws ecs eu west task definition ct test arn aws ecs eu west task definition ct test plan to add to change to destroy this plan was generated by terraform dev terraform terraform bin terraform apply parallelism terraform terraform test plan for environment test aws ecs service whatever creating cluster arn aws ecs eu west cluster whatever test deployment maximum percent deployment minimum healthy percent desired count iam role arn aws iam role ecsservicerole test load balancer load balancer container name foobar container test load balancer container port load balancer elb name load balancer target group arn arn aws elasticloadbalancing eu west targetgroup foobar target group tf test name foobar service tf test placement constraints placement constraints expression placement constraints type distinctinstance task definition arn aws ecs eu west task definition ct test aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever still creating elapsed aws ecs service whatever creation complete aws ecs service whatever deposed destroying aws ecs service whatever deposed destruction complete apply complete resources added changed destroyed the state of your infrastructure has been saved to the path below this state is required to modify and destroy your infrastructure so keep it safe to inspect the complete state use the terraform show command state path terraform tfstate deploy test refreshing terraform state in memory prior to plan aws ecs task definition omg task test refreshing state id omg task test aws iam policy mine refreshing state id arn aws iam policy mine test aws kinesis stream whatever janestream refreshing state id arn aws kinesis eu west stream whatever janestream test aws iam role ecsinstancerole refreshing state id ecsinstancerole test aws ecs task definition ct test refreshing state id ct test aws vpc whatever refreshing state id vpc aws eip nat refreshing state id eipalloc aws iam policy kinesis refreshing state id arn aws iam policy amazonkinesisanalyticsmyaccess test aws iam policy alb register deregister refreshing state id arn aws iam policy alb register deregister test aws iam policy container service for role refreshing state id arn aws iam policy container service for role test aws iam policy cloudwatchmyaccess mine refreshing state id arn aws iam policy cloudwatchmyaccess mine test aws dynamodb table whatever wowa queue state refreshing state id ssss whatever wanadu stream test data aws availability zones available refreshing state aws iam policy mine refreshing state id arn aws iam policy mine test aws eip nat refreshing state id eipalloc aws key pair whatever test refreshing state id whatever test aws iam policy mine refreshing state id arn aws iam policy mine test aws kinesis stream whatever wanadu stream refreshing state id arn aws kinesis eu west stream whatever wanadu stream test aws iam role ecsservicerole refreshing state id ecsservicerole test aws iam policy amazondynamodbmyaccess mine refreshing state id arn aws iam policy amazondynamodbmyaccess mine test aws kinesis stream whatever process bob stream refreshing state id arn aws kinesis eu west stream whatever process bob stream test data aws ecs container definition ecs whatever refreshing state aws ecs task definition wowa task test refreshing state id wowa task test aws iam policy attachment kinesis refreshing state id kinesis test aws iam instance profile ecsinstancerole refreshing state id ecsinstancerole test aws iam policy attachment cloudwatchmyaccess mine refreshing state id cloudwatchmyaccess mine test aws iam policy attachment mine refreshing state id mine test aws iam policy attachment alb register deregister refreshing state id alb register deregister test aws iam policy attachment container service for role refreshing state id container service for role test aws iam instance profile ecsservicerole refreshing state id ecsservicerole test aws iam role policy ecsservicerolepolicy refreshing state id ecsservicerole test ecsservicerolepolicy test aws iam policy attachment mine refreshing state id mine test aws iam policy attachment mine refreshing state id mine test aws security group ecs node refreshing state id sg aws internet gateway whatever refreshing state id igw aws security group castle refreshing state id sg aws subnet public refreshing state id subnet aws subnet public refreshing state id subnet aws subnet private refreshing state id subnet aws subnet private refreshing state id subnet aws security group load balancer refreshing state id sg aws iam policy attachment amazondynamodbmyaccess mine refreshing state id amazondynamodbmyaccess mine test aws route table public refreshing state id rtb aws security group allow access from castle refreshing state id sg aws instance castle refreshing state id i aws nat gateway nat refreshing state id nat aws security group nat refreshing state id sg aws nat gateway nat refreshing state id nat aws route table association public refreshing state id rtbassoc aws route table association public refreshing state id rtbassoc aws security group nat refreshing state id sg aws alb foobar refreshing state id arn aws elasticloadbalancing eu west loadbalancer app foobar alb test aws route table private refreshing state id rtb aws route table private refreshing state id rtb aws ecs cluster whatever refreshing state id arn aws ecs eu west cluster whatever test aws launch configuration ecs refreshing state id ecs test aws ecs service whatever wowa queue refreshing state id arn aws ecs eu west service whatever wowa queue test aws launch configuration ecs wow refreshing state id ecs wow test aws ecs service whatever omg refreshing state id arn aws ecs eu west service whatever omg test aws route table association private refreshing state id rtbassoc aws route table association private refreshing state id rtbassoc aws autoscaling group ecs wow refreshing state id ecs asg wow test ecs wow test aws alb target group foobar refreshing state id arn aws elasticloadbalancing eu west targetgroup foobar target group tf test aws record whatever refreshing state id whatever test test example com a aws alb listener foobar https refreshing state id arn aws elasticloadbalancing eu west listener app foobar alb test aws ecs service whatever refreshing state id arn aws ecs eu west service foobar service tf test aws alb listener foobar http refreshing state id arn aws elasticloadbalancing eu west listener app foobar alb test aws autoscaling group ecs refreshing state id ecs asg test ecs test the terraform execution plan has been generated and is shown below resources are shown in alphabetical order for quick scanning green resources will be created or destroyed and then created if an existing resource exists yellow resources are being changed in place and red resources will be destroyed cyan entries are data sources to be read your plan was also saved to the path below call the apply subcommand with this plan file and terraform will exactly execute this execution plan path terraform terraform test plan for environment test cluster arn aws ecs eu west cluster whatever test deployment maximum percent deployment minimum healthy percent desired count iam role arn aws iam role ecsservicerole test load balancer load balancer container name foobar container test load balancer container port load balancer elb name load balancer target group arn arn aws elasticloadbalancing eu west targetgroup foobar target group tf test name foobar service tf test placement constraints placement constraints expression placement constraints type distinctinstance task definition arn aws ecs eu west task definition ct test plan to add to change to destroy this plan was generated by terraform dev terraform terraform bin terraform apply parallelism terraform terraform test plan for environment test aws ecs service whatever creating cluster arn aws ecs eu west cluster whatever test deployment maximum percent deployment minimum healthy percent desired count iam role arn aws iam role ecsservicerole test load balancer load balancer container name foobar container test load balancer container port load balancer elb name load balancer target group arn arn aws elasticloadbalancing eu west targetgroup foobar target group tf test name foobar service tf test placement constraints placement constraints expression placement constraints type distinctinstance task definition arn aws ecs eu west task definition ct test aws ecs service whatever creation complete apply complete resources added changed destroyed the state of your infrastructure has been saved to the path below this state is required to modify and destroy your infrastructure so keep it safe to inspect the complete state use the terraform show command state path terraform tfstate
0
137,682
11,149,887,614
IssuesEvent
2019-12-23 20:20:23
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
Vsphere Node Template change issue
[zube]: To Test
<!-- Please search for existing issues first, then read https://rancher.com/docs/rancher/v2.x/en/contributing/#bugs-issues-or-questions to see what we expect in an issue For security issues, please email security@rancher.com instead of posting a public issue in GitHub. You may (but are not required to) use the GPG key located on Keybase. --> **What kind of request is this (question/bug/enhancement/feature request):** BUG **Steps to reproduce (least amount of steps as possible):** 1. Create a Vsphere Node Template in Rancher 2.3.3 2. Specify Creation Method as Content Library, chose an image and save the node template. 3. Edit the node template and change Creation Method to Deploy from Template and save node template. 4. Inspect API for this node template, and the contentLibrary key is not cleared. **Result:** Provisioning breaks the driver is unable to find the template in the Content Library. rancher-67bfcf9977-ntrgw rancher 2019/12/04 22:47:36 [ERROR] NodeController c-xd5zl/m-ktnxk [node-controller] failed with : Error creating machine: Error in driver during machine creation: POST https://myvmware:443/rest/com/vmware/content/library/item/file/id:c983c5a3-89b5-43ba-aa1d-220f1e7868cf?~action=get: 404 Not Found **Other details that may be helpful:** When the template source is changed the contentLibrary key should be cleared. This causes the code execution to go down the wrong code execution branch: https://github.com/rancher/machine/blob/master/drivers/vmwarevsphere/vsphere.go#L343 This causes cluster provisioning to fail. **Environment information** - Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): 2.3.3 - Installation option (single install/HA): HA <!-- If the reported issue is regarding a created cluster, please provide requested info below --> **Cluster information** - Cluster type (Hosted/Infrastructure Provider/Custom/Imported): VMWARE - Machine type (cloud/VM/metal) and specifications (CPU/memory): VM - Kubernetes version (use `kubectl version`): 1.16 ``` (paste the output here) ``` - Docker version (use `docker version`): Docker CE 19.03 ``` (paste the output here) ```
1.0
Vsphere Node Template change issue - <!-- Please search for existing issues first, then read https://rancher.com/docs/rancher/v2.x/en/contributing/#bugs-issues-or-questions to see what we expect in an issue For security issues, please email security@rancher.com instead of posting a public issue in GitHub. You may (but are not required to) use the GPG key located on Keybase. --> **What kind of request is this (question/bug/enhancement/feature request):** BUG **Steps to reproduce (least amount of steps as possible):** 1. Create a Vsphere Node Template in Rancher 2.3.3 2. Specify Creation Method as Content Library, chose an image and save the node template. 3. Edit the node template and change Creation Method to Deploy from Template and save node template. 4. Inspect API for this node template, and the contentLibrary key is not cleared. **Result:** Provisioning breaks the driver is unable to find the template in the Content Library. rancher-67bfcf9977-ntrgw rancher 2019/12/04 22:47:36 [ERROR] NodeController c-xd5zl/m-ktnxk [node-controller] failed with : Error creating machine: Error in driver during machine creation: POST https://myvmware:443/rest/com/vmware/content/library/item/file/id:c983c5a3-89b5-43ba-aa1d-220f1e7868cf?~action=get: 404 Not Found **Other details that may be helpful:** When the template source is changed the contentLibrary key should be cleared. This causes the code execution to go down the wrong code execution branch: https://github.com/rancher/machine/blob/master/drivers/vmwarevsphere/vsphere.go#L343 This causes cluster provisioning to fail. **Environment information** - Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): 2.3.3 - Installation option (single install/HA): HA <!-- If the reported issue is regarding a created cluster, please provide requested info below --> **Cluster information** - Cluster type (Hosted/Infrastructure Provider/Custom/Imported): VMWARE - Machine type (cloud/VM/metal) and specifications (CPU/memory): VM - Kubernetes version (use `kubectl version`): 1.16 ``` (paste the output here) ``` - Docker version (use `docker version`): Docker CE 19.03 ``` (paste the output here) ```
test
vsphere node template change issue please search for existing issues first then read to see what we expect in an issue for security issues please email security rancher com instead of posting a public issue in github you may but are not required to use the gpg key located on keybase what kind of request is this question bug enhancement feature request bug steps to reproduce least amount of steps as possible create a vsphere node template in rancher specify creation method as content library chose an image and save the node template edit the node template and change creation method to deploy from template and save node template inspect api for this node template and the contentlibrary key is not cleared result provisioning breaks the driver is unable to find the template in the content library rancher ntrgw rancher nodecontroller c m ktnxk failed with error creating machine error in driver during machine creation post not found other details that may be helpful when the template source is changed the contentlibrary key should be cleared this causes the code execution to go down the wrong code execution branch this causes cluster provisioning to fail environment information rancher version rancher rancher rancher server image tag or shown bottom left in the ui installation option single install ha ha if the reported issue is regarding a created cluster please provide requested info below cluster information cluster type hosted infrastructure provider custom imported vmware machine type cloud vm metal and specifications cpu memory vm kubernetes version use kubectl version paste the output here docker version use docker version docker ce paste the output here
1
300,849
9,212,877,822
IssuesEvent
2019-03-10 06:10:17
CS2103-AY1819S2-W13-3/main
https://api.github.com/repos/CS2103-AY1819S2-W13-3/main
closed
As a user I want to be able to search using multiple tags simultaneously, with the results in descending order of the number of matching tags
priority.High type.Story
So I can easily access the most relevant material.
1.0
As a user I want to be able to search using multiple tags simultaneously, with the results in descending order of the number of matching tags - So I can easily access the most relevant material.
non_test
as a user i want to be able to search using multiple tags simultaneously with the results in descending order of the number of matching tags so i can easily access the most relevant material
0
60,234
17,023,376,130
IssuesEvent
2021-07-03 01:42:12
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Shields are not shown
Component: mapnik Priority: major Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 1.51pm, Tuesday, 17th March 2009]** Using the renderer mapnik road shields are not shown anymore in certain zoom levels. Shields for Highways should be shown in more zoom levels. Most people use the streets they facilitate as car drivers to orientate themselves on the map. Therefore you should reinstate the former settings that were used until some weeks ago if I remember right. An enhancement would be to show road shields for secondary roads on more zoom levels too.
1.0
Shields are not shown - **[Submitted to the original trac issue database at 1.51pm, Tuesday, 17th March 2009]** Using the renderer mapnik road shields are not shown anymore in certain zoom levels. Shields for Highways should be shown in more zoom levels. Most people use the streets they facilitate as car drivers to orientate themselves on the map. Therefore you should reinstate the former settings that were used until some weeks ago if I remember right. An enhancement would be to show road shields for secondary roads on more zoom levels too.
non_test
shields are not shown using the renderer mapnik road shields are not shown anymore in certain zoom levels shields for highways should be shown in more zoom levels most people use the streets they facilitate as car drivers to orientate themselves on the map therefore you should reinstate the former settings that were used until some weeks ago if i remember right an enhancement would be to show road shields for secondary roads on more zoom levels too
0
54,141
6,366,953,985
IssuesEvent
2017-08-01 03:52:32
Submitty/Submitty
https://api.github.com/repos/Submitty/Submitty
closed
Test Actions/Graphics on old submissions
Autograding testing
Run a battery of tests on a previous years graphics submissions to test actions/image diffing. Fix any issues encountered.
1.0
Test Actions/Graphics on old submissions - Run a battery of tests on a previous years graphics submissions to test actions/image diffing. Fix any issues encountered.
test
test actions graphics on old submissions run a battery of tests on a previous years graphics submissions to test actions image diffing fix any issues encountered
1
211,201
7,199,236,302
IssuesEvent
2018-02-05 15:23:39
cilium/cilium
https://api.github.com/repos/cilium/cilium
opened
Stopping ciliumginkgotests358_consul_1 ... error
kind/bug/CI priority/high
ERROR: type should be string, got "https://jenkins.cilium.io/job/Cilium-Ginkgo-Tests/358/execution/node/30/log/\r\n\r\n```\r\n15:07:17 --- PASS: Test (0.00s)\r\n15:07:17 PASS\r\n15:07:17 OK: 1 passed\r\n15:07:17 coverage: 72.1% of statements\r\n15:07:17 ok \tgithub.com/cilium/cilium/pkg/workloads\t0.096s\r\n15:07:28 ? \tgithub.com/cilium/cilium/pkg/workloads/containerd\t[no test files]\r\n15:07:41 ? \tgithub.com/cilium/cilium/plugins/cilium-cni\t[no test files]\r\n15:07:55 ? \tgithub.com/cilium/cilium/plugins/cilium-docker\t[no test files]\r\n15:08:06 ? \tgithub.com/cilium/cilium/plugins/cilium-docker/driver\t[no test files]\r\n15:08:06 go tool cover -html=coverage-all.out -o=coverage-all.html\r\n15:08:06 rm coverage-all.out\r\n15:08:06 rm coverage.out\r\n15:08:06 # Remove the networks\r\n15:08:06 docker-compose -f test/docker-compose.yml -p $JOB_BASE_NAME-$BUILD_NUMBER down\r\n15:08:06 Stopping ciliumginkgotests358_consul_1 ... \r\n15:08:06 Stopping ciliumginkgotests358_etcd_1 ... \r\n15:08:07 \u001b[2A\u001b[2K\r\nStopping ciliumginkgotests358_consul_1 ... error\r\n\u001b[2B\u001b[1A\u001b[2K\r\nStopping ciliumginkgotests358_etcd_1 ... error\r\n\u001b[1B\r\n15:08:07 ERROR: for ciliumginkgotests358_etcd_1 cannot stop container: 37dd77c1685d4e7ff20e0d137eaaa64cd854e4ffe3b163f21a099b3b951fdef2: Cannot kill container 37dd77c1685d4e7ff20e0d137eaaa64cd854e4ffe3b163f21a099b3b951fdef2: unknown error after kill: docker-runc did not terminate sucessfully: container_linux.go:339: signaling init process caused \"permission denied\"\r\n15:08:07 : unknown\r\n15:08:07 \r\n15:08:07 ERROR: for ciliumginkgotests358_consul_1 cannot stop container: 91813f1aa510f56789486855b3d44fa6c6db5ad89300453b1b2314e31fd4aa9c: Cannot kill container 91813f1aa510f56789486855b3d44fa6c6db5ad89300453b1b2314e31fd4aa9c: unknown error after kill: docker-runc did not terminate sucessfully: container_linux.go:339: signaling init process caused \"permission denied\"\r\n15:08:07 : unknown\r\n15:08:07 Removing network ciliumginkgotests358_default\r\n15:08:07 network ciliumginkgotests358_default id 778d555941b6854e0ffc268a876e121eb6141e19997dd8f88f12b8e6afcc5d8e has active endpoints\r\n15:08:07 Makefile:25: recipe for target 'tests-ginkgo' failed\r\n15:08:07 make: *** [tests-ginkgo] Error 1\r\n```"
1.0
Stopping ciliumginkgotests358_consul_1 ... error - https://jenkins.cilium.io/job/Cilium-Ginkgo-Tests/358/execution/node/30/log/ ``` 15:07:17 --- PASS: Test (0.00s) 15:07:17 PASS 15:07:17 OK: 1 passed 15:07:17 coverage: 72.1% of statements 15:07:17 ok github.com/cilium/cilium/pkg/workloads 0.096s 15:07:28 ? github.com/cilium/cilium/pkg/workloads/containerd [no test files] 15:07:41 ? github.com/cilium/cilium/plugins/cilium-cni [no test files] 15:07:55 ? github.com/cilium/cilium/plugins/cilium-docker [no test files] 15:08:06 ? github.com/cilium/cilium/plugins/cilium-docker/driver [no test files] 15:08:06 go tool cover -html=coverage-all.out -o=coverage-all.html 15:08:06 rm coverage-all.out 15:08:06 rm coverage.out 15:08:06 # Remove the networks 15:08:06 docker-compose -f test/docker-compose.yml -p $JOB_BASE_NAME-$BUILD_NUMBER down 15:08:06 Stopping ciliumginkgotests358_consul_1 ... 15:08:06 Stopping ciliumginkgotests358_etcd_1 ... 15:08:07  Stopping ciliumginkgotests358_consul_1 ... error  Stopping ciliumginkgotests358_etcd_1 ... error  15:08:07 ERROR: for ciliumginkgotests358_etcd_1 cannot stop container: 37dd77c1685d4e7ff20e0d137eaaa64cd854e4ffe3b163f21a099b3b951fdef2: Cannot kill container 37dd77c1685d4e7ff20e0d137eaaa64cd854e4ffe3b163f21a099b3b951fdef2: unknown error after kill: docker-runc did not terminate sucessfully: container_linux.go:339: signaling init process caused "permission denied" 15:08:07 : unknown 15:08:07 15:08:07 ERROR: for ciliumginkgotests358_consul_1 cannot stop container: 91813f1aa510f56789486855b3d44fa6c6db5ad89300453b1b2314e31fd4aa9c: Cannot kill container 91813f1aa510f56789486855b3d44fa6c6db5ad89300453b1b2314e31fd4aa9c: unknown error after kill: docker-runc did not terminate sucessfully: container_linux.go:339: signaling init process caused "permission denied" 15:08:07 : unknown 15:08:07 Removing network ciliumginkgotests358_default 15:08:07 network ciliumginkgotests358_default id 778d555941b6854e0ffc268a876e121eb6141e19997dd8f88f12b8e6afcc5d8e has active endpoints 15:08:07 Makefile:25: recipe for target 'tests-ginkgo' failed 15:08:07 make: *** [tests-ginkgo] Error 1 ```
non_test
stopping consul error pass test pass ok passed coverage of statements ok github com cilium cilium pkg workloads github com cilium cilium pkg workloads containerd github com cilium cilium plugins cilium cni github com cilium cilium plugins cilium docker github com cilium cilium plugins cilium docker driver go tool cover html coverage all out o coverage all html rm coverage all out rm coverage out remove the networks docker compose f test docker compose yml p job base name build number down stopping consul stopping etcd   stopping consul error    stopping etcd error  error for etcd cannot stop container cannot kill container unknown error after kill docker runc did not terminate sucessfully container linux go signaling init process caused permission denied unknown error for consul cannot stop container cannot kill container unknown error after kill docker runc did not terminate sucessfully container linux go signaling init process caused permission denied unknown removing network default network default id has active endpoints makefile recipe for target tests ginkgo failed make error
0
129,183
5,089,805,758
IssuesEvent
2017-01-01 21:54:27
iceblade112/TrickEmu
https://api.github.com/repos/iceblade112/TrickEmu
closed
Socket storing system is pure garbage
low priority
``` public static readonly List<Socket> _clientSockets = new List<Socket>(); public static Dictionary<int, Player> _clientPlayers = new Dictionary<int, Player>(); public static Dictionary<int, ushort> _entityIDs = new Dictionary<int, ushort>(); ``` This is all really ugly.
1.0
Socket storing system is pure garbage - ``` public static readonly List<Socket> _clientSockets = new List<Socket>(); public static Dictionary<int, Player> _clientPlayers = new Dictionary<int, Player>(); public static Dictionary<int, ushort> _entityIDs = new Dictionary<int, ushort>(); ``` This is all really ugly.
non_test
socket storing system is pure garbage public static readonly list clientsockets new list public static dictionary clientplayers new dictionary public static dictionary entityids new dictionary this is all really ugly
0
350,813
25,000,852,844
IssuesEvent
2022-11-03 07:45:00
AY2223S1-CS2103T-W13-2/tp
https://api.github.com/repos/AY2223S1-CS2103T-W13-2/tp
closed
[PE-D][Tester C] Limitations of COMMISSION parameter not specified
severity.Low type.DocumentationBug
![Screenshot 2022-10-28 at 5.03.26 PM.png](https://raw.githubusercontent.com/chantellyu/ped/main/files/76350863-73a5-4cfb-b75c-bc6c928e4baf.png) ![Screenshot 2022-10-28 at 5.03.36 PM.png](https://raw.githubusercontent.com/chantellyu/ped/main/files/bd6e94e4-a84d-43c2-90d8-a3eba4d5af12.png) ![Screenshot 2022-10-28 at 5.03.48 PM.png](https://raw.githubusercontent.com/chantellyu/ped/main/files/858f134a-c9fc-48f4-9e95-958aaf0d7ed3.png) The parameter COMMISSION (cms/) for the addPolicy command has no listed limitations in both the user guide and the command error message, however it does not accept String inputs as shown. <!--session: 1666944173750-f20604c0-0553-401d-8ad4-fed1b4a69fe5--> <!--Version: Web v3.4.4--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: chantellyu/ped#11
1.0
[PE-D][Tester C] Limitations of COMMISSION parameter not specified - ![Screenshot 2022-10-28 at 5.03.26 PM.png](https://raw.githubusercontent.com/chantellyu/ped/main/files/76350863-73a5-4cfb-b75c-bc6c928e4baf.png) ![Screenshot 2022-10-28 at 5.03.36 PM.png](https://raw.githubusercontent.com/chantellyu/ped/main/files/bd6e94e4-a84d-43c2-90d8-a3eba4d5af12.png) ![Screenshot 2022-10-28 at 5.03.48 PM.png](https://raw.githubusercontent.com/chantellyu/ped/main/files/858f134a-c9fc-48f4-9e95-958aaf0d7ed3.png) The parameter COMMISSION (cms/) for the addPolicy command has no listed limitations in both the user guide and the command error message, however it does not accept String inputs as shown. <!--session: 1666944173750-f20604c0-0553-401d-8ad4-fed1b4a69fe5--> <!--Version: Web v3.4.4--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: chantellyu/ped#11
non_test
limitations of commission parameter not specified the parameter commission cms for the addpolicy command has no listed limitations in both the user guide and the command error message however it does not accept string inputs as shown labels severity low type functionalitybug original chantellyu ped
0