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
122,181
12,144,687,522
IssuesEvent
2020-04-24 08:00:17
smapiot/piral
https://api.github.com/repos/smapiot/piral
closed
Document use of regeneratorRuntime
documentation enhancement framework
# Bug Report For more information, see the `CONTRIBUTING` guide. ## Prerequisites - [ ] Can you reproduce the problem in a [MWE](https://en.wikipedia.org/wiki/Minimal_working_example)? - [x] Are you running the latest version? - [x] Did you perform a search in the issues? ## Environment Details and Version piral@0.11.3-pre.1117 windows using WSL Ubuntu node v10.14.2 ## Description ![image](https://user-images.githubusercontent.com/5342565/80030474-3832f780-84b6-11ea-9277-98c3eda84049.png) Emitting an event is failing due to what seems like a babel issue in one of my pilets. This may be due to the event being emitting from inside of a promise? ## Steps to Reproduce ```typescript import { PiletApi, PiralCustomEventMap } from 'PiralInstance'; import * as React from 'react'; const emitChangedKey = 'EventProvider--changed'; const handleClickKey = 'StateConsumer--click'; declare module 'PiralInstance' { interface PiralCustomEventMap { [emitChangedKey]: string; [handleClickKey]: string; } } /** Takes a string and makes it upper case after waiting half a second */ const transformer = async (text: string): Promise<string> => { return new Promise((resolve) => { setTimeout(() => { resolve(text.toUpperCase()); }, 500); }); }; export function setup(app: PiletApi) { const handler = (clickText: string) => { console.log('Click Event Received', clickText); transformer(clickText) .then(newText => app.emit(emitChangedKey, newText)) }; app.on(handleClickKey, handler); } ``` Then emit 'StateConsumer--click' with a string value to piral. ## Expected behavior After the transfom function resolves, piral should emit a new event to 'EventProvider--changed' with the upper case value of the string. ## Actual behavior ``` Uncaught ReferenceError: regeneratorRuntime is not defined at r (index.tsx:27) at index.tsx:27 at HTMLBodyElement.listener (events.ts:14) at HTMLBodyElement.document.body.dispatchEvent (<anonymous>:7:9) at Object.emit (events.ts:35) at onClick (index.tsx:48) at HTMLUnknownElement.callCallback (react-dom.development.js:188) at Object.invokeGuardedCallbackDev (react-dom.development.js:237) at invokeGuardedCallback (react-dom.development.js:292) at invokeGuardedCallbackAndCatchFirstError (react-dom.development.j ``` ## Possible Origin / Solution Perhaps this is due to me using async / await in the transformer function.
1.0
Document use of regeneratorRuntime - # Bug Report For more information, see the `CONTRIBUTING` guide. ## Prerequisites - [ ] Can you reproduce the problem in a [MWE](https://en.wikipedia.org/wiki/Minimal_working_example)? - [x] Are you running the latest version? - [x] Did you perform a search in the issues? ## Environment Details and Version piral@0.11.3-pre.1117 windows using WSL Ubuntu node v10.14.2 ## Description ![image](https://user-images.githubusercontent.com/5342565/80030474-3832f780-84b6-11ea-9277-98c3eda84049.png) Emitting an event is failing due to what seems like a babel issue in one of my pilets. This may be due to the event being emitting from inside of a promise? ## Steps to Reproduce ```typescript import { PiletApi, PiralCustomEventMap } from 'PiralInstance'; import * as React from 'react'; const emitChangedKey = 'EventProvider--changed'; const handleClickKey = 'StateConsumer--click'; declare module 'PiralInstance' { interface PiralCustomEventMap { [emitChangedKey]: string; [handleClickKey]: string; } } /** Takes a string and makes it upper case after waiting half a second */ const transformer = async (text: string): Promise<string> => { return new Promise((resolve) => { setTimeout(() => { resolve(text.toUpperCase()); }, 500); }); }; export function setup(app: PiletApi) { const handler = (clickText: string) => { console.log('Click Event Received', clickText); transformer(clickText) .then(newText => app.emit(emitChangedKey, newText)) }; app.on(handleClickKey, handler); } ``` Then emit 'StateConsumer--click' with a string value to piral. ## Expected behavior After the transfom function resolves, piral should emit a new event to 'EventProvider--changed' with the upper case value of the string. ## Actual behavior ``` Uncaught ReferenceError: regeneratorRuntime is not defined at r (index.tsx:27) at index.tsx:27 at HTMLBodyElement.listener (events.ts:14) at HTMLBodyElement.document.body.dispatchEvent (<anonymous>:7:9) at Object.emit (events.ts:35) at onClick (index.tsx:48) at HTMLUnknownElement.callCallback (react-dom.development.js:188) at Object.invokeGuardedCallbackDev (react-dom.development.js:237) at invokeGuardedCallback (react-dom.development.js:292) at invokeGuardedCallbackAndCatchFirstError (react-dom.development.j ``` ## Possible Origin / Solution Perhaps this is due to me using async / await in the transformer function.
non_test
document use of regeneratorruntime bug report for more information see the contributing guide prerequisites can you reproduce the problem in a are you running the latest version did you perform a search in the issues environment details and version piral pre windows using wsl ubuntu node description emitting an event is failing due to what seems like a babel issue in one of my pilets this may be due to the event being emitting from inside of a promise steps to reproduce typescript import piletapi piralcustomeventmap from piralinstance import as react from react const emitchangedkey eventprovider changed const handleclickkey stateconsumer click declare module piralinstance interface piralcustomeventmap string string takes a string and makes it upper case after waiting half a second const transformer async text string promise return new promise resolve settimeout resolve text touppercase export function setup app piletapi const handler clicktext string console log click event received clicktext transformer clicktext then newtext app emit emitchangedkey newtext app on handleclickkey handler then emit stateconsumer click with a string value to piral expected behavior after the transfom function resolves piral should emit a new event to eventprovider changed with the upper case value of the string actual behavior uncaught referenceerror regeneratorruntime is not defined at r index tsx at index tsx at htmlbodyelement listener events ts at htmlbodyelement document body dispatchevent at object emit events ts at onclick index tsx at htmlunknownelement callcallback react dom development js at object invokeguardedcallbackdev react dom development js at invokeguardedcallback react dom development js at invokeguardedcallbackandcatchfirsterror react dom development j possible origin solution perhaps this is due to me using async await in the transformer function
0
164,024
12,754,137,686
IssuesEvent
2020-06-28 03:15:27
microsoft/azure-tools-for-java
https://api.github.com/repos/microsoft/azure-tools-for-java
closed
[intelliJ]Unreasonable display when remotely run LogQuery from context menue
HDInsight IntelliJ Internal Test fixed
Build: azure-toolkit-for-intellij-2018.3.88.01-24-2019 Repro Steps: 1. Open Run/Debug Configurations. 2. Create a cosmos configuration. 3. Choose Locally Run, keep the Job Main Class empty. 4. Choose Remotely Run in Cluster, do some settings to make it completely correct. 5. Right click LogQuery to remotely run it. Result: Edit configuration window pops up. The part of Locally Run is displayed. the local tab does not have any warning message to indicate what need to update. ![image](https://user-images.githubusercontent.com/35950097/51747464-709f1800-205e-11e9-871d-488304b3ce4c.png)
1.0
[intelliJ]Unreasonable display when remotely run LogQuery from context menue - Build: azure-toolkit-for-intellij-2018.3.88.01-24-2019 Repro Steps: 1. Open Run/Debug Configurations. 2. Create a cosmos configuration. 3. Choose Locally Run, keep the Job Main Class empty. 4. Choose Remotely Run in Cluster, do some settings to make it completely correct. 5. Right click LogQuery to remotely run it. Result: Edit configuration window pops up. The part of Locally Run is displayed. the local tab does not have any warning message to indicate what need to update. ![image](https://user-images.githubusercontent.com/35950097/51747464-709f1800-205e-11e9-871d-488304b3ce4c.png)
test
unreasonable display when remotely run logquery from context menue build azure toolkit for intellij repro steps open run debug configurations create a cosmos configuration choose locally run keep the job main class empty choose remotely run in cluster do some settings to make it completely correct right click logquery to remotely run it result edit configuration window pops up the part of locally run is displayed the local tab does not have any warning message to indicate what need to update
1
57,122
15,701,034,432
IssuesEvent
2021-03-26 10:38:24
line/centraldogma
https://api.github.com/repos/line/centraldogma
opened
Failed to acquire a lock for /_sessions
defect
``` 2021-03-26 19:20:51.954 [ERROR](c.l.c.s.i.r.ZooKeeperCommandExecutor) [zookeeper-command-executor-18-1] Failed to acquire a lock for /_sessions; entering read-only mode java.lang.IllegalStateException: Expected state [STARTED] was [STOPPED] at org.apache.curator.shaded.com.google.common.base.Preconditions.checkState(Preconditions.java:823) at org.apache.curator.framework.imps.CuratorFrameworkImpl.checkState(CuratorFrameworkImpl.java:432) at org.apache.curator.framework.imps.CuratorFrameworkImpl.create(CuratorFrameworkImpl.java:445) at org.apache.curator.framework.recipes.locks.StandardLockInternalsDriver.createsTheLock(StandardLockInternalsDriver.java:54) at org.apache.curator.framework.recipes.locks.LockInternals.attemptLock(LockInternals.java:225) at org.apache.curator.framework.recipes.locks.InterProcessMutex.internalLock(InterProcessMutex.java:237) at org.apache.curator.framework.recipes.locks.InterProcessMutex.acquire(InterProcessMutex.java:89) at com.linecorp.centraldogma.server.internal.replication.ZooKeeperCommandExecutor.safeLock(ZooKeeperCommandExecutor.java:781) at com.linecorp.centraldogma.server.internal.replication.ZooKeeperCommandExecutor.blockingExecute(ZooKeeperCommandExecutor.java:1058) at com.linecorp.centraldogma.server.internal.replication.ZooKeeperCommandExecutor.lambda$doExecute$17(ZooKeeperCommandExecutor.java:1047) at io.micrometer.core.instrument.internal.TimedRunnable.run(TimedRunnable.java:44) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) at java.base/java.lang.Thread.run(Thread.java:834) ```
1.0
Failed to acquire a lock for /_sessions - ``` 2021-03-26 19:20:51.954 [ERROR](c.l.c.s.i.r.ZooKeeperCommandExecutor) [zookeeper-command-executor-18-1] Failed to acquire a lock for /_sessions; entering read-only mode java.lang.IllegalStateException: Expected state [STARTED] was [STOPPED] at org.apache.curator.shaded.com.google.common.base.Preconditions.checkState(Preconditions.java:823) at org.apache.curator.framework.imps.CuratorFrameworkImpl.checkState(CuratorFrameworkImpl.java:432) at org.apache.curator.framework.imps.CuratorFrameworkImpl.create(CuratorFrameworkImpl.java:445) at org.apache.curator.framework.recipes.locks.StandardLockInternalsDriver.createsTheLock(StandardLockInternalsDriver.java:54) at org.apache.curator.framework.recipes.locks.LockInternals.attemptLock(LockInternals.java:225) at org.apache.curator.framework.recipes.locks.InterProcessMutex.internalLock(InterProcessMutex.java:237) at org.apache.curator.framework.recipes.locks.InterProcessMutex.acquire(InterProcessMutex.java:89) at com.linecorp.centraldogma.server.internal.replication.ZooKeeperCommandExecutor.safeLock(ZooKeeperCommandExecutor.java:781) at com.linecorp.centraldogma.server.internal.replication.ZooKeeperCommandExecutor.blockingExecute(ZooKeeperCommandExecutor.java:1058) at com.linecorp.centraldogma.server.internal.replication.ZooKeeperCommandExecutor.lambda$doExecute$17(ZooKeeperCommandExecutor.java:1047) at io.micrometer.core.instrument.internal.TimedRunnable.run(TimedRunnable.java:44) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) at java.base/java.lang.Thread.run(Thread.java:834) ```
non_test
failed to acquire a lock for sessions c l c s i r zookeepercommandexecutor failed to acquire a lock for sessions entering read only mode java lang illegalstateexception expected state was at org apache curator shaded com google common base preconditions checkstate preconditions java at org apache curator framework imps curatorframeworkimpl checkstate curatorframeworkimpl java at org apache curator framework imps curatorframeworkimpl create curatorframeworkimpl java at org apache curator framework recipes locks standardlockinternalsdriver createsthelock standardlockinternalsdriver java at org apache curator framework recipes locks lockinternals attemptlock lockinternals java at org apache curator framework recipes locks interprocessmutex internallock interprocessmutex java at org apache curator framework recipes locks interprocessmutex acquire interprocessmutex java at com linecorp centraldogma server internal replication zookeepercommandexecutor safelock zookeepercommandexecutor java at com linecorp centraldogma server internal replication zookeepercommandexecutor blockingexecute zookeepercommandexecutor java at com linecorp centraldogma server internal replication zookeepercommandexecutor lambda doexecute zookeepercommandexecutor java at io micrometer core instrument internal timedrunnable run timedrunnable java at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java at io netty util concurrent fastthreadlocalrunnable run fastthreadlocalrunnable java at java base java lang thread run thread java
0
88,126
15,800,742,318
IssuesEvent
2021-04-03 01:05:05
luoyuan800/NeverEnd
https://api.github.com/repos/luoyuan800/NeverEnd
opened
CVE-2020-27216 (High) detected in jetty-webapp-9.0.2.v20130417.jar
security vulnerability
## CVE-2020-27216 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jetty-webapp-9.0.2.v20130417.jar</b></p></summary> <p>Jetty web application support</p> <p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p> <p>Path to vulnerable library: NeverEnd/Server/libs/jetty-webapp-9.0.2.v20130417.jar</p> <p> Dependency Hierarchy: - :x: **jetty-webapp-9.0.2.v20130417.jar** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In Eclipse Jetty versions 1.0 thru 9.4.32.v20200930, 10.0.0.alpha1 thru 10.0.0.beta2, and 11.0.0.alpha1 thru 11.0.0.beta2O, on Unix like systems, the system's temporary directory is shared between all users on that system. A collocated user can observe the process of creating a temporary sub directory in the shared temporary directory and race to complete the creation of the temporary subdirectory. If the attacker wins the race then they will have read and write permission to the subdirectory used to unpack web applications, including their WEB-INF/lib jar files and JSP files. If any code is ever executed out of this temporary directory, this can lead to a local privilege escalation vulnerability. <p>Publish Date: 2020-10-23 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27216>CVE-2020-27216</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </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://bugs.eclipse.org/bugs/show_bug.cgi?id=567921">https://bugs.eclipse.org/bugs/show_bug.cgi?id=567921</a></p> <p>Release Date: 2020-10-20</p> <p>Fix Resolution: org.eclipse.jetty:jetty-runner:9.4.33,10.0.0.beta3,11.0.0.beta3;org.eclipse.jetty:jetty-webapp:9.4.33,10.0.0.beta3,11.0.0.beta3</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-27216 (High) detected in jetty-webapp-9.0.2.v20130417.jar - ## CVE-2020-27216 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jetty-webapp-9.0.2.v20130417.jar</b></p></summary> <p>Jetty web application support</p> <p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p> <p>Path to vulnerable library: NeverEnd/Server/libs/jetty-webapp-9.0.2.v20130417.jar</p> <p> Dependency Hierarchy: - :x: **jetty-webapp-9.0.2.v20130417.jar** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In Eclipse Jetty versions 1.0 thru 9.4.32.v20200930, 10.0.0.alpha1 thru 10.0.0.beta2, and 11.0.0.alpha1 thru 11.0.0.beta2O, on Unix like systems, the system's temporary directory is shared between all users on that system. A collocated user can observe the process of creating a temporary sub directory in the shared temporary directory and race to complete the creation of the temporary subdirectory. If the attacker wins the race then they will have read and write permission to the subdirectory used to unpack web applications, including their WEB-INF/lib jar files and JSP files. If any code is ever executed out of this temporary directory, this can lead to a local privilege escalation vulnerability. <p>Publish Date: 2020-10-23 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27216>CVE-2020-27216</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </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://bugs.eclipse.org/bugs/show_bug.cgi?id=567921">https://bugs.eclipse.org/bugs/show_bug.cgi?id=567921</a></p> <p>Release Date: 2020-10-20</p> <p>Fix Resolution: org.eclipse.jetty:jetty-runner:9.4.33,10.0.0.beta3,11.0.0.beta3;org.eclipse.jetty:jetty-webapp:9.4.33,10.0.0.beta3,11.0.0.beta3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve high detected in jetty webapp jar cve high severity vulnerability vulnerable library jetty webapp jar jetty web application support library home page a href path to vulnerable library neverend server libs jetty webapp jar dependency hierarchy x jetty webapp jar vulnerable library vulnerability details in eclipse jetty versions thru thru and thru on unix like systems the system s temporary directory is shared between all users on that system a collocated user can observe the process of creating a temporary sub directory in the shared temporary directory and race to complete the creation of the temporary subdirectory if the attacker wins the race then they will have read and write permission to the subdirectory used to unpack web applications including their web inf lib jar files and jsp files if any code is ever executed out of this temporary directory this can lead to a local privilege escalation vulnerability publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org eclipse jetty jetty runner org eclipse jetty jetty webapp step up your open source security game with whitesource
0
7,086
9,371,396,275
IssuesEvent
2019-04-03 15:18:48
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
Calling 3rd party DLL that makes calls out to the internet from .Net core fails proxy authentication despite configuring or coding the required settings
area-System.Net.Http enhancement tenet-compatibility
@Toxophilus commented on [Tue May 15 2018](https://github.com/dotnet/core/issues/1563) I have created a .Net Core 2.0 Web.API that will relay a request to a 3rd party provider via their .Net 4.0 DLL which in turn handles the communication with their Web API and returns the results. In a simple .Net 4 application this all works perfectly and when I run my Web.API and make calls to it using a direct internet connection again it all works perfectly. However, if it is run connecting to our work network which uses a proxy I get 407 Proxy Authentication Required. Fair enough all I need do is specify that I want to use the default credentials and it should all work. So A bit of digging around had given me several possible solutions. Unfortunately under .Net Core 2.0 they don't work. I have tried deploying to my local machine and specifying in the web.Config: `<system.net> <defaultProxy useDefaultCredentials="true" /> </system.net>` I have also tried adding this configuration to the machine.config (which seemed a bit overkill) again no joy. I have also tried adding to my code in my Web API: `System.Net.WebRequest.DefaultWebProxy.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials; ` both before and after instantiating a reference to the 3rd party DLL and still when the vendors DLL makes its call to their Web API, via HTTP or HTTPS I get back 407 Proxy Authentication Required. In an attempt to prove that I was not going mad I stripped the core of the work out to a standard .Net application to create basic a test harness and applying either of the solutions to that program it all works as expected. I have also created a separate .Net 4 DLL to act as a wrapper to the 3rd party DLL and in its constructor put in the above code to set the credentials in an attempt to isolate the effect to that environment. Again, this works perfectly under a simple test application but fails under the .Net Core Web.API. Putting fiddler into the equation to watch the communication with the working application you can see the initial request get denied and proxy authentication get requested, the authentication then gets passed back and the actual request then gets through and the result passed back. But in the .Net core Web.API I have developed the request simply goes out, hits the proxy authentication request, but then no credentials get pushed back to get things going and the conversation terminates. This is the first time that I have ever worked with .Net Core so I may be missing something that I need to do, but from my perspective it looks like when I set-up the environment in my application for proxy authentication that same environment/settings are not being passed through to the DLL's environment and so I can't handle the request properly. So I need some way of setting up or injecting the environment for the 3rd party DLL to ensure that it knows what to do with the authentication request via System.Net.WebRequest.DefaultWebProxy or similar. So far I have tried running the code in a completely different thread and tried creating a completely separate .Net standard DLL to act as a wrapper, inside that DLL I then use code to force the System.Net.WebRequest.DefaultWebProxy.Credentials to use the default network credentials. Plugging either of these into my test harness they work but as soon as they are put into the .Net Core Web API they fail in exactly the same way.
True
Calling 3rd party DLL that makes calls out to the internet from .Net core fails proxy authentication despite configuring or coding the required settings - @Toxophilus commented on [Tue May 15 2018](https://github.com/dotnet/core/issues/1563) I have created a .Net Core 2.0 Web.API that will relay a request to a 3rd party provider via their .Net 4.0 DLL which in turn handles the communication with their Web API and returns the results. In a simple .Net 4 application this all works perfectly and when I run my Web.API and make calls to it using a direct internet connection again it all works perfectly. However, if it is run connecting to our work network which uses a proxy I get 407 Proxy Authentication Required. Fair enough all I need do is specify that I want to use the default credentials and it should all work. So A bit of digging around had given me several possible solutions. Unfortunately under .Net Core 2.0 they don't work. I have tried deploying to my local machine and specifying in the web.Config: `<system.net> <defaultProxy useDefaultCredentials="true" /> </system.net>` I have also tried adding this configuration to the machine.config (which seemed a bit overkill) again no joy. I have also tried adding to my code in my Web API: `System.Net.WebRequest.DefaultWebProxy.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials; ` both before and after instantiating a reference to the 3rd party DLL and still when the vendors DLL makes its call to their Web API, via HTTP or HTTPS I get back 407 Proxy Authentication Required. In an attempt to prove that I was not going mad I stripped the core of the work out to a standard .Net application to create basic a test harness and applying either of the solutions to that program it all works as expected. I have also created a separate .Net 4 DLL to act as a wrapper to the 3rd party DLL and in its constructor put in the above code to set the credentials in an attempt to isolate the effect to that environment. Again, this works perfectly under a simple test application but fails under the .Net Core Web.API. Putting fiddler into the equation to watch the communication with the working application you can see the initial request get denied and proxy authentication get requested, the authentication then gets passed back and the actual request then gets through and the result passed back. But in the .Net core Web.API I have developed the request simply goes out, hits the proxy authentication request, but then no credentials get pushed back to get things going and the conversation terminates. This is the first time that I have ever worked with .Net Core so I may be missing something that I need to do, but from my perspective it looks like when I set-up the environment in my application for proxy authentication that same environment/settings are not being passed through to the DLL's environment and so I can't handle the request properly. So I need some way of setting up or injecting the environment for the 3rd party DLL to ensure that it knows what to do with the authentication request via System.Net.WebRequest.DefaultWebProxy or similar. So far I have tried running the code in a completely different thread and tried creating a completely separate .Net standard DLL to act as a wrapper, inside that DLL I then use code to force the System.Net.WebRequest.DefaultWebProxy.Credentials to use the default network credentials. Plugging either of these into my test harness they work but as soon as they are put into the .Net Core Web API they fail in exactly the same way.
non_test
calling party dll that makes calls out to the internet from net core fails proxy authentication despite configuring or coding the required settings toxophilus commented on i have created a net core web api that will relay a request to a party provider via their net dll which in turn handles the communication with their web api and returns the results in a simple net application this all works perfectly and when i run my web api and make calls to it using a direct internet connection again it all works perfectly however if it is run connecting to our work network which uses a proxy i get proxy authentication required fair enough all i need do is specify that i want to use the default credentials and it should all work so a bit of digging around had given me several possible solutions unfortunately under net core they don t work i have tried deploying to my local machine and specifying in the web config i have also tried adding this configuration to the machine config which seemed a bit overkill again no joy i have also tried adding to my code in my web api system net webrequest defaultwebproxy credentials system net credentialcache defaultnetworkcredentials both before and after instantiating a reference to the party dll and still when the vendors dll makes its call to their web api via http or https i get back proxy authentication required in an attempt to prove that i was not going mad i stripped the core of the work out to a standard net application to create basic a test harness and applying either of the solutions to that program it all works as expected i have also created a separate net dll to act as a wrapper to the party dll and in its constructor put in the above code to set the credentials in an attempt to isolate the effect to that environment again this works perfectly under a simple test application but fails under the net core web api putting fiddler into the equation to watch the communication with the working application you can see the initial request get denied and proxy authentication get requested the authentication then gets passed back and the actual request then gets through and the result passed back but in the net core web api i have developed the request simply goes out hits the proxy authentication request but then no credentials get pushed back to get things going and the conversation terminates this is the first time that i have ever worked with net core so i may be missing something that i need to do but from my perspective it looks like when i set up the environment in my application for proxy authentication that same environment settings are not being passed through to the dll s environment and so i can t handle the request properly so i need some way of setting up or injecting the environment for the party dll to ensure that it knows what to do with the authentication request via system net webrequest defaultwebproxy or similar so far i have tried running the code in a completely different thread and tried creating a completely separate net standard dll to act as a wrapper inside that dll i then use code to force the system net webrequest defaultwebproxy credentials to use the default network credentials plugging either of these into my test harness they work but as soon as they are put into the net core web api they fail in exactly the same way
0
62,407
6,796,207,437
IssuesEvent
2017-11-01 18:13:02
locdb/locdb-frend
https://api.github.com/repos/locdb/locdb-frend
closed
Logged out after a few clicks
testing
Steps to reproduce: 1. Log in 2. Update Todo management 3. Click on the third result `59f8833` of the OCR Processed queue 4. Click on the first entry (okay) 5. Click on the second entry => 401 - Unauthorized "Not authenticated." :collision: Afterwards, I am somehow logged out and have to first log in before doing anything. See here: ![2017-11-01_14-54-39](https://user-images.githubusercontent.com/5199995/32278231-5705e91a-bf15-11e7-8242-06fe6be64097.gif)
1.0
Logged out after a few clicks - Steps to reproduce: 1. Log in 2. Update Todo management 3. Click on the third result `59f8833` of the OCR Processed queue 4. Click on the first entry (okay) 5. Click on the second entry => 401 - Unauthorized "Not authenticated." :collision: Afterwards, I am somehow logged out and have to first log in before doing anything. See here: ![2017-11-01_14-54-39](https://user-images.githubusercontent.com/5199995/32278231-5705e91a-bf15-11e7-8242-06fe6be64097.gif)
test
logged out after a few clicks steps to reproduce log in update todo management click on the third result of the ocr processed queue click on the first entry okay click on the second entry unauthorized not authenticated collision afterwards i am somehow logged out and have to first log in before doing anything see here
1
190,935
15,263,918,225
IssuesEvent
2021-02-22 04:04:23
luisfalconmx/strapi
https://api.github.com/repos/luisfalconmx/strapi
closed
Create the image documentation on dockerhub and enhance the readme file
documentation
Currently the image does not have a description on dockerhub so users who try to use the image will not know how to do it. It is also necessary to improve the readme by adding a short how-to guide in which the following points are explained. - Dockerhub image - Github container registry image - Docker Compose setup - Postman documentation
1.0
Create the image documentation on dockerhub and enhance the readme file - Currently the image does not have a description on dockerhub so users who try to use the image will not know how to do it. It is also necessary to improve the readme by adding a short how-to guide in which the following points are explained. - Dockerhub image - Github container registry image - Docker Compose setup - Postman documentation
non_test
create the image documentation on dockerhub and enhance the readme file currently the image does not have a description on dockerhub so users who try to use the image will not know how to do it it is also necessary to improve the readme by adding a short how to guide in which the following points are explained dockerhub image github container registry image docker compose setup postman documentation
0
68,725
17,389,232,506
IssuesEvent
2021-08-02 03:54:50
opentoonz/opentoonz
https://api.github.com/repos/opentoonz/opentoonz
closed
downloading .deb file of opentoonz.
install - build linux question
<!-- Please search for existing questions to avoid creating duplicates or your question may be closed. --> <!-- Before asking a question please first consult the OpenToonz manual: https://opentoonz.readthedocs.io/ --> <!-- Consider that your question may be better asked on the OpenToonz forum: https://groups.google.com/forum/#!forum/opentoonz_en/categories/ --> **Question** can you please guide me how to download .deb file of opentoonz. I love opentoonz and chromebook. In chromebook I can draw with pen bet in this laptop I need graphics tablet so please help me. Chromebook supports .deb file please.......help me............ sudo echo "deb http://www.deb-multimedia.org stable main" | tee -a /etc/apt/sources.list tee: /etc/apt/sources.list: Permission denied deb http://www.deb-multimedia.org stable main this is what i get can you help me?
1.0
downloading .deb file of opentoonz. - <!-- Please search for existing questions to avoid creating duplicates or your question may be closed. --> <!-- Before asking a question please first consult the OpenToonz manual: https://opentoonz.readthedocs.io/ --> <!-- Consider that your question may be better asked on the OpenToonz forum: https://groups.google.com/forum/#!forum/opentoonz_en/categories/ --> **Question** can you please guide me how to download .deb file of opentoonz. I love opentoonz and chromebook. In chromebook I can draw with pen bet in this laptop I need graphics tablet so please help me. Chromebook supports .deb file please.......help me............ sudo echo "deb http://www.deb-multimedia.org stable main" | tee -a /etc/apt/sources.list tee: /etc/apt/sources.list: Permission denied deb http://www.deb-multimedia.org stable main this is what i get can you help me?
non_test
downloading deb file of opentoonz question can you please guide me how to download deb file of opentoonz i love opentoonz and chromebook in chromebook i can draw with pen bet in this laptop i need graphics tablet so please help me chromebook supports deb file please help me sudo echo deb stable main tee a etc apt sources list tee etc apt sources list permission denied deb stable main this is what i get can you help me
0
672,417
22,824,951,271
IssuesEvent
2022-07-12 07:45:04
eclipse/dirigible
https://api.github.com/repos/eclipse/dirigible
closed
[IDE] Creating a new file or folder should focus it
bug component-ide web-ide usability priority-high IDE
**Is your feature request related to a problem? Please describe.** In Workbench perspective when New > File | Folder is selected it places the new node on its correct place in the tree but doesn't set focus on it. If there is a huge and spread files and folders tree it may be difficult to quickly find the new item in order to set its name. Another disadvantage is that the new file | folder must be explicitly selected and right clicked in order to be renamed. **Describe the solution you'd like** When a new file or folder is created it must be immediately focused and switched to rename mode (user is able to type preferred name). **Describe alternatives you've considered** If it is hard to produce the desired functionality a color marker displaying which exactly is the new file | folder can be also a good idea.
1.0
[IDE] Creating a new file or folder should focus it - **Is your feature request related to a problem? Please describe.** In Workbench perspective when New > File | Folder is selected it places the new node on its correct place in the tree but doesn't set focus on it. If there is a huge and spread files and folders tree it may be difficult to quickly find the new item in order to set its name. Another disadvantage is that the new file | folder must be explicitly selected and right clicked in order to be renamed. **Describe the solution you'd like** When a new file or folder is created it must be immediately focused and switched to rename mode (user is able to type preferred name). **Describe alternatives you've considered** If it is hard to produce the desired functionality a color marker displaying which exactly is the new file | folder can be also a good idea.
non_test
creating a new file or folder should focus it is your feature request related to a problem please describe in workbench perspective when new file folder is selected it places the new node on its correct place in the tree but doesn t set focus on it if there is a huge and spread files and folders tree it may be difficult to quickly find the new item in order to set its name another disadvantage is that the new file folder must be explicitly selected and right clicked in order to be renamed describe the solution you d like when a new file or folder is created it must be immediately focused and switched to rename mode user is able to type preferred name describe alternatives you ve considered if it is hard to produce the desired functionality a color marker displaying which exactly is the new file folder can be also a good idea
0
298,713
25,850,175,835
IssuesEvent
2022-12-13 09:51:17
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
roachtest: hibernate failed
C-test-failure O-robot O-roachtest release-blocker T-sql-experience branch-release-22.2
roachtest.hibernate [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7937065?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7937065?buildTab=artifacts#/hibernate) on release-22.2 @ [c50f15fae7e62a9b5ad905e88314f69eb46c3e5c](https://github.com/cockroachdb/cockroach/commits/c50f15fae7e62a9b5ad905e88314f69eb46c3e5c): ``` test artifacts and logs in: /artifacts/hibernate/run_1 orm_helpers.go:191,orm_helpers.go:117,java_helpers.go:220,hibernate.go:230,hibernate.go:243,test_runner.go:930: Tests run on Cockroach v22.2.0-beta.2-1043-gc50f15fae7 Tests run against hibernate 5.6.9 8406 Total Tests Run 8389 tests passed 17 tests failed 1928 tests skipped 0 tests ignored 0 tests passed unexpectedly 1 test failed unexpectedly 0 tests expected failed but skipped 0 tests expected failed but not run --- --- FAIL: org.hibernate.jpa.test.criteria.selectcase.SelectCaseLiteralHandlingBindTest.whereCaseExpression - unknown (unexpected) For a full summary look at the hibernate artifacts An updated blocklist (hibernateBlockList22_2) is available in the artifacts' hibernate log ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=4</code> , <code>ROACHTEST_encrypted=false</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #93245 roachtest: hibernate failed [C-test-failure O-roachtest O-robot T-sql-experience branch-master] </p> </details> /cc @cockroachdb/sql-experience <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*hibernate.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
2.0
roachtest: hibernate failed - roachtest.hibernate [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7937065?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7937065?buildTab=artifacts#/hibernate) on release-22.2 @ [c50f15fae7e62a9b5ad905e88314f69eb46c3e5c](https://github.com/cockroachdb/cockroach/commits/c50f15fae7e62a9b5ad905e88314f69eb46c3e5c): ``` test artifacts and logs in: /artifacts/hibernate/run_1 orm_helpers.go:191,orm_helpers.go:117,java_helpers.go:220,hibernate.go:230,hibernate.go:243,test_runner.go:930: Tests run on Cockroach v22.2.0-beta.2-1043-gc50f15fae7 Tests run against hibernate 5.6.9 8406 Total Tests Run 8389 tests passed 17 tests failed 1928 tests skipped 0 tests ignored 0 tests passed unexpectedly 1 test failed unexpectedly 0 tests expected failed but skipped 0 tests expected failed but not run --- --- FAIL: org.hibernate.jpa.test.criteria.selectcase.SelectCaseLiteralHandlingBindTest.whereCaseExpression - unknown (unexpected) For a full summary look at the hibernate artifacts An updated blocklist (hibernateBlockList22_2) is available in the artifacts' hibernate log ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=4</code> , <code>ROACHTEST_encrypted=false</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #93245 roachtest: hibernate failed [C-test-failure O-roachtest O-robot T-sql-experience branch-master] </p> </details> /cc @cockroachdb/sql-experience <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*hibernate.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
test
roachtest hibernate failed roachtest hibernate with on release test artifacts and logs in artifacts hibernate run orm helpers go orm helpers go java helpers go hibernate go hibernate go test runner go tests run on cockroach beta tests run against hibernate 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 org hibernate jpa test criteria selectcase selectcaseliteralhandlingbindtest wherecaseexpression unknown unexpected for a full summary look at the hibernate artifacts an updated blocklist is available in the artifacts hibernate log parameters roachtest cloud gce roachtest cpu roachtest encrypted false roachtest ssd help see see same failure on other branches roachtest hibernate failed cc cockroachdb sql experience
1
179,024
6,620,961,369
IssuesEvent
2017-09-21 17:20:39
crcn/tandem
https://api.github.com/repos/crcn/tandem
closed
Use docker for development
High priority Stability
Instead of requiring NPM / NodeJS, use Docker as an isolated environment so that developers don't have any issue with setting up Tandem on their local machine.
1.0
Use docker for development - Instead of requiring NPM / NodeJS, use Docker as an isolated environment so that developers don't have any issue with setting up Tandem on their local machine.
non_test
use docker for development instead of requiring npm nodejs use docker as an isolated environment so that developers don t have any issue with setting up tandem on their local machine
0
285,560
24,677,446,488
IssuesEvent
2022-10-18 18:13:17
dtcenter/METplus
https://api.github.com/repos/dtcenter/METplus
opened
Internal: Prevent false differences in MJO ENSO use case test
type: enhancement component: testing component: CI/CD requestor: METplus Team required: FOR DEVELOPMENT RELEASE
#1873 addresses the issue in the script that is causing these differences that could prevent the need for handling this situation. ## Describe the Enhancement ## Update diff logic to prevent differences from being reported from CSV files that have columns that differ from rounding differences. ### Time Estimate ### ~1/2 day ### Sub-Issues ### Consider breaking the enhancement down into sub-issues. - [X] *Add a checkbox for each sub-issue here.* ### Relevant Deadlines ### ASAP to avoid false failures in automated tests ### Funding Source ### None ## Define the Metadata ## ### Assignee ### - [X] Select **engineer(s)** or **no engineer** required - [X] Select **scientist(s)** or **no scientist** required ### Labels ### - [X] Select **component(s)** - [X] Select **priority** - [X] Select **requestor(s)** ### Projects and Milestone ### - [X] Select **Repository** and/or **Organization** level **Project(s)** or add **alert: NEED PROJECT ASSIGNMENT** label - [X] Select **Milestone** as the next official version or **Future Versions** ## Define Related Issue(s) ## Consider the impact to the other METplus components. - [X] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdataio](https://github.com/dtcenter/METdataio/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose) ## Enhancement Checklist ## See the [METplus Workflow](https://metplus.readthedocs.io/en/latest/Contributors_Guide/github_workflow.html) for details. - [X] Complete the issue definition above, including the **Time Estimate** and **Funding Source**. - [X] Fork this repository or create a branch of **develop**. Branch name: `feature_<Issue Number>_<Description>` - [X] Complete the development and test your changes. - [X] Add/update log messages for easier debugging. - [X] Add/update unit tests. - [X] Add/update documentation. - [X] Add any new Python packages to the [METplus Components Python Requirements](https://metplus.readthedocs.io/en/develop/Users_Guide/overview.html#metplus-components-python-requirements) table. - [X] Push local changes to GitHub. - [ ] Submit a pull request to merge into **develop**. Pull request: `feature <Issue Number> <Description>` - [ ] Define the pull request metadata, as permissions allow. Select: **Reviewer(s)** and **Linked issues** Select: **Repository** level development cycle **Project** for the next official release Select: **Milestone** as the next official version - [ ] Iterate until the reviewer(s) accept and merge your changes. - [ ] Delete your fork or branch. - [ ] Close this issue.
1.0
Internal: Prevent false differences in MJO ENSO use case test - #1873 addresses the issue in the script that is causing these differences that could prevent the need for handling this situation. ## Describe the Enhancement ## Update diff logic to prevent differences from being reported from CSV files that have columns that differ from rounding differences. ### Time Estimate ### ~1/2 day ### Sub-Issues ### Consider breaking the enhancement down into sub-issues. - [X] *Add a checkbox for each sub-issue here.* ### Relevant Deadlines ### ASAP to avoid false failures in automated tests ### Funding Source ### None ## Define the Metadata ## ### Assignee ### - [X] Select **engineer(s)** or **no engineer** required - [X] Select **scientist(s)** or **no scientist** required ### Labels ### - [X] Select **component(s)** - [X] Select **priority** - [X] Select **requestor(s)** ### Projects and Milestone ### - [X] Select **Repository** and/or **Organization** level **Project(s)** or add **alert: NEED PROJECT ASSIGNMENT** label - [X] Select **Milestone** as the next official version or **Future Versions** ## Define Related Issue(s) ## Consider the impact to the other METplus components. - [X] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdataio](https://github.com/dtcenter/METdataio/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose) ## Enhancement Checklist ## See the [METplus Workflow](https://metplus.readthedocs.io/en/latest/Contributors_Guide/github_workflow.html) for details. - [X] Complete the issue definition above, including the **Time Estimate** and **Funding Source**. - [X] Fork this repository or create a branch of **develop**. Branch name: `feature_<Issue Number>_<Description>` - [X] Complete the development and test your changes. - [X] Add/update log messages for easier debugging. - [X] Add/update unit tests. - [X] Add/update documentation. - [X] Add any new Python packages to the [METplus Components Python Requirements](https://metplus.readthedocs.io/en/develop/Users_Guide/overview.html#metplus-components-python-requirements) table. - [X] Push local changes to GitHub. - [ ] Submit a pull request to merge into **develop**. Pull request: `feature <Issue Number> <Description>` - [ ] Define the pull request metadata, as permissions allow. Select: **Reviewer(s)** and **Linked issues** Select: **Repository** level development cycle **Project** for the next official release Select: **Milestone** as the next official version - [ ] Iterate until the reviewer(s) accept and merge your changes. - [ ] Delete your fork or branch. - [ ] Close this issue.
test
internal prevent false differences in mjo enso use case test addresses the issue in the script that is causing these differences that could prevent the need for handling this situation describe the enhancement update diff logic to prevent differences from being reported from csv files that have columns that differ from rounding differences time estimate day sub issues consider breaking the enhancement down into sub issues add a checkbox for each sub issue here relevant deadlines asap to avoid false failures in automated tests funding source none define the metadata assignee select engineer s or no engineer required select scientist s or no scientist required labels select component s select priority select requestor s projects and milestone select repository and or organization level project s or add alert need project assignment label select milestone as the next official version or future versions define related issue s consider the impact to the other metplus components enhancement checklist see the for details complete the issue definition above including the time estimate and funding source fork this repository or create a branch of develop branch name feature complete the development and test your changes add update log messages for easier debugging add update unit tests add update documentation add any new python packages to the table push local changes to github submit a pull request to merge into develop pull request feature define the pull request metadata as permissions allow select reviewer s and linked issues select repository level development cycle project for the next official release select milestone as the next official version iterate until the reviewer s accept and merge your changes delete your fork or branch close this issue
1
145,252
11,672,638,347
IssuesEvent
2020-03-04 07:11:21
gambitph/Stackable
https://api.github.com/repos/gambitph/Stackable
closed
Button of the Notification block doesn't change color (for Plain Layout Only)
[block] notification bug for testing medium priority
Button of the Notification block doesn't change color (for Plain Layout Only) 1. Add a Notification block 2. Change the layout to Plain 3 Change the Button Color ![image](https://user-images.githubusercontent.com/51441886/75146318-cd737300-5735-11ea-8746-5b36f8d02626.png) The outline of the Ghost Button will not change, when you preview it the Button color is still the same. This applies on Frontend and Backend
1.0
Button of the Notification block doesn't change color (for Plain Layout Only) - Button of the Notification block doesn't change color (for Plain Layout Only) 1. Add a Notification block 2. Change the layout to Plain 3 Change the Button Color ![image](https://user-images.githubusercontent.com/51441886/75146318-cd737300-5735-11ea-8746-5b36f8d02626.png) The outline of the Ghost Button will not change, when you preview it the Button color is still the same. This applies on Frontend and Backend
test
button of the notification block doesn t change color for plain layout only button of the notification block doesn t change color for plain layout only add a notification block change the layout to plain change the button color the outline of the ghost button will not change when you preview it the button color is still the same this applies on frontend and backend
1
217,321
16,701,136,537
IssuesEvent
2021-06-09 02:41:18
captaincobbs/ESG-Mod
https://api.github.com/repos/captaincobbs/ESG-Mod
closed
Replace Science Happy Law
finished needs documentation
Current version is not fixable, since the game counts KnownSystems as "systems you can see which are colonized", and that isn't what we want. I can't find another variable to use instead (if anyone else does then lmk and I'll incorporate it).
1.0
Replace Science Happy Law - Current version is not fixable, since the game counts KnownSystems as "systems you can see which are colonized", and that isn't what we want. I can't find another variable to use instead (if anyone else does then lmk and I'll incorporate it).
non_test
replace science happy law current version is not fixable since the game counts knownsystems as systems you can see which are colonized and that isn t what we want i can t find another variable to use instead if anyone else does then lmk and i ll incorporate it
0
129,615
10,580,551,252
IssuesEvent
2019-10-08 07:05:25
SPW-DIG/metawal-core-geonetwork
https://api.github.com/repos/SPW-DIG/metawal-core-geonetwork
opened
Edition / Validateur INSPIRE
Env test - OK Env valid - NOK criticité.majeur
En réalisant le testing sur l'environnement de valid, je rencontre un problème non présent en test : En mode édition d'une fiche, si je chercher à "valider selon les TG2 d'INSPIRE datasets and series", j'ai le message d'erreur suivant : "_Erreur de validation distante: Vérifier l'URL_." Je suis allé dans les paramètres pour vérifier l'url utiliser pour le test comme décrit dans la doc (https://github.com/geonetwork/doc/blob/inspire-tg2/source/administrator-guide/configuring-the-catalog/inspire-configuration.rst). Mais que ce soit en configurant l'url à partir du bouton Use INSPIRE validator ou en copiant manuellement l'url de stagging, le message d'erreur est le même. Peut-être que le problème vient plus de l'environnement de valid que de la config de metawal. A suivre lors de la mise en prod.
1.0
Edition / Validateur INSPIRE - En réalisant le testing sur l'environnement de valid, je rencontre un problème non présent en test : En mode édition d'une fiche, si je chercher à "valider selon les TG2 d'INSPIRE datasets and series", j'ai le message d'erreur suivant : "_Erreur de validation distante: Vérifier l'URL_." Je suis allé dans les paramètres pour vérifier l'url utiliser pour le test comme décrit dans la doc (https://github.com/geonetwork/doc/blob/inspire-tg2/source/administrator-guide/configuring-the-catalog/inspire-configuration.rst). Mais que ce soit en configurant l'url à partir du bouton Use INSPIRE validator ou en copiant manuellement l'url de stagging, le message d'erreur est le même. Peut-être que le problème vient plus de l'environnement de valid que de la config de metawal. A suivre lors de la mise en prod.
test
edition validateur inspire en réalisant le testing sur l environnement de valid je rencontre un problème non présent en test en mode édition d une fiche si je chercher à valider selon les d inspire datasets and series j ai le message d erreur suivant erreur de validation distante vérifier l url je suis allé dans les paramètres pour vérifier l url utiliser pour le test comme décrit dans la doc mais que ce soit en configurant l url à partir du bouton use inspire validator ou en copiant manuellement l url de stagging le message d erreur est le même peut être que le problème vient plus de l environnement de valid que de la config de metawal a suivre lors de la mise en prod
1
116,852
11,943,873,883
IssuesEvent
2020-04-03 00:37:34
x0n4d0/contas-viralata
https://api.github.com/repos/x0n4d0/contas-viralata
opened
#Doc: Lista de Tópicos
documentation
- [ ] **TECNOLOGIAS** - Quais foram as tecnologias utilizadas no projeto? (Backend, Frontend, Banco de Dados....) - [ ] **COMO CONTRIBUIR** - Escrever um arquivo `README.contributing.md` e referenciá-lo no tópico. Além de referenciar também o [Project Manager Issues](https://github.com/x0n4d0/contas-viralata/projects/1). - [ ] **PREVIEW** - Adicionar um .gif de demonstração do projeto funcionando. - [ ] **PRÉ-REQUISITOS** - Quais são as ferramentas/tecnologias que devem estar instaladas na máquina para conseguir utilizar o projeto? E como instalar essas tecnologias? - [ ] **GUIA DE UTILIZAÇÃO** - Como utilizar o projeto após instalar os pré-requisitos? Ex: Para instalar as dependências do `package.json` execute o comando: ```bash $ yarn ```
1.0
#Doc: Lista de Tópicos - - [ ] **TECNOLOGIAS** - Quais foram as tecnologias utilizadas no projeto? (Backend, Frontend, Banco de Dados....) - [ ] **COMO CONTRIBUIR** - Escrever um arquivo `README.contributing.md` e referenciá-lo no tópico. Além de referenciar também o [Project Manager Issues](https://github.com/x0n4d0/contas-viralata/projects/1). - [ ] **PREVIEW** - Adicionar um .gif de demonstração do projeto funcionando. - [ ] **PRÉ-REQUISITOS** - Quais são as ferramentas/tecnologias que devem estar instaladas na máquina para conseguir utilizar o projeto? E como instalar essas tecnologias? - [ ] **GUIA DE UTILIZAÇÃO** - Como utilizar o projeto após instalar os pré-requisitos? Ex: Para instalar as dependências do `package.json` execute o comando: ```bash $ yarn ```
non_test
doc lista de tópicos tecnologias quais foram as tecnologias utilizadas no projeto backend frontend banco de dados como contribuir escrever um arquivo readme contributing md e referenciá lo no tópico além de referenciar também o preview adicionar um gif de demonstração do projeto funcionando pré requisitos quais são as ferramentas tecnologias que devem estar instaladas na máquina para conseguir utilizar o projeto e como instalar essas tecnologias guia de utilização como utilizar o projeto após instalar os pré requisitos ex para instalar as dependências do package json execute o comando bash yarn
0
211,593
16,328,713,498
IssuesEvent
2021-05-12 06:18:21
adrianwyard/jwplayer-enhancements
https://api.github.com/repos/adrianwyard/jwplayer-enhancements
closed
Clip range is not cleared when next item has none specified
ready for testing
Note: In the latest test playlist item two has no starttime or duration, and clip three has just a starttime. To reproduce: Open the player, start playback, note the clip range. Click the Next item button. Problems: The range from the first item is still present and active even though this item has no starttime or duration.
1.0
Clip range is not cleared when next item has none specified - Note: In the latest test playlist item two has no starttime or duration, and clip three has just a starttime. To reproduce: Open the player, start playback, note the clip range. Click the Next item button. Problems: The range from the first item is still present and active even though this item has no starttime or duration.
test
clip range is not cleared when next item has none specified note in the latest test playlist item two has no starttime or duration and clip three has just a starttime to reproduce open the player start playback note the clip range click the next item button problems the range from the first item is still present and active even though this item has no starttime or duration
1
286,650
21,582,959,886
IssuesEvent
2022-05-02 20:52:30
rancher-sandbox/rancher-desktop
https://api.github.com/repos/rancher-sandbox/rancher-desktop
closed
README missing information on dependencies
kind/enhancement kind/documentation-devhelp
### Problem Description Trying to develop Rancher Desktop from a fresh Linux environment currently fails due to missing pre-requisites that are not mentioned in the readme `build-essential` `go` ### Proposed Solution Detail missing pre-requisites for developing Rancher Desktop in Linux. ### Additional Information We should verify that nothing has changed for other environments as well ### Preflight Checklist - [X] I have searched the [issue tracker](https://github.com/rancher-sandbox/rancher-desktop/issues) for a feature request that matches the one I want to file, without success.
1.0
README missing information on dependencies - ### Problem Description Trying to develop Rancher Desktop from a fresh Linux environment currently fails due to missing pre-requisites that are not mentioned in the readme `build-essential` `go` ### Proposed Solution Detail missing pre-requisites for developing Rancher Desktop in Linux. ### Additional Information We should verify that nothing has changed for other environments as well ### Preflight Checklist - [X] I have searched the [issue tracker](https://github.com/rancher-sandbox/rancher-desktop/issues) for a feature request that matches the one I want to file, without success.
non_test
readme missing information on dependencies problem description trying to develop rancher desktop from a fresh linux environment currently fails due to missing pre requisites that are not mentioned in the readme build essential go proposed solution detail missing pre requisites for developing rancher desktop in linux additional information we should verify that nothing has changed for other environments as well preflight checklist i have searched the for a feature request that matches the one i want to file without success
0
196,283
15,587,931,727
IssuesEvent
2021-03-18 05:20:10
Eredost/BileMo
https://api.github.com/repos/Eredost/BileMo
closed
UML diagrams
documentation
Create the UML diagrams for the application, which includes: - Use case diagrams - Sequence diagrams for each of the API routes - Class diagram - Physical data model Estimated time: 4 hours
1.0
UML diagrams - Create the UML diagrams for the application, which includes: - Use case diagrams - Sequence diagrams for each of the API routes - Class diagram - Physical data model Estimated time: 4 hours
non_test
uml diagrams create the uml diagrams for the application which includes use case diagrams sequence diagrams for each of the api routes class diagram physical data model estimated time hours
0
59,923
7,301,421,546
IssuesEvent
2018-02-27 05:07:21
gitcoinco/web
https://api.github.com/repos/gitcoinco/web
closed
As a user I'd like a cleaned up explorer page.
Medium Impact design-help in progress
As a user I want a less overwhelming way to find what I need on the explorer page. # Description - Clean up search - Remove unnecessary filter options - clean up type - explore alternate treatment to web 3 connection # Definition of Done All of the above are addressed. # Reviewers Gitcoin Core
1.0
As a user I'd like a cleaned up explorer page. - As a user I want a less overwhelming way to find what I need on the explorer page. # Description - Clean up search - Remove unnecessary filter options - clean up type - explore alternate treatment to web 3 connection # Definition of Done All of the above are addressed. # Reviewers Gitcoin Core
non_test
as a user i d like a cleaned up explorer page as a user i want a less overwhelming way to find what i need on the explorer page description clean up search remove unnecessary filter options clean up type explore alternate treatment to web connection definition of done all of the above are addressed reviewers gitcoin core
0
435,458
12,535,845,591
IssuesEvent
2020-06-04 22:18:23
redhat-developer/vscode-openshift-tools
https://api.github.com/repos/redhat-developer/vscode-openshift-tools
closed
State should change after the push command is finished
kind/bug priority/major resolution/duplicate
Component state should change after the push command has finished executing.
1.0
State should change after the push command is finished - Component state should change after the push command has finished executing.
non_test
state should change after the push command is finished component state should change after the push command has finished executing
0
131,243
10,686,109,999
IssuesEvent
2019-10-22 13:53:36
EvotecIT/Testimo
https://api.github.com/repos/EvotecIT/Testimo
closed
Smb2CreditsMax should have the recommended value
potential test
Title: Smb2CreditsMax should have the recommended value Severity Warning Date: 31.05.2018 22:33:35 Category: Configuration Problem: Smb2CreditsMax doesn't have the recommended value on this server. Impact: SMB not in a default configuration, which could lead to less than optimal behavior. Resolution Set Smb2CreditsMax to the recommended value, 2048. http://go.microsoft.com/fwlink/?LinkId=246940
1.0
Smb2CreditsMax should have the recommended value - Title: Smb2CreditsMax should have the recommended value Severity Warning Date: 31.05.2018 22:33:35 Category: Configuration Problem: Smb2CreditsMax doesn't have the recommended value on this server. Impact: SMB not in a default configuration, which could lead to less than optimal behavior. Resolution Set Smb2CreditsMax to the recommended value, 2048. http://go.microsoft.com/fwlink/?LinkId=246940
test
should have the recommended value title should have the recommended value severity warning date category configuration problem doesn t have the recommended value on this server impact smb not in a default configuration which could lead to less than optimal behavior resolution set to the recommended value
1
778,732
27,327,164,546
IssuesEvent
2023-02-25 06:19:39
frigid14/stationware
https://api.github.com/repos/frigid14/stationware
closed
Need a custom "Rider" role
enhancement priority: near future
## Description <!-- Explain your issue in detail. Issues without proper explanation are liable to be closed by maintainers. --> Should be as basic of a role as possible. Plain jumpsuit, shoes, and nothing else. The more we remove from the player, the more we can give them back in return. Ideally the jumpsuit would have a custom sprite as well.
1.0
Need a custom "Rider" role - ## Description <!-- Explain your issue in detail. Issues without proper explanation are liable to be closed by maintainers. --> Should be as basic of a role as possible. Plain jumpsuit, shoes, and nothing else. The more we remove from the player, the more we can give them back in return. Ideally the jumpsuit would have a custom sprite as well.
non_test
need a custom rider role description should be as basic of a role as possible plain jumpsuit shoes and nothing else the more we remove from the player the more we can give them back in return ideally the jumpsuit would have a custom sprite as well
0
310,178
26,705,254,786
IssuesEvent
2023-01-27 17:33:48
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
pkg/sql/gcjob_test/gcjob_test_test: TestGCJobRetry failed
C-test-failure O-robot branch-master T-sql-schema
pkg/sql/gcjob_test/gcjob_test_test.TestGCJobRetry [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8475444?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8475444?buildTab=artifacts#/) on master @ [90e24ab4313f59fdc825443c03a1f4dc04bcef09](https://github.com/cockroachdb/cockroach/commits/90e24ab4313f59fdc825443c03a1f4dc04bcef09): ``` github.com/cockroachdb/cockroach/pkg/sql/virtual_schema.go:639 +0x245 github.com/cockroachdb/cockroach/pkg/sql.setupGenerator.func3() github.com/cockroachdb/cockroach/pkg/sql/virtual_table.go:127 +0x169 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTaskEx.func2() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:470 +0x1f6 Goroutine 309 (running) created at: github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTaskEx() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:461 +0x619 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:332 +0x1cb github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.GRPCTransportFactory() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/transport_race.go:98 +0x161 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendToReplicas() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:2060 +0xd0d github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendPartialBatch() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1668 +0xa44 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1240 +0x592 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*RangeIterator).Seek() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/range_iter.go:208 +0x73a github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1234 +0x2b7 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).Send() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:861 +0xa59 github.com/cockroachdb/cockroach/pkg/kv.lookupRangeFwdScan() github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:330 +0x832 github.com/cockroachdb/cockroach/pkg/kv.RangeLookup() github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:205 +0x315 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).RangeLookup() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:570 +0x128 github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).performRangeLookup() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:1032 +0x3fe github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl.func1() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:920 +0xc5 github.com/cockroachdb/cockroach/pkg/util/contextutil.RunWithTimeout() github.com/cockroachdb/cockroach/pkg/util/contextutil/context.go:104 +0x1a9 github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:917 +0x1a8 github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).tryLookup.func3() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:815 +0xd9 github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall.func1() github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:387 +0x51 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTask() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:305 +0x147 github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall() github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:386 +0x2a4 github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).DoChan.func1() github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:356 +0xd0 ================== ``` <p>Parameters: <code>TAGS=bazel,gss,race</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/sql-schema <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestGCJobRetry.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-23911
1.0
pkg/sql/gcjob_test/gcjob_test_test: TestGCJobRetry failed - pkg/sql/gcjob_test/gcjob_test_test.TestGCJobRetry [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8475444?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8475444?buildTab=artifacts#/) on master @ [90e24ab4313f59fdc825443c03a1f4dc04bcef09](https://github.com/cockroachdb/cockroach/commits/90e24ab4313f59fdc825443c03a1f4dc04bcef09): ``` github.com/cockroachdb/cockroach/pkg/sql/virtual_schema.go:639 +0x245 github.com/cockroachdb/cockroach/pkg/sql.setupGenerator.func3() github.com/cockroachdb/cockroach/pkg/sql/virtual_table.go:127 +0x169 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTaskEx.func2() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:470 +0x1f6 Goroutine 309 (running) created at: github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTaskEx() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:461 +0x619 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:332 +0x1cb github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.GRPCTransportFactory() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/transport_race.go:98 +0x161 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendToReplicas() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:2060 +0xd0d github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendPartialBatch() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1668 +0xa44 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1240 +0x592 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*RangeIterator).Seek() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/range_iter.go:208 +0x73a github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1234 +0x2b7 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).Send() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:861 +0xa59 github.com/cockroachdb/cockroach/pkg/kv.lookupRangeFwdScan() github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:330 +0x832 github.com/cockroachdb/cockroach/pkg/kv.RangeLookup() github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:205 +0x315 github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).RangeLookup() github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:570 +0x128 github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).performRangeLookup() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:1032 +0x3fe github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl.func1() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:920 +0xc5 github.com/cockroachdb/cockroach/pkg/util/contextutil.RunWithTimeout() github.com/cockroachdb/cockroach/pkg/util/contextutil/context.go:104 +0x1a9 github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:917 +0x1a8 github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).tryLookup.func3() github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:815 +0xd9 github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall.func1() github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:387 +0x51 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTask() github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:305 +0x147 github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall() github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:386 +0x2a4 github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).DoChan.func1() github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:356 +0xd0 ================== ``` <p>Parameters: <code>TAGS=bazel,gss,race</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/sql-schema <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestGCJobRetry.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-23911
test
pkg sql gcjob test gcjob test test testgcjobretry failed pkg sql gcjob test gcjob test test testgcjobretry with on master github com cockroachdb cockroach pkg sql virtual schema go github com cockroachdb cockroach pkg sql setupgenerator github com cockroachdb cockroach pkg sql virtual table go github com cockroachdb cockroach pkg util stop stopper runasynctaskex github com cockroachdb cockroach pkg util stop stopper go goroutine running created at github com cockroachdb cockroach pkg util stop stopper runasynctaskex github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg util stop stopper runasynctask github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg kv kvclient kvcoord grpctransportfactory github com cockroachdb cockroach pkg kv kvclient kvcoord transport race go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender sendtoreplicas github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender sendpartialbatch github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender divideandsendbatchtoranges github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord rangeiterator seek github com cockroachdb cockroach pkg kv kvclient kvcoord range iter go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender divideandsendbatchtoranges github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender send github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv lookuprangefwdscan github com cockroachdb cockroach pkg kv range lookup go github com cockroachdb cockroach pkg kv rangelookup github com cockroachdb cockroach pkg kv range lookup go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender rangelookup github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient rangecache rangecache performrangelookup github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg kv kvclient rangecache trylookupimpl github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg util contextutil runwithtimeout github com cockroachdb cockroach pkg util contextutil context go github com cockroachdb cockroach pkg kv kvclient rangecache trylookupimpl github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg kv kvclient rangecache rangecache trylookup github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg util syncutil singleflight group docall github com cockroachdb cockroach pkg util syncutil singleflight singleflight go github com cockroachdb cockroach pkg util stop stopper runtask github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg util syncutil singleflight group docall github com cockroachdb cockroach pkg util syncutil singleflight singleflight go github com cockroachdb cockroach pkg util syncutil singleflight group dochan github com cockroachdb cockroach pkg util syncutil singleflight singleflight go parameters tags bazel gss race help see also cc cockroachdb sql schema jira issue crdb
1
124,554
10,315,278,606
IssuesEvent
2019-08-30 07:03:52
AbsaOSS/enceladus
https://api.github.com/repos/AbsaOSS/enceladus
closed
Dataframe comparison tool fails on specific data
bug priority: high tests
## Describe the bug The dataframe comparison tool fails on a specific dataframe. The data source for that dataframe is `xml`, not sure if it is related to the failure. ``` Exception in thread "main" org.apache.spark.sql.AnalysisException: cannot resolve 'concat(CASE WHEN (`actual_field` = `expected_field`) THEN [] ELSE array('_field') END, `tmp`)' due to data type mismatch: argument 1 requires string type, however, 'CASE WHEN (`actual_field` = `expected_field`) THEN [] ELSE array('_field') END' is of array<string> type. argument 2 requires string type, however, '`tmp`' is of array<string> type.;; ``` ## To Reproduce Run the dataframe comparison tool with the following command line parameters: ``` spark-submit \ --class za.co.absa.enceladus.testutils.datasetComparison.ComparisonJob \ --master yarn \ --deploy-mode client \ --executor-memory 12g \ --name compare \ --conf "spark.app.id=compare" \ enceladus-testUtils-1.1.0-SNAPSHOT.jar \ --raw-format xml \ --row-tag account \ --new-path a.xml \ --ref-path b.xml \ --out-path c \ --keys x, y, z.x ``` ## Expected behaviour The dataframe comparison tool should handle schemas of any complexity.
1.0
Dataframe comparison tool fails on specific data - ## Describe the bug The dataframe comparison tool fails on a specific dataframe. The data source for that dataframe is `xml`, not sure if it is related to the failure. ``` Exception in thread "main" org.apache.spark.sql.AnalysisException: cannot resolve 'concat(CASE WHEN (`actual_field` = `expected_field`) THEN [] ELSE array('_field') END, `tmp`)' due to data type mismatch: argument 1 requires string type, however, 'CASE WHEN (`actual_field` = `expected_field`) THEN [] ELSE array('_field') END' is of array<string> type. argument 2 requires string type, however, '`tmp`' is of array<string> type.;; ``` ## To Reproduce Run the dataframe comparison tool with the following command line parameters: ``` spark-submit \ --class za.co.absa.enceladus.testutils.datasetComparison.ComparisonJob \ --master yarn \ --deploy-mode client \ --executor-memory 12g \ --name compare \ --conf "spark.app.id=compare" \ enceladus-testUtils-1.1.0-SNAPSHOT.jar \ --raw-format xml \ --row-tag account \ --new-path a.xml \ --ref-path b.xml \ --out-path c \ --keys x, y, z.x ``` ## Expected behaviour The dataframe comparison tool should handle schemas of any complexity.
test
dataframe comparison tool fails on specific data describe the bug the dataframe comparison tool fails on a specific dataframe the data source for that dataframe is xml not sure if it is related to the failure exception in thread main org apache spark sql analysisexception cannot resolve concat case when actual field expected field then else array field end tmp due to data type mismatch argument requires string type however case when actual field expected field then else array field end is of array type argument requires string type however tmp is of array type to reproduce run the dataframe comparison tool with the following command line parameters spark submit class za co absa enceladus testutils datasetcomparison comparisonjob master yarn deploy mode client executor memory name compare conf spark app id compare enceladus testutils snapshot jar raw format xml row tag account new path a xml ref path b xml out path c keys x y z x expected behaviour the dataframe comparison tool should handle schemas of any complexity
1
97,861
8,672,024,855
IssuesEvent
2018-11-29 20:52:32
NAVADMC/ADSM
https://api.github.com/repos/NAVADMC/ADSM
closed
Scenario changes went transferred to someone else
User Testing bug
It was reported that the scenario changed when it was shared as a file. I will test.
1.0
Scenario changes went transferred to someone else - It was reported that the scenario changed when it was shared as a file. I will test.
test
scenario changes went transferred to someone else it was reported that the scenario changed when it was shared as a file i will test
1
5,426
2,774,130,053
IssuesEvent
2015-05-04 05:17:50
AAndharia/iManager
https://api.github.com/repos/AAndharia/iManager
closed
Do not ask phone numbers during employee creationg to HR and middle name is not mandetory
Production Status - Tested & Working Type - Enhancement
Primary, secondary phone - move them to the screen where Employee himself enters all his information.
1.0
Do not ask phone numbers during employee creationg to HR and middle name is not mandetory - Primary, secondary phone - move them to the screen where Employee himself enters all his information.
test
do not ask phone numbers during employee creationg to hr and middle name is not mandetory primary secondary phone move them to the screen where employee himself enters all his information
1
228,148
18,161,882,019
IssuesEvent
2021-09-27 10:32:51
backend-br/vagas
https://api.github.com/repos/backend-br/vagas
closed
[Santa Barbara D'Oeste - Remoto] Back-end Developer na Troupe Tecnologia
CLT PHP JavaScript Remoto Testes automatizados Testes Unitários CI GraphQL Rest
## Descrição da vaga - Trabalhar em APIs utilizando PHP 7, Rest e GraphQL; - Trabalhar no suporte de sistema legado com PHP e jQuery; - Escrever testes automatizados; - Aplicar boas práticas de codificação (SOLID) e de OOP; - Buscar novas ferramentas e técnicas para a melhoria contínua de nossos sistemas; - Participar do processo criativo e auxiliar na construção dos sistemas; - Colaborar na automatização de processos internos (CI e CD); - Nos deixar impressionados com sua capacidade criativa. ## Local - Remoto ou Escritório, Santa Barbara D'Oeste / SP; ## Horário de trabalho - Segunda a Quinta das 8h às 17:15 e Sexta das 8h às 16h; ## Benefícios - Vale alimentação; - Plano médico e odontológico; - Reembolso de viagens caso seja remoto e venha para a empresa esporadicamente; - No caso de home office, ou caso o profissional deseje trabalhar com seu próprio equipamento, há um reembolso mensal pelo uso. ## Requisitos **Obrigatórios:** - Ter experiência relevante em PHP OOP; - Ter conhecimento em SOLID e boas práticas de programação; - Ter conhecimento em testes unitários usando PHPUnit; - Ter conhecimento em JavaScript. **Diferenciais:** - Ter conhecimento dos conceitos do GraphQL; - Ter conhecimento em ferramentas de Frontend. ## Contratação - CLT ## Nossa empresa Uma empresa forte e moderna. Pronta para os grandes desafios! A Troupe Brasil é reconhecida pela sua capacidade de entregar soluções para problemas dos mais diversos portes. Já são 30 anos oferecendo ao mercado o que há de melhor, sempre trabalhando com foco na viabilidade e retorno ao seu cliente. Pelo Brasil e pelo mundo, a Troupe tem deixado o legado de grandes parcerias e bons relacionamentos, acumulando testemunhos positivos que lhe garantem seguir investindo para se manter como uma das principais empresas de seu setor. ## Como se candidatar Por favor envie um email para victor.tecnologia@troupebrasil.com.br com o seu CV anexado Enviar no assunto: **Vaga Backend**
2.0
[Santa Barbara D'Oeste - Remoto] Back-end Developer na Troupe Tecnologia - ## Descrição da vaga - Trabalhar em APIs utilizando PHP 7, Rest e GraphQL; - Trabalhar no suporte de sistema legado com PHP e jQuery; - Escrever testes automatizados; - Aplicar boas práticas de codificação (SOLID) e de OOP; - Buscar novas ferramentas e técnicas para a melhoria contínua de nossos sistemas; - Participar do processo criativo e auxiliar na construção dos sistemas; - Colaborar na automatização de processos internos (CI e CD); - Nos deixar impressionados com sua capacidade criativa. ## Local - Remoto ou Escritório, Santa Barbara D'Oeste / SP; ## Horário de trabalho - Segunda a Quinta das 8h às 17:15 e Sexta das 8h às 16h; ## Benefícios - Vale alimentação; - Plano médico e odontológico; - Reembolso de viagens caso seja remoto e venha para a empresa esporadicamente; - No caso de home office, ou caso o profissional deseje trabalhar com seu próprio equipamento, há um reembolso mensal pelo uso. ## Requisitos **Obrigatórios:** - Ter experiência relevante em PHP OOP; - Ter conhecimento em SOLID e boas práticas de programação; - Ter conhecimento em testes unitários usando PHPUnit; - Ter conhecimento em JavaScript. **Diferenciais:** - Ter conhecimento dos conceitos do GraphQL; - Ter conhecimento em ferramentas de Frontend. ## Contratação - CLT ## Nossa empresa Uma empresa forte e moderna. Pronta para os grandes desafios! A Troupe Brasil é reconhecida pela sua capacidade de entregar soluções para problemas dos mais diversos portes. Já são 30 anos oferecendo ao mercado o que há de melhor, sempre trabalhando com foco na viabilidade e retorno ao seu cliente. Pelo Brasil e pelo mundo, a Troupe tem deixado o legado de grandes parcerias e bons relacionamentos, acumulando testemunhos positivos que lhe garantem seguir investindo para se manter como uma das principais empresas de seu setor. ## Como se candidatar Por favor envie um email para victor.tecnologia@troupebrasil.com.br com o seu CV anexado Enviar no assunto: **Vaga Backend**
test
back end developer na troupe tecnologia descrição da vaga trabalhar em apis utilizando php rest e graphql trabalhar no suporte de sistema legado com php e jquery escrever testes automatizados aplicar boas práticas de codificação solid e de oop buscar novas ferramentas e técnicas para a melhoria contínua de nossos sistemas participar do processo criativo e auxiliar na construção dos sistemas colaborar na automatização de processos internos ci e cd nos deixar impressionados com sua capacidade criativa local remoto ou escritório santa barbara d oeste sp horário de trabalho segunda a quinta das às e sexta das às benefícios vale alimentação plano médico e odontológico reembolso de viagens caso seja remoto e venha para a empresa esporadicamente no caso de home office ou caso o profissional deseje trabalhar com seu próprio equipamento há um reembolso mensal pelo uso requisitos obrigatórios ter experiência relevante em php oop ter conhecimento em solid e boas práticas de programação ter conhecimento em testes unitários usando phpunit ter conhecimento em javascript diferenciais ter conhecimento dos conceitos do graphql ter conhecimento em ferramentas de frontend contratação clt nossa empresa uma empresa forte e moderna pronta para os grandes desafios a troupe brasil é reconhecida pela sua capacidade de entregar soluções para problemas dos mais diversos portes já são anos oferecendo ao mercado o que há de melhor sempre trabalhando com foco na viabilidade e retorno ao seu cliente pelo brasil e pelo mundo a troupe tem deixado o legado de grandes parcerias e bons relacionamentos acumulando testemunhos positivos que lhe garantem seguir investindo para se manter como uma das principais empresas de seu setor como se candidatar por favor envie um email para victor tecnologia troupebrasil com br com o seu cv anexado enviar no assunto vaga backend
1
349,224
31,788,660,295
IssuesEvent
2023-09-13 00:14:10
ewlu/riscv-gnu-toolchain
https://api.github.com/repos/ewlu/riscv-gnu-toolchain
closed
Testsuite Status 99ec76eb8b0826c48709148457f2ef45819ab4ea
bug testsuite-failure
# Summary |Testsuite Failures|Additional Info| |---|---| |gcc-linux-rv32gcv-ilp32d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-linux-rv32gcv_zvbb_zvbc_zvkg_zvkn_zvknc_zvkned_zvkng_zvknha_zvknhb_zvks_zvksc_zvksed_zvksg_zvksh_zvkt-ilp32d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-linux-rv64gc_zba_zbb_zbc_zbs-lp64d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-newlib-rv64gc-lp64d-99ec76eb8b0826c48709148457f2ef45819ab4ea-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-newlib-rv64imafdcv_zicond_zawrs_zbc_zvkng_zvksg_zvbb_zvbc_zicsr_zba_zbb_zbs_zicbom_zicbop_zicboz_zfhmin_zkt-lp64d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |New Failures|gcc|g++|gfortran|Previous Hash| |---|---|---|---|---| |linux: rv64 Vector Crypto lp64d medlow|3/1|0/0|0/0|[124749a0f681cc20f7977708d5010174a20eb92e](https://github.com/gcc-mirror/gcc/compare/124749a0f681cc20f7977708d5010174a20eb92e...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |Resolved Failures|gcc|g++|gfortran|Previous Hash| |---|---|---|---|---| |linux: rv32 Bitmanip ilp32d medlow|3/1|0/0|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |Unresolved Failures|gcc|g++|gfortran|Previous Hash| |---|---|---|---|---| |linux: RVA23U64 profile lp64d medlow|20811/4328|10225/2612|18593/3134|[b3ab28c3e85af7995fffb87eb190ef942b7e9e4a](https://github.com/gcc-mirror/gcc/compare/b3ab28c3e85af7995fffb87eb190ef942b7e9e4a...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv32 Bitmanip ilp32d medlow|56/42|12/5|12/2|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv64 Vector Crypto lp64d medlow|48/46|11/5|79/14|[124749a0f681cc20f7977708d5010174a20eb92e](https://github.com/gcc-mirror/gcc/compare/124749a0f681cc20f7977708d5010174a20eb92e...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv64gcv lp64d medlow|48/46|11/5|79/14|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv64imafdc lp64d medlow multilib|7/5|10/4|12/2|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv32 Bitmanip ilp32d medlow|55/11|46/8|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv32 Vector Crypto ilp32d medlow|96/45|50/12|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv32gcv ilp32d medlow|92/41|50/12|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv64 Bitmanip lp64d medlow|54/16|44/7|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv64 Vector Crypto lp64d medlow|74/36|45/8|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv64gcv lp64d medlow|70/32|45/8|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| ## New Failures Across All Affected Targets (1 targets / 11 total targets) ``` FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1 ``` ## Resolved Failures Across All Affected Targets (1 targets / 11 total targets) ``` FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1 ``` Associated run is: https://github.com/patrick-rivos/riscv-gnu-toolchain/actions/runs/6078758969
1.0
Testsuite Status 99ec76eb8b0826c48709148457f2ef45819ab4ea - # Summary |Testsuite Failures|Additional Info| |---|---| |gcc-linux-rv32gcv-ilp32d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-linux-rv32gcv_zvbb_zvbc_zvkg_zvkn_zvknc_zvkned_zvkng_zvknha_zvknhb_zvks_zvksc_zvksed_zvksg_zvksh_zvkt-ilp32d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-linux-rv64gc_zba_zbb_zbc_zbs-lp64d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-newlib-rv64gc-lp64d-99ec76eb8b0826c48709148457f2ef45819ab4ea-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |gcc-newlib-rv64imafdcv_zicond_zawrs_zbc_zvkng_zvksg_zvbb_zvbc_zicsr_zba_zbb_zbs_zicbom_zicbop_zicboz_zfhmin_zkt-lp64d-99ec76eb8b0826c48709148457f2ef45819ab4ea-non-multilib|Cannot find testsuite artifact. Likely caused by testsuite timeout.| |New Failures|gcc|g++|gfortran|Previous Hash| |---|---|---|---|---| |linux: rv64 Vector Crypto lp64d medlow|3/1|0/0|0/0|[124749a0f681cc20f7977708d5010174a20eb92e](https://github.com/gcc-mirror/gcc/compare/124749a0f681cc20f7977708d5010174a20eb92e...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |Resolved Failures|gcc|g++|gfortran|Previous Hash| |---|---|---|---|---| |linux: rv32 Bitmanip ilp32d medlow|3/1|0/0|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |Unresolved Failures|gcc|g++|gfortran|Previous Hash| |---|---|---|---|---| |linux: RVA23U64 profile lp64d medlow|20811/4328|10225/2612|18593/3134|[b3ab28c3e85af7995fffb87eb190ef942b7e9e4a](https://github.com/gcc-mirror/gcc/compare/b3ab28c3e85af7995fffb87eb190ef942b7e9e4a...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv32 Bitmanip ilp32d medlow|56/42|12/5|12/2|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv64 Vector Crypto lp64d medlow|48/46|11/5|79/14|[124749a0f681cc20f7977708d5010174a20eb92e](https://github.com/gcc-mirror/gcc/compare/124749a0f681cc20f7977708d5010174a20eb92e...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv64gcv lp64d medlow|48/46|11/5|79/14|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |linux: rv64imafdc lp64d medlow multilib|7/5|10/4|12/2|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv32 Bitmanip ilp32d medlow|55/11|46/8|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv32 Vector Crypto ilp32d medlow|96/45|50/12|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv32gcv ilp32d medlow|92/41|50/12|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv64 Bitmanip lp64d medlow|54/16|44/7|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv64 Vector Crypto lp64d medlow|74/36|45/8|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| |newlib: rv64gcv lp64d medlow|70/32|45/8|0/0|[270e702edae3e508ee91ff041d97400803eef009](https://github.com/gcc-mirror/gcc/compare/270e702edae3e508ee91ff041d97400803eef009...99ec76eb8b0826c48709148457f2ef45819ab4ea)| ## New Failures Across All Affected Targets (1 targets / 11 total targets) ``` FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1 ``` ## Resolved Failures Across All Affected Targets (1 targets / 11 total targets) ``` FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1 FAIL: gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1 ``` Associated run is: https://github.com/patrick-rivos/riscv-gnu-toolchain/actions/runs/6078758969
test
testsuite status summary testsuite failures additional info gcc linux non multilib cannot find testsuite artifact likely caused by testsuite timeout gcc linux zvbb zvbc zvkg zvkn zvknc zvkned zvkng zvknha zvknhb zvks zvksc zvksed zvksg zvksh zvkt non multilib cannot find testsuite artifact likely caused by testsuite timeout gcc linux zba zbb zbc zbs non multilib cannot find testsuite artifact likely caused by testsuite timeout gcc newlib multilib cannot find testsuite artifact likely caused by testsuite timeout gcc newlib zicond zawrs zbc zvkng zvksg zvbb zvbc zicsr zba zbb zbs zicbom zicbop zicboz zfhmin zkt non multilib cannot find testsuite artifact likely caused by testsuite timeout new failures gcc g gfortran previous hash linux vector crypto medlow resolved failures gcc g gfortran previous hash linux bitmanip medlow unresolved failures gcc g gfortran previous hash linux profile medlow linux bitmanip medlow linux vector crypto medlow linux medlow linux medlow multilib newlib bitmanip medlow newlib vector crypto medlow newlib medlow newlib bitmanip medlow newlib vector crypto medlow newlib medlow new failures across all affected targets targets total targets fail gcc dg tree prof time profiler c scan ipa dump times profile read tp first run fail gcc dg tree prof time profiler c scan ipa dump times profile read tp first run fail gcc dg tree prof time profiler c scan ipa dump times profile read tp first run resolved failures across all affected targets targets total targets fail gcc dg tree prof time profiler c scan ipa dump times profile read tp first run fail gcc dg tree prof time profiler c scan ipa dump times profile read tp first run fail gcc dg tree prof time profiler c scan ipa dump times profile read tp first run associated run is
1
41,889
5,401,268,641
IssuesEvent
2017-02-28 00:33:41
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
teamcity: failed tests on master: test (proposer evaluated kv)/TestParallel, test (proposer evaluated kv)/TestParallel/subquery_retry
Robot test-failure
The following tests appear to have failed: [#163594](https://teamcity.cockroachdb.com/viewLog.html?buildId=163594): ``` --- FAIL: test (proposer evaluated kv)/TestParallel (0.000s) Test ended in panic. --- FAIL: test (proposer evaluated kv)/TestParallel/subquery_retry (0.000s) Test ended in panic. ------- Stdout: ------- --- queries start here --- done: partestdata/subquery_retry/setup: 2 tests, 0 failures --- queries start here --- queries start here --- queries start here panic: test timed out after 2m0s goroutine 205330 [running]: testing.startAlarm.func1() /usr/local/go/src/testing/testing.go:1023 +0xf9 created by time.goFunc /usr/local/go/src/time/sleep.go:170 +0x44 goroutine 1 [chan receive]: testing.(*T).Run(0xc4203a8d00, 0x1c2f157, 0xc, 0x1ca1750, 0xc4200e3c01) /usr/local/go/src/testing/testing.go:698 +0x2f4 testing.runTests.func1(0xc4203a8d00) /usr/local/go/src/testing/testing.go:882 +0x67 testing.tRunner(0xc4203a8d00, 0xc4200e3db0) /usr/local/go/src/testing/testing.go:657 +0x96 testing.runTests(0xc4203ab6e0, 0x284dd80, 0x7e, 0x7e, 0x2d46380) /usr/local/go/src/testing/testing.go:888 +0x2c1 testing.(*M).Run(0xc42061df20, 0x2d8ae00) /usr/local/go/src/testing/testing.go:822 +0xfc github.com/cockroachdb/cockroach/pkg/sql_test.TestMain(0xc4200e3f20) /go/src/github.com/cockroachdb/cockroach/pkg/sql/main_test.go:227 +0xb4 main.main() github.com/cockroachdb/cockroach/pkg/sql/_test/_testmain.go:640 +0xf7 goroutine 17 [syscall, 1 minutes, locked to thread]: runtime.goexit() /usr/local/go/src/runtime/asm_amd64.s:2197 +0x1 goroutine 5 [runnable]: github.com/cockroachdb/cockroach/pkg/util/log.(*loggingT).flushDaemon(0x2d47d80) /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:1012 +0x77 created by github.com/cockroachdb/cockroach/pkg/util/log.init.1 /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:583 +0xd2 goroutine 6 [chan receive]: github.com/cockroachdb/cockroach/pkg/util/log.(*loggingT).gcDaemon(0x2d47d80) /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:1039 +0x5b created by github.com/cockroachdb/cockroach/pkg/util/log.init.1 /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:584 +0xf6 goroutine 204191 [chan receive]: testing.(*T).Run(0xc4203a96c0, 0xc4237d754c, 0xe, 0xc4237d7580, 0x2) /usr/local/go/src/testing/testing.go:698 +0x2f4 github.com/cockroachdb/cockroach/pkg/sql_test.TestParallel(0xc4203a96c0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:256 +0x26b testing.tRunner(0xc4203a96c0, 0x1ca1750) /usr/local/go/src/testing/testing.go:657 +0x96 created by testing.(*T).Run /usr/local/go/src/testing/testing.go:697 +0x2ca goroutine 204250 [chan receive]: github.com/cockroachdb/cockroach/pkg/util/netutil.MakeServer.func2() /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:98 +0x70 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c140) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204386 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000282) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a26a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204393 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).Start.func3() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1244 +0x165 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2760) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204345 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000028a) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2560) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204426 [IO wait]: net.runtime_pollWait(0x2b4884614290, 0x72, 0x7) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b5878, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b5878, 0xc422cb7800, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc4221b5810, 0xc422cb7800, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc42095c000, 0xc422cb7800, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc421f6e450, 0x2b488467d3d8, 0xc42095c000, 0x5, 0xc42095c000, 0xc423cb54a0) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc421d4c000, 0x1ca3917, 0xc421d4c120, 0x0) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc421d4c000, 0xc422a3e000, 0x8000, 0x8000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc4239e78c0, 0xc421c2b968, 0x9, 0x9, 0x0, 0x0, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc4239e78c0, 0xc421c2b968, 0x9, 0x9, 0x9, 0x1ca2cf0, 0x0, 0xc422264db8) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc4239e78c0, 0xc421c2b968, 0x9, 0x9, 0xc420014130, 0x105000000000002, 0x2) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.readFrameHeader(0xc421c2b968, 0x9, 0x9, 0x28536c0, 0xc4239e78c0, 0x0, 0x0, 0x0, 0x2853dc0) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:237 +0x7b github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.(*Framer).ReadFrame(0xc421c2b930, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:469 +0xa4 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*framer).readFrame(0xc4205daa50, 0xc423cb5440, 0xc423cb5440, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http_util.go:508 +0x2f github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Client).reader(0xc420393600) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:994 +0xb1 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.newHTTP2Client /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:228 +0xb0f goroutine 204384 [select]: github.com/cockroachdb/cockroach/pkg/rpc.(*Context).runHeartbeat(0xc421fd7e80, 0xc423b96180, 0xc423b49760, 0xf, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/rpc/context.go:351 +0x744 github.com/cockroachdb/cockroach/pkg/rpc.(*Context).GRPCDial.func1.3.1() /go/src/github.com/cockroachdb/cockroach/pkg/rpc/context.go:294 +0x5d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc42026ab40) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204256 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c240, 0x1ca2bd0, 0xc4203a9ad0, 0x28756e0, 0xc4209170e0) <autogenerated>:9 +0x7a github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).Serve(0xc4203a9ad0, 0x286ae00, 0xc423c6c240, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:377 +0x186 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func7() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:526 +0x43 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c3c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204354 [chan receive]: github.com/cockroachdb/cockroach/pkg/gossip.(*server).start.func3() /go/src/github.com/cockroachdb/cockroach/pkg/gossip/server.go:366 +0x66 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c460) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204406 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a30c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204577 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc423a6cb80, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc4207e37e0, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc423a6cb80, 0x8, 0xc4207e37e0, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a9790, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a9790, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a9790, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a95f0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4236a60c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23a58, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc422c23a40, 0x2b48845f3000, 0xc4236a60c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23a58, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).sendInternal(0xc422c23a40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23a58, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:572 +0xad github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).send(0xc422c23a40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:721 +0x513 github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).(github.com/cockroachdb/cockroach/pkg/internal/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2710, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0x58 github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc4221232f0, 0xc4205f8438, 0x0, 0x1b46200) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Run(0xc422c23a40, 0xc4205f8438, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0xc6 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).fetch(0xc4205f8408, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:232 +0x257 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).nextKV(0xc4205f8408, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:291 +0x51 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).NextKey(0xc4205f8380, 0xc4237a8c30, 0x1, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:202 +0x3e github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).StartScan(0xc4205f8380, 0xc422c23a40, 0xc4237a8c30, 0x1, 0x1, 0x2874c01, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:191 +0x199 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).initScan(0xc4205f8000, 0x5, 0x2) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:172 +0xf0 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).Next(0xc4205f8000, 0x1, 0xc422541444, 0x5) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:217 +0x1c0 github.com/cockroachdb/cockroach/pkg/sql.(*renderNode).Next(0xc4227f7680, 0xc4205f8008, 0x2, 0xc42146cde0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/render.go:122 +0x38 github.com/cockroachdb/cockroach/pkg/sql.(*groupNode).Next(0xc421614900, 0x2877380, 0xc4211e0db0, 0xc422125130) /go/src/github.com/cockroachdb/cockroach/pkg/sql/group.go:334 +0x5d2 github.com/cockroachdb/cockroach/pkg/sql.(*limitNode).Next(0xc423012900, 0x1c9ff88, 0xc4211f6410, 0xc4211e0db0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/limit.go:175 +0x5d github.com/cockroachdb/cockroach/pkg/sql.(*subquery).doEval(0xc4211f6410, 0x2877b00, 0x2d8ae00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:165 +0x5d8 github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).subqueryNode(0xc4200712c0, 0xc4211f6410, 0xc422125270, 0x10f8807) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:246 +0x9a github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).(github.com/cockroachdb/cockroach/pkg/sql.subqueryNode)-fm(0xc4211f6410, 0x0, 0x68809e) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:269 +0x34 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).VisitPre(0xc4211f6e60, 0x286bec0, 0xc4211f6410, 0xc4211f6401, 0xc4221252f8, 0x68f983) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:439 +0x1b0 github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExpr(0x285d540, 0xc4211f6e60, 0x286bec0, 0xc4211f6410, 0xc422125370, 0x286bec0, 0x10f8301) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:559 +0x4c github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExprConst(0x285d540, 0xc4211f6e60, 0x286bec0, 0xc4211f6410) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:572 +0x49 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).expr(0xc4211f6e60, 0x1c27390, 0x6, 0x0, 0x0, 0x0, 0x286bec0, 0xc4211f6410, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:422 +0xb3 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc4211f6e60, 0x2875200, 0xc42146d5c0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:117 +0x318 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc4211f6e60, 0x2874de0, 0xc42017b340) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:307 +0x2ba6 github.com/cockroachdb/cockroach/pkg/sql.walkPlan(0x2874de0, 0xc42017b340, 0xc4211e0e40, 0x0, 0x0, 0x0, 0xc4211e0e30, 0x2d47e58, 0xc400000000) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:58 +0xcf github.com/cockroachdb/cockroach/pkg/sql.(*planner).startSubqueryPlans(0xc42006fbe8, 0x2874de0, 0xc42017b340, 0xc420842680, 0xc4232c0cc0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:271 +0x164 github.com/cockroachdb/cockroach/pkg/sql.(*planner).startPlan(0xc42006fbe8, 0x2874de0, 0xc42017b340, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/plan.go:218 +0x43 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execClassic(0xc423582300, 0xc42006fbe8, 0x2874de0, 0xc42017b340, 0xc422126298, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1291 +0x4c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmt(0xc423582300, 0x286ca40, 0xc42254bea0, 0xc42006fbe8, 0xc422120101, 0xed0465746, 0x20bdcbfc, 0x2d46380, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1417 +0x22c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtInOpenTxn(0xc423582300, 0x286ca40, 0xc42254bea0, 0xc42006fbe8, 0x101, 0xc42006fae8, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1167 +0x2bd github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtsInCurrentTxn(0xc423582300, 0xc4219f6700, 0x1, 0x1, 0xc42006fbe8, 0xc42006fae8, 0x10101, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:902 +0x7f0 github.com/cockroachdb/cockroach/pkg/sql.runTxnAttempt(0xc423582300, 0xc42006fbe8, 0x1, 0xc42006fae8, 0xc4219f6750, 0xc4219f6700, 0x1, 0x1, 0xc4231cd101, 0x185, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:816 +0xf6 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest.func2(0xc422c23a40, 0xc4219f6750, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:655 +0x1bc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Exec(0xc422c23a40, 0xc422320101, 0xc4238f9e00, 0xc4223245b0, 0xc400000000, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:505 +0xc1 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest(0xc423582300, 0xc42006fa80, 0xc4211b1869, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:677 +0x583 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).ExecuteStatements(0xc423582300, 0xc42006fa80, 0xc4211b1869, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xc4211b1800) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:490 +0x12d github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).executeStatements(0xc422680400, 0x2b48845f3000, 0xc4208e6600, 0xc4211b1869, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xa7cd01, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:819 +0x94 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).handleSimpleQuery(0xc422680400, 0x2b48845f3000, 0xc4208e6600, 0xc422680428, 0x34, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:491 +0xc9 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).serve(0xc422680400, 0x2b48845f3000, 0xc4208e6600, 0xc4207f46a0, 0x5400, 0xc421d86160, 0x2b488463eee0, 0xc422262380, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:419 +0x89b github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*Server).ServeConn(0xc421d86000, 0x2b488463eee0, 0xc422262380, 0x28737c0, 0xc421e5f180, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/server.go:415 +0x917 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8.1(0x28756e0, 0xc422088820) /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:543 +0x106 github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith.func1(0xc42023c8c0, 0xc42000e038, 0x28756e0, 0xc422088820, 0xc421f72e20) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:136 +0x95 created by github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:138 +0x239 goroutine 204255 [chan receive]: github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func6() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:515 +0x88 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4225b20c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204350 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000289) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2620) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204349 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000027f) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a25e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204383 [select]: github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*addrConn).transportMonitor(0xc420466c00) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/clientconn.go:839 +0x666 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*ClientConn).resetAddrConn.func1(0xc420466c00) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/clientconn.go:586 +0x1d9 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*ClientConn).resetAddrConn /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/clientconn.go:587 +0x372 goroutine 204341 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000280) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a24e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204348 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000287) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a25c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204257 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c220, 0x1ca1e30, 0xc42023c8c0, 0xc42000e038, 0x28756e0) <autogenerated>:9 +0x7a github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith(0xc42000e038, 0xc42023c8c0, 0x286ae00, 0xc423c6c220, 0xc421f72e20, 0xc421e528c0, 0xc420020c00) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:115 +0x45 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:549 +0x1e1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4238eeab0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205322 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc42158cb40, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c80b40, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc42158cb40, 0x8, 0xc421c80b40, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4201f8030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc423c6cba0, 0x2b48845f3000, 0xc4201f8030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run.func1(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:452 +0x6e github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc421c809a0, 0xc4224bdc00, 0x0, 0x28740c0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run(0xc423c6cba0, 0x2b48845f3000, 0xc4201f8030, 0xc4224bdc00, 0x2, 0xc421c80980) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:454 +0xb2 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).maybePushTransactions(0xc422820090, 0x2b48845f3000, 0xc4201f8030, 0xc42230e000, 0x2, 0x2, 0x14a734b080e06cc8, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:198 +0xac0 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).processWriteIntentError(0xc422820090, 0x2b48845f3000, 0xc4201f8030, 0xc42138e460, 0x28743c0, 0xc4236a7c50, 0x14a734b080e06cc8, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:86 +0x11a github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc4201f8030, 0x14a734b080dcc596, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4213971e0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2612 +0xb28 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc4236a7ec0, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4213971e0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc42360b850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc4236a7e90, 0xc42023c528, 0xc4236a7e90, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc4236a7e90, 0xc42023c528, 0x1f, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc42217d4a0, 0xc42023c500, 0x2b48845f3000, 0xc4236a7e00, 0xe81c75, 0xc42023c8c0, 0x24f2fc5) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc42217d4a0, 0xc42023c500, 0x2b48845f3000, 0xc4236a7e00, 0x2876b60, 0xc42023c5a0, 0xc422b1f5c0) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204356 [select]: github.com/cockroachdb/cockroach/pkg/gossip.(*Gossip).manage.func1() /go/src/github.com/cockroachdb/cockroach/pkg/gossip/gossip.go:1075 +0x399 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4207085d0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204440 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).maybeAddToPurgatory.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:665 +0xb17 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc42272a440) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204389 [semacquire]: sync.runtime_Semacquire(0xc422f7a084) /usr/local/go/src/runtime/sema.go:47 +0x34 sync.(*WaitGroup).Wait(0xc422f7a078) /usr/local/go/src/sync/waitgroup.go:131 +0x7a github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Wait(0xc422f7a000) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:171 +0x31 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Wait-fm() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:3421 +0x2a github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423b49330) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204351 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000283) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2640) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204418 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Node).startWriteSummaries.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:735 +0x2c1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4224dc690) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204413 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Node).startComputePeriodicMetrics.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:698 +0x2a0 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3200) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204353 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000028b) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2680) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204252 [IO wait]: net.runtime_pollWait(0x2b4885e44240, 0x72, 0x0) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b4298, 0x72, 0x0, 0xc4216a6000) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b4298, 0xffffffffffffffff, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).accept(0xc4221b4230, 0x0, 0x2859500, 0xc4216a6000) /usr/local/go/src/net/fd_unix.go:430 +0x1e5 net.(*TCPListener).accept(0xc42000e058, 0xc4210cd930, 0xc420649f20, 0x10) /usr/local/go/src/net/tcpsock_posix.go:136 +0x2e net.(*TCPListener).Accept(0xc42000e058, 0x1ca1f38, 0xc4225b2040, 0xc421f22000, 0x6dec92ec9cfee5b6) /usr/local/go/src/net/tcpsock.go:228 +0x49 github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*cMux).Serve(0xc4225b2040, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux/cmux.go:124 +0x95 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func3() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:500 +0x2f github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c320) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204387 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000286) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a26c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204419 [select]: github.com/cockroachdb/cockroach/pkg/sql.(*SchemaChangeManager).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/schema_changer.go:740 +0x138d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a32e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205308 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*pushTxnQueue).MaybeWait(0xc421dc8a20, 0x2b48845f3000, 0xc423a40900, 0xc421614f00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/push_txn_queue.go:305 +0x1004 github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc423a40900, 0x14a734b080ee1c74, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2541 +0x5c3 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc423a40870, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc421325850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc423a40840, 0xc421df9ba8, 0xc423a40840, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc423a40840, 0xc421df9ba8, 0x1f, 0x6c1258, 0xf04380) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc42138e640, 0xc421df9b80, 0x2b48845f3000, 0xc423a40780, 0xe81c6f, 0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc42138e640, 0xc421df9b80, 0x2b48845f3000, 0xc423a40780, 0x2876b60, 0xc421df9c20, 0xc422678600) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204427 [select]: github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Client).controller(0xc420393600) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:1072 +0x629 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.newHTTP2Client /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:258 +0xed3 goroutine 204409 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3140) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204338 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).printStatsLoop(0xc420aa9600, 0x2b48845f3000, 0xc42026ade0) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:209 +0xb4a github.com/cockroachdb/cockroach/pkg/kv.NewTxnCoordSender.func1() /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:193 +0x98 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc422a59b20) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204423 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*NodeLiveness).StartHeartbeat.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/node_liveness.go:264 +0x29a github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc42138ecd0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204417 [select]: github.com/cockroachdb/cockroach/pkg/ts.(*poller).start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/ts/db.go:90 +0x16f github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4236982f0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204251 [chan receive]: github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:488 +0x71 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4238eea50) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204414 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Node).startGossip.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:657 +0x4c1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3220) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204254 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c300, 0xc42000e058, 0xc42158e0f0, 0x1a6a280, 0x2835b30) <autogenerated>:9 +0x7a crypto/tls.(*listener).Accept(0xc423c6c380, 0xc42158e0c0, 0x1a6a280, 0x2835b30, 0x1b45300) /usr/local/go/src/crypto/tls/tls.go:52 +0x37 net/http.(*Server).Serve(0xc420aa80b0, 0x2861980, 0xc423c6c380, 0x0, 0x0) /usr/local/go/src/net/http/server.go:2643 +0x228 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func5() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:511 +0x42 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c3a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204411 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3180) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204193 [chan receive]: github.com/cockroachdb/cockroach/pkg/rpc.NewContext.func1() /go/src/github.com/cockroachdb/cockroach/pkg/rpc/context.go:160 +0x76 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c860) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204342 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000281) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2500) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204339 [select]: github.com/cockroachdb/cockroach/pkg/sql.(*LeaseManager).RefreshLeases.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/lease.go:1210 +0xc35 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4231736e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204407 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a30e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205307 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*pushTxnQueue).MaybeWait(0xc421dc8a20, 0x2b48845f3000, 0xc4237a9e00, 0xc421614c00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/push_txn_queue.go:305 +0x1004 github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc4237a9e00, 0x14a734b080e49480, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2541 +0x5c3 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc4237a9d40, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc420133850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc4237a9d10, 0xc421df96a8, 0xc4237a9d10, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc4237a9d10, 0xc421df96a8, 0x1f, 0x6c1258, 0xf04380) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc42138e230, 0xc421df9680, 0x2b48845f3000, 0xc4237a9c20, 0xe81c6f, 0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc42138e230, 0xc421df9680, 0x2b48845f3000, 0xc4237a9c20, 0x2876b60, 0xc421df9720, 0xc423cafc20) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204412 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*replicaScanner).waitAndProcess(0xc4209700c0, 0x2b48845f3000, 0xc42026ade0, 0xed0465745, 0x3ad093d0, 0x2d46380, 0xc4238f9e00, 0xc42023c8c0, 0xc421c73180, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scanner.go:207 +0x241 github.com/cockroachdb/cockroach/pkg/storage.(*replicaScanner).scanLoop.func1.1(0xc421c73180, 0xc422820301) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scanner.go:269 +0x90 github.com/cockroachdb/cockroach/pkg/storage.(*storeReplicaVisitor).Visit(0xc422820300, 0xc4238a25f0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:351 +0x2ff github.com/cockroachdb/cockroach/pkg/storage.(*replicaScanner).scanLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scanner.go:271 +0x29f github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a31c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204340 [chan receive]: github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:155 +0x55 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a24c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204420 [select]: github.com/cockroachdb/cockroach/pkg/sql.(*Executor).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:347 +0x165 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3360) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204396 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startGossip.func4() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1373 +0x51d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc421e9bd60) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205265 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*pushTxnQueue).MaybeWait(0xc421dc8a20, 0x2b48845f3000, 0xc422ab5a70, 0xc4200efc80, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/push_txn_queue.go:305 +0x1004 github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc422ab5a70, 0x14a734b080dd5ad0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2541 +0x5c3 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc422ab59e0, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc420935850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc422ab5980, 0xc423035ce8, 0xc422ab5980, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc422ab5980, 0xc423035ce8, 0x1f, 0x0, 0xc421718340) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc421dfcff0, 0xc423035cc0, 0x2b48845f3000, 0xc422ab5890, 0xc42374ef98, 0x6b0fdf, 0x1ca1e48) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc421dfcff0, 0xc423035cc0, 0x2b48845f3000, 0xc422ab5890, 0x2876b60, 0xc423035d60, 0xc423c297a0) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204439 [select]: github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Server).controller(0xc4237e8700) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_server.go:730 +0x743 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.newHTTP2Server /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_server.go:161 +0x861 goroutine 204355 [select]: github.com/cockroachdb/cockroach/pkg/gossip.(*Gossip).bootstrap.func1() /go/src/github.com/cockroachdb/cockroach/pkg/gossip/gossip.go:1046 +0x47d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4207085c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204344 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000284) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2540) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204776 [IO wait]: net.runtime_pollWait(0x2b4885e446c0, 0x72, 0xf) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc421736228, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc421736228, 0xc423947400, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc4217361c0, 0xc423947400, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc421550350, 0xc423947400, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc42311f650, 0x2b488467d3d8, 0xc421550350, 0x5, 0xc421550350, 0x35) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc422a00e00, 0x1ca3917, 0xc422a00f20, 0xc421736228) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc422a00e00, 0xc420ac9000, 0x1000, 0x1000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc42324c240, 0xc420aad620, 0x5, 0x200, 0x930a40, 0xc422a00fd0, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc42324c240, 0xc420aad620, 0x5, 0x200, 0x5, 0x696652, 0xc42272aa60, 0x20) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc42324c240, 0xc420aad620, 0x5, 0x200, 0x0, 0x0, 0xc420380000) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recvMessage(0xc420aad600, 0xc42272aa60, 0x1a1c120, 0xff5301, 0x2d8b330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:957 +0x13e github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1Buf(0xc420aad600, 0xc42272aa60, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1007 +0x39 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1(0xc420aad600, 0xc423225088, 0x30) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1028 +0x85 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).simpleExec(0xc420aad600, 0xc42280e420, 0x2f, 0xc423225158, 0xc422f0f701, 0x2d8b330, 0xc421698ea0, 0x0, 0xc423225330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:620 +0x1d4 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).Exec(0xc420aad600, 0xc42280e420, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:877 +0x293 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).ExecContext(0xc420aad600, 0x286bbc0, 0xc4200155f0, 0xc42280e420, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn_go18.go:41 +0x214 database/sql.ctxDriverExec(0x286bbc0, 0xc4200155f0, 0x2b48845faa10, 0xc420aad600, 0xc42280e420, 0x2f, 0x2d8b330, 0x0, 0x0, 0x6b063e, ...) /usr/local/go/src/database/sql/ctxutil.go:31 +0x28d database/sql.(*DB).exec.func2() /usr/local/go/src/database/sql/sql.go:1199 +0x99 database/sql.withLock(0x285ce00, 0xc422454d90, 0xc423225460) /usr/local/go/src/database/sql/sql.go:2545 +0x65 database/sql.(*DB).exec(0xc423035720, 0x286bbc0, 0xc4200155f0, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x1, 0x0, ...) /usr/local/go/src/database/sql/sql.go:1200 +0x51c database/sql.(*DB).ExecContext(0xc423035720, 0x286bbc0, 0xc4200155f0, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x2860040, 0xc42272aa00, ...) /usr/local/go/src/database/sql/sql.go:1165 +0xbc database/sql.(*DB).Exec(0xc423035720, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/database/sql/sql.go:1179 +0x85 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).execStatement(0xc423225ee8, 0xc42280e3c0, 0x21, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:1037 +0x80 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).processTestFile(0xc423225ee8, 0xc4222ebba0, 0x1e, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:712 +0x3cbc github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).processTestFile(0xc4238f8dc0, 0xc4222ebba0, 0x1e, 0x0, 0xc423035720, 0xc422588900) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:86 +0x102 created by github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:171 +0xbd0 goroutine 204390 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).raftTickLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:3438 +0x337 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423b49340) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204297 [IO wait]: net.runtime_pollWait(0x2b4885e4e338, 0x72, 0x8) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b58e8, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b58e8, 0xc4204a6000, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc4221b5880, 0xc4204a6000, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc42000e180, 0xc4204a6000, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*MuxConn).Read(0xc4209170e0, 0xc4204a6000, 0x400, 0x400, 0x1b6c720, 0x0, 0x2b488467d400) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux/cmux.go:218 +0x113 crypto/tls.(*block).readFromUntil(0xc421f6ee70, 0x2b488467d400, 0xc4209170e0, 0x5, 0xc4209170e0, 0x6f6500) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc421d4c380, 0x1ca3917, 0xc421d4c4a0, 0xc42244e000) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc421d4c380, 0xc423854000, 0x8000, 0x8000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc420a7e840, 0xc42174d7c8, 0x9, 0x9, 0x0, 0x0, 0xc421c19b20) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc420a7e840, 0xc42174d7c8, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc420a7e840, 0xc42174d7c8, 0x9, 0x9, 0x2858680, 0xc423cb51d0, 0xc421c19bc8) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.readFrameHeader(0xc42174d7c8, 0x9, 0x9, 0x28536c0, 0xc420a7e840, 0x0, 0x0, 0x2853dc0, 0xc420014130) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:237 +0x7b github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.(*Framer).ReadFrame(0xc42174d790, 0x34, 0x34, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:469 +0xa4 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*framer).readFrame(0xc421f6f410, 0xc423cb5110, 0xc423cb5110, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http_util.go:508 +0x2f github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Server).HandleStreams(0xc4237e8700, 0xc421f6f4a0, 0x1ca2c08) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_server.go:307 +0x2bf github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).serveStreams(0xc4203a9ad0, 0x2872d40, 0xc4237e8700) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:486 +0x162 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).serveHTTP2Transport(0xc4203a9ad0, 0x28737c0, 0xc421d4c380, 0x285b5c0, 0xc420581d90) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:467 +0x429 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).handleRawConn(0xc4203a9ad0, 0x28756e0, 0xc4209170e0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:438 +0x4a4 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).Serve /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:407 +0x584 goroutine 204405 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a30a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204352 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000027d) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2660) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204408 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3120) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204388 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000288) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a26e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204422 [IO wait]: net.runtime_pollWait(0x2b488463fd50, 0x72, 0x0) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b4228, 0x72, 0x0, 0xc4223abf20) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b4228, 0xffffffffffffffff, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).accept(0xc4221b41c0, 0x0, 0x2859500, 0xc4223abf20) /usr/local/go/src/net/fd_unix.go:430 +0x1e5 net.(*TCPListener).accept(0xc42000e040, 0xc422268e68, 0xf2221c, 0x6dcf70) /usr/local/go/src/net/tcpsock_posix.go:136 +0x2e net.(*TCPListener).Accept(0xc42000e040, 0x1ca1f40, 0xc4225b2000, 0x2875800, 0xc4205ee640) /usr/local/go/src/net/tcpsock.go:228 +0x49 github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*cMux).Serve(0xc4225b2000, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux/cmux.go:124 +0x95 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func9.1() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:656 +0x2f sync.(*Once).Do(0xc420708520, 0xc420be2780) /usr/local/go/src/sync/once.go:44 +0xbe github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func9() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:657 +0x64 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4208489a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204249 [chan receive]: github.com/cockroachdb/cockroach/pkg/util/netutil.MakeServer.func2() /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:98 +0x70 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c100) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204346 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000285) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2580) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204381 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*idAllocator).start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/id_alloc.go:133 +0x79c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc422a59070) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204421 [select]: github.com/cockroachdb/cockroach/pkg/sql/distsqlrun.(*flowScheduler).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/distsqlrun/flow_scheduler.go:114 +0x3e1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4224c1890) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204416 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Server).startSampleEnvironment.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:854 +0x16b github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a32c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204192 [chan receive]: github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run(0xc4238f8dc0, 0xc4237d7540, 0x1a) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:175 +0xc29 github.com/cockroachdb/cockroach/pkg/sql_test.TestParallel.func1(0xc4203a9860) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:254 +0x10a testing.tRunner(0xc4203a9860, 0xc4237d7580) /usr/local/go/src/testing/testing.go:657 +0x96 created by testing.(*T).Run /usr/local/go/src/testing/testing.go:697 +0x2ca goroutine 204357 [chan receive]: github.com/cockroachdb/cockroach/pkg/storage/engine.(*RocksDB).open.func2(0xc4226068c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/engine/rocksdb.go:392 +0x44 created by github.com/cockroachdb/cockroach/pkg/storage/engine.(*RocksDB).open /go/src/github.com/cockroachdb/cockroach/pkg/storage/engine/rocksdb.go:393 +0x460 goroutine 204410 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3160) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204394 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startGossip.func4() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1373 +0x51d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc421e9bcc0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204772 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc4229de300, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c6e180, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc4229de300, 0x8, 0xc421c6e180, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3d40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3d40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3d40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3c70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc423a88b10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23558, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc422c23540, 0x2b48845f3000, 0xc423a88b10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23558, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).sendInternal(0xc422c23540, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23558, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:572 +0xad github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).send(0xc422c23540, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:721 +0x513 github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).(github.com/cockroachdb/cockroach/pkg/internal/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2710, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0x58 github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc42219b2f0, 0xc423cb0438, 0x0, 0x1b46200) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Run(0xc422c23540, 0xc423cb0438, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0xc6 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).fetch(0xc423cb0408, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:232 +0x257 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).nextKV(0xc423cb0408, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:291 +0x51 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).NextKey(0xc423cb0380, 0xc422ab4f00, 0x1, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:202 +0x3e github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).StartScan(0xc423cb0380, 0xc422c23540, 0xc422ab4f00, 0x1, 0x1, 0x2874c01, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:191 +0x199 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).initScan(0xc423cb0000, 0x5, 0x2) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:172 +0xf0 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).Next(0xc423cb0000, 0x1, 0xc422541444, 0x5) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:217 +0x1c0 github.com/cockroachdb/cockroach/pkg/sql.(*renderNode).Next(0xc4214b5e60, 0xc423cb0008, 0x2, 0xc42146cde0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/render.go:122 +0x38 github.com/cockroachdb/cockroach/pkg/sql.(*groupNode).Next(0xc4200efb00, 0x2877380, 0xc4203d1e80, 0xc42219d130) /go/src/github.com/cockroachdb/cockroach/pkg/sql/group.go:334 +0x5d2 github.com/cockroachdb/cockroach/pkg/sql.(*limitNode).Next(0xc422f7a3f0, 0x1c9ff88, 0xc421dfc9b0, 0xc4203d1e80) /go/src/github.com/cockroachdb/cockroach/pkg/sql/limit.go:175 +0x5d github.com/cockroachdb/cockroach/pkg/sql.(*subquery).doEval(0xc421dfc9b0, 0x2877b00, 0x2d8ae00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:165 +0x5d8 github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).subqueryNode(0xc4213fc7c0, 0xc421dfc9b0, 0xc42219d270, 0x10f8807) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:246 +0x9a github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).(github.com/cockroachdb/cockroach/pkg/sql.subqueryNode)-fm(0xc421dfc9b0, 0x0, 0x68809e) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:269 +0x34 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).VisitPre(0xc421dfcaf0, 0x286bec0, 0xc421dfc9b0, 0xc421dfc901, 0xc42219d2f8, 0x68f983) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:439 +0x1b0 github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExpr(0x285d540, 0xc421dfcaf0, 0x286bec0, 0xc421dfc9b0, 0xc42219d370, 0x286bec0, 0x10f8301) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:559 +0x4c github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExprConst(0x285d540, 0xc421dfcaf0, 0x286bec0, 0xc421dfc9b0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:572 +0x49 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).expr(0xc421dfcaf0, 0x1c27390, 0x6, 0x0, 0x0, 0x0, 0x286bec0, 0xc421dfc9b0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:422 +0xb3 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc421dfcaf0, 0x2875200, 0xc4212c1380) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:117 +0x318 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc421dfcaf0, 0x2874de0, 0xc4232bcb00) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:307 +0x2ba6 github.com/cockroachdb/cockroach/pkg/sql.walkPlan(0x2874de0, 0xc4232bcb00, 0xc4203d1f10, 0x0, 0x0, 0x0, 0xc4203d1f00, 0x2d47e58, 0xc400000000) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:58 +0xcf github.com/cockroachdb/cockroach/pkg/sql.(*planner).startSubqueryPlans(0xc4213fb0e8, 0x2874de0, 0xc4232bcb00, 0xc42206c820, 0xc423909940) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:271 +0x164 github.com/cockroachdb/cockroach/pkg/sql.(*planner).startPlan(0xc4213fb0e8, 0x2874de0, 0xc4232bcb00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/plan.go:218 +0x43 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execClassic(0xc423582300, 0xc4213fb0e8, 0x2874de0, 0xc4232bcb00, 0xc42219e298, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1291 +0x4c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmt(0xc423582300, 0x286ca40, 0xc422bf8f00, 0xc4213fb0e8, 0xc422190101, 0xed0465746, 0x20c234f1, 0x2d46380, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1417 +0x22c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtInOpenTxn(0xc423582300, 0x286ca40, 0xc422bf8f00, 0xc4213fb0e8, 0x101, 0xc4213fafe8, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1167 +0x2bd github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtsInCurrentTxn(0xc423582300, 0xc422f0f8a0, 0x1, 0x1, 0xc4213fb0e8, 0xc4213fafe8, 0x10101, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:902 +0x7f0 github.com/cockroachdb/cockroach/pkg/sql.runTxnAttempt(0xc423582300, 0xc4213fb0e8, 0x1, 0xc4213fafe8, 0xc422f0f900, 0xc422f0f8a0, 0x1, 0x1, 0xc42058a601, 0x185, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:816 +0xf6 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest.func2(0xc422c23540, 0xc422f0f900, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:655 +0x1bc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Exec(0xc422c23540, 0xc420db0101, 0xc4238f9e00, 0xc420dbe460, 0xc400000000, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:505 +0xc1 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest(0xc423582300, 0xc4213faf80, 0xc423c46614, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:677 +0x583 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).ExecuteStatements(0xc423582300, 0xc4213faf80, 0xc423c46614, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xc423c46600) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:490 +0x12d github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).executeStatements(0xc4214cd600, 0x2b48845f3000, 0xc4214d3260, 0xc423c46614, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xa7cd01, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:819 +0x94 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).handleSimpleQuery(0xc4214cd600, 0x2b48845f3000, 0xc4214d3260, 0xc4214cd628, 0x34, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:491 +0xc9 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).serve(0xc4214cd600, 0x2b48845f3000, 0xc4214d3260, 0xc420189e40, 0x5400, 0xc421d86160, 0x2b488463eee0, 0xc4222c12c0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:419 +0x89b github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*Server).ServeConn(0xc421d86000, 0x2b488463eee0, 0xc4222c12c0, 0x28737c0, 0xc422a00a80, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/server.go:415 +0x917 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8.1(0x28756e0, 0xc42038f5e0) /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:543 +0x106 github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith.func1(0xc42023c8c0, 0xc42000e038, 0x28756e0, 0xc42038f5e0, 0xc421f72e20) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:136 +0x95 created by github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:138 +0x239 goroutine 204575 [chan receive]: database/sql.(*DB).connectionOpener(0xc4209177c0) /usr/local/go/src/database/sql/sql.go:837 +0x4a created by database/sql.Open /usr/local/go/src/database/sql/sql.go:582 +0x212 goroutine 204619 [chan receive]: database/sql.(*DB).connectionOpener(0xc4236452c0) /usr/local/go/src/database/sql/sql.go:837 +0x4a created by database/sql.Open /usr/local/go/src/database/sql/sql.go:582 +0x212 goroutine 204754 [chan receive]: database/sql.(*DB).connectionOpener(0xc423035720) /usr/local/go/src/database/sql/sql.go:837 +0x4a created by database/sql.Open /usr/local/go/src/database/sql/sql.go:582 +0x212 goroutine 204618 [IO wait]: net.runtime_pollWait(0x2b4885e4e7b8, 0x72, 0x9) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc422f4fcd8, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc422f4fcd8, 0xc422cb6800, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc422f4fc70, 0xc422cb6800, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc422f0c398, 0xc422cb6800, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc420adf200, 0x2b488467d3d8, 0xc422f0c398, 0x5, 0xc422f0c398, 0x35) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc420c02000, 0x1ca3917, 0xc420c02120, 0xc422f4fcd8) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc420c02000, 0xc4203b7000, 0x1000, 0x1000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc420af47e0, 0xc42229e860, 0x5, 0x200, 0x930a40, 0xc420c021d0, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc420af47e0, 0xc42229e860, 0x5, 0x200, 0x5, 0x696652, 0xc422c69980, 0x20) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc420af47e0, 0xc42229e860, 0x5, 0x200, 0x0, 0x0, 0xc420080000) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recvMessage(0xc42229e840, 0xc422c69980, 0x1a1c120, 0xff5301, 0x2d8b330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:957 +0x13e github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1Buf(0xc42229e840, 0xc422c69980, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1007 +0x39 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1(0xc42229e840, 0xc420623088, 0x30) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1028 +0x85 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).simpleExec(0xc42229e840, 0xc42142bbf0, 0x2f, 0xc420623158, 0xc4219f6501, 0x2d8b330, 0xc422fe31e0, 0x0, 0xc420623330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:620 +0x1d4 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).Exec(0xc42229e840, 0xc42142bbf0, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:877 +0x293 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).ExecContext(0xc42229e840, 0x286bbc0, 0xc4200155f0, 0xc42142bbf0, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn_go18.go:41 +0x214 database/sql.ctxDriverExec(0x286bbc0, 0xc4200155f0, 0x2b48845faa10, 0xc42229e840, 0xc42142bbf0, 0x2f, 0x2d8b330, 0x0, 0x0, 0x6b063e, ...) /usr/local/go/src/database/sql/ctxutil.go:31 +0x28d database/sql.(*DB).exec.func2() /usr/local/go/src/database/sql/sql.go:1199 +0x99 database/sql.withLock(0x285ce00, 0xc4203dee70, 0xc420623460) /usr/local/go/src/database/sql/sql.go:2545 +0x65 database/sql.(*DB).exec(0xc4209177c0, 0x286bbc0, 0xc4200155f0, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x1, 0x0, ...) /usr/local/go/src/database/sql/sql.go:1200 +0x51c database/sql.(*DB).ExecContext(0xc4209177c0, 0x286bbc0, 0xc4200155f0, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x2860040, 0xc422c69960, ...) /usr/local/go/src/database/sql/sql.go:1165 +0xbc database/sql.(*DB).Exec(0xc4209177c0, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/database/sql/sql.go:1179 +0x85 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).execStatement(0xc420623ee8, 0xc42142bb60, 0x21, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:1037 +0x80 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).processTestFile(0xc420623ee8, 0xc423addfe0, 0x1e, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:712 +0x3cbc github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).processTestFile(0xc4238f8dc0, 0xc423addfe0, 0x1e, 0x0, 0xc4209177c0, 0xc422588900) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:86 +0x102 created by github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:171 +0xbd0 goroutine 204404 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3080) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205305 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).heartbeatLoop(0xc420aa9600, 0x2b48845f3000, 0xc4237a93e0, 0xf548c6b8f052c631, 0xedfb8ab65429bcba) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:651 +0x3d9 github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).updateState.func2(0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:923 +0x51 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask.func1(0xc42023c8c0, 0x24f2df9, 0x16, 0x39c, 0x2876b60, 0xc421df8f00, 0xc4207e2ac0, 0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:283 +0xdf created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:284 +0x14a goroutine 204391 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startCoalescedHeartbeatsLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:3469 +0x167 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423b49350) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204722 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc421dc6f00, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc42255a000, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc421dc6f00, 0x8, 0xc42255a000, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421397040, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421397040, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421397040, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421396f70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4236a76b0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421396ea0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc422c23cc0, 0x2b48845f3000, 0xc4236a76b0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23cd8, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).sendInternal(0xc422c23cc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23cd8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:572 +0xad github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).send(0xc422c23cc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:721 +0x513 github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).(github.com/cockroachdb/cockroach/pkg/internal/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2710, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0x58 github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc4207dd2f0, 0xc420eb8438, 0x0, 0x1b46200) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Run(0xc422c23cc0, 0xc420eb8438, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0xc6 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).fetch(0xc420eb8408, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:232 +0x257 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).nextKV(0xc420eb8408, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:291 +0x51 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).NextKey(0xc420eb8380, 0xc4236a7b90, 0x1, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:202 +0x3e github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).StartScan(0xc420eb8380, 0xc422c23cc0, 0xc4236a7b90, 0x1, 0x1, 0x2874c01, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:191 +0x199 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).initScan(0xc420eb8000, 0x5, 0x2) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:172 +0xf0 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).Next(0xc420eb8000, 0x1, 0xc422541444, 0x5) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:217 +0x1c0 github.com/cockroachdb/cockroach/pkg/sql.(*renderNode).Next(0xc4202e9d40, 0xc420eb8008, 0x2, 0xc42146cde0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/render.go:122 +0x38 github.com/cockroachdb/cockroach/pkg/sql.(*groupNode).Next(0xc420eb4c00, 0x2877380, 0xc4219f7e20, 0xc4207df130) /go/src/github.com/cockroachdb/cockroach/pkg/sql/group.go:334 +0x5d2 github.com/cockroachdb/cockroach/pkg/sql.(*limitNode).Next(0xc42097f7a0, 0x1c9ff88, 0xc42217d180, 0xc4219f7e20) /go/src/github.com/cockroachdb/cockroach/pkg/sql/limit.go:175 +0x5d github.com/cockroachdb/cockroach/pkg/sql.(*subquery).doEval(0xc42217d180, 0x2877b00, 0x2d8ae00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:165 +0x5d8 github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).subqueryNode(0xc42275b2c0, 0xc42217d180, 0xc4207df270, 0x10f8807) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:246 +0x9a github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).(github.com/cockroachdb/cockroach/pkg/sql.subqueryNode)-fm(0xc42217d180, 0x0, 0x68809e) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:269 +0x34 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).VisitPre(0xc42217d2c0, 0x286bec0, 0xc42217d180, 0xc42217d101, 0xc4207df2f8, 0x68f983) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:439 +0x1b0 github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExpr(0x285d540, 0xc42217d2c0, 0x286bec0, 0xc42217d180, 0xc4207df370, 0x286bec0, 0x10f8301) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:559 +0x4c github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExprConst(0x285d540, 0xc42217d2c0, 0x286bec0, 0xc42217d180) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:572 +0x49 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).expr(0xc42217d2c0, 0x1c27390, 0x6, 0x0, 0x0, 0x0, 0x286bec0, 0xc42217d180, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:422 +0xb3 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc42217d2c0, 0x2875200, 0xc4222ada40) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:117 +0x318 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc42217d2c0, 0x2874de0, 0xc420961340) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:307 +0x2ba6 github.com/cockroachdb/cockroach/pkg/sql.walkPlan(0x2874de0, 0xc420961340, 0xc4219f7eb0, 0x0, 0x0, 0x0, 0xc4219f7ea0, 0x2d47e58, 0xc400000000) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:58 +0xcf github.com/cockroachdb/cockroach/pkg/sql.(*planner).startSubqueryPlans(0xc422759be8, 0x2874de0, 0xc420961340, 0xc422bb5a00, 0xc423909880) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:271 +0x164 github.com/cockroachdb/cockroach/pkg/sql.(*planner).startPlan(0xc422759be8, 0x2874de0, 0xc420961340, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/plan.go:218 +0x43 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execClassic(0xc423582300, 0xc422759be8, 0x2874de0, 0xc420961340, 0xc4207e0298, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1291 +0x4c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmt(0xc423582300, 0x286ca40, 0xc42217cb40, 0xc422759be8, 0xc4207e0001, 0xed0465746, 0x20c9cdf3, 0x2d46380, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1417 +0x22c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtInOpenTxn(0xc423582300, 0x286ca40, 0xc42217cb40, 0xc422759be8, 0x101, 0xc422759ae8, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1167 +0x2bd github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtsInCurrentTxn(0xc423582300, 0xc4219f7a20, 0x1, 0x1, 0xc422759be8, 0xc422759ae8, 0x101, 0x3, 0xc422bb5a00, 0xc423908e40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:902 +0x7f0 github.com/cockroachdb/cockroach/pkg/sql.runTxnAttempt(0xc423582300, 0xc422759be8, 0x1, 0xc422759ae8, 0xc4219f7a70, 0xc4219f7a20, 0x1, 0x1, 0xc4207e0d00, 0xa7cd32, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:816 +0xf6 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest.func2(0xc422c23cc0, 0xc4219f7a70, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:655 +0x1bc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Exec(0xc422c23cc0, 0xc422320101, 0xc4238f9e00, 0xc422324ee0, 0xc400000000, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:505 +0xc1 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest(0xc423582300, 0xc422759a80, 0xc4220b46d4, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:677 +0x583 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).ExecuteStatements(0xc423582300, 0xc422759a80, 0xc4220b46d4, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xc4220b4600) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:490 +0x12d github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).executeStatements(0xc420da5a00, 0x2b48845f3000, 0xc421f164e0, 0xc4220b46d4, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xa7cd01, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:819 +0x94 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).handleSimpleQuery(0xc420da5a00, 0x2b48845f3000, 0xc421f164e0, 0xc420da5a28, 0x34, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:491 +0xc9 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).serve(0xc420da5a00, 0x2b48845f3000, 0xc421f164e0, 0xc4238d9440, 0x5400, 0xc421d86160, 0x2b488463eee0, 0xc4221ecf40, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:419 +0x89b github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*Server).ServeConn(0xc421d86000, 0x2b488463eee0, 0xc4221ecf40, 0x28737c0, 0xc420069180, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/server.go:415 +0x917 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8.1(0x28756e0, 0xc421f2f180) /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:543 +0x106 github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith.func1(0xc42023c8c0, 0xc42000e038, 0x28756e0, 0xc421f2f180, 0xc421f72e20) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:136 +0x95 created by github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:138 +0x239 goroutine 204395 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startGossip.func4() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1373 +0x51d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc421e9bd10) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204253 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c2e0, 0xc42158e150, 0x1a6a280, 0x2835b30, 0x1b45300) <autogenerated>:9 +0x7a net/http.(*Server).Serve(0xc420aa8160, 0x286ae00, 0xc423c6c2e0, 0x0, 0x0) /usr/local/go/src/net/http/server.go:2643 +0x228 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func4() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:504 +0x3c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c360) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204347 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000028c) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a25a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205263 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).heartbeatLoop(0xc420aa9600, 0x2b48845f3000, 0xc422ab5c80, 0xd5452890458c1fdd, 0x1dc60e3b7a60d997) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:651 +0x3d9 github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).updateState.func2(0x2b48845f3000, 0xc422ab4930) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:923 +0x51 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask.func1(0xc42023c8c0, 0x24f2df9, 0x16, 0x39c, 0x2876b60, 0xc4230355e0, 0xc420bab580, 0x2b48845f3000, 0xc422ab4930) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:283 +0xdf created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:284 +0x14a goroutine 205264 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc4229dec00, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c6e900, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc4229dec00, 0x8, 0xc421c6e900, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc422ab5380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc423c6cba0, 0x2b48845f3000, 0xc422ab5380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run.func1(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:452 +0x6e github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc421c6e720, 0xc423237800, 0x0, 0x28740c0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run(0xc423c6cba0, 0x2b48845f3000, 0xc422ab5380, 0xc423237800, 0x1, 0xc421c7e510) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:454 +0xb2 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).maybePushTransactions(0xc422820090, 0x2b48845f3000, 0xc422ab5380, 0xc422f7a990, 0x1, 0x1, 0x14a734b080d85855, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:198 +0xac0 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).processWriteIntentError(0xc422820090, 0x2b48845f3000, 0xc422ab5380, 0xc421dfceb0, 0x28743c0, 0xc422ab4fc0, 0x14a734b080d85855, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:86 +0x11a github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc422ab5380, 0x14a734b080bc5a01, 0x1, 0x100000001, 0x1, 0x8, 0x0, 0xc4226f3ee0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2612 +0xb28 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc422ab5230, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4226f3ee0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc421017850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc422ab5200, 0xc423035928, 0xc422ab5200, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc422ab5200, 0xc423035928, 0x1f, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc421dfcc80, 0xc423035900, 0x2b48845f3000, 0xc422ab5170, 0xc42374ef98, 0x6b0fdf, 0x1ca1e48) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc421dfcc80, 0xc423035900, 0x2b48845f3000, 0xc422ab5170, 0x2876b60, 0xc4230359a0, 0xc423c29440) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 205306 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc423a6df80, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c80040, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc423a6df80, 0x8, 0xc421c80040, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4237a91d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc423c6cba0, 0x2b48845f3000, 0xc4237a91d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run.func1(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:452 +0x6e github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc4207e3f00, 0xc4224bd500, 0x0, 0x28740c0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run(0xc423c6cba0, 0x2b48845f3000, 0xc4237a91d0, 0xc4224bd500, 0x1, 0xc4211e1800) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:454 +0xb2 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).maybePushTransactions(0xc422820090, 0x2b48845f3000, 0xc4237a91d0, 0xc423012b40, 0x1, 0x1, 0x14a734b080d407fd, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:198 +0xac0 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).processWriteIntentError(0xc422820090, 0x2b48845f3000, 0xc4237a91d0, 0xc42138e0f0, 0x28743c0, 0xc4237a8d50, 0x14a734b080d407fd, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:86 +0x11a github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc4237a91d0, 0x14a734b080bc5a01, 0x1, 0x100000001, 0x1, 0x8, 0x0, 0xc4203a9c70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2612 +0xb28 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc4237a90b0, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4203a9c70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc4214c1850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc4237a9020, 0xc421df91a8, 0xc4237a9020, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc4237a9020, 0xc421df91a8, 0x1f, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc421e9b180, 0xc421df9180, 0x2b48845f3000, 0xc4237a8f30, 0xe81c6f, 0x2b48845f3000, 0xc423c49290) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc421e9b180, 0xc421df9180, 0x2b48845f3000, 0xc4237a8f30, 0x2876b60, 0xc421df9220, 0xc423caf440) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204721 [IO wait]: net.runtime_pollWait(0x2b4885e44000, 0x72, 0xc) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc421eba3e8, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc421eba3e8, 0xc423122800, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc421eba380, 0xc423122800, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc42095c1f8, 0xc423122800, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc423047920, 0x2b488467d3d8, 0xc42095c1f8, 0x5, 0xc42095c1f8, 0x35) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc420069880, 0x1ca3917, 0xc4200699a0, 0xc421eba3e8) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc420069880, 0xc423917000, 0x1000, 0x1000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc422e81860, 0xc423153ba0, 0x5, 0x200, 0x930a40, 0xc420069a50, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc422e81860, 0xc423153ba0, 0x5, 0x200, 0x5, 0x696652, 0xc4219fef40, 0x20) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc422e81860, 0xc423153ba0, 0x5, 0x200, 0x0, 0x0, 0xc420080000) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recvMessage(0xc423153b80, 0xc4219fef40, 0x1a1c120, 0xff5301, 0x2d8b330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:957 +0x13e github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1Buf(0xc423153b80, 0xc4219fef40, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1007 +0x39 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1(0xc423153b80, 0xc4204bb088, 0x30) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1028 +0x85 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).simpleExec(0xc423153b80, 0xc42091ba70, 0x2f, 0xc4204bb158, 0xc4219f7801, 0x2d8b330, 0xc422d83860, 0x0, 0xc4204bb330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:620 +0x1d4 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).Exec(0xc423153b80, 0xc42091ba70, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:877 +0x293 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).ExecContext(0xc423153b80, 0x286bbc0, 0xc4200155f0, 0xc42091ba70, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn_go18.go:41 +0x214 database/sql.ctxDriverExec(0x286bbc0, 0xc4200155f0, 0x2b48845faa10, 0xc423153b80, 0xc42091ba70, 0x2f, 0x2d8b330, 0x0, 0x0, 0x6b063e, ...) /usr/local/go/src/database/sql/ctxutil.go:31 +0x28d database/sql.(*DB).exec.func2() /usr/local/go/src/database/sql/sql.go:1199 +0x99 database/sql.withLock(0x285ce00, 0xc421d658f0, 0xc4204bb460) /usr/local/go/src/database/sql/sql.go:2545 +0x65 database/sql.(*DB).exec(0xc4236452c0, 0x286bbc0, 0xc4200155f0, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x1, 0x0, ...) /usr/local/go/src/database/sql/sql.go:1200 +0x51c database/sql.(*DB).ExecContext(0xc4236452c0, 0x286bbc0, 0xc4200155f0, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x2860040, 0xc4219fef20, ...) /usr/local/go/src/database/sql/sql.go:1165 +0xbc database/sql.(*DB).Exec(0xc4236452c0, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/database/sql/sql.go:1179 +0x85 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).execStatement(0xc4204bbee8, 0xc42091b9b0, 0x21, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:1037 +0x80 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).processTestFile(0xc4204bbee8, 0xc421f35c80, 0x1e, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:712 +0x3cbc github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).processTestFile(0xc4238f8dc0, 0xc421f35c80, 0x1e, 0x0, 0xc4236452c0, 0xc422588900) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:86 +0x102 created by github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:171 +0xbd0 goroutine 204343 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000027e) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2520) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 I170227 17:20:07.073215 1 rand.go:76 Random seed: -3520956507990538349 ``` Please assign, take a look and update the issue accordingly.
1.0
teamcity: failed tests on master: test (proposer evaluated kv)/TestParallel, test (proposer evaluated kv)/TestParallel/subquery_retry - The following tests appear to have failed: [#163594](https://teamcity.cockroachdb.com/viewLog.html?buildId=163594): ``` --- FAIL: test (proposer evaluated kv)/TestParallel (0.000s) Test ended in panic. --- FAIL: test (proposer evaluated kv)/TestParallel/subquery_retry (0.000s) Test ended in panic. ------- Stdout: ------- --- queries start here --- done: partestdata/subquery_retry/setup: 2 tests, 0 failures --- queries start here --- queries start here --- queries start here panic: test timed out after 2m0s goroutine 205330 [running]: testing.startAlarm.func1() /usr/local/go/src/testing/testing.go:1023 +0xf9 created by time.goFunc /usr/local/go/src/time/sleep.go:170 +0x44 goroutine 1 [chan receive]: testing.(*T).Run(0xc4203a8d00, 0x1c2f157, 0xc, 0x1ca1750, 0xc4200e3c01) /usr/local/go/src/testing/testing.go:698 +0x2f4 testing.runTests.func1(0xc4203a8d00) /usr/local/go/src/testing/testing.go:882 +0x67 testing.tRunner(0xc4203a8d00, 0xc4200e3db0) /usr/local/go/src/testing/testing.go:657 +0x96 testing.runTests(0xc4203ab6e0, 0x284dd80, 0x7e, 0x7e, 0x2d46380) /usr/local/go/src/testing/testing.go:888 +0x2c1 testing.(*M).Run(0xc42061df20, 0x2d8ae00) /usr/local/go/src/testing/testing.go:822 +0xfc github.com/cockroachdb/cockroach/pkg/sql_test.TestMain(0xc4200e3f20) /go/src/github.com/cockroachdb/cockroach/pkg/sql/main_test.go:227 +0xb4 main.main() github.com/cockroachdb/cockroach/pkg/sql/_test/_testmain.go:640 +0xf7 goroutine 17 [syscall, 1 minutes, locked to thread]: runtime.goexit() /usr/local/go/src/runtime/asm_amd64.s:2197 +0x1 goroutine 5 [runnable]: github.com/cockroachdb/cockroach/pkg/util/log.(*loggingT).flushDaemon(0x2d47d80) /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:1012 +0x77 created by github.com/cockroachdb/cockroach/pkg/util/log.init.1 /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:583 +0xd2 goroutine 6 [chan receive]: github.com/cockroachdb/cockroach/pkg/util/log.(*loggingT).gcDaemon(0x2d47d80) /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:1039 +0x5b created by github.com/cockroachdb/cockroach/pkg/util/log.init.1 /go/src/github.com/cockroachdb/cockroach/pkg/util/log/clog.go:584 +0xf6 goroutine 204191 [chan receive]: testing.(*T).Run(0xc4203a96c0, 0xc4237d754c, 0xe, 0xc4237d7580, 0x2) /usr/local/go/src/testing/testing.go:698 +0x2f4 github.com/cockroachdb/cockroach/pkg/sql_test.TestParallel(0xc4203a96c0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:256 +0x26b testing.tRunner(0xc4203a96c0, 0x1ca1750) /usr/local/go/src/testing/testing.go:657 +0x96 created by testing.(*T).Run /usr/local/go/src/testing/testing.go:697 +0x2ca goroutine 204250 [chan receive]: github.com/cockroachdb/cockroach/pkg/util/netutil.MakeServer.func2() /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:98 +0x70 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c140) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204386 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000282) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a26a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204393 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).Start.func3() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1244 +0x165 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2760) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204345 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000028a) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2560) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204426 [IO wait]: net.runtime_pollWait(0x2b4884614290, 0x72, 0x7) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b5878, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b5878, 0xc422cb7800, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc4221b5810, 0xc422cb7800, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc42095c000, 0xc422cb7800, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc421f6e450, 0x2b488467d3d8, 0xc42095c000, 0x5, 0xc42095c000, 0xc423cb54a0) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc421d4c000, 0x1ca3917, 0xc421d4c120, 0x0) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc421d4c000, 0xc422a3e000, 0x8000, 0x8000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc4239e78c0, 0xc421c2b968, 0x9, 0x9, 0x0, 0x0, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc4239e78c0, 0xc421c2b968, 0x9, 0x9, 0x9, 0x1ca2cf0, 0x0, 0xc422264db8) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc4239e78c0, 0xc421c2b968, 0x9, 0x9, 0xc420014130, 0x105000000000002, 0x2) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.readFrameHeader(0xc421c2b968, 0x9, 0x9, 0x28536c0, 0xc4239e78c0, 0x0, 0x0, 0x0, 0x2853dc0) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:237 +0x7b github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.(*Framer).ReadFrame(0xc421c2b930, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:469 +0xa4 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*framer).readFrame(0xc4205daa50, 0xc423cb5440, 0xc423cb5440, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http_util.go:508 +0x2f github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Client).reader(0xc420393600) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:994 +0xb1 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.newHTTP2Client /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:228 +0xb0f goroutine 204384 [select]: github.com/cockroachdb/cockroach/pkg/rpc.(*Context).runHeartbeat(0xc421fd7e80, 0xc423b96180, 0xc423b49760, 0xf, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/rpc/context.go:351 +0x744 github.com/cockroachdb/cockroach/pkg/rpc.(*Context).GRPCDial.func1.3.1() /go/src/github.com/cockroachdb/cockroach/pkg/rpc/context.go:294 +0x5d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc42026ab40) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204256 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c240, 0x1ca2bd0, 0xc4203a9ad0, 0x28756e0, 0xc4209170e0) <autogenerated>:9 +0x7a github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).Serve(0xc4203a9ad0, 0x286ae00, 0xc423c6c240, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:377 +0x186 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func7() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:526 +0x43 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c3c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204354 [chan receive]: github.com/cockroachdb/cockroach/pkg/gossip.(*server).start.func3() /go/src/github.com/cockroachdb/cockroach/pkg/gossip/server.go:366 +0x66 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c460) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204406 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a30c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204577 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc423a6cb80, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc4207e37e0, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc423a6cb80, 0x8, 0xc4207e37e0, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a9790, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a9790, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a9790, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc4237a8e10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4203a95f0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4236a60c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23a58, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc422c23a40, 0x2b48845f3000, 0xc4236a60c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23a58, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).sendInternal(0xc422c23a40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23a58, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:572 +0xad github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).send(0xc422c23a40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:721 +0x513 github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).(github.com/cockroachdb/cockroach/pkg/internal/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2710, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0x58 github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc4221232f0, 0xc4205f8438, 0x0, 0x1b46200) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Run(0xc422c23a40, 0xc4205f8438, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0xc6 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).fetch(0xc4205f8408, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:232 +0x257 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).nextKV(0xc4205f8408, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:291 +0x51 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).NextKey(0xc4205f8380, 0xc4237a8c30, 0x1, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:202 +0x3e github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).StartScan(0xc4205f8380, 0xc422c23a40, 0xc4237a8c30, 0x1, 0x1, 0x2874c01, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:191 +0x199 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).initScan(0xc4205f8000, 0x5, 0x2) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:172 +0xf0 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).Next(0xc4205f8000, 0x1, 0xc422541444, 0x5) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:217 +0x1c0 github.com/cockroachdb/cockroach/pkg/sql.(*renderNode).Next(0xc4227f7680, 0xc4205f8008, 0x2, 0xc42146cde0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/render.go:122 +0x38 github.com/cockroachdb/cockroach/pkg/sql.(*groupNode).Next(0xc421614900, 0x2877380, 0xc4211e0db0, 0xc422125130) /go/src/github.com/cockroachdb/cockroach/pkg/sql/group.go:334 +0x5d2 github.com/cockroachdb/cockroach/pkg/sql.(*limitNode).Next(0xc423012900, 0x1c9ff88, 0xc4211f6410, 0xc4211e0db0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/limit.go:175 +0x5d github.com/cockroachdb/cockroach/pkg/sql.(*subquery).doEval(0xc4211f6410, 0x2877b00, 0x2d8ae00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:165 +0x5d8 github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).subqueryNode(0xc4200712c0, 0xc4211f6410, 0xc422125270, 0x10f8807) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:246 +0x9a github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).(github.com/cockroachdb/cockroach/pkg/sql.subqueryNode)-fm(0xc4211f6410, 0x0, 0x68809e) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:269 +0x34 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).VisitPre(0xc4211f6e60, 0x286bec0, 0xc4211f6410, 0xc4211f6401, 0xc4221252f8, 0x68f983) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:439 +0x1b0 github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExpr(0x285d540, 0xc4211f6e60, 0x286bec0, 0xc4211f6410, 0xc422125370, 0x286bec0, 0x10f8301) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:559 +0x4c github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExprConst(0x285d540, 0xc4211f6e60, 0x286bec0, 0xc4211f6410) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:572 +0x49 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).expr(0xc4211f6e60, 0x1c27390, 0x6, 0x0, 0x0, 0x0, 0x286bec0, 0xc4211f6410, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:422 +0xb3 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc4211f6e60, 0x2875200, 0xc42146d5c0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:117 +0x318 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc4211f6e60, 0x2874de0, 0xc42017b340) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:307 +0x2ba6 github.com/cockroachdb/cockroach/pkg/sql.walkPlan(0x2874de0, 0xc42017b340, 0xc4211e0e40, 0x0, 0x0, 0x0, 0xc4211e0e30, 0x2d47e58, 0xc400000000) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:58 +0xcf github.com/cockroachdb/cockroach/pkg/sql.(*planner).startSubqueryPlans(0xc42006fbe8, 0x2874de0, 0xc42017b340, 0xc420842680, 0xc4232c0cc0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:271 +0x164 github.com/cockroachdb/cockroach/pkg/sql.(*planner).startPlan(0xc42006fbe8, 0x2874de0, 0xc42017b340, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/plan.go:218 +0x43 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execClassic(0xc423582300, 0xc42006fbe8, 0x2874de0, 0xc42017b340, 0xc422126298, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1291 +0x4c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmt(0xc423582300, 0x286ca40, 0xc42254bea0, 0xc42006fbe8, 0xc422120101, 0xed0465746, 0x20bdcbfc, 0x2d46380, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1417 +0x22c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtInOpenTxn(0xc423582300, 0x286ca40, 0xc42254bea0, 0xc42006fbe8, 0x101, 0xc42006fae8, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1167 +0x2bd github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtsInCurrentTxn(0xc423582300, 0xc4219f6700, 0x1, 0x1, 0xc42006fbe8, 0xc42006fae8, 0x10101, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:902 +0x7f0 github.com/cockroachdb/cockroach/pkg/sql.runTxnAttempt(0xc423582300, 0xc42006fbe8, 0x1, 0xc42006fae8, 0xc4219f6750, 0xc4219f6700, 0x1, 0x1, 0xc4231cd101, 0x185, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:816 +0xf6 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest.func2(0xc422c23a40, 0xc4219f6750, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:655 +0x1bc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Exec(0xc422c23a40, 0xc422320101, 0xc4238f9e00, 0xc4223245b0, 0xc400000000, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:505 +0xc1 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest(0xc423582300, 0xc42006fa80, 0xc4211b1869, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:677 +0x583 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).ExecuteStatements(0xc423582300, 0xc42006fa80, 0xc4211b1869, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xc4211b1800) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:490 +0x12d github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).executeStatements(0xc422680400, 0x2b48845f3000, 0xc4208e6600, 0xc4211b1869, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xa7cd01, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:819 +0x94 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).handleSimpleQuery(0xc422680400, 0x2b48845f3000, 0xc4208e6600, 0xc422680428, 0x34, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:491 +0xc9 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).serve(0xc422680400, 0x2b48845f3000, 0xc4208e6600, 0xc4207f46a0, 0x5400, 0xc421d86160, 0x2b488463eee0, 0xc422262380, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:419 +0x89b github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*Server).ServeConn(0xc421d86000, 0x2b488463eee0, 0xc422262380, 0x28737c0, 0xc421e5f180, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/server.go:415 +0x917 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8.1(0x28756e0, 0xc422088820) /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:543 +0x106 github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith.func1(0xc42023c8c0, 0xc42000e038, 0x28756e0, 0xc422088820, 0xc421f72e20) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:136 +0x95 created by github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:138 +0x239 goroutine 204255 [chan receive]: github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func6() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:515 +0x88 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4225b20c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204350 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000289) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2620) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204349 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000027f) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a25e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204383 [select]: github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*addrConn).transportMonitor(0xc420466c00) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/clientconn.go:839 +0x666 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*ClientConn).resetAddrConn.func1(0xc420466c00) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/clientconn.go:586 +0x1d9 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*ClientConn).resetAddrConn /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/clientconn.go:587 +0x372 goroutine 204341 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000280) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a24e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204348 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000287) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a25c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204257 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c220, 0x1ca1e30, 0xc42023c8c0, 0xc42000e038, 0x28756e0) <autogenerated>:9 +0x7a github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith(0xc42000e038, 0xc42023c8c0, 0x286ae00, 0xc423c6c220, 0xc421f72e20, 0xc421e528c0, 0xc420020c00) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:115 +0x45 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:549 +0x1e1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4238eeab0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205322 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc42158cb40, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c80b40, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc42158cb40, 0x8, 0xc421c80b40, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc423a404e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4201f8030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc423c6cba0, 0x2b48845f3000, 0xc4201f8030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run.func1(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:452 +0x6e github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc421c809a0, 0xc4224bdc00, 0x0, 0x28740c0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run(0xc423c6cba0, 0x2b48845f3000, 0xc4201f8030, 0xc4224bdc00, 0x2, 0xc421c80980) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:454 +0xb2 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).maybePushTransactions(0xc422820090, 0x2b48845f3000, 0xc4201f8030, 0xc42230e000, 0x2, 0x2, 0x14a734b080e06cc8, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:198 +0xac0 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).processWriteIntentError(0xc422820090, 0x2b48845f3000, 0xc4201f8030, 0xc42138e460, 0x28743c0, 0xc4236a7c50, 0x14a734b080e06cc8, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:86 +0x11a github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc4201f8030, 0x14a734b080dcc596, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4213971e0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2612 +0xb28 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc4236a7ec0, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4213971e0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc42360b850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc4236a7e90, 0xc42023c528, 0xc4236a7e90, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc4236a7e90, 0xc42023c528, 0x1f, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc42217d4a0, 0xc42023c500, 0x2b48845f3000, 0xc4236a7e00, 0xe81c75, 0xc42023c8c0, 0x24f2fc5) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc42217d4a0, 0xc42023c500, 0x2b48845f3000, 0xc4236a7e00, 0x2876b60, 0xc42023c5a0, 0xc422b1f5c0) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204356 [select]: github.com/cockroachdb/cockroach/pkg/gossip.(*Gossip).manage.func1() /go/src/github.com/cockroachdb/cockroach/pkg/gossip/gossip.go:1075 +0x399 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4207085d0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204440 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).maybeAddToPurgatory.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:665 +0xb17 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc42272a440) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204389 [semacquire]: sync.runtime_Semacquire(0xc422f7a084) /usr/local/go/src/runtime/sema.go:47 +0x34 sync.(*WaitGroup).Wait(0xc422f7a078) /usr/local/go/src/sync/waitgroup.go:131 +0x7a github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Wait(0xc422f7a000) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:171 +0x31 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Wait-fm() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:3421 +0x2a github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423b49330) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204351 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000283) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2640) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204418 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Node).startWriteSummaries.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:735 +0x2c1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4224dc690) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204413 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Node).startComputePeriodicMetrics.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:698 +0x2a0 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3200) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204353 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000028b) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2680) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204252 [IO wait]: net.runtime_pollWait(0x2b4885e44240, 0x72, 0x0) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b4298, 0x72, 0x0, 0xc4216a6000) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b4298, 0xffffffffffffffff, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).accept(0xc4221b4230, 0x0, 0x2859500, 0xc4216a6000) /usr/local/go/src/net/fd_unix.go:430 +0x1e5 net.(*TCPListener).accept(0xc42000e058, 0xc4210cd930, 0xc420649f20, 0x10) /usr/local/go/src/net/tcpsock_posix.go:136 +0x2e net.(*TCPListener).Accept(0xc42000e058, 0x1ca1f38, 0xc4225b2040, 0xc421f22000, 0x6dec92ec9cfee5b6) /usr/local/go/src/net/tcpsock.go:228 +0x49 github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*cMux).Serve(0xc4225b2040, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux/cmux.go:124 +0x95 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func3() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:500 +0x2f github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c320) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204387 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000286) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a26c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204419 [select]: github.com/cockroachdb/cockroach/pkg/sql.(*SchemaChangeManager).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/schema_changer.go:740 +0x138d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a32e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205308 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*pushTxnQueue).MaybeWait(0xc421dc8a20, 0x2b48845f3000, 0xc423a40900, 0xc421614f00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/push_txn_queue.go:305 +0x1004 github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc423a40900, 0x14a734b080ee1c74, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2541 +0x5c3 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc423a40870, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc421325850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc423a40840, 0xc421df9ba8, 0xc423a40840, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc423a40840, 0xc421df9ba8, 0x1f, 0x6c1258, 0xf04380) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc42138e640, 0xc421df9b80, 0x2b48845f3000, 0xc423a40780, 0xe81c6f, 0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc42138e640, 0xc421df9b80, 0x2b48845f3000, 0xc423a40780, 0x2876b60, 0xc421df9c20, 0xc422678600) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204427 [select]: github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Client).controller(0xc420393600) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:1072 +0x629 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.newHTTP2Client /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_client.go:258 +0xed3 goroutine 204409 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3140) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204338 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).printStatsLoop(0xc420aa9600, 0x2b48845f3000, 0xc42026ade0) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:209 +0xb4a github.com/cockroachdb/cockroach/pkg/kv.NewTxnCoordSender.func1() /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:193 +0x98 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc422a59b20) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204423 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*NodeLiveness).StartHeartbeat.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/node_liveness.go:264 +0x29a github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc42138ecd0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204417 [select]: github.com/cockroachdb/cockroach/pkg/ts.(*poller).start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/ts/db.go:90 +0x16f github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4236982f0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204251 [chan receive]: github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:488 +0x71 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4238eea50) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204414 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Node).startGossip.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:657 +0x4c1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3220) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204254 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c300, 0xc42000e058, 0xc42158e0f0, 0x1a6a280, 0x2835b30) <autogenerated>:9 +0x7a crypto/tls.(*listener).Accept(0xc423c6c380, 0xc42158e0c0, 0x1a6a280, 0x2835b30, 0x1b45300) /usr/local/go/src/crypto/tls/tls.go:52 +0x37 net/http.(*Server).Serve(0xc420aa80b0, 0x2861980, 0xc423c6c380, 0x0, 0x0) /usr/local/go/src/net/http/server.go:2643 +0x228 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func5() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:511 +0x42 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c3a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204411 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3180) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204193 [chan receive]: github.com/cockroachdb/cockroach/pkg/rpc.NewContext.func1() /go/src/github.com/cockroachdb/cockroach/pkg/rpc/context.go:160 +0x76 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c860) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204342 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000281) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2500) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204339 [select]: github.com/cockroachdb/cockroach/pkg/sql.(*LeaseManager).RefreshLeases.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/lease.go:1210 +0xc35 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4231736e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204407 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a30e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205307 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*pushTxnQueue).MaybeWait(0xc421dc8a20, 0x2b48845f3000, 0xc4237a9e00, 0xc421614c00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/push_txn_queue.go:305 +0x1004 github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc4237a9e00, 0x14a734b080e49480, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2541 +0x5c3 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc4237a9d40, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc420133850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc4237a9d10, 0xc421df96a8, 0xc4237a9d10, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc4237a9d10, 0xc421df96a8, 0x1f, 0x6c1258, 0xf04380) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc42138e230, 0xc421df9680, 0x2b48845f3000, 0xc4237a9c20, 0xe81c6f, 0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc42138e230, 0xc421df9680, 0x2b48845f3000, 0xc4237a9c20, 0x2876b60, 0xc421df9720, 0xc423cafc20) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204412 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*replicaScanner).waitAndProcess(0xc4209700c0, 0x2b48845f3000, 0xc42026ade0, 0xed0465745, 0x3ad093d0, 0x2d46380, 0xc4238f9e00, 0xc42023c8c0, 0xc421c73180, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scanner.go:207 +0x241 github.com/cockroachdb/cockroach/pkg/storage.(*replicaScanner).scanLoop.func1.1(0xc421c73180, 0xc422820301) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scanner.go:269 +0x90 github.com/cockroachdb/cockroach/pkg/storage.(*storeReplicaVisitor).Visit(0xc422820300, 0xc4238a25f0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:351 +0x2ff github.com/cockroachdb/cockroach/pkg/storage.(*replicaScanner).scanLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scanner.go:271 +0x29f github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a31c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204340 [chan receive]: github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:155 +0x55 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a24c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204420 [select]: github.com/cockroachdb/cockroach/pkg/sql.(*Executor).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:347 +0x165 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3360) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204396 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startGossip.func4() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1373 +0x51d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc421e9bd60) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205265 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*pushTxnQueue).MaybeWait(0xc421dc8a20, 0x2b48845f3000, 0xc422ab5a70, 0xc4200efc80, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/push_txn_queue.go:305 +0x1004 github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc422ab5a70, 0x14a734b080dd5ad0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2541 +0x5c3 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc422ab59e0, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc420935850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc422ab5980, 0xc423035ce8, 0xc422ab5980, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc422ab5980, 0xc423035ce8, 0x1f, 0x0, 0xc421718340) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc421dfcff0, 0xc423035cc0, 0x2b48845f3000, 0xc422ab5890, 0xc42374ef98, 0x6b0fdf, 0x1ca1e48) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc421dfcff0, 0xc423035cc0, 0x2b48845f3000, 0xc422ab5890, 0x2876b60, 0xc423035d60, 0xc423c297a0) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204439 [select]: github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Server).controller(0xc4237e8700) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_server.go:730 +0x743 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.newHTTP2Server /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_server.go:161 +0x861 goroutine 204355 [select]: github.com/cockroachdb/cockroach/pkg/gossip.(*Gossip).bootstrap.func1() /go/src/github.com/cockroachdb/cockroach/pkg/gossip/gossip.go:1046 +0x47d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4207085c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204344 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000284) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2540) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204776 [IO wait]: net.runtime_pollWait(0x2b4885e446c0, 0x72, 0xf) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc421736228, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc421736228, 0xc423947400, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc4217361c0, 0xc423947400, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc421550350, 0xc423947400, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc42311f650, 0x2b488467d3d8, 0xc421550350, 0x5, 0xc421550350, 0x35) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc422a00e00, 0x1ca3917, 0xc422a00f20, 0xc421736228) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc422a00e00, 0xc420ac9000, 0x1000, 0x1000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc42324c240, 0xc420aad620, 0x5, 0x200, 0x930a40, 0xc422a00fd0, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc42324c240, 0xc420aad620, 0x5, 0x200, 0x5, 0x696652, 0xc42272aa60, 0x20) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc42324c240, 0xc420aad620, 0x5, 0x200, 0x0, 0x0, 0xc420380000) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recvMessage(0xc420aad600, 0xc42272aa60, 0x1a1c120, 0xff5301, 0x2d8b330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:957 +0x13e github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1Buf(0xc420aad600, 0xc42272aa60, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1007 +0x39 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1(0xc420aad600, 0xc423225088, 0x30) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1028 +0x85 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).simpleExec(0xc420aad600, 0xc42280e420, 0x2f, 0xc423225158, 0xc422f0f701, 0x2d8b330, 0xc421698ea0, 0x0, 0xc423225330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:620 +0x1d4 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).Exec(0xc420aad600, 0xc42280e420, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:877 +0x293 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).ExecContext(0xc420aad600, 0x286bbc0, 0xc4200155f0, 0xc42280e420, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn_go18.go:41 +0x214 database/sql.ctxDriverExec(0x286bbc0, 0xc4200155f0, 0x2b48845faa10, 0xc420aad600, 0xc42280e420, 0x2f, 0x2d8b330, 0x0, 0x0, 0x6b063e, ...) /usr/local/go/src/database/sql/ctxutil.go:31 +0x28d database/sql.(*DB).exec.func2() /usr/local/go/src/database/sql/sql.go:1199 +0x99 database/sql.withLock(0x285ce00, 0xc422454d90, 0xc423225460) /usr/local/go/src/database/sql/sql.go:2545 +0x65 database/sql.(*DB).exec(0xc423035720, 0x286bbc0, 0xc4200155f0, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x1, 0x0, ...) /usr/local/go/src/database/sql/sql.go:1200 +0x51c database/sql.(*DB).ExecContext(0xc423035720, 0x286bbc0, 0xc4200155f0, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x2860040, 0xc42272aa00, ...) /usr/local/go/src/database/sql/sql.go:1165 +0xbc database/sql.(*DB).Exec(0xc423035720, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/database/sql/sql.go:1179 +0x85 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).execStatement(0xc423225ee8, 0xc42280e3c0, 0x21, 0xc42280e420, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:1037 +0x80 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).processTestFile(0xc423225ee8, 0xc4222ebba0, 0x1e, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:712 +0x3cbc github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).processTestFile(0xc4238f8dc0, 0xc4222ebba0, 0x1e, 0x0, 0xc423035720, 0xc422588900) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:86 +0x102 created by github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:171 +0xbd0 goroutine 204390 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).raftTickLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:3438 +0x337 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423b49340) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204297 [IO wait]: net.runtime_pollWait(0x2b4885e4e338, 0x72, 0x8) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b58e8, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b58e8, 0xc4204a6000, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc4221b5880, 0xc4204a6000, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc42000e180, 0xc4204a6000, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*MuxConn).Read(0xc4209170e0, 0xc4204a6000, 0x400, 0x400, 0x1b6c720, 0x0, 0x2b488467d400) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux/cmux.go:218 +0x113 crypto/tls.(*block).readFromUntil(0xc421f6ee70, 0x2b488467d400, 0xc4209170e0, 0x5, 0xc4209170e0, 0x6f6500) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc421d4c380, 0x1ca3917, 0xc421d4c4a0, 0xc42244e000) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc421d4c380, 0xc423854000, 0x8000, 0x8000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc420a7e840, 0xc42174d7c8, 0x9, 0x9, 0x0, 0x0, 0xc421c19b20) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc420a7e840, 0xc42174d7c8, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc420a7e840, 0xc42174d7c8, 0x9, 0x9, 0x2858680, 0xc423cb51d0, 0xc421c19bc8) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.readFrameHeader(0xc42174d7c8, 0x9, 0x9, 0x28536c0, 0xc420a7e840, 0x0, 0x0, 0x2853dc0, 0xc420014130) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:237 +0x7b github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2.(*Framer).ReadFrame(0xc42174d790, 0x34, 0x34, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/golang.org/x/net/http2/frame.go:469 +0xa4 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*framer).readFrame(0xc421f6f410, 0xc423cb5110, 0xc423cb5110, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http_util.go:508 +0x2f github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport.(*http2Server).HandleStreams(0xc4237e8700, 0xc421f6f4a0, 0x1ca2c08) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/transport/http2_server.go:307 +0x2bf github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).serveStreams(0xc4203a9ad0, 0x2872d40, 0xc4237e8700) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:486 +0x162 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).serveHTTP2Transport(0xc4203a9ad0, 0x28737c0, 0xc421d4c380, 0x285b5c0, 0xc420581d90) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:467 +0x429 github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).handleRawConn(0xc4203a9ad0, 0x28756e0, 0xc4209170e0) /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:438 +0x4a4 created by github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc.(*Server).Serve /go/src/github.com/cockroachdb/cockroach/vendor/google.golang.org/grpc/server.go:407 +0x584 goroutine 204405 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a30a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204352 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000027d) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2660) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204408 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3120) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204388 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000288) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a26e0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204422 [IO wait]: net.runtime_pollWait(0x2b488463fd50, 0x72, 0x0) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc4221b4228, 0x72, 0x0, 0xc4223abf20) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc4221b4228, 0xffffffffffffffff, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).accept(0xc4221b41c0, 0x0, 0x2859500, 0xc4223abf20) /usr/local/go/src/net/fd_unix.go:430 +0x1e5 net.(*TCPListener).accept(0xc42000e040, 0xc422268e68, 0xf2221c, 0x6dcf70) /usr/local/go/src/net/tcpsock_posix.go:136 +0x2e net.(*TCPListener).Accept(0xc42000e040, 0x1ca1f40, 0xc4225b2000, 0x2875800, 0xc4205ee640) /usr/local/go/src/net/tcpsock.go:228 +0x49 github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*cMux).Serve(0xc4225b2000, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux/cmux.go:124 +0x95 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func9.1() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:656 +0x2f sync.(*Once).Do(0xc420708520, 0xc420be2780) /usr/local/go/src/sync/once.go:44 +0xbe github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func9() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:657 +0x64 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4208489a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204249 [chan receive]: github.com/cockroachdb/cockroach/pkg/util/netutil.MakeServer.func2() /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:98 +0x70 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c100) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204346 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc400000285) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2580) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204381 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*idAllocator).start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/id_alloc.go:133 +0x79c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc422a59070) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204421 [select]: github.com/cockroachdb/cockroach/pkg/sql/distsqlrun.(*flowScheduler).Start.func1() /go/src/github.com/cockroachdb/cockroach/pkg/sql/distsqlrun/flow_scheduler.go:114 +0x3e1 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4224c1890) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204416 [select]: github.com/cockroachdb/cockroach/pkg/server.(*Server).startSampleEnvironment.func1() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:854 +0x16b github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a32c0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204192 [chan receive]: github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run(0xc4238f8dc0, 0xc4237d7540, 0x1a) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:175 +0xc29 github.com/cockroachdb/cockroach/pkg/sql_test.TestParallel.func1(0xc4203a9860) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:254 +0x10a testing.tRunner(0xc4203a9860, 0xc4237d7580) /usr/local/go/src/testing/testing.go:657 +0x96 created by testing.(*T).Run /usr/local/go/src/testing/testing.go:697 +0x2ca goroutine 204357 [chan receive]: github.com/cockroachdb/cockroach/pkg/storage/engine.(*RocksDB).open.func2(0xc4226068c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/engine/rocksdb.go:392 +0x44 created by github.com/cockroachdb/cockroach/pkg/storage/engine.(*RocksDB).open /go/src/github.com/cockroachdb/cockroach/pkg/storage/engine/rocksdb.go:393 +0x460 goroutine 204410 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3160) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204394 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startGossip.func4() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1373 +0x51d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc421e9bcc0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204772 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc4229de300, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c6e180, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc4229de300, 0x8, 0xc421c6e180, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3d40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3d40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3d40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc422ab5050, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4226f3c70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc423a88b10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23558, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc422c23540, 0x2b48845f3000, 0xc423a88b10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23558, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).sendInternal(0xc422c23540, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23558, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:572 +0xad github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).send(0xc422c23540, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:721 +0x513 github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).(github.com/cockroachdb/cockroach/pkg/internal/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2710, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0x58 github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc42219b2f0, 0xc423cb0438, 0x0, 0x1b46200) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Run(0xc422c23540, 0xc423cb0438, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0xc6 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).fetch(0xc423cb0408, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:232 +0x257 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).nextKV(0xc423cb0408, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:291 +0x51 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).NextKey(0xc423cb0380, 0xc422ab4f00, 0x1, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:202 +0x3e github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).StartScan(0xc423cb0380, 0xc422c23540, 0xc422ab4f00, 0x1, 0x1, 0x2874c01, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:191 +0x199 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).initScan(0xc423cb0000, 0x5, 0x2) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:172 +0xf0 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).Next(0xc423cb0000, 0x1, 0xc422541444, 0x5) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:217 +0x1c0 github.com/cockroachdb/cockroach/pkg/sql.(*renderNode).Next(0xc4214b5e60, 0xc423cb0008, 0x2, 0xc42146cde0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/render.go:122 +0x38 github.com/cockroachdb/cockroach/pkg/sql.(*groupNode).Next(0xc4200efb00, 0x2877380, 0xc4203d1e80, 0xc42219d130) /go/src/github.com/cockroachdb/cockroach/pkg/sql/group.go:334 +0x5d2 github.com/cockroachdb/cockroach/pkg/sql.(*limitNode).Next(0xc422f7a3f0, 0x1c9ff88, 0xc421dfc9b0, 0xc4203d1e80) /go/src/github.com/cockroachdb/cockroach/pkg/sql/limit.go:175 +0x5d github.com/cockroachdb/cockroach/pkg/sql.(*subquery).doEval(0xc421dfc9b0, 0x2877b00, 0x2d8ae00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:165 +0x5d8 github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).subqueryNode(0xc4213fc7c0, 0xc421dfc9b0, 0xc42219d270, 0x10f8807) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:246 +0x9a github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).(github.com/cockroachdb/cockroach/pkg/sql.subqueryNode)-fm(0xc421dfc9b0, 0x0, 0x68809e) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:269 +0x34 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).VisitPre(0xc421dfcaf0, 0x286bec0, 0xc421dfc9b0, 0xc421dfc901, 0xc42219d2f8, 0x68f983) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:439 +0x1b0 github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExpr(0x285d540, 0xc421dfcaf0, 0x286bec0, 0xc421dfc9b0, 0xc42219d370, 0x286bec0, 0x10f8301) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:559 +0x4c github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExprConst(0x285d540, 0xc421dfcaf0, 0x286bec0, 0xc421dfc9b0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:572 +0x49 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).expr(0xc421dfcaf0, 0x1c27390, 0x6, 0x0, 0x0, 0x0, 0x286bec0, 0xc421dfc9b0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:422 +0xb3 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc421dfcaf0, 0x2875200, 0xc4212c1380) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:117 +0x318 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc421dfcaf0, 0x2874de0, 0xc4232bcb00) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:307 +0x2ba6 github.com/cockroachdb/cockroach/pkg/sql.walkPlan(0x2874de0, 0xc4232bcb00, 0xc4203d1f10, 0x0, 0x0, 0x0, 0xc4203d1f00, 0x2d47e58, 0xc400000000) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:58 +0xcf github.com/cockroachdb/cockroach/pkg/sql.(*planner).startSubqueryPlans(0xc4213fb0e8, 0x2874de0, 0xc4232bcb00, 0xc42206c820, 0xc423909940) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:271 +0x164 github.com/cockroachdb/cockroach/pkg/sql.(*planner).startPlan(0xc4213fb0e8, 0x2874de0, 0xc4232bcb00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/plan.go:218 +0x43 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execClassic(0xc423582300, 0xc4213fb0e8, 0x2874de0, 0xc4232bcb00, 0xc42219e298, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1291 +0x4c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmt(0xc423582300, 0x286ca40, 0xc422bf8f00, 0xc4213fb0e8, 0xc422190101, 0xed0465746, 0x20c234f1, 0x2d46380, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1417 +0x22c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtInOpenTxn(0xc423582300, 0x286ca40, 0xc422bf8f00, 0xc4213fb0e8, 0x101, 0xc4213fafe8, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1167 +0x2bd github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtsInCurrentTxn(0xc423582300, 0xc422f0f8a0, 0x1, 0x1, 0xc4213fb0e8, 0xc4213fafe8, 0x10101, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:902 +0x7f0 github.com/cockroachdb/cockroach/pkg/sql.runTxnAttempt(0xc423582300, 0xc4213fb0e8, 0x1, 0xc4213fafe8, 0xc422f0f900, 0xc422f0f8a0, 0x1, 0x1, 0xc42058a601, 0x185, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:816 +0xf6 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest.func2(0xc422c23540, 0xc422f0f900, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:655 +0x1bc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Exec(0xc422c23540, 0xc420db0101, 0xc4238f9e00, 0xc420dbe460, 0xc400000000, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:505 +0xc1 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest(0xc423582300, 0xc4213faf80, 0xc423c46614, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:677 +0x583 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).ExecuteStatements(0xc423582300, 0xc4213faf80, 0xc423c46614, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xc423c46600) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:490 +0x12d github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).executeStatements(0xc4214cd600, 0x2b48845f3000, 0xc4214d3260, 0xc423c46614, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xa7cd01, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:819 +0x94 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).handleSimpleQuery(0xc4214cd600, 0x2b48845f3000, 0xc4214d3260, 0xc4214cd628, 0x34, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:491 +0xc9 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).serve(0xc4214cd600, 0x2b48845f3000, 0xc4214d3260, 0xc420189e40, 0x5400, 0xc421d86160, 0x2b488463eee0, 0xc4222c12c0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:419 +0x89b github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*Server).ServeConn(0xc421d86000, 0x2b488463eee0, 0xc4222c12c0, 0x28737c0, 0xc422a00a80, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/server.go:415 +0x917 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8.1(0x28756e0, 0xc42038f5e0) /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:543 +0x106 github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith.func1(0xc42023c8c0, 0xc42000e038, 0x28756e0, 0xc42038f5e0, 0xc421f72e20) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:136 +0x95 created by github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:138 +0x239 goroutine 204575 [chan receive]: database/sql.(*DB).connectionOpener(0xc4209177c0) /usr/local/go/src/database/sql/sql.go:837 +0x4a created by database/sql.Open /usr/local/go/src/database/sql/sql.go:582 +0x212 goroutine 204619 [chan receive]: database/sql.(*DB).connectionOpener(0xc4236452c0) /usr/local/go/src/database/sql/sql.go:837 +0x4a created by database/sql.Open /usr/local/go/src/database/sql/sql.go:582 +0x212 goroutine 204754 [chan receive]: database/sql.(*DB).connectionOpener(0xc423035720) /usr/local/go/src/database/sql/sql.go:837 +0x4a created by database/sql.Open /usr/local/go/src/database/sql/sql.go:582 +0x212 goroutine 204618 [IO wait]: net.runtime_pollWait(0x2b4885e4e7b8, 0x72, 0x9) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc422f4fcd8, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc422f4fcd8, 0xc422cb6800, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc422f4fc70, 0xc422cb6800, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc422f0c398, 0xc422cb6800, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc420adf200, 0x2b488467d3d8, 0xc422f0c398, 0x5, 0xc422f0c398, 0x35) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc420c02000, 0x1ca3917, 0xc420c02120, 0xc422f4fcd8) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc420c02000, 0xc4203b7000, 0x1000, 0x1000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc420af47e0, 0xc42229e860, 0x5, 0x200, 0x930a40, 0xc420c021d0, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc420af47e0, 0xc42229e860, 0x5, 0x200, 0x5, 0x696652, 0xc422c69980, 0x20) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc420af47e0, 0xc42229e860, 0x5, 0x200, 0x0, 0x0, 0xc420080000) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recvMessage(0xc42229e840, 0xc422c69980, 0x1a1c120, 0xff5301, 0x2d8b330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:957 +0x13e github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1Buf(0xc42229e840, 0xc422c69980, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1007 +0x39 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1(0xc42229e840, 0xc420623088, 0x30) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1028 +0x85 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).simpleExec(0xc42229e840, 0xc42142bbf0, 0x2f, 0xc420623158, 0xc4219f6501, 0x2d8b330, 0xc422fe31e0, 0x0, 0xc420623330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:620 +0x1d4 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).Exec(0xc42229e840, 0xc42142bbf0, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:877 +0x293 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).ExecContext(0xc42229e840, 0x286bbc0, 0xc4200155f0, 0xc42142bbf0, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn_go18.go:41 +0x214 database/sql.ctxDriverExec(0x286bbc0, 0xc4200155f0, 0x2b48845faa10, 0xc42229e840, 0xc42142bbf0, 0x2f, 0x2d8b330, 0x0, 0x0, 0x6b063e, ...) /usr/local/go/src/database/sql/ctxutil.go:31 +0x28d database/sql.(*DB).exec.func2() /usr/local/go/src/database/sql/sql.go:1199 +0x99 database/sql.withLock(0x285ce00, 0xc4203dee70, 0xc420623460) /usr/local/go/src/database/sql/sql.go:2545 +0x65 database/sql.(*DB).exec(0xc4209177c0, 0x286bbc0, 0xc4200155f0, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x1, 0x0, ...) /usr/local/go/src/database/sql/sql.go:1200 +0x51c database/sql.(*DB).ExecContext(0xc4209177c0, 0x286bbc0, 0xc4200155f0, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x2860040, 0xc422c69960, ...) /usr/local/go/src/database/sql/sql.go:1165 +0xbc database/sql.(*DB).Exec(0xc4209177c0, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/database/sql/sql.go:1179 +0x85 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).execStatement(0xc420623ee8, 0xc42142bb60, 0x21, 0xc42142bbf0, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:1037 +0x80 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).processTestFile(0xc420623ee8, 0xc423addfe0, 0x1e, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:712 +0x3cbc github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).processTestFile(0xc4238f8dc0, 0xc423addfe0, 0x1e, 0x0, 0xc4209177c0, 0xc422588900) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:86 +0x102 created by github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:171 +0xbd0 goroutine 204404 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*baseQueue).processLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/queue.go:490 +0x39e github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a3080) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205305 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).heartbeatLoop(0xc420aa9600, 0x2b48845f3000, 0xc4237a93e0, 0xf548c6b8f052c631, 0xedfb8ab65429bcba) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:651 +0x3d9 github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).updateState.func2(0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:923 +0x51 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask.func1(0xc42023c8c0, 0x24f2df9, 0x16, 0x39c, 0x2876b60, 0xc421df8f00, 0xc4207e2ac0, 0x2b48845f3000, 0xc4237a8630) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:283 +0xdf created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:284 +0x14a goroutine 204391 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startCoalescedHeartbeatsLoop.func1() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:3469 +0x167 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423b49350) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204722 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc421dc6f00, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc42255a000, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc421dc6f00, 0x8, 0xc42255a000, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421397040, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421397040, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421397040, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc4236a7ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421396f70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4236a76b0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc421396ea0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc422c23cc0, 0x2b48845f3000, 0xc4236a76b0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23cd8, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).sendInternal(0xc422c23cc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc422c23cd8, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:572 +0xad github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).send(0xc422c23cc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:721 +0x513 github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).(github.com/cockroachdb/cockroach/pkg/internal/client.send)-fm(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2710, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0x58 github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc4207dd2f0, 0xc420eb8438, 0x0, 0x1b46200) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Run(0xc422c23cc0, 0xc420eb8438, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:316 +0xc6 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).fetch(0xc420eb8408, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:232 +0x257 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*kvFetcher).nextKV(0xc420eb8408, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/kvfetcher.go:291 +0x51 github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).NextKey(0xc420eb8380, 0xc4236a7b90, 0x1, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:202 +0x3e github.com/cockroachdb/cockroach/pkg/sql/sqlbase.(*RowFetcher).StartScan(0xc420eb8380, 0xc422c23cc0, 0xc4236a7b90, 0x1, 0x1, 0x2874c01, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/sqlbase/rowfetcher.go:191 +0x199 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).initScan(0xc420eb8000, 0x5, 0x2) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:172 +0xf0 github.com/cockroachdb/cockroach/pkg/sql.(*scanNode).Next(0xc420eb8000, 0x1, 0xc422541444, 0x5) /go/src/github.com/cockroachdb/cockroach/pkg/sql/scan.go:217 +0x1c0 github.com/cockroachdb/cockroach/pkg/sql.(*renderNode).Next(0xc4202e9d40, 0xc420eb8008, 0x2, 0xc42146cde0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/render.go:122 +0x38 github.com/cockroachdb/cockroach/pkg/sql.(*groupNode).Next(0xc420eb4c00, 0x2877380, 0xc4219f7e20, 0xc4207df130) /go/src/github.com/cockroachdb/cockroach/pkg/sql/group.go:334 +0x5d2 github.com/cockroachdb/cockroach/pkg/sql.(*limitNode).Next(0xc42097f7a0, 0x1c9ff88, 0xc42217d180, 0xc4219f7e20) /go/src/github.com/cockroachdb/cockroach/pkg/sql/limit.go:175 +0x5d github.com/cockroachdb/cockroach/pkg/sql.(*subquery).doEval(0xc42217d180, 0x2877b00, 0x2d8ae00, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:165 +0x5d8 github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).subqueryNode(0xc42275b2c0, 0xc42217d180, 0xc4207df270, 0x10f8807) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:246 +0x9a github.com/cockroachdb/cockroach/pkg/sql.(*subqueryPlanVisitor).(github.com/cockroachdb/cockroach/pkg/sql.subqueryNode)-fm(0xc42217d180, 0x0, 0x68809e) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:269 +0x34 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).VisitPre(0xc42217d2c0, 0x286bec0, 0xc42217d180, 0xc42217d101, 0xc4207df2f8, 0x68f983) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:439 +0x1b0 github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExpr(0x285d540, 0xc42217d2c0, 0x286bec0, 0xc42217d180, 0xc4207df370, 0x286bec0, 0x10f8301) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:559 +0x4c github.com/cockroachdb/cockroach/pkg/sql/parser.WalkExprConst(0x285d540, 0xc42217d2c0, 0x286bec0, 0xc42217d180) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parser/walk.go:572 +0x49 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).expr(0xc42217d2c0, 0x1c27390, 0x6, 0x0, 0x0, 0x0, 0x286bec0, 0xc42217d180, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:422 +0xb3 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc42217d2c0, 0x2875200, 0xc4222ada40) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:117 +0x318 github.com/cockroachdb/cockroach/pkg/sql.(*planVisitor).visit(0xc42217d2c0, 0x2874de0, 0xc420961340) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:307 +0x2ba6 github.com/cockroachdb/cockroach/pkg/sql.walkPlan(0x2874de0, 0xc420961340, 0xc4219f7eb0, 0x0, 0x0, 0x0, 0xc4219f7ea0, 0x2d47e58, 0xc400000000) /go/src/github.com/cockroachdb/cockroach/pkg/sql/walk.go:58 +0xcf github.com/cockroachdb/cockroach/pkg/sql.(*planner).startSubqueryPlans(0xc422759be8, 0x2874de0, 0xc420961340, 0xc422bb5a00, 0xc423909880) /go/src/github.com/cockroachdb/cockroach/pkg/sql/subquery.go:271 +0x164 github.com/cockroachdb/cockroach/pkg/sql.(*planner).startPlan(0xc422759be8, 0x2874de0, 0xc420961340, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/plan.go:218 +0x43 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execClassic(0xc423582300, 0xc422759be8, 0x2874de0, 0xc420961340, 0xc4207e0298, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1291 +0x4c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmt(0xc423582300, 0x286ca40, 0xc42217cb40, 0xc422759be8, 0xc4207e0001, 0xed0465746, 0x20c9cdf3, 0x2d46380, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1417 +0x22c github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtInOpenTxn(0xc423582300, 0x286ca40, 0xc42217cb40, 0xc422759be8, 0x101, 0xc422759ae8, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:1167 +0x2bd github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execStmtsInCurrentTxn(0xc423582300, 0xc4219f7a20, 0x1, 0x1, 0xc422759be8, 0xc422759ae8, 0x101, 0x3, 0xc422bb5a00, 0xc423908e40, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:902 +0x7f0 github.com/cockroachdb/cockroach/pkg/sql.runTxnAttempt(0xc423582300, 0xc422759be8, 0x1, 0xc422759ae8, 0xc4219f7a70, 0xc4219f7a20, 0x1, 0x1, 0xc4207e0d00, 0xa7cd32, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:816 +0xf6 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest.func2(0xc422c23cc0, 0xc4219f7a70, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:655 +0x1bc github.com/cockroachdb/cockroach/pkg/internal/client.(*Txn).Exec(0xc422c23cc0, 0xc422320101, 0xc4238f9e00, 0xc422324ee0, 0xc400000000, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/txn.go:505 +0xc1 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).execRequest(0xc423582300, 0xc422759a80, 0xc4220b46d4, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:677 +0x583 github.com/cockroachdb/cockroach/pkg/sql.(*Executor).ExecuteStatements(0xc423582300, 0xc422759a80, 0xc4220b46d4, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xc4220b4600) /go/src/github.com/cockroachdb/cockroach/pkg/sql/executor.go:490 +0x12d github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).executeStatements(0xc420da5a00, 0x2b48845f3000, 0xc421f164e0, 0xc4220b46d4, 0x2f, 0x0, 0x0, 0x0, 0x0, 0xa7cd01, ...) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:819 +0x94 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).handleSimpleQuery(0xc420da5a00, 0x2b48845f3000, 0xc421f164e0, 0xc420da5a28, 0x34, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:491 +0xc9 github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*v3Conn).serve(0xc420da5a00, 0x2b48845f3000, 0xc421f164e0, 0xc4238d9440, 0x5400, 0xc421d86160, 0x2b488463eee0, 0xc4221ecf40, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/v3.go:419 +0x89b github.com/cockroachdb/cockroach/pkg/sql/pgwire.(*Server).ServeConn(0xc421d86000, 0x2b488463eee0, 0xc4221ecf40, 0x28737c0, 0xc420069180, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/pgwire/server.go:415 +0x917 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func8.1(0x28756e0, 0xc421f2f180) /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:543 +0x106 github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith.func1(0xc42023c8c0, 0xc42000e038, 0x28756e0, 0xc421f2f180, 0xc421f72e20) /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:136 +0x95 created by github.com/cockroachdb/cockroach/pkg/util/netutil.(*Server).ServeWith /go/src/github.com/cockroachdb/cockroach/pkg/util/netutil/net.go:138 +0x239 goroutine 204395 [select]: github.com/cockroachdb/cockroach/pkg/storage.(*Store).startGossip.func4() /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:1373 +0x51d github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc421e9bd10) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204253 [chan receive]: github.com/cockroachdb/cockroach/vendor/github.com/cockroachdb/cmux.(*muxListener).Accept(0xc423c6c2e0, 0xc42158e150, 0x1a6a280, 0x2835b30, 0x1b45300) <autogenerated>:9 +0x7a net/http.(*Server).Serve(0xc420aa8160, 0x286ae00, 0xc423c6c2e0, 0x0, 0x0) /usr/local/go/src/net/http/server.go:2643 +0x228 github.com/cockroachdb/cockroach/pkg/server.(*Server).Start.func4() /go/src/github.com/cockroachdb/cockroach/pkg/server/server.go:504 +0x3c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc423c6c360) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 204347 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000028c) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a25a0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 goroutine 205263 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).heartbeatLoop(0xc420aa9600, 0x2b48845f3000, 0xc422ab5c80, 0xd5452890458c1fdd, 0x1dc60e3b7a60d997) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:651 +0x3d9 github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).updateState.func2(0x2b48845f3000, 0xc422ab4930) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:923 +0x51 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask.func1(0xc42023c8c0, 0x24f2df9, 0x16, 0x39c, 0x2876b60, 0xc4230355e0, 0xc420bab580, 0x2b48845f3000, 0xc422ab4930) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:283 +0xdf created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunAsyncTask /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:284 +0x14a goroutine 205264 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc4229dec00, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c6e900, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc4229dec00, 0x8, 0xc421c6e900, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc422ab5710, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc422ab5380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc423c6cba0, 0x2b48845f3000, 0xc422ab5380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run.func1(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:452 +0x6e github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc421c6e720, 0xc423237800, 0x0, 0x28740c0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run(0xc423c6cba0, 0x2b48845f3000, 0xc422ab5380, 0xc423237800, 0x1, 0xc421c7e510) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:454 +0xb2 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).maybePushTransactions(0xc422820090, 0x2b48845f3000, 0xc422ab5380, 0xc422f7a990, 0x1, 0x1, 0x14a734b080d85855, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:198 +0xac0 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).processWriteIntentError(0xc422820090, 0x2b48845f3000, 0xc422ab5380, 0xc421dfceb0, 0x28743c0, 0xc422ab4fc0, 0x14a734b080d85855, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:86 +0x11a github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc422ab5380, 0x14a734b080bc5a01, 0x1, 0x100000001, 0x1, 0x8, 0x0, 0xc4226f3ee0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2612 +0xb28 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc422ab5230, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4226f3ee0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc421017850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc422ab5200, 0xc423035928, 0xc422ab5200, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc422ab5200, 0xc423035928, 0x1f, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc421dfcc80, 0xc423035900, 0x2b48845f3000, 0xc422ab5170, 0xc42374ef98, 0x6b0fdf, 0x1ca1e48) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc421dfcc80, 0xc423035900, 0x2b48845f3000, 0xc422ab5170, 0x2876b60, 0xc4230359a0, 0xc423c29440) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 205306 [select]: github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendToReplicas(0xc423584100, 0x2b488463eee0, 0xc423a6df80, 0x1dcd6500, 0x0, 0xc423584148, 0x8, 0xc421c80040, 0x1, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:1160 +0x175e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendRPC(0xc423584100, 0x2b488463eee0, 0xc423a6df80, 0x8, 0xc421c80040, 0x1, 0x1, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:405 +0x311 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendSingleRange(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:474 +0x16e github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).sendPartialBatch(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:931 +0x3db github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).divideAndSendBatchToRanges(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:810 +0xa05 github.com/cockroachdb/cockroach/pkg/kv.(*DistSender).Send(0xc423584100, 0x2b48845f3000, 0xc4237a9aa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/dist_sender.go:625 +0x31f github.com/cockroachdb/cockroach/pkg/kv.(*TxnCoordSender).Send(0xc420aa9600, 0x2b48845f3000, 0xc4237a91d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/kv/txn_coord_sender.go:422 +0x2b9 github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).send(0xc423c6cba0, 0x2b48845f3000, 0xc4237a91d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:511 +0x21a github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run.func1(0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:452 +0x6e github.com/cockroachdb/cockroach/pkg/internal/client.sendAndFill(0xc4207e3f00, 0xc4224bd500, 0x0, 0x28740c0) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:423 +0xdc github.com/cockroachdb/cockroach/pkg/internal/client.(*DB).Run(0xc423c6cba0, 0x2b48845f3000, 0xc4237a91d0, 0xc4224bd500, 0x1, 0xc4211e1800) /go/src/github.com/cockroachdb/cockroach/pkg/internal/client/db.go:454 +0xb2 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).maybePushTransactions(0xc422820090, 0x2b48845f3000, 0xc4237a91d0, 0xc423012b40, 0x1, 0x1, 0x14a734b080d407fd, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:198 +0xac0 github.com/cockroachdb/cockroach/pkg/storage.(*intentResolver).processWriteIntentError(0xc422820090, 0x2b48845f3000, 0xc4237a91d0, 0xc42138e0f0, 0x28743c0, 0xc4237a8d50, 0x14a734b080d407fd, 0x0, 0x100000001, 0x1, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/intent_resolver.go:86 +0x11a github.com/cockroachdb/cockroach/pkg/storage.(*Store).Send(0xc420414380, 0x2b48845f3000, 0xc4237a91d0, 0x14a734b080bc5a01, 0x1, 0x100000001, 0x1, 0x8, 0x0, 0xc4203a9c70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/store.go:2612 +0xb28 github.com/cockroachdb/cockroach/pkg/storage.(*Stores).Send(0xc42132a080, 0x2b48845f3000, 0xc4237a90b0, 0x0, 0x0, 0x100000001, 0x1, 0x8, 0x0, 0xc4203a9c70, ...) /go/src/github.com/cockroachdb/cockroach/pkg/storage/stores.go:187 +0x1cf github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal.func1(0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:836 +0x18c github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTaskWithErr(0xc42023c8c0, 0xc4214c1850, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:262 +0x105 github.com/cockroachdb/cockroach/pkg/server.(*Node).batchInternal(0xc4230ac000, 0x2b48845f3000, 0xc4237a9020, 0xc421df91a8, 0xc4237a9020, 0x1f, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:847 +0x20a github.com/cockroachdb/cockroach/pkg/server.(*Node).Batch(0xc4230ac000, 0x2b48845f3000, 0xc4237a9020, 0xc421df91a8, 0x1f, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/server/node.go:864 +0x99 github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1.1(0xc421e9b180, 0xc421df9180, 0x2b48845f3000, 0xc4237a8f30, 0xe81c6f, 0x2b48845f3000, 0xc423c49290) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:192 +0x47b github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext.func1(0xc421e9b180, 0xc421df9180, 0x2b48845f3000, 0xc4237a8f30, 0x2876b60, 0xc421df9220, 0xc423caf440) /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:206 +0x7e created by github.com/cockroachdb/cockroach/pkg/kv.(*grpcTransport).SendNext /go/src/github.com/cockroachdb/cockroach/pkg/kv/transport.go:210 +0x140 goroutine 204721 [IO wait]: net.runtime_pollWait(0x2b4885e44000, 0x72, 0xc) /usr/local/go/src/runtime/netpoll.go:164 +0x59 net.(*pollDesc).wait(0xc421eba3e8, 0x72, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_poll_runtime.go:75 +0x38 net.(*pollDesc).waitRead(0xc421eba3e8, 0xc423122800, 0x400) /usr/local/go/src/net/fd_poll_runtime.go:80 +0x34 net.(*netFD).Read(0xc421eba380, 0xc423122800, 0x400, 0x400, 0x0, 0x285c200, 0x2851a70) /usr/local/go/src/net/fd_unix.go:250 +0x1b7 net.(*conn).Read(0xc42095c1f8, 0xc423122800, 0x400, 0x400, 0x0, 0x0, 0x0) /usr/local/go/src/net/net.go:181 +0x70 crypto/tls.(*block).readFromUntil(0xc423047920, 0x2b488467d3d8, 0xc42095c1f8, 0x5, 0xc42095c1f8, 0x35) /usr/local/go/src/crypto/tls/conn.go:488 +0x98 crypto/tls.(*Conn).readRecord(0xc420069880, 0x1ca3917, 0xc4200699a0, 0xc421eba3e8) /usr/local/go/src/crypto/tls/conn.go:590 +0xc4 crypto/tls.(*Conn).Read(0xc420069880, 0xc423917000, 0x1000, 0x1000, 0x0, 0x0, 0x0) /usr/local/go/src/crypto/tls/conn.go:1134 +0x11d bufio.(*Reader).Read(0xc422e81860, 0xc423153ba0, 0x5, 0x200, 0x930a40, 0xc420069a50, 0x0) /usr/local/go/src/bufio/bufio.go:213 +0x312 io.ReadAtLeast(0x28536c0, 0xc422e81860, 0xc423153ba0, 0x5, 0x200, 0x5, 0x696652, 0xc4219fef40, 0x20) /usr/local/go/src/io/io.go:307 +0xa9 io.ReadFull(0x28536c0, 0xc422e81860, 0xc423153ba0, 0x5, 0x200, 0x0, 0x0, 0xc420080000) /usr/local/go/src/io/io.go:325 +0x58 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recvMessage(0xc423153b80, 0xc4219fef40, 0x1a1c120, 0xff5301, 0x2d8b330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:957 +0x13e github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1Buf(0xc423153b80, 0xc4219fef40, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1007 +0x39 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).recv1(0xc423153b80, 0xc4204bb088, 0x30) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:1028 +0x85 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).simpleExec(0xc423153b80, 0xc42091ba70, 0x2f, 0xc4204bb158, 0xc4219f7801, 0x2d8b330, 0xc422d83860, 0x0, 0xc4204bb330) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:620 +0x1d4 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).Exec(0xc423153b80, 0xc42091ba70, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn.go:877 +0x293 github.com/cockroachdb/cockroach/vendor/github.com/lib/pq.(*conn).ExecContext(0xc423153b80, 0x286bbc0, 0xc4200155f0, 0xc42091ba70, 0x2f, 0x2d8b330, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/cockroachdb/cockroach/vendor/github.com/lib/pq/conn_go18.go:41 +0x214 database/sql.ctxDriverExec(0x286bbc0, 0xc4200155f0, 0x2b48845faa10, 0xc423153b80, 0xc42091ba70, 0x2f, 0x2d8b330, 0x0, 0x0, 0x6b063e, ...) /usr/local/go/src/database/sql/ctxutil.go:31 +0x28d database/sql.(*DB).exec.func2() /usr/local/go/src/database/sql/sql.go:1199 +0x99 database/sql.withLock(0x285ce00, 0xc421d658f0, 0xc4204bb460) /usr/local/go/src/database/sql/sql.go:2545 +0x65 database/sql.(*DB).exec(0xc4236452c0, 0x286bbc0, 0xc4200155f0, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x1, 0x0, ...) /usr/local/go/src/database/sql/sql.go:1200 +0x51c database/sql.(*DB).ExecContext(0xc4236452c0, 0x286bbc0, 0xc4200155f0, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x2860040, 0xc4219fef20, ...) /usr/local/go/src/database/sql/sql.go:1165 +0xbc database/sql.(*DB).Exec(0xc4236452c0, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/database/sql/sql.go:1179 +0x85 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).execStatement(0xc4204bbee8, 0xc42091b9b0, 0x21, 0xc42091ba70, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x1) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:1037 +0x80 github.com/cockroachdb/cockroach/pkg/sql_test.(*logicTest).processTestFile(0xc4204bbee8, 0xc421f35c80, 0x1e, 0x0, 0x0) /go/src/github.com/cockroachdb/cockroach/pkg/sql/logic_test.go:712 +0x3cbc github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).processTestFile(0xc4238f8dc0, 0xc421f35c80, 0x1e, 0x0, 0xc4236452c0, 0xc422588900) /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:86 +0x102 created by github.com/cockroachdb/cockroach/pkg/sql_test.(*parallelTest).run /go/src/github.com/cockroachdb/cockroach/pkg/sql/parallel_test.go:171 +0xbd0 goroutine 204343 [semacquire]: sync.runtime_notifyListWait(0xc423244150, 0xc40000027e) /usr/local/go/src/runtime/sema.go:297 +0x10b sync.(*Cond).Wait(0xc423244140) /usr/local/go/src/sync/cond.go:57 +0x89 github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).worker(0xc422f7a000, 0xc42023c8c0) /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:196 +0xac github.com/cockroachdb/cockroach/pkg/storage.(*raftScheduler).Start.func2() /go/src/github.com/cockroachdb/cockroach/pkg/storage/scheduler.go:165 +0x33 github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker.func1(0xc42023c8c0, 0xc4223a2520) /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:209 +0x7d created by github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunWorker /go/src/github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:210 +0x66 I170227 17:20:07.073215 1 rand.go:76 Random seed: -3520956507990538349 ``` Please assign, take a look and update the issue accordingly.
test
teamcity failed tests on master test proposer evaluated kv testparallel test proposer evaluated kv testparallel subquery retry the following tests appear to have failed fail test proposer evaluated kv testparallel test ended in panic fail test proposer evaluated kv testparallel subquery retry test ended in panic stdout queries start here done partestdata subquery retry setup tests failures queries start here queries start here queries start here panic test timed out after goroutine testing startalarm usr local go src testing testing go created by time gofunc usr local go src time sleep go goroutine testing t run usr local go src testing testing go testing runtests usr local go src testing testing go testing trunner usr local go src testing testing go testing runtests usr local go src testing testing go testing m run usr local go src testing testing go github com cockroachdb cockroach pkg sql test testmain go src github com cockroachdb cockroach pkg sql main test go main main github com cockroachdb cockroach pkg sql test testmain go goroutine runtime goexit usr local go src runtime asm s goroutine github com cockroachdb cockroach pkg util log loggingt flushdaemon go src github com cockroachdb cockroach pkg util log clog go created by github com cockroachdb cockroach pkg util log init go src github com cockroachdb cockroach pkg util log clog go goroutine github com cockroachdb cockroach pkg util log loggingt gcdaemon go src github com cockroachdb cockroach pkg util log clog go created by github com cockroachdb cockroach pkg util log init go src github com cockroachdb cockroach pkg util log clog go goroutine testing t run usr local go src testing testing go github com cockroachdb cockroach pkg sql test testparallel go src github com cockroachdb cockroach pkg sql parallel test go testing trunner usr local go src testing testing go created by testing t run usr local go src testing testing go goroutine github com cockroachdb cockroach pkg util netutil makeserver go src github com cockroachdb cockroach pkg util netutil net go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage store start go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go crypto tls block readfromuntil usr local go src crypto tls conn go crypto tls conn readrecord usr local go src crypto tls conn go crypto tls conn read usr local go src crypto tls conn go bufio reader read usr local go src bufio bufio go io readatleast usr local go src io io go io readfull usr local go src io io go github com cockroachdb cockroach vendor golang org x net readframeheader go src github com cockroachdb cockroach vendor golang org x net frame go github com cockroachdb cockroach vendor golang org x net framer readframe go src github com cockroachdb cockroach vendor golang org x net frame go github com cockroachdb cockroach vendor google golang org grpc transport framer readframe go src github com cockroachdb cockroach vendor google golang org grpc transport http util go github com cockroachdb cockroach vendor google golang org grpc transport reader go src github com cockroachdb cockroach vendor google golang org grpc transport client go created by github com cockroachdb cockroach vendor google golang org grpc transport go src github com cockroachdb cockroach vendor google golang org grpc transport client go goroutine github com cockroachdb cockroach pkg rpc context runheartbeat go src github com cockroachdb cockroach pkg rpc context go github com cockroachdb cockroach pkg rpc context grpcdial go src github com cockroachdb cockroach pkg rpc context go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach vendor github com cockroachdb cmux muxlistener accept github com cockroachdb cockroach vendor google golang org grpc server serve go src github com cockroachdb cockroach vendor google golang org grpc server go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg gossip server start go src github com cockroachdb cockroach pkg gossip server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv distsender sendtoreplicas go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendrpc go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendsinglerange go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendpartialbatch go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender divideandsendbatchtoranges go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender send go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv txncoordsender send go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg internal client db send go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client txn sendinternal go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client txn send go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client txn github com cockroachdb cockroach pkg internal client send fm go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client sendandfill go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client txn run go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg sql sqlbase kvfetcher fetch go src github com cockroachdb cockroach pkg sql sqlbase kvfetcher go github com cockroachdb cockroach pkg sql sqlbase kvfetcher nextkv go src github com cockroachdb cockroach pkg sql sqlbase kvfetcher go github com cockroachdb cockroach pkg sql sqlbase rowfetcher nextkey go src github com cockroachdb cockroach pkg sql sqlbase rowfetcher go github com cockroachdb cockroach pkg sql sqlbase rowfetcher startscan go src github com cockroachdb cockroach pkg sql sqlbase rowfetcher go github com cockroachdb cockroach pkg sql scannode initscan go src github com cockroachdb cockroach pkg sql scan go github com cockroachdb cockroach pkg sql scannode next go src github com cockroachdb cockroach pkg sql scan go github com cockroachdb cockroach pkg sql rendernode next go src github com cockroachdb cockroach pkg sql render go github com cockroachdb cockroach pkg sql groupnode next go src github com cockroachdb cockroach pkg sql group go github com cockroachdb cockroach pkg sql limitnode next go src github com cockroachdb cockroach pkg sql limit go github com cockroachdb cockroach pkg sql subquery doeval go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql subqueryplanvisitor subquerynode go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql subqueryplanvisitor github com cockroachdb cockroach pkg sql subquerynode fm go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql planvisitor visitpre go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql parser walkexpr go src github com cockroachdb cockroach pkg sql parser walk go github com cockroachdb cockroach pkg sql parser walkexprconst go src github com cockroachdb cockroach pkg sql parser walk go github com cockroachdb cockroach pkg sql planvisitor expr go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planvisitor visit go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planvisitor visit go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql walkplan go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planner startsubqueryplans go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql planner startplan go src github com cockroachdb cockroach pkg sql plan go github com cockroachdb cockroach pkg sql executor execclassic go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmt go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmtinopentxn go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmtsincurrenttxn go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql runtxnattempt go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execrequest go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg internal client txn exec go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg sql executor execrequest go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor executestatements go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql pgwire executestatements go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire handlesimplequery go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire serve go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire server serveconn go src github com cockroachdb cockroach pkg sql pgwire server go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util netutil server servewith go src github com cockroachdb cockroach pkg util netutil net go created by github com cockroachdb cockroach pkg util netutil server servewith go src github com cockroachdb cockroach pkg util netutil net go goroutine github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach vendor google golang org grpc addrconn transportmonitor go src github com cockroachdb cockroach vendor google golang org grpc clientconn go github com cockroachdb cockroach vendor google golang org grpc clientconn resetaddrconn go src github com cockroachdb cockroach vendor google golang org grpc clientconn go created by github com cockroachdb cockroach vendor google golang org grpc clientconn resetaddrconn go src github com cockroachdb cockroach vendor google golang org grpc clientconn go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach vendor github com cockroachdb cmux muxlistener accept github com cockroachdb cockroach pkg util netutil server servewith go src github com cockroachdb cockroach pkg util netutil net go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv distsender sendtoreplicas go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendrpc go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendsinglerange go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendpartialbatch go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender divideandsendbatchtoranges go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender send go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv txncoordsender send go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg internal client db send go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client db run go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client sendandfill go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client db run go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg storage intentresolver maybepushtransactions go src github com cockroachdb cockroach pkg storage intent resolver go github com cockroachdb cockroach pkg storage intentresolver processwriteintenterror go src github com cockroachdb cockroach pkg storage intent resolver go github com cockroachdb cockroach pkg storage store send go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage stores send go src github com cockroachdb cockroach pkg storage stores go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runtaskwitherr go src github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg server node batch go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go created by github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go goroutine github com cockroachdb cockroach pkg gossip gossip manage go src github com cockroachdb cockroach pkg gossip gossip go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage basequeue maybeaddtopurgatory go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime semacquire usr local go src runtime sema go sync waitgroup wait usr local go src sync waitgroup go github com cockroachdb cockroach pkg storage raftscheduler wait go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler wait fm go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg server node startwritesummaries go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg server node startcomputeperiodicmetrics go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd accept usr local go src net fd unix go net tcplistener accept usr local go src net tcpsock posix go net tcplistener accept usr local go src net tcpsock go github com cockroachdb cockroach vendor github com cockroachdb cmux cmux serve go src github com cockroachdb cockroach vendor github com cockroachdb cmux cmux go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg sql schemachangemanager start go src github com cockroachdb cockroach pkg sql schema changer go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage pushtxnqueue maybewait go src github com cockroachdb cockroach pkg storage push txn queue go github com cockroachdb cockroach pkg storage store send go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage stores send go src github com cockroachdb cockroach pkg storage stores go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runtaskwitherr go src github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg server node batch go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go created by github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go goroutine github com cockroachdb cockroach vendor google golang org grpc transport controller go src github com cockroachdb cockroach vendor google golang org grpc transport client go created by github com cockroachdb cockroach vendor google golang org grpc transport go src github com cockroachdb cockroach vendor google golang org grpc transport client go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv txncoordsender printstatsloop go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg kv newtxncoordsender go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage nodeliveness startheartbeat go src github com cockroachdb cockroach pkg storage node liveness go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg ts poller start go src github com cockroachdb cockroach pkg ts db go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg server node startgossip go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach vendor github com cockroachdb cmux muxlistener accept crypto tls listener accept usr local go src crypto tls tls go net http server serve usr local go src net http server go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg rpc newcontext go src github com cockroachdb cockroach pkg rpc context go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg sql leasemanager refreshleases go src github com cockroachdb cockroach pkg sql lease go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage pushtxnqueue maybewait go src github com cockroachdb cockroach pkg storage push txn queue go github com cockroachdb cockroach pkg storage store send go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage stores send go src github com cockroachdb cockroach pkg storage stores go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runtaskwitherr go src github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg server node batch go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go created by github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go goroutine github com cockroachdb cockroach pkg storage replicascanner waitandprocess go src github com cockroachdb cockroach pkg storage scanner go github com cockroachdb cockroach pkg storage replicascanner scanloop go src github com cockroachdb cockroach pkg storage scanner go github com cockroachdb cockroach pkg storage storereplicavisitor visit go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage replicascanner scanloop go src github com cockroachdb cockroach pkg storage scanner go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg sql executor start go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage store startgossip go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage pushtxnqueue maybewait go src github com cockroachdb cockroach pkg storage push txn queue go github com cockroachdb cockroach pkg storage store send go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage stores send go src github com cockroachdb cockroach pkg storage stores go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runtaskwitherr go src github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg server node batch go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go created by github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go goroutine github com cockroachdb cockroach vendor google golang org grpc transport controller go src github com cockroachdb cockroach vendor google golang org grpc transport server go created by github com cockroachdb cockroach vendor google golang org grpc transport go src github com cockroachdb cockroach vendor google golang org grpc transport server go goroutine github com cockroachdb cockroach pkg gossip gossip bootstrap go src github com cockroachdb cockroach pkg gossip gossip go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go crypto tls block readfromuntil usr local go src crypto tls conn go crypto tls conn readrecord usr local go src crypto tls conn go crypto tls conn read usr local go src crypto tls conn go bufio reader read usr local go src bufio bufio go io readatleast usr local go src io io go io readfull usr local go src io io go github com cockroachdb cockroach vendor github com lib pq conn recvmessage go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn simpleexec go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn exec go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn execcontext go src github com cockroachdb cockroach vendor github com lib pq conn go database sql ctxdriverexec usr local go src database sql ctxutil go database sql db exec usr local go src database sql sql go database sql withlock usr local go src database sql sql go database sql db exec usr local go src database sql sql go database sql db execcontext usr local go src database sql sql go database sql db exec usr local go src database sql sql go github com cockroachdb cockroach pkg sql test logictest execstatement go src github com cockroachdb cockroach pkg sql logic test go github com cockroachdb cockroach pkg sql test logictest processtestfile go src github com cockroachdb cockroach pkg sql logic test go github com cockroachdb cockroach pkg sql test paralleltest processtestfile go src github com cockroachdb cockroach pkg sql parallel test go created by github com cockroachdb cockroach pkg sql test paralleltest run go src github com cockroachdb cockroach pkg sql parallel test go goroutine github com cockroachdb cockroach pkg storage store rafttickloop go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go github com cockroachdb cockroach vendor github com cockroachdb cmux muxconn read go src github com cockroachdb cockroach vendor github com cockroachdb cmux cmux go crypto tls block readfromuntil usr local go src crypto tls conn go crypto tls conn readrecord usr local go src crypto tls conn go crypto tls conn read usr local go src crypto tls conn go bufio reader read usr local go src bufio bufio go io readatleast usr local go src io io go io readfull usr local go src io io go github com cockroachdb cockroach vendor golang org x net readframeheader go src github com cockroachdb cockroach vendor golang org x net frame go github com cockroachdb cockroach vendor golang org x net framer readframe go src github com cockroachdb cockroach vendor golang org x net frame go github com cockroachdb cockroach vendor google golang org grpc transport framer readframe go src github com cockroachdb cockroach vendor google golang org grpc transport http util go github com cockroachdb cockroach vendor google golang org grpc transport handlestreams go src github com cockroachdb cockroach vendor google golang org grpc transport server go github com cockroachdb cockroach vendor google golang org grpc server servestreams go src github com cockroachdb cockroach vendor google golang org grpc server go github com cockroachdb cockroach vendor google golang org grpc server go src github com cockroachdb cockroach vendor google golang org grpc server go github com cockroachdb cockroach vendor google golang org grpc server handlerawconn go src github com cockroachdb cockroach vendor google golang org grpc server go created by github com cockroachdb cockroach vendor google golang org grpc server serve go src github com cockroachdb cockroach vendor google golang org grpc server go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd accept usr local go src net fd unix go net tcplistener accept usr local go src net tcpsock posix go net tcplistener accept usr local go src net tcpsock go github com cockroachdb cockroach vendor github com cockroachdb cmux cmux serve go src github com cockroachdb cockroach vendor github com cockroachdb cmux cmux go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go sync once do usr local go src sync once go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg util netutil makeserver go src github com cockroachdb cockroach pkg util netutil net go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage idallocator start go src github com cockroachdb cockroach pkg storage id alloc go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg sql distsqlrun flowscheduler start go src github com cockroachdb cockroach pkg sql distsqlrun flow scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg server server startsampleenvironment go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg sql test paralleltest run go src github com cockroachdb cockroach pkg sql parallel test go github com cockroachdb cockroach pkg sql test testparallel go src github com cockroachdb cockroach pkg sql parallel test go testing trunner usr local go src testing testing go created by testing t run usr local go src testing testing go goroutine github com cockroachdb cockroach pkg storage engine rocksdb open go src github com cockroachdb cockroach pkg storage engine rocksdb go created by github com cockroachdb cockroach pkg storage engine rocksdb open go src github com cockroachdb cockroach pkg storage engine rocksdb go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage store startgossip go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv distsender sendtoreplicas go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendrpc go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendsinglerange go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendpartialbatch go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender divideandsendbatchtoranges go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender send go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv txncoordsender send go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg internal client db send go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client txn sendinternal go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client txn send go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client txn github com cockroachdb cockroach pkg internal client send fm go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client sendandfill go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client txn run go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg sql sqlbase kvfetcher fetch go src github com cockroachdb cockroach pkg sql sqlbase kvfetcher go github com cockroachdb cockroach pkg sql sqlbase kvfetcher nextkv go src github com cockroachdb cockroach pkg sql sqlbase kvfetcher go github com cockroachdb cockroach pkg sql sqlbase rowfetcher nextkey go src github com cockroachdb cockroach pkg sql sqlbase rowfetcher go github com cockroachdb cockroach pkg sql sqlbase rowfetcher startscan go src github com cockroachdb cockroach pkg sql sqlbase rowfetcher go github com cockroachdb cockroach pkg sql scannode initscan go src github com cockroachdb cockroach pkg sql scan go github com cockroachdb cockroach pkg sql scannode next go src github com cockroachdb cockroach pkg sql scan go github com cockroachdb cockroach pkg sql rendernode next go src github com cockroachdb cockroach pkg sql render go github com cockroachdb cockroach pkg sql groupnode next go src github com cockroachdb cockroach pkg sql group go github com cockroachdb cockroach pkg sql limitnode next go src github com cockroachdb cockroach pkg sql limit go github com cockroachdb cockroach pkg sql subquery doeval go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql subqueryplanvisitor subquerynode go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql subqueryplanvisitor github com cockroachdb cockroach pkg sql subquerynode fm go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql planvisitor visitpre go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql parser walkexpr go src github com cockroachdb cockroach pkg sql parser walk go github com cockroachdb cockroach pkg sql parser walkexprconst go src github com cockroachdb cockroach pkg sql parser walk go github com cockroachdb cockroach pkg sql planvisitor expr go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planvisitor visit go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planvisitor visit go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql walkplan go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planner startsubqueryplans go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql planner startplan go src github com cockroachdb cockroach pkg sql plan go github com cockroachdb cockroach pkg sql executor execclassic go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmt go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmtinopentxn go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmtsincurrenttxn go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql runtxnattempt go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execrequest go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg internal client txn exec go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg sql executor execrequest go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor executestatements go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql pgwire executestatements go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire handlesimplequery go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire serve go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire server serveconn go src github com cockroachdb cockroach pkg sql pgwire server go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util netutil server servewith go src github com cockroachdb cockroach pkg util netutil net go created by github com cockroachdb cockroach pkg util netutil server servewith go src github com cockroachdb cockroach pkg util netutil net go goroutine database sql db connectionopener usr local go src database sql sql go created by database sql open usr local go src database sql sql go goroutine database sql db connectionopener usr local go src database sql sql go created by database sql open usr local go src database sql sql go goroutine database sql db connectionopener usr local go src database sql sql go created by database sql open usr local go src database sql sql go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go crypto tls block readfromuntil usr local go src crypto tls conn go crypto tls conn readrecord usr local go src crypto tls conn go crypto tls conn read usr local go src crypto tls conn go bufio reader read usr local go src bufio bufio go io readatleast usr local go src io io go io readfull usr local go src io io go github com cockroachdb cockroach vendor github com lib pq conn recvmessage go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn simpleexec go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn exec go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn execcontext go src github com cockroachdb cockroach vendor github com lib pq conn go database sql ctxdriverexec usr local go src database sql ctxutil go database sql db exec usr local go src database sql sql go database sql withlock usr local go src database sql sql go database sql db exec usr local go src database sql sql go database sql db execcontext usr local go src database sql sql go database sql db exec usr local go src database sql sql go github com cockroachdb cockroach pkg sql test logictest execstatement go src github com cockroachdb cockroach pkg sql logic test go github com cockroachdb cockroach pkg sql test logictest processtestfile go src github com cockroachdb cockroach pkg sql logic test go github com cockroachdb cockroach pkg sql test paralleltest processtestfile go src github com cockroachdb cockroach pkg sql parallel test go created by github com cockroachdb cockroach pkg sql test paralleltest run go src github com cockroachdb cockroach pkg sql parallel test go goroutine github com cockroachdb cockroach pkg storage basequeue processloop go src github com cockroachdb cockroach pkg storage queue go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv txncoordsender heartbeatloop go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg kv txncoordsender updatestate go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg util stop stopper runasynctask go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runasynctask go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg storage store startcoalescedheartbeatsloop go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv distsender sendtoreplicas go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendrpc go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendsinglerange go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendpartialbatch go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender divideandsendbatchtoranges go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender send go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv txncoordsender send go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg internal client db send go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client txn sendinternal go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client txn send go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client txn github com cockroachdb cockroach pkg internal client send fm go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg internal client sendandfill go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client txn run go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg sql sqlbase kvfetcher fetch go src github com cockroachdb cockroach pkg sql sqlbase kvfetcher go github com cockroachdb cockroach pkg sql sqlbase kvfetcher nextkv go src github com cockroachdb cockroach pkg sql sqlbase kvfetcher go github com cockroachdb cockroach pkg sql sqlbase rowfetcher nextkey go src github com cockroachdb cockroach pkg sql sqlbase rowfetcher go github com cockroachdb cockroach pkg sql sqlbase rowfetcher startscan go src github com cockroachdb cockroach pkg sql sqlbase rowfetcher go github com cockroachdb cockroach pkg sql scannode initscan go src github com cockroachdb cockroach pkg sql scan go github com cockroachdb cockroach pkg sql scannode next go src github com cockroachdb cockroach pkg sql scan go github com cockroachdb cockroach pkg sql rendernode next go src github com cockroachdb cockroach pkg sql render go github com cockroachdb cockroach pkg sql groupnode next go src github com cockroachdb cockroach pkg sql group go github com cockroachdb cockroach pkg sql limitnode next go src github com cockroachdb cockroach pkg sql limit go github com cockroachdb cockroach pkg sql subquery doeval go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql subqueryplanvisitor subquerynode go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql subqueryplanvisitor github com cockroachdb cockroach pkg sql subquerynode fm go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql planvisitor visitpre go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql parser walkexpr go src github com cockroachdb cockroach pkg sql parser walk go github com cockroachdb cockroach pkg sql parser walkexprconst go src github com cockroachdb cockroach pkg sql parser walk go github com cockroachdb cockroach pkg sql planvisitor expr go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planvisitor visit go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planvisitor visit go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql walkplan go src github com cockroachdb cockroach pkg sql walk go github com cockroachdb cockroach pkg sql planner startsubqueryplans go src github com cockroachdb cockroach pkg sql subquery go github com cockroachdb cockroach pkg sql planner startplan go src github com cockroachdb cockroach pkg sql plan go github com cockroachdb cockroach pkg sql executor execclassic go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmt go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmtinopentxn go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execstmtsincurrenttxn go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql runtxnattempt go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor execrequest go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg internal client txn exec go src github com cockroachdb cockroach pkg internal client txn go github com cockroachdb cockroach pkg sql executor execrequest go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql executor executestatements go src github com cockroachdb cockroach pkg sql executor go github com cockroachdb cockroach pkg sql pgwire executestatements go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire handlesimplequery go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire serve go src github com cockroachdb cockroach pkg sql pgwire go github com cockroachdb cockroach pkg sql pgwire server serveconn go src github com cockroachdb cockroach pkg sql pgwire server go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util netutil server servewith go src github com cockroachdb cockroach pkg util netutil net go created by github com cockroachdb cockroach pkg util netutil server servewith go src github com cockroachdb cockroach pkg util netutil net go goroutine github com cockroachdb cockroach pkg storage store startgossip go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach vendor github com cockroachdb cmux muxlistener accept net http server serve usr local go src net http server go github com cockroachdb cockroach pkg server server start go src github com cockroachdb cockroach pkg server server go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv txncoordsender heartbeatloop go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg kv txncoordsender updatestate go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg util stop stopper runasynctask go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runasynctask go src github com cockroachdb cockroach pkg util stop stopper go goroutine github com cockroachdb cockroach pkg kv distsender sendtoreplicas go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendrpc go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendsinglerange go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendpartialbatch go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender divideandsendbatchtoranges go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender send go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv txncoordsender send go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg internal client db send go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client db run go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client sendandfill go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client db run go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg storage intentresolver maybepushtransactions go src github com cockroachdb cockroach pkg storage intent resolver go github com cockroachdb cockroach pkg storage intentresolver processwriteintenterror go src github com cockroachdb cockroach pkg storage intent resolver go github com cockroachdb cockroach pkg storage store send go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage stores send go src github com cockroachdb cockroach pkg storage stores go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runtaskwitherr go src github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg server node batch go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go created by github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go goroutine github com cockroachdb cockroach pkg kv distsender sendtoreplicas go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendrpc go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendsinglerange go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender sendpartialbatch go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender divideandsendbatchtoranges go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv distsender send go src github com cockroachdb cockroach pkg kv dist sender go github com cockroachdb cockroach pkg kv txncoordsender send go src github com cockroachdb cockroach pkg kv txn coord sender go github com cockroachdb cockroach pkg internal client db send go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client db run go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client sendandfill go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg internal client db run go src github com cockroachdb cockroach pkg internal client db go github com cockroachdb cockroach pkg storage intentresolver maybepushtransactions go src github com cockroachdb cockroach pkg storage intent resolver go github com cockroachdb cockroach pkg storage intentresolver processwriteintenterror go src github com cockroachdb cockroach pkg storage intent resolver go github com cockroachdb cockroach pkg storage store send go src github com cockroachdb cockroach pkg storage store go github com cockroachdb cockroach pkg storage stores send go src github com cockroachdb cockroach pkg storage stores go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg util stop stopper runtaskwitherr go src github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg server node batchinternal go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg server node batch go src github com cockroachdb cockroach pkg server node go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go created by github com cockroachdb cockroach pkg kv grpctransport sendnext go src github com cockroachdb cockroach pkg kv transport go goroutine net runtime pollwait usr local go src runtime netpoll go net polldesc wait usr local go src net fd poll runtime go net polldesc waitread usr local go src net fd poll runtime go net netfd read usr local go src net fd unix go net conn read usr local go src net net go crypto tls block readfromuntil usr local go src crypto tls conn go crypto tls conn readrecord usr local go src crypto tls conn go crypto tls conn read usr local go src crypto tls conn go bufio reader read usr local go src bufio bufio go io readatleast usr local go src io io go io readfull usr local go src io io go github com cockroachdb cockroach vendor github com lib pq conn recvmessage go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn simpleexec go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn exec go src github com cockroachdb cockroach vendor github com lib pq conn go github com cockroachdb cockroach vendor github com lib pq conn execcontext go src github com cockroachdb cockroach vendor github com lib pq conn go database sql ctxdriverexec usr local go src database sql ctxutil go database sql db exec usr local go src database sql sql go database sql withlock usr local go src database sql sql go database sql db exec usr local go src database sql sql go database sql db execcontext usr local go src database sql sql go database sql db exec usr local go src database sql sql go github com cockroachdb cockroach pkg sql test logictest execstatement go src github com cockroachdb cockroach pkg sql logic test go github com cockroachdb cockroach pkg sql test logictest processtestfile go src github com cockroachdb cockroach pkg sql logic test go github com cockroachdb cockroach pkg sql test paralleltest processtestfile go src github com cockroachdb cockroach pkg sql parallel test go created by github com cockroachdb cockroach pkg sql test paralleltest run go src github com cockroachdb cockroach pkg sql parallel test go goroutine sync runtime notifylistwait usr local go src runtime sema go sync cond wait usr local go src sync cond go github com cockroachdb cockroach pkg storage raftscheduler worker go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg storage raftscheduler start go src github com cockroachdb cockroach pkg storage scheduler go github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go created by github com cockroachdb cockroach pkg util stop stopper runworker go src github com cockroachdb cockroach pkg util stop stopper go rand go random seed please assign take a look and update the issue accordingly
1
419,245
28,140,775,444
IssuesEvent
2023-04-01 23:00:19
obsidian-tasks-group/obsidian-tasks
https://api.github.com/repos/obsidian-tasks-group/obsidian-tasks
closed
Review the links from docs to Obsidian help
type: bug scope: documentation
### Please check that this issue hasn't been reported before. - [X] I searched previous [Bug Reports](https://github.com/obsidian-tasks-group/obsidian-tasks/issues?q=is%3Aopen+is%3Aissue+label%3A%22type%3A+bug%22+sort%3Acomments-desc) didn't find any similar reports. ### Expected Behavior All links to the Obsidian help site should work ### Current behaviour Link to 'Obsidian's built-in callouts' in this page: https://obsidian-tasks-group.github.io/obsidian-tasks/getting-started/ Goes to here: https://help.obsidian.md/How+to/Use+callouts Which is a 404. ### Steps to reproduce See above ### Which Operating Systems are you using? - [ ] Android - [ ] iPhone/iPad - [ ] Linux - [ ] macOS - [ ] Windows ### Obsidian Version N/A ### Tasks Plugin Version N/A ### Checks - [ ] I have tried it with all other plugins disabled and the error still occurs ### Possible solution Search the docs source and check all the links to https://help.obsidian.md/ still work.
1.0
Review the links from docs to Obsidian help - ### Please check that this issue hasn't been reported before. - [X] I searched previous [Bug Reports](https://github.com/obsidian-tasks-group/obsidian-tasks/issues?q=is%3Aopen+is%3Aissue+label%3A%22type%3A+bug%22+sort%3Acomments-desc) didn't find any similar reports. ### Expected Behavior All links to the Obsidian help site should work ### Current behaviour Link to 'Obsidian's built-in callouts' in this page: https://obsidian-tasks-group.github.io/obsidian-tasks/getting-started/ Goes to here: https://help.obsidian.md/How+to/Use+callouts Which is a 404. ### Steps to reproduce See above ### Which Operating Systems are you using? - [ ] Android - [ ] iPhone/iPad - [ ] Linux - [ ] macOS - [ ] Windows ### Obsidian Version N/A ### Tasks Plugin Version N/A ### Checks - [ ] I have tried it with all other plugins disabled and the error still occurs ### Possible solution Search the docs source and check all the links to https://help.obsidian.md/ still work.
non_test
review the links from docs to obsidian help please check that this issue hasn t been reported before i searched previous didn t find any similar reports expected behavior all links to the obsidian help site should work current behaviour link to obsidian s built in callouts in this page goes to here which is a steps to reproduce see above which operating systems are you using android iphone ipad linux macos windows obsidian version n a tasks plugin version n a checks i have tried it with all other plugins disabled and the error still occurs possible solution search the docs source and check all the links to still work
0
106,149
9,115,337,164
IssuesEvent
2019-02-22 04:24:21
nodejs/node
https://api.github.com/repos/nodejs/node
closed
Investigate flaky test-crypto-timing-safe-equal-benchmarks
CI / flaky test crypto test
https://ci.nodejs.org/job/node-test-commit-custom-suites/864/default/console test-rackspace-ubuntu1604-x64-1 ```console 00:05:42 not ok 62 pummel/test-crypto-timing-safe-equal-benchmarks 00:05:42 --- 00:05:42 duration_ms: 27.177 00:05:42 severity: fail 00:05:42 exitcode: 1 00:05:42 stack: |- 00:05:42 assert.js:351 00:05:42 throw err; 00:05:42 ^ 00:05:42 00:05:42 AssertionError [ERR_ASSERTION]: timingSafeEqual should not leak information from its execution time (t=4.860941889108833) 00:05:42 at Object.<anonymous> (/home/iojs/build/workspace/node-test-commit-custom-suites/default/test/pummel/test-crypto-timing-safe-equal-benchmarks.js:106:1) 00:05:42 at Module._compile (internal/modules/cjs/loader.js:735:30) 00:05:42 at Object.Module._extensions..js (internal/modules/cjs/loader.js:746:10) 00:05:42 at Module.load (internal/modules/cjs/loader.js:627:32) 00:05:42 at tryModuleLoad (internal/modules/cjs/loader.js:570:12) 00:05:42 at Function.Module._load (internal/modules/cjs/loader.js:562:3) 00:05:42 at Function.Module.runMain (internal/modules/cjs/loader.js:798:12) 00:05:42 at internal/main/run_main_module.js:27:11 00:05:42 ... ```
2.0
Investigate flaky test-crypto-timing-safe-equal-benchmarks - https://ci.nodejs.org/job/node-test-commit-custom-suites/864/default/console test-rackspace-ubuntu1604-x64-1 ```console 00:05:42 not ok 62 pummel/test-crypto-timing-safe-equal-benchmarks 00:05:42 --- 00:05:42 duration_ms: 27.177 00:05:42 severity: fail 00:05:42 exitcode: 1 00:05:42 stack: |- 00:05:42 assert.js:351 00:05:42 throw err; 00:05:42 ^ 00:05:42 00:05:42 AssertionError [ERR_ASSERTION]: timingSafeEqual should not leak information from its execution time (t=4.860941889108833) 00:05:42 at Object.<anonymous> (/home/iojs/build/workspace/node-test-commit-custom-suites/default/test/pummel/test-crypto-timing-safe-equal-benchmarks.js:106:1) 00:05:42 at Module._compile (internal/modules/cjs/loader.js:735:30) 00:05:42 at Object.Module._extensions..js (internal/modules/cjs/loader.js:746:10) 00:05:42 at Module.load (internal/modules/cjs/loader.js:627:32) 00:05:42 at tryModuleLoad (internal/modules/cjs/loader.js:570:12) 00:05:42 at Function.Module._load (internal/modules/cjs/loader.js:562:3) 00:05:42 at Function.Module.runMain (internal/modules/cjs/loader.js:798:12) 00:05:42 at internal/main/run_main_module.js:27:11 00:05:42 ... ```
test
investigate flaky test crypto timing safe equal benchmarks test rackspace console not ok pummel test crypto timing safe equal benchmarks duration ms severity fail exitcode stack assert js throw err assertionerror timingsafeequal should not leak information from its execution time t at object home iojs build workspace node test commit custom suites default test pummel test crypto timing safe equal benchmarks js at module compile internal modules cjs loader js at object module extensions js internal modules cjs loader js at module load internal modules cjs loader js at trymoduleload internal modules cjs loader js at function module load internal modules cjs loader js at function module runmain internal modules cjs loader js at internal main run main module js
1
51,472
6,167,795,261
IssuesEvent
2017-06-30 00:07:27
openshift/origin
https://api.github.com/repos/openshift/origin
closed
flake: GCE cluster provision failure (2)
component/networking kind/test-flake priority/P0
From https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin/2821/ Similar to https://github.com/openshift/origin/issues/14575 (perhaps can be dupped ??) The first inkling of some trouble was: ``` TASK [openshift_node : Start and enable node] ********************************** Thursday 29 June 2017 16:01:54 +0000 (0:00:00.156) 0:15:03.087 ********* FAILED - RETRYING: Start and enable node (1 retries left). FAILED - RETRYING: Start and enable node (1 retries left). FAILED - RETRYING: Start and enable node (1 retries left). FAILED - RETRYING: Start and enable node (1 retries left). ok: [ci-prtest-5a37c28-3889-ig-m-k63s] ok: [ci-prtest-5a37c28-3889-ig-n-2l38] ok: [ci-prtest-5a37c28-3889-ig-n-0xsr] ok: [ci-prtest-5a37c28-3889-ig-n-j2s8] ``` but perhaps it recovered given the final set of `ok` messages. But then we got this: ``` RUNNING HANDLER [openshift_node : restart node] ******************************** Thursday 29 June 2017 16:02:40 +0000 (0:00:00.053) 0:15:49.265 ********* fatal: [ci-prtest-5a37c28-3889-ig-m-k63s]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} fatal: [ci-prtest-5a37c28-3889-ig-n-j2s8]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} fatal: [ci-prtest-5a37c28-3889-ig-n-0xsr]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} fatal: [ci-prtest-5a37c28-3889-ig-n-2l38]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} ``` And ``` Failure summary: 1. Host: ci-prtest-5a37c28-3889-ig-m-k63s Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. 2. Host: ci-prtest-5a37c28-3889-ig-n-j2s8 Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. 3. Host: ci-prtest-5a37c28-3889-ig-n-0xsr Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. 4. Host: ci-prtest-5a37c28-3889-ig-n-2l38 Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. ```
1.0
flake: GCE cluster provision failure (2) - From https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin/2821/ Similar to https://github.com/openshift/origin/issues/14575 (perhaps can be dupped ??) The first inkling of some trouble was: ``` TASK [openshift_node : Start and enable node] ********************************** Thursday 29 June 2017 16:01:54 +0000 (0:00:00.156) 0:15:03.087 ********* FAILED - RETRYING: Start and enable node (1 retries left). FAILED - RETRYING: Start and enable node (1 retries left). FAILED - RETRYING: Start and enable node (1 retries left). FAILED - RETRYING: Start and enable node (1 retries left). ok: [ci-prtest-5a37c28-3889-ig-m-k63s] ok: [ci-prtest-5a37c28-3889-ig-n-2l38] ok: [ci-prtest-5a37c28-3889-ig-n-0xsr] ok: [ci-prtest-5a37c28-3889-ig-n-j2s8] ``` but perhaps it recovered given the final set of `ok` messages. But then we got this: ``` RUNNING HANDLER [openshift_node : restart node] ******************************** Thursday 29 June 2017 16:02:40 +0000 (0:00:00.053) 0:15:49.265 ********* fatal: [ci-prtest-5a37c28-3889-ig-m-k63s]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} fatal: [ci-prtest-5a37c28-3889-ig-n-j2s8]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} fatal: [ci-prtest-5a37c28-3889-ig-n-0xsr]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} fatal: [ci-prtest-5a37c28-3889-ig-n-2l38]: FAILED! => {"changed": false, "failed": true, "msg": "Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See \"systemctl status origin-node.service\" and \"journalctl -xe\" for details.\n"} ``` And ``` Failure summary: 1. Host: ci-prtest-5a37c28-3889-ig-m-k63s Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. 2. Host: ci-prtest-5a37c28-3889-ig-n-j2s8 Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. 3. Host: ci-prtest-5a37c28-3889-ig-n-0xsr Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. 4. Host: ci-prtest-5a37c28-3889-ig-n-2l38 Play: Configure nodes Task: openshift_node : restart node Message: Unable to restart service origin-node: Job for origin-node.service failed because the control process exited with error code. See "systemctl status origin-node.service" and "journalctl -xe" for details. ```
test
flake gce cluster provision failure from similar to perhaps can be dupped the first inkling of some trouble was task thursday june failed retrying start and enable node retries left failed retrying start and enable node retries left failed retrying start and enable node retries left failed retrying start and enable node retries left ok ok ok ok but perhaps it recovered given the final set of ok messages but then we got this running handler thursday june fatal failed changed false failed true msg unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details n fatal failed changed false failed true msg unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details n fatal failed changed false failed true msg unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details n fatal failed changed false failed true msg unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details n and failure summary host ci prtest ig m play configure nodes task openshift node restart node message unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details host ci prtest ig n play configure nodes task openshift node restart node message unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details host ci prtest ig n play configure nodes task openshift node restart node message unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details host ci prtest ig n play configure nodes task openshift node restart node message unable to restart service origin node job for origin node service failed because the control process exited with error code see systemctl status origin node service and journalctl xe for details
1
101,078
16,490,825,332
IssuesEvent
2021-05-25 03:23:06
MythicDrops/kindling
https://api.github.com/repos/MythicDrops/kindling
closed
CVE-2021-23369 (High) detected in opennmsopennms-source-26.0.0-1 - autoclosed
security vulnerability
## CVE-2021-23369 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>opennmsopennms-source-26.0.0-1</b></p></summary> <p> <p>A Java based fault and performance management system</p> <p>Library home page: <a href=https://sourceforge.net/projects/opennms/>https://sourceforge.net/projects/opennms/</a></p> <p>Found in base branch: <b>main</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>kindling/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package handlebars before 4.7.7 are vulnerable to Remote Code Execution (RCE) when selecting certain compiling options to compile templates coming from an untrusted source. <p>Publish Date: 2021-04-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23369>CVE-2021-23369</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23369">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23369</a></p> <p>Release Date: 2021-04-12</p> <p>Fix Resolution: handlebars - 4.7.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-2021-23369 (High) detected in opennmsopennms-source-26.0.0-1 - autoclosed - ## CVE-2021-23369 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>opennmsopennms-source-26.0.0-1</b></p></summary> <p> <p>A Java based fault and performance management system</p> <p>Library home page: <a href=https://sourceforge.net/projects/opennms/>https://sourceforge.net/projects/opennms/</a></p> <p>Found in base branch: <b>main</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>kindling/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package handlebars before 4.7.7 are vulnerable to Remote Code Execution (RCE) when selecting certain compiling options to compile templates coming from an untrusted source. <p>Publish Date: 2021-04-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23369>CVE-2021-23369</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23369">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23369</a></p> <p>Release Date: 2021-04-12</p> <p>Fix Resolution: handlebars - 4.7.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 high detected in opennmsopennms source autoclosed cve high severity vulnerability vulnerable library opennmsopennms source a java based fault and performance management system library home page a href found in base branch main vulnerable source files kindling node modules handlebars lib handlebars compiler javascript compiler js vulnerability details the package handlebars before are vulnerable to remote code execution rce when selecting certain compiling options to compile templates coming from an untrusted source publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution handlebars step up your open source security game with whitesource
0
144,350
22,334,047,483
IssuesEvent
2022-06-14 16:49:09
lexml/lexml-eta
https://api.github.com/repos/lexml/lexml-eta
closed
Aplicar classe CSS de existente ou inexistente na norma alterada
enhancement design
Para dispositivos adicionados, caso o atributo existeNaNormaAlterada tenha sido informado, deverá ser aplicada uma classe CSS correspondente para permitir alguma diferenciação visual.
1.0
Aplicar classe CSS de existente ou inexistente na norma alterada - Para dispositivos adicionados, caso o atributo existeNaNormaAlterada tenha sido informado, deverá ser aplicada uma classe CSS correspondente para permitir alguma diferenciação visual.
non_test
aplicar classe css de existente ou inexistente na norma alterada para dispositivos adicionados caso o atributo existenanormaalterada tenha sido informado deverá ser aplicada uma classe css correspondente para permitir alguma diferenciação visual
0
490,226
14,117,063,579
IssuesEvent
2020-11-08 07:11:31
redhat-developer/vscode-openshift-tools
https://api.github.com/repos/redhat-developer/vscode-openshift-tools
closed
Use k8s javascript client to get OpenShift Routes for Cluster explorer
kind/task priority/major
Current implementation use openshift-rest-client and it brings in https://github.com/redhat-developer/vscode-openshift-tools/network/alert/package-lock.json/node-forge/open.
1.0
Use k8s javascript client to get OpenShift Routes for Cluster explorer - Current implementation use openshift-rest-client and it brings in https://github.com/redhat-developer/vscode-openshift-tools/network/alert/package-lock.json/node-forge/open.
non_test
use javascript client to get openshift routes for cluster explorer current implementation use openshift rest client and it brings in
0
174,821
6,543,571,404
IssuesEvent
2017-09-03 01:25:50
whatllb/whatllbe-website
https://api.github.com/repos/whatllb/whatllbe-website
closed
Charts: Maximize use of top space
Priority: 4 Low Status: 130 In Progress Status: 160 Completed Type: 4 Enhancement
Feedback from Chris: Consolidate into one row to save vertical space? ![image](https://user-images.githubusercontent.com/28312128/29252818-2c0990bc-803c-11e7-9ccd-8ccfcff24e5c.png)
1.0
Charts: Maximize use of top space - Feedback from Chris: Consolidate into one row to save vertical space? ![image](https://user-images.githubusercontent.com/28312128/29252818-2c0990bc-803c-11e7-9ccd-8ccfcff24e5c.png)
non_test
charts maximize use of top space feedback from chris consolidate into one row to save vertical space
0
273,566
23,767,068,548
IssuesEvent
2022-09-01 13:35:19
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
closed
[CI] WaitForIndexColorStepTests testHashcodeAndEquals failing
>test-failure :Data Management/ILM+SLM Team:Data Management
fails on 7.17, but not on main **Build scan:** https://gradle-enterprise.elastic.co/s/vflkmhbhp5pkc/tests/:x-pack:plugin:core:test/org.elasticsearch.xpack.core.ilm.WaitForIndexColorStepTests/testHashcodeAndEquals **Reproduction line:** `./gradlew ':x-pack:plugin:core:test' --tests "org.elasticsearch.xpack.core.ilm.WaitForIndexColorStepTests.testHashcodeAndEquals" -Dtests.seed=F77AE2FFFDE545EA -Dtests.locale=de-DE -Dtests.timezone=Universal -Druntime.java=8` **Applicable branches:** 7.17 **Reproduces locally?:** Yes **Failure history:** https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.xpack.core.ilm.WaitForIndexColorStepTests&tests.test=testHashcodeAndEquals **Failure excerpt:** ``` java.lang.AssertionError: WaitForIndexColorStep mutation should not be equal to original Expected: not <{"phase":"GuGGVObeKb","action":"tnSimivtcW","name":"uHhJTMdJgd"} => {"phase":"bylymjUPar","action":"uMxQPCYaeW","name":"GNsMAxfCwy"}> but: was <{"phase":"GuGGVObeKb","action":"tnSimivtcW","name":"uHhJTMdJgd"} => {"phase":"bylymjUPar","action":"uMxQPCYaeW","name":"GNsMAxfCwy"}> at __randomizedtesting.SeedInfo.seed([F77AE2FFFDE545EA:AB03D5B08BFBD2FE]:0) at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:18) at org.junit.Assert.assertThat(Assert.java:956) at org.elasticsearch.test.EqualsHashCodeTestUtils.checkEqualsAndHashCode(EqualsHashCodeTestUtils.java:73) at org.elasticsearch.xpack.core.ilm.AbstractStepTestCase.testHashcodeAndEquals(AbstractStepTestCase.java:52) at sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) 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.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:49) at org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:45) at org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:48) at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:64) at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.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.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.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:45) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:41) 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 com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:47) at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:64) at org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:54) 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:748) ```
1.0
[CI] WaitForIndexColorStepTests testHashcodeAndEquals failing - fails on 7.17, but not on main **Build scan:** https://gradle-enterprise.elastic.co/s/vflkmhbhp5pkc/tests/:x-pack:plugin:core:test/org.elasticsearch.xpack.core.ilm.WaitForIndexColorStepTests/testHashcodeAndEquals **Reproduction line:** `./gradlew ':x-pack:plugin:core:test' --tests "org.elasticsearch.xpack.core.ilm.WaitForIndexColorStepTests.testHashcodeAndEquals" -Dtests.seed=F77AE2FFFDE545EA -Dtests.locale=de-DE -Dtests.timezone=Universal -Druntime.java=8` **Applicable branches:** 7.17 **Reproduces locally?:** Yes **Failure history:** https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.xpack.core.ilm.WaitForIndexColorStepTests&tests.test=testHashcodeAndEquals **Failure excerpt:** ``` java.lang.AssertionError: WaitForIndexColorStep mutation should not be equal to original Expected: not <{"phase":"GuGGVObeKb","action":"tnSimivtcW","name":"uHhJTMdJgd"} => {"phase":"bylymjUPar","action":"uMxQPCYaeW","name":"GNsMAxfCwy"}> but: was <{"phase":"GuGGVObeKb","action":"tnSimivtcW","name":"uHhJTMdJgd"} => {"phase":"bylymjUPar","action":"uMxQPCYaeW","name":"GNsMAxfCwy"}> at __randomizedtesting.SeedInfo.seed([F77AE2FFFDE545EA:AB03D5B08BFBD2FE]:0) at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:18) at org.junit.Assert.assertThat(Assert.java:956) at org.elasticsearch.test.EqualsHashCodeTestUtils.checkEqualsAndHashCode(EqualsHashCodeTestUtils.java:73) at org.elasticsearch.xpack.core.ilm.AbstractStepTestCase.testHashcodeAndEquals(AbstractStepTestCase.java:52) at sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) 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.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:49) at org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:45) at org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:48) at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:64) at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.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.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.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:45) at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:41) 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 com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36) at org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:53) at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:47) at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:64) at org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:54) 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:748) ```
test
waitforindexcolorsteptests testhashcodeandequals failing fails on but not on main build scan reproduction line gradlew x pack plugin core test tests org elasticsearch xpack core ilm waitforindexcolorsteptests testhashcodeandequals dtests seed dtests locale de de dtests timezone universal druntime java applicable branches reproduces locally yes failure history failure excerpt java lang assertionerror waitforindexcolorstep mutation should not be equal to original expected not phase bylymjupar action umxqpcyaew name gnsmaxfcwy but was phase bylymjupar action umxqpcyaew name gnsmaxfcwy at randomizedtesting seedinfo seed at org hamcrest matcherassert assertthat matcherassert java at org junit assert assertthat assert java at org elasticsearch test equalshashcodetestutils checkequalsandhashcode equalshashcodetestutils java at org elasticsearch xpack core ilm abstractsteptestcase testhashcodeandequals abstractsteptestcase java at sun reflect nativemethodaccessorimpl nativemethodaccessorimpl java at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun 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 util testrulesetupteardownchained evaluate testrulesetupteardownchained java at org apache lucene util abstractbeforeafterrule evaluate abstractbeforeafterrule java at org apache lucene util testrulethreadandtestname evaluate testrulethreadandtestname java at org apache lucene util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene 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 util abstractbeforeafterrule evaluate abstractbeforeafterrule java at com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene 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 com carrotsearch randomizedtesting rules statementadapter evaluate statementadapter java at org apache lucene util testruleassertionsrequired evaluate testruleassertionsrequired java at org apache lucene util testrulemarkfailure evaluate testrulemarkfailure java at org apache lucene util testruleignoreaftermaxfailures evaluate testruleignoreaftermaxfailures java at org apache lucene 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
44,807
5,651,790,873
IssuesEvent
2017-04-08 08:11:05
ludovic-gonthier/snowshoe
https://api.github.com/repos/ludovic-gonthier/snowshoe
closed
Unit/fonctional tests
enhancement test
Would be nice to have some tests now. Not sure about what test framework you should use (maybe ask @ludow). I can give you a hand once you decide which framework you'd rather use :grin:
1.0
Unit/fonctional tests - Would be nice to have some tests now. Not sure about what test framework you should use (maybe ask @ludow). I can give you a hand once you decide which framework you'd rather use :grin:
test
unit fonctional tests would be nice to have some tests now not sure about what test framework you should use maybe ask ludow i can give you a hand once you decide which framework you d rather use grin
1
244,891
20,728,034,025
IssuesEvent
2022-03-14 06:00:18
ultravideo/uvgRTP
https://api.github.com/repos/ultravideo/uvgRTP
opened
The test suite should be expanded
untested
There is still much room to expand the test suite in [test folder](https://github.com/ultravideo/uvgRTP/tree/master/test). Validate received sequence numbers, payloads and timestamps, add high stress tests for different formats, test different configuration enums etc. I would recommend doing this only after most of the known bugs have been fixed, to not get too bogged down/overwhelmed by existing bugs: * #15 * #97 * #105 * #30 * #35 * #91 * #104 * #106 * #107 * #111 * #112 * #31 * #51
1.0
The test suite should be expanded - There is still much room to expand the test suite in [test folder](https://github.com/ultravideo/uvgRTP/tree/master/test). Validate received sequence numbers, payloads and timestamps, add high stress tests for different formats, test different configuration enums etc. I would recommend doing this only after most of the known bugs have been fixed, to not get too bogged down/overwhelmed by existing bugs: * #15 * #97 * #105 * #30 * #35 * #91 * #104 * #106 * #107 * #111 * #112 * #31 * #51
test
the test suite should be expanded there is still much room to expand the test suite in validate received sequence numbers payloads and timestamps add high stress tests for different formats test different configuration enums etc i would recommend doing this only after most of the known bugs have been fixed to not get too bogged down overwhelmed by existing bugs
1
244,718
20,692,014,743
IssuesEvent
2022-03-11 01:57:29
gravitational/webapps
https://api.github.com/repos/gravitational/webapps
closed
Table refactor regressions and other minor issues
test-plan-issue
#### Table regressions Most issues had to do with searching, checkout previous versions of teleport for comparison audit log: - [ ] cannot search by date as seen in column session recording: - [ ] cannot search by duration active sessions: - [ ] looks like we added a search bar, but it barely works node list: - [ ] searching by keyword "tunnel", when there are tunnels, does not work recovery table: - [ ] table `device successfully enrolled`, when hovering, the row without the `remove` btn does not highlight entire row #### Others Just some other minor stuff i noticed trusted clusters - [ ] no tooltip when add button is disabled like others support links: - [ ] the troubleshooting links does not go to the proper page anymore, need to be updated
1.0
Table refactor regressions and other minor issues - #### Table regressions Most issues had to do with searching, checkout previous versions of teleport for comparison audit log: - [ ] cannot search by date as seen in column session recording: - [ ] cannot search by duration active sessions: - [ ] looks like we added a search bar, but it barely works node list: - [ ] searching by keyword "tunnel", when there are tunnels, does not work recovery table: - [ ] table `device successfully enrolled`, when hovering, the row without the `remove` btn does not highlight entire row #### Others Just some other minor stuff i noticed trusted clusters - [ ] no tooltip when add button is disabled like others support links: - [ ] the troubleshooting links does not go to the proper page anymore, need to be updated
test
table refactor regressions and other minor issues table regressions most issues had to do with searching checkout previous versions of teleport for comparison audit log cannot search by date as seen in column session recording cannot search by duration active sessions looks like we added a search bar but it barely works node list searching by keyword tunnel when there are tunnels does not work recovery table table device successfully enrolled when hovering the row without the remove btn does not highlight entire row others just some other minor stuff i noticed trusted clusters no tooltip when add button is disabled like others support links the troubleshooting links does not go to the proper page anymore need to be updated
1
79,422
7,715,248,021
IssuesEvent
2018-05-23 06:53:57
xcat2/xcat2-task-management
https://api.github.com/repos/xcat2/xcat2-task-management
closed
implement a tool to calculate test cases increase/update rate for each release
management sprint2 test
what to do: Implement a tool to calculate test cases increase/update rate for each release. * [x] implement tool depending on design
1.0
implement a tool to calculate test cases increase/update rate for each release - what to do: Implement a tool to calculate test cases increase/update rate for each release. * [x] implement tool depending on design
test
implement a tool to calculate test cases increase update rate for each release what to do implement a tool to calculate test cases increase update rate for each release implement tool depending on design
1
438,444
12,627,843,013
IssuesEvent
2020-06-14 23:46:57
kubernetes/minikube
https://api.github.com/repos/kubernetes/minikube
closed
"kubectl top pods" requires heapster - reinstate addon?
area/addons kind/bug priority/important-longterm
The heapster addon was removed some time ago due to it being deprecated. I guess it isn't deprecated enough! ``` kubectl top pods Error from server (NotFound): the server could not find the requested resource (get services http:heapster:) $ minikube addons enable heapster 💣 enable failed: run callbacks: heapster is not a valid addon 😿 minikube is exiting due to an error. If the above message is not useful, open an issue: 👉 https://github.com/kubernetes/minikube/issues/new/choose $ kubectl version Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.0", GitCommit:"9e991415386e4cf155a24b1da15becaa390438d8", GitTreeState:"clean", BuildDate:"2020-03-26T06:16:15Z", GoVersion:"go1.14", Compiler:"gc", Platform:"darwin/amd64"} Server Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.3", GitCommit:"2e7996e3e2712684bc73f0dec ```
1.0
"kubectl top pods" requires heapster - reinstate addon? - The heapster addon was removed some time ago due to it being deprecated. I guess it isn't deprecated enough! ``` kubectl top pods Error from server (NotFound): the server could not find the requested resource (get services http:heapster:) $ minikube addons enable heapster 💣 enable failed: run callbacks: heapster is not a valid addon 😿 minikube is exiting due to an error. If the above message is not useful, open an issue: 👉 https://github.com/kubernetes/minikube/issues/new/choose $ kubectl version Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.0", GitCommit:"9e991415386e4cf155a24b1da15becaa390438d8", GitTreeState:"clean", BuildDate:"2020-03-26T06:16:15Z", GoVersion:"go1.14", Compiler:"gc", Platform:"darwin/amd64"} Server Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.3", GitCommit:"2e7996e3e2712684bc73f0dec ```
non_test
kubectl top pods requires heapster reinstate addon the heapster addon was removed some time ago due to it being deprecated i guess it isn t deprecated enough kubectl top pods error from server notfound the server could not find the requested resource get services http heapster minikube addons enable heapster 💣 enable failed run callbacks heapster is not a valid addon 😿 minikube is exiting due to an error if the above message is not useful open an issue 👉 kubectl version client version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform darwin server version version info major minor gitversion gitcommit
0
288,201
24,888,797,361
IssuesEvent
2022-10-28 10:04:18
Graylog2/graylog2-server
https://api.github.com/repos/Graylog2/graylog2-server
opened
"Always matches" stream rule still matches after being "inverted"
test-day Low
"Always matches" stream rule still matches after being "inverted" ## Steps to Reproduce: ### Step 1 <span style="color:#ff5538"> **[Fail]** </span>
1.0
"Always matches" stream rule still matches after being "inverted" - "Always matches" stream rule still matches after being "inverted" ## Steps to Reproduce: ### Step 1 <span style="color:#ff5538"> **[Fail]** </span>
test
always matches stream rule still matches after being inverted always matches stream rule still matches after being inverted steps to reproduce step
1
194,177
14,670,364,205
IssuesEvent
2020-12-30 04:35:08
atom-ide-community/atom-script
https://api.github.com/repos/atom-ide-community/atom-script
closed
Unable to install the script package
installation please-try-the-latest-version
setup- 1) I have installed python 3.5 in C:\Python35 2) I installed atom 64bit in the same windows7 machine. Now when I go install package, the first one I chose was script by rgbkrk. Clicked on install and the below error is thrown. Please help to resolve. Error: Installing “script@3.15.0” failed.Hide output… fs.js:922 return binding.mkdir(pathModule._makeLong(path), ^ Error: ENOENT: no such file or directory, mkdir 'C:\Users\vissinha\AppData\Local\Temp;C:\Python35\d-117724-9212-n3ybkj.mztx9io1or' at Error (native) at Object.fs.mkdirSync (fs.js:922:18) at Object.mkdirSync (C:\Users\vissinha\AppData\Local\atom\app-1.19.3\resources\app\apm\node_modules\temp\lib\temp.js:137:6) at Request.<anonymous> (C:\Users\vissinha\AppData\Local\atom\app-1.19.3\resources\app\apm\lib\install.js:335:41) at emitOne (events.js:96:13) at Request.emit (events.js:188:7) at Request.onRequestResponse (C:\Users\vissinha\AppData\Local\atom\app-1.19.3\resources\app\apm\node_modules\request\request.js:1074:10) at emitOne (events.js:96:13) at ClientRequest.emit (events.js:188:7) at HTTPParser.parserOnIncomingClient [as onIncoming] (_http_client.js:474:21)
1.0
Unable to install the script package - setup- 1) I have installed python 3.5 in C:\Python35 2) I installed atom 64bit in the same windows7 machine. Now when I go install package, the first one I chose was script by rgbkrk. Clicked on install and the below error is thrown. Please help to resolve. Error: Installing “script@3.15.0” failed.Hide output… fs.js:922 return binding.mkdir(pathModule._makeLong(path), ^ Error: ENOENT: no such file or directory, mkdir 'C:\Users\vissinha\AppData\Local\Temp;C:\Python35\d-117724-9212-n3ybkj.mztx9io1or' at Error (native) at Object.fs.mkdirSync (fs.js:922:18) at Object.mkdirSync (C:\Users\vissinha\AppData\Local\atom\app-1.19.3\resources\app\apm\node_modules\temp\lib\temp.js:137:6) at Request.<anonymous> (C:\Users\vissinha\AppData\Local\atom\app-1.19.3\resources\app\apm\lib\install.js:335:41) at emitOne (events.js:96:13) at Request.emit (events.js:188:7) at Request.onRequestResponse (C:\Users\vissinha\AppData\Local\atom\app-1.19.3\resources\app\apm\node_modules\request\request.js:1074:10) at emitOne (events.js:96:13) at ClientRequest.emit (events.js:188:7) at HTTPParser.parserOnIncomingClient [as onIncoming] (_http_client.js:474:21)
test
unable to install the script package setup i have installed python in c i installed atom in the same machine now when i go install package the first one i chose was script by rgbkrk clicked on install and the below error is thrown please help to resolve error installing “script ” failed hide output… fs js return binding mkdir pathmodule makelong path error enoent no such file or directory mkdir c users vissinha appdata local temp c d at error native at object fs mkdirsync fs js at object mkdirsync c users vissinha appdata local atom app resources app apm node modules temp lib temp js at request c users vissinha appdata local atom app resources app apm lib install js at emitone events js at request emit events js at request onrequestresponse c users vissinha appdata local atom app resources app apm node modules request request js at emitone events js at clientrequest emit events js at httpparser parseronincomingclient http client js
1
514,358
14,937,722,395
IssuesEvent
2021-01-25 14:57:54
infor-design/enterprise
https://api.github.com/repos/infor-design/enterprise
closed
Locale: A large negative number losing a digit
[5] priority: high team: landmark type: bug :bug:
<!-- Please be aware that this is a publicly visible bug report. Do not post any credentials, screenshots with proprietary information, or anything you think shouldn't be visible to the world. If private information is required to be shared for a quality bug report, please email one of the [code owners](https://github.com/infor-design/enterprise/blob/master/.github/CODEOWNERS) directly. --> **Describe the bug** A large negative number is losing a 0 digit when .formatNumber is called. This is causing the number -922,589,489,099.38 to become -92,258,948,999.38 **To Reproduce** Steps to reproduce the behavior: 1. Unzip [test-format-big-negative.zip](https://github.com/infor-design/enterprise/files/5631703/test-format-big-negative.zip) into the codebase, then navigate to it. 2. Enter -922589489099.38 into the Numeric Input field 3. Click the Format button (this will call .formatNumber, and the formatted value to be put in the Formatted Value field. 4. See error, that the Formatted Value field's value is -92258948999.38 **Expected behavior** We shouldn't lose a digit when formatting a negative big decimal. **Version** <!-- You can find this by inspecting the document html tag or sohoxi.js script header --> - ids-enterprise: v4.36.0-dev **Screenshots** ![FormatNumberBigDecimalIssue](https://user-images.githubusercontent.com/22107636/100924261-fc2d2f80-34a5-11eb-9be8-fa69ffe0fb85.gif) **Platform** - All
1.0
Locale: A large negative number losing a digit - <!-- Please be aware that this is a publicly visible bug report. Do not post any credentials, screenshots with proprietary information, or anything you think shouldn't be visible to the world. If private information is required to be shared for a quality bug report, please email one of the [code owners](https://github.com/infor-design/enterprise/blob/master/.github/CODEOWNERS) directly. --> **Describe the bug** A large negative number is losing a 0 digit when .formatNumber is called. This is causing the number -922,589,489,099.38 to become -92,258,948,999.38 **To Reproduce** Steps to reproduce the behavior: 1. Unzip [test-format-big-negative.zip](https://github.com/infor-design/enterprise/files/5631703/test-format-big-negative.zip) into the codebase, then navigate to it. 2. Enter -922589489099.38 into the Numeric Input field 3. Click the Format button (this will call .formatNumber, and the formatted value to be put in the Formatted Value field. 4. See error, that the Formatted Value field's value is -92258948999.38 **Expected behavior** We shouldn't lose a digit when formatting a negative big decimal. **Version** <!-- You can find this by inspecting the document html tag or sohoxi.js script header --> - ids-enterprise: v4.36.0-dev **Screenshots** ![FormatNumberBigDecimalIssue](https://user-images.githubusercontent.com/22107636/100924261-fc2d2f80-34a5-11eb-9be8-fa69ffe0fb85.gif) **Platform** - All
non_test
locale a large negative number losing a digit describe the bug a large negative number is losing a digit when formatnumber is called this is causing the number to become to reproduce steps to reproduce the behavior unzip into the codebase then navigate to it enter into the numeric input field click the format button this will call formatnumber and the formatted value to be put in the formatted value field see error that the formatted value field s value is expected behavior we shouldn t lose a digit when formatting a negative big decimal version ids enterprise dev screenshots platform all
0
290,050
21,800,853,417
IssuesEvent
2022-05-16 04:57:50
CarsOk/tjdatagroup
https://api.github.com/repos/CarsOk/tjdatagroup
closed
Agregar la versión mas actualizada del SRS para su revisión.
documentation enhancement
**Como:** Gerente de la empresa **Quiero:** Analizar con exactitud el proyecto que están realizando los aprendices SENA **Para**: Evaluarlo con antelación y hacer las modificaciones necesarias. Criterios de evaluación: - Debe estar en PDF o Markdown. - Debe tener la mayoría de partes agregadas (O ser una mejora de una versión anterior). - Debe basarse en el estándar de IEEE 830.
1.0
Agregar la versión mas actualizada del SRS para su revisión. - **Como:** Gerente de la empresa **Quiero:** Analizar con exactitud el proyecto que están realizando los aprendices SENA **Para**: Evaluarlo con antelación y hacer las modificaciones necesarias. Criterios de evaluación: - Debe estar en PDF o Markdown. - Debe tener la mayoría de partes agregadas (O ser una mejora de una versión anterior). - Debe basarse en el estándar de IEEE 830.
non_test
agregar la versión mas actualizada del srs para su revisión como gerente de la empresa quiero analizar con exactitud el proyecto que están realizando los aprendices sena para evaluarlo con antelación y hacer las modificaciones necesarias criterios de evaluación debe estar en pdf o markdown debe tener la mayoría de partes agregadas o ser una mejora de una versión anterior debe basarse en el estándar de ieee
0
37,496
18,447,496,445
IssuesEvent
2021-10-15 05:34:13
romanz/electrs
https://api.github.com/repos/romanz/electrs
closed
[Question] How to use any kind of cache?
enhancement question performance
I noticed every time I connect from the same wallet, the sync start over. And at only ~150 transactions it takes about 30s to start, is there a way to cache the transactions to speed the process? With any random server or even electrum-personal-server the "sync" doesn't appear, it just instantly loads the wallet where I left it (as long I don't change the server). Is there a way to replicate this on electrs?
True
[Question] How to use any kind of cache? - I noticed every time I connect from the same wallet, the sync start over. And at only ~150 transactions it takes about 30s to start, is there a way to cache the transactions to speed the process? With any random server or even electrum-personal-server the "sync" doesn't appear, it just instantly loads the wallet where I left it (as long I don't change the server). Is there a way to replicate this on electrs?
non_test
how to use any kind of cache i noticed every time i connect from the same wallet the sync start over and at only transactions it takes about to start is there a way to cache the transactions to speed the process with any random server or even electrum personal server the sync doesn t appear it just instantly loads the wallet where i left it as long i don t change the server is there a way to replicate this on electrs
0
290,354
32,064,068,512
IssuesEvent
2023-09-25 00:18:06
TheKingTermux/alice
https://api.github.com/repos/TheKingTermux/alice
reopened
Authorization Bypass in parse-path
do-not-autoclose Security Auto Create Issues no-issue-activity High
### Description Authorization Bypass Through User-Controlled Key in GitHub repository ionicabizau/parse-path prior to 5.0.0. ### Severity Check - [ ] Low - [ ] Moderate - [X] High - [ ] Critical ### Severity Number 7.3 ### CVSS base metrics * Attack vector Network * Attack complexity Low * Privileges required None * User interaction None * Scope Unchanged * Confidentiality Low * Integrity Low * Availability Low * CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L * Weaknesses CWE-639 * CVE ID CVE-2022-0624 * GHSA ID GHSA-3j8f-xvm3-ffx4 ### Information * Package parse-path (npm) * Affected versions < 5.0.0 * Patched versions 5.0.0 ### References * https://nvd.nist.gov/vuln/detail/CVE-2022-0624 * IonicaBizau/parse-path@f9ad885 * https://huntr.dev/bounties/afffb2bd-fb06-4144-829e-ecbbcbc85388
True
Authorization Bypass in parse-path - ### Description Authorization Bypass Through User-Controlled Key in GitHub repository ionicabizau/parse-path prior to 5.0.0. ### Severity Check - [ ] Low - [ ] Moderate - [X] High - [ ] Critical ### Severity Number 7.3 ### CVSS base metrics * Attack vector Network * Attack complexity Low * Privileges required None * User interaction None * Scope Unchanged * Confidentiality Low * Integrity Low * Availability Low * CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L * Weaknesses CWE-639 * CVE ID CVE-2022-0624 * GHSA ID GHSA-3j8f-xvm3-ffx4 ### Information * Package parse-path (npm) * Affected versions < 5.0.0 * Patched versions 5.0.0 ### References * https://nvd.nist.gov/vuln/detail/CVE-2022-0624 * IonicaBizau/parse-path@f9ad885 * https://huntr.dev/bounties/afffb2bd-fb06-4144-829e-ecbbcbc85388
non_test
authorization bypass in parse path description authorization bypass through user controlled key in github repository ionicabizau parse path prior to severity check low moderate high critical severity number cvss base metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged confidentiality low integrity low availability low cvss av n ac l pr n ui n s u c l i l a l weaknesses cwe cve id cve ghsa id ghsa information package parse path npm affected versions patched versions references ionicabizau parse path
0
73,728
9,694,673,674
IssuesEvent
2019-05-24 19:41:00
GoogleContainerTools/skaffold
https://api.github.com/repos/GoogleContainerTools/skaffold
closed
skaffold debug reference applications
area/debug kind/documentation
I feel it would be extremely valuable to have a reference project that demonstrates how to get up and running with `skaffold debug`. Things I would hope to see: - A project per supported language/runtime - `git clone <repo> && skaffold debug` is all I should need to run it. - Supporting documentation that explains they key parts that make the feature tick - Include a screenshot/video of how you might attached your favourite IDE - vscode seems like a popular choice Your documentation clearly states that this is an alpha feature but doing this now will: - Make it easier to demonstrate how the feature changes over time through executable documentation - Encourage more feedback by making it easier to use
1.0
skaffold debug reference applications - I feel it would be extremely valuable to have a reference project that demonstrates how to get up and running with `skaffold debug`. Things I would hope to see: - A project per supported language/runtime - `git clone <repo> && skaffold debug` is all I should need to run it. - Supporting documentation that explains they key parts that make the feature tick - Include a screenshot/video of how you might attached your favourite IDE - vscode seems like a popular choice Your documentation clearly states that this is an alpha feature but doing this now will: - Make it easier to demonstrate how the feature changes over time through executable documentation - Encourage more feedback by making it easier to use
non_test
skaffold debug reference applications i feel it would be extremely valuable to have a reference project that demonstrates how to get up and running with skaffold debug things i would hope to see a project per supported language runtime git clone skaffold debug is all i should need to run it supporting documentation that explains they key parts that make the feature tick include a screenshot video of how you might attached your favourite ide vscode seems like a popular choice your documentation clearly states that this is an alpha feature but doing this now will make it easier to demonstrate how the feature changes over time through executable documentation encourage more feedback by making it easier to use
0
10,497
13,259,495,515
IssuesEvent
2020-08-20 16:47:48
pystatgen/sgkit
https://api.github.com/repos/pystatgen/sgkit
opened
Configure mergify to rebase on branch update and merge on "merge"
process + tools
Currently it looks like mergify is set up to merge to bring branches up to date, and rebase to merge. This leads to confusing history graphs: ![Screenshot from 2020-08-20 17-35-11](https://user-images.githubusercontent.com/2664569/90800731-f2275c80-e30c-11ea-842d-1ecded742299.png) On the other hand, if we configure mergify to rebase to branch update and merge to merge, we get a nice linear history with a clear indication of the composition of the PRs. ![Screenshot from 2020-08-20 17-33-28](https://user-images.githubusercontent.com/2664569/90800736-f489b680-e30c-11ea-8cd2-3bd32ebe6008.png)
1.0
Configure mergify to rebase on branch update and merge on "merge" - Currently it looks like mergify is set up to merge to bring branches up to date, and rebase to merge. This leads to confusing history graphs: ![Screenshot from 2020-08-20 17-35-11](https://user-images.githubusercontent.com/2664569/90800731-f2275c80-e30c-11ea-842d-1ecded742299.png) On the other hand, if we configure mergify to rebase to branch update and merge to merge, we get a nice linear history with a clear indication of the composition of the PRs. ![Screenshot from 2020-08-20 17-33-28](https://user-images.githubusercontent.com/2664569/90800736-f489b680-e30c-11ea-8cd2-3bd32ebe6008.png)
non_test
configure mergify to rebase on branch update and merge on merge currently it looks like mergify is set up to merge to bring branches up to date and rebase to merge this leads to confusing history graphs on the other hand if we configure mergify to rebase to branch update and merge to merge we get a nice linear history with a clear indication of the composition of the prs
0
10,530
12,465,986,996
IssuesEvent
2020-05-28 14:49:44
jenkinsci/dark-theme
https://api.github.com/repos/jenkinsci/dark-theme
closed
Full Stage View icon's background is not transparent
bug plugin-compatibility
IIRC it comes from a Pipeline Plugin ![image](https://user-images.githubusercontent.com/3000480/83154238-2d483400-a100-11ea-90b1-73c81311448c.png)
True
Full Stage View icon's background is not transparent - IIRC it comes from a Pipeline Plugin ![image](https://user-images.githubusercontent.com/3000480/83154238-2d483400-a100-11ea-90b1-73c81311448c.png)
non_test
full stage view icon s background is not transparent iirc it comes from a pipeline plugin
0
317,353
27,230,922,869
IssuesEvent
2023-02-21 13:11:21
inmanta/inmanta-core
https://api.github.com/repos/inmanta/inmanta-core
opened
Investigate agent shutdown sequence
unstable test
The `Agent.stop()` method stops the thread pools (used in the Agent and the AgentInstance class) asynchronously by invoking the `shutdown(wait=False)` method on it. This way the `Agent.stop()` stop can return while the thread pool is still executing work. This can causes test cases to fail, because the agent and the server are not stopped in the correct order. Tasks: - [ ] Investigate why thread pools are stopped asynchronously. - [ ] Discuss the possible solutions for this issue with the team and agree on a solution. - [ ] Implement fix.
1.0
Investigate agent shutdown sequence - The `Agent.stop()` method stops the thread pools (used in the Agent and the AgentInstance class) asynchronously by invoking the `shutdown(wait=False)` method on it. This way the `Agent.stop()` stop can return while the thread pool is still executing work. This can causes test cases to fail, because the agent and the server are not stopped in the correct order. Tasks: - [ ] Investigate why thread pools are stopped asynchronously. - [ ] Discuss the possible solutions for this issue with the team and agree on a solution. - [ ] Implement fix.
test
investigate agent shutdown sequence the agent stop method stops the thread pools used in the agent and the agentinstance class asynchronously by invoking the shutdown wait false method on it this way the agent stop stop can return while the thread pool is still executing work this can causes test cases to fail because the agent and the server are not stopped in the correct order tasks investigate why thread pools are stopped asynchronously discuss the possible solutions for this issue with the team and agree on a solution implement fix
1
207,869
16,096,349,742
IssuesEvent
2021-04-27 00:43:53
aws-greengrass/aws-greengrass-nucleus
https://api.github.com/repos/aws-greengrass/aws-greengrass-nucleus
closed
(com.aws.greengrass.util.orchestration.InitUtils): Greengrass Nucleus Fails to start in Docker Container
documentation
**Describe the bug** When executing the Greengrass jar inside a Docker container having an Ubuntu OS it fails with the following error: Unable to set up Nucleus as a system service. **To Reproduce** 1. Pulled a Docker Image having Ubuntu(18.04). 2. Entered into the container. 2. Installed Java 11 on it. 3. Configured AWS Credentials. 4. Downloaded and installed GreenGrass Nucleus as specified [here.](https://docs.aws.amazon.com/greengrass/v2/developerguide/install-greengrass-core-v2.html) `sudo -E java -Droot="/greengrass/v2" -Dlog.store=FILE -jar ./GreengrassCore/lib/Greengrass.jar \ --aws-region us-east-1 --thing-name SECore \ --component-default-user ggc_user:ggc_group --provision true --setup-system-service true --deploy-dev-tools true` 5. Install Fails with this error Unable to set up Nucleus as a system service. **Expected behavior** Install should be successful with the following message: Successfully set up Nucleus as a system service **Actual behavior** Install Fails with this error Unable to set up Nucleus as a system service. **Environment** - OS: Ubuntu 18.04 inside a docker container. - JDK version: 11 - Nucleus version: AWS IoT Greengrass Core software v2.0, latest nucleus. **Additional context** This is an experiment. I was successful in running the nucleus inside an ubuntu VM but running the same inside a docker fails. I have attached the runtime logs and Greengrass error logs present under /greengrass/v2. [greengrass_v2_error_logs.txt](https://github.com/aws-greengrass/aws-greengrass-nucleus/files/5857865/greengrass_v2_error_logs.txt) [runtime_logs.txt](https://github.com/aws-greengrass/aws-greengrass-nucleus/files/5857866/runtime_logs.txt)
1.0
(com.aws.greengrass.util.orchestration.InitUtils): Greengrass Nucleus Fails to start in Docker Container - **Describe the bug** When executing the Greengrass jar inside a Docker container having an Ubuntu OS it fails with the following error: Unable to set up Nucleus as a system service. **To Reproduce** 1. Pulled a Docker Image having Ubuntu(18.04). 2. Entered into the container. 2. Installed Java 11 on it. 3. Configured AWS Credentials. 4. Downloaded and installed GreenGrass Nucleus as specified [here.](https://docs.aws.amazon.com/greengrass/v2/developerguide/install-greengrass-core-v2.html) `sudo -E java -Droot="/greengrass/v2" -Dlog.store=FILE -jar ./GreengrassCore/lib/Greengrass.jar \ --aws-region us-east-1 --thing-name SECore \ --component-default-user ggc_user:ggc_group --provision true --setup-system-service true --deploy-dev-tools true` 5. Install Fails with this error Unable to set up Nucleus as a system service. **Expected behavior** Install should be successful with the following message: Successfully set up Nucleus as a system service **Actual behavior** Install Fails with this error Unable to set up Nucleus as a system service. **Environment** - OS: Ubuntu 18.04 inside a docker container. - JDK version: 11 - Nucleus version: AWS IoT Greengrass Core software v2.0, latest nucleus. **Additional context** This is an experiment. I was successful in running the nucleus inside an ubuntu VM but running the same inside a docker fails. I have attached the runtime logs and Greengrass error logs present under /greengrass/v2. [greengrass_v2_error_logs.txt](https://github.com/aws-greengrass/aws-greengrass-nucleus/files/5857865/greengrass_v2_error_logs.txt) [runtime_logs.txt](https://github.com/aws-greengrass/aws-greengrass-nucleus/files/5857866/runtime_logs.txt)
non_test
com aws greengrass util orchestration initutils greengrass nucleus fails to start in docker container describe the bug when executing the greengrass jar inside a docker container having an ubuntu os it fails with the following error unable to set up nucleus as a system service to reproduce pulled a docker image having ubuntu entered into the container installed java on it configured aws credentials downloaded and installed greengrass nucleus as specified sudo e java droot greengrass dlog store file jar greengrasscore lib greengrass jar aws region us east thing name secore component default user ggc user ggc group provision true setup system service true deploy dev tools true install fails with this error unable to set up nucleus as a system service expected behavior install should be successful with the following message successfully set up nucleus as a system service actual behavior install fails with this error unable to set up nucleus as a system service environment os ubuntu inside a docker container jdk version nucleus version aws iot greengrass core software latest nucleus additional context this is an experiment i was successful in running the nucleus inside an ubuntu vm but running the same inside a docker fails i have attached the runtime logs and greengrass error logs present under greengrass
0
70,261
7,181,513,641
IssuesEvent
2018-02-01 05:32:11
kevin-tan/Q-AWebApplication
https://api.github.com/repos/kevin-tan/Q-AWebApplication
opened
Add unit test for AnswerController
BACK-END TEST
Implement a unit test to test posting a reply, deleting a reply and updating a reply. Related to: - Issue #5 - Issue #11 - Issue #26
1.0
Add unit test for AnswerController - Implement a unit test to test posting a reply, deleting a reply and updating a reply. Related to: - Issue #5 - Issue #11 - Issue #26
test
add unit test for answercontroller implement a unit test to test posting a reply deleting a reply and updating a reply related to issue issue issue
1
126,541
26,875,039,229
IssuesEvent
2023-02-04 23:21:45
andrew-johnson-4/L1IR
https://api.github.com/repos/andrew-johnson-4/L1IR
closed
Make a heap
enhancement JIT reference api tests codegen
Make a heap and say "hello world". * [Declare a data object in the module](https://docs.rs/cranelift-module/0.91.0/cranelift_module/trait.Module.html#tymethod.declare_data) * [Declare data in function](https://docs.rs/cranelift-module/0.91.0/cranelift_module/trait.Module.html#method.declare_data_in_func) * [Declare heap in function](https://docs.rs/cranelift/latest/cranelift/prelude/struct.FunctionBuilder.html#method.create_heap) * [Compute heap address](https://docs.rs/cranelift-codegen/latest/cranelift_codegen/ir/trait.InstBuilder.html#method.heap_addr) * [Store some data on the heap](https://docs.rs/cranelift-codegen/latest/cranelift_codegen/ir/trait.InstBuilder.html#method.heap_store) * [Print data using a native function](https://zmedley.com/calling-rust.html) * [Declare native binding](https://docs.rs/cranelift-jit/latest/cranelift_jit/struct.JITBuilder.html#method.symbol) This is a wish list. The initial heap storage can be managed by FFI Rust: #47.
1.0
Make a heap - Make a heap and say "hello world". * [Declare a data object in the module](https://docs.rs/cranelift-module/0.91.0/cranelift_module/trait.Module.html#tymethod.declare_data) * [Declare data in function](https://docs.rs/cranelift-module/0.91.0/cranelift_module/trait.Module.html#method.declare_data_in_func) * [Declare heap in function](https://docs.rs/cranelift/latest/cranelift/prelude/struct.FunctionBuilder.html#method.create_heap) * [Compute heap address](https://docs.rs/cranelift-codegen/latest/cranelift_codegen/ir/trait.InstBuilder.html#method.heap_addr) * [Store some data on the heap](https://docs.rs/cranelift-codegen/latest/cranelift_codegen/ir/trait.InstBuilder.html#method.heap_store) * [Print data using a native function](https://zmedley.com/calling-rust.html) * [Declare native binding](https://docs.rs/cranelift-jit/latest/cranelift_jit/struct.JITBuilder.html#method.symbol) This is a wish list. The initial heap storage can be managed by FFI Rust: #47.
non_test
make a heap make a heap and say hello world this is a wish list the initial heap storage can be managed by ffi rust
0
27,851
6,910,542,892
IssuesEvent
2017-11-28 02:55:34
AlvaroTorrez/WeatherPOC
https://api.github.com/repos/AlvaroTorrez/WeatherPOC
opened
Implement a dummy access to the login
Shared-Code Task
We will implement an temp dummy login access, we use the following to login: user: admin password: admin All this code will be hard code.
1.0
Implement a dummy access to the login - We will implement an temp dummy login access, we use the following to login: user: admin password: admin All this code will be hard code.
non_test
implement a dummy access to the login we will implement an temp dummy login access we use the following to login user admin password admin all this code will be hard code
0
349,817
10,473,974,059
IssuesEvent
2019-09-23 13:41:08
freeorion/freeorion
https://api.github.com/repos/freeorion/freeorion
closed
Fleet Upkeep Multiplier not calculating correctly.
category:bug component:content scripting priority:high
### Environment * **FreeOrion Version**:549e43d * **Operating System**:Win 10 Home * **Fetched as** * Compiled from source ### Description The Fleet Upkeep Multiplier is giving an incorrect result. ### Expected Result Correct result. ### Steps to reproduce * Start a game Free Orion * Check how many ships you have * Calculate how much another ship should cost based on fleet upkeep
1.0
Fleet Upkeep Multiplier not calculating correctly. - ### Environment * **FreeOrion Version**:549e43d * **Operating System**:Win 10 Home * **Fetched as** * Compiled from source ### Description The Fleet Upkeep Multiplier is giving an incorrect result. ### Expected Result Correct result. ### Steps to reproduce * Start a game Free Orion * Check how many ships you have * Calculate how much another ship should cost based on fleet upkeep
non_test
fleet upkeep multiplier not calculating correctly environment freeorion version operating system win home fetched as compiled from source description the fleet upkeep multiplier is giving an incorrect result expected result correct result steps to reproduce start a game free orion check how many ships you have calculate how much another ship should cost based on fleet upkeep
0
303,828
26,230,700,937
IssuesEvent
2023-01-04 23:44:27
ImagingDataCommons/IDC-WebApp
https://api.github.com/repos/ImagingDataCommons/IDC-WebApp
closed
In test tier, In derived filters, the checkall/uncheckall is not functional
bug testing needed testing passed In Progress
Observed in FF W10 Summary : Many derived filters have a unselectable checkall/uncheckall feature on test tier currently Lobular pattern Malignancy Margin sphericity spiculation sub score texture To reproduce: In explore images select all collections, Browse to derived filters - lobular pattern The check all / uncheck all is not clickable ![image](https://user-images.githubusercontent.com/85526819/197278351-75b09176-8fac-44cb-969d-6e60c273b0ba.png)
2.0
In test tier, In derived filters, the checkall/uncheckall is not functional - Observed in FF W10 Summary : Many derived filters have a unselectable checkall/uncheckall feature on test tier currently Lobular pattern Malignancy Margin sphericity spiculation sub score texture To reproduce: In explore images select all collections, Browse to derived filters - lobular pattern The check all / uncheck all is not clickable ![image](https://user-images.githubusercontent.com/85526819/197278351-75b09176-8fac-44cb-969d-6e60c273b0ba.png)
test
in test tier in derived filters the checkall uncheckall is not functional observed in ff summary many derived filters have a unselectable checkall uncheckall feature on test tier currently lobular pattern malignancy margin sphericity spiculation sub score texture to reproduce in explore images select all collections browse to derived filters lobular pattern the check all uncheck all is not clickable
1
210,467
16,103,624,050
IssuesEvent
2021-04-27 12:35:43
summer-cms/sc-security-module
https://api.github.com/repos/summer-cms/sc-security-module
closed
Allow `head` request method only for good bots option
Dashboard FINSIHED Firewall Priority: Medium Testing - Passed enhancement 👍
### Enhancement idea - [x] Allow `head` request method only for good bots option. The idea is to block ban bots performing quick web scans on website lists. By default the firewall allows all `head` requests; but can be set to block all these requests - however, some good bots use the `head` request method. This way the end user can fine tune things. - [x] Update frontend firewall - [x] Update backend firewall - [x] Update settings section
1.0
Allow `head` request method only for good bots option - ### Enhancement idea - [x] Allow `head` request method only for good bots option. The idea is to block ban bots performing quick web scans on website lists. By default the firewall allows all `head` requests; but can be set to block all these requests - however, some good bots use the `head` request method. This way the end user can fine tune things. - [x] Update frontend firewall - [x] Update backend firewall - [x] Update settings section
test
allow head request method only for good bots option enhancement idea allow head request method only for good bots option the idea is to block ban bots performing quick web scans on website lists by default the firewall allows all head requests but can be set to block all these requests however some good bots use the head request method this way the end user can fine tune things update frontend firewall update backend firewall update settings section
1
495,832
14,288,878,906
IssuesEvent
2020-11-23 18:21:51
jina-ai/jina
https://api.github.com/repos/jina-ai/jina
closed
docker sdk 4.4.0 compatibility issue
good first issue kind/bug priority/P0
**Describe the bug** 4.4.0 published on Nov. 23 https://pypi.org/project/docker/4.4.0/ gives ``` docker.errors.InvalidArgument: "host" network_mode is incompatible with port_bindings ``` making all ci/cd failed **Describe how you solve it** <!-- copy past your code/pull request link --> --- <!-- Optional, but really help us locate the problem faster --> **Environment** <!-- Run `jina --version-full` and copy paste the output here --> **Screenshots** <!-- If applicable, add screenshots to help explain your problem. -->
1.0
docker sdk 4.4.0 compatibility issue - **Describe the bug** 4.4.0 published on Nov. 23 https://pypi.org/project/docker/4.4.0/ gives ``` docker.errors.InvalidArgument: "host" network_mode is incompatible with port_bindings ``` making all ci/cd failed **Describe how you solve it** <!-- copy past your code/pull request link --> --- <!-- Optional, but really help us locate the problem faster --> **Environment** <!-- Run `jina --version-full` and copy paste the output here --> **Screenshots** <!-- If applicable, add screenshots to help explain your problem. -->
non_test
docker sdk compatibility issue describe the bug published on nov gives docker errors invalidargument host network mode is incompatible with port bindings making all ci cd failed describe how you solve it environment screenshots
0
339,007
24,607,146,804
IssuesEvent
2022-10-14 17:21:19
SpeiserK/Group-C---Camp-OAC
https://api.github.com/repos/SpeiserK/Group-C---Camp-OAC
opened
Create/Research in depth testing procedure
documentation Exploration
Include what technologies we will be using , what features we will be testing. Research integration testing, user testing, end to end testing, API testing. Is there a form of testing we are missing?
1.0
Create/Research in depth testing procedure - Include what technologies we will be using , what features we will be testing. Research integration testing, user testing, end to end testing, API testing. Is there a form of testing we are missing?
non_test
create research in depth testing procedure include what technologies we will be using what features we will be testing research integration testing user testing end to end testing api testing is there a form of testing we are missing
0
251,060
27,144,205,744
IssuesEvent
2023-02-16 18:34:49
kferrara1313/cthulhu-chaos-testing
https://api.github.com/repos/kferrara1313/cthulhu-chaos-testing
opened
spring-boot-starter-2.0.4.RELEASE.jar: 5 vulnerabilities (highest severity is: 9.8)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-boot-starter-2.0.4.RELEASE.jar</b></p></summary> <p></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.8.RELEASE/dc39c49e3246cdf73d3786ac41119140aed3fa08/spring-core-5.0.8.RELEASE.jar</p> <p> <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (spring-boot-starter version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2022-22965](https://www.mend.io/vulnerability-database/CVE-2022-22965) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png' width=19 height=20> Critical | 9.8 | spring-beans-5.0.8.RELEASE.jar | Transitive | 2.4.0 | &#9989; | | [CVE-2022-27772](https://www.mend.io/vulnerability-database/CVE-2022-27772) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.8 | spring-boot-2.0.4.RELEASE.jar | Transitive | 2.2.11.RELEASE | &#9989; | | [CVE-2022-22950](https://www.mend.io/vulnerability-database/CVE-2022-22950) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.5 | spring-expression-5.0.8.RELEASE.jar | Transitive | 2.4.0 | &#9989; | | [CVE-2022-22970](https://www.mend.io/vulnerability-database/CVE-2022-22970) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.3 | detected in multiple dependencies | Transitive | 2.4.0 | &#9989; | | [CVE-2021-22096](https://www.mend.io/vulnerability-database/CVE-2021-22096) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 4.3 | spring-core-5.0.8.RELEASE.jar | Transitive | 2.4.0 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png' width=19 height=20> CVE-2022-22965</summary> ### Vulnerable Library - <b>spring-beans-5.0.8.RELEASE.jar</b></p> <p>Spring Beans</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/5.0.8.RELEASE/5fc965d3e7f5515099244857a8ae9e2a208c169b/spring-beans-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - spring-boot-2.0.4.RELEASE.jar - spring-context-5.0.8.RELEASE.jar - :x: **spring-beans-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> A Spring MVC or Spring WebFlux application running on JDK 9+ may be vulnerable to remote code execution (RCE) via data binding. The specific exploit requires the application to run on Tomcat as a WAR deployment. If the application is deployed as a Spring Boot executable jar, i.e. the default, it is not vulnerable to the exploit. However, the nature of the vulnerability is more general, and there may be other ways to exploit it. <p>Publish Date: 2022-04-01 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22965>CVE-2022-22965</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://spring.io/blog/2022/03/31/spring-framework-rce-early-announcement">https://spring.io/blog/2022/03/31/spring-framework-rce-early-announcement</a></p> <p>Release Date: 2022-04-01</p> <p>Fix Resolution (org.springframework:spring-beans): 5.2.20.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-27772</summary> ### Vulnerable Library - <b>spring-boot-2.0.4.RELEASE.jar</b></p> <p>Spring Boot</p> <p>Library home page: <a href="https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot">https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/2.0.4.RELEASE/c8619c5b06d4dcdb4cac1e5e9c839e6e8b1c8574/spring-boot-2.0.4.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - :x: **spring-boot-2.0.4.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> ** UNSUPPORTED WHEN ASSIGNED ** spring-boot versions prior to version v2.2.11.RELEASE was vulnerable to temporary directory hijacking. This vulnerability impacted the org.springframework.boot.web.server.AbstractConfigurableWebServerFactory.createTempDir method. NOTE: This vulnerability only affects products and/or versions that are no longer supported by the maintainer. <p>Publish Date: 2022-03-30 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-27772>CVE-2022-27772</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/JLLeitschuh/security-research/security/advisories/GHSA-cm59-pr5q-cw85">https://github.com/JLLeitschuh/security-research/security/advisories/GHSA-cm59-pr5q-cw85</a></p> <p>Release Date: 2022-03-30</p> <p>Fix Resolution (org.springframework.boot:spring-boot): 2.2.11.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.2.11.RELEASE</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-22950</summary> ### Vulnerable Library - <b>spring-expression-5.0.8.RELEASE.jar</b></p> <p>Spring Expression Language (SpEL)</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.0.8.RELEASE/f23158f22c917df2cddf2ecebc398a9e95f95fae/spring-expression-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - spring-boot-2.0.4.RELEASE.jar - spring-context-5.0.8.RELEASE.jar - :x: **spring-expression-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> n Spring Framework versions 5.3.0 - 5.3.16 and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial of service condition. <p>Publish Date: 2022-04-01 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22950>CVE-2022-22950</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-22950">https://tanzu.vmware.com/security/cve-2022-22950</a></p> <p>Release Date: 2022-04-01</p> <p>Fix Resolution (org.springframework:spring-expression): 5.2.20.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-22970</summary> ### Vulnerable Libraries - <b>spring-beans-5.0.8.RELEASE.jar</b>, <b>spring-core-5.0.8.RELEASE.jar</b></p> <p> ### <b>spring-beans-5.0.8.RELEASE.jar</b></p> <p>Spring Beans</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/5.0.8.RELEASE/5fc965d3e7f5515099244857a8ae9e2a208c169b/spring-beans-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - spring-boot-2.0.4.RELEASE.jar - spring-context-5.0.8.RELEASE.jar - :x: **spring-beans-5.0.8.RELEASE.jar** (Vulnerable Library) ### <b>spring-core-5.0.8.RELEASE.jar</b></p> <p>Spring Core</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.8.RELEASE/dc39c49e3246cdf73d3786ac41119140aed3fa08/spring-core-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - :x: **spring-core-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> In spring framework versions prior to 5.3.20+ , 5.2.22+ and old unsupported versions, applications that handle file uploads are vulnerable to DoS attack if they rely on data binding to set a MultipartFile or javax.servlet.Part to a field in a model object. <p>Publish Date: 2022-05-12 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22970>CVE-2022-22970</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>5.3</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-22970">https://tanzu.vmware.com/security/cve-2022-22970</a></p> <p>Release Date: 2022-05-12</p> <p>Fix Resolution (org.springframework:spring-beans): 5.2.22.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p><p>Fix Resolution (org.springframework:spring-core): 5.2.22.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2021-22096</summary> ### Vulnerable Library - <b>spring-core-5.0.8.RELEASE.jar</b></p> <p>Spring Core</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.8.RELEASE/dc39c49e3246cdf73d3786ac41119140aed3fa08/spring-core-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - :x: **spring-core-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> In Spring Framework versions 5.3.0 - 5.3.10, 5.2.0 - 5.2.17, and older unsupported versions, it is possible for a user to provide malicious input to cause the insertion of additional log entries. <p>Publish Date: 2021-10-28 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-22096>CVE-2021-22096</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>4.3</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://tanzu.vmware.com/security/cve-2021-22096">https://tanzu.vmware.com/security/cve-2021-22096</a></p> <p>Release Date: 2021-10-28</p> <p>Fix Resolution (org.springframework:spring-core): 5.2.18.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
True
spring-boot-starter-2.0.4.RELEASE.jar: 5 vulnerabilities (highest severity is: 9.8) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-boot-starter-2.0.4.RELEASE.jar</b></p></summary> <p></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.8.RELEASE/dc39c49e3246cdf73d3786ac41119140aed3fa08/spring-core-5.0.8.RELEASE.jar</p> <p> <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (spring-boot-starter version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2022-22965](https://www.mend.io/vulnerability-database/CVE-2022-22965) | <img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png' width=19 height=20> Critical | 9.8 | spring-beans-5.0.8.RELEASE.jar | Transitive | 2.4.0 | &#9989; | | [CVE-2022-27772](https://www.mend.io/vulnerability-database/CVE-2022-27772) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.8 | spring-boot-2.0.4.RELEASE.jar | Transitive | 2.2.11.RELEASE | &#9989; | | [CVE-2022-22950](https://www.mend.io/vulnerability-database/CVE-2022-22950) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.5 | spring-expression-5.0.8.RELEASE.jar | Transitive | 2.4.0 | &#9989; | | [CVE-2022-22970](https://www.mend.io/vulnerability-database/CVE-2022-22970) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.3 | detected in multiple dependencies | Transitive | 2.4.0 | &#9989; | | [CVE-2021-22096](https://www.mend.io/vulnerability-database/CVE-2021-22096) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 4.3 | spring-core-5.0.8.RELEASE.jar | Transitive | 2.4.0 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png' width=19 height=20> CVE-2022-22965</summary> ### Vulnerable Library - <b>spring-beans-5.0.8.RELEASE.jar</b></p> <p>Spring Beans</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/5.0.8.RELEASE/5fc965d3e7f5515099244857a8ae9e2a208c169b/spring-beans-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - spring-boot-2.0.4.RELEASE.jar - spring-context-5.0.8.RELEASE.jar - :x: **spring-beans-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> A Spring MVC or Spring WebFlux application running on JDK 9+ may be vulnerable to remote code execution (RCE) via data binding. The specific exploit requires the application to run on Tomcat as a WAR deployment. If the application is deployed as a Spring Boot executable jar, i.e. the default, it is not vulnerable to the exploit. However, the nature of the vulnerability is more general, and there may be other ways to exploit it. <p>Publish Date: 2022-04-01 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22965>CVE-2022-22965</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://spring.io/blog/2022/03/31/spring-framework-rce-early-announcement">https://spring.io/blog/2022/03/31/spring-framework-rce-early-announcement</a></p> <p>Release Date: 2022-04-01</p> <p>Fix Resolution (org.springframework:spring-beans): 5.2.20.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-27772</summary> ### Vulnerable Library - <b>spring-boot-2.0.4.RELEASE.jar</b></p> <p>Spring Boot</p> <p>Library home page: <a href="https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot">https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/2.0.4.RELEASE/c8619c5b06d4dcdb4cac1e5e9c839e6e8b1c8574/spring-boot-2.0.4.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - :x: **spring-boot-2.0.4.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> ** UNSUPPORTED WHEN ASSIGNED ** spring-boot versions prior to version v2.2.11.RELEASE was vulnerable to temporary directory hijacking. This vulnerability impacted the org.springframework.boot.web.server.AbstractConfigurableWebServerFactory.createTempDir method. NOTE: This vulnerability only affects products and/or versions that are no longer supported by the maintainer. <p>Publish Date: 2022-03-30 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-27772>CVE-2022-27772</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/JLLeitschuh/security-research/security/advisories/GHSA-cm59-pr5q-cw85">https://github.com/JLLeitschuh/security-research/security/advisories/GHSA-cm59-pr5q-cw85</a></p> <p>Release Date: 2022-03-30</p> <p>Fix Resolution (org.springframework.boot:spring-boot): 2.2.11.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.2.11.RELEASE</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-22950</summary> ### Vulnerable Library - <b>spring-expression-5.0.8.RELEASE.jar</b></p> <p>Spring Expression Language (SpEL)</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.0.8.RELEASE/f23158f22c917df2cddf2ecebc398a9e95f95fae/spring-expression-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - spring-boot-2.0.4.RELEASE.jar - spring-context-5.0.8.RELEASE.jar - :x: **spring-expression-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> n Spring Framework versions 5.3.0 - 5.3.16 and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial of service condition. <p>Publish Date: 2022-04-01 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22950>CVE-2022-22950</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-22950">https://tanzu.vmware.com/security/cve-2022-22950</a></p> <p>Release Date: 2022-04-01</p> <p>Fix Resolution (org.springframework:spring-expression): 5.2.20.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-22970</summary> ### Vulnerable Libraries - <b>spring-beans-5.0.8.RELEASE.jar</b>, <b>spring-core-5.0.8.RELEASE.jar</b></p> <p> ### <b>spring-beans-5.0.8.RELEASE.jar</b></p> <p>Spring Beans</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/5.0.8.RELEASE/5fc965d3e7f5515099244857a8ae9e2a208c169b/spring-beans-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - spring-boot-2.0.4.RELEASE.jar - spring-context-5.0.8.RELEASE.jar - :x: **spring-beans-5.0.8.RELEASE.jar** (Vulnerable Library) ### <b>spring-core-5.0.8.RELEASE.jar</b></p> <p>Spring Core</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.8.RELEASE/dc39c49e3246cdf73d3786ac41119140aed3fa08/spring-core-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - :x: **spring-core-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> In spring framework versions prior to 5.3.20+ , 5.2.22+ and old unsupported versions, applications that handle file uploads are vulnerable to DoS attack if they rely on data binding to set a MultipartFile or javax.servlet.Part to a field in a model object. <p>Publish Date: 2022-05-12 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22970>CVE-2022-22970</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>5.3</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-22970">https://tanzu.vmware.com/security/cve-2022-22970</a></p> <p>Release Date: 2022-05-12</p> <p>Fix Resolution (org.springframework:spring-beans): 5.2.22.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p><p>Fix Resolution (org.springframework:spring-core): 5.2.22.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2021-22096</summary> ### Vulnerable Library - <b>spring-core-5.0.8.RELEASE.jar</b></p> <p>Spring Core</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /build.gradle</p> <p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.8.RELEASE/dc39c49e3246cdf73d3786ac41119140aed3fa08/spring-core-5.0.8.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-2.0.4.RELEASE.jar (Root Library) - :x: **spring-core-5.0.8.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/kferrara1313/cthulhu-chaos-testing/commit/fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050">fafbe3614b43acbd33e3d1750cf6b0d2ee5d0050</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> In Spring Framework versions 5.3.0 - 5.3.10, 5.2.0 - 5.2.17, and older unsupported versions, it is possible for a user to provide malicious input to cause the insertion of additional log entries. <p>Publish Date: 2021-10-28 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-22096>CVE-2021-22096</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>4.3</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - 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> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://tanzu.vmware.com/security/cve-2021-22096">https://tanzu.vmware.com/security/cve-2021-22096</a></p> <p>Release Date: 2021-10-28</p> <p>Fix Resolution (org.springframework:spring-core): 5.2.18.RELEASE</p> <p>Direct dependency fix Resolution (org.springframework.boot:spring-boot-starter): 2.4.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
non_test
spring boot starter release jar vulnerabilities highest severity is vulnerable library spring boot starter release jar path to dependency file build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring core release spring core release jar found in head commit a href vulnerabilities cve severity cvss dependency type fixed in spring boot starter version remediation available critical spring beans release jar transitive high spring boot release jar transitive release medium spring expression release jar transitive medium detected in multiple dependencies transitive medium spring core release jar transitive details cve vulnerable library spring beans release jar spring beans library home page a href path to dependency file build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring beans release spring beans release jar dependency hierarchy spring boot starter release jar root library spring boot release jar spring context release jar x spring beans release jar vulnerable library found in head commit a href found in base branch master vulnerability details a spring mvc or spring webflux application running on jdk may be vulnerable to remote code execution rce via data binding the specific exploit requires the application to run on tomcat as a war deployment if the application is deployed as a spring boot executable jar i e the default it is not vulnerable to the exploit however the nature of the vulnerability is more general and there may be other ways to exploit it publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring beans release direct dependency fix resolution org springframework boot spring boot starter rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring boot release jar spring boot library home page a href path to dependency file build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework boot spring boot release spring boot release jar dependency hierarchy spring boot starter release jar root library x spring boot release jar vulnerable library found in head commit a href found in base branch master vulnerability details unsupported when assigned spring boot versions prior to version release was vulnerable to temporary directory hijacking this vulnerability impacted the org springframework boot web server abstractconfigurablewebserverfactory createtempdir method note this vulnerability only affects products and or versions that are no longer supported by the maintainer publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework boot spring boot release direct dependency fix resolution org springframework boot spring boot starter release rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring expression release jar spring expression language spel library home page a href path to dependency file build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring expression release spring expression release jar dependency hierarchy spring boot starter release jar root library spring boot release jar spring context release jar x spring expression release jar vulnerable library found in head commit a href found in base branch master vulnerability details n spring framework versions and older unsupported versions it is possible for a user to provide a specially crafted spel expression that may cause a denial of service condition publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring expression release direct dependency fix resolution org springframework boot spring boot starter rescue worker helmet automatic remediation is available for this issue cve vulnerable libraries spring beans release jar spring core release jar spring beans release jar spring beans library home page a href path to dependency file build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring beans release spring beans release jar dependency hierarchy spring boot starter release jar root library spring boot release jar spring context release jar x spring beans release jar vulnerable library spring core release jar spring core library home page a href path to dependency file build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring core release spring core release jar dependency hierarchy spring boot starter release jar root library x spring core release jar vulnerable library found in head commit a href found in base branch master vulnerability details in spring framework versions prior to and old unsupported versions applications that handle file uploads are vulnerable to dos attack if they rely on data binding to set a multipartfile or javax servlet part to a field in a model object publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring beans release direct dependency fix resolution org springframework boot spring boot starter fix resolution org springframework spring core release direct dependency fix resolution org springframework boot spring boot starter rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring core release jar spring core library home page a href path to dependency file build gradle path to vulnerable library home wss scanner gradle caches modules files org springframework spring core release spring core release jar dependency hierarchy spring boot starter release jar root library x spring core release jar vulnerable library found in head commit a href found in base branch master vulnerability details in spring framework versions and older unsupported versions it is possible for a user to provide malicious input to cause the insertion of additional log entries publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none 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 org springframework spring core release direct dependency fix resolution org springframework boot spring boot starter rescue worker helmet automatic remediation is available for this issue rescue worker helmet automatic remediation is available for this issue
0
207,882
15,856,326,591
IssuesEvent
2021-04-08 02:04:41
cypress-io/cypress
https://api.github.com/repos/cypress-io/cypress
closed
open-ct complains about missing browser but open works fine
component testing stage: work in progress
### Current behavior `npx cypress open` works just fine but `npx cypress open-ct` crashes with: ``` (node:33115) Warning: Accessing non-existent property 'padLevels' of module exports inside circular dependency (Use `Cypress --trace-warnings ...` to show where the warning was created) Error: Can't run because you've entered an invalid browser name. Browser: 'chrome' was not found on your system or is not supported by Cypress. Cypress supports the following browsers: - chrome - chromium - edge - electron - firefox You can also use a custom browser: https://on.cypress.io/customize-browsers Available browsers found on your system are: - chromium - firefox - electron at get (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:995:15) at Object.throwErr [as throw] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:1013:9) at throwBrowserNotFound (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:140:22) at ~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:123:12 at tryCatcher (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/util.js:16:23) at Promise._settlePromiseFromHandler (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:512:31) at Promise._settlePromise (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:569:18) at Promise._settlePromise0 (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:614:10) at Promise._settlePromises (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:694:18) at _drainQueueStep (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:138:12) at _drainQueue (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:131:9) at Async._drainQueues (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:147:5) at Immediate.Async.drainQueues [as _onImmediate] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:17:14) at processImmediate (internal/timers.js:461:21) { isCypressErr: true, type: 'BROWSER_NOT_FOUND_BY_NAME', details: undefined } Error: Can't run because you've entered an invalid browser name. Browser: 'chrome' was not found on your system or is not supported by Cypress. Cypress supports the following browsers: - chrome - chromium - edge - electron - firefox You can also use a custom browser: https://on.cypress.io/customize-browsers Available browsers found on your system are: - chromium - firefox - electron at get (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:995:15) at Object.throwErr [as throw] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:1013:9) at throwBrowserNotFound (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:140:22) at ~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:123:12 at tryCatcher (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/util.js:16:23) at Promise._settlePromiseFromHandler (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:512:31) at Promise._settlePromise (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:569:18) at Promise._settlePromise0 (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:614:10) at Promise._settlePromises (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:694:18) at _drainQueueStep (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:138:12) at _drainQueue (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:131:9) at Async._drainQueues (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:147:5) at Immediate.Async.drainQueues [as _onImmediate] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:17:14) at processImmediate (internal/timers.js:461:21) ``` ### Versions - Cypress 7.0.0 - Fedora GNU/Linux
1.0
open-ct complains about missing browser but open works fine - ### Current behavior `npx cypress open` works just fine but `npx cypress open-ct` crashes with: ``` (node:33115) Warning: Accessing non-existent property 'padLevels' of module exports inside circular dependency (Use `Cypress --trace-warnings ...` to show where the warning was created) Error: Can't run because you've entered an invalid browser name. Browser: 'chrome' was not found on your system or is not supported by Cypress. Cypress supports the following browsers: - chrome - chromium - edge - electron - firefox You can also use a custom browser: https://on.cypress.io/customize-browsers Available browsers found on your system are: - chromium - firefox - electron at get (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:995:15) at Object.throwErr [as throw] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:1013:9) at throwBrowserNotFound (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:140:22) at ~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:123:12 at tryCatcher (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/util.js:16:23) at Promise._settlePromiseFromHandler (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:512:31) at Promise._settlePromise (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:569:18) at Promise._settlePromise0 (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:614:10) at Promise._settlePromises (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:694:18) at _drainQueueStep (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:138:12) at _drainQueue (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:131:9) at Async._drainQueues (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:147:5) at Immediate.Async.drainQueues [as _onImmediate] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:17:14) at processImmediate (internal/timers.js:461:21) { isCypressErr: true, type: 'BROWSER_NOT_FOUND_BY_NAME', details: undefined } Error: Can't run because you've entered an invalid browser name. Browser: 'chrome' was not found on your system or is not supported by Cypress. Cypress supports the following browsers: - chrome - chromium - edge - electron - firefox You can also use a custom browser: https://on.cypress.io/customize-browsers Available browsers found on your system are: - chromium - firefox - electron at get (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:995:15) at Object.throwErr [as throw] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/errors.js:1013:9) at throwBrowserNotFound (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:140:22) at ~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/server/lib/browsers/index.js:123:12 at tryCatcher (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/util.js:16:23) at Promise._settlePromiseFromHandler (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:512:31) at Promise._settlePromise (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:569:18) at Promise._settlePromise0 (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:614:10) at Promise._settlePromises (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/promise.js:694:18) at _drainQueueStep (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:138:12) at _drainQueue (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:131:9) at Async._drainQueues (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:147:5) at Immediate.Async.drainQueues [as _onImmediate] (~/.cache/Cypress/7.0.0/Cypress/resources/app/packages/launcher/node_modules/bluebird/js/release/async.js:17:14) at processImmediate (internal/timers.js:461:21) ``` ### Versions - Cypress 7.0.0 - Fedora GNU/Linux
test
open ct complains about missing browser but open works fine current behavior npx cypress open works just fine but npx cypress open ct crashes with node warning accessing non existent property padlevels of module exports inside circular dependency use cypress trace warnings to show where the warning was created error can t run because you ve entered an invalid browser name browser chrome was not found on your system or is not supported by cypress cypress supports the following browsers chrome chromium edge electron firefox you can also use a custom browser available browsers found on your system are chromium firefox electron at get cache cypress cypress resources app packages server lib errors js at object throwerr cache cypress cypress resources app packages server lib errors js at throwbrowsernotfound cache cypress cypress resources app packages server lib browsers index js at cache cypress cypress resources app packages server lib browsers index js at trycatcher cache cypress cypress resources app packages launcher node modules bluebird js release util js at promise settlepromisefromhandler cache cypress cypress resources app packages launcher node modules bluebird js release promise js at promise settlepromise cache cypress cypress resources app packages launcher node modules bluebird js release promise js at promise cache cypress cypress resources app packages launcher node modules bluebird js release promise js at promise settlepromises cache cypress cypress resources app packages launcher node modules bluebird js release promise js at drainqueuestep cache cypress cypress resources app packages launcher node modules bluebird js release async js at drainqueue cache cypress cypress resources app packages launcher node modules bluebird js release async js at async drainqueues cache cypress cypress resources app packages launcher node modules bluebird js release async js at immediate async drainqueues cache cypress cypress resources app packages launcher node modules bluebird js release async js at processimmediate internal timers js iscypresserr true type browser not found by name details undefined error can t run because you ve entered an invalid browser name browser chrome was not found on your system or is not supported by cypress cypress supports the following browsers chrome chromium edge electron firefox you can also use a custom browser available browsers found on your system are chromium firefox electron at get cache cypress cypress resources app packages server lib errors js at object throwerr cache cypress cypress resources app packages server lib errors js at throwbrowsernotfound cache cypress cypress resources app packages server lib browsers index js at cache cypress cypress resources app packages server lib browsers index js at trycatcher cache cypress cypress resources app packages launcher node modules bluebird js release util js at promise settlepromisefromhandler cache cypress cypress resources app packages launcher node modules bluebird js release promise js at promise settlepromise cache cypress cypress resources app packages launcher node modules bluebird js release promise js at promise cache cypress cypress resources app packages launcher node modules bluebird js release promise js at promise settlepromises cache cypress cypress resources app packages launcher node modules bluebird js release promise js at drainqueuestep cache cypress cypress resources app packages launcher node modules bluebird js release async js at drainqueue cache cypress cypress resources app packages launcher node modules bluebird js release async js at async drainqueues cache cypress cypress resources app packages launcher node modules bluebird js release async js at immediate async drainqueues cache cypress cypress resources app packages launcher node modules bluebird js release async js at processimmediate internal timers js versions cypress fedora gnu linux
1
158,407
12,413,805,057
IssuesEvent
2020-05-22 13:26:11
ooni/probe
https://api.github.com/repos/ooni/probe
closed
Mobile App Release 2.4.0
copy effort/M ooni/probe-mobile platform/android platform/ios testing
Write down release notes ``` - New Dashboard - NDT new field - Merge Middleboxes test into Performance ```
1.0
Mobile App Release 2.4.0 - Write down release notes ``` - New Dashboard - NDT new field - Merge Middleboxes test into Performance ```
test
mobile app release write down release notes new dashboard ndt new field merge middleboxes test into performance
1
76,772
26,588,174,288
IssuesEvent
2023-01-23 05:07:16
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
closed
Error in Form->setTemplates method
defect
### Description I set the value to false in the Form->setTemplates method in View, and an error occurred in str_replace in _compileTemplates method in "src\View\StringTemplate.php". Description in View - NG Pattern(NG in PHP8.2, but OK in PHP7.4) ----------------------------------- <?php $this->Form->setTemplates([ 'inputContainer' => '{{content}}', 'label' => false, ]); ?> ----------------------------------- - Error content > str_replace(): Argument #3 ($subject) must be of type array|string, bool given If I set the value to '', the error does not occur and the intended behavior is achieved, but in PHP 7.4 it worked fine with false. - OK pattern(PHP8.2) ----------------------------------- <?php $this->Form->setTemplates([ 'inputContainer' => '{{content}}', 'label' => '', ]); ?> ----------------------------------- ### CakePHP Version 4.4.10 ### PHP Version 8.2
1.0
Error in Form->setTemplates method - ### Description I set the value to false in the Form->setTemplates method in View, and an error occurred in str_replace in _compileTemplates method in "src\View\StringTemplate.php". Description in View - NG Pattern(NG in PHP8.2, but OK in PHP7.4) ----------------------------------- <?php $this->Form->setTemplates([ 'inputContainer' => '{{content}}', 'label' => false, ]); ?> ----------------------------------- - Error content > str_replace(): Argument #3 ($subject) must be of type array|string, bool given If I set the value to '', the error does not occur and the intended behavior is achieved, but in PHP 7.4 it worked fine with false. - OK pattern(PHP8.2) ----------------------------------- <?php $this->Form->setTemplates([ 'inputContainer' => '{{content}}', 'label' => '', ]); ?> ----------------------------------- ### CakePHP Version 4.4.10 ### PHP Version 8.2
non_test
error in form settemplates method description i set the value to false in the form settemplates method in view and an error occurred in str replace in compiletemplates method in src view stringtemplate php description in view ng pattern ng in but ok in php this form settemplates inputcontainer content label false error content str replace argument subject must be of type array string bool given if i set the value to the error does not occur and the intended behavior is achieved but in php it worked fine with false ok pattern php this form settemplates inputcontainer content label cakephp version php version
0
46,679
5,826,753,886
IssuesEvent
2017-05-08 06:32:48
myzenon/J3B
https://api.github.com/repos/myzenon/J3B
closed
Create GardenGameTest Class
Unit Test
Update BagTest Class follows the GardenGame Class Implementation Task: GH-13
1.0
Create GardenGameTest Class - Update BagTest Class follows the GardenGame Class Implementation Task: GH-13
test
create gardengametest class update bagtest class follows the gardengame class implementation task gh
1
29,629
4,519,885,524
IssuesEvent
2016-09-06 08:22:25
mozilla/addons-server
https://api.github.com/repos/mozilla/addons-server
closed
Random 500 Errors in circle CI tests
ui tests
We seem to intermittently see errors as follows in the circle CI tests. ~~Could this be that the service isn't ready prior to running the test?~~ ``` _________ ERROR at setup of test_there_are_ten_most_popular_extensions _________ request = <SubRequest '_verify_url' for <Function 'test_there_are_ten_most_popular_extensions'>> base_url = 'http://127.0.0.1' @pytest.fixture(scope='session', autouse=True) def _verify_url(request, base_url): """Verifies the base URL""" verify = request.config.option.verify_base_url if base_url and verify: response = requests.get(base_url, timeout=10) if not response.status_code == requests.codes.ok: raise pytest.UsageError( 'Base URL failed verification!' '\nURL: {0}, Response status code: {1.status_code}' > '\nResponse headers: {1.headers}'.format(base_url, response)) E UsageError: Base URL failed verification! E URL: http://127.0.0.1, Response status code: 500 E Response headers: {'ETag': '"6e6be9f80c675e14d4f487c43dc5dd49"', 'Date': 'Mon, 05 Sep 2016 17:20:36 GMT', 'Vary': 'X-Mobile, User-Agent', 'x-content-type-options': 'nosniff', 'Content-Type': 'text/html', 'Server': 'nginx/1.9.9', 'X-Frame-Options': 'DENY', 'Transfer-Encoding': 'chunked', 'x-xss-protection': '1; mode=block', 'Connection': 'keep-alive'} ```
1.0
Random 500 Errors in circle CI tests - We seem to intermittently see errors as follows in the circle CI tests. ~~Could this be that the service isn't ready prior to running the test?~~ ``` _________ ERROR at setup of test_there_are_ten_most_popular_extensions _________ request = <SubRequest '_verify_url' for <Function 'test_there_are_ten_most_popular_extensions'>> base_url = 'http://127.0.0.1' @pytest.fixture(scope='session', autouse=True) def _verify_url(request, base_url): """Verifies the base URL""" verify = request.config.option.verify_base_url if base_url and verify: response = requests.get(base_url, timeout=10) if not response.status_code == requests.codes.ok: raise pytest.UsageError( 'Base URL failed verification!' '\nURL: {0}, Response status code: {1.status_code}' > '\nResponse headers: {1.headers}'.format(base_url, response)) E UsageError: Base URL failed verification! E URL: http://127.0.0.1, Response status code: 500 E Response headers: {'ETag': '"6e6be9f80c675e14d4f487c43dc5dd49"', 'Date': 'Mon, 05 Sep 2016 17:20:36 GMT', 'Vary': 'X-Mobile, User-Agent', 'x-content-type-options': 'nosniff', 'Content-Type': 'text/html', 'Server': 'nginx/1.9.9', 'X-Frame-Options': 'DENY', 'Transfer-Encoding': 'chunked', 'x-xss-protection': '1; mode=block', 'Connection': 'keep-alive'} ```
test
random errors in circle ci tests we seem to intermittently see errors as follows in the circle ci tests could this be that the service isn t ready prior to running the test error at setup of test there are ten most popular extensions request base url pytest fixture scope session autouse true def verify url request base url verifies the base url verify request config option verify base url if base url and verify response requests get base url timeout if not response status code requests codes ok raise pytest usageerror base url failed verification nurl response status code status code nresponse headers headers format base url response e usageerror base url failed verification e url response status code e response headers etag date mon sep gmt vary x mobile user agent x content type options nosniff content type text html server nginx x frame options deny transfer encoding chunked x xss protection mode block connection keep alive
1
274,855
23,872,284,772
IssuesEvent
2022-09-07 15:44:39
Mamr96insatbug/test
https://api.github.com/repos/Mamr96insatbug/test
opened
No description entered by the user.
Forwarded-to-Test
# :clipboard: Bug Details >No description entered by the user. key | value --|-- Reported At | 2022-09-07 15:44:28 UTC Email | aelbashary@instabug.com Categories | Report a bug, Usability Issue Tags | Forwarded-to-Test App Version | 2.0.8 (6) Session Duration | 5 Device | arm64, iOS 15.5 Display | 390x844 (@3x) Location | Cairo, Egypt (en) ## :point_right: [View Full Bug Report on Instabug](https://dashboard.instabug.com/applications/test123/beta/bugs/446?utm_source=github&utm_medium=integrations) :point_left: ___ # :chart_with_downwards_trend: Session Profiler Here is what the app was doing right before the bug was reported: Key | Value --|-- CPU Load | 0.8% Used Memory | 100.0% - 0.03/0.03 GB Used Storage | 41.9% - 95.57/228.27 GB Connectivity | WiFi - Simulator WiFi Battery | 100% - unplugged Orientation | portrait Find all the changes that happened in the parameters mentioned above during the last 60 seconds before the bug was reported here: :point_right: **[View Full Session Profiler](https://dashboard.instabug.com/applications/test123/beta/bugs/446?show-session-profiler=true&utm_source=github&utm_medium=integrations)** :point_left: ___ # :mag_right: Logs ### User Steps Here are the last 10 steps done by the user right before the bug was reported: ``` 15:44:19 Tap in Floating Button of type IBGInvocationFloatingView in SwiftRadio.NowPlayingViewController 15:44:17 Top View: SwiftRadio.NowPlayingViewController 15:44:17 Tap in _UIParallaxDimmingView in SwiftRadio.NowPlayingViewController 15:44:17 Tap in UIStackView in SwiftRadio.StationsViewController 15:44:14 Top View: SwiftRadio.StationsViewController 15:44:14 Application: DidBecomeActive 15:44:14 Application: SceneDidActivate ``` Find all the user steps done by the user throughout the session here: :point_right: **[View All User Steps](https://dashboard.instabug.com/applications/test123/beta/bugs/446?show-logs=user_steps&utm_source=github&utm_medium=integrations)** :point_left: ___ # :camera: Images [![image attachment](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18840311/3e7204146059456b9c866f5ff43c95f2_one_bug_thumb/27143212/2022090705442105965457.jpg?Expires=4818239078&Signature=GF780AjAvIjvMd3UqqwfUJubW5LlJ1Qo5hzBQt5wAXlNtK0y2vjo-msFyztKSMyRdQ0aciUpsR07pJMBWhn8sgs-r-BTj1xCphI-nVcGKwv8Wcxe5cxTA5dl0omGhsYblVl70GKwocv5IlU8yuNxPtyHpfac4At~wFYemHqMfK0dpqo-tJOnHldx81Po6cIGkFcaYc5RG3nle0cXgs8dnorSG8YlVY3LnFt5GPvx8rwlIVAAJ70NC9SA6wZJT4xu4L9xQB0~FNxpO3xRqDlV0hTjFfPpgbsWHPJIIX3bK8InzwMHOd6chFT9vJTwbpHytQSW9cWd2P5jTMK2skeCJQ__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18840311/3e7204146059456b9c866f5ff43c95f2_original/27143212/2022090705442105965457.jpg?Expires=4818239078&Signature=FGtqJOvhkPJBC1PkhT6vl0cyjbk42V61eqRgZWwtW5cTqOhEz2xxyDjvkn5CNh1YALwmVlIcT-WhozyedrVv2CAPRjB0W7FVXN1pg-a6F~4qUo63jiEpCptvLq4AT16p~alMAWlmVOReb51mpMeOpSv8SHn~FW-M~tqURYBAxyKlcFk4n7hseCd-cMS3W3ciMWQNi99b0RIJ4SXM2psd088CdljuUpK6HgY~cxlws4u3ZPhV69wcy42IdFCMPTpYy~-TEwXYbt1WfANigl0aRksjcrGJ0IG~z-2Jm7MwKvunTUuNwOSSAqSD8FF5QKpBbocZamg9bTmpeoVay0mdbQ__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ) ___ # :warning: Looking for More Details? 1. **Network Log**: we are unable to capture your network requests automatically. If you are using AFNetworking or Alamofire, [**check the details mentioned here**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations#section-requests-not-appearing-in-logs). 2. **User Events**: start capturing custom User Events to send them along with each report. [**Find all the details in the docs**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations). 3. **Instabug Log**: start adding Instabug logs to see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations). 4. **Console Log**: when enabled you will see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations).
1.0
No description entered by the user. - # :clipboard: Bug Details >No description entered by the user. key | value --|-- Reported At | 2022-09-07 15:44:28 UTC Email | aelbashary@instabug.com Categories | Report a bug, Usability Issue Tags | Forwarded-to-Test App Version | 2.0.8 (6) Session Duration | 5 Device | arm64, iOS 15.5 Display | 390x844 (@3x) Location | Cairo, Egypt (en) ## :point_right: [View Full Bug Report on Instabug](https://dashboard.instabug.com/applications/test123/beta/bugs/446?utm_source=github&utm_medium=integrations) :point_left: ___ # :chart_with_downwards_trend: Session Profiler Here is what the app was doing right before the bug was reported: Key | Value --|-- CPU Load | 0.8% Used Memory | 100.0% - 0.03/0.03 GB Used Storage | 41.9% - 95.57/228.27 GB Connectivity | WiFi - Simulator WiFi Battery | 100% - unplugged Orientation | portrait Find all the changes that happened in the parameters mentioned above during the last 60 seconds before the bug was reported here: :point_right: **[View Full Session Profiler](https://dashboard.instabug.com/applications/test123/beta/bugs/446?show-session-profiler=true&utm_source=github&utm_medium=integrations)** :point_left: ___ # :mag_right: Logs ### User Steps Here are the last 10 steps done by the user right before the bug was reported: ``` 15:44:19 Tap in Floating Button of type IBGInvocationFloatingView in SwiftRadio.NowPlayingViewController 15:44:17 Top View: SwiftRadio.NowPlayingViewController 15:44:17 Tap in _UIParallaxDimmingView in SwiftRadio.NowPlayingViewController 15:44:17 Tap in UIStackView in SwiftRadio.StationsViewController 15:44:14 Top View: SwiftRadio.StationsViewController 15:44:14 Application: DidBecomeActive 15:44:14 Application: SceneDidActivate ``` Find all the user steps done by the user throughout the session here: :point_right: **[View All User Steps](https://dashboard.instabug.com/applications/test123/beta/bugs/446?show-logs=user_steps&utm_source=github&utm_medium=integrations)** :point_left: ___ # :camera: Images [![image attachment](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18840311/3e7204146059456b9c866f5ff43c95f2_one_bug_thumb/27143212/2022090705442105965457.jpg?Expires=4818239078&Signature=GF780AjAvIjvMd3UqqwfUJubW5LlJ1Qo5hzBQt5wAXlNtK0y2vjo-msFyztKSMyRdQ0aciUpsR07pJMBWhn8sgs-r-BTj1xCphI-nVcGKwv8Wcxe5cxTA5dl0omGhsYblVl70GKwocv5IlU8yuNxPtyHpfac4At~wFYemHqMfK0dpqo-tJOnHldx81Po6cIGkFcaYc5RG3nle0cXgs8dnorSG8YlVY3LnFt5GPvx8rwlIVAAJ70NC9SA6wZJT4xu4L9xQB0~FNxpO3xRqDlV0hTjFfPpgbsWHPJIIX3bK8InzwMHOd6chFT9vJTwbpHytQSW9cWd2P5jTMK2skeCJQ__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18840311/3e7204146059456b9c866f5ff43c95f2_original/27143212/2022090705442105965457.jpg?Expires=4818239078&Signature=FGtqJOvhkPJBC1PkhT6vl0cyjbk42V61eqRgZWwtW5cTqOhEz2xxyDjvkn5CNh1YALwmVlIcT-WhozyedrVv2CAPRjB0W7FVXN1pg-a6F~4qUo63jiEpCptvLq4AT16p~alMAWlmVOReb51mpMeOpSv8SHn~FW-M~tqURYBAxyKlcFk4n7hseCd-cMS3W3ciMWQNi99b0RIJ4SXM2psd088CdljuUpK6HgY~cxlws4u3ZPhV69wcy42IdFCMPTpYy~-TEwXYbt1WfANigl0aRksjcrGJ0IG~z-2Jm7MwKvunTUuNwOSSAqSD8FF5QKpBbocZamg9bTmpeoVay0mdbQ__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ) ___ # :warning: Looking for More Details? 1. **Network Log**: we are unable to capture your network requests automatically. If you are using AFNetworking or Alamofire, [**check the details mentioned here**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations#section-requests-not-appearing-in-logs). 2. **User Events**: start capturing custom User Events to send them along with each report. [**Find all the details in the docs**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations). 3. **Instabug Log**: start adding Instabug logs to see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations). 4. **Console Log**: when enabled you will see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/ios-logging?utm_source=github&utm_medium=integrations).
test
no description entered by the user clipboard bug details no description entered by the user key value reported at utc email aelbashary instabug com categories report a bug usability issue tags forwarded to test app version session duration device ios display location cairo egypt en point right point left chart with downwards trend session profiler here is what the app was doing right before the bug was reported key value cpu load used memory gb used storage gb connectivity wifi simulator wifi battery unplugged orientation portrait find all the changes that happened in the parameters mentioned above during the last seconds before the bug was reported here point right point left mag right logs user steps here are the last steps done by the user right before the bug was reported tap in floating button of type ibginvocationfloatingview in swiftradio nowplayingviewcontroller top view swiftradio nowplayingviewcontroller tap in uiparallaxdimmingview in swiftradio nowplayingviewcontroller tap in uistackview in swiftradio stationsviewcontroller top view swiftradio stationsviewcontroller application didbecomeactive application scenedidactivate find all the user steps done by the user throughout the session here point right point left camera images warning looking for more details network log we are unable to capture your network requests automatically if you are using afnetworking or alamofire user events start capturing custom user events to send them along with each report instabug log start adding instabug logs to see them right inside each report you receive console log when enabled you will see them right inside each report you receive
1
11,109
3,175,978,907
IssuesEvent
2015-09-24 05:14:36
cyoung/stratux
https://api.github.com/repos/cyoung/stratux
closed
Also experienced lockups using 0.3b1
bug testing
Was in a car within a few miles of DFW airport. Unfortunately I did have both 978 and 1090 enabled. When the unit gets in this state, the web page no longer responds, and the unit stops responding to Foreflight (however it is still showing connected via wifi). I power cycled the unit twice in the same location, and in both cases within two minutes the system had locked up again. I have only seen this occur in very high traffic areas. I also noticed before the system locked it had received about 800 Unknown UAT traffic type messages (I believe it was type 9999). [Here](https://gist.github.com/n4ohj/8315b4edebb2039f410c) is the UAT file I have the ES logs as well, but they are 192MB.
1.0
Also experienced lockups using 0.3b1 - Was in a car within a few miles of DFW airport. Unfortunately I did have both 978 and 1090 enabled. When the unit gets in this state, the web page no longer responds, and the unit stops responding to Foreflight (however it is still showing connected via wifi). I power cycled the unit twice in the same location, and in both cases within two minutes the system had locked up again. I have only seen this occur in very high traffic areas. I also noticed before the system locked it had received about 800 Unknown UAT traffic type messages (I believe it was type 9999). [Here](https://gist.github.com/n4ohj/8315b4edebb2039f410c) is the UAT file I have the ES logs as well, but they are 192MB.
test
also experienced lockups using was in a car within a few miles of dfw airport unfortunately i did have both and enabled when the unit gets in this state the web page no longer responds and the unit stops responding to foreflight however it is still showing connected via wifi i power cycled the unit twice in the same location and in both cases within two minutes the system had locked up again i have only seen this occur in very high traffic areas i also noticed before the system locked it had received about unknown uat traffic type messages i believe it was type is the uat file i have the es logs as well but they are
1
91,786
26,486,675,322
IssuesEvent
2023-01-17 18:38:24
tensorflow/tensorflow
https://api.github.com/repos/tensorflow/tensorflow
closed
CUDA version
stat:awaiting response type:build/install TF 2.11
Hi, Which is the CUDA version that is recommended for TF 2.11? Is CUDA 11.7 compatible?
1.0
CUDA version - Hi, Which is the CUDA version that is recommended for TF 2.11? Is CUDA 11.7 compatible?
non_test
cuda version hi which is the cuda version that is recommended for tf is cuda compatible
0
107,520
11,562,403,133
IssuesEvent
2020-02-20 02:21:48
exmaple/underScore
https://api.github.com/repos/exmaple/underScore
closed
Factor out examples
documentation
While the examples from the bot tutorial are nice, they should exist in documentation for reference and not in the codebase.
1.0
Factor out examples - While the examples from the bot tutorial are nice, they should exist in documentation for reference and not in the codebase.
non_test
factor out examples while the examples from the bot tutorial are nice they should exist in documentation for reference and not in the codebase
0
321,238
27,517,080,119
IssuesEvent
2023-03-06 12:43:46
camunda/zeebe
https://api.github.com/repos/camunda/zeebe
closed
Measure impact of network latency on process execution duration
area/performance area/observability area/test
Measuring the impact of network latency on process execution duration helps us in understanding the actual improvements of #11416, #11424 and any further changes. ## Goal For a given workload (process model, cluster setup etc.), we can say that **increasing network latency by X% increases process execution duration by Y%.** ## Breakdown ```[tasklist] ### Benchmark environment with controllable network latency - [x] Define workload for measuring network latency impact -> Default benchmark workload for now - [x] Benchmark tooling can introduce artificial network latency - [x] https://github.com/zeebe-io/benchmark-helm/issues/11 - [ ] https://github.com/zeebe-io/benchmark-helm/issues/18 - [ ] https://github.com/camunda/zeebe/pull/11731 ``` ```[tasklist] ### Automatic measurement - [x] #11760 - [x] #11768 - [x] #11769 ``` ```[tasklist] ### Measure impact of network latency - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/6 - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/5 - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/2 - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/3 ```
1.0
Measure impact of network latency on process execution duration - Measuring the impact of network latency on process execution duration helps us in understanding the actual improvements of #11416, #11424 and any further changes. ## Goal For a given workload (process model, cluster setup etc.), we can say that **increasing network latency by X% increases process execution duration by Y%.** ## Breakdown ```[tasklist] ### Benchmark environment with controllable network latency - [x] Define workload for measuring network latency impact -> Default benchmark workload for now - [x] Benchmark tooling can introduce artificial network latency - [x] https://github.com/zeebe-io/benchmark-helm/issues/11 - [ ] https://github.com/zeebe-io/benchmark-helm/issues/18 - [ ] https://github.com/camunda/zeebe/pull/11731 ``` ```[tasklist] ### Automatic measurement - [x] #11760 - [x] #11768 - [x] #11769 ``` ```[tasklist] ### Measure impact of network latency - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/6 - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/5 - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/2 - [ ] https://github.com/zeebe-io/zeebe-performance-test/issues/3 ```
test
measure impact of network latency on process execution duration measuring the impact of network latency on process execution duration helps us in understanding the actual improvements of and any further changes goal for a given workload process model cluster setup etc we can say that increasing network latency by x increases process execution duration by y breakdown benchmark environment with controllable network latency define workload for measuring network latency impact default benchmark workload for now benchmark tooling can introduce artificial network latency automatic measurement measure impact of network latency
1
766,223
26,874,769,366
IssuesEvent
2023-02-04 22:31:47
asastats/channel
https://api.github.com/repos/asastats/channel
closed
CoinMarketCap icon for ZONE is not updated
bug medium priority addressed
By kerrilija in [Discord](https://discord.com/channels/906917846754418770/908054330265960478/1070083579335422002): > CoinMarketCap icon - is it added manually or? > > ZONE (ID: 444035862) doesn't have the link in ASA Stats. > > https://coinmarketcap.com/currencies/zone/
1.0
CoinMarketCap icon for ZONE is not updated - By kerrilija in [Discord](https://discord.com/channels/906917846754418770/908054330265960478/1070083579335422002): > CoinMarketCap icon - is it added manually or? > > ZONE (ID: 444035862) doesn't have the link in ASA Stats. > > https://coinmarketcap.com/currencies/zone/
non_test
coinmarketcap icon for zone is not updated by kerrilija in coinmarketcap icon is it added manually or zone id doesn t have the link in asa stats
0
101,308
8,784,766,421
IssuesEvent
2018-12-20 10:48:46
legion-platform/legion
https://api.github.com/repos/legion-platform/legion
opened
Ne jenkins plugins support for pipelines
CI/CD/tests
We have a new Jenkins instance with latest version of server and all plugins. There is some mismatch in pipelines and plugins parameters which should be fixed.
1.0
Ne jenkins plugins support for pipelines - We have a new Jenkins instance with latest version of server and all plugins. There is some mismatch in pipelines and plugins parameters which should be fixed.
test
ne jenkins plugins support for pipelines we have a new jenkins instance with latest version of server and all plugins there is some mismatch in pipelines and plugins parameters which should be fixed
1
273,224
23,739,059,319
IssuesEvent
2022-08-31 10:43:26
elastic/kibana
https://api.github.com/repos/elastic/kibana
closed
[test-failed]: Chrome X-Pack UI Functional Tests - ML short_tests.x-pack/test/functional/apps/ml/short_tests/model_management/model_list·ts - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_fill_mask
:ml failed-test test-cloud v8.4.0
**Version: 8.4.0** **Class: Chrome X-Pack UI Functional Tests - ML short_tests.x-pack/test/functional/apps/ml/short_tests/model_management/model_list·ts** **Stack Trace:** ``` Error: retry.tryForTime timeout: NoSuchElementError: no such element: Unable to locate element: {"method":"css selector","selector":".euiToast:nth-child(1)"} (Session info: headless chrome=102.0.5005.115) at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:522:15) at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:589:13) at Executor.execute (node_modules/selenium-webdriver/lib/http.js:514:28) at runMicrotasks (<anonymous>) at processTicksAndRejections (node:internal/process/task_queues:96:5) at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20) at onFailure (test/common/services/retry/retry_for_success.ts:17:9) at retryForSuccess (test/common/services/retry/retry_for_success.ts:59:13) at RetryService.tryForTime (test/common/services/retry/retry.ts:22:12) at Object.assertLastToastHeader (x-pack/test/functional/services/ml/common_ui.ts:380:7) at ModelsTable.stopDeployment (x-pack/test/functional/services/ml/trained_models_table.ts:281:7) at Context.<anonymous> (x-pack/test/functional/apps/ml/short_tests/model_management/model_list.ts:198:13) at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16) ``` **Other test failures:** - machine learning - short tests model management trained models for ML power user with imported models deletes the imported model pt_tiny_fill_mask - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_ner - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_ner - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_pass_through - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_pass_through - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_text_classification - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_text_classification - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_text_embedding - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_text_embedding - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_zero_shot - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_zero_shot _Test Report: https://buildkite.com/elastic/estf-cloud-kibana-functional-tests/builds/539_
2.0
[test-failed]: Chrome X-Pack UI Functional Tests - ML short_tests.x-pack/test/functional/apps/ml/short_tests/model_management/model_list·ts - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_fill_mask - **Version: 8.4.0** **Class: Chrome X-Pack UI Functional Tests - ML short_tests.x-pack/test/functional/apps/ml/short_tests/model_management/model_list·ts** **Stack Trace:** ``` Error: retry.tryForTime timeout: NoSuchElementError: no such element: Unable to locate element: {"method":"css selector","selector":".euiToast:nth-child(1)"} (Session info: headless chrome=102.0.5005.115) at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:522:15) at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:589:13) at Executor.execute (node_modules/selenium-webdriver/lib/http.js:514:28) at runMicrotasks (<anonymous>) at processTicksAndRejections (node:internal/process/task_queues:96:5) at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20) at onFailure (test/common/services/retry/retry_for_success.ts:17:9) at retryForSuccess (test/common/services/retry/retry_for_success.ts:59:13) at RetryService.tryForTime (test/common/services/retry/retry.ts:22:12) at Object.assertLastToastHeader (x-pack/test/functional/services/ml/common_ui.ts:380:7) at ModelsTable.stopDeployment (x-pack/test/functional/services/ml/trained_models_table.ts:281:7) at Context.<anonymous> (x-pack/test/functional/apps/ml/short_tests/model_management/model_list.ts:198:13) at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16) ``` **Other test failures:** - machine learning - short tests model management trained models for ML power user with imported models deletes the imported model pt_tiny_fill_mask - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_ner - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_ner - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_pass_through - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_pass_through - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_text_classification - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_text_classification - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_text_embedding - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_text_embedding - machine learning - short tests model management trained models for ML power user with imported models starts deployment of the imported model pt_tiny_zero_shot - machine learning - short tests model management trained models for ML power user with imported models stops deployment of the imported model pt_tiny_zero_shot _Test Report: https://buildkite.com/elastic/estf-cloud-kibana-functional-tests/builds/539_
test
chrome x pack ui functional tests ml short tests x pack test functional apps ml short tests model management model list·ts machine learning short tests model management trained models for ml power user with imported models stops deployment of the imported model pt tiny fill mask version class chrome x pack ui functional tests ml short tests x pack test functional apps ml short tests model management model list·ts stack trace error retry tryfortime timeout nosuchelementerror no such element unable to locate element method css selector selector euitoast nth child session info headless chrome at object throwdecodederror node modules selenium webdriver lib error js at parsehttpresponse node modules selenium webdriver lib http js at executor execute node modules selenium webdriver lib http js at runmicrotasks at processticksandrejections node internal process task queues at task exec test functional services remote prevent parallel calls ts at onfailure test common services retry retry for success ts at retryforsuccess test common services retry retry for success ts at retryservice tryfortime test common services retry retry ts at object assertlasttoastheader x pack test functional services ml common ui ts at modelstable stopdeployment x pack test functional services ml trained models table ts at context x pack test functional apps ml short tests model management model list ts at object apply node modules kbn test target node functional test runner lib mocha wrap function js other test failures machine learning short tests model management trained models for ml power user with imported models deletes the imported model pt tiny fill mask machine learning short tests model management trained models for ml power user with imported models starts deployment of the imported model pt tiny ner machine learning short tests model management trained models for ml power user with imported models stops deployment of the imported model pt tiny ner machine learning short tests model management trained models for ml power user with imported models starts deployment of the imported model pt tiny pass through machine learning short tests model management trained models for ml power user with imported models stops deployment of the imported model pt tiny pass through machine learning short tests model management trained models for ml power user with imported models starts deployment of the imported model pt tiny text classification machine learning short tests model management trained models for ml power user with imported models stops deployment of the imported model pt tiny text classification machine learning short tests model management trained models for ml power user with imported models starts deployment of the imported model pt tiny text embedding machine learning short tests model management trained models for ml power user with imported models stops deployment of the imported model pt tiny text embedding machine learning short tests model management trained models for ml power user with imported models starts deployment of the imported model pt tiny zero shot machine learning short tests model management trained models for ml power user with imported models stops deployment of the imported model pt tiny zero shot test report
1
243,789
26,288,780,432
IssuesEvent
2023-01-08 05:53:23
RG4421/spring-data-cosmosdb
https://api.github.com/repos/RG4421/spring-data-cosmosdb
opened
CVE-2022-41915 (Medium) detected in netty-codec-http-4.1.50.Final.jar
security vulnerability
## CVE-2022-41915 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>netty-codec-http-4.1.50.Final.jar</b></p></summary> <p>Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.</p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/netty/netty-codec-http/4.1.50.Final/netty-codec-http-4.1.50.Final.jar</p> <p> Dependency Hierarchy: - azure-cosmos-3.7.3.jar (Root Library) - :x: **netty-codec-http-4.1.50.Final.jar** (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> Netty project is an event-driven asynchronous network application framework. In versions prior to 4.1.86.Final, when calling `DefaultHttpHeadesr.set` with an _iterator_ of values, header value validation was not performed, allowing malicious header values in the iterator to perform HTTP Response Splitting. This issue has been patched in version 4.1.86.Final. Integrators can work around the issue by changing the `DefaultHttpHeaders.set(CharSequence, Iterator<?>)` call, into a `remove()` call, and call `add()` in a loop over the iterator of values. <p>Publish Date: 2022-12-13 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41915>CVE-2022-41915</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: None - Scope: Unchanged - 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>Release Date: 2022-12-13</p> <p>Fix Resolution: io.netty:netty-codec-http:4.1.86.Final</p> </p> </details> <p></p>
True
CVE-2022-41915 (Medium) detected in netty-codec-http-4.1.50.Final.jar - ## CVE-2022-41915 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>netty-codec-http-4.1.50.Final.jar</b></p></summary> <p>Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.</p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/netty/netty-codec-http/4.1.50.Final/netty-codec-http-4.1.50.Final.jar</p> <p> Dependency Hierarchy: - azure-cosmos-3.7.3.jar (Root Library) - :x: **netty-codec-http-4.1.50.Final.jar** (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> Netty project is an event-driven asynchronous network application framework. In versions prior to 4.1.86.Final, when calling `DefaultHttpHeadesr.set` with an _iterator_ of values, header value validation was not performed, allowing malicious header values in the iterator to perform HTTP Response Splitting. This issue has been patched in version 4.1.86.Final. Integrators can work around the issue by changing the `DefaultHttpHeaders.set(CharSequence, Iterator<?>)` call, into a `remove()` call, and call `add()` in a loop over the iterator of values. <p>Publish Date: 2022-12-13 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41915>CVE-2022-41915</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: None - Scope: Unchanged - 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>Release Date: 2022-12-13</p> <p>Fix Resolution: io.netty:netty-codec-http:4.1.86.Final</p> </p> </details> <p></p>
non_test
cve medium detected in netty codec http final jar cve medium severity vulnerability vulnerable library netty codec http final jar netty is an asynchronous event driven network application framework for rapid development of maintainable high performance protocol servers and clients path to dependency file pom xml path to vulnerable library home wss scanner repository io netty netty codec http final netty codec http final jar dependency hierarchy azure cosmos jar root library x netty codec http final jar vulnerable library found in base branch master vulnerability details netty project is an event driven asynchronous network application framework in versions prior to final when calling defaulthttpheadesr set with an iterator of values header value validation was not performed allowing malicious header values in the iterator to perform http response splitting this issue has been patched in version final integrators can work around the issue by changing the defaulthttpheaders set charsequence iterator call into a remove call and call add in a loop over the iterator of values publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version release date fix resolution io netty netty codec http final
0
298,654
25,843,801,659
IssuesEvent
2022-12-13 03:54:31
Iostream3100/Studio-Web
https://api.github.com/repos/Iostream3100/Studio-Web
closed
test for milestone3
test
Since we import base64 into the constructor of implementing milestone3, we need to figure out how we could mock the service and the actions of clicking the buttons and entering some random strings. some useful links for mock the http service: https://stackoverflow.com/questions/40093013/unit-testing-click-event-in-angular ``` it('should', fakeAsync(() => { spyOn(component, 'onEditButtonClick'); let button = fixture.debugElement.nativeElement.querySelector('button'); button.click(); tick(); expect(component.onEditButtonClick).toHaveBeenCalled(); })); ``` Here is another possible solution ``` it('should', fakeAsync( () => { fixture.detectChanges(); spyOn(componentInstance, 'method name'); //method attached to the click. let btn = fixture.debugElement.query(By.css('button')); btn.triggerEventHandler('click', null); tick(); // simulates the passage of time until all pending asynchronous activities finish fixture.detectChanges(); expect(componentInstance.methodName).toHaveBeenCalled(); })); ```
1.0
test for milestone3 - Since we import base64 into the constructor of implementing milestone3, we need to figure out how we could mock the service and the actions of clicking the buttons and entering some random strings. some useful links for mock the http service: https://stackoverflow.com/questions/40093013/unit-testing-click-event-in-angular ``` it('should', fakeAsync(() => { spyOn(component, 'onEditButtonClick'); let button = fixture.debugElement.nativeElement.querySelector('button'); button.click(); tick(); expect(component.onEditButtonClick).toHaveBeenCalled(); })); ``` Here is another possible solution ``` it('should', fakeAsync( () => { fixture.detectChanges(); spyOn(componentInstance, 'method name'); //method attached to the click. let btn = fixture.debugElement.query(By.css('button')); btn.triggerEventHandler('click', null); tick(); // simulates the passage of time until all pending asynchronous activities finish fixture.detectChanges(); expect(componentInstance.methodName).toHaveBeenCalled(); })); ```
test
test for since we import into the constructor of implementing we need to figure out how we could mock the service and the actions of clicking the buttons and entering some random strings some useful links for mock the http service it should fakeasync spyon component oneditbuttonclick let button fixture debugelement nativeelement queryselector button button click tick expect component oneditbuttonclick tohavebeencalled here is another possible solution it should fakeasync fixture detectchanges spyon componentinstance method name method attached to the click let btn fixture debugelement query by css button btn triggereventhandler click null tick simulates the passage of time until all pending asynchronous activities finish fixture detectchanges expect componentinstance methodname tohavebeencalled
1
70,977
7,208,479,772
IssuesEvent
2018-02-07 03:19:32
istio/istio
https://api.github.com/repos/istio/istio
closed
AWS Certificate tests failing with go 1.10
area/security area/test and release
TestAwsGetInstanceIdentityDocument and TestGetGetAgentCredential are failing. Will exclude them in aws_test.go until this bug is fixed. Example failure: https://circleci.com/gh/istio/istio/26218 === RUN TestAwsGetInstanceIdentityDocument --- FAIL: TestAwsGetInstanceIdentityDocument (0.00s) aws_test.go:120: Good Identity: Unexpected Error: failed to verify PKCS7 signature: x509: signature algorithm specifies an RSA public key, but have public key of type *dsa.PublicKey === RUN TestGetGetAgentCredential --- FAIL: TestGetGetAgentCredential (0.00s) aws_test.go:223: Good Identity: Unexpected Error: failed to get EC2 instance identity document: failed to verify PKCS7 signature: x509: signature algorithm specifies an RSA public key, but have public key of type *dsa.PublicKey
1.0
AWS Certificate tests failing with go 1.10 - TestAwsGetInstanceIdentityDocument and TestGetGetAgentCredential are failing. Will exclude them in aws_test.go until this bug is fixed. Example failure: https://circleci.com/gh/istio/istio/26218 === RUN TestAwsGetInstanceIdentityDocument --- FAIL: TestAwsGetInstanceIdentityDocument (0.00s) aws_test.go:120: Good Identity: Unexpected Error: failed to verify PKCS7 signature: x509: signature algorithm specifies an RSA public key, but have public key of type *dsa.PublicKey === RUN TestGetGetAgentCredential --- FAIL: TestGetGetAgentCredential (0.00s) aws_test.go:223: Good Identity: Unexpected Error: failed to get EC2 instance identity document: failed to verify PKCS7 signature: x509: signature algorithm specifies an RSA public key, but have public key of type *dsa.PublicKey
test
aws certificate tests failing with go testawsgetinstanceidentitydocument and testgetgetagentcredential are failing will exclude them in aws test go until this bug is fixed example failure run testawsgetinstanceidentitydocument fail testawsgetinstanceidentitydocument aws test go good identity unexpected error failed to verify signature signature algorithm specifies an rsa public key but have public key of type dsa publickey run testgetgetagentcredential fail testgetgetagentcredential aws test go good identity unexpected error failed to get instance identity document failed to verify signature signature algorithm specifies an rsa public key but have public key of type dsa publickey
1
21,667
3,911,783,830
IssuesEvent
2016-04-20 07:49:05
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
closed
Sporadic NPE in DocumentParser.parseDynamicValue
test
Different tests are failing in CI with an NPE recently, e.g.: * org.elasticsearch.ingest.IngestClientIT#testBulkWithIngestFailures(): https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+periodic/511/console * org.elasticsearch.messy.tests.MinDocCountTests: https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+periodic/512/console * org.elasticsearch.search.scroll.DuelScrollIT#testDuelIndexOrderQueryThenFetch(): https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+g1gc/81/console For `IngestClientIT` we managed to get a stack trace: ``` java.lang.NullPointerException at org.elasticsearch.index.mapper.DocumentParser.parseDynamicValue(DocumentParser.java:819) at org.elasticsearch.index.mapper.DocumentParser.parseValue(DocumentParser.java:579) at org.elasticsearch.index.mapper.DocumentParser.innerParseObject(DocumentParser.java:412) at org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(DocumentParser.java:392) at org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(DocumentParser.java:112) at org.elasticsearch.index.mapper.DocumentParser.parseDocument(DocumentParser.java:80) at org.elasticsearch.index.mapper.DocumentMapper.parse(DocumentMapper.java:286) at org.elasticsearch.index.shard.IndexShard.prepareIndex(IndexShard.java:474) at org.elasticsearch.index.shard.IndexShard.prepareIndexOnPrimary(IndexShard.java:455) at org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary(TransportIndexAction.java:188) at org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary(TransportIndexAction.java:196) at org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation(TransportShardBulkAction.java:339) at org.elasticsearch.action.bulk.TransportShardBulkAction.index(TransportShardBulkAction.java:156) at org.elasticsearch.action.bulk.TransportShardBulkAction.handleItem(TransportShardBulkAction.java:135) at org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary(TransportShardBulkAction.java:121) at org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary(TransportShardBulkAction.java:70) ```
1.0
Sporadic NPE in DocumentParser.parseDynamicValue - Different tests are failing in CI with an NPE recently, e.g.: * org.elasticsearch.ingest.IngestClientIT#testBulkWithIngestFailures(): https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+periodic/511/console * org.elasticsearch.messy.tests.MinDocCountTests: https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+periodic/512/console * org.elasticsearch.search.scroll.DuelScrollIT#testDuelIndexOrderQueryThenFetch(): https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+g1gc/81/console For `IngestClientIT` we managed to get a stack trace: ``` java.lang.NullPointerException at org.elasticsearch.index.mapper.DocumentParser.parseDynamicValue(DocumentParser.java:819) at org.elasticsearch.index.mapper.DocumentParser.parseValue(DocumentParser.java:579) at org.elasticsearch.index.mapper.DocumentParser.innerParseObject(DocumentParser.java:412) at org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(DocumentParser.java:392) at org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(DocumentParser.java:112) at org.elasticsearch.index.mapper.DocumentParser.parseDocument(DocumentParser.java:80) at org.elasticsearch.index.mapper.DocumentMapper.parse(DocumentMapper.java:286) at org.elasticsearch.index.shard.IndexShard.prepareIndex(IndexShard.java:474) at org.elasticsearch.index.shard.IndexShard.prepareIndexOnPrimary(IndexShard.java:455) at org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary(TransportIndexAction.java:188) at org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary(TransportIndexAction.java:196) at org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation(TransportShardBulkAction.java:339) at org.elasticsearch.action.bulk.TransportShardBulkAction.index(TransportShardBulkAction.java:156) at org.elasticsearch.action.bulk.TransportShardBulkAction.handleItem(TransportShardBulkAction.java:135) at org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary(TransportShardBulkAction.java:121) at org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary(TransportShardBulkAction.java:70) ```
test
sporadic npe in documentparser parsedynamicvalue different tests are failing in ci with an npe recently e g org elasticsearch ingest ingestclientit testbulkwithingestfailures org elasticsearch messy tests mindoccounttests org elasticsearch search scroll duelscrollit testduelindexorderquerythenfetch for ingestclientit we managed to get a stack trace java lang nullpointerexception at org elasticsearch index mapper documentparser parsedynamicvalue documentparser java at org elasticsearch index mapper documentparser parsevalue documentparser java at org elasticsearch index mapper documentparser innerparseobject documentparser java at org elasticsearch index mapper documentparser parseobjectornested documentparser java at org elasticsearch index mapper documentparser internalparsedocument documentparser java at org elasticsearch index mapper documentparser parsedocument documentparser java at org elasticsearch index mapper documentmapper parse documentmapper java at org elasticsearch index shard indexshard prepareindex indexshard java at org elasticsearch index shard indexshard prepareindexonprimary indexshard java at org elasticsearch action index transportindexaction prepareindexoperationonprimary transportindexaction java at org elasticsearch action index transportindexaction executeindexrequestonprimary transportindexaction java at org elasticsearch action bulk transportshardbulkaction shardindexoperation transportshardbulkaction java at org elasticsearch action bulk transportshardbulkaction index transportshardbulkaction java at org elasticsearch action bulk transportshardbulkaction handleitem transportshardbulkaction java at org elasticsearch action bulk transportshardbulkaction shardoperationonprimary transportshardbulkaction java at org elasticsearch action bulk transportshardbulkaction shardoperationonprimary transportshardbulkaction java
1
786,771
27,664,291,771
IssuesEvent
2023-03-12 21:41:05
GoogleCloudPlatform/cloud-ops-sandbox
https://api.github.com/repos/GoogleCloudPlatform/cloud-ops-sandbox
opened
Disable unsupported SRE recipes
type: feature request priority: p2
Transition to using Online Boutique as the demo application (#1001) results in some of the existing SRE recipes to fail. Review and disable recipes that aren't supported due to the integration. The expected changes: * [recipe 0] - significantly slows down home page rendering of the application by issuing a large number of calls to currencyservice convert API. **The recipe will be disabled.** It cannot be currently mitigated. An alternative recipe will be developed in version 0.10 to address this scenario (#1009). * [recipe 2] - "breaks" data collection logic of the rating service. **The recipe will be retired.** The service does not exist in Online Boutique and there is no practical reason to implement such service. * [recipe 3] - cause a crash in the recommendation service by causing invalid conversion. **The recipe will be disabled.** The recipe can be mitigated by adding the [watchdog] package to the service's container image and running the service with `watchmedo` command that restarts python runtime when source code changes. [recipe 0]: https://github.com/GoogleCloudPlatform/cloud-ops-sandbox/blob/24f2a5edf067030ee2962580008bd66a5ff7e2f3/sre-recipes/recipes/configs_based/recipe0.yaml [recipe 2]: https://github.com/GoogleCloudPlatform/cloud-ops-sandbox/blob/24f2a5edf067030ee2962580008bd66a5ff7e2f3/sre-recipes/recipes/configs_based/recipe2.yaml [recipe 3]: https://github.com/GoogleCloudPlatform/cloud-ops-sandbox/blob/24f2a5edf067030ee2962580008bd66a5ff7e2f3/sre-recipes/recipes/configs_based/recipe3.yaml [watchdog]: https://pypi.org/project/watchdog/
1.0
Disable unsupported SRE recipes - Transition to using Online Boutique as the demo application (#1001) results in some of the existing SRE recipes to fail. Review and disable recipes that aren't supported due to the integration. The expected changes: * [recipe 0] - significantly slows down home page rendering of the application by issuing a large number of calls to currencyservice convert API. **The recipe will be disabled.** It cannot be currently mitigated. An alternative recipe will be developed in version 0.10 to address this scenario (#1009). * [recipe 2] - "breaks" data collection logic of the rating service. **The recipe will be retired.** The service does not exist in Online Boutique and there is no practical reason to implement such service. * [recipe 3] - cause a crash in the recommendation service by causing invalid conversion. **The recipe will be disabled.** The recipe can be mitigated by adding the [watchdog] package to the service's container image and running the service with `watchmedo` command that restarts python runtime when source code changes. [recipe 0]: https://github.com/GoogleCloudPlatform/cloud-ops-sandbox/blob/24f2a5edf067030ee2962580008bd66a5ff7e2f3/sre-recipes/recipes/configs_based/recipe0.yaml [recipe 2]: https://github.com/GoogleCloudPlatform/cloud-ops-sandbox/blob/24f2a5edf067030ee2962580008bd66a5ff7e2f3/sre-recipes/recipes/configs_based/recipe2.yaml [recipe 3]: https://github.com/GoogleCloudPlatform/cloud-ops-sandbox/blob/24f2a5edf067030ee2962580008bd66a5ff7e2f3/sre-recipes/recipes/configs_based/recipe3.yaml [watchdog]: https://pypi.org/project/watchdog/
non_test
disable unsupported sre recipes transition to using online boutique as the demo application results in some of the existing sre recipes to fail review and disable recipes that aren t supported due to the integration the expected changes significantly slows down home page rendering of the application by issuing a large number of calls to currencyservice convert api the recipe will be disabled it cannot be currently mitigated an alternative recipe will be developed in version to address this scenario breaks data collection logic of the rating service the recipe will be retired the service does not exist in online boutique and there is no practical reason to implement such service cause a crash in the recommendation service by causing invalid conversion the recipe will be disabled the recipe can be mitigated by adding the package to the service s container image and running the service with watchmedo command that restarts python runtime when source code changes
0
101,333
4,113,134,419
IssuesEvent
2016-06-07 13:13:02
robotology/yarp
https://api.github.com/repos/robotology/yarp
opened
Modules and Connections stay selected after being refreshed
Component: yarpmanager++ Priority: Low Type: Bug
Whenever I use `yarpmanager++` and I click the refresh button, all module and connection entries stay selected as if they where selected all together by hand. Not a big deal, just a minor, yet annoying, issue since most of the time you are forced to click somewhere else on the GUI to unselect them all and to be able to properly use the manager. cc @apaikan
1.0
Modules and Connections stay selected after being refreshed - Whenever I use `yarpmanager++` and I click the refresh button, all module and connection entries stay selected as if they where selected all together by hand. Not a big deal, just a minor, yet annoying, issue since most of the time you are forced to click somewhere else on the GUI to unselect them all and to be able to properly use the manager. cc @apaikan
non_test
modules and connections stay selected after being refreshed whenever i use yarpmanager and i click the refresh button all module and connection entries stay selected as if they where selected all together by hand not a big deal just a minor yet annoying issue since most of the time you are forced to click somewhere else on the gui to unselect them all and to be able to properly use the manager cc  apaikan
0
22,103
3,933,833,423
IssuesEvent
2016-04-25 20:30:04
GCSO2/D3S-INVENTORY
https://api.github.com/repos/GCSO2/D3S-INVENTORY
closed
Cloud: PO Details: Add Part - Make Supplier catalog records available for selection
bug ready for gio to test
- Add Catalog # field after Part # ![image](https://cloud.githubusercontent.com/assets/5666297/13961273/48148014-f032-11e5-8a7c-42000623e7db.png) - Add Catalog # after Part # on selection grid below ![image](https://cloud.githubusercontent.com/assets/5666297/13961319/7a5873f0-f032-11e5-8ff4-5e4527787d71.png) - Change underlining query ADD union with part catalog table. Only part catalog for supplier selected on the PO Details should show up for selection: barcode show from catalog table (inv_part_catalogues_wv) part number show from part table catalog number show from catalog table description show from catalog table. group based on join from part table.
1.0
Cloud: PO Details: Add Part - Make Supplier catalog records available for selection - - Add Catalog # field after Part # ![image](https://cloud.githubusercontent.com/assets/5666297/13961273/48148014-f032-11e5-8a7c-42000623e7db.png) - Add Catalog # after Part # on selection grid below ![image](https://cloud.githubusercontent.com/assets/5666297/13961319/7a5873f0-f032-11e5-8ff4-5e4527787d71.png) - Change underlining query ADD union with part catalog table. Only part catalog for supplier selected on the PO Details should show up for selection: barcode show from catalog table (inv_part_catalogues_wv) part number show from part table catalog number show from catalog table description show from catalog table. group based on join from part table.
test
cloud po details add part make supplier catalog records available for selection add catalog field after part add catalog after part on selection grid below change underlining query add union with part catalog table only part catalog for supplier selected on the po details should show up for selection barcode show from catalog table inv part catalogues wv part number show from part table catalog number show from catalog table description show from catalog table group based on join from part table
1
222,861
17,497,504,282
IssuesEvent
2021-08-10 03:56:51
medic/cht-core
https://api.github.com/repos/medic/cht-core
opened
Flaky unit test: Sentinel scheduler should not skip job when time is milliseconds ahead schedule and should launch within the same second
Type: Technical issue Testing
**Describe the issue** We recently added a fix for scheduled jobs being missed if they were scheduled within one second of the time to run. https://github.com/medic/cht-core/commit/1edc93a9555737e2734fb37f4d7883a2fe3c400d The same commit added a unit test for this behavior, which sometimes fails with: ``` 1) scheduler Scheduling without gaps should not skip job when time is milliseconds ahead schedule and should launch within the same second: AssertionError: expected false to be true + expected - actual -false +true at /home/runner/work/cht-core/cht-core/sentinel/tests/unit/schedule/index.js:415:65 ``` example build: https://github.com/medic/cht-core/pull/7234/checks?check_run_id=3287077131#step:14:13771 **Describe the improvement you'd like** Identify whether the test is flaking because of a problem within the test itself OR if we still have an issue with scheduling. If we still have an issue with scheduling, re-label this issue as a bug, and treat accordingly. **Describe alternatives you've considered** None.
1.0
Flaky unit test: Sentinel scheduler should not skip job when time is milliseconds ahead schedule and should launch within the same second - **Describe the issue** We recently added a fix for scheduled jobs being missed if they were scheduled within one second of the time to run. https://github.com/medic/cht-core/commit/1edc93a9555737e2734fb37f4d7883a2fe3c400d The same commit added a unit test for this behavior, which sometimes fails with: ``` 1) scheduler Scheduling without gaps should not skip job when time is milliseconds ahead schedule and should launch within the same second: AssertionError: expected false to be true + expected - actual -false +true at /home/runner/work/cht-core/cht-core/sentinel/tests/unit/schedule/index.js:415:65 ``` example build: https://github.com/medic/cht-core/pull/7234/checks?check_run_id=3287077131#step:14:13771 **Describe the improvement you'd like** Identify whether the test is flaking because of a problem within the test itself OR if we still have an issue with scheduling. If we still have an issue with scheduling, re-label this issue as a bug, and treat accordingly. **Describe alternatives you've considered** None.
test
flaky unit test sentinel scheduler should not skip job when time is milliseconds ahead schedule and should launch within the same second describe the issue we recently added a fix for scheduled jobs being missed if they were scheduled within one second of the time to run the same commit added a unit test for this behavior which sometimes fails with scheduler scheduling without gaps should not skip job when time is milliseconds ahead schedule and should launch within the same second assertionerror expected false to be true expected actual false true at home runner work cht core cht core sentinel tests unit schedule index js example build describe the improvement you d like identify whether the test is flaking because of a problem within the test itself or if we still have an issue with scheduling if we still have an issue with scheduling re label this issue as a bug and treat accordingly describe alternatives you ve considered none
1
268,617
28,606,239,337
IssuesEvent
2023-04-24 01:02:33
mattdanielbrown/eleventy-simple-site
https://api.github.com/repos/mattdanielbrown/eleventy-simple-site
opened
CVE-2023-2142 (Medium) detected in nunjucks-3.2.2.tgz
Mend: dependency security vulnerability
## CVE-2023-2142 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nunjucks-3.2.2.tgz</b></p></summary> <p>A powerful templating engine with inheritance, asynchronous control, and more (jinja2 inspired)</p> <p>Library home page: <a href="https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.2.tgz">https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.2.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/nunjucks/package.json</p> <p> Dependency Hierarchy: - eleventy-0.11.1.tgz (Root Library) - :x: **nunjucks-3.2.2.tgz** (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> Nunjucks is vulnerable to autoescape bypass that may lead to cross site scripting (XSS). It was possible to bypass the restrictions which are provided by the autoescape functionality. If there are two user-controlled parameters on the same line used in the views, it was possible to inject cross site scripting payloads using the backslash \ character. The issue was patched in version 3.2.4. <p>Publish Date: 2023-04-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-2142>CVE-2023-2142</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: 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://github.com/advisories/GHSA-x77j-w7wf-fjmw">https://github.com/advisories/GHSA-x77j-w7wf-fjmw</a></p> <p>Release Date: 2023-04-18</p> <p>Fix Resolution: nunjucks - 3.2.4</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-2023-2142 (Medium) detected in nunjucks-3.2.2.tgz - ## CVE-2023-2142 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nunjucks-3.2.2.tgz</b></p></summary> <p>A powerful templating engine with inheritance, asynchronous control, and more (jinja2 inspired)</p> <p>Library home page: <a href="https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.2.tgz">https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.2.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/nunjucks/package.json</p> <p> Dependency Hierarchy: - eleventy-0.11.1.tgz (Root Library) - :x: **nunjucks-3.2.2.tgz** (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> Nunjucks is vulnerable to autoescape bypass that may lead to cross site scripting (XSS). It was possible to bypass the restrictions which are provided by the autoescape functionality. If there are two user-controlled parameters on the same line used in the views, it was possible to inject cross site scripting payloads using the backslash \ character. The issue was patched in version 3.2.4. <p>Publish Date: 2023-04-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-2142>CVE-2023-2142</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: 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://github.com/advisories/GHSA-x77j-w7wf-fjmw">https://github.com/advisories/GHSA-x77j-w7wf-fjmw</a></p> <p>Release Date: 2023-04-18</p> <p>Fix Resolution: nunjucks - 3.2.4</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 nunjucks tgz cve medium severity vulnerability vulnerable library nunjucks tgz a powerful templating engine with inheritance asynchronous control and more inspired library home page a href path to dependency file package json path to vulnerable library node modules nunjucks package json dependency hierarchy eleventy tgz root library x nunjucks tgz vulnerable library found in base branch master vulnerability details nunjucks is vulnerable to autoescape bypass that may lead to cross site scripting xss it was possible to bypass the restrictions which are provided by the autoescape functionality if there are two user controlled parameters on the same line used in the views it was possible to inject cross site scripting payloads using the backslash character the issue was patched in version publish date url a href cvss score details base score metrics exploitability metrics attack vector local 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 nunjucks step up your open source security game with mend
0
713,866
24,541,960,443
IssuesEvent
2022-10-12 05:08:08
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YCQL] Memory error - out of bounds index in Selectivity::Analyze
kind/bug priority/medium area/ycql status/awaiting-triage
Jira Link: [DB-3260](https://yugabyte.atlassian.net/browse/DB-3260) ### Description Reproducer - see the test: ``` ybd --cxx-test ql_ql-statement-test --gtest_filter TestQLStatement.TestBindVarPositions ``` Uncomment: ``` // prepareAndCheck(processor, // "SELECT * FROM tbl_json2 WHERE v1 = ? AND h1 = ? AND \"j->>'a'\" = ?;", {1, 2}); ``` Short reproducer (the same case): ``` EXEC_VALID_STMT("CREATE TABLE tbl_json2 (h1 INT, \"j->>'a'\" INT, j JSONB, v1 INT, " "PRIMARY KEY((h1, \"j->>'a'\"))) WITH transactions = {'enabled' : true};"); EXEC_VALID_STMT("CREATE INDEX ind ON tbl_json2 ((j->>'b', h1));"); PreparedResult::UniPtr result; Statement stmt(processor->CurrentKeyspace(), "SELECT * FROM tbl_json2 WHERE v1 = ? AND h1 = ? AND \"j->>'a'\" = ?;"); Status s = stmt.Prepare(&processor->ql_processor(), nullptr /* mem_tracker */, false /* internal */, &result); ``` Error: ``` F0823 21:19:07.455173 15309 pt_select.cc:313] Bad op index=2 for vector size=2 ``` Code: `src/yb/yql/cql/ql/ptree/pt_select.cc` ``` class Selectivity { ... void Analyze(MemoryContext *memctx, ... MCVector<OpSelectivity> ops(id_to_idx.size(), OpSelectivity::kNone, memctx); <<<< size()=2 for (const ColumnOp& col_op : scan_info->col_ops()) { ... const auto iter = id_to_idx.find(col_op.desc()->id()); if (iter != id_to_idx.end()) { LOG_IF(DFATAL, iter->second >= ops.size()) << "Bad op index=" << iter->second << " for vector size=" << ops.size(); ops[iter->second] = GetOperatorSelectivity(col_op.yb_op()); <<<< second=2 ```
1.0
[YCQL] Memory error - out of bounds index in Selectivity::Analyze - Jira Link: [DB-3260](https://yugabyte.atlassian.net/browse/DB-3260) ### Description Reproducer - see the test: ``` ybd --cxx-test ql_ql-statement-test --gtest_filter TestQLStatement.TestBindVarPositions ``` Uncomment: ``` // prepareAndCheck(processor, // "SELECT * FROM tbl_json2 WHERE v1 = ? AND h1 = ? AND \"j->>'a'\" = ?;", {1, 2}); ``` Short reproducer (the same case): ``` EXEC_VALID_STMT("CREATE TABLE tbl_json2 (h1 INT, \"j->>'a'\" INT, j JSONB, v1 INT, " "PRIMARY KEY((h1, \"j->>'a'\"))) WITH transactions = {'enabled' : true};"); EXEC_VALID_STMT("CREATE INDEX ind ON tbl_json2 ((j->>'b', h1));"); PreparedResult::UniPtr result; Statement stmt(processor->CurrentKeyspace(), "SELECT * FROM tbl_json2 WHERE v1 = ? AND h1 = ? AND \"j->>'a'\" = ?;"); Status s = stmt.Prepare(&processor->ql_processor(), nullptr /* mem_tracker */, false /* internal */, &result); ``` Error: ``` F0823 21:19:07.455173 15309 pt_select.cc:313] Bad op index=2 for vector size=2 ``` Code: `src/yb/yql/cql/ql/ptree/pt_select.cc` ``` class Selectivity { ... void Analyze(MemoryContext *memctx, ... MCVector<OpSelectivity> ops(id_to_idx.size(), OpSelectivity::kNone, memctx); <<<< size()=2 for (const ColumnOp& col_op : scan_info->col_ops()) { ... const auto iter = id_to_idx.find(col_op.desc()->id()); if (iter != id_to_idx.end()) { LOG_IF(DFATAL, iter->second >= ops.size()) << "Bad op index=" << iter->second << " for vector size=" << ops.size(); ops[iter->second] = GetOperatorSelectivity(col_op.yb_op()); <<<< second=2 ```
non_test
memory error out of bounds index in selectivity analyze jira link description reproducer see the test ybd cxx test ql ql statement test gtest filter testqlstatement testbindvarpositions uncomment prepareandcheck processor select from tbl where and and j a short reproducer the same case exec valid stmt create table tbl int j a int j jsonb int primary key j a with transactions enabled true exec valid stmt create index ind on tbl j b preparedresult uniptr result statement stmt processor currentkeyspace select from tbl where and and j a status s stmt prepare processor ql processor nullptr mem tracker false internal result error pt select cc bad op index for vector size code src yb yql cql ql ptree pt select cc class selectivity void analyze memorycontext memctx mcvector ops id to idx size opselectivity knone memctx size for const columnop col op scan info col ops const auto iter id to idx find col op desc id if iter id to idx end log if dfatal iter second ops size second for vector size ops size ops getoperatorselectivity col op yb op second
0
2,080
4,893,384,845
IssuesEvent
2016-11-18 22:58:08
docker/docker
https://api.github.com/repos/docker/docker
closed
ContainerSpec.Hosts has format backwards
area/api priority/P0 process/cherry-pick
Please see https://github.com/docker/docker/pull/28299#discussion_r88733899. The new `hosts` field just uses the format from `/etc/hosts`, since this is cross-platform capable. @thaJeztah @cpuguy83
1.0
ContainerSpec.Hosts has format backwards - Please see https://github.com/docker/docker/pull/28299#discussion_r88733899. The new `hosts` field just uses the format from `/etc/hosts`, since this is cross-platform capable. @thaJeztah @cpuguy83
non_test
containerspec hosts has format backwards please see the new hosts field just uses the format from etc hosts since this is cross platform capable thajeztah
0
350,910
31,932,528,600
IssuesEvent
2023-09-19 08:24:09
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
reopened
Fix elementwise.test_modf
Sub Task Failing Test
| | | |---|---| |jax|<a href="https://github.com/unifyai/ivy/actions/runs/6156951285"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/6156951285"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/6156951285"><img src=https://img.shields.io/badge/-failure-red></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/6167324794"><img src=https://img.shields.io/badge/-failure-red></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5718837487/job/15495480958"><img src=https://img.shields.io/badge/-success-success></a>
1.0
Fix elementwise.test_modf - | | | |---|---| |jax|<a href="https://github.com/unifyai/ivy/actions/runs/6156951285"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/6156951285"><img src=https://img.shields.io/badge/-failure-red></a> |torch|<a href="https://github.com/unifyai/ivy/actions/runs/6156951285"><img src=https://img.shields.io/badge/-failure-red></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/6167324794"><img src=https://img.shields.io/badge/-failure-red></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5718837487/job/15495480958"><img src=https://img.shields.io/badge/-success-success></a>
test
fix elementwise test modf jax a href src numpy a href src torch a href src paddle a href src tensorflow a href src
1
55,612
6,487,503,309
IssuesEvent
2017-08-20 08:22:31
dzhw/metadatamanagement
https://api.github.com/repos/dzhw/metadatamanagement
closed
Update DS-Report with new FDZ style defintions
category:datasetmanagement points:8 prio:1 status:testing type:backlog item
- [x] Update Style Definition - [x] Install Calibri as Local Latex Font (local texmf) - [x] Update Backend for handling binary files - [x] Update Table Definition - [x] Update If conditions and handling for box plots and bar charts - [x] Scale Level: Invervals have only a box plot in the future - [x] Problems with Table if DataType = String
1.0
Update DS-Report with new FDZ style defintions - - [x] Update Style Definition - [x] Install Calibri as Local Latex Font (local texmf) - [x] Update Backend for handling binary files - [x] Update Table Definition - [x] Update If conditions and handling for box plots and bar charts - [x] Scale Level: Invervals have only a box plot in the future - [x] Problems with Table if DataType = String
test
update ds report with new fdz style defintions update style definition install calibri as local latex font local texmf update backend for handling binary files update table definition update if conditions and handling for box plots and bar charts scale level invervals have only a box plot in the future problems with table if datatype string
1
141,768
11,435,069,423
IssuesEvent
2020-02-04 18:39:03
briansmith/ring
https://api.github.com/repos/briansmith/ring
opened
Verify more RSA public key length edge cases
test-coverage
We should be testing lots of different public key lengths around the minimum and maximum public key lengths that each algorithm supports. See the discussion in #871 (near the end).
1.0
Verify more RSA public key length edge cases - We should be testing lots of different public key lengths around the minimum and maximum public key lengths that each algorithm supports. See the discussion in #871 (near the end).
test
verify more rsa public key length edge cases we should be testing lots of different public key lengths around the minimum and maximum public key lengths that each algorithm supports see the discussion in near the end
1
229,586
25,362,284,421
IssuesEvent
2022-11-21 01:03:22
AkshayMukkavilli/Analyzing-the-Significance-of-Structure-in-Amazon-Review-Data-Using-Machine-Learning-Approaches
https://api.github.com/repos/AkshayMukkavilli/Analyzing-the-Significance-of-Structure-in-Amazon-Review-Data-Using-Machine-Learning-Approaches
opened
CVE-2022-41885 (Medium) detected in tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl
security vulnerability
## CVE-2022-41885 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary> <p>TensorFlow is an open source machine learning framework for everyone.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</a></p> <p>Path to dependency file: /FinalProject/requirements.txt</p> <p>Path to vulnerable library: /teSource-ArchiveExtractor_8b9e071c-3b11-4aa9-ba60-cdeb60d053b7/20190525011350_65403/20190525011256_depth_0/9/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64/tensorflow-1.13.1.data/purelib/tensorflow</p> <p> Dependency Hierarchy: - :x: **tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> TensorFlow is an open source platform for machine learning. When `tf.raw_ops.FusedResizeAndPadConv2D` is given a large tensor shape, it overflows. We have patched the issue in GitHub commit d66e1d568275e6a2947de97dca7a102a211e01ce. The fix will be included in TensorFlow 2.11. We will also cherrypick this commit on TensorFlow 2.10.1, 2.9.3, and TensorFlow 2.8.4, as these are also affected and still in supported range. <p>Publish Date: 2022-11-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41885>CVE-2022-41885</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - 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://www.cve.org/CVERecord?id=CVE-2022-41885">https://www.cve.org/CVERecord?id=CVE-2022-41885</a></p> <p>Release Date: 2022-11-18</p> <p>Fix Resolution: tensorflow - 2.7.4, 2.8.1, 2.9.1, 2.10.0, tensorflow-cpu - 2.7.4, 2.8.1, 2.9.1, 2.10.0, tensorflow-gpu - 2.7.4, 2.8.1, 2.9.1, 2.10.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-41885 (Medium) detected in tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl - ## CVE-2022-41885 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary> <p>TensorFlow is an open source machine learning framework for everyone.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</a></p> <p>Path to dependency file: /FinalProject/requirements.txt</p> <p>Path to vulnerable library: /teSource-ArchiveExtractor_8b9e071c-3b11-4aa9-ba60-cdeb60d053b7/20190525011350_65403/20190525011256_depth_0/9/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64/tensorflow-1.13.1.data/purelib/tensorflow</p> <p> Dependency Hierarchy: - :x: **tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> TensorFlow is an open source platform for machine learning. When `tf.raw_ops.FusedResizeAndPadConv2D` is given a large tensor shape, it overflows. We have patched the issue in GitHub commit d66e1d568275e6a2947de97dca7a102a211e01ce. The fix will be included in TensorFlow 2.11. We will also cherrypick this commit on TensorFlow 2.10.1, 2.9.3, and TensorFlow 2.8.4, as these are also affected and still in supported range. <p>Publish Date: 2022-11-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41885>CVE-2022-41885</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: Low - 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://www.cve.org/CVERecord?id=CVE-2022-41885">https://www.cve.org/CVERecord?id=CVE-2022-41885</a></p> <p>Release Date: 2022-11-18</p> <p>Fix Resolution: tensorflow - 2.7.4, 2.8.1, 2.9.1, 2.10.0, tensorflow-cpu - 2.7.4, 2.8.1, 2.9.1, 2.10.0, tensorflow-gpu - 2.7.4, 2.8.1, 2.9.1, 2.10.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in tensorflow whl cve medium severity vulnerability vulnerable library tensorflow whl tensorflow is an open source machine learning framework for everyone library home page a href path to dependency file finalproject requirements txt path to vulnerable library tesource archiveextractor depth tensorflow tensorflow data purelib tensorflow dependency hierarchy x tensorflow whl vulnerable library vulnerability details tensorflow is an open source platform for machine learning when tf raw ops is given a large tensor shape it overflows we have patched the issue in github commit the fix will be included in tensorflow we will also cherrypick this commit on tensorflow and tensorflow as these are also affected and still in supported range publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required low 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 tensorflow tensorflow cpu tensorflow gpu step up your open source security game with mend
0
305,305
26,377,656,042
IssuesEvent
2023-01-12 05:02:08
openBackhaul/ApplicationPattern
https://api.github.com/repos/openBackhaul/ApplicationPattern
closed
Clear all variables at end of collection
testsuite_to_be_changed
Currently, all the collection variables are being cleared using pm.collectionVariables.clear() method to reduce the volume of data being passed to next request. In order to make sure all data to be deleted, a small request can be added before "Termination" folder of test-suite which should remove all collection and environment variables associated with the collection.
1.0
Clear all variables at end of collection - Currently, all the collection variables are being cleared using pm.collectionVariables.clear() method to reduce the volume of data being passed to next request. In order to make sure all data to be deleted, a small request can be added before "Termination" folder of test-suite which should remove all collection and environment variables associated with the collection.
test
clear all variables at end of collection currently all the collection variables are being cleared using pm collectionvariables clear method to reduce the volume of data being passed to next request in order to make sure all data to be deleted a small request can be added before termination folder of test suite which should remove all collection and environment variables associated with the collection
1
773,127
27,147,045,237
IssuesEvent
2023-02-16 20:52:38
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
opened
[studio-ui] XB targets won't honor multiple "Components" data sources
bug priority: high triage
### Duplicates - [X] I have searched the existing issues ### Latest version - [X] The issue is in the latest released 4.0.x - [ ] The issue is in the latest released 3.1.x ### Describe the issue A page with a drop target that is configured with multiple "Components" data sources, one data source will work and the others are ignored. ### Steps to reproduce Steps: 1. Create a site from the Editorial BP 2. Edit the Home Page content type 3. Scroll down to '...' 4. See the issue ### Relevant log output _No response_ ### Screenshots and/or videos _No response_
1.0
[studio-ui] XB targets won't honor multiple "Components" data sources - ### Duplicates - [X] I have searched the existing issues ### Latest version - [X] The issue is in the latest released 4.0.x - [ ] The issue is in the latest released 3.1.x ### Describe the issue A page with a drop target that is configured with multiple "Components" data sources, one data source will work and the others are ignored. ### Steps to reproduce Steps: 1. Create a site from the Editorial BP 2. Edit the Home Page content type 3. Scroll down to '...' 4. See the issue ### Relevant log output _No response_ ### Screenshots and/or videos _No response_
non_test
xb targets won t honor multiple components data sources duplicates i have searched the existing issues latest version the issue is in the latest released x the issue is in the latest released x describe the issue a page with a drop target that is configured with multiple components data sources one data source will work and the others are ignored steps to reproduce steps create a site from the editorial bp edit the home page content type scroll down to see the issue relevant log output no response screenshots and or videos no response
0
189,861
14,525,777,071
IssuesEvent
2020-12-14 13:24:10
fourMs/MGT-python
https://api.github.com/repos/fourMs/MGT-python
closed
Make sure the ffmpeg commands always use the -y flag
bug testing
Because if not and the destination file happens to exist already the process will just quit without doing anything.
1.0
Make sure the ffmpeg commands always use the -y flag - Because if not and the destination file happens to exist already the process will just quit without doing anything.
test
make sure the ffmpeg commands always use the y flag because if not and the destination file happens to exist already the process will just quit without doing anything
1
253,632
21,692,695,809
IssuesEvent
2022-05-09 16:49:56
MohistMC/Mohist
https://api.github.com/repos/MohistMC/Mohist
closed
[1.16.5] Don't works with GravitLauncher
1.16.5 Wait 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://gist.github.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 :** mohist-1.16.5-977-server **Operating System :** Linux **Logs :** `2022.05.05 04:51:53 [ERROR] java.lang.ClassNotFoundException: net.minecraftforge.server.ServerMain` **Mod list :** for why? **Plugin list :** for why? **Description of issue :** So I use [GravitLauncher](https://launcher.gravit.pro/)([ServerWrapper](https://github.com/GravitLauncher/Launcher/releases/download/v5.2.11/ServerWrapper.jar))
1.0
[1.16.5] Don't works with GravitLauncher - <!-- 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://gist.github.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 :** mohist-1.16.5-977-server **Operating System :** Linux **Logs :** `2022.05.05 04:51:53 [ERROR] java.lang.ClassNotFoundException: net.minecraftforge.server.ServerMain` **Mod list :** for why? **Plugin list :** for why? **Description of issue :** So I use [GravitLauncher](https://launcher.gravit.pro/)([ServerWrapper](https://github.com/GravitLauncher/Launcher/releases/download/v5.2.11/ServerWrapper.jar))
test
don t works with gravitlauncher important do not delete this line minecraft version mohist version mohist server operating system linux logs java lang classnotfoundexception net minecraftforge server servermain mod list for why plugin list for why description of issue so i use
1
329,317
28,214,643,910
IssuesEvent
2023-04-05 08:03:13
huyentranlt/FeedBackOnline
https://api.github.com/repos/huyentranlt/FeedBackOnline
opened
[BugID_55]_Tạo mới Template_Message không hiển thị sau khi tạo mới Template thành công với nhiều câu hỏi
Bug Open Sev_Medium Pri_Medium Integration Test Fun_Wrong Business logic
Precondition : Admin đang ở màn hình tạo câu hỏi Step: 1. Nhập valid data cho tất cả các trường 2. Click [Hoàn tất] button Actual output: Không hiển thị message báo thành công Expected output: Hiển thị message màu xanh "Thêm Template thành công" ở góc bên trái của page ------ TestCaseID = 22 https://user-images.githubusercontent.com/128335270/230019308-03d4457e-5335-44e6-bb1a-ba40eb0b5fa9.mp4
1.0
[BugID_55]_Tạo mới Template_Message không hiển thị sau khi tạo mới Template thành công với nhiều câu hỏi - Precondition : Admin đang ở màn hình tạo câu hỏi Step: 1. Nhập valid data cho tất cả các trường 2. Click [Hoàn tất] button Actual output: Không hiển thị message báo thành công Expected output: Hiển thị message màu xanh "Thêm Template thành công" ở góc bên trái của page ------ TestCaseID = 22 https://user-images.githubusercontent.com/128335270/230019308-03d4457e-5335-44e6-bb1a-ba40eb0b5fa9.mp4
test
tạo mới template message không hiển thị sau khi tạo mới template thành công với nhiều câu hỏi precondition admin đang ở màn hình tạo câu hỏi step nhập valid data cho tất cả các trường click button actual output không hiển thị message báo thành công expected output hiển thị message màu xanh thêm template thành công ở góc bên trái của page testcaseid
1
35,738
7,800,301,551
IssuesEvent
2018-06-09 07:41:19
StrikeNP/trac_test
https://api.github.com/repos/StrikeNP/trac_test
closed
Latin Hypercube produces multiple compiler warnings when compiled in single precision. (Trac #520)
Migrated from Trac clubb_src defect dschanen@uwm.edu
When compiling CLUBB with -DCLUBB_REAL_TYPE=4 (rather than -DCLUBB_REAL_TYPE=8, which is now the default), I found the following compiler warnings, all found within Latin Hypercube files: ```text /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:464.86: c_m1 = ac_m1 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:477.86: c_m2 = ac_m2 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:259.36: + stdev_s1*exp(-0.5_core_rknd*sn1_crit**2)/(sqrt(2._dp 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.35: AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.31: AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.26: AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:263.36: + stdev_s2*exp(-0.5_core_rknd*sn2_crit**2)/(sqrt(2._dp 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.35: AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.31: AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.26: AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:264.26: AKm(level) = mixt_frac * AK1 + (1._dp-mixt_frac) * AK2 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:275.22: AKstd(level) = sqrt( mixt_frac * ( (AK1-AKm(level))**2 + AK1var ) & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:280.27: AKstd_cld(level) = sqrt( max( real( zero_threshold, kind=dp ), & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:231.8: real( X_mixt_comp_all_levs(1:nz,sample), kind=core_rknd ) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:234.10: real( p_matrix_s_element(sample), kind=core_rknd ) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:163.56: lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_rt(1:nz,sample) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:168.56: lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_thl(1:nz,sample) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1089.33: cloud_weighted_mixt_frac = ( mixt_frac*cloud_frac1 ) / & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1094.23: cloud_frac_n = cloud_frac1 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1096.35: X_u_dp1_element = mixt_frac * real(rand2, kind = dp) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1099.23: cloud_frac_n = cloud_frac2 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.39: X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.26: X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1124.23: cloud_frac_n = cloud_frac1 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1126.35: X_u_dp1_element = mixt_frac * real(rand2, kind = dp) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1129.23: cloud_frac_n = cloud_frac2 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1131.26: X_u_dp1_element = mixt_frac + (1._dp-mixt_frac) * real(rand2, kind = dp) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:447.40: if ( abs( mean_weight - 1.0_dp ) > & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) ``` Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/520 ```json { "status": "closed", "changetime": "2012-10-16T18:33:18", "description": "When compiling CLUBB with -DCLUBB_REAL_TYPE=4 (rather than -DCLUBB_REAL_TYPE=8, which is now the default), I found the following compiler warnings, all found within Latin Hypercube files:\n\n{{{\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:464.86:\n\nc_m1 = ac_m1 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam\n 1 \nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:477.86:\n\nc_m2 = ac_m2 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam\n 1 \nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:259.36:\n\n + stdev_s1*exp(-0.5_core_rknd*sn1_crit**2)/(sqrt(2._dp\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.35:\n\n AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.31:\n\n AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.26:\n\n AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:263.36:\n\n + stdev_s2*exp(-0.5_core_rknd*sn2_crit**2)/(sqrt(2._dp\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.35:\n\n AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.31:\n\n AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.26:\n\n AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:264.26:\n\n AKm(level) = mixt_frac * AK1 + (1._dp-mixt_frac) * AK2\n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:275.22:\n\n AKstd(level) = sqrt( mixt_frac * ( (AK1-AKm(level))**2 + AK1var ) & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:280.27:\n\n AKstd_cld(level) = sqrt( max( real( zero_threshold, kind=dp ), & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:231.8:\n\n real( X_mixt_comp_all_levs(1:nz,sample), kind=core_rknd )\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:234.10:\n\n real( p_matrix_s_element(sample), kind=core_rknd )\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:163.56:\n\n lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_rt(1:nz,sample)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:168.56:\n\n lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_thl(1:nz,sample)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1089.33:\n\n cloud_weighted_mixt_frac = ( mixt_frac*cloud_frac1 ) / &\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1094.23:\n\n cloud_frac_n = cloud_frac1\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1096.35:\n\n X_u_dp1_element = mixt_frac * real(rand2, kind = dp)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1099.23:\n\n cloud_frac_n = cloud_frac2\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.39:\n\n X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.26:\n\n X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1124.23:\n\n cloud_frac_n = cloud_frac1\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1126.35:\n\n X_u_dp1_element = mixt_frac * real(rand2, kind = dp)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1129.23:\n\n cloud_frac_n = cloud_frac2\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1131.26:\n\n X_u_dp1_element = mixt_frac + (1._dp-mixt_frac) * real(rand2, kind = dp)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:447.40:\n\n if ( abs( mean_weight - 1.0_dp ) > &\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n}}}\n", "reporter": "bmg2@uwm.edu", "cc": "vlarson@uwm.edu", "resolution": "fixed", "_ts": "1350412398640972", "component": "clubb_src", "summary": "Latin Hypercube produces multiple compiler warnings when compiled in single precision.", "priority": "minor", "keywords": "", "time": "2012-08-24T21:02:55", "milestone": "", "owner": "dschanen@uwm.edu", "type": "defect" } ```
1.0
Latin Hypercube produces multiple compiler warnings when compiled in single precision. (Trac #520) - When compiling CLUBB with -DCLUBB_REAL_TYPE=4 (rather than -DCLUBB_REAL_TYPE=8, which is now the default), I found the following compiler warnings, all found within Latin Hypercube files: ```text /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:464.86: c_m1 = ac_m1 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:477.86: c_m2 = ac_m2 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:259.36: + stdev_s1*exp(-0.5_core_rknd*sn1_crit**2)/(sqrt(2._dp 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.35: AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.31: AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.26: AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:263.36: + stdev_s2*exp(-0.5_core_rknd*sn2_crit**2)/(sqrt(2._dp 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.35: AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.31: AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.26: AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:264.26: AKm(level) = mixt_frac * AK1 + (1._dp-mixt_frac) * AK2 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:275.22: AKstd(level) = sqrt( mixt_frac * ( (AK1-AKm(level))**2 + AK1var ) & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:280.27: AKstd_cld(level) = sqrt( max( real( zero_threshold, kind=dp ), & 1 Warning: Conversion from REAL(8) to REAL(4) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:231.8: real( X_mixt_comp_all_levs(1:nz,sample), kind=core_rknd ) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:234.10: real( p_matrix_s_element(sample), kind=core_rknd ) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:163.56: lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_rt(1:nz,sample) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:168.56: lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_thl(1:nz,sample) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1089.33: cloud_weighted_mixt_frac = ( mixt_frac*cloud_frac1 ) / & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1094.23: cloud_frac_n = cloud_frac1 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1096.35: X_u_dp1_element = mixt_frac * real(rand2, kind = dp) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1099.23: cloud_frac_n = cloud_frac2 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.39: X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.26: X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1124.23: cloud_frac_n = cloud_frac1 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1126.35: X_u_dp1_element = mixt_frac * real(rand2, kind = dp) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1129.23: cloud_frac_n = cloud_frac2 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1131.26: X_u_dp1_element = mixt_frac + (1._dp-mixt_frac) * real(rand2, kind = dp) 1 Warning: Conversion from REAL(4) to REAL(8) at (1) /home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:447.40: if ( abs( mean_weight - 1.0_dp ) > & 1 Warning: Conversion from REAL(4) to REAL(8) at (1) ``` Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/520 ```json { "status": "closed", "changetime": "2012-10-16T18:33:18", "description": "When compiling CLUBB with -DCLUBB_REAL_TYPE=4 (rather than -DCLUBB_REAL_TYPE=8, which is now the default), I found the following compiler warnings, all found within Latin Hypercube files:\n\n{{{\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:464.86:\n\nc_m1 = ac_m1 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam\n 1 \nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:477.86:\n\nc_m2 = ac_m2 + coeff*max(0._dp,rc(sample)-r_crit) * LH_sample_point_weights(sam\n 1 \nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:259.36:\n\n + stdev_s1*exp(-0.5_core_rknd*sn1_crit**2)/(sqrt(2._dp\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.35:\n\n AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.31:\n\n AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:258.26:\n\n AK1 = K_one * ( (s1-r_crit)*cloud_frac1_crit & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:263.36:\n\n + stdev_s2*exp(-0.5_core_rknd*sn2_crit**2)/(sqrt(2._dp\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.35:\n\n AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.31:\n\n AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & \n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:262.26:\n\n AK2 = K_one * ( (s2-r_crit)*cloud_frac2_crit & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:264.26:\n\n AKm(level) = mixt_frac * AK1 + (1._dp-mixt_frac) * AK2\n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:275.22:\n\n AKstd(level) = sqrt( mixt_frac * ( (AK1-AKm(level))**2 + AK1var ) & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/estimate_lh_micro_module.F90:280.27:\n\n AKstd_cld(level) = sqrt( max( real( zero_threshold, kind=dp ), & \n 1\nWarning: Conversion from REAL(8) to REAL(4) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:231.8:\n\n real( X_mixt_comp_all_levs(1:nz,sample), kind=core_rknd )\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:234.10:\n\n real( p_matrix_s_element(sample), kind=core_rknd )\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:163.56:\n\n lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_rt(1:nz,sample)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/output_2D_samples_module.F90:168.56:\n\n lognormal_sample_file%var(j)%ptr(sample,1,1:nz) = LH_thl(1:nz,sample)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1089.33:\n\n cloud_weighted_mixt_frac = ( mixt_frac*cloud_frac1 ) / &\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1094.23:\n\n cloud_frac_n = cloud_frac1\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1096.35:\n\n X_u_dp1_element = mixt_frac * real(rand2, kind = dp)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1099.23:\n\n cloud_frac_n = cloud_frac2\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.39:\n\n X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1101.26:\n\n X_u_dp1_element = mixt_frac + (1._core_rknd-mixt_frac) * real(rand2, ki\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1124.23:\n\n cloud_frac_n = cloud_frac1\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1126.35:\n\n X_u_dp1_element = mixt_frac * real(rand2, kind = dp)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1129.23:\n\n cloud_frac_n = cloud_frac2\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:1131.26:\n\n X_u_dp1_element = mixt_frac + (1._dp-mixt_frac) * real(rand2, kind = dp)\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n/home/Brian/clubb/compile/../src/Latin_hypercube/latin_hypercube_driver_module.F90:447.40:\n\n if ( abs( mean_weight - 1.0_dp ) > &\n 1\nWarning: Conversion from REAL(4) to REAL(8) at (1)\n}}}\n", "reporter": "bmg2@uwm.edu", "cc": "vlarson@uwm.edu", "resolution": "fixed", "_ts": "1350412398640972", "component": "clubb_src", "summary": "Latin Hypercube produces multiple compiler warnings when compiled in single precision.", "priority": "minor", "keywords": "", "time": "2012-08-24T21:02:55", "milestone": "", "owner": "dschanen@uwm.edu", "type": "defect" } ```
non_test
latin hypercube produces multiple compiler warnings when compiled in single precision trac when compiling clubb with dclubb real type rather than dclubb real type which is now the default i found the following compiler warnings all found within latin hypercube files text home brian clubb compile src latin hypercube estimate lh micro module c ac coeff max dp rc sample r crit lh sample point weights sam warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module c ac coeff max dp rc sample r crit lh sample point weights sam warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module stdev exp core rknd crit sqrt dp warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module k one r crit cloud crit warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module k one r crit cloud crit warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module k one r crit cloud crit warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module stdev exp core rknd crit sqrt dp warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module k one r crit cloud crit warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module k one r crit cloud crit warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module k one r crit cloud crit warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module akm level mixt frac dp mixt frac warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module akstd level sqrt mixt frac akm level warning conversion from real to real at home brian clubb compile src latin hypercube estimate lh micro module akstd cld level sqrt max real zero threshold kind dp warning conversion from real to real at home brian clubb compile src latin hypercube output samples module real x mixt comp all levs nz sample kind core rknd warning conversion from real to real at home brian clubb compile src latin hypercube output samples module real p matrix s element sample kind core rknd warning conversion from real to real at home brian clubb compile src latin hypercube output samples module lognormal sample file var j ptr sample nz lh rt nz sample warning conversion from real to real at home brian clubb compile src latin hypercube output samples module lognormal sample file var j ptr sample nz lh thl nz sample warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module cloud weighted mixt frac mixt frac cloud warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module cloud frac n cloud warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module x u element mixt frac real kind dp warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module cloud frac n cloud warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module x u element mixt frac core rknd mixt frac real ki warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module x u element mixt frac core rknd mixt frac real ki warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module cloud frac n cloud warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module x u element mixt frac real kind dp warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module cloud frac n cloud warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module x u element mixt frac dp mixt frac real kind dp warning conversion from real to real at home brian clubb compile src latin hypercube latin hypercube driver module if abs mean weight dp warning conversion from real to real at attachments migrated from json status closed changetime description when compiling clubb with dclubb real type rather than dclubb real type which is now the default i found the following compiler warnings all found within latin hypercube files n n n home brian clubb compile src latin hypercube estimate lh micro module n nc ac coeff max dp rc sample r crit lh sample point weights sam n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n nc ac coeff max dp rc sample r crit lh sample point weights sam n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n stdev exp core rknd crit sqrt dp n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n k one r crit cloud crit n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n k one r crit cloud crit n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n k one r crit cloud crit n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n stdev exp core rknd crit sqrt dp n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n k one r crit cloud crit n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n k one r crit cloud crit n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n k one r crit cloud crit n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n akm level mixt frac dp mixt frac n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n akstd level sqrt mixt frac akm level n nwarning conversion from real to real at n home brian clubb compile src latin hypercube estimate lh micro module n n akstd cld level sqrt max real zero threshold kind dp n nwarning conversion from real to real at n home brian clubb compile src latin hypercube output samples module n n real x mixt comp all levs nz sample kind core rknd n nwarning conversion from real to real at n home brian clubb compile src latin hypercube output samples module n n real p matrix s element sample kind core rknd n nwarning conversion from real to real at n home brian clubb compile src latin hypercube output samples module n n lognormal sample file var j ptr sample nz lh rt nz sample n nwarning conversion from real to real at n home brian clubb compile src latin hypercube output samples module n n lognormal sample file var j ptr sample nz lh thl nz sample n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n cloud weighted mixt frac mixt frac cloud n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n cloud frac n cloud n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n x u element mixt frac real kind dp n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n cloud frac n cloud n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n x u element mixt frac core rknd mixt frac real ki n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n x u element mixt frac core rknd mixt frac real ki n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n cloud frac n cloud n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n x u element mixt frac real kind dp n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n cloud frac n cloud n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n x u element mixt frac dp mixt frac real kind dp n nwarning conversion from real to real at n home brian clubb compile src latin hypercube latin hypercube driver module n n if abs mean weight dp n nwarning conversion from real to real at n n reporter uwm edu cc vlarson uwm edu resolution fixed ts component clubb src summary latin hypercube produces multiple compiler warnings when compiled in single precision priority minor keywords time milestone owner dschanen uwm edu type defect
0
313,334
26,918,908,074
IssuesEvent
2023-02-07 09:03:21
python/cpython
https://api.github.com/repos/python/cpython
opened
regrtest can reports false SUCCESS and skips tests when a -j worker dies
type-bug tests
See in https://buildbot.python.org/all/#/builders/424/builds/3407/steps/5/logs/stdio (Raspbian) ``` ... 0:04:46 load avg: 7.28 [ 48/434] test_isinstance passed -- running: test_largefile (2 min 54 sec) 0:05:03 load avg: 7.39 [ 49/434] test_utf8source passed -- running: test_largefile (3 min 11 sec), test_unittest (38.7 sec) Warning -- regrtest worker thread failed: Traceback (most recent call last): Warning -- File "/var/lib/buildbot/workers/3.x.gps-raspbian.nondebug/build/Lib/test/libregrtest/runtest_mp.py", line 342, in run Warning -- mp_result = self._runtest(test_name) Warning -- ^^^^^^^^^^^^^^^^^^^^^^^^ Warning -- File "/var/lib/buildbot/workers/3.x.gps-raspbian.nondebug/build/Lib/test/libregrtest/runtest_mp.py", line 301, in _runtest Warning -- stdout = stdout_fh.read().strip() Warning -- ^^^^^^^^^^^^^^^^ Warning -- File "<frozen codecs>", line 322, in decode Warning -- UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa9 in position 35: invalid start byte Kill <TestWorkerProcess #1 running test=test_tempfile pid=7836 time=21.8 sec> process group Kill <TestWorkerProcess #2 running test=test_largefile pid=7700 time=3 min 32 sec> process group == Tests result: SUCCESS == 385 tests omitted: test___all__ test__locale test__opcode test__osx_support test__xxinterpchannels test__xxsubinterpreters test_abc test_aifc test_argparse test_array test_asdl_parser test_ast test_asyncgen test_asyncio test_atexit test_audioop test_audit test_base64 ... ``` This might be an infrastructure issue or an actual issue with real non utf-8 data making it through the mp sockets. Regardless, it should've triggered an error and exit 1 instead of a false SUCCESS exit 0.
1.0
regrtest can reports false SUCCESS and skips tests when a -j worker dies - See in https://buildbot.python.org/all/#/builders/424/builds/3407/steps/5/logs/stdio (Raspbian) ``` ... 0:04:46 load avg: 7.28 [ 48/434] test_isinstance passed -- running: test_largefile (2 min 54 sec) 0:05:03 load avg: 7.39 [ 49/434] test_utf8source passed -- running: test_largefile (3 min 11 sec), test_unittest (38.7 sec) Warning -- regrtest worker thread failed: Traceback (most recent call last): Warning -- File "/var/lib/buildbot/workers/3.x.gps-raspbian.nondebug/build/Lib/test/libregrtest/runtest_mp.py", line 342, in run Warning -- mp_result = self._runtest(test_name) Warning -- ^^^^^^^^^^^^^^^^^^^^^^^^ Warning -- File "/var/lib/buildbot/workers/3.x.gps-raspbian.nondebug/build/Lib/test/libregrtest/runtest_mp.py", line 301, in _runtest Warning -- stdout = stdout_fh.read().strip() Warning -- ^^^^^^^^^^^^^^^^ Warning -- File "<frozen codecs>", line 322, in decode Warning -- UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa9 in position 35: invalid start byte Kill <TestWorkerProcess #1 running test=test_tempfile pid=7836 time=21.8 sec> process group Kill <TestWorkerProcess #2 running test=test_largefile pid=7700 time=3 min 32 sec> process group == Tests result: SUCCESS == 385 tests omitted: test___all__ test__locale test__opcode test__osx_support test__xxinterpchannels test__xxsubinterpreters test_abc test_aifc test_argparse test_array test_asdl_parser test_ast test_asyncgen test_asyncio test_atexit test_audioop test_audit test_base64 ... ``` This might be an infrastructure issue or an actual issue with real non utf-8 data making it through the mp sockets. Regardless, it should've triggered an error and exit 1 instead of a false SUCCESS exit 0.
test
regrtest can reports false success and skips tests when a j worker dies see in raspbian load avg test isinstance passed running test largefile min sec load avg test passed running test largefile min sec test unittest sec warning regrtest worker thread failed traceback most recent call last warning file var lib buildbot workers x gps raspbian nondebug build lib test libregrtest runtest mp py line in run warning mp result self runtest test name warning warning file var lib buildbot workers x gps raspbian nondebug build lib test libregrtest runtest mp py line in runtest warning stdout stdout fh read strip warning warning file line in decode warning unicodedecodeerror utf codec can t decode byte in position invalid start byte kill process group kill process group tests result success tests omitted test all test locale test opcode test osx support test xxinterpchannels test xxsubinterpreters test abc test aifc test argparse test array test asdl parser test ast test asyncgen test asyncio test atexit test audioop test audit test this might be an infrastructure issue or an actual issue with real non utf data making it through the mp sockets regardless it should ve triggered an error and exit instead of a false success exit
1
375,687
11,132,875,631
IssuesEvent
2019-12-20 08:00:43
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
my.star.gr - site is not usable
browser-focus-geckoview engine-gecko ml-needsdiagnosis-false priority-normal
<!-- @browser: Firefox Mobile 71.0 --> <!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:71.0) Gecko/71.0 Firefox/71.0 --> <!-- @reported_with: --> <!-- @extra_labels: browser-focus-geckoview --> **URL**: https://my.star.gr/vote/ **Browser / Version**: Firefox Mobile 71.0 **Operating System**: Android 8.0.0 **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: Did not give me any chance to vote **Steps to Reproduce**: I entered the site name but it never gave me the chance to vote. I refreshed the page but it never let me see the candidates so as to vote. <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
my.star.gr - site is not usable - <!-- @browser: Firefox Mobile 71.0 --> <!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:71.0) Gecko/71.0 Firefox/71.0 --> <!-- @reported_with: --> <!-- @extra_labels: browser-focus-geckoview --> **URL**: https://my.star.gr/vote/ **Browser / Version**: Firefox Mobile 71.0 **Operating System**: Android 8.0.0 **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: Did not give me any chance to vote **Steps to Reproduce**: I entered the site name but it never gave me the chance to vote. I refreshed the page but it never let me see the candidates so as to vote. <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
non_test
my star gr site is not usable url browser version firefox mobile operating system android tested another browser no problem type site is not usable description did not give me any chance to vote steps to reproduce i entered the site name but it never gave me the chance to vote i refreshed the page but it never let me see the candidates so as to vote browser configuration none from with ❤️
0
312,124
26,838,530,859
IssuesEvent
2023-02-02 21:43:53
paradigmxyz/reth
https://api.github.com/repos/paradigmxyz/reth
closed
`streams_bodies_in_order_after_range_reset` is flaky
C-test A-networking
### Describe the bug `bodies::bodies::tests::streams_bodies_in_order_after_range_reset` occasionally fails on main. A failure can be seen in CI here: https://github.com/paradigmxyz/reth/actions/runs/4077743007/jobs/7027133041#step:8:203 ### Steps to reproduce Sometimes this can be reproduced locally with `cargo nextest run --workspace --locked --all-features` ### Node logs ```text --- STDERR: reth-downloaders bodies::bodies::tests::streams_bodies_in_order_after_range_reset --- thread 'bodies::bodies::tests::streams_bodies_in_order_after_range_reset' panicked at 'assertion failed: `(left == right)` left: `8`, right: `7`', crates/net/downloaders/src/bodies/bodies.rs:616:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace Canceling due to test failure: 0 tests still running ``` ### Platform(s) _No response_ ### What version/commit are you on? 66aa947 ### Code of Conduct - [X] I agree to follow the Code of Conduct
1.0
`streams_bodies_in_order_after_range_reset` is flaky - ### Describe the bug `bodies::bodies::tests::streams_bodies_in_order_after_range_reset` occasionally fails on main. A failure can be seen in CI here: https://github.com/paradigmxyz/reth/actions/runs/4077743007/jobs/7027133041#step:8:203 ### Steps to reproduce Sometimes this can be reproduced locally with `cargo nextest run --workspace --locked --all-features` ### Node logs ```text --- STDERR: reth-downloaders bodies::bodies::tests::streams_bodies_in_order_after_range_reset --- thread 'bodies::bodies::tests::streams_bodies_in_order_after_range_reset' panicked at 'assertion failed: `(left == right)` left: `8`, right: `7`', crates/net/downloaders/src/bodies/bodies.rs:616:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace Canceling due to test failure: 0 tests still running ``` ### Platform(s) _No response_ ### What version/commit are you on? 66aa947 ### Code of Conduct - [X] I agree to follow the Code of Conduct
test
streams bodies in order after range reset is flaky describe the bug bodies bodies tests streams bodies in order after range reset occasionally fails on main a failure can be seen in ci here steps to reproduce sometimes this can be reproduced locally with cargo nextest run workspace locked all features node logs text stderr reth downloaders bodies bodies tests streams bodies in order after range reset thread bodies bodies tests streams bodies in order after range reset panicked at assertion failed left right left right crates net downloaders src bodies bodies rs note run with rust backtrace environment variable to display a backtrace canceling due to test failure tests still running platform s no response what version commit are you on code of conduct i agree to follow the code of conduct
1